From d5468945bc4b5e9d68cc12b582ae3c08bb9f3155 Mon Sep 17 00:00:00 2001 From: nixiesquid Date: Fri, 31 Jul 2020 23:50:27 +0900 Subject: [PATCH 1/4] fix chinese translation around "Issues" --- public/locales/zh-Hans/translation.json | 2 +- public/locales/zh-Hant/translation.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/public/locales/zh-Hans/translation.json b/public/locales/zh-Hans/translation.json index 261509a..84ab17f 100644 --- a/public/locales/zh-Hans/translation.json +++ b/public/locales/zh-Hans/translation.json @@ -47,6 +47,6 @@ "community": "社区", "about": "关于", "contributors": "贡献者", - "issues": "问题", + "issues": "Issues", "blog": "博客" } diff --git a/public/locales/zh-Hant/translation.json b/public/locales/zh-Hant/translation.json index 0fe8be0..b54ab10 100644 --- a/public/locales/zh-Hant/translation.json +++ b/public/locales/zh-Hant/translation.json @@ -47,6 +47,6 @@ "community": "社區", "about": "關於", "contributors": "貢獻者", - "issues": "問題", + "issues": "Issues", "blog": "博客" } From b974ddc016dae32704db98df9bd6d3255a749348 Mon Sep 17 00:00:00 2001 From: nixiesquid Date: Fri, 31 Jul 2020 23:52:58 +0900 Subject: [PATCH 2/4] add German translation --- public/locales/de/translation.json | 52 ++++++++++++++++++++++++++++++ src/components/Footer.tsx | 3 ++ src/util/i18n.ts | 1 + 3 files changed, 56 insertions(+) create mode 100644 public/locales/de/translation.json diff --git a/public/locales/de/translation.json b/public/locales/de/translation.json new file mode 100644 index 0000000..8b1010b --- /dev/null +++ b/public/locales/de/translation.json @@ -0,0 +1,52 @@ +{ + "title": "Schnapp dir einen guten Namen für deine neue App", + "description": "Überprüfen Sie sofort die Verfügbarkeit Ihres neuen Anwendungsnamens in allen wichtigen Registern.", + "placeholder": "suchen", + "providers": { + "domains": "Domänen", + "github": "GitHub Organisation", + "gitlab": "GitLab", + "npm": "npm", + "pypi": "PyPI", + "rubygems": "RubyGems", + "rust": "Rust", + "homebrew": "Homebrew", + "linux": "Linux", + "instagram": "Instagram", + "twitter": "Twitter", + "slack": "Slack", + "s3": "AWS S3", + "jsorg": "js.org", + "githubSearch": "GitHub Repository", + "appStore": "App Store", + "google": "Google-Suche", + "spectrum": "Spectrum", + "heroku": "Heroku", + "now": "Vercel", + "netlify": "Netlify", + "nta": "Company (JP)", + "ocaml": "OCaml", + "firebase": "Firebase" + }, + "uniqueness": { + "high": "Ziemlich einzigartig", + "moderate": "Mäßig einzigartig", + "low": "Typisch", + "description": "UNIQ zeigt, wie eindeutig der Name ist (0 bis 100)" + }, + "countryCode": "de", + "try": "Wie wäre es mit?", + "showMore": "Zeig mehr", + "noResult": "Kein Ergebnis", + "gettingStarted": "Fertig werden", + "gettingStartedWithExample": "Untersuche namae", + "pressEnterToSearch": "Drücken Sie die Eingabetaste, um zu suchen", + "available": "Verfügbar", + "unavailable": "Nicht verfügbar", + "language": "Sprache", + "community": "Gemeinschaft", + "about": "Zusammenfassung", + "contributors": "Mitwirkende", + "issues": "Issues", + "blog": "Blog-Artikel" +} diff --git a/src/components/Footer.tsx b/src/components/Footer.tsx index 92b8577..c3f9198 100644 --- a/src/components/Footer.tsx +++ b/src/components/Footer.tsx @@ -38,6 +38,9 @@ const Languages = () => {
  • 繁體中文
  • +
  • + Deutsch +
  • ); diff --git a/src/util/i18n.ts b/src/util/i18n.ts index a8cc5ed..9ec582a 100644 --- a/src/util/i18n.ts +++ b/src/util/i18n.ts @@ -21,6 +21,7 @@ i18n ja: TRANSLATION_VERSION, 'zh-Hans': TRANSLATION_VERSION, 'zh-Hant': TRANSLATION_VERSION, + de: TRANSLATION_VERSION, }, }, ], From d3bcf5fb3e0c442a39610fb425a10477432afc53 Mon Sep 17 00:00:00 2001 From: nixiesquid Date: Sat, 1 Aug 2020 00:04:34 +0900 Subject: [PATCH 3/4] fix translation for company --- public/locales/de/translation.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/locales/de/translation.json b/public/locales/de/translation.json index 8b1010b..ffd0f2b 100644 --- a/public/locales/de/translation.json +++ b/public/locales/de/translation.json @@ -24,7 +24,7 @@ "heroku": "Heroku", "now": "Vercel", "netlify": "Netlify", - "nta": "Company (JP)", + "nta": "Firma (JP)", "ocaml": "OCaml", "firebase": "Firebase" }, From abc50326d3d91d752d12ca56f30274332904723f Mon Sep 17 00:00:00 2001 From: nixiesquid Date: Sat, 1 Aug 2020 00:08:34 +0900 Subject: [PATCH 4/4] fix languages order --- src/components/Footer.tsx | 6 +++--- src/util/i18n.ts | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/components/Footer.tsx b/src/components/Footer.tsx index c3f9198..ba6eeb7 100644 --- a/src/components/Footer.tsx +++ b/src/components/Footer.tsx @@ -29,6 +29,9 @@ const Languages = () => {
  • English
  • +
  • + Deutsch +
  • 日本語
  • @@ -38,9 +41,6 @@ const Languages = () => {
  • 繁體中文
  • -
  • - Deutsch -
  • ); diff --git a/src/util/i18n.ts b/src/util/i18n.ts index 9ec582a..8fc03e4 100644 --- a/src/util/i18n.ts +++ b/src/util/i18n.ts @@ -18,10 +18,10 @@ i18n { versions: { en: TRANSLATION_VERSION, + de: TRANSLATION_VERSION, ja: TRANSLATION_VERSION, 'zh-Hans': TRANSLATION_VERSION, 'zh-Hant': TRANSLATION_VERSION, - de: TRANSLATION_VERSION, }, }, ],