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

Merge pull request #159 from Fyxren/master

Added Dutch translation
This commit is contained in:
uetchy 2022-06-03 21:16:40 +09:00 committed by GitHub
commit fe4fd29f52
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 68 additions and 1 deletions

View File

@ -0,0 +1,63 @@
{
"about": "Over",
"available": "Beschikbaar",
"blog": "Introductie",
"community": "Gemeenschap",
"contributors": "Bijdragers",
"countryCode": "nl",
"title": "Krijg een geweldige naam voor je nieuwe project",
"description": "Controleer de beschikbaarheid van uw nieuwe app-/library-/organisatienaam ideeën in alle grote registers tegelijk.",
"gettingStarted": "Ermee Beginnen",
"gettingStartedWithExample": "Probeer met namae",
"issues": "Problemen",
"language": "Taal",
"noResult": "Geen Resultaat",
"placeholder": "zoek",
"pressEnterToSearch": "Druk op Enter om te zoeken",
"providers": {
"appStore": "App Store",
"archlinux": "Arch Linux",
"ubuntu": "Ubuntu",
"debian": "Debian",
"domains": "Domeinen",
"firebase": "Firebase",
"github": "GitHub Organisaties",
"githubSearch": "GitHub Repo's",
"gitlab": "GitLab",
"google": "Google Zoeken",
"heroku": "Heroku",
"homebrew": "Homebrew",
"instagram": "Instagram",
"jsorg": "js.org",
"modland": "mod.land",
"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",
"chromeWebStore": "Chrome Web Store",
"firefoxAddons": "Firefox Add-ons",
"youtube": "YouTube"
},
"showMore": "laat meer zien",
"try": "Wat dacht je hiervan?",
"unavailable": "Onbeschikbaar",
"uniqueness": {
"description": "UNIQ laat zien hoe uniek de naam is (0 tot 100)",
"high": "Vrij uniek",
"low": "Vaak voorkomend",
"moderate": "Zeldzaam"
},
"join-us": "Stuur <1>een pull request</1> en word een bijdrager!"
}

View File

@ -52,6 +52,9 @@ const Languages = () => {
<li>
<a href="/?lng=it">Italiano</a>
</li>
<li>
<a href="/?lng=nl">Nederlands</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 = '14';
const TRANSLATION_VERSION = '15';
i18n
.use(Backend)
@ -26,6 +26,7 @@ i18n
'pt-BR': TRANSLATION_VERSION,
es: TRANSLATION_VERSION,
it: TRANSLATION_VERSION,
nl: TRANSLATION_VERSION,
},
},
],