From 648dc9fc059b71cb56a7c1300f1234fc1f2f2d35 Mon Sep 17 00:00:00 2001 From: RIHTARSIC Joze <joze.rihtarsic@ext.ec.europa.eu> Date: Sun, 20 Oct 2024 09:04:00 +0200 Subject: [PATCH] [EDELIVERY-14164] fix missing translation --- .../password-change-dialog.component.html | 2 +- smp-angular/src/assets/i18n/en.json | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/smp-angular/src/app/common/dialogs/password-change-dialog/password-change-dialog.component.html b/smp-angular/src/app/common/dialogs/password-change-dialog/password-change-dialog.component.html index 2cd4fde49..0c081a0cf 100644 --- a/smp-angular/src/app/common/dialogs/password-change-dialog/password-change-dialog.component.html +++ b/smp-angular/src/app/common/dialogs/password-change-dialog/password-change-dialog.component.html @@ -36,7 +36,7 @@ <smp-field-error *ngIf="passwordError('new-password', 'pattern')">{{passwordValidationMessage}}</smp-field-error> </mat-form-field> <mat-form-field style="width:100%"> - <mat-label>{{ "password.change.dialog.label.confirm.new.password" }}</mat-label> + <mat-label>{{ "password.change.dialog.label.confirm.new.password" | translate }}</mat-label> <input matInput [type]="hideConfPwdFiled ? 'password' : 'text'" formControlName="confirm-new-password" required id="cnp_id"> <mat-icon matSuffix diff --git a/smp-angular/src/assets/i18n/en.json b/smp-angular/src/assets/i18n/en.json index 3a9d41d65..3d7ce2c83 100644 --- a/smp-angular/src/assets/i18n/en.json +++ b/smp-angular/src/assets/i18n/en.json @@ -584,6 +584,7 @@ "resource.search.label.resource.scheme": "Resource scheme", "resource.search.label.column.document.type": "Document type", "resource.search.label.column.domain": "Domain", + "resource.search.label.column.visibility": "Visibility", "resource.search.label.column.resource.id": "Resource identifier", "resource.search.label.column.resource.scheme": "Resource scheme", "resource.search.label.column.resource.url": "Resource URL", -- GitLab