Skip to content

Commit

Permalink
Bug 1989462: MTV string chagnes
Browse files Browse the repository at this point in the history
Signed-off-by: Matan Schatzman <mschatzm@redhat.com>
  • Loading branch information
metalice committed Aug 3, 2021
1 parent 10788fd commit 455d29b
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 8 deletions.
Expand Up @@ -795,11 +795,11 @@
"copy to clipboard": "copy to clipboard",
"Launch Migration Tool": "Launch Migration Tool",
"Install Migration Tool": "Install Migration Tool",
"Install ForkLift Instance": "Install ForkLift Instance",
"Deploy Migration Tool Instance": "Deploy Migration Tool Instance",
"ForkLift Instance is building...": "ForkLift Instance is building...",
"Migration Tool Operator required": "Migration Tool Operator required",
"The Migration Toolkit operator is successfully installed, please install Forklift instance in order to use the Migration Toolkit": "The Migration Toolkit operator is successfully installed, please install Forklift instance in order to use the Migration Toolkit",
"<0>The Migration Tool for Virtualization Operator facilitates the migration of multiple Virtual Machine workloads to Openshift Virtualization.</0><1>Clicking the Install Migration Toolkit button will take you to the <2>OperatorHub.</2></1><2>After the operator installation, please restart the Forklift instance</2>": "<0>The Migration Tool for Virtualization Operator facilitates the migration of multiple Virtual Machine workloads to Openshift Virtualization.</0><1>Clicking the Install Migration Toolkit button will take you to the <2>OperatorHub.</2></1><2>After the operator installation, please restart the Forklift instance</2>",
"The Migration Toolkit operator is successfully installed, please deploy Migration Tool instance in order to use the Migration Toolkit": "The Migration Toolkit operator is successfully installed, please deploy Migration Tool instance in order to use the Migration Toolkit",
"<0>The Migration Tool for Virtualization Operator facilitates the migration of multiple Virtual Machine workloads to Openshift Virtualization.</0><1>Clicking the Install Migration Toolkit button will take you to the <2>OperatorHub.</2></1><2>After the operator installation, please please deploy the instance by clicking on ForkliftController -&gt; Create an instance. For more information please refer to the <2>official documentation</2></2>": "<0>The Migration Tool for Virtualization Operator facilitates the migration of multiple Virtual Machine workloads to Openshift Virtualization.</0><1>Clicking the Install Migration Toolkit button will take you to the <2>OperatorHub.</2></1><2>After the operator installation, please please deploy the instance by clicking on ForkliftController -&gt; Create an instance. For more information please refer to the <2>official documentation</2></2>",
"The Migration Tool operator could not be installed because it is not available on the cluster": "The Migration Tool operator could not be installed because it is not available on the cluster",
"With Wizard": "With Wizard",
"With YAML": "With YAML",
Expand Down
Expand Up @@ -34,7 +34,7 @@ const MigrationTool = () => {
}
>
{!mtvSubscription && t('kubevirt-plugin~Install Migration Tool')}
{mtvSubscription && !mtvForkLift && t('kubevirt-plugin~Install ForkLift Instance')}
{mtvSubscription && !mtvForkLift && t('kubevirt-plugin~Deploy Migration Tool Instance')}
{mtvSubscription && mtvForkLift && t('kubevirt-plugin~ForkLift Instance is building...')}
</Button>
)}
Expand Down
Expand Up @@ -15,7 +15,6 @@ import {
SubscriptionsKind,
} from '../../../utils/migration-tool-utils';
import { ModalFooter } from '../../modals/modal/modal-footer';

import './migration-tool.scss';

type MigrationToolProps = ModalComponentProps & {
Expand Down Expand Up @@ -46,7 +45,7 @@ const MigrationTool: React.FC<MigrationToolProps> = ({
mtvSubscription ? (
<Text component={TextVariants.p}>
{t(
'kubevirt-plugin~The Migration Toolkit operator is successfully installed, please install Forklift instance in order to use the Migration Toolkit',
'kubevirt-plugin~The Migration Toolkit operator is successfully installed, please deploy Migration Tool instance in order to use the Migration Toolkit',
)}
</Text>
) : (
Expand All @@ -62,7 +61,10 @@ const MigrationTool: React.FC<MigrationToolProps> = ({
</Link>
</Text>
<Text component={TextVariants.p}>
After the operator installation, please restart the Forklift instance
After the operator installation, please please deploy the instance by clicking on
ForkliftController -&gt; Create an instance. For more information please refer to
the{' '}
<ExternalLink href="https://red.ht/mtv-docs">official documentation</ExternalLink>
</Text>
</Trans>
)
Expand All @@ -87,7 +89,7 @@ const MigrationTool: React.FC<MigrationToolProps> = ({
onCancel={close}
submitButtonText={
mtvSubscription
? t('kubevirt-plugin~Install ForkLift Instance')
? t('kubevirt-plugin~Deploy Migration Tool Instance')
: t('kubevirt-plugin~Install Migration Tool')
}
cancelButtonText={t('kubevirt-plugin~Close')}
Expand Down

0 comments on commit 455d29b

Please sign in to comment.