You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
905 B
33 lines
905 B
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;
|