1
0
mirror of https://github.com/uetchy/namae.git synced 2025-03-16 12:10:32 +09:00

Merge pull request #149 from Thebigbot0000/master

Italian support (fixed)
This commit is contained in:
uetchy 2022-04-12 12:58:38 +09:00 committed by GitHub
commit 1bb76db0b6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 64 additions and 1 deletions

View 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!"
}

View File

@ -49,6 +49,9 @@ const Languages = () => {
<li>
<a href="/?lng=es">Español</a>
</li>
<li>
<a href="/?lng=it">Italiano</a>
</li>
</ul>
</Pane>
);

View File

@ -5,7 +5,7 @@ import XHR from 'i18next-xhr-backend';
import LanguageDetector from 'i18next-browser-languagedetector';
import { initReactI18next } from 'react-i18next';
const TRANSLATION_VERSION = '9';
const TRANSLATION_VERSION = '10';
i18n
.use(Backend)
@ -25,6 +25,7 @@ i18n
'zh-Hant': TRANSLATION_VERSION,
'pt-BR': TRANSLATION_VERSION,
es: TRANSLATION_VERSION,
it: TRANSLATION_VERSION,
},
},
],