From 299463fbc4e9ccfe8cf4ba6358ef2a1d8168d099 Mon Sep 17 00:00:00 2001 From: Timothy Asir Jeyasingh Date: Wed, 20 Sep 2023 14:45:14 +0530 Subject: [PATCH] Change raw capacity tool tips message https://bugzilla.redhat.com/show_bug.cgi?id=2237895 Signed-off-by: Timothy Asir Jeyasingh --- locales/en/plugin__odf-console.json | 2 +- packages/ocs/dashboards/block-pool/raw-capacity-card.tsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/locales/en/plugin__odf-console.json b/locales/en/plugin__odf-console.json index 6c169c5ba..4c7e6f2e9 100644 --- a/locales/en/plugin__odf-console.json +++ b/locales/en/plugin__odf-console.json @@ -359,7 +359,7 @@ "Mirroring": "Mirroring", "Show image states": "Show image states", "Last checked": "Last checked", - "Raw Capacity shows the total physical capacity from all storage media within the storage subsystem": "Raw Capacity shows the total physical capacity from all storage media within the storage subsystem", + "Raw capacity shows the total physical capacity from all the storage pools in the StorageSystem.": "Raw capacity shows the total physical capacity from all the storage pools in the StorageSystem.", "Starting replay": "Starting replay", "Stopping replay": "Stopping replay", "Replaying": "Replaying", diff --git a/packages/ocs/dashboards/block-pool/raw-capacity-card.tsx b/packages/ocs/dashboards/block-pool/raw-capacity-card.tsx index 4bc3d78d0..6b62a7041 100644 --- a/packages/ocs/dashboards/block-pool/raw-capacity-card.tsx +++ b/packages/ocs/dashboards/block-pool/raw-capacity-card.tsx @@ -57,7 +57,7 @@ export const RawCapacityCard: React.FC = () => { const availableCapacityMetric = getInstantVectorStats(availableData)?.[0]?.y; const totalCapacityMetric = usedCapacityMetric + availableCapacityMetric; const description = t( - 'Raw Capacity shows the total physical capacity from all storage media within the storage subsystem' + 'Raw capacity shows the total physical capacity from all the storage pools in the StorageSystem.' ); const loading = usedCapacityLoading || availableLoading;