summaryrefslogtreecommitdiffstats
path: root/apps/files/src
diff options
context:
space:
mode:
authorAndy Scherzinger <info@andy-scherzinger.de>2024-08-28 12:15:52 +0200
committerGitHub <noreply@github.com>2024-08-28 12:15:52 +0200
commitb6096d2a224ebb03044f5174a90d0c90f1e562a2 (patch)
tree829c3547871e336b5ba456e27c3e06c8749a66fe /apps/files/src
parent77f6029c7e061c345189fe91a13b56896a6b6d72 (diff)
parent97343912de1b912a2cf5c9e64d285ecbd4e7d866 (diff)
downloadnextcloud-server-b6096d2a224ebb03044f5174a90d0c90f1e562a2.tar.gz
nextcloud-server-b6096d2a224ebb03044f5174a90d0c90f1e562a2.zip
Merge pull request #47499 from nextcloud/backport/47490/stable30
[stable30] chore(files): Adjust wording for file type filter
Diffstat (limited to 'apps/files/src')
-rw-r--r--apps/files/src/filters/TypeFilter.ts3
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/files/src/filters/TypeFilter.ts b/apps/files/src/filters/TypeFilter.ts
index d35671fc220..cf866022047 100644
--- a/apps/files/src/filters/TypeFilter.ts
+++ b/apps/files/src/filters/TypeFilter.ts
@@ -73,7 +73,8 @@ const getTypePresets = async () => [
},
{
id: 'image',
- label: t('files', 'Pictures and images'),
+ // TRANSLATORS: This is for filtering files, e.g. PNG or JPEG, so photos, drawings, or images in general
+ label: t('files', 'Photos and images'),
icon: svgImage,
mime: ['image'],
},