From 7e08cb757b237c928f51d3c44d010b31401c2d7d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julius=20H=C3=A4rtl?= Date: Wed, 22 Jul 2020 16:56:17 +0200 Subject: [PATCH] Properly fetch translation for remote wipe confirmation dialog MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Julius Härtl --- apps/settings/src/components/AuthTokenSection.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/settings/src/components/AuthTokenSection.vue b/apps/settings/src/components/AuthTokenSection.vue index 6cb3402f59..268ae756b1 100644 --- a/apps/settings/src/components/AuthTokenSection.vue +++ b/apps/settings/src/components/AuthTokenSection.vue @@ -44,8 +44,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 )