-
Notifications
You must be signed in to change notification settings - Fork 553
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add missed translations to html files
- Loading branch information
1 parent
a7a32ef
commit c69c9dc
Showing
23 changed files
with
65 additions
and
41 deletions.
There are no files selected for viewing
4 changes: 2 additions & 2 deletions
4
...-view/custom-dialogs/toggle-withhold-tax-dialog/toggle-withhold-tax-dialog.component.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
8 changes: 4 additions & 4 deletions
8
...nt-view/custom-dialogs/calculate-interest-dialog/calculate-interest-dialog.component.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
<h1 mat-dialog-title>Calculate Interest</h1> | ||
<h1 mat-dialog-title>{{'labels.heading.Calculate Interest' | translate }}</h1> | ||
<div mat-dialog-content> | ||
<p>Are you sure you want to calculate interest ?</p> | ||
<p>{{'labels.text.Are you sure you want to calculate interest' | translate }} ?</p> | ||
</div> | ||
<mat-dialog-actions align="end"> | ||
<button mat-raised-button mat-dialog-close>Cancel</button> | ||
<button mat-raised-button color="primary" [mat-dialog-close]="{ confirm: true }">Confirm</button> | ||
<button mat-raised-button mat-dialog-close>{{'labels.buttons.Cancel' | translate}}</button> | ||
<button mat-raised-button color="primary" [mat-dialog-close]="{ confirm: true }">{{'labels.buttons.Confirm' | translate}}</button> | ||
</mat-dialog-actions> |
8 changes: 4 additions & 4 deletions
8
...ount-view/custom-dialogs/inactivate-charge-dialog/inactivate-charge-dialog.component.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
<h1 mat-dialog-title>Inactivate Charge</h1> | ||
<h1 mat-dialog-title>{{'tooltips.Inactivate Charge' | translate}}</h1> | ||
<div mat-dialog-content> | ||
<p>Are you sure you want to inactivate charge with id: {{ data.id }} ?</p> | ||
<p>{{"labels.text.Are you sure you want to inactivate charge with id" | translate }}: {{ data.id }} ?</p> | ||
</div> | ||
<mat-dialog-actions align="end"> | ||
<button mat-raised-button mat-dialog-close>Cancel</button> | ||
<button mat-raised-button color="primary" [mat-dialog-close]="{ confirm: true }">Confirm</button> | ||
<button mat-raised-button mat-dialog-close>{{'labels.buttons.Cancel' | translate}}</button> | ||
<button mat-raised-button color="primary" [mat-dialog-close]="{ confirm: true }">{{'labels.buttons.Confirm' | translate}}</button> | ||
</mat-dialog-actions> |
8 changes: 4 additions & 4 deletions
8
...-view/custom-dialogs/toggle-withhold-tax-dialog/toggle-withhold-tax-dialog.component.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
<h1 mat-dialog-title>{{ data.isEnable ? 'Enable' : 'Disable' }} Withhold Tax</h1> | ||
<h1 mat-dialog-title>{{ (data.isEnable ? 'labels.heading.Enable' : 'labels.heading.Disable') | translate }} {{"labels.heading.Withhold Tax" | translate }}</h1> | ||
<div mat-dialog-content> | ||
<p>Are you sure you want to {{ data.isEnable ? 'enable' : 'disable' }} withhold tax for this account ?</p> | ||
<p>{{"labels.text.Are you sure you want to" | translate }} {{ (data.isEnable ? 'labels.heading.Enable' : 'labels.heading.Disable') | translate }} {{"labels.text.withhold tax for this account" | translate }} ?</p> | ||
</div> | ||
<mat-dialog-actions align="end"> | ||
<button mat-raised-button mat-dialog-close>Cancel</button> | ||
<button mat-raised-button color="{{ data.isEnable ? 'accent' : 'warn' }}" [mat-dialog-close]="{ confirm: true }">Confirm</button> | ||
<button mat-raised-button mat-dialog-close>{{'labels.buttons.Cancel' | translate}}</button> | ||
<button mat-raised-button color="{{ data.isEnable ? 'accent' : 'warn' }}" [mat-dialog-close]="{ confirm: true }">{{'labels.buttons.Confirm' | translate}}</button> | ||
</mat-dialog-actions> |
8 changes: 4 additions & 4 deletions
8
...avings-account-view/custom-dialogs/waive-charge-dialog/waive-charge-dialog.component.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
<h1 mat-dialog-title>Waive Charge</h1> | ||
<h1 mat-dialog-title>{{"labels.buttons.Waive Charge" | translate}}</h1> | ||
<div mat-dialog-content> | ||
<p>Are you sure you want to waive charge with id: {{ data.id }} ?</p> | ||
<p>{{"labels.text.Are you sure you want to waive charge with id" | translate }}: {{ data.id }} ?</p> | ||
</div> | ||
<mat-dialog-actions align="end"> | ||
<button mat-raised-button mat-dialog-close>Cancel</button> | ||
<button mat-raised-button color="primary" [mat-dialog-close]="{ confirm: true }">Confirm</button> | ||
<button mat-raised-button mat-dialog-close>{{'labels.buttons.Cancel' | translate}}</button> | ||
<button mat-raised-button color="primary" [mat-dialog-close]="{ confirm: true }">{{'labels.buttons.Confirm' | translate}}</button> | ||
</mat-dialog-actions> |
24 changes: 12 additions & 12 deletions
24
...s/savings-account-view/standing-instructions-tab/standing-instructions-tab.component.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.