Skip to content

Commit

Permalink
fix: update sign in button label
Browse files Browse the repository at this point in the history
  • Loading branch information
simonwep committed Nov 13, 2023
1 parent 25595b1 commit 9ecec91
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/pages/navigation/auth/LoginDialog.vue
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<template>
<Dialog :open="open" :title="t('auth.welcomeBack')" @close="emit('close')">
<Form :submit-label="t('auth.welcomeBack')" @submit="signIn">
<Form :submit-label="t('auth.signIn')" @submit="signIn">
<TextField v-model="username" required :label="t('auth.username')" type="text" />
<TextField v-model="password" required :label="t('auth.password')" type="password" />
<Alert v-if="state === 'errored'" :text="t('auth.errors.loginFailed')" type="error" />
Expand Down
1 change: 1 addition & 0 deletions src/i18n/locales/de.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
},
"newPassword": "Neues Passwort",
"password": "Passwort",
"signIn": "Einloggen",
"username": "Benutzername",
"welcomeBack": "Willkommen zurück!"
},
Expand Down
1 change: 1 addition & 0 deletions src/i18n/locales/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
},
"newPassword": "New password",
"password": "Password",
"signIn": "Sign in",
"username": "Username",
"welcomeBack": "Welcome back!"
},
Expand Down

0 comments on commit 9ecec91

Please sign in to comment.