Skip to content

Commit a4f8023

Browse files
committed
Merge pull request #28 from raimu/master
add german translation
2 parents 6172080 + d73202e commit a4f8023

File tree

2 files changed

+70
-0
lines changed

2 files changed

+70
-0
lines changed

dist/i18n/de.js

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
/*!
2+
* jQuery QueryBuilder
3+
* German translation
4+
*/
5+
6+
jQuery.fn.queryBuilder.defaults.set({ lang: {
7+
"add_rule": "neue Regel",
8+
"add_group": "neue Gruppe",
9+
"delete_rule": "löschen",
10+
"delete_group": "löschen",
11+
12+
"condition_and": "UND",
13+
"condition_or": "ODER",
14+
15+
"filter_select_placeholder": "------",
16+
17+
"operator_equal": "gleich",
18+
"operator_not_equal": "ungleich",
19+
"operator_in": "in",
20+
"operator_not_in": "nicht in",
21+
"operator_less": "kleiner",
22+
"operator_less_or_equal": "kleiner gleich",
23+
"operator_greater": "größer",
24+
"operator_greater_or_equal": "größer gleich",
25+
"operator_begins_with": "beginnt mit",
26+
"operator_not_begins_with": "beginnt nicht mit",
27+
"operator_contains": "enthält",
28+
"operator_not_contains": "enthält nicht",
29+
"operator_ends_with": "endet mit",
30+
"operator_not_ends_with": "endet nicht mit",
31+
"operator_is_empty": "ist leer",
32+
"operator_is_not_empty": "ist nicht leer",
33+
"operator_is_null": "ist null",
34+
"operator_is_not_null": "ist nicht null"
35+
}});

src/i18n/de.js

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
/*!
2+
* jQuery QueryBuilder
3+
* German translation
4+
*/
5+
6+
jQuery.fn.queryBuilder.defaults.set({ lang: {
7+
"add_rule": "neue Regel",
8+
"add_group": "neue Gruppe",
9+
"delete_rule": "löschen",
10+
"delete_group": "löschen",
11+
12+
"condition_and": "UND",
13+
"condition_or": "ODER",
14+
15+
"filter_select_placeholder": "------",
16+
17+
"operator_equal": "gleich",
18+
"operator_not_equal": "ungleich",
19+
"operator_in": "in",
20+
"operator_not_in": "nicht in",
21+
"operator_less": "kleiner",
22+
"operator_less_or_equal": "kleiner gleich",
23+
"operator_greater": "größer",
24+
"operator_greater_or_equal": "größer gleich",
25+
"operator_begins_with": "beginnt mit",
26+
"operator_not_begins_with": "beginnt nicht mit",
27+
"operator_contains": "enthält",
28+
"operator_not_contains": "enthält nicht",
29+
"operator_ends_with": "endet mit",
30+
"operator_not_ends_with": "endet nicht mit",
31+
"operator_is_empty": "ist leer",
32+
"operator_is_not_empty": "ist nicht leer",
33+
"operator_is_null": "ist null",
34+
"operator_is_not_null": "ist nicht null"
35+
}});

0 commit comments

Comments
 (0)