diff options
author | Valdnet <47037905+Valdnet@users.noreply.github.com> | 2022-01-19 14:50:54 +0100 |
---|---|---|
committer | nextcloud-command <nextcloud-command@users.noreply.github.com> | 2022-01-20 08:30:59 +0000 |
commit | 00b43cfa6b3a01437c0cd78de8237dbb71490fce (patch) | |
tree | 9de54be0d8ebe30de7d605b2db4eae0550cade3a /apps/settings/src | |
parent | ae8085fbf8786c7db26696f3408ff9756d8846ff (diff) | |
download | nextcloud-server-00b43cfa6b3a01437c0cd78de8237dbb71490fce.tar.gz nextcloud-server-00b43cfa6b3a01437c0cd78de8237dbb71490fce.zip |
Change l10n directory
Signed-off-by: Valdnet <47037905+Valdnet@users.noreply.github.com>
Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
Diffstat (limited to 'apps/settings/src')
-rw-r--r-- | apps/settings/src/components/AuthTokenSetupDialogue.vue | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/apps/settings/src/components/AuthTokenSetupDialogue.vue b/apps/settings/src/components/AuthTokenSetupDialogue.vue index a97326876d1..2ad2ae670dd 100644 --- a/apps/settings/src/components/AuthTokenSetupDialogue.vue +++ b/apps/settings/src/components/AuthTokenSetupDialogue.vue @@ -115,13 +115,13 @@ export default { if (this.passwordCopied) { return { ...base, - content: t('core', 'Copied!'), + content: t('settings', 'Copied!'), show: true, } } else { return { ...base, - content: t('core', 'Copy'), + content: t('settings', 'Copy'), show: this.hoveringCopyButton, } } @@ -151,7 +151,7 @@ export default { }) .catch(err => { console.error('could not create a new app password', err) - OC.Notification.showTemporary(t('core', 'Error while creating device token')) + OC.Notification.showTemporary(t('settings', 'Error while creating device token')) this.reset() }) @@ -162,7 +162,7 @@ export default { setTimeout(() => { this.passwordCopied = false }, 3000) }, onCopyPasswordFailed() { - OC.Notification.showTemporary(t('core', 'Could not copy app password. Please copy it manually.')) + OC.Notification.showTemporary(t('settings', 'Could not copy app password. Please copy it manually.')) }, reset() { this.adding = false |