34 lines
919 B
TypeScript
34 lines
919 B
TypeScript
|
import type { Locale } from '../interface';
|
||
|
|
||
|
const locale: Locale = {
|
||
|
locale: 'ro_RO',
|
||
|
today: 'Azi',
|
||
|
now: 'Acum',
|
||
|
backToToday: 'Înapoi la azi',
|
||
|
ok: 'Ok',
|
||
|
clear: 'Șterge',
|
||
|
month: 'Lună',
|
||
|
year: 'An',
|
||
|
timeSelect: 'selectează timpul',
|
||
|
dateSelect: 'selectează data',
|
||
|
weekSelect: 'Alege o săptămână',
|
||
|
monthSelect: 'Alege o lună',
|
||
|
yearSelect: 'Alege un an',
|
||
|
decadeSelect: 'Alege un deceniu',
|
||
|
yearFormat: 'YYYY',
|
||
|
dateFormat: 'D/M/YYYY',
|
||
|
dayFormat: 'D',
|
||
|
dateTimeFormat: 'D/M/YYYY HH:mm:ss',
|
||
|
monthBeforeYear: true,
|
||
|
previousMonth: 'Luna anterioară (PageUp)',
|
||
|
nextMonth: 'Luna următoare (PageDown)',
|
||
|
previousYear: 'Anul anterior (Control + stânga)',
|
||
|
nextYear: 'Anul următor (Control + dreapta)',
|
||
|
previousDecade: 'Deceniul anterior',
|
||
|
nextDecade: 'Deceniul următor',
|
||
|
previousCentury: 'Secolul anterior',
|
||
|
nextCentury: 'Secolul următor',
|
||
|
};
|
||
|
|
||
|
export default locale;
|