fix(searchBarV2): translation search bar placeholder
This commit is contained in:
@@ -88,7 +88,7 @@ const SearchBarComponent = () => {
|
||||
type="text"
|
||||
value={query}
|
||||
variant={'unstyled'}
|
||||
placeholder="What are you looking for ?"
|
||||
placeholder={translate('searchBarPlaceholder')}
|
||||
style={{ width: '100%', height: 30 }}
|
||||
onChangeText={(value) => setQuery(value)}
|
||||
/>
|
||||
|
||||
@@ -84,6 +84,7 @@ export const en = {
|
||||
songsFilter: 'Songs',
|
||||
genreFilter: 'Genres',
|
||||
favoriteFilter: 'Favorites',
|
||||
searchBarPlaceholder: 'What are you looking for ?',
|
||||
|
||||
// profile page
|
||||
user: 'Profile',
|
||||
@@ -396,6 +397,7 @@ export const fr: typeof en = {
|
||||
songsFilter: 'Morceaux',
|
||||
genreFilter: 'Genres',
|
||||
favoriteFilter: 'Favoris',
|
||||
searchBarPlaceholder: 'Que recherchez vous ?',
|
||||
|
||||
// Difficulty settings
|
||||
diffBtn: 'Difficulté',
|
||||
@@ -701,6 +703,7 @@ export const sp: typeof en = {
|
||||
songsFilter: 'canciones',
|
||||
genreFilter: 'géneros',
|
||||
favoriteFilter: 'Favorites',
|
||||
searchBarPlaceholder: 'Qué estás buscando ?',
|
||||
|
||||
// Difficulty settings
|
||||
diffBtn: 'Dificultad',
|
||||
|
||||
Reference in New Issue
Block a user