mirror of
https://github.com/owntone/owntone-server.git
synced 2025-04-16 17:10:03 -04:00
[web] Fix missing translation in the search page
Translation of the placeholder in the search bar (library and Spotify) is now translated.
This commit is contained in:
parent
f87c9d510f
commit
38090bd73d
@ -419,6 +419,7 @@
|
|||||||
"no-playlists": "Keine Playlisten gefunden",
|
"no-playlists": "Keine Playlisten gefunden",
|
||||||
"no-podcasts": "Keine Podcasts gefunden",
|
"no-podcasts": "Keine Podcasts gefunden",
|
||||||
"no-tracks": "Keine Tracks gefunden",
|
"no-tracks": "Keine Tracks gefunden",
|
||||||
|
"placeholder": "Suche",
|
||||||
"playlists": "Playlisten",
|
"playlists": "Playlisten",
|
||||||
"podcasts": "Podcasts",
|
"podcasts": "Podcasts",
|
||||||
"show-albums": "Zeige alle {count} Alben",
|
"show-albums": "Zeige alle {count} Alben",
|
||||||
@ -535,6 +536,7 @@
|
|||||||
"no-artists": "Keine Künstler gefunden",
|
"no-artists": "Keine Künstler gefunden",
|
||||||
"no-playlists": "Keine Playlisten gefunden",
|
"no-playlists": "Keine Playlisten gefunden",
|
||||||
"no-tracks": "Keine Tracks gefunden",
|
"no-tracks": "Keine Tracks gefunden",
|
||||||
|
"placeholder": "Suche",
|
||||||
"playlists": "Playlisten",
|
"playlists": "Playlisten",
|
||||||
"show-all-albums": "Zeige alle {count} Alben",
|
"show-all-albums": "Zeige alle {count} Alben",
|
||||||
"show-all-artists": "Zeige alle {count} Künstler",
|
"show-all-artists": "Zeige alle {count} Künstler",
|
||||||
|
@ -419,6 +419,7 @@
|
|||||||
"no-playlists": "No playlists found",
|
"no-playlists": "No playlists found",
|
||||||
"no-podcasts": "No podcasts found",
|
"no-podcasts": "No podcasts found",
|
||||||
"no-tracks": "No tracks found",
|
"no-tracks": "No tracks found",
|
||||||
|
"placeholder": "Search",
|
||||||
"playlists": "Playlists",
|
"playlists": "Playlists",
|
||||||
"podcasts": "Podcasts",
|
"podcasts": "Podcasts",
|
||||||
"show-albums": "Show all {count} albums",
|
"show-albums": "Show all {count} albums",
|
||||||
@ -535,6 +536,7 @@
|
|||||||
"no-artists": "No artists found",
|
"no-artists": "No artists found",
|
||||||
"no-playlists": "No playlists found",
|
"no-playlists": "No playlists found",
|
||||||
"no-tracks": "No tracks found",
|
"no-tracks": "No tracks found",
|
||||||
|
"placeholder": "Search",
|
||||||
"playlists": "Playlists",
|
"playlists": "Playlists",
|
||||||
"show-all-albums": "Show all {count} albums",
|
"show-all-albums": "Show all {count} albums",
|
||||||
"show-all-artists": "Show all {count} artists",
|
"show-all-artists": "Show all {count} artists",
|
||||||
|
@ -419,6 +419,7 @@
|
|||||||
"no-playlists": "Aucune liste de lecture trouvée",
|
"no-playlists": "Aucune liste de lecture trouvée",
|
||||||
"no-podcasts": "Aucune podcast trouvé",
|
"no-podcasts": "Aucune podcast trouvé",
|
||||||
"no-tracks": "Aucune piste trouvée",
|
"no-tracks": "Aucune piste trouvée",
|
||||||
|
"placeholder": "Recherche",
|
||||||
"playlists": "Listes de lecture",
|
"playlists": "Listes de lecture",
|
||||||
"podcasts": "Podcasts",
|
"podcasts": "Podcasts",
|
||||||
"show-albums": "Afficher les {count} albums",
|
"show-albums": "Afficher les {count} albums",
|
||||||
@ -535,6 +536,7 @@
|
|||||||
"no-artists": "Aucun artiste trouvé",
|
"no-artists": "Aucun artiste trouvé",
|
||||||
"no-playlists": "Aucune liste de lecture trouvée",
|
"no-playlists": "Aucune liste de lecture trouvée",
|
||||||
"no-tracks": "Aucune piste trouvée",
|
"no-tracks": "Aucune piste trouvée",
|
||||||
|
"placeholder": "Recherche",
|
||||||
"playlists": "Listes de lecture",
|
"playlists": "Listes de lecture",
|
||||||
"show-all-albums": "Afficher les {count} albums",
|
"show-all-albums": "Afficher les {count} albums",
|
||||||
"show-all-artists": "Afficher les {count} artistes",
|
"show-all-artists": "Afficher les {count} artistes",
|
||||||
|
@ -13,7 +13,7 @@
|
|||||||
v-model="search_query"
|
v-model="search_query"
|
||||||
class="input is-rounded is-shadowless"
|
class="input is-rounded is-shadowless"
|
||||||
type="text"
|
type="text"
|
||||||
placeholder="Search"
|
:placeholder="$t('page.search.placeholder')"
|
||||||
autocomplete="off"
|
autocomplete="off"
|
||||||
/>
|
/>
|
||||||
<span class="icon is-left"
|
<span class="icon is-left"
|
||||||
|
@ -13,7 +13,7 @@
|
|||||||
v-model="search_query"
|
v-model="search_query"
|
||||||
class="input is-rounded is-shadowless"
|
class="input is-rounded is-shadowless"
|
||||||
type="text"
|
type="text"
|
||||||
placeholder="Search"
|
:placeholder="$t('page.spotify.search.placeholder')"
|
||||||
autocomplete="off"
|
autocomplete="off"
|
||||||
/>
|
/>
|
||||||
<span class="icon is-left"
|
<span class="icon is-left"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user