mirror of
https://github.com/uetchy/namae.git
synced 2025-03-16 20:20:38 +09:00
feature: add add language pt-BR
This commit is contained in:
parent
2f546709dd
commit
661100a4f9
57
public/locales/pt-BR/translation.json
Normal file
57
public/locales/pt-BR/translation.json
Normal file
@ -0,0 +1,57 @@
|
||||
{
|
||||
"about": "Sobre",
|
||||
"available": "Disponível",
|
||||
"blog": "Artigo do Blog",
|
||||
"community": "Comunidade",
|
||||
"contributors": "Contribuídores",
|
||||
"countryCode": "pt-BR",
|
||||
"description": "Verifique imediatamente a disponibilidade de nomes para suas ideias de apps nos principais serviços.",
|
||||
"gettingStarted": "Começando",
|
||||
"gettingStartedWithExample": "Tente com namae",
|
||||
"issues": "Issues",
|
||||
"language": "Idioma",
|
||||
"noResult": "Sem resultados",
|
||||
"placeholder": "busca",
|
||||
"pressEnterToSearch": "Pressione Enter para procurar",
|
||||
"providers": {
|
||||
"appStore": "App Store",
|
||||
"archlinux": "Arch Linux",
|
||||
"ubuntu": "Ubuntu",
|
||||
"debian": "Debian",
|
||||
"domains": "Domínios",
|
||||
"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",
|
||||
"twitter": "Twitter"
|
||||
},
|
||||
"showMore": "Mostrar +",
|
||||
"title": "Encontre um nome original para seu novo aplicativo",
|
||||
"try": "Que tal agora?",
|
||||
"unavailable": "Indisponível",
|
||||
"uniqueness": {
|
||||
"description": "UNIQ mostra em uma escala de 0-10 quão único é nome",
|
||||
"high": "Muito único",
|
||||
"low": "Tipico",
|
||||
"moderate": "Moderadamente único"
|
||||
},
|
||||
"join-us": "Envie <1>uma pull request</1> e seja um contribuidor!"
|
||||
}
|
@ -43,6 +43,9 @@ const Languages = () => {
|
||||
<li>
|
||||
<a href="/?lng=zh-Hant">繁體中文</a>
|
||||
</li>
|
||||
<li>
|
||||
<a href="/?lng=pt-BR">Português-BR</a>
|
||||
</li>
|
||||
</ul>
|
||||
</Pane>
|
||||
);
|
||||
|
@ -5,7 +5,7 @@ import XHR from 'i18next-xhr-backend';
|
||||
import LanguageDetector from 'i18next-browser-languagedetector';
|
||||
import { initReactI18next } from 'react-i18next';
|
||||
|
||||
const TRANSLATION_VERSION = '6';
|
||||
const TRANSLATION_VERSION = '7';
|
||||
|
||||
i18n
|
||||
.use(Backend)
|
||||
@ -23,6 +23,7 @@ i18n
|
||||
ja: TRANSLATION_VERSION,
|
||||
'zh-Hans': TRANSLATION_VERSION,
|
||||
'zh-Hant': TRANSLATION_VERSION,
|
||||
'pt-BR': TRANSLATION_VERSION,
|
||||
},
|
||||
},
|
||||
],
|
||||
|
Loading…
x
Reference in New Issue
Block a user