Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CNV-39556: Fix pending changes message for hot-plug NIC #2287

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions locales/en/plugin__kubevirt-plugin.json
Original file line number Diff line number Diff line change
Expand Up @@ -1241,6 +1241,7 @@
"The disk must be attached to the VirtualMAchine as a SCSI LUN for this option to work. It should only be used for cluster-aware applications": "The disk must be attached to the VirtualMAchine as a SCSI LUN for this option to work. It should only be used for cluster-aware applications",
"The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.": "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.",
"The entire VirtualMachine": "The entire VirtualMachine",
"The following areas have pending changes that will be applied when this VirtualMachine is live migrated or restarted.": "The following areas have pending changes that will be applied when this VirtualMachine is live migrated or restarted.",
"The following areas have pending changes that will be applied when this VirtualMachine is restarted.": "The following areas have pending changes that will be applied when this VirtualMachine is restarted.",
"The following credentials for this operating system were created via cloud-init. If unsuccessful, cloud-init could be improperly configured. Contact the image provider for more information.": "The following credentials for this operating system were created via cloud-init. If unsuccessful, cloud-init could be improperly configured. Contact the image provider for more information.",
"The following disk will not be included in the snapshot_one": "The following disk will not be included in the snapshot",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ const LiveMigratePendingChanges: FC<LiveMigratePendingChangesProps> = ({ pending
return (
<>
{t(
'The following areas have pending changes that will be applied when this VirtualMachine is restarted.',
'The following areas have pending changes that will be applied when this VirtualMachine is live migrated or restarted.',
)}
<List>
<PendingChangesBreadcrumb pendingChanges={pendingChangesNICsTab} />
Expand Down