summaryrefslogtreecommitdiffstats
path: root/apps/settings/src
diff options
context:
space:
mode:
authorValdnet <47037905+Valdnet@users.noreply.github.com>2022-01-19 14:46:40 +0100
committerJohn Molakvoæ (Rebase PR Action) <skjnldsv@users.noreply.github.com>2022-01-20 08:20:07 +0000
commitae8085fbf8786c7db26696f3408ff9756d8846ff (patch)
treef664365e3c8825500d84fabf769e29c789847851 /apps/settings/src
parent2aa56dc4164fc4396a591ae4380e50a69f5545a2 (diff)
downloadnextcloud-server-ae8085fbf8786c7db26696f3408ff9756d8846ff.tar.gz
nextcloud-server-ae8085fbf8786c7db26696f3408ff9756d8846ff.zip
Change l10n directory
Signed-off-by: Valdnet <47037905+Valdnet@users.noreply.github.com>
Diffstat (limited to 'apps/settings/src')
-rw-r--r--apps/settings/src/components/AuthTokenSection.vue10
1 files changed, 5 insertions, 5 deletions
diff --git a/apps/settings/src/components/AuthTokenSection.vue b/apps/settings/src/components/AuthTokenSection.vue
index 87895e48219..bb700a1b572 100644
--- a/apps/settings/src/components/AuthTokenSection.vue
+++ b/apps/settings/src/components/AuthTokenSection.vue
@@ -99,7 +99,7 @@ export default {
.then(tap(data => this.tokens.push(data.deviceToken)))
.catch(err => {
console.error.bind('could not create app password', err)
- OC.Notification.showTemporary(t('core', 'Error while creating device token'))
+ OC.Notification.showTemporary(t('settings', 'Error while creating device token'))
throw err
})
},
@@ -113,7 +113,7 @@ export default {
.then(tap(() => console.debug('app token scope updated')))
.catch(err => {
console.error.bind('could not update app token scope', err)
- OC.Notification.showTemporary(t('core', 'Error while updating device token scope'))
+ OC.Notification.showTemporary(t('settings', 'Error while updating device token scope'))
// Restore
token.scope[scope] = oldVal
@@ -131,7 +131,7 @@ export default {
.then(tap(() => console.debug('app token name updated')))
.catch(err => {
console.error.bind('could not update app token name', err)
- OC.Notification.showTemporary(t('core', 'Error while updating device token name'))
+ OC.Notification.showTemporary(t('settings', 'Error while updating device token name'))
// Restore
token.name = oldName
@@ -152,7 +152,7 @@ export default {
.then(tap(() => console.debug('app token deleted')))
.catch(err => {
console.error.bind('could not delete app token', err)
- OC.Notification.showTemporary(t('core', 'Error while deleting the token'))
+ OC.Notification.showTemporary(t('settings', 'Error while deleting the token'))
// Restore
// eslint-disable-next-line vue/no-mutating-props
@@ -175,7 +175,7 @@ export default {
token.type = 2
} catch (err) {
console.error('could not wipe app token', err)
- OC.Notification.showTemporary(t('core', 'Error while wiping the device with the token'))
+ OC.Notification.showTemporary(t('settings', 'Error while wiping the device with the token'))
}
},
},