mirror of
https://github.com/kremalicious/umami.git
synced 2024-11-16 02:05:04 +01:00
28 lines
752 B
JavaScript
28 lines
752 B
JavaScript
import enMessages from 'lang-compiled/en.json';
|
|
import nlMessages from 'lang-compiled/nl-NL.json';
|
|
import zhCNMessages from 'lang-compiled/zh-CN.json';
|
|
import { format } from 'date-fns';
|
|
import { enUS, nl, zhCN } from 'date-fns/locale';
|
|
|
|
export const messages = {
|
|
en: enMessages,
|
|
'nl-NL': nlMessages,
|
|
'zh-CN': zhCNMessages,
|
|
};
|
|
|
|
export const dateLocales = {
|
|
en: enUS,
|
|
'nl-NL': nl,
|
|
'zh-CN': zhCN,
|
|
};
|
|
|
|
export const menuOptions = [
|
|
{ label: 'English', value: 'en', display: 'EN' },
|
|
{ label: 'Nederlands', value: 'nl-NL', display: 'NL' },
|
|
{ label: '中文 (Chinese Simplified)', value: 'zh-CN', display: '中文' },
|
|
];
|
|
|
|
export function dateFormat(date, str, locale) {
|
|
return format(date, str, { locale: dateLocales[locale] || enUS });
|
|
}
|