From: Afreen Date: Tue, 23 Jan 2024 02:34:32 +0000 (+0530) Subject: mgr/dashboard: Fix inconsistency in capitalisation of "Multi-site" X-Git-Tag: v18.2.4~324^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=b4b7c8e9dfe2f0bb8786f4d610cda39e02c75cdf;p=ceph.git mgr/dashboard: Fix inconsistency in capitalisation of "Multi-site" fixes https://tracker.ceph.com/issues/64125 Across the dashboard, two instances are present: Multi-site and Multi-Site. Making it consistent all over by using Multi-site. Signed-off-by: Afreen (cherry picked from commit aeb8afe1d5a958cfd9343bbe941df2e1451019f4) --- diff --git a/src/pybind/mgr/dashboard/frontend/src/app/ceph/rgw/rgw-multisite-export/rgw-multisite-export.component.html b/src/pybind/mgr/dashboard/frontend/src/app/ceph/rgw/rgw-multisite-export/rgw-multisite-export.component.html index b399f934aa64..779884936938 100644 --- a/src/pybind/mgr/dashboard/frontend/src/app/ceph/rgw/rgw-multisite-export/rgw-multisite-export.component.html +++ b/src/pybind/mgr/dashboard/frontend/src/app/ceph/rgw/rgw-multisite-export/rgw-multisite-export.component.html @@ -1,6 +1,6 @@ Export Multi-Site Realm Token + class="modal-title">Export Multi-site Realm Token
Import Multi-Site Token + class="modal-title">Import Multi-site Token Migrate Single Site to Multi-Site + class="modal-title">Migrate Single Site to Multi-site Migrate from a single-site deployment with a default zone group and zone to a multi-site system diff --git a/src/pybind/mgr/dashboard/frontend/src/app/shared/constants/app.constants.ts b/src/pybind/mgr/dashboard/frontend/src/app/shared/constants/app.constants.ts index d299f59fefd0..0f41e2832204 100644 --- a/src/pybind/mgr/dashboard/frontend/src/app/shared/constants/app.constants.ts +++ b/src/pybind/mgr/dashboard/frontend/src/app/shared/constants/app.constants.ts @@ -150,7 +150,7 @@ export class ActionLabelsI18n { this.IMPORT = $localize`Import`; - this.MIGRATE = $localize`Migrate to Multi-Site`; + this.MIGRATE = $localize`Migrate to Multi-site`; /* Destroy an existing item */ this.DELETE = $localize`Delete`;