fix import action translation

This commit is contained in:
Yuri Kuznetsov
2024-04-03 15:34:35 +03:00
parent 45ac0f7fee
commit fab13b3140
2 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -137,7 +137,7 @@
</div>
<div class="row">
<div class="col-sm-4 form-group cell">
<label class="control-label">{{translate 'Run Manually' scope='Import' category='messages'}}</label>
<label class="control-label">{{translate 'Run Manually' scope='Import' category='labels'}}</label>
<div data-name="manualMode" class="field">
{{{manualModeField}}}
</div>
+3 -3
View File
@@ -201,9 +201,9 @@ class Step1ImportView extends View {
'update',
],
translatedOptions: {
create: this.translate('Create Only', 'labels', 'Admin'),
createAndUpdate: this.translate('Create and Update', 'labels', 'Admin'),
update: this.translate('Update Only', 'labels', 'Admin'),
create: this.translate('Create Only', 'labels', 'Import'),
createAndUpdate: this.translate('Create and Update', 'labels', 'Import'),
update: this.translate('Update Only', 'labels', 'Import'),
},
},
});