Skip to content

Commit

Permalink
Added correct(??) BCP47 codes
Browse files Browse the repository at this point in the history
  • Loading branch information
MoltenCoffee committed Sep 8, 2020
1 parent 1ba9538 commit da1ec3f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/lang.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,19 +6,19 @@ import { enUS, nl, zhCN } from 'date-fns/locale';

export const messages = {
en: enMessages,
nl: nlMessages,
'nl-NL': nlMessages,
'zh-CN': zhCNMessages,
};

export const dateLocales = {
en: enUS,
nl: nl,
'nl-NL': nl,
'zh-CN': zhCN,
};

export const menuOptions = [
{ label: 'English', value: 'en', display: 'EN' },
{ label: 'Nederlands', value: 'nl', display: 'NL' },
{ label: 'Nederlands', value: 'nl-NL', display: 'NL' },
{ label: '中文 (Chinese Simplified)', value: 'zh-CN', display: '中文' },
];

Expand Down

0 comments on commit da1ec3f

Please sign in to comment.