File tree Expand file tree Collapse file tree
shared/project-name-dialog Expand file tree Collapse file tree Original file line number Diff line number Diff line change 44 @if (selectedJobType.id === jobType.id) {
55 @if (jobType.options.length === 0) {
66 < div class ="no-processing-options ">
7- < h3 > No processing options for {{ jobType.name }}</ h3 >
7+ < h3 > {{ 'NO_PROCESSING_OPTIONS_FOR' | translate }} {{ jobType.name }}</ h3 >
88 </ div >
99 } @else {
1010 < div class ="flex-row flex-start ">
Original file line number Diff line number Diff line change 339339 < div >
340340 < button (click) ="onBulkProjectNameUpdate() " mat-menu-item >
341341 {{
342- 'PROJECT_NAME_UPDATE_FOR_JOBS'
343- | translate: { count: products.length }
342+ 'PROJECT_NAME_UPDATE_FOR_JOBS'| translate: { count: products.length }
344343 }}
345344 </ button >
346345 </ div >
Original file line number Diff line number Diff line change @@ -116,8 +116,8 @@ <h2 class="dialog-title">
116116 @if (isEditMode()) {
117117 {{
118118 (projectCount === 1
119- ? 'CONFIRM_RENAME_SINGLE'
120- : 'CONFIRM_RENAME_MULTIPLE'
119+ ? ( 'CONFIRM_RENAME_SINGLE' | translate)
120+ : ( 'CONFIRM_RENAME_MULTIPLE' | translate)
121121 )
122122 | translate
123123 : {
@@ -129,8 +129,8 @@ <h2 class="dialog-title">
129129 } @else {
130130 {{
131131 (projectCount === 1
132- ? 'CONFIRM_REMOVE_SINGLE'
133- : 'CONFIRM_REMOVE_MULTIPLE'
132+ ? ( 'CONFIRM_REMOVE_SINGLE' | translate)
133+ : ( 'CONFIRM_REMOVE_MULTIPLE' | translate)
134134 )
135135 | translate
136136 : {
You can’t perform that action at this time.
0 commit comments