Skip to content

Commit ef9cca0

Browse files
committed
fix lang entries
1 parent 04f103c commit ef9cca0

File tree

5 files changed

+7
-3
lines changed

5 files changed

+7
-3
lines changed

docker/lang/de.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -332,6 +332,7 @@
332332
"COHORT_WARNING": "Kohortenselektion ist erforderlich",
333333
"COMMENT": "Kommentar",
334334
"HEADER": "Abfrage speichern",
335+
"LABEL": "Titel",
335336
"SAVE": "Speichern",
336337
"TITLE": "Titel"
337338
},

docker/lang/en.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -332,6 +332,7 @@
332332
"COHORT_WARNING": "Cohort selection is required",
333333
"COMMENT": "Comment",
334334
"HEADER": "Save query",
335+
"LABEL": "Title",
335336
"SAVE": "Save",
336337
"TITLE": "Title"
337338
},

src/app/shared/components/save-file-modal/save-file-modal.component.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<div class="save-query-box">
44
<div fxLayout="column" fxLayoutAlign="space-around center">
55
<mat-form-field class="input-field">
6-
<mat-label>{{ 'SAVED_QUERIES.LABEL' | translate }}</mat-label>
6+
<mat-label>{{ 'SHARED_COMPONENTS.SAVE_MODAL.LABEL' | translate }}</mat-label>
77
<input matInput type="text" [(ngModel)]="title" />
88
</mat-form-field>
99
<mat-form-field *ngIf="isCommentRequired" class="input-field" appearance="fill">
@@ -23,10 +23,10 @@
2323
(click)="doSave()"
2424
class="button-save"
2525
>
26-
{{ 'SHARE_COMPONENTS.SAVE_MODAL.SAVE' | translate }}
26+
{{ 'SHARED_COMPONENTS.SAVE_MODAL.SAVE' | translate }}
2727
</num-button>
2828
<num-button type="blue" (click)="doDiscard()">
29-
{{ 'SHARE_COMPONENTS.SAVE_MODAL.CANCEL' | translate }}
29+
{{ 'SHARED_COMPONENTS.SAVE_MODAL.CANCEL' | translate }}
3030
</num-button>
3131
</div>
3232
</div>

src/assets/i18n/de.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -332,6 +332,7 @@
332332
"COHORT_WARNING": "Kohortenselektion ist erforderlich",
333333
"COMMENT": "Kommentar",
334334
"HEADER": "Abfrage speichern",
335+
"LABEL": "Titel",
335336
"SAVE": "Speichern",
336337
"TITLE": "Titel"
337338
},

src/assets/i18n/en.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -332,6 +332,7 @@
332332
"COHORT_WARNING": "Cohort selection is required",
333333
"COMMENT": "Comment",
334334
"HEADER": "Save query",
335+
"LABEL": "Title",
335336
"SAVE": "Save",
336337
"TITLE": "Title"
337338
},

0 commit comments

Comments
 (0)