Files
FarmMapsLib/projects/common-map/src/fm-map/components/widget-status/widget-status.component.html
Willem Dantuma 77478078f6
All checks were successful
FarmMaps.Develop/FarmMapsLib/pipeline/head This commit looks good
Fix i18n tags
2020-04-06 14:51:43 +02:00

7 lines
567 B
HTML

<div [ngSwitch]="stage">
<h6 *ngSwitchCase="StageEnum.DevelopmentPreAlpha" style="color:darkred" [ngbTooltip]="info"><b><span i18n>Stage:Pre-alpha</span></b></h6>
<h6 *ngSwitchCase="StageEnum.DevelopmentAlpha" style="color:red" [ngbTooltip]="info"><b><span i18n>Stage:Alpha</span></b></h6>
<h6 *ngSwitchCase="StageEnum.DevelopmentBeta" style="color:orange" [ngbTooltip]="info" ><b><span i18n>Stage:Beta</span></b></h6>
<h6 *ngSwitchCase="StageEnum.ReleaseCandidate" style="color:green" [ngbTooltip]="info" ><b><span i18n>Stage:RC</span></b></h6>
</div>