-
Notifications
You must be signed in to change notification settings - Fork 57
/
Copy pathde-ch.js
117 lines (108 loc) · 4.6 KB
/
de-ch.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
define([], function() {
return {
//Dimension Picker labels
"DimensionWidth": "Breite",
"DimensionHeight": "Höhe",
"DimensionRatio": "Verhältnis bewahren",
//Custom List labels
//Copy the following labels in your project if you want to use the SPListQuery
"CustomListAddItem": "Hinzufügen",
"CustomListBack": "Zürück",
"CustomListTrue": "Ja",
"CustomListFalse": "Nein",
"CustomListOK": "Okay",
"CustomListCancel": "Abbrechen",
"CustomListEdit": "Bearbeiten",
"CustomListDel": "Löschen",
"CustomListYes": "Ja",
"CustomListNo": "Nein",
"CustomListConfirmDel": "Löschen bestätigen",
"CustomListConformDelMssg": "Sind Sie sicher, dass Sie diesen Eintrag löschen möchten?",
"CustomListFieldMissing": "Fehler '{0}' ist ein Pflichtfeld",
//SPListQuery labels
//Copy the following labels in your project if you want to use the SPListQuery
"SPListQueryList": "Liste",
"SPListQueryOrderBy": "Sortieren nach",
"SPListQueryArranged": "Bestellung",
"SPListQueryMax": "Maximale",
"SPListQueryAdd": "Fügen Sie einen filter",
"SPListQueryRemove": "Löschen",
"SPListQueryOperatorEq": "Gleich",
"SPListQueryOperatorNe": "Anders als bei",
"SPListQueryOperatorStartsWith": "Beginnt mit",
"SPListQueryOperatorSubstringof": "Teil unter",
"SPListQueryOperatorLt": "Weniger als",
"SPListQueryOperatorLe": "Kleiner oder gleich",
"SPListQueryOperatorGt": "Mehr als",
"SPListQueryOperatorGe": "Mehr oder gleich",
//PicturePicker labels
//Copy the following labels in your project if you want to use the PicturePicker
"PicturePickerTitle": "Wählen Sie ein Bild",
"PicturePickerRecent": "Den letzten",
"PicturePickerSite": "Website",
"PicturePickerButtonSelect": "Wählen Sie ein Bild",
"PicturePickerButtonReset": "Löschen",
//DocumentPicker labels
//Copy the following labels in your project if you want to use the DocumentPicker
"DocumentPickerTitle": "Wählen Sie ein Dokument",
"DocumentPickerRecent": "Den letzten",
"DocumentPickerSite": "Website",
"DocumentPickerButtonSelect": "Wählen Sie ein Dokument",
"DocumentPickerButtonReset": "Löschen",
//PeoplePicker labels
//Copy the following labels in your project if you want to use the PeoplePicker
"PeoplePickerSuggestedContacts": "Vorgeschlagene Kontakte",
"PeoplePickerNoResults": "Keine Ergebnisse",
"PeoplePickerLoading": "Laden...",
//SPListPicker labels
//Copy the following labels in your project if you want to use the SPListPicker
"SPListPickerLoading": "Laden...",
//SPFolderPicker labels
//Copy the following labels in your project if you want to use the SPFolderPicker
"SPFolderPickerDialogTitle": "Wählen Sie ein Verzeichnis",
"SPFolderPickerSelectButton": "Wählen Sie",
"SPFolderPickerCancelButton": "Abbrechen",
//DatePicker labels
//Copy the following labels in your project if you want to use the DatePicker
"DatePickerMonthLongJanuary": "Januar",
"DatePickerMonthShortJanuary": "Jan",
"DatePickerMonthLongFebruary": "Februar",
"DatePickerMonthShortFebruary": "Feb",
"DatePickerMonthLongMarch": "März",
"DatePickerMonthShortMarch": "Mar",
"DatePickerMonthLongApril": "April",
"DatePickerMonthShortApril": "Apr",
"DatePickerMonthLongMay": "Mai",
"DatePickerMonthShortMay": "Mai",
"DatePickerMonthLongJune": "Juni",
"DatePickerMonthShortJune": "Jun",
"DatePickerMonthLongJuly": "Juli",
"DatePickerMonthShortJuly": "Jul",
"DatePickerMonthLongAugust": "August",
"DatePickerMonthShortAugust": "Aug",
"DatePickerMonthLongSeptember": "September",
"DatePickerMonthShortSeptember": "Sep",
"DatePickerMonthLongOctober": "Oktober",
"DatePickerMonthShortOctober": "Okt",
"DatePickerMonthLongNovember": "November",
"DatePickerMonthShortNovember": "Nov",
"DatePickerMonthLongDecember": "Dezember",
"DatePickerMonthShortDecember": "Dez",
"DatePickerDayLongSunday": "Sonntag",
"DatePickerDayShortSunday": "Son",
"DatePickerDayLongMonday": "Montag",
"DatePickerDayShortMonday": "Mon",
"DatePickerDayLongTuesday": "Dienstag",
"DatePickerDayShortTuesday": "Die",
"DatePickerDayLongWednesday": "Mittwoch",
"DatePickerDayShortWednesday": "Mit",
"DatePickerDayLongThursday": "Donnerstag",
"DatePickerDayShortThursday": "Don",
"DatePickerDayLongFriday": "Freitag",
"DatePickerDayShortFriday": "Fre",
"DatePickerDayLongSaturday": "Samstag",
"DatePickerDayShortSaturday": "Sam",
"DateTimePickerDate": "Datum",
"DateTimePickerTime": "Stunde"
}
});