Skip to content

Commit d499f2d

Browse files
committed
fix translation #412
1 parent b068c93 commit d499f2d

File tree

4 files changed

+26
-17
lines changed

4 files changed

+26
-17
lines changed

src/app/modules/data-query/data-query/data-selection/data-selection.component.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,12 @@
2424
<div class="container pr4">
2525
<div style="margin-top: 5px">
2626
<num-header-description>
27-
{{ 'DATASELECTION.HEADER_INFO' | translate }}
27+
{{ 'DATASELECTION.EDITOR.HEADER_INFO' | translate }}
2828
</num-header-description>
2929
</div>
3030
<div *ngIf="(isDataSelectionExistent$ | async) === false" class="empty-data-selection-box">
3131
<num-placeholder-box>
32-
{{ 'DATAQUERY.DATASELECTION.EMPTY' | translate }}
32+
{{ 'DATAQUERY.DATASELECTION.EDITOR.EMPTY' | translate }}
3333
</num-placeholder-box>
3434
</div>
3535
<num-display-profiles [isEditable]="false"></num-display-profiles>

src/app/modules/feasibility-query/components/editor/reference-criteria-modal/reference/reference.component.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@
1919
color="white"
2020
(click)="setSelectedReferenceCriteria()"
2121
>
22-
{{ 'FEASIBILITY.EDITOR.BUTTON.ADD' | translate }}
22+
{{ 'FEASIBILITY.EDITOR.REFERENCE.ADD' | translate }}
2323
</button>
2424
<div *ngIf="arrayOfSelectedReferences.length > 0" class="filter-selection">
25-
<div class="filter-title">Filter selection</div>
25+
<div class="filter-title">{{ 'FEASIBILITY.EDITOR.REFERENCE.SELECTION' | translate }}</div>
2626
<div class="selectedFilterBox">
2727
<div
2828
*ngFor="let selectedReferences of arrayOfSelectedReferences; let index = index"

src/assets/i18n/de.json

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,7 @@
6060
},
6161
"HEADER": "Ausgewählte Merkmale",
6262
"HEADER_DESCRIPTION": "Hier können Sie definieren, welche Merkmale von Patientinnen und Patienten der Kohorte für Ihre Forschungsfrage relevant sind. Achten Sie auf Datensparsamkeit und Kongruenz zur Beschreibung im Studienprotokoll / Ethikvotum / Forschungsantrag (insofern bereits vorhanden). Ändern Sie die Selektion durch Klick auf das Stiftsymbol und fügen Sie bei Bedarf weitere Filter (z. B. auf bestimmte Diagnosecodes) hinzu.",
63+
"HEADER_INFO": "Für Ihre Forschungsfrage können Sie nun definieren welche Daten Sie von den Patientinnen und Patienten der Kohorte erhalten möchten. Die verfügbaren Daten sind durch Module des Kerndatensatzes (KDS) deutschlandweit standardisiert. Sie können Datenpunkte zusätzlich Filtern, wenn z.b. nur bestimmte Laborwerte von Interesse sind und Sie haben die Möglichkeit anzugeben, welche Datenpunkte zwingend erforderlich sind für Ihre Forschungsfrage.",
6364
"SECTION": "Ausgewählte Kriterien"
6465
},
6566
"SEARCH": {
@@ -181,6 +182,10 @@
181182
"UNIT": "Einheit",
182183
"VALUE": "Wert"
183184
},
185+
"REFERENCE": {
186+
"ADD": "Hinzufügen",
187+
"SELECTION": "Ausgewählte Referenzen"
188+
},
184189
"REQUIRED_FILTER": "Bitte einen Filter setzen",
185190
"SWITCH": {
186191
"LABEL_AND": "UND",
@@ -379,4 +384,4 @@
379384
"SEARCH": "Machbarkeitsabfrage - Suche"
380385
}
381386
}
382-
}
387+
}

src/assets/i18n/en.json

Lines changed: 16 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -86,8 +86,8 @@
8686
},
8787
"FILTER": {
8888
"TAB_LABEL": {
89-
"TOKEN": "Token filter",
90-
"TIMERESTRICTION": "Time restriction"
89+
"TIMERESTRICTION": "Time restriction",
90+
"TOKEN": "Token filter"
9191
}
9292
},
9393
"REFERENCE": {
@@ -181,11 +181,15 @@
181181
"UNIT": "Unit",
182182
"VALUE": "Value"
183183
},
184+
"REFERENCE": {
185+
"ADD": "Add new reference",
186+
"SELECTION": "Selected references"
187+
},
184188
"REQUIRED_FILTER": "Please set a filter",
185-
"SWITCH": {
186-
"LABEL_AND": "AND",
187-
"LABEL_OR": "OR"
188-
}
189+
"SWITCH": {
190+
"LABEL_AND": "AND",
191+
"LABEL_OR": "OR"
192+
}
189193
},
190194
"HINT": {
191195
"MAXIMUM_EXCEEDED": "Value must be at most {{ max }}",
@@ -212,8 +216,8 @@
212216
"PATIENT_NUMBER": "Number of patients",
213217
"PATIENT_NUMBER_TOOLTIP": "Feasibility queries return approximate, anonymized results with deliberate deviations from exact numbers. Use these results only for initial project feasibility assessment. They are not suitable for scientific work. Publishing these numbers is generally prohibited. The actual patient count can only be determined via a formal data usage request reviewed by responsible Use & Access Committees.",
214218
"SAVE_DIALOG": {
215-
"HEADER": "Number of patients",
216-
"HEADER_DESCRIPTION": "The number of patients meeting your cohort criteria is determined across locations. This result is approximate."
219+
"HEADER": "Number of patients",
220+
"HEADER_DESCRIPTION": "The number of patients meeting your cohort criteria is determined across locations. This result is approximate."
217221
},
218222
"SITE": "Location",
219223
"TOTAL": "Total"
@@ -336,9 +340,9 @@
336340
"SAVE": "Save",
337341
"TITLE": "Title"
338342
},
339-
"SEARCH": {
340-
"MIN_LENGTH": "Required length of 3 letters"
341-
},
343+
"SEARCH": {
344+
"MIN_LENGTH": "Required length of 3 letters"
345+
},
342346
"TABLE": {
343347
"AVAILABILITY": "Availability",
344348
"CONTEXT": "Context",
@@ -379,4 +383,4 @@
379383
"SEARCH": "Feasibility Query - Search"
380384
}
381385
}
382-
}
386+
}

0 commit comments

Comments
 (0)