Browse Source
Merge pull request #291 from Ponkhy/master
Added translation to Setup.vue
pull/303/head
Louis Lam
4 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with
6 additions and
4 deletions
-
src/languages/de-DE.js
-
src/pages/Setup.vue
|
|
@ -104,5 +104,7 @@ export default { |
|
|
|
rrtypeDescription: "Wähle den RR-Typ aus, welchen du überwachen möchtest.", |
|
|
|
"Last Result": "Letztes Ergebnis", |
|
|
|
pauseMonitorMsg: "Bist du sicher das du den Monitor pausieren möchtest?", |
|
|
|
"Create your admin account": "Erstelle dein Admin Konto", |
|
|
|
"Repeat Password": "Wiederhole das Passwort", |
|
|
|
"Resource Record Type": "Resource Record Type" |
|
|
|
} |
|
|
|
|
|
@ -10,22 +10,22 @@ |
|
|
|
</div> |
|
|
|
|
|
|
|
<p class="mt-3"> |
|
|
|
Create your admin account |
|
|
|
{{ $t("Create your admin account") }} |
|
|
|
</p> |
|
|
|
|
|
|
|
<div class="form-floating"> |
|
|
|
<input id="floatingInput" v-model="username" type="text" class="form-control" placeholder="Username" required> |
|
|
|
<label for="floatingInput">Username</label> |
|
|
|
<label for="floatingInput">{{ $t("Username") }}</label> |
|
|
|
</div> |
|
|
|
|
|
|
|
<div class="form-floating mt-3"> |
|
|
|
<input id="floatingPassword" v-model="password" type="password" class="form-control" placeholder="Password" required> |
|
|
|
<label for="floatingPassword">Password</label> |
|
|
|
<label for="floatingPassword">{{ $t("Password") }}</label> |
|
|
|
</div> |
|
|
|
|
|
|
|
<div class="form-floating mt-3"> |
|
|
|
<input id="repeat" v-model="repeatPassword" type="password" class="form-control" placeholder="Repeat Password" required> |
|
|
|
<label for="repeat">Repeat Password</label> |
|
|
|
<label for="repeat">{{ $t("Repeat Password") }}</label> |
|
|
|
</div> |
|
|
|
|
|
|
|
<button class="w-100 btn btn-primary mt-3" type="submit" :disabled="processing"> |
|
|
|