Revize 599dd1cf
Přidáno uživatelem Václav Jirák před téměř 6 roky(ů)
webapp/src/app/employees/default-settings-dialog/default-settings-dialog.component.html | ||
---|---|---|
1 |
<h1 mat-dialog-title>Výchozí nastavení</h1>
|
|
1 |
<h1 mat-dialog-title>{{ 'defaultSettings.headline' | translate }} </h1>
|
|
2 | 2 |
|
3 | 3 |
<div mat-dialog-content> |
4 |
<span class="dialog-label">Notifikace o vypršení dovolené: </span>
|
|
4 |
<span class="dialog-label">{{ 'defaultSettings.notification' | translate }}</span>
|
|
5 | 5 |
<app-datetime [(date)]="data.notificationDate" [(time)]="data.notificationTime" [minuteStep]="MINUTE_STEP"></app-datetime> |
6 | 6 |
|
7 | 7 |
<div class="sickday-count"> |
8 |
<label for="sickdays-count-input" class="dialog-label">Počet sickdays:</label>
|
|
8 |
<label for="sickdays-count-input" class="dialog-label">{{ 'defaultSettings.sickdayCount' | translate }}</label>
|
|
9 | 9 |
<mat-form-field> |
10 | 10 |
<input id="sickdays-count-input" type="number" matInput [(ngModel)]="data.sickDayCount"> |
11 | 11 |
</mat-form-field> |
... | ... | |
13 | 13 |
</div> |
14 | 14 |
|
15 | 15 |
<div mat-dialog-actions align="end"> |
16 |
<button mat-raised-button color="primary" (click)="onConfirmClick()">Potvrdit</button>
|
|
17 |
<button mat-raised-button color="basic" (click)="onCloseClick()">Zavřít</button>
|
|
16 |
<button mat-raised-button color="primary" (click)="onConfirmClick()">{{ 'button.confirm' | translate }}</button>
|
|
17 |
<button mat-raised-button color="basic" (click)="onCloseClick()">{{ 'button.close' | translate }}</button>
|
|
18 | 18 |
</div> |
Také k dispozici: Unified diff
Default settings component translated