l10n: Changed spelling of WebAuthn

Signed-off-by: rakekniven <mark.ziegler@rakekniven.de>
This commit is contained in:
rakekniven 2020-04-04 23:04:33 +02:00 committed by GitHub
parent e5b3ee615e
commit a4dc7f772b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -146,7 +146,7 @@ export default {
}) })
.catch(err => { .catch(err => {
console.error('Error getting webauthn registration data from server', 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) this.$emit('added', device)
} catch (err) { } catch (err) {
logger.error('Error persisting webauthn registration', { error: 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'))
} }
}, },