33 lines
905 B
TypeScript
33 lines
905 B
TypeScript
|
import type { Locale } from '../interface';
|
||
|
|
||
|
const locale: Locale = {
|
||
|
locale: 'de_DE',
|
||
|
today: 'Heute',
|
||
|
now: 'Jetzt',
|
||
|
backToToday: 'Zurück zu Heute',
|
||
|
ok: 'OK',
|
||
|
clear: 'Zurücksetzen',
|
||
|
month: 'Monat',
|
||
|
year: 'Jahr',
|
||
|
timeSelect: 'Zeit wählen',
|
||
|
dateSelect: 'Datum wählen',
|
||
|
monthSelect: 'Wähle einen Monat',
|
||
|
yearSelect: 'Wähle ein Jahr',
|
||
|
decadeSelect: 'Wähle ein Jahrzehnt',
|
||
|
yearFormat: 'YYYY',
|
||
|
dateFormat: 'D.M.YYYY',
|
||
|
dayFormat: 'D',
|
||
|
dateTimeFormat: 'D.M.YYYY HH:mm:ss',
|
||
|
monthBeforeYear: true,
|
||
|
previousMonth: 'Vorheriger Monat (PageUp)',
|
||
|
nextMonth: 'Nächster Monat (PageDown)',
|
||
|
previousYear: 'Vorheriges Jahr (Ctrl + left)',
|
||
|
nextYear: 'Nächstes Jahr (Ctrl + right)',
|
||
|
previousDecade: 'Vorheriges Jahrzehnt',
|
||
|
nextDecade: 'Nächstes Jahrzehnt',
|
||
|
previousCentury: 'Vorheriges Jahrhundert',
|
||
|
nextCentury: 'Nächstes Jahrhundert',
|
||
|
};
|
||
|
|
||
|
export default locale;
|