From e8b735e1cba012ae3977df286de1dfc04be80798 Mon Sep 17 00:00:00 2001 From: Amruth Pillai Date: Sat, 25 Jul 2020 20:23:10 +0530 Subject: [PATCH] - adding Japanese language --- README.md | 1 + src/i18n/index.js | 4 ++++ src/i18n/locales/index.js | 2 ++ 3 files changed, 7 insertions(+) diff --git a/README.md b/README.md index 690bd1e1..e299df68 100644 --- a/README.md +++ b/README.md @@ -51,6 +51,7 @@ For those of you familiar with the Crowdin Platform, you could do that too and j - Finnish (Suomalainen) (by Ari Pikkarainen) - French (Français) (by [MeisterLLD](https://github.com/MeisterLLD)) - German (Deutsche) (by [Kryptand](https://crowdin.com/profile/Kryptand)) +- Japanese (日本人) (by [a-thug](https://crowdin.com/profile/a-thug)) - Kannada (ಕನ್ನಡ) - Portuguese (Brazilian) (by [Felipe CG](https://github.com/felcg)) - Spanish (Español) (by [jrgonzalezrios](https://github.com/jrgonzalezrios)) diff --git a/src/i18n/index.js b/src/i18n/index.js index 63bd3ef5..860c6cbb 100644 --- a/src/i18n/index.js +++ b/src/i18n/index.js @@ -27,6 +27,10 @@ const languages = [ code: 'de', name: 'German (Deutsche)', }, + { + code: 'ja', + name: 'Japanese (日本人)', + }, { code: 'kn', name: 'Kannada (ಕನ್ನಡ)', diff --git a/src/i18n/locales/index.js b/src/i18n/locales/index.js index 40e79a81..3fa404c1 100644 --- a/src/i18n/locales/index.js +++ b/src/i18n/locales/index.js @@ -4,6 +4,7 @@ import en from './en.json'; import es from './es.json'; import fi from './fi.json'; import fr from './fr.json'; +import ja from './ja.json'; import kn from './kn.json'; import nl from './nl.json'; import ptBr from './pt-br.json'; @@ -16,6 +17,7 @@ export default { es: { translation: es }, fi: { translation: fi }, fr: { translation: fr }, + ja: { translation: ja }, kn: { translation: kn }, nl: { translation: nl }, ptBr: { translation: ptBr },