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