Translation

This commit is contained in:
2024-09-09 20:55:09 +02:00
parent 40586f18b2
commit 5a1b28dd60
15 changed files with 226 additions and 60 deletions

View File

@@ -2,24 +2,24 @@
</script>
<template>
<v-card title="Login" prepend-icon="mdi-login" elevation="8">
<v-card :title="$t('menu.login')" prepend-icon="mdi-login" elevation="8">
<v-container>
<v-row>
<v-col>
<v-text-field label="Username" prepend-icon="mdi-account" clearable />
<v-text-field :label="$t('username')" prepend-icon="mdi-account" clearable />
</v-col>
</v-row>
<v-row>
<v-col>
<v-text-field label="Passwort" prepend-icon="mdi-key" type="password" clearable />
<v-text-field :label="$t('password')" prepend-icon="mdi-key" type="password" clearable />
</v-col>
</v-row>
<v-row>
<v-col>
<!-- todo -->
<v-btn prepend-icon="mdi-send" color="primary" block>Login</v-btn>
<v-btn prepend-icon="mdi-send" color="primary" block>{{ $t('login') }}</v-btn>
</v-col>
</v-row>
</v-container>
@@ -31,8 +31,7 @@
rel="noopener noreferrer"
target="_blank"
>
<!-- todo -->
Nicht keinen Account? Jetzt anmelden! <v-icon icon="mdi-chevron-right"></v-icon>
{{ $t('noAccountRegister') }} <v-icon icon="mdi-chevron-right"/>
</a>
</v-card-text>
</v-card>