mirror of
https://github.com/uetchy/namae.git
synced 2025-03-16 20:20:38 +09:00
Merge pull request #149 from Thebigbot0000/master
Italian support (fixed)
This commit is contained in:
commit
1bb76db0b6
59
public/locales/it/translation.json
Normal file
59
public/locales/it/translation.json
Normal file
@ -0,0 +1,59 @@
|
|||||||
|
{
|
||||||
|
"about": "Più informazioni su di noi",
|
||||||
|
"available": "Disponibile",
|
||||||
|
"blog": "Articoli del blog",
|
||||||
|
"community": "Comunità",
|
||||||
|
"contributors": "Contributori",
|
||||||
|
"countryCode": "it",
|
||||||
|
"description": "Verifica la disponibilità dei nomi che vuoi dare a i tuoi progetti in tutti i registri principali contemporaneamente.",
|
||||||
|
"gettingStarted": "Inizia",
|
||||||
|
"gettingStartedWithExample": "Prova con namae",
|
||||||
|
"issues": "Problemi",
|
||||||
|
"language": "Lingue",
|
||||||
|
"noResult": "Nessun risultato",
|
||||||
|
"placeholder": "Cerca",
|
||||||
|
"pressEnterToSearch": "Premi Invio per cercare",
|
||||||
|
"providers": {
|
||||||
|
"appStore": "App Store",
|
||||||
|
"archlinux": "Arch Linux",
|
||||||
|
"ubuntu": "Ubuntu",
|
||||||
|
"debian": "Debian",
|
||||||
|
"domains": "Domini",
|
||||||
|
"firebase": "Firebase",
|
||||||
|
"github": "GitHub Organization",
|
||||||
|
"githubSearch": "GitHub Repository",
|
||||||
|
"gitlab": "GitLab",
|
||||||
|
"google": "Google Search",
|
||||||
|
"heroku": "Heroku",
|
||||||
|
"homebrew": "Homebrew",
|
||||||
|
"instagram": "Instagram",
|
||||||
|
"jsorg": "js.org",
|
||||||
|
"linux": "Linux",
|
||||||
|
"netlify": "Netlify",
|
||||||
|
"now": "Vercel",
|
||||||
|
"npm": "npm",
|
||||||
|
"nta": "Company (JP)",
|
||||||
|
"ocaml": "OCaml",
|
||||||
|
"playStore": "Google Play Store",
|
||||||
|
"pypi": "PyPI",
|
||||||
|
"rubygems": "RubyGems",
|
||||||
|
"rust": "Rust",
|
||||||
|
"s3": "AWS S3",
|
||||||
|
"slack": "Slack",
|
||||||
|
"spectrum": "Spectrum",
|
||||||
|
"reddit": "Reddit",
|
||||||
|
"twitter": "Twitter",
|
||||||
|
"cloudflare": "Cloudflare Pages"
|
||||||
|
},
|
||||||
|
"showMore": "mostra di più",
|
||||||
|
"title": "Scegli un nome elegante per la tua nuova app",
|
||||||
|
"try": "Cosa ne pensi di questi?",
|
||||||
|
"unavailable": "Non disponibile",
|
||||||
|
"uniqueness": {
|
||||||
|
"description": "UNIQ mostra quanto il tuo nome è unico (da 0 a 100)",
|
||||||
|
"high": "Piuttosto unico",
|
||||||
|
"low": "Tipico",
|
||||||
|
"moderate": "Moderatamente unico"
|
||||||
|
},
|
||||||
|
"join-us": "Invia <1>una pull request</1> e diventa un contributore!"
|
||||||
|
}
|
@ -49,6 +49,9 @@ const Languages = () => {
|
|||||||
<li>
|
<li>
|
||||||
<a href="/?lng=es">Español</a>
|
<a href="/?lng=es">Español</a>
|
||||||
</li>
|
</li>
|
||||||
|
<li>
|
||||||
|
<a href="/?lng=it">Italiano</a>
|
||||||
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</Pane>
|
</Pane>
|
||||||
);
|
);
|
||||||
|
@ -5,7 +5,7 @@ import XHR from 'i18next-xhr-backend';
|
|||||||
import LanguageDetector from 'i18next-browser-languagedetector';
|
import LanguageDetector from 'i18next-browser-languagedetector';
|
||||||
import { initReactI18next } from 'react-i18next';
|
import { initReactI18next } from 'react-i18next';
|
||||||
|
|
||||||
const TRANSLATION_VERSION = '9';
|
const TRANSLATION_VERSION = '10';
|
||||||
|
|
||||||
i18n
|
i18n
|
||||||
.use(Backend)
|
.use(Backend)
|
||||||
@ -25,6 +25,7 @@ i18n
|
|||||||
'zh-Hant': TRANSLATION_VERSION,
|
'zh-Hant': TRANSLATION_VERSION,
|
||||||
'pt-BR': TRANSLATION_VERSION,
|
'pt-BR': TRANSLATION_VERSION,
|
||||||
es: TRANSLATION_VERSION,
|
es: TRANSLATION_VERSION,
|
||||||
|
it: TRANSLATION_VERSION,
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
|
Loading…
x
Reference in New Issue
Block a user