Skip to content

Commit eaabb54

Browse files
committed
fix missing lang entry
1 parent 17ce8ac commit eaabb54

File tree

5 files changed

+21
-5
lines changed

5 files changed

+21
-5
lines changed

docker/lang/de.json

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,11 @@
181181
"UNIT": "Einheit",
182182
"VALUE": "Wert"
183183
},
184-
"REQUIRED_FILTER": "Bitte einen Filter setzen"
184+
"REQUIRED_FILTER": "Bitte einen Filter setzen",
185+
"SWITCH": {
186+
"LABEL_AND": "UND",
187+
"LABEL_OR": "ODER"
188+
}
185189
},
186190
"HINT": {
187191
"MAXIMUM_EXCEEDED": "Wert darf höchstens {{ max }} sein",

docker/lang/en.json

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,11 @@
181181
"UNIT": "Unit",
182182
"VALUE": "Value"
183183
},
184-
"REQUIRED_FILTER": "Please set a filter"
184+
"REQUIRED_FILTER": "Please set a filter",
185+
"SWITCH": {
186+
"LABEL_AND": "AND",
187+
"LABEL_OR": "OR"
188+
}
185189
},
186190
"HINT": {
187191
"MAXIMUM_EXCEEDED": "Value must be at most {{ max }}",

src/app/modules/feasibility-query/components/editor/display/bool-logic-switch/bool-logic-switch.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ export class BoolLogicSwitchComponent implements OnInit {
2020
ngOnInit(): void {}
2121

2222
getLabelKey(): string {
23-
return 'QUERYBUILDER.SWITCH.LABEL_' + this.label;
23+
return 'FEASIBILITY.EDITOR.SWITCH.LABEL_' + this.label;
2424
}
2525

2626
switch(): void {

src/assets/i18n/de.json

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,11 @@
181181
"UNIT": "Einheit",
182182
"VALUE": "Wert"
183183
},
184-
"REQUIRED_FILTER": "Bitte einen Filter setzen"
184+
"REQUIRED_FILTER": "Bitte einen Filter setzen",
185+
"SWITCH": {
186+
"LABEL_AND": "UND",
187+
"LABEL_OR": "ODER"
188+
}
185189
},
186190
"HINT": {
187191
"MAXIMUM_EXCEEDED": "Wert darf höchstens {{ max }} sein",

src/assets/i18n/en.json

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,11 @@
181181
"UNIT": "Unit",
182182
"VALUE": "Value"
183183
},
184-
"REQUIRED_FILTER": "Please set a filter"
184+
"REQUIRED_FILTER": "Please set a filter",
185+
"SWITCH": {
186+
"LABEL_AND": "AND",
187+
"LABEL_OR": "OR"
188+
}
185189
},
186190
"HINT": {
187191
"MAXIMUM_EXCEEDED": "Value must be at most {{ max }}",

0 commit comments

Comments
 (0)