mirror of
https://github.com/pds-nest/nest.git
synced 2024-11-21 20:44:18 +00:00
🌐 Add missing strings in italian
This commit is contained in:
parent
d395aa92f3
commit
6af52643d1
3 changed files with 5 additions and 3 deletions
|
@ -29,9 +29,11 @@ export default {
|
|||
byHashtag: "hashtag",
|
||||
byUser: "utente",
|
||||
byHasImage: "immagine",
|
||||
hasImageExplaination: "Mostra solo i tweet con immagine.",
|
||||
byTimePeriod: "arco di tempo",
|
||||
byContents: "contenuti",
|
||||
byHasPlace: "punto di interesse",
|
||||
hasPlaceExplaination: "Mostra solo i tweet a cui è associato un PoI.",
|
||||
timeBefore: "Prima",
|
||||
timeAfter: "Dopo",
|
||||
conditions: "Condizioni",
|
||||
|
|
|
@ -27,7 +27,7 @@ export default function GlobalLanguage({ children }) {
|
|||
}
|
||||
else if(defaultStrings.hasOwnProperty(name)) {
|
||||
console.warn("Missing ", lang, " localization for string ", name)
|
||||
return <i className={Style.MissingLocalization} title={name}>{defaultStrings[name]}</i>
|
||||
return <span className={Style.MissingLocalization} title={name}>{defaultStrings[name]}</span>
|
||||
|
||||
}
|
||||
else {
|
||||
|
|
|
@ -1,12 +1,12 @@
|
|||
.MissingLocalization {
|
||||
background-color: darkorange;
|
||||
color: white;
|
||||
color: black;
|
||||
cursor: help;
|
||||
}
|
||||
|
||||
.MissingString {
|
||||
background-color: red;
|
||||
color: white;
|
||||
color: black;
|
||||
font-weight: bold;
|
||||
cursor: help;
|
||||
}
|
Loading…
Reference in a new issue