mirror of
https://github.com/EDCD/coriolis.git
synced 2025-12-09 06:43:24 +00:00
17 lines
651 B
JavaScript
17 lines
651 B
JavaScript
export const formats = {
|
|
decimal: '.',
|
|
thousands: ',',
|
|
grouping: [3],
|
|
currency: ['$', ''],
|
|
dateTime: '%a %b %e %X %Y',
|
|
date: '%m/%d/%Y',
|
|
time: '%H:%M:%S',
|
|
periods: ['AM', 'PM'],
|
|
days: ['Niedziela', 'Poniedziałek', 'Wtorek', 'Środa', 'Czwartek', 'Piątek', 'Sobota'],
|
|
shortDays: ['Nie', 'Pon', 'Wt', 'Śr', 'Czw', 'Pt', 'Sob'],
|
|
months: ['Styczeń', 'Luty', 'Marzec', 'Kwiecień', 'Maj', 'Czerwiec', 'Lipiec', 'Sierpień', 'Wrzesień', 'Październik', 'Listopad', 'Grudzień'],
|
|
shortMonths: ['Sty', 'Lut', 'Mar', 'Kwi', 'Maj', 'Cze', 'Lip', 'Sie', 'Wrz', 'Paź', 'Lis', 'Gru']
|
|
};
|
|
|
|
export { default as terms } from './pl.json';
|