[CST-5535] Fix labels

This commit is contained in:
Giuseppe Digilio
2022-05-18 14:54:37 +02:00
parent c43e25296d
commit bc63e14512
2 changed files with 6 additions and 4 deletions

View File

@@ -3,7 +3,7 @@
<div *ngIf="(healthResponse | async) && (healthInfoResponse | async)"> <div *ngIf="(healthResponse | async) && (healthInfoResponse | async)">
<ul ngbNav #nav="ngbNav" [activeId]="'status'" class="nav-tabs"> <ul ngbNav #nav="ngbNav" [activeId]="'status'" class="nav-tabs">
<li [ngbNavItem]="'status'"> <li [ngbNavItem]="'status'">
<a ngbNavLink>{{'health-page.status' | translate}}</a> <a ngbNavLink>{{'health-page.status-tab' | translate}}</a>
<ng-template ngbNavContent> <ng-template ngbNavContent>
<div id="status"> <div id="status">
<ds-health-panel [healthResponse]="(healthResponse | async)"></ds-health-panel> <ds-health-panel [healthResponse]="(healthResponse | async)"></ds-health-panel>
@@ -11,7 +11,7 @@
</ng-template> </ng-template>
</li> </li>
<li [ngbNavItem]="'info'"> <li [ngbNavItem]="'info'">
<a ngbNavLink>{{'health-page.info' | translate}}</a> <a ngbNavLink>{{'health-page.info-tab' | translate}}</a>
<ng-template ngbNavContent> <ng-template ngbNavContent>
<div id="info"> <div id="info">
<ds-health-info [healthInfoResponse]="(healthInfoResponse | async)"></ds-health-info> <ds-health-info [healthInfoResponse]="(healthInfoResponse | async)"></ds-health-info>

View File

@@ -1587,9 +1587,9 @@
"health-page.heading" : "Health", "health-page.heading" : "Health",
"health-page.info" : "Info", "health-page.info-tab" : "Info",
"health-page.status" : "Status", "health-page.status-tab" : "Status",
"health-page.error.msg": "The health check service is temporarily unavailable", "health-page.error.msg": "The health check service is temporarily unavailable",
@@ -1611,6 +1611,8 @@
"health-page.section-info.java.title": "Java", "health-page.section-info.java.title": "Java",
"health-page.status": "Status",
"health-page.status.ok.info": "Operational", "health-page.status.ok.info": "Operational",
"health-page.status.error.info": "Problems detected", "health-page.status.error.info": "Problems detected",