Skip to content

Commit 4e9cd2b

Browse files
authored
Merge pull request #20308 from nextcloud/rakekniven-patch-1
l10n: Changed spelling of WebAuthn
2 parents 3b6615f + 922221b commit 4e9cd2b

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

apps/settings/js/vue-settings-personal-webauthn.js

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

apps/settings/js/vue-settings-personal-webauthn.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

apps/settings/src/components/WebAuthn/AddDevice.vue

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
<div v-else>
2727
<div v-if="step === RegistrationSteps.READY">
2828
<button @click="start">
29-
{{ t('settings', 'Add Webauthn device') }}
29+
{{ t('settings', 'Add WebAuthn device') }}
3030
</button>
3131
</div>
3232

@@ -146,7 +146,7 @@ export default {
146146
})
147147
.catch(err => {
148148
console.error('Error getting webauthn registration data from server', err)
149-
throw new Error(t('settings', 'Server error while trying to add webauthn device'))
149+
throw new Error(t('settings', 'Server error while trying to add WebAuthn device'))
150150
})
151151
},
152152
@@ -188,7 +188,7 @@ export default {
188188
this.$emit('added', device)
189189
} catch (err) {
190190
logger.error('Error persisting webauthn registration', { error: err })
191-
throw new Error(t('settings', 'Server error while trying to complete webauthn device registration'))
191+
throw new Error(t('settings', 'Server error while trying to complete WebAuthn device registration'))
192192
}
193193
},
194194

apps/settings/src/components/WebAuthn/Section.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
@delete="deleteDevice(device.id)" />
3838

3939
<p v-if="!hasPublicKeyCredential" class="warning">
40-
{{ t('settings', 'Your browser does not support Webauthn.') }}
40+
{{ t('settings', 'Your browser does not support WebAuthn.') }}
4141
</p>
4242

4343
<AddDevice v-if="hasPublicKeyCredential" :isHttps="isHttps" @added="deviceAdded" />

0 commit comments

Comments
 (0)