Add Italian localization
This commit is contained in:
@@ -0,0 +1,24 @@
|
|||||||
|
package l10n
|
||||||
|
|
||||||
|
var phrasesIT = map[string]string{
|
||||||
|
"Anonymous post": "Post anonimo",
|
||||||
|
"Blogs": "Blogs",
|
||||||
|
"Newer": "Più recenti",
|
||||||
|
"Older": "Più vecchi",
|
||||||
|
"Posts": "Posts",
|
||||||
|
"Publish to...": "Pubblica su...",
|
||||||
|
"Publish": "Pubblica",
|
||||||
|
"Read more...": "Continua...",
|
||||||
|
"Toggle theme": "Attiva tema",
|
||||||
|
"View posts": "Vedi Posts",
|
||||||
|
"delete": "cancella",
|
||||||
|
"edit": "modifica",
|
||||||
|
"move to...": "sposta verso...",
|
||||||
|
"pin": "attacca",
|
||||||
|
"published with write.as": "pubblicato con write.as",
|
||||||
|
"share modal ending": "Mandalo ad un amico, condividilo sul web, oppure tweettalo. Per saperne di più.",
|
||||||
|
"share modal introduction": "Ogni post pubblicato possiede un URL segreto e unico che puoi condividere con chiunque. Questo è l'URL:",
|
||||||
|
"share modal title": "Condividi questo post",
|
||||||
|
"share": "condividi",
|
||||||
|
"unpin": "stacca",
|
||||||
|
}
|
||||||
@@ -6,6 +6,8 @@ func Strings(lang string) map[string]string {
|
|||||||
switch lang {
|
switch lang {
|
||||||
case "hu":
|
case "hu":
|
||||||
return phrasesHU
|
return phrasesHU
|
||||||
|
case "it":
|
||||||
|
return phrasesIT
|
||||||
default:
|
default:
|
||||||
return phrases
|
return phrases
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user