Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 11 additions & 11 deletions app/services/l10n.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,21 +14,21 @@ export default class L10nService extends L10n {
@computed(function() {
return {
'bn' : 'বাংলা',
'zh_Hans' : '中文 (简化版)',
'zh_Hant' : '中文 (傳統的)',
'zh_Hans' : '中文(简体)',
'zh_Hant' : '中文(繁體)',
'de' : 'Deutsch',
'en' : 'English',
'fr' : 'français',
'de' : 'Deutsche',
'id' : 'bahasa Indonesia',
'ko' : '한국어',
'pl' : 'Polskie',
'es' : 'Español',
'th' : 'ไทย',
'vi' : 'Tiếng Việt',
'fr' : 'Français',
'hi' : 'हिंदी',
'id' : 'Bahasa Indonesia',
'ja' : '日本語',
'ru' : 'русский'
};
'ko' : '한국어',
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Korean is last in Wikipedia list as well

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Korean is not last in wikipedia ,its after Francais and Galego.

'pl' : 'Polski',
'ru' : 'Русский',
'th' : 'ไทย',
'vi' : 'Tiếng Việt',
};
})
availableLocales;

Expand Down