aboutsummaryrefslogtreecommitdiffstats
path: root/apps/files
diff options
context:
space:
mode:
authorFerdinand Thiessen <opensource@fthiessen.de>2024-08-26 16:38:48 +0200
committerbackportbot[bot] <backportbot[bot]@users.noreply.github.com>2024-08-26 19:42:16 +0000
commit08391ee642c389c150060ffcffd32a49c2b64a75 (patch)
tree7e42f48157ebd214f19362c4dacee2f3a72df39b /apps/files
parent2b89ec16e344d0df7a397868f1d02fc8535f2e6f (diff)
downloadnextcloud-server-08391ee642c389c150060ffcffd32a49c2b64a75.tar.gz
nextcloud-server-08391ee642c389c150060ffcffd32a49c2b64a75.zip
chore(files): Adjust wording for file type filter
* Resolves: https://github.com/nextcloud/server/issues/47440 Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
Diffstat (limited to 'apps/files')
-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'],
},