From 8035f67515ea95597bdef1270cf63e96dfdc9399 Mon Sep 17 00:00:00 2001 From: Reckless_Satoshi Date: Tue, 2 May 2023 03:08:27 -0700 Subject: [PATCH] Enable Japanese on Android app --- frontend/src/i18n/Native.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/frontend/src/i18n/Native.js b/frontend/src/i18n/Native.js index 35cd3814..947989c4 100644 --- a/frontend/src/i18n/Native.js +++ b/frontend/src/i18n/Native.js @@ -7,6 +7,7 @@ import translationEN from '../../static/locales/en.json'; import translationES from '../../static/locales/es.json'; import translationDE from '../../static/locales/de.json'; import translationRU from '../../static/locales/ru.json'; +import translationJA from '../../static/locales/ja.json'; import translationPL from '../../static/locales/pl.json'; import translationFR from '../../static/locales/fr.json'; import translationCA from '../../static/locales/ca.json'; @@ -25,6 +26,7 @@ const config = { es: { translations: translationES }, ru: { translations: translationRU }, de: { translations: translationDE }, + ja: { translations: translationJA }, pl: { translations: translationPL }, fr: { translations: translationFR }, ca: { translations: translationCA },