mirror of
https://github.com/WebTools-NG/WebTools-NG
synced 2024-11-26 04:50:18 +00:00
Some more translations done
This commit is contained in:
parent
732f5e3b23
commit
5bd9e61b9c
2 changed files with 14 additions and 5 deletions
|
@ -9,22 +9,22 @@
|
|||
has-icon
|
||||
icon-pack="fas"
|
||||
aria-close-label="Close notification">
|
||||
Sign in with plex.tv <br> Use your regular Plex credentials
|
||||
{{ $t("Common.Login.SignIn") }} <br> {{ $t("Common.Login.UseCred") }} <br> {{ $t("Common.Login.Note") }}
|
||||
</b-notification>
|
||||
<form action="" class="box">
|
||||
<div class="field">
|
||||
<label for="" class="label">Username</label>
|
||||
<label for="" class="label">{{ $t("Common.Login.Username") }}</label>
|
||||
<div class="control has-icons-left">
|
||||
<input type="text" placeholder="admin" class="input is-dark" v-model="input.username" required>
|
||||
<input type="text" v-bind:placeholder="$t('Common.Login.UsernamePrompt')" class="input is-dark" v-model="input.username" required>
|
||||
<span class="icon is-small is-left">
|
||||
<i class="fa fa-user"></i>
|
||||
</span>
|
||||
</div>
|
||||
</div>
|
||||
<div class="field">
|
||||
<label for="" class="label">Password</label>
|
||||
<label for="" class="label">{{ $t("Common.Login.Password") }}</label>
|
||||
<div class="control has-icons-left">
|
||||
<input type="password" placeholder="1234" class="input is-dark" v-model="input.password" v-on:keyup.enter="loginToPlex()" required>
|
||||
<input type="password" v-bind:placeholder="$t('Common.Login.PasswordPrompt')" class="input is-dark" v-model="input.password" v-on:keyup.enter="loginToPlex()" required>
|
||||
<span class="icon is-small is-left">
|
||||
<i class="fa fa-lock"></i>
|
||||
</span>
|
||||
|
|
|
@ -10,6 +10,15 @@
|
|||
"Language": {
|
||||
"Description": "@:Common.Language.Name allows you to change language of the app",
|
||||
"Name": "Language"
|
||||
},
|
||||
"Login": {
|
||||
"SignIn": "Sign in with plex.tv",
|
||||
"UseCred": "Use your regular Plex credentials",
|
||||
"Note": "3.Party Auth is not supported!",
|
||||
"Username": "Username",
|
||||
"UsernamePrompt": "Enter your plex.tv Username",
|
||||
"Password": "Password",
|
||||
"PasswordPrompt": "Enter your plex.tv password"
|
||||
}
|
||||
},
|
||||
"Modules": {
|
||||
|
|
Loading…
Reference in a new issue