summaryrefslogtreecommitdiffstats
path: root/apps/files_sharing/src/components/SharingEntryLink.vue
diff options
context:
space:
mode:
authorChristopher Ng <chrng8@gmail.com>2023-07-31 16:02:29 -0700
committerChristopher Ng <chrng8@gmail.com>2023-08-01 09:54:38 -0700
commit6f30d86a96f264dd95327900f121a9b1700ff2d2 (patch)
tree88e8c3d2e425badbd2e2a8d5c8b235a9db214fcb /apps/files_sharing/src/components/SharingEntryLink.vue
parent46da23f0188ece6fb2ee352545191b8c68f00061 (diff)
downloadnextcloud-server-6f30d86a96f264dd95327900f121a9b1700ff2d2.tar.gz
nextcloud-server-6f30d86a96f264dd95327900f121a9b1700ff2d2.zip
fix(files_sharing): String translations
Signed-off-by: Christopher Ng <chrng8@gmail.com> Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com> (cherry picked from commit 8a51d64b09c92cec800adeea68296ed2fafe7214)
Diffstat (limited to 'apps/files_sharing/src/components/SharingEntryLink.vue')
-rw-r--r--apps/files_sharing/src/components/SharingEntryLink.vue4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/files_sharing/src/components/SharingEntryLink.vue b/apps/files_sharing/src/components/SharingEntryLink.vue
index f462f6eec9a..06c9cb70851 100644
--- a/apps/files_sharing/src/components/SharingEntryLink.vue
+++ b/apps/files_sharing/src/components/SharingEntryLink.vue
@@ -726,12 +726,12 @@ export default {
// otherwise the user needs to copy/paste the password before finishing the share.
component.copyLink()
}
- showSuccess(t('sharing', 'Link share created'))
+ showSuccess(t('files_sharing', 'Link share created'))
} catch (data) {
const message = data?.response?.data?.ocs?.meta?.message
if (!message) {
- showError(t('sharing', 'Error while creating the share'))
+ showError(t('files_sharing', 'Error while creating the share'))
console.error(data)
return
}