mirror of
https://github.com/ceph/ceph
synced 2024-12-19 01:46:00 +00:00
Merge pull request #55312 from afreen23/fix-55270
mgr/dashboard: Code refactor rgw migrate component for using correctly the MIGRATE action verb Reviewed-by: Pedro Gonzalez Gomez <pegonzal@redhat.com> Reviewed-by: Nizamudeen A <nia@redhat.com>
This commit is contained in:
commit
2218c356a6
@ -146,7 +146,7 @@
|
||||
</div>
|
||||
<div class="modal-footer">
|
||||
<cd-form-button-panel (submitActionEvent)="submit()"
|
||||
[submitText]="actionLabels.MIGRATE"
|
||||
[submitText]="actionLabels.MIGRATE + ' ' + 'to Multi-site'"
|
||||
[form]="multisiteMigrateForm"></cd-form-button-panel>
|
||||
</div>
|
||||
</form>
|
||||
|
@ -181,7 +181,7 @@ export class RgwMultisiteMigrateComponent implements OnInit {
|
||||
() => {
|
||||
this.notificationService.show(
|
||||
NotificationType.success,
|
||||
$localize`${this.actionLabels.MIGRATE} done successfully`
|
||||
$localize`Migration done successfully`
|
||||
);
|
||||
this.submitAction.emit();
|
||||
this.activeModal.close();
|
||||
|
@ -150,7 +150,7 @@ export class ActionLabelsI18n {
|
||||
|
||||
this.IMPORT = $localize`Import`;
|
||||
|
||||
this.MIGRATE = $localize`Migrate to Multi-site`;
|
||||
this.MIGRATE = $localize`Migrate`;
|
||||
|
||||
/* Destroy an existing item */
|
||||
this.DELETE = $localize`Delete`;
|
||||
|
Loading…
Reference in New Issue
Block a user