Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Localization: Add Japanese Translation #2250

Merged
3 changes: 2 additions & 1 deletion js/localization.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@ const i18nextXHRBackend = require('i18next-xhr-backend');
const Store = require('electron-store');
const store = new Store();

const availableLanguages = ['en', 'uk','zh_CN'];

const availableLanguages = ['en', 'ja', 'uk','zh_CN'];

const i18n = {};

Expand Down
4 changes: 4 additions & 0 deletions locale/en/messages.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,10 @@
"message": "українська",
"_comment": "Don't translate!"
},
"language_ja": {
"message": "日本語",
"_comment": "Don't translate!"
},
"language_zh_CN": {
"message": "简体中文",
"_comment": "Don't translate!"
Expand Down
Loading
Loading