diff options
author | rakekniven <mark.ziegler@rakekniven.de> | 2020-04-04 23:04:33 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-04 23:04:33 +0200 |
commit | a4dc7f772bd2c570b31b4627276b68ca99313b93 (patch) | |
tree | 8badfb4f745a27da53f4b9729c5eaee856a3d583 /apps/settings/src | |
parent | e5b3ee615e6526362481358cd85bb14be34706dc (diff) | |
download | nextcloud-server-a4dc7f772bd2c570b31b4627276b68ca99313b93.tar.gz nextcloud-server-a4dc7f772bd2c570b31b4627276b68ca99313b93.zip |
l10n: Changed spelling of WebAuthn
Signed-off-by: rakekniven <mark.ziegler@rakekniven.de>
Diffstat (limited to 'apps/settings/src')
-rw-r--r-- | apps/settings/src/components/WebAuthn/AddDevice.vue | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/settings/src/components/WebAuthn/AddDevice.vue b/apps/settings/src/components/WebAuthn/AddDevice.vue index 431ada09e36..ad57b3b55ba 100644 --- a/apps/settings/src/components/WebAuthn/AddDevice.vue +++ b/apps/settings/src/components/WebAuthn/AddDevice.vue @@ -146,7 +146,7 @@ export default { }) .catch(err => { console.error('Error getting webauthn registration data from server', err) - throw new Error(t('settings', 'Server error while trying to add webauthn device')) + throw new Error(t('settings', 'Server error while trying to add WebAuthn device')) }) }, @@ -188,7 +188,7 @@ export default { this.$emit('added', device) } catch (err) { logger.error('Error persisting webauthn registration', { error: err }) - throw new Error(t('settings', 'Server error while trying to complete webauthn device registration')) + throw new Error(t('settings', 'Server error while trying to complete WebAuthn device registration')) } }, |