summaryrefslogtreecommitdiffstats
path: root/apps/settings
diff options
context:
space:
mode:
authorJulius Härtl <jus@bitgrid.net>2020-07-22 16:56:17 +0200
committerMorris Jobke <hey@morrisjobke.de>2020-07-22 20:32:01 +0200
commitcf3dd5b6bd99da1e500f078ee19a373ea0f15333 (patch)
treeccec8786d1aa60c43ee1860f97ef96730c0645e1 /apps/settings
parentc842678f0a1fb65981a03302895192ddc58479c9 (diff)
downloadnextcloud-server-cf3dd5b6bd99da1e500f078ee19a373ea0f15333.tar.gz
nextcloud-server-cf3dd5b6bd99da1e500f078ee19a373ea0f15333.zip
Properly fetch translation for remote wipe confirmation dialog
Signed-off-by: Julius Härtl <jus@bitgrid.net>
Diffstat (limited to 'apps/settings')
-rw-r--r--apps/settings/src/components/AuthTokenSection.vue4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/settings/src/components/AuthTokenSection.vue b/apps/settings/src/components/AuthTokenSection.vue
index d65df026dbb..42369917f9d 100644
--- a/apps/settings/src/components/AuthTokenSection.vue
+++ b/apps/settings/src/components/AuthTokenSection.vue
@@ -45,8 +45,8 @@ import AuthTokenSetupDialogue from './AuthTokenSetupDialogue'
const confirm = () => {
return new Promise(resolve => {
OC.dialogs.confirm(
- t('core', 'Do you really want to wipe your data from this device?'),
- t('core', 'Confirm wipe'),
+ t('settings', 'Do you really want to wipe your data from this device?'),
+ t('settings', 'Confirm wipe'),
resolve,
true
)