diff --git a/packages/forklift-console-plugin/locales/en/plugin__forklift-console-plugin.json b/packages/forklift-console-plugin/locales/en/plugin__forklift-console-plugin.json index 85f919cd7..b11440a28 100644 --- a/packages/forklift-console-plugin/locales/en/plugin__forklift-console-plugin.json +++ b/packages/forklift-console-plugin/locales/en/plugin__forklift-console-plugin.json @@ -131,7 +131,7 @@ "Disk counter": "Disk counter", "Disk decryption passphrases": "Disk decryption passphrases", "Disk transfer": "Disk transfer", - "Do not try to preserve the static IPs of VMs with Windows guest operating system from vSphere.": "Do not try to preserve the static IPs of VMs with Windows guest operating system from vSphere.", + "Do not try to preserve the static IPs of virtual machines migrated from vSphere.": "Do not try to preserve the static IPs of virtual machines migrated from vSphere.", "Domain": "Domain", "Domain name": "Domain name", "Drag and drop a file or upload one": "Drag and drop a file or upload one", @@ -366,7 +366,7 @@ "Preserve CPU model": "Preserve CPU model", "Preserve static IPs": "Preserve static IPs", "Preserve the CPU model and flags the VM runs with in its oVirt cluster.": "Preserve the CPU model and flags the VM runs with in its oVirt cluster.", - "Preserve the static IPs of VMs with Windows guest operating system from vSphere.": "Preserve the static IPs of VMs with Windows guest operating system from vSphere.", + "Preserve the static IPs of virtual machines migrated from vSphere.": "Preserve the static IPs of virtual machines migrated from vSphere.", "Product": "Product", "Progress": "Progress", "Project": "Project", diff --git a/packages/forklift-console-plugin/src/modules/Plans/views/details/components/SettingsSection/components/PreserveStaticIPsDetailsItem.tsx b/packages/forklift-console-plugin/src/modules/Plans/views/details/components/SettingsSection/components/PreserveStaticIPsDetailsItem.tsx index 33bd22e83..49b79ba4e 100644 --- a/packages/forklift-console-plugin/src/modules/Plans/views/details/components/SettingsSection/components/PreserveStaticIPsDetailsItem.tsx +++ b/packages/forklift-console-plugin/src/modules/Plans/views/details/components/SettingsSection/components/PreserveStaticIPsDetailsItem.tsx @@ -18,7 +18,7 @@ export const PreserveStaticIPsDetailsItem: React.FC = ({ const { showModal } = useModal(); const defaultHelpContent = t( - `Preserve the static IPs of VMs with Windows guest operating system from vSphere.`, + `Preserve the static IPs of virtual machines migrated from vSphere.`, ); const trueLabel = ( diff --git a/packages/forklift-console-plugin/src/modules/Plans/views/details/components/SettingsSection/modals/EditPlanPreserveStaticIPs/EditPlanPreserveStaticIPs.tsx b/packages/forklift-console-plugin/src/modules/Plans/views/details/components/SettingsSection/modals/EditPlanPreserveStaticIPs/EditPlanPreserveStaticIPs.tsx index da1219bce..6fbee314d 100644 --- a/packages/forklift-console-plugin/src/modules/Plans/views/details/components/SettingsSection/modals/EditPlanPreserveStaticIPs/EditPlanPreserveStaticIPs.tsx +++ b/packages/forklift-console-plugin/src/modules/Plans/views/details/components/SettingsSection/modals/EditPlanPreserveStaticIPs/EditPlanPreserveStaticIPs.tsx @@ -50,11 +50,9 @@ const PreserveStaticIPsInputFactory: () => ModalInputComponentType = () => { return ( = (pr label={props?.label || t('Whether to preserve the static IPs')} model={PlanModel} onConfirmHook={onConfirm} - body={t(`Preserve the static IPs of VMs with Windows guest operating system from vSphere.`)} + body={t(`Preserve the static IPs of virtual machines migrated from vSphere.`)} InputComponent={PreserveStaticIPsInputFactory()} /> );