33 lines
844 B
TypeScript
33 lines
844 B
TypeScript
import type { Locale } from '../interface';
|
|
|
|
const locale: Locale = {
|
|
locale: 'ku',
|
|
today: 'Îro',
|
|
now: 'Niha',
|
|
backToToday: 'Vegere îro',
|
|
ok: 'Temam',
|
|
clear: 'Paqij bike',
|
|
month: 'Meh',
|
|
year: 'Sal',
|
|
timeSelect: 'Demê hilbijêre',
|
|
dateSelect: 'Dîrok hilbijêre',
|
|
monthSelect: 'Meh hilbijêre',
|
|
yearSelect: 'Sal hilbijêre',
|
|
decadeSelect: 'Dehsal hilbijêre',
|
|
yearFormat: 'YYYY',
|
|
dateFormat: 'D/M/YYYY',
|
|
dayFormat: 'D',
|
|
dateTimeFormat: 'D/M/YYYY HH:mm:ss',
|
|
monthBeforeYear: true,
|
|
previousMonth: 'Meha peş (PageUp))',
|
|
nextMonth: 'Meha paş (PageDown)',
|
|
previousYear: 'Sala peş (Control + şep)',
|
|
nextYear: 'Sala paş (Control + rast)',
|
|
previousDecade: 'Dehsalen peş',
|
|
nextDecade: 'Dehsalen paş',
|
|
previousCentury: 'Sedsalen peş',
|
|
nextCentury: 'Sedsalen paş',
|
|
};
|
|
|
|
export default locale;
|