Skip to content

Commit

Permalink
chore: added mongolian
Browse files Browse the repository at this point in the history
  • Loading branch information
ErikSin committed Aug 31, 2023
1 parent 69f8063 commit 5fedbbc
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
3 changes: 2 additions & 1 deletion src/main/i18n.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@ const translations = {
pt: require('../../messages/main/pt.json'),
th: require('../../messages/main/th.json'),
vi: require('../../messages/main/vi.json'),
km: require('../../messages/main/km.json')
km: require('../../messages/main/km.json'),
mn: require('../../messages/main/mn.json')
}

// We only support generalized locales for now (i.e., no difference between
Expand Down
3 changes: 2 additions & 1 deletion src/renderer/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,8 @@ const msgs = {
pt: require('../../translations/pt.json'),
vi: require('../../translations/vi.json'),
km: require('../../translations/km.json'),
th: require('../../translations/th.json')
th: require('../../translations/th.json'),
mn: require('../../translations/mn.json')
}

if (!logger.configured) {
Expand Down
3 changes: 2 additions & 1 deletion src/renderer/components/dialogs/ChangeLanguage.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@ const languages = {
pt: 'Português',
th: 'Thai',
vi: 'Vietnamese',
km: 'Khmer'
km: 'Khmer',
mn: 'Mongolian'
}

const m = defineMessages({
Expand Down

0 comments on commit 5fedbbc

Please sign in to comment.