diff options
author | Ferdinand Thiessen <opensource@fthiessen.de> | 2024-10-12 18:08:44 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-10-12 18:08:44 +0200 |
commit | 03d553f6916b1c5120bbcf5e1bbf50e0aabce6f9 (patch) | |
tree | 0867fa9fc32c536544ba9a407f1645d5e3a9b8ac /apps | |
parent | 0c2782426303a9f62b63852ec52c9f3a154f5f49 (diff) | |
parent | 7d3761a3a5036143c62d3d518c971af25ba281c6 (diff) | |
download | nextcloud-server-03d553f6916b1c5120bbcf5e1bbf50e0aabce6f9.tar.gz nextcloud-server-03d553f6916b1c5120bbcf5e1bbf50e0aabce6f9.zip |
Merge pull request #48648 from nextcloud/rakekniven-patch-1
fix(i18n): Improved grammar
Diffstat (limited to 'apps')
-rw-r--r-- | apps/files_sharing/src/files_views/publicFileShare.ts | 2 | ||||
-rw-r--r-- | apps/files_sharing/src/files_views/publicShare.ts | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/apps/files_sharing/src/files_views/publicFileShare.ts b/apps/files_sharing/src/files_views/publicFileShare.ts index 8da6030a47b..caa7f862e57 100644 --- a/apps/files_sharing/src/files_views/publicFileShare.ts +++ b/apps/files_sharing/src/files_views/publicFileShare.ts @@ -15,7 +15,7 @@ export default () => { const view = new View({ id: 'public-file-share', name: t('files_sharing', 'Public file share'), - caption: t('files_sharing', 'Public shared file.'), + caption: t('files_sharing', 'Publicly shared file.'), emptyTitle: t('files_sharing', 'No file'), emptyCaption: t('files_sharing', 'The file shared with you will show up here'), diff --git a/apps/files_sharing/src/files_views/publicShare.ts b/apps/files_sharing/src/files_views/publicShare.ts index 118973f54f5..4f5526bc829 100644 --- a/apps/files_sharing/src/files_views/publicShare.ts +++ b/apps/files_sharing/src/files_views/publicShare.ts @@ -12,7 +12,7 @@ export default () => { const view = new View({ id: 'public-share', name: t('files_sharing', 'Public share'), - caption: t('files_sharing', 'Public shared files.'), + caption: t('files_sharing', 'Publicly shared files.'), emptyTitle: t('files_sharing', 'No files'), emptyCaption: t('files_sharing', 'Files and folders shared with you will show up here'), |