Skip to content

Commit 4022a48

Browse files
authored
Yoreley/dec 27 (#2386)
* NEW KEYS - 2026 * Remove "New" tag from Displacement Search type * Translate No processing options for KEY * Hyp3 - keys
1 parent 3d60189 commit 4022a48

3 files changed

Lines changed: 6 additions & 7 deletions

File tree

src/app/components/header/processing-queue/processing-options/processing-options.component.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
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">

src/app/components/results-menu/scenes-list-header/scenes-list-header.component.html

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -339,8 +339,7 @@
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>

src/app/components/shared/project-name-dialog/project-name-dialog.component.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff 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
: {

0 commit comments

Comments
 (0)