mirror of
https://iceshrimp.dev/Crimekillz/jointrashposs.git
synced 2024-11-21 16:33:48 +01:00
23 lines
525 B
TypeScript
23 lines
525 B
TypeScript
export default defineI18nConfig(() => ({
|
|
legacy: false,
|
|
datetimeFormats: {
|
|
'en-US': {
|
|
short: {
|
|
year: 'numeric', month: 'short', day: 'numeric'
|
|
},
|
|
long: {
|
|
year: 'numeric', month: 'short', day: 'numeric',
|
|
weekday: 'short', hour: 'numeric', minute: 'numeric'
|
|
}
|
|
},
|
|
'ja-JP': {
|
|
short: {
|
|
year: 'numeric', month: 'short', day: 'numeric'
|
|
},
|
|
long: {
|
|
year: 'numeric', month: 'short', day: 'numeric',
|
|
weekday: 'short', hour: 'numeric', minute: 'numeric', hour12: true
|
|
}
|
|
}
|
|
}
|
|
})); |