mirror of
https://github.com/IT4Change/gradido.git
synced 2026-02-06 09:56:05 +00:00
95 lines
1.6 KiB
JavaScript
95 lines
1.6 KiB
JavaScript
import { createI18n } from 'vue-i18n'
|
|
import de from './locales/de.json'
|
|
import en from './locales/en.json'
|
|
|
|
const numberFormats = {
|
|
en: {
|
|
decimal: {
|
|
style: 'decimal',
|
|
minimumFractionDigits: 2,
|
|
maximumFractionDigits: 2,
|
|
},
|
|
ungroupedDecimal: {
|
|
style: 'decimal',
|
|
minimumFractionDigits: 2,
|
|
maximumFractionDigits: 2,
|
|
useGrouping: false,
|
|
},
|
|
},
|
|
de: {
|
|
decimal: {
|
|
style: 'decimal',
|
|
minimumFractionDigits: 2,
|
|
maximumFractionDigits: 2,
|
|
},
|
|
ungroupedDecimal: {
|
|
style: 'decimal',
|
|
minimumFractionDigits: 2,
|
|
maximumFractionDigits: 2,
|
|
useGrouping: false,
|
|
},
|
|
},
|
|
}
|
|
|
|
const datetimeFormats = {
|
|
en: {
|
|
short: {
|
|
year: 'numeric',
|
|
month: 'numeric',
|
|
day: 'numeric',
|
|
},
|
|
long: {
|
|
year: 'numeric',
|
|
month: 'long',
|
|
day: 'numeric',
|
|
weekday: 'long',
|
|
hour: 'numeric',
|
|
minute: 'numeric',
|
|
},
|
|
monthShort: {
|
|
month: 'short',
|
|
},
|
|
month: {
|
|
month: 'long',
|
|
},
|
|
year: {
|
|
year: 'numeric',
|
|
},
|
|
},
|
|
de: {
|
|
short: {
|
|
day: 'numeric',
|
|
month: 'numeric',
|
|
year: 'numeric',
|
|
},
|
|
long: {
|
|
day: 'numeric',
|
|
month: 'long',
|
|
year: 'numeric',
|
|
weekday: 'long',
|
|
hour: 'numeric',
|
|
minute: 'numeric',
|
|
},
|
|
monthShort: {
|
|
month: 'short',
|
|
},
|
|
month: {
|
|
month: 'long',
|
|
},
|
|
year: {
|
|
year: 'numeric',
|
|
},
|
|
},
|
|
}
|
|
|
|
const i18n = createI18n({
|
|
locale: 'en',
|
|
legacy: false,
|
|
fallbackLocale: 'en',
|
|
messages: { de, en },
|
|
numberFormats,
|
|
datetimeFormats,
|
|
})
|
|
|
|
export default i18n
|