Skip to content

Commit be96a43

Browse files
committed
Merge branch 'master' of github.com:mistic100/jQuery-QueryBuilder
2 parents 6eecfa6 + f0849e0 commit be96a43

File tree

3 files changed

+71
-1
lines changed

3 files changed

+71
-1
lines changed

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"issues": "https://github.com/mistic100/jQuery-QueryBuilder/issues"
1414
},
1515
"require": {
16-
"yiisoft/jquery": "dev-master",
16+
"yiisoft/jquery": "2.* | 1.9.*",
1717
"moment/moment": "dev-master",
1818
"twbs/bootstrap": "3.2.*@dev"
1919
},

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)