Skip to content

Commit 48844d6

Browse files
authored
Resolves: MTV-3861, MTV-3862, MTV-3863 (#2175)
Signed-off-by: Aviv Turgeman <[email protected]>
1 parent cf2fa01 commit 48844d6

File tree

4 files changed

+10
-6
lines changed

4 files changed

+10
-6
lines changed

locales/en/plugin__forklift-console-plugin.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -307,7 +307,6 @@
307307
"Dell PowerStore": "Dell PowerStore",
308308
"Description": "Description",
309309
"Deselect critical issue VMs": "Deselect critical issue VMs",
310-
"destination provider": "destination provider",
311310
"Details": "Details",
312311
"Determines the frequency with which the system checks the status of snapshot creation or removal during oVirt warm migration. The default value is 10 seconds.": "Determines the frequency with which the system checks the status of snapshot creation or removal during oVirt warm migration. The default value is 10 seconds.",
313312
"Disabled": "Disabled",
@@ -946,7 +945,6 @@
946945
"Source network": "Source network",
947946
"Source network is required for mapping {{index}}.": "Source network is required for mapping {{index}}.",
948947
"Source only": "Source only",
949-
"source provider": "source provider",
950948
"Source provider": "Source provider",
951949
"Source provider is required.": "Source provider is required.",
952950
"Source provider:": "Source provider:",
@@ -1007,6 +1005,7 @@
10071005
"The edit mappings button is disabled if the plan started running and at least one virtual machine was migrated successfully or when the plan status does not enable editing.": "The edit mappings button is disabled if the plan started running and at least one virtual machine was migrated successfully or when the plan status does not enable editing.",
10081006
"The Manager CA certificate unless it was replaced by a third-party certificate, in which case, enter the Manager Apache CA certificate.": "The Manager CA certificate unless it was replaced by a third-party certificate, in which case, enter the Manager Apache CA certificate.",
10091007
"The mapping data from the inventory is not available, {{resourcesError}}.": "The mapping data from the inventory is not available, {{resourcesError}}.",
1008+
"The OpenShift cluster you want to migrate your virtual machines to.": "The OpenShift cluster you want to migrate your virtual machines to.",
10101009
"The password for the ESXi host admin": "The password for the ESXi host admin",
10111010
"The plan cannot be duplicated": "The plan cannot be duplicated",
10121011
"The plan cannot be started": "The plan cannot be started",
@@ -1028,6 +1027,7 @@
10281027
"The project, within your selected target provider, in which your virtual machines will be migrated. Namespace is a Kubernetes term, but it is also called a Project in OpenShift.": "The project, within your selected target provider, in which your virtual machines will be migrated. Namespace is a Kubernetes term, but it is also called a Project in OpenShift.",
10291028
"The provider is not ready": "The provider is not ready",
10301029
"The provider is not ready.": "The provider is not ready.",
1030+
"The repository or distribution channel you want to migrate your virtual machines from into the OpenShift cluster.": "The repository or distribution channel you want to migrate your virtual machines from into the OpenShift cluster.",
10311031
"The repository or virtualization platform you want to migrate your virtual machines from into the OpenShift cluster.": "The repository or virtualization platform you want to migrate your virtual machines from into the OpenShift cluster.",
10321032
"The Secret was not loaded. Try reloading the page or check if the secret exists. ": "The Secret was not loaded. Try reloading the page or check if the secret exists. ",
10331033
"The source mapping data from the inventory is not available: {{resourcesError}}.": "The source mapping data from the inventory is not available: {{resourcesError}}.",
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
.resource-yaml-editor-wrapper {
22
.yaml-editor {
3-
min-height: 400px;
3+
min-height: 500px;
44
}
55
}

src/overview/tabs/Overview/cards/Welcome/ProviderCard.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,9 @@ export const ProviderCard: FC<ProviderCardProps> = ({ children, imageSrc, onClic
2727
<img alt="" src={imageSrc} />
2828
</FlexItem>
2929

30-
<FlexItem>{children}</FlexItem>
30+
<FlexItem>
31+
<b>{children}</b>
32+
</FlexItem>
3133
</Flex>
3234
</CardBody>
3335
</Card>

src/plans/details/tabs/Details/components/ProvidersSection/ProvidersSection.tsx

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,9 @@ const ProvidersSection: FC<ProvidersSectionProps> = ({ plan }) => {
5858
providerName={sourceProviderName}
5959
/>
6060
}
61-
helpContent={t('source provider')}
61+
helpContent={t(
62+
'The repository or distribution channel you want to migrate your virtual machines from into the OpenShift cluster.',
63+
)}
6264
crumbs={['spec', 'providers', 'source']}
6365
/>
6466

@@ -75,7 +77,7 @@ const ProvidersSection: FC<ProvidersSectionProps> = ({ plan }) => {
7577
providerName={destinationProviderName}
7678
/>
7779
}
78-
helpContent={t('destination provider')}
80+
helpContent={t('The OpenShift cluster you want to migrate your virtual machines to.')}
7981
crumbs={['spec', 'providers', 'destination']}
8082
/>
8183
</DescriptionList>

0 commit comments

Comments
 (0)