add t/strings for username and password

This commit is contained in:
vrifox 2023-07-18 17:10:07 +02:00
parent ec060d6ebe
commit 10201bb6b1
No known key found for this signature in database
GPG key ID: D40098E5B60B2197
3 changed files with 12 additions and 4 deletions

View file

@ -412,14 +412,14 @@ onMounted(async () => {
<input
class="textbox"
type="text"
placeholder="username"
:placeholder="t('general.username')"
autocomplete="username"
@change="user.username = $event.target.value"
required />
<input
class="textbox"
type="password"
placeholder="password"
:placeholder="t('general.password')"
autocomplete="password"
@change="user.password = $event.target.value"
required />

View file

@ -85,8 +85,12 @@
"void": "Keine Liedtexte"
},
"statusBar": {
"currentPlaylist": "Aktuelle Wiedergabeliste",
"loop": "Schleife"
"currentPlaylist": "Aktuelle Wiedergabeliste",
"loop": "Schleife"
},
"general": {
"username": "Benutzername",
"password": "Passwort"
},
"countries": {
"AE": "Vereinigte Arabische Emirate",

View file

@ -88,6 +88,10 @@
"currentPlaylist": "Current Playlist",
"loop": "Loop"
},
"general": {
"username": "username",
"password": "password"
},
"countries": {
"AE": "United Arab Emirates",
"AR": "Argentina",