Skip to content

Commit

Permalink
Merge pull request #151 from Daynar100/Korean-localization
Browse files Browse the repository at this point in the history
Korean Localization
  • Loading branch information
joshhunt authored Aug 29, 2018
2 parents 69b50bb + 89a9e01 commit 5389f64
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion src/lib/i18n.js
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,11 @@ export const CHINESE = {
name: 'Chinese'
};

export const KOREAN = {
code: 'ko',
name: 'Korean'
}

export const DEFAULT_LANG = ENGLISH;

export const languages = [
Expand All @@ -69,7 +74,8 @@ export const languages = [
SPANISH_LATIN,
RUSSIAN,
POLISH,
CHINESE
CHINESE,
KOREAN
];

export const languageByCode = keyBy(languages, lang => lang.code);
Expand Down

0 comments on commit 5389f64

Please sign in to comment.