diff options
author | Ferdinand Thiessen <opensource@fthiessen.de> | 2024-10-18 20:02:33 +0200 |
---|---|---|
committer | Ferdinand Thiessen <opensource@fthiessen.de> | 2024-10-21 12:46:56 +0200 |
commit | 8e5b6426853c3da880da5d19c96f4336b8b7fda0 (patch) | |
tree | 0c421d81db6f12de661e3737ae82787943a95674 /apps | |
parent | 4d8d11d2f79da348644e0902e78a2f000498cd52 (diff) | |
download | nextcloud-server-8e5b6426853c3da880da5d19c96f4336b8b7fda0.tar.gz nextcloud-server-8e5b6426853c3da880da5d19c96f4336b8b7fda0.zip |
fix(files_sharing): Add correct context to translation
This string is extracted in the `files_sharing` app so it needs to be accessed there and not on `files`.
Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
Diffstat (limited to 'apps')
-rw-r--r-- | apps/files_sharing/src/components/FileListFilterAccount.vue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files_sharing/src/components/FileListFilterAccount.vue b/apps/files_sharing/src/components/FileListFilterAccount.vue index 11330c500ab..9d69d70fa3f 100644 --- a/apps/files_sharing/src/components/FileListFilterAccount.vue +++ b/apps/files_sharing/src/components/FileListFilterAccount.vue @@ -5,7 +5,7 @@ <template> <FileListFilter class="file-list-filter-accounts" :is-active="selectedAccounts.length > 0" - :filter-name="t('files', 'People')" + :filter-name="t('files_sharing', 'People')" @reset-filter="resetFilter"> <template #icon> <NcIconSvgWrapper :path="mdiAccountMultiple" /> |