#3 add translation for login button

Signed-off-by: Benny Samir Hierl <bennysamir@posteo.de>
This commit is contained in:
Benny Samir Hierl 2022-02-12 20:58:29 +01:00
parent a1f84af53b
commit 1d9aae5c5c
3 changed files with 7 additions and 1 deletions

View file

@ -25,6 +25,9 @@
"api-key": {
"placeholder": "API-Key",
"error-requried": "API-Key wird benötigt"
},
"submit": {
"text": "Anmelden"
}
}
}

View file

@ -25,6 +25,9 @@
"api-key": {
"placeholder": "API-Key",
"error-requried": "API-Key is required"
},
"submit": {
"text": "Login"
}
}
}

View file

@ -48,7 +48,7 @@ const onSubmit = (values: any): void => {
class="h-12 w-full"
mode="primary"
:disabled="!meta.dirty || !meta.valid"
>Submit</BaseButton
>{{ t('pages.login-view.main.form.submit.text') }}</BaseButton
>
</Form>
</div>