Forked from
websites / monnaie-libre-fr
908 commits behind the upstream repository.
-
Emmanuel Salomon authoredEmmanuel Salomon authored
i18n.js 1.32 KiB
import fr from '../locales/fr'
import en from '../locales/en'
export default {
defaultLocale: 'fr',
locales: [
{
code: 'en',
name: 'English',
},
{
code: 'fr',
name: 'Français',
},
],
strategy: 'no_prefix',
vueI18n: {
locale: 'fr',
fallbackLocale: 'fr',
messages: {
en,
fr,
},
dateTimeFormats: {
en: {
short: {
year: 'numeric',
month: 'numeric',
day: 'numeric',
hour: 'numeric',
minute: 'numeric',
},
long: {
year: 'numeric',
month: 'short',
day: 'numeric',
weekday: 'short',
hour: 'numeric',
minute: 'numeric',
},
},
fr: {
short: {
year: 'numeric',
month: 'numeric',
day: 'numeric',
hour: 'numeric',
minute: 'numeric',
},
long: {
year: 'numeric',
month: 'long',
day: 'numeric',
weekday: 'short',
hour: 'numeric',
minute: 'numeric',
},
full: {
year: 'numeric',
month: 'long',
day: 'numeric',
weekday: 'long',
hour: 'numeric',
literal: 'h',
minute: 'numeric',
},
},
},
},
}