Merge pull request 'bugfix/language-select-label' (#2) from bugfix/language-select-label into master
Reviewed-on: #2
This commit is contained in:
commit
7a47d45721
|
@ -1,7 +1,7 @@
|
||||||
{
|
{
|
||||||
"name": "frontend",
|
"name": "frontend",
|
||||||
"private": true,
|
"private": true,
|
||||||
"version": "0.4.0",
|
"version": "0.4.4",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"repository": "https://git.lamacchinadesiderante.org/lamacchinadesiderante/millelibri",
|
"repository": "https://git.lamacchinadesiderante.org/lamacchinadesiderante/millelibri",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
|
|
@ -104,7 +104,7 @@ const Search: React.FC<SearchProps> = ({ setBooks }) => {
|
||||||
|
|
||||||
{!showLanguageDropdown && (<SearchInput
|
{!showLanguageDropdown && (<SearchInput
|
||||||
icon={<Icon as={IoLanguage} />}
|
icon={<Icon as={IoLanguage} />}
|
||||||
placeholder={t('book.language')}
|
placeholder={t('input.select_language')}
|
||||||
value={language}
|
value={language}
|
||||||
onChange={handleLanguageChange}
|
onChange={handleLanguageChange}
|
||||||
onClear={handleLanguageReset}
|
onClear={handleLanguageReset}
|
||||||
|
@ -112,7 +112,7 @@ const Search: React.FC<SearchProps> = ({ setBooks }) => {
|
||||||
|
|
||||||
{showLanguageDropdown && (<SearchLanguage
|
{showLanguageDropdown && (<SearchLanguage
|
||||||
icon={<Icon as={IoLanguage} />}
|
icon={<Icon as={IoLanguage} />}
|
||||||
placeholder={t('book.language')}
|
placeholder={t('input.select_language')}
|
||||||
value={language}
|
value={language}
|
||||||
onChange={handleLanguageChange}
|
onChange={handleLanguageChange}
|
||||||
/>)}
|
/>)}
|
||||||
|
|
|
@ -8,7 +8,8 @@
|
||||||
"toggle_language": "Toggle Language"
|
"toggle_language": "Toggle Language"
|
||||||
},
|
},
|
||||||
"input": {
|
"input": {
|
||||||
"clear": "Clear"
|
"clear": "Clear",
|
||||||
|
"select_language": "(Select language...)"
|
||||||
},
|
},
|
||||||
"book": {
|
"book": {
|
||||||
"id": "zlib/libgen id",
|
"id": "zlib/libgen id",
|
||||||
|
@ -60,7 +61,7 @@
|
||||||
"input": "Input..."
|
"input": "Input..."
|
||||||
},
|
},
|
||||||
"disclaimer": {
|
"disclaimer": {
|
||||||
"nolink_warning": "WARNING: This platform does not host any kind of link to copyrighted material. It just displays CID related to IPFS resources"
|
"nolink_warning": "WARNING: This platform does not host any kind of link to copyrighted material. It just displays CID related to IPFS resources."
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
@ -173,7 +174,8 @@
|
||||||
"toggle_language": "Lingua"
|
"toggle_language": "Lingua"
|
||||||
},
|
},
|
||||||
"input": {
|
"input": {
|
||||||
"clear": "pulisci"
|
"clear": "pulisci",
|
||||||
|
"select_language": "(Seleziona lingua...)"
|
||||||
},
|
},
|
||||||
"book": {
|
"book": {
|
||||||
"id": "ID zlib/libgen",
|
"id": "ID zlib/libgen",
|
||||||
|
@ -182,7 +184,7 @@
|
||||||
"publisher": "Editore",
|
"publisher": "Editore",
|
||||||
"extension": "Estensione",
|
"extension": "Estensione",
|
||||||
"filesize": "Dimensione file",
|
"filesize": "Dimensione file",
|
||||||
"language": "(Seleziona lingua...)",
|
"language": "Lingua",
|
||||||
"year": "Anno",
|
"year": "Anno",
|
||||||
"pages": "Pagina",
|
"pages": "Pagina",
|
||||||
"isbn": "ISBN",
|
"isbn": "ISBN",
|
||||||
|
|
Loading…
Reference in New Issue