[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-podcasts": "Keine Podcasts gefunden",
|
||||
"no-tracks": "Keine Tracks gefunden",
|
||||
"placeholder": "Suche",
|
||||
"playlists": "Playlisten",
|
||||
"podcasts": "Podcasts",
|
||||
"show-albums": "Zeige alle {count} Alben",
|
||||
|
@ -535,6 +536,7 @@
|
|||
"no-artists": "Keine Künstler gefunden",
|
||||
"no-playlists": "Keine Playlisten gefunden",
|
||||
"no-tracks": "Keine Tracks gefunden",
|
||||
"placeholder": "Suche",
|
||||
"playlists": "Playlisten",
|
||||
"show-all-albums": "Zeige alle {count} Alben",
|
||||
"show-all-artists": "Zeige alle {count} Künstler",
|
||||
|
|
|
@ -419,6 +419,7 @@
|
|||
"no-playlists": "No playlists found",
|
||||
"no-podcasts": "No podcasts found",
|
||||
"no-tracks": "No tracks found",
|
||||
"placeholder": "Search",
|
||||
"playlists": "Playlists",
|
||||
"podcasts": "Podcasts",
|
||||
"show-albums": "Show all {count} albums",
|
||||
|
@ -535,6 +536,7 @@
|
|||
"no-artists": "No artists found",
|
||||
"no-playlists": "No playlists found",
|
||||
"no-tracks": "No tracks found",
|
||||
"placeholder": "Search",
|
||||
"playlists": "Playlists",
|
||||
"show-all-albums": "Show all {count} albums",
|
||||
"show-all-artists": "Show all {count} artists",
|
||||
|
|
|
@ -419,6 +419,7 @@
|
|||
"no-playlists": "Aucune liste de lecture trouvée",
|
||||
"no-podcasts": "Aucune podcast trouvé",
|
||||
"no-tracks": "Aucune piste trouvée",
|
||||
"placeholder": "Recherche",
|
||||
"playlists": "Listes de lecture",
|
||||
"podcasts": "Podcasts",
|
||||
"show-albums": "Afficher les {count} albums",
|
||||
|
@ -535,6 +536,7 @@
|
|||
"no-artists": "Aucun artiste trouvé",
|
||||
"no-playlists": "Aucune liste de lecture trouvée",
|
||||
"no-tracks": "Aucune piste trouvée",
|
||||
"placeholder": "Recherche",
|
||||
"playlists": "Listes de lecture",
|
||||
"show-all-albums": "Afficher les {count} albums",
|
||||
"show-all-artists": "Afficher les {count} artistes",
|
||||
|
|
|
@ -13,7 +13,7 @@
|
|||
v-model="search_query"
|
||||
class="input is-rounded is-shadowless"
|
||||
type="text"
|
||||
placeholder="Search"
|
||||
:placeholder="$t('page.search.placeholder')"
|
||||
autocomplete="off"
|
||||
/>
|
||||
<span class="icon is-left"
|
||||
|
|
|
@ -13,7 +13,7 @@
|
|||
v-model="search_query"
|
||||
class="input is-rounded is-shadowless"
|
||||
type="text"
|
||||
placeholder="Search"
|
||||
:placeholder="$t('page.spotify.search.placeholder')"
|
||||
autocomplete="off"
|
||||
/>
|
||||
<span class="icon is-left"
|
||||
|
|
Loading…
Reference in New Issue