Skip to content

Commit 556741a

Browse files
committed
added missing tooltips
1 parent 56cab79 commit 556741a

File tree

3 files changed

+10
-5
lines changed

3 files changed

+10
-5
lines changed

src/app/shared/components/table/table.component.html

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,20 +23,21 @@
2323
<mat-checkbox
2424
*ngIf="row.hasCheckbox && row.checkboxColumnIndex === j"
2525
color="primary"
26+
matTooltip="{{ 'SHARED_COMPONENTS.TABLE.SELECT_CHECKBOX' | translate }}"
2627
disableRipple="true"
2728
[disabled]="!row.isDisabled"
2829
[checked]="row.isCheckboxSelected"
2930
(change)="onCheckboxSelect(row)"
3031
(click)="$event.stopPropagation()"
3132
></mat-checkbox>
3233
<fa-icon
34+
matTooltip="{{ 'SHARED_COMPONENTS.TABLE.ICON' | translate }}"
3335
*ngIf="row.treeIcon !== '' && row.treeIconColumnIndex === j"
3436
size="1x"
35-
class="cursor-click"
3637
icon="{{ row.treeIcon }}"
37-
(click)="onRowClick(row)"
3838
></fa-icon>
3939
<div
40+
matTooltip="{{ cell | displayTranslation }}"
4041
[ngClass]="{
4142
'name-column': j === 0,
4243
'info-column': j > 0,

src/assets/i18n/de.json

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -353,13 +353,15 @@
353353
},
354354
"TABLE": {
355355
"AVAILABILITY": "Verfügbarkeit",
356+
"SELECT_CHECKBOX": "Kriterium auswählen",
356357
"CONTEXT": "Kontext",
357358
"DISPLAY": "Anzeige",
358359
"NAME": "Name",
359360
"PATIENT_COUNT": "Anzahl der Patienten",
360361
"SITE": "Standort",
361362
"TERMCODE": "Termcode",
362-
"TERMINOLOGY_CODE": "Terminologie"
363+
"TERMINOLOGY_CODE": "Terminologie",
364+
"ICON": "Verwandte Kriterien anzeigen"
363365
}
364366
},
365367
"SHARED_FILTER": {
@@ -391,4 +393,4 @@
391393
"SEARCH": "Machbarkeitsabfrage - Suche"
392394
}
393395
}
394-
}
396+
}

src/assets/i18n/en.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -352,13 +352,15 @@
352352
},
353353
"TABLE": {
354354
"AVAILABILITY": "Availability",
355+
"SELECT_CHECKBOX": "Select Criteria",
355356
"CONTEXT": "Context",
356357
"DISPLAY": "Display",
357358
"NAME": "Name",
358359
"PATIENT_COUNT": "Number of patients",
359360
"SITE": "Location",
360361
"TERMCODE": "Term code",
361-
"TERMINOLOGY_CODE": "Terminology"
362+
"TERMINOLOGY_CODE": "Terminology",
363+
"ICON": "Show related criteria"
362364
}
363365
},
364366
"SHARED_FILTER": {

0 commit comments

Comments
 (0)