fishspot/src/i18n/rules/datetime.js
2024-07-03 22:16:37 +03:00

20 lines
459 B
JavaScript

export default {
en: {
shortFormat: {
dateStyle: "short"
},
longFormat: {
year: 'numeric', month: 'short', day: 'numeric',
weekday: 'short', hour: 'numeric', minute: 'numeric'
}
},
ru: {
shortFormat: {
dateStyle: "short"
},
longFormat: {
year: 'numeric', month: 'short', day: 'numeric',
weekday: 'short', hour: 'numeric', minute: 'numeric'
}
}
}