28 lines
945 B
JavaScript
28 lines
945 B
JavaScript
import _objectSpread from "@babel/runtime/helpers/esm/objectSpread2";
|
|
import { commonLocale } from "./common";
|
|
var locale = _objectSpread(_objectSpread({}, commonLocale), {}, {
|
|
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',
|
|
dateFormat: 'D.M.YYYY',
|
|
dateTimeFormat: 'D.M.YYYY HH:mm:ss',
|
|
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; |