-
Notifications
You must be signed in to change notification settings - Fork 42
Expand file tree
/
Copy pathplugin__forklift-console-plugin.json
More file actions
1415 lines (1415 loc) · 184 KB
/
plugin__forklift-console-plugin.json
File metadata and controls
1415 lines (1415 loc) · 184 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
" tasks": " tasks",
".DiskIndex: initial volume index of the disk": ".DiskIndex: initial volume index of the disk",
".FileName: name of the file in the source provider (vmWare only, require guest agent)": ".FileName: name of the file in the source provider (vmWare only, require guest agent)",
".NetworkIndex: sequential index of the network interface (0-based)": ".NetworkIndex: sequential index of the network interface (0-based)",
".NetworkName: If target network is multus, name of the Multus network attachment definition, empty otherwise.": ".NetworkName: If target network is multus, name of the Multus network attachment definition, empty otherwise.",
".NetworkNamespace: If target network is multus, namespace where the network attachment definition is located.": ".NetworkNamespace: If target network is multus, namespace where the network attachment definition is located.",
".NetworkType: type of the network (\"Multus\" or \"Default\")": ".NetworkType: type of the network (\"Multus\" or \"Default\")",
".PlanName: name of the migration plan": ".PlanName: name of the migration plan",
".PVCName: name of the PVC mounted to the VM using this volume": ".PVCName: name of the PVC mounted to the VM using this volume",
".RootDiskIndex: index of the root disk": ".RootDiskIndex: index of the root disk",
".Shared: true if the volume is shared by multiple VMs, false otherwise": ".Shared: true if the volume is shared by multiple VMs, false otherwise",
".VmName: name of the VM": ".VmName: name of the VM",
".VolumeIndex: sequential index of the volume interface (0-based)": ".VolumeIndex: sequential index of the volume interface (0-based)",
".WinDriveLetter: Windows drive letter (lower case, if applicable, e.g. \"c\", require guest agent)": ".WinDriveLetter: Windows drive letter (lower case, if applicable, e.g. \"c\", require guest agent)",
"'must-gather' CLI logs": "'must-gather' CLI logs",
"(Inherited from plan)": "(Inherited from plan)",
"{{completed}} of {{total}} {{name}}": "{{completed}} of {{total}} {{name}}",
"{{count}} plan_one": "{{count}} plan",
"{{count}} plan_other": "{{count}} plan",
"{{count}} virtual machine selected_one": "{{count}} virtual machine selected",
"{{count}} virtual machine selected_other": "{{count}} virtual machine selected",
"{{count}} VM migration_one": "{{count}} VM migration",
"{{count}} VM migration_other": "{{count}} VM migration",
"{{errorMessage}}": "{{errorMessage}}",
"{{label}}": "{{label}}",
"{{mapType}} name is required.": "{{mapType}} name is required.",
"{{mapType}} name must be a valid DNS subdomain name. It should contain only lowercase alphanumeric characters or hyphens, and must start and end with alphanumeric characters.": "{{mapType}} name must be a valid DNS subdomain name. It should contain only lowercase alphanumeric characters or hyphens, and must start and end with alphanumeric characters.",
"{{name}} details": "{{name}} details",
"{{rules}} affinity rules": "{{rules}} affinity rules",
"{{selectedLength}} hosts selected.": "{{selectedLength}} hosts selected.",
"{{title}}": "{{title}}",
"{{title}} migration": "{{title}} migration",
"{{total}} VM_one": "{{total}} VM",
"{{total}} VM_other": "{{total}} VM",
"{{type}} migration": "{{type}} migration",
"{{vmCount}} VM{{isPlural}} fully migrated": "{{vmCount}} VM{{isPlural}} fully migrated",
"{{vmCount}} VM{{isPlural}} migration canceled": "{{vmCount}} VM{{isPlural}} migration canceled",
"{{vmCount}} VM{{isPlural}} migration cannot start": "{{vmCount}} VM{{isPlural}} migration cannot start",
"{{vmCount}} VM{{isPlural}} migration failed": "{{vmCount}} VM{{isPlural}} migration failed",
"{{vmCount}} VM{{isPlural}} migration in progress": "{{vmCount}} VM{{isPlural}} migration in progress",
"{{vmCount}} VM{{isPlural}} migration paused until cutover scheduled": "{{vmCount}} VM{{isPlural}} migration paused until cutover scheduled",
"{children}": "{children}",
"<0>{isOvaProvider\n ? ovaMigrationMessage\n : t('Start the {{migrationType}} migration for plan', { migrationType })} <2>{name}</2>?</0>{isOvaProvider ? null : <StackItem>{migrationMessage}</StackItem>}": "<0>{isOvaProvider\n ? ovaMigrationMessage\n : t('Start the {{migrationType}} migration for plan', { migrationType })} <2>{name}</2>?</0>{isOvaProvider ? null : <StackItem>{migrationMessage}</StackItem>}",
"<0><0>{description}</0><1>Add labels to specify qualifying nodes. For each nodes label, set <2>key, value</2> pair(s). For example: key set to <5>beta.kubernetes.io/os</5> and value set to <7>linux</7></1></0>": "<0><0>{description}</0><1>Add labels to specify qualifying nodes. For each nodes label, set <2>key, value</2> pair(s). For example: key set to <5>beta.kubernetes.io/os</5> and value set to <7>linux</7></1></0>",
"<0><0>{description}</0><1>Enter <1>key=value</1> pair(s). For example: project=myProject</1></0>": "<0><0>{description}</0><1>Enter <1>key=value</1> pair(s). For example: project=myProject</1></0>",
"<0><0>{TARGET_LABELS_DETAILS_ITEM_DESCRIPTION}</0><1>Enter <1>key=value</1> pair(s). For example: project=myProject</1></0>": "<0><0>{TARGET_LABELS_DETAILS_ITEM_DESCRIPTION}</0><1>Enter <1>key=value</1> pair(s). For example: project=myProject</1></0>",
"<0><0>{TARGET_NODE_SELECTOR_DETAILS_ITEM_DESCRIPTION}</0><1>Add labels to specify qualifying nodes. For each nodes label, set <2>key, value</2> pair(s). For example: key set to <5>beta.kubernetes.io/os</5> and value set to <7>linux</7></1></0>": "<0><0>{TARGET_NODE_SELECTOR_DETAILS_ITEM_DESCRIPTION}</0><1>Add labels to specify qualifying nodes. For each nodes label, set <2>key, value</2> pair(s). For example: key set to <5>beta.kubernetes.io/os</5> and value set to <7>linux</7></1></0>",
"<0><0>A root device is the storage device or partition that contains the root filesystem. For example, naming a root device \"/dev/sda2\" would mean to use the second partition on the first hard drive.</0><1>If you do not provide a root device, the first root device will be used. If the named root device does not exist or is not detected as a root device, the migration will fail.</1><2><0>Learn more</0></2></0>": "<0><0>A root device is the storage device or partition that contains the root filesystem. For example, naming a root device \"/dev/sda2\" would mean to use the second partition on the first hard drive.</0><1>If you do not provide a root device, the first root device will be used. If the named root device does not exist or is not detected as a root device, the migration will fail.</1><2><0>Learn more</0></2></0>",
"<0><0>An error occurred while fetching target projects for target provider <2>{targetProviderName}</2>.</0><1>{error.message}</1></0>": "<0><0>An error occurred while fetching target projects for target provider <2>{targetProviderName}</2>.</0><1>{error.message}</1></0>",
"<0><0>Archive plan <1>{getName(plan)}</1>?</0><1>When a plan is archived, its history, metadata, and logs are deleted. The plan cannot be edited or restarted but it can be viewed.</1></0>": "<0><0>Archive plan <1>{getName(plan)}</1>?</0><1>When a plan is archived, its history, metadata, and logs are deleted. The plan cannot be edited or restarted but it can be viewed.</1></0>",
"<0><0>Configure disk decryption for LUKS-encrypted devices. You can use network-bound decryption (NBDE/Clevis) for automatic unlocking via Tang servers, or provide manual passphrases. These settings apply to all VMs in the migration plan.</0><1>For manual passphrases, migration toolkit for virtualization (MTV) tries each passphrase until one unlocks the device. <2>Learn more</2>.</1></0>": "<0><0>Configure disk decryption for LUKS-encrypted devices. You can use network-bound decryption (NBDE/Clevis) for automatic unlocking via Tang servers, or provide manual passphrases. These settings apply to all VMs in the migration plan.</0><1>For manual passphrases, migration toolkit for virtualization (MTV) tries each passphrase until one unlocks the device. <2>Learn more</2>.</1></0>",
"<0><0>Duplicate plan <1>{name}</1>?</0><1><0></0></1><2>All needed Mappings and Hooks will be duplicated and attached to the new Plan.</2><3>Storage map: <1>{storageMap?.metadata?.name}</1></3><4>Network map: <1>{networkMap?.metadata?.name}</1></4></0>": "<0><0>Duplicate plan <1>{name}</1>?</0><1><0></0></1><2>All needed Mappings and Hooks will be duplicated and attached to the new Plan.</2><3>Storage map: <1>{storageMap?.metadata?.name}</1></3><4>Network map: <1>{networkMap?.metadata?.name}</1></4></0>",
"<0><0>If checked, compatibility devices (SATA bus, E1000E NIC) will be used to ensure boot-ability.</0><1>If unchecked, high-performance VirtIO devices will be used. This requires VirtIO drivers already installed in the source VM.</1></0>": "<0><0>If checked, compatibility devices (SATA bus, E1000E NIC) will be used to ensure boot-ability.</0><1>If unchecked, high-performance VirtIO devices will be used. This requires VirtIO drivers already installed in the source VM.</1></0>",
"<0><0>MTV behavior is based on the <1>Shared disks</1> setting in the plan.</0><1>If this is set to <1>true</1>, the shared disks will be migrated.<3></3>If this is set to <5>false</5>, the shared disks will not be migrated.</1></0>": "<0><0>MTV behavior is based on the <1>Shared disks</1> setting in the plan.</0><1>If this is set to <1>true</1>, the shared disks will be migrated.<3></3>If this is set to <5>false</5>, the shared disks will not be migrated.</1></0>",
"<0><0>Schedule the cutover for migration <2>{getName(plan)}</2>?</0><1>You can schedule cutover for now or a future date and time. VMs included in the migration plan will be shut down when cutover starts.</1></0>": "<0><0>Schedule the cutover for migration <2>{getName(plan)}</2>?</0><1>You can schedule cutover for now or a future date and time. VMs included in the migration plan will be shut down when cutover starts.</1></0>",
"<0><0>Sets the maximum number of virtual machines or disks that can be migrated simultaneously, varies by the source provider type and by the settings of the migration.</0><1>The default value is 20 virtual machines or disks.</1><2><0>Learn more</0></2></0>": "<0><0>Sets the maximum number of virtual machines or disks that can be migrated simultaneously, varies by the source provider type and by the settings of the migration.</0><1>The default value is 20 virtual machines or disks.</1><2><0>Learn more</0></2></0>",
"<0><0>Target provider <1>{targetProviderName}</1> does not have network mappings available in any existing projects.</0><1>Create a project or select a different target provider.</1></0>": "<0><0>Target provider <1>{targetProviderName}</1> does not have network mappings available in any existing projects.</0><1>Create a project or select a different target provider.</1></0>",
"<0>Critical: </0> VM migration will fail due to this issue. Action must be taken to remove the critical concern.": "<0>Critical: </0> VM migration will fail due to this issue. Action must be taken to remove the critical concern.",
"<0>Informational:</0> Will not cause a big impact on your VMs.": "<0>Informational:</0> Will not cause a big impact on your VMs.",
"<0>Link for the OpenShift Virtualization web console UI.</0><1>Use this link to access the user interface for the provider's virtualization management.</1><2>If no link value is specify then a default auto calculated or an empty value is set.</2>": "<0>Link for the OpenShift Virtualization web console UI.</0><1>Use this link to access the user interface for the provider's virtualization management.</1><2>If no link value is specify then a default auto calculated or an empty value is set.</2>",
"<0>Link for the OpenStack dashboard UI.</0><1>Use this link to access the user interface for the provider's virtualization management.</1><2>If no link value is specify then a default auto calculated or an empty value is set.</2>": "<0>Link for the OpenStack dashboard UI.</0><1>Use this link to access the user interface for the provider's virtualization management.</1><2>If no link value is specify then a default auto calculated or an empty value is set.</2>",
"<0>Link for the Red Hat Virtualization Manager landing page.</0><1>Use this link to access the user interface for the provider's virtualization management.</1><2>If no link value is specify then a default auto calculated or an empty value is set.</2>": "<0>Link for the Red Hat Virtualization Manager landing page.</0><1>Use this link to access the user interface for the provider's virtualization management.</1><2>If no link value is specify then a default auto calculated or an empty value is set.</2>",
"<0>Link for the VMware vSphere UI.</0><1>Use this link to access the user interface for the provider's virtualization management.</1><2>If no link value is specify then a default auto calculated or an empty value is set.</2>": "<0>Link for the VMware vSphere UI.</0><1>Use this link to access the user interface for the provider's virtualization management.</1><2>If no link value is specify then a default auto calculated or an empty value is set.</2>",
"<0>Not using a VDDK image could result in significantly lower migration speeds or a plan failing. For more information, see <2>Creating a VDDK image</2></0>": "<0>Not using a VDDK image could result in significantly lower migration speeds or a plan failing. For more information, see <2>Creating a VDDK image</2></0>",
"<0>Open a support case</0> on your Red Hat Customer Portal and attach the compressed file.": "<0>Open a support case</0> on your Red Hat Customer Portal and attach the compressed file.",
"<0>Select <1>Skip certificate validation</1> to skip certificate verification, which proceeds with an insecure migration and then the certificate is not required. Insecure migration means that the transferred data is sent over an insecure connection and potentially sensitive data could be exposed.</0>": "<0>Select <1>Skip certificate validation</1> to skip certificate verification, which proceeds with an insecure migration and then the certificate is not required. Insecure migration means that the transferred data is sent over an insecure connection and potentially sensitive data could be exposed.</0>",
"<0>URL of the Openshift Virtualization API endpoint.</0><1></1><2>The format of the provided URL of the Openshift Virtualization API endpoint should include a scheme, a domain name, and, optionally a port. For example: <2>https://api.openshift-domain.com:6443</2>.</2>": "<0>URL of the Openshift Virtualization API endpoint.</0><1></1><2>The format of the provided URL of the Openshift Virtualization API endpoint should include a scheme, a domain name, and, optionally a port. For example: <2>https://api.openshift-domain.com:6443</2>.</2>",
"<0>URL of the OpenStack Identity (Keystone) endpoint.</0><1></1><2>The format of the provided URL of the OpenStack Identity (Keystone) API endpoint should include a scheme, a domain name, path, and optionally a port. Usually the path will indicate the server version, for example: <1>https://identity_service.com:5000/v3</1>.</2>": "<0>URL of the OpenStack Identity (Keystone) endpoint.</0><1></1><2>The format of the provided URL of the OpenStack Identity (Keystone) API endpoint should include a scheme, a domain name, path, and optionally a port. Usually the path will indicate the server version, for example: <1>https://identity_service.com:5000/v3</1>.</2>",
"<0>URL of the Red Hat Virtualization Manager (RHVM) API endpoint.</0><1></1><2>The format of the provided URL of the Red Hat Virtualization Manager (RHVM) API endpoint should include a scheme, a domain name, path, and optionally a port. Usually the path will end with /api, for example: <1>https://rhv-host-example.com/ovirt-engine/api</1>.</2>": "<0>URL of the Red Hat Virtualization Manager (RHVM) API endpoint.</0><1></1><2>The format of the provided URL of the Red Hat Virtualization Manager (RHVM) API endpoint should include a scheme, a domain name, path, and optionally a port. Usually the path will end with /api, for example: <1>https://rhv-host-example.com/ovirt-engine/api</1>.</2>",
"<0>URL of the vCenter API endpoint.</0><1></1><2>The format of the URL of the vCenter API endpoint should include a scheme, a domain name, path, and optionally a port. Usually the path will end with /sdk, for example: <2>https://vCenter-host-example.com/sdk</2>.</2>": "<0>URL of the vCenter API endpoint.</0><1></1><2>The format of the URL of the vCenter API endpoint should include a scheme, a domain name, path, and optionally a port. Usually the path will end with /sdk, for example: <2>https://vCenter-host-example.com/sdk</2>.</2>",
"<0>Use the CA certificate of the Manager unless it was replaced by a third-party certificate, in which case enter the Manager Apache CA certificate.</0><1>When left empty the system CA certificate is used.</1><2>The certificate is not verified when <1>Skip certificate validation</1> is set.</2>": "<0>Use the CA certificate of the Manager unless it was replaced by a third-party certificate, in which case enter the Manager Apache CA certificate.</0><1>When left empty the system CA certificate is used.</1><2>The certificate is not verified when <1>Skip certificate validation</1> is set.</2>",
"<0>Use the external web UI link to access the provider virtual machine management system.</0><1>You can edit and store the link to the management system to customize the link URL.</1>": "<0>Use the external web UI link to access the provider virtual machine management system.</0><1>You can edit and store the link to the management system to customize the link URL.</1>",
"<0>VMware Virtual Disk Development Kit (VDDK) image.</0><1></1><2>The migration toolkit for virtualization (MTV) uses the VMware Virtual Disk Development Kit (VDDK) SDK to accelerate transferring virtual disks from VMware vSphere. Therefore, creating a VDDK image, although optional, is highly recommended. Using MTV without VDDK is not recommended and could result in significantly lower migration speeds</2><3></3><4>To accelerate migration and reduce the risk of a plan failing, it is strongly recommended to create a VDDK init image. Learn more about <2>Creating a VDDK image</2>.</4>": "<0>VMware Virtual Disk Development Kit (VDDK) image.</0><1></1><2>The migration toolkit for virtualization (MTV) uses the VMware Virtual Disk Development Kit (VDDK) SDK to accelerate transferring virtual disks from VMware vSphere. Therefore, creating a VDDK image, although optional, is highly recommended. Using MTV without VDDK is not recommended and could result in significantly lower migration speeds</2><3></3><4>To accelerate migration and reduce the risk of a plan failing, it is strongly recommended to create a VDDK init image. Learn more about <2>Creating a VDDK image</2>.</4>",
"<0>Warning:</0> This might cause impact on your VMs. A feature might not be migrated and will need to be re-configured after migration.": "<0>Warning:</0> This might cause impact on your VMs. A feature might not be migrated and will need to be re-configured after migration.",
"1. Add source and target providers for the migration.": "1. Add source and target providers for the migration.",
"2. Map source datastores, storage domains, volume types, storage classes and networks to their respective target storage classes and networks.": "2. Map source datastores, storage domains, volume types, storage classes and networks to their respective target storage classes and networks.",
"3. Create a migration plan and select VMs from the source provider for migration.": "3. Create a migration plan and select VMs from the source provider for migration.",
"4. Run the migration plan.": "4. Run the migration plan.",
"A CA certificate to be trusted when connecting to Openshift API endpoint. Ensure the CA certificate format is in a PEM encoded X.509 format.": "A CA certificate to be trusted when connecting to Openshift API endpoint. Ensure the CA certificate format is in a PEM encoded X.509 format.",
"A CA certificate to be trusted when connecting to Openshift API endpoint. Ensure the CA certificate format is in a PEM encoded X.509 format. To use a CA certificate, drag the file to the text box or browse for it. To use the system CA certificate, leave the field empty.": "A CA certificate to be trusted when connecting to Openshift API endpoint. Ensure the CA certificate format is in a PEM encoded X.509 format. To use a CA certificate, drag the file to the text box or browse for it. To use the system CA certificate, leave the field empty.",
"A CA certificate to be trusted when connecting to the API endpoint. Ensure the CA certificate format is in a PEM encoded X.509 format. To use a CA certificate, drag the file to the text box or browse for it. To use the system CA certificate, leave the field empty.": "A CA certificate to be trusted when connecting to the API endpoint. Ensure the CA certificate format is in a PEM encoded X.509 format. To use a CA certificate, drag the file to the text box or browse for it. To use the system CA certificate, leave the field empty.",
"A CA certificate to be trusted when connecting to the ESXi API endpoint. Ensure the CA certificate format is in a PEM encoded X.509 format. To use a CA certificate, drag the file to the text box or browse for it. To use the system CA certificate, leave the field empty.": "A CA certificate to be trusted when connecting to the ESXi API endpoint. Ensure the CA certificate format is in a PEM encoded X.509 format. To use a CA certificate, drag the file to the text box or browse for it. To use the system CA certificate, leave the field empty.",
"A CA certificate to be trusted when connecting to the Hyper-V host. Ensure the CA certificate format is in a PEM encoded X.509 format. To use a CA certificate, drag the file to the text box or browse for it. To use the system CA certificate, leave the field empty.": "A CA certificate to be trusted when connecting to the Hyper-V host. Ensure the CA certificate format is in a PEM encoded X.509 format. To use a CA certificate, drag the file to the text box or browse for it. To use the system CA certificate, leave the field empty.",
"A CA certificate to be trusted when connecting to the OpenStack Identity (Keystone) endpoint. Ensure the CA certificate format is valid. To use a CA certificate, drag the file to the text box or browse for it. To use the system CA certificate, leave the field empty.": "A CA certificate to be trusted when connecting to the OpenStack Identity (Keystone) endpoint. Ensure the CA certificate format is valid. To use a CA certificate, drag the file to the text box or browse for it. To use the system CA certificate, leave the field empty.",
"A CA certificate to be trusted when connecting to the Red Hat Virtualization Manager (RHVM) API endpoint. Ensure the CA certificate format is in a PEM encoded X.509 format. To use a CA certificate, drag the file to the text box or browse for it. To use the system CA certificate, leave the field empty.": "A CA certificate to be trusted when connecting to the Red Hat Virtualization Manager (RHVM) API endpoint. Ensure the CA certificate format is in a PEM encoded X.509 format. To use a CA certificate, drag the file to the text box or browse for it. To use the system CA certificate, leave the field empty.",
"A CA certificate to be trusted when connecting to the vCenter API endpoint. Ensure the CA certificate format is in a PEM encoded X.509 format. To use a CA certificate, drag the file to the text box or browse for it. To use the system CA certificate, leave the field empty.": "A CA certificate to be trusted when connecting to the vCenter API endpoint. Ensure the CA certificate format is in a PEM encoded X.509 format. To use a CA certificate, drag the file to the text box or browse for it. To use the system CA certificate, leave the field empty.",
"A cold migration moves a shut-down virtual machine between hosts.": "A cold migration moves a shut-down virtual machine between hosts.",
"A cold migration moves a shut-down VM between hosts.": "A cold migration moves a shut-down VM between hosts.",
"A cold migration moves a shutdown VM between hosts.<1></1><2></2>Use a cold migration if:<4></4><5></5>": "A cold migration moves a shutdown VM between hosts.<1></1><2></2>Use a cold migration if:<4></4><5></5>",
"A common reason VMs do not function properly, even after a successful migration, is that the name of the VM does not meet the specified or required standards. It might be that it uses a special character that is not allowed, exceeds the character limit, or is different than the name of its files or folder on the datastore. You’ll need to rename the VM.": "A common reason VMs do not function properly, even after a successful migration, is that the name of the VM does not meet the specified or required standards. It might be that it uses a special character that is not allowed, exceeds the character limit, or is different than the name of its files or folder on the datastore. You’ll need to rename the VM.",
"A configuration that defines how the networks from your source platform (VMware vSphere, Red Hat Virtualization, OpenStack, or OVA files) will connect to the networks in OpenShift Virtualization.": "A configuration that defines how the networks from your source platform (VMware vSphere, Red Hat Virtualization, OpenStack, or OVA files) will connect to the networks in OpenShift Virtualization.",
"A configuration that defines how the storage resources from your source platform (VMware vSphere, Red Hat Virtualization, OpenStack, or OVA files) will connect to the storage resources in OpenShift Virtualization.": "A configuration that defines how the storage resources from your source platform (VMware vSphere, Red Hat Virtualization, OpenStack, or OVA files) will connect to the storage resources in OpenShift Virtualization.",
"A group of hosts running Linux containers; it is made of 2 parts: the control plane and the compute machines (nodes).": "A group of hosts running Linux containers; it is made of 2 parts: the control plane and the compute machines (nodes).",
"A list of passphrases for the Linux Unified Key Setup (LUKS)-encrypted devices for the VMs that you want to migrate. For each LUKS-encrypted device, Migration Toolkit for Virtualization (MTV) tries each passphrase until one unlocks the device.": "A list of passphrases for the Linux Unified Key Setup (LUKS)-encrypted devices for the VMs that you want to migrate. For each LUKS-encrypted device, Migration Toolkit for Virtualization (MTV) tries each passphrase until one unlocks the device.",
"A live migration moves an active VM between hosts with zero downtime.": "A live migration moves an active VM between hosts with zero downtime.",
"A mechanism that triggers an Ansible automation based on a specific event or point in a workflow.": "A mechanism that triggers an Ansible automation based on a specific event or point in a workflow.",
"A migration plan is a strategy for moving VMs from 1 environment to OpenShift Virtualization. It lets you group VMs to be migrated together or with the same migration configuration.": "A migration plan is a strategy for moving VMs from 1 environment to OpenShift Virtualization. It lets you group VMs to be migrated together or with the same migration configuration.",
"A network map is a configuration that defines how the networks from your source platform (VMware vSphere, Red Hat Virtualization, OpenStack, or OVA files) will connect to the networks in OpenShift Virtualization. You can use an existing network map, or create a new one.": "A network map is a configuration that defines how the networks from your source platform (VMware vSphere, Red Hat Virtualization, OpenStack, or OVA files) will connect to the networks in OpenShift Virtualization. You can use an existing network map, or create a new one.",
"A new name will automatically be assigned to a VM that does not comply with the rules.": "A new name will automatically be assigned to a VM that does not comply with the rules.",
"A password for connecting to the Hyper-V host.": "A password for connecting to the Hyper-V host.",
"A project is a way to organize clusters into virtual sub-clusters. They can be helpful when different teams share a Kubernetes cluster. Namespace is a Kubernetes term, but it is also called a project in OpenShift.": "A project is a way to organize clusters into virtual sub-clusters. They can be helpful when different teams share a Kubernetes cluster. Namespace is a Kubernetes term, but it is also called a project in OpenShift.",
"A Project name must consist of lower case alphanumeric characters or '-', and must start\n and end with an alphanumeric character (e.g. 'my-name' or '123-abc').": "A Project name must consist of lower case alphanumeric characters or '-', and must start\n and end with an alphanumeric character (e.g. 'my-name' or '123-abc').",
"A project, also known as a namespace, separates resources within clusters. It is an alternative representation of a Kubernetes namespace.": "A project, also known as a namespace, separates resources within clusters. It is an alternative representation of a Kubernetes namespace.",
"A provider named {{name}} already exists in the system": "A provider named {{name}} already exists in the system",
"A Secret containing credentials and other confidential information.": "A Secret containing credentials and other confidential information.",
"A service account token used for authenticating the connection to the API server.": "A service account token used for authenticating the connection to the API server.",
"A service account token with cluster admin privileges, required for authenticating the connection to the API server.": "A service account token with cluster admin privileges, required for authenticating the connection to the API server.",
"A storage map is a configuration that defines how the storage resources from your source platform (VMware vSphere, Red Hat Virtualization, OpenStack, or OVA files) will connect to the storage resources in OpenShift. Virtualization. You can use an existing storage map, or create a new one.": "A storage map is a configuration that defines how the storage resources from your source platform (VMware vSphere, Red Hat Virtualization, OpenStack, or OVA files) will connect to the storage resources in OpenShift. Virtualization. You can use an existing storage map, or create a new one.",
"A unit of software that holds together all the components and functionalities needed for an application to run.": "A unit of software that holds together all the components and functionalities needed for an application to run.",
"A user ID for connecting to the OpenStack Identity (Keystone) endpoint.": "A user ID for connecting to the OpenStack Identity (Keystone) endpoint.",
"A user ID for connecting to the OpenStack Identity (Keystone) endpoint. [required]": "A user ID for connecting to the OpenStack Identity (Keystone) endpoint. [required]",
"A user password for connecting to the ESXi API endpoint.": "A user password for connecting to the ESXi API endpoint.",
"A user password for connecting to the OpenStack Identity (Keystone) endpoint.": "A user password for connecting to the OpenStack Identity (Keystone) endpoint.",
"A user password for connecting to the OpenStack Identity (Keystone) endpoint. [required]": "A user password for connecting to the OpenStack Identity (Keystone) endpoint. [required]",
"A user password for connecting to the Red Hat Virtualization Manager (RHVM) API endpoint.": "A user password for connecting to the Red Hat Virtualization Manager (RHVM) API endpoint.",
"A user password for connecting to the vCenter API endpoint. [required]": "A user password for connecting to the vCenter API endpoint. [required]",
"A username and domain for connecting to the ESXi API endpoint. For example: <2>user</2>.": "A username and domain for connecting to the ESXi API endpoint. For example: <2>user</2>.",
"A username for connecting to the Hyper-V host. For example: DOMAIN\\username or username.": "A username for connecting to the Hyper-V host. For example: DOMAIN\\username or username.",
"A username for connecting to the OpenStack Identity (Keystone) endpoint.": "A username for connecting to the OpenStack Identity (Keystone) endpoint.",
"A username for connecting to the OpenStack Identity (Keystone) endpoint. [required]": "A username for connecting to the OpenStack Identity (Keystone) endpoint. [required]",
"A username for connecting to the Red Hat Virtualization Manager (RHVM) API endpoint, for example: name@internal": "A username for connecting to the Red Hat Virtualization Manager (RHVM) API endpoint, for example: name@internal",
"A username for connecting to the Red Hat Virtualization Manager (RHVM) API endpoint. Ensure the username is in the format of username@user-domain. For example: admin@internal.": "A username for connecting to the Red Hat Virtualization Manager (RHVM) API endpoint. Ensure the username is in the format of username@user-domain. For example: admin@internal.",
"A username for connecting to the vCenter API endpoint. Ensure the username includes the user domain. For example: <1>user@vsphere.local</1>.": "A username for connecting to the vCenter API endpoint. Ensure the username includes the user domain. For example: <1>user@vsphere.local</1>.",
"A virtual or bare-metal machine in a Kubernetes cluster.": "A virtual or bare-metal machine in a Kubernetes cluster.",
"A VM can support up to 28 CBT snapshots. If the source VM has too many CBT snapshots and the Migration Controller service is not able to create a new snapshot, warm migration might fail. The Migration Controller service deletes each snapshot when the snapshot is no longer required.": "A VM can support up to 28 CBT snapshots. If the source VM has too many CBT snapshots and the Migration Controller service is not able to create a new snapshot, warm migration might fail. The Migration Controller service deletes each snapshot when the snapshot is no longer required.",
"A warm migration moves an active VM between hosts with minimal downtime. This is not live migration. A warm migration can only be used when migrating from VMware or Red Hat Virtualization.": "A warm migration moves an active VM between hosts with minimal downtime. This is not live migration. A warm migration can only be used when migrating from VMware or Red Hat Virtualization.",
"A warm migration moves an active VM between hosts with minimal downtime. This is not live migration. Must have Change Block Tracking (CBT) enabled. A warm migration can only be used when migrating from VMware or Red Hat Virtualization<1></1><2></2>Use a warm migration (only from VMware or Red Hat Virtualization) if:<4></4><5></5>": "A warm migration moves an active VM between hosts with minimal downtime. This is not live migration. Must have Change Block Tracking (CBT) enabled. A warm migration can only be used when migrating from VMware or Red Hat Virtualization<1></1><2></2>Use a warm migration (only from VMware or Red Hat Virtualization) if:<4></4><5></5>",
"A warm migration moves an active VM with minimal downtime (not zero-downtime).": "A warm migration moves an active VM with minimal downtime (not zero-downtime).",
"A way to organize clusters into virtual sub-clusters. They can be helpful when different teams share a Kubernetes cluster. Namespace is a Kubernetes term, but it is also called a Project in OpenShift.": "A way to organize clusters into virtual sub-clusters. They can be helpful when different teams share a Kubernetes cluster. Namespace is a Kubernetes term, but it is also called a Project in OpenShift.",
"Accelerate your VM migrations with expert recommendations.": "Accelerate your VM migrations with expert recommendations.",
"Access modes": "Access modes",
"Actions": "Actions",
"Add affinity rule": "Add affinity rule",
"Add expression": "Add expression",
"Add field": "Add field",
"Add hooks": "Add hooks",
"Add Label": "Add Label",
"Add Label to specify qualifying nodes": "Add Label to specify qualifying nodes",
"Add mapping": "Add mapping",
"Add passphrase": "Add passphrase",
"Additional setup": "Additional setup",
"Affinity rules": "Affinity rules",
"Affinity rules allows you to specify hard-and soft-affinity for virtual machines. It is possible to write matching rules against workloads (virtual machines and Pods) and Nodes.": "Affinity rules allows you to specify hard-and soft-affinity for virtual machines. It is possible to write matching rules against workloads (virtual machines and Pods) and Nodes.",
"All": "All",
"All networks detected on the selected VMs require a mapping.": "All networks detected on the selected VMs require a mapping.",
"All past migration runs for this plan. This includes both successful and failed attempts, but detailed logs and other data are not available after the migration pods are deleted. If you retry an incomplete migration, only the failed VMs will migrate again.": "All past migration runs for this plan. This includes both successful and failed attempts, but detailed logs and other data are not available after the migration pods are deleted. If you retry an incomplete migration, only the failed VMs will migrate again.",
"All storages detected on the selected VMs require a mapping.": "All storages detected on the selected VMs require a mapping.",
"All virtual machines planned for migration are selected for deletion, deleting all virtual machines from a migration plan is not allowed.": "All virtual machines planned for migration are selected for deletion, deleting all virtual machines from a migration plan is not allowed.",
"All VMs were migrated": "All VMs were migrated",
"An error occurred": "An error occurred",
"An error occurred. Please try again.": "An error occurred. Please try again.",
"An open-source container orchestration platform that automates many of the manual processes involved in deploying, managing, and scaling containerized applications.": "An open-source container orchestration platform that automates many of the manual processes involved in deploying, managing, and scaling containerized applications.",
"Ansible playbook": "Ansible playbook",
"Ansible playbook. If you specify a playbook, the image must be hook-runner.": "Ansible playbook. If you specify a playbook, the image must be hook-runner.",
"Any underscore (_) is changed to a dash (-).": "Any underscore (_) is changed to a dash (-).",
"API endpoint URL": "API endpoint URL",
"Appliance management": "Appliance management",
"Application credential ID": "Application credential ID",
"Application credential ID:": "Application credential ID:",
"Application credential name": "Application credential name",
"Application credential name:": "Application credential name:",
"Application credential secret": "Application credential secret",
"Application credential Secret": "Application credential Secret",
"Apply rules": "Apply rules",
"Archive": "Archive",
"Archive migration plan": "Archive migration plan",
"archived": "archived",
"Archived": "Archived",
"Archived plans cannot be edited": "Archived plans cannot be edited",
"Archived plans cannot be started": "Archived plans cannot be started",
"Are you sure you want to delete <1>{name}</1> in project <3>{namespace}</3>?": "Are you sure you want to delete <1>{name}</1> in project <3>{namespace}</3>?",
"Are you sure you want to delete <1>{name}</1> in{namespace && (\n <>\n {' '}\n project <strong>{namespace}</strong>\n </>\n )}?": "Are you sure you want to delete <1>{name}</1> in{namespace && (\n <>\n {' '}\n project <strong>{namespace}</strong>\n </>\n )}?",
"Are you sure you want to delete <1>{name}</1>?": "Are you sure you want to delete <1>{name}</1>?",
"Area chart with VM migration history": "Area chart with VM migration history",
"Ask AI assistant": "Ask AI assistant",
"Assessment": "Assessment",
"At least one network mapping is required.": "At least one network mapping is required.",
"At least one network mapping must be provided.": "At least one network mapping must be provided.",
"At least one row must have both source and target storages": "At least one row must have both source and target storages",
"At least one source and one target provider in the {{name}} project must be available.": "At least one source and one target provider in the {{name}} project must be available.",
"At least one source and one target provider must be available.": "At least one source and one target provider must be available.",
"At least one storage mapping must be provided.": "At least one storage mapping must be provided.",
"At least one VM is detected with more than one interface mapped to Default Network. This is not allowed.": "At least one VM is detected with more than one interface mapped to Default Network. This is not allowed.",
"Authentication token for OpenStack": "Authentication token for OpenStack",
"Authentication type": "Authentication type",
"Automatic VM renaming": "Automatic VM renaming",
"Automatically decrypt LUKS-encrypted disks using Tang servers during migration. The Tang servers must be accessible from the OpenShift cluster.": "Automatically decrypt LUKS-encrypted disks using Tang servers during migration. The Tang servers must be accessible from the OpenShift cluster.",
"Back": "Back",
"Bandwidth": "Bandwidth",
"Basic setup": "Basic setup",
"Because the VM is fully shut down, there's no risk of data changes or I/O operations during the migration.": "Because the VM is fully shut down, there's no risk of data changes or I/O operations during the migration.",
"Browse or search for the virtual machines you want to include in this migration plan from the selected source provider.": "Browse or search for the virtual machines you want to include in this migration plan from the selected source provider.",
"Building image": "Building image",
"Building image...": "Building image...",
"By default, vNICs change during migration and static IPs linked to interface names are lost. Enable to preserve static IP configurations.": "By default, vNICs change during migration and static IPs linked to interface names are lost. Enable to preserve static IP configurations.",
"By skipping certificate validation, the migration will be insecure and a certificate is not required.": "By skipping certificate validation, the migration will be insecure and a certificate is not required.",
"CA certificate": "CA certificate",
"CA certificate is required when certificate validation is configured": "CA certificate is required when certificate validation is configured",
"Cancel": "Cancel",
"Cancel virtual machines": "Cancel virtual machines",
"Cancel virtual machines migration?": "Cancel virtual machines migration?",
"canceled": "canceled",
"Canceled": "Canceled",
"Cannot retrieve certificate": "Cannot retrieve certificate",
"cannot start": "cannot start",
"Cannot start": "Cannot start",
"Category": "Category",
"CBT snapshot limit": "CBT snapshot limit",
"Certificate change detected": "Certificate change detected",
"Certificate validation": "Certificate validation",
"Certificate validation method is required": "Certificate validation method is required",
"Certificate validation: Confirm how the connection will be secured. Choose between:": "Certificate validation: Confirm how the connection will be secured. Choose between:",
"Check the migration progress for a high-level overview of your virtual machine (VM) migration. To view the migration progress, go to the <1>VirtualMachines</1> tab on your migration plan's details page.": "Check the migration progress for a high-level overview of your virtual machine (VM) migration. To view the migration progress, go to the <1>VirtualMachines</1> tab on your migration plan's details page.",
"Check the official list of <2>certified guest operating systems</2> for your version of OpenShift Virtualization. If the operating system is not on the list, it may cause migration failures or unexpected behavior after the migration is complete.": "Check the official list of <2>certified guest operating systems</2> for your version of OpenShift Virtualization. If the operating system is not on the list, it may cause migration failures or unexpected behavior after the migration is complete.",
"Check this box only if you cannot or do not want to upload the certificate. This is not recommended for production environments as it leaves the connection susceptible to man-in-the-middle attacks.": "Check this box only if you cannot or do not want to upload the certificate. This is not recommended for production environments as it leaves the connection susceptible to man-in-the-middle attacks.",
"Check this if the SMB share requires different credentials than the Hyper-V server": "Check this if the SMB share requires different credentials than the Hyper-V server",
"Choose a NetworkAttachmentDefinition for data transfer by the main controller pod. If you do not select a NetworkAttachmentDefinition, the default network will be used.": "Choose a NetworkAttachmentDefinition for data transfer by the main controller pod. If you do not select a NetworkAttachmentDefinition, the default network will be used.",
"Choose the OpenShift Virtualization provider.": "Choose the OpenShift Virtualization provider.",
"Choose the project (like openshift-mtv).": "Choose the project (like openshift-mtv).",
"Choose the root filesystem to be converted.": "Choose the root filesystem to be converted.",
"Choose what state you'd like all of the VMs in your plan to be powered to after migration. You can change this setting for specific VMs after plan creation and before starting your migration in the virtual machines tab on the plan page.": "Choose what state you'd like all of the VMs in your plan to be powered to after migration. You can change this setting for specific VMs after plan creation and before starting your migration in the virtual machines tab on the plan page.",
"Choose what state you'd like all of the VMs in your plan to be powered to after migration. You can change this setting for specific VMs in the Virtual machines tab.": "Choose what state you'd like all of the VMs in your plan to be powered to after migration. You can change this setting for specific VMs in the Virtual machines tab.",
"Choose what state you'd like the {{vmName}} VM to be powered to after migration. Changing the target power state will override the plan wide setting for only this VM.": "Choose what state you'd like the {{vmName}} VM to be powered to after migration. Changing the target power state will override the plan wide setting for only this VM.",
"Choose what state you'd like the VMs in your plan to be powered to after migration.": "Choose what state you'd like the VMs in your plan to be powered to after migration.",
"Choose whether to migrate shared disks with your migration.": "Choose whether to migrate shared disks with your migration.",
"Choose which option for the Certificate validation section to confirm how the connection will be secured.": "Choose which option for the Certificate validation section to confirm how the connection will be secured.",
"Choose your Microsoft Hyper-V provider.": "Choose your Microsoft Hyper-V provider.",
"Choose your Open Virtual Appliance provider.": "Choose your Open Virtual Appliance provider.",
"Choose your OpenShift Virtualization provider.": "Choose your OpenShift Virtualization provider.",
"Choose your OpenStack provider.": "Choose your OpenStack provider.",
"Choose your Red Hat Virtualization provider": "Choose your Red Hat Virtualization provider",
"Choose your VMware provider.": "Choose your VMware provider.",
"Choosing the right migration type": "Choosing the right migration type",
"Clear all filters": "Clear all filters",
"Click Create. You can save the mapping for future use.": "Click Create. You can save the mapping for future use.",
"Click on": "Click on",
"Click the pencil for setting provider web UI link": "Click the pencil for setting provider web UI link",
"Click Upload next to VDDK min-image archive and select the archive file from your computer.": "Click Upload next to VDDK min-image archive and select the archive file from your computer.",
"Close": "Close",
"Cloud computing platform that controls large pools of resources": "Cloud computing platform that controls large pools of resources",
"Cluster": "Cluster",
"Clusters": "Clusters",
"Cold": "Cold",
"Cold migration": "Cold migration",
"Cold migration requires the VM to be powered off for the entire duration of the data transfer. This is the simplest and most straightforward method. It's the default migration type in MTV.": "Cold migration requires the VM to be powered off for the entire duration of the data transfer. This is the simplest and most straightforward method. It's the default migration type in MTV.",
"Cold migration:": "Cold migration:",
"Common troubleshooting questions": "Common troubleshooting questions",
"Compare migration types to find the best fit for your needs.": "Compare migration types to find the best fit for your needs.",
"Compatibility mode disabled": "Compatibility mode disabled",
"Compatibility mode enabled": "Compatibility mode enabled",
"Complete": "Complete",
"Complete the fields:": "Complete the fields:",
"completed": "completed",
"Completed ": "Completed ",
"Completed at": "Completed at",
"Concern": "Concern",
"Concern label": "Concern label",
"Concern type": "Concern type",
"Concerns": "Concerns",
"Concerns (severity)": "Concerns (severity)",
"Concerns (type)": "Concerns (type)",
"Condition": "Condition",
"Conditions": "Conditions",
"Conditions not found": "Conditions not found",
"Configure a VDDK image for a more efficient migration by enabling direct, block-level access to a VM's disk data.": "Configure a VDDK image for a more efficient migration by enabling direct, block-level access to a VM's disk data.",
"Configure certificate validation": "Configure certificate validation",
"Configure certificate validation (Recommended):": "Configure certificate validation (Recommended):",
"Configure disk decryption settings including passphrases for LUKS-encrypted devices or network-bound disk encryption (NBDE/Clevis) for the VMs you want to migrate.": "Configure disk decryption settings including passphrases for LUKS-encrypted devices or network-bound disk encryption (NBDE/Clevis) for the VMs you want to migrate.",
"Confirm selections": "Confirm selections",
"Confirm selections with critical issues": "Confirm selections with critical issues",
"Connection Failed": "Connection Failed",
"Considerations": "Considerations",
"Container": "Container",
"Controller inventory container memory limit": "Controller inventory container memory limit",
"Controller main container CPU limit": "Controller main container CPU limit",
"Controller main container memory limit": "Controller main container memory limit",
"Controller transfer network": "Controller transfer network",
"Controls the interval at which a new snapshot is requested prior to initiating a warm migration. The default value is 60 minutes.": "Controls the interval at which a new snapshot is requested prior to initiating a warm migration. The default value is 60 minutes.",
"Conversion migration": "Conversion migration",
"Convertor pod affinity rules": "Convertor pod affinity rules",
"Convertor pod labels": "Convertor pod labels",
"Convertor pod node selector": "Convertor pod node selector",
"Copied": "Copied",
"Copy to clipboard": "Copy to clipboard",
"Core concepts": "Core concepts",
"Cores": "Cores",
"Create": "Create",
"Create a compressed file from the must-gather directory that was just created in your working directory.": "Create a compressed file from the must-gather directory that was just created in your working directory.",
"Create a network map without an owner": "Create a network map without an owner",
"Create a storage map without an owner": "Create a storage map without an owner",
"Create migration plan": "Create migration plan",
"Create network map": "Create network map",
"Create plan": "Create plan",
"Create project": "Create project",
"Create provider": "Create provider",
"Create storage map": "Create storage map",
"Create with form": "Create with form",
"Create with YAML": "Create with YAML",
"Created ": "Created ",
"Created at": "Created at",
"Creating a network mapping": "Creating a network mapping",
"Creating a provider": "Creating a provider",
"Creating a storage mapping": "Creating a storage mapping",
"Creating plan": "Creating plan",
"CreationTimestamp is a timestamp representing the server time when this object was created.\n It is not guaranteed to be set in happens-before order across separate operations.\n Clients may not set this value. It is represented in RFC3339 form and is in UTC.": "CreationTimestamp is a timestamp representing the server time when this object was created.\n It is not guaranteed to be set in happens-before order across separate operations.\n Clients may not set this value. It is represented in RFC3339 form and is in UTC.",
"Credentials": "Credentials",
"Critical": "Critical",
"Critical concerns": "Critical concerns",
"critical concerns impacting your migration plan": "critical concerns impacting your migration plan",
"Critical issues detected in your selected VMs will cause the migration to fail. Resolve these issues or remove the VMs from the plan before starting the migration.": "Critical issues detected in your selected VMs will cause the migration to fail. Resolve these issues or remove the VMs from the plan before starting the migration.",
"Custom name template": "Custom name template",
"Cutover": "Cutover",
"Data centers": "Data centers",
"Data is loading, please wait.": "Data is loading, please wait.",
"Data stores": "Data stores",
"Data verification": "Data verification",
"DataVolumes": "DataVolumes",
"Date range": "Date range",
"Dates are compared in UTC. End of the interval is included.": "Dates are compared in UTC. End of the interval is included.",
"Dedicated CPU": "Dedicated CPU",
"Default": "Default",
"Default name template": "Default name template",
"Default network": "Default network",
"Default transfer network": "Default transfer network",
"Default transfer Network": "Default transfer Network",
"Define an affinity rule. This rule will be added to the list of affinity rules applied to this workload.": "Define an affinity rule. This rule will be added to the list of affinity rules applied to this workload.",
"Define how virtual networks connect in the target environment during migration.": "Define how virtual networks connect in the target environment during migration.",
"Define the connection attributes the migration toolkit for virtualization needs to interact with your source and target providers.": "Define the connection attributes the migration toolkit for virtualization needs to interact with your source and target providers.",
"Define your plan details:": "Define your plan details:",
"Defines the CPU limits allocated to the main container in the controller pod. The default value is 500 milliCPU.": "Defines the CPU limits allocated to the main container in the controller pod. The default value is 500 milliCPU.",
"Delete": "Delete",
"Delete {{model.label}}": "Delete {{model.label}}",
"Delete network map": "Delete network map",
"Delete plan": "Delete plan",
"Delete provider": "Delete provider",
"Delete storage map": "Delete storage map",
"Delete virtual machines": "Delete virtual machines",
"Delete virtual machines from migration plan?": "Delete virtual machines from migration plan?",
"Deleting a migration plan does not remove temporary resources, it is recommended to <2>archive</2> the plan first before deleting it, to remove temporary resources.": "Deleting a migration plan does not remove temporary resources, it is recommended to <2>archive</2> the plan first before deleting it, to remove temporary resources.",
"Deleting all virtual machines from a migration plan is not allowed.": "Deleting all virtual machines from a migration plan is not allowed.",
"Deleting virtual machines from an archived migration plan is not allowed.": "Deleting virtual machines from an archived migration plan is not allowed.",
"Dell PowerFlex": "Dell PowerFlex",
"Dell PowerMax": "Dell PowerMax",
"Dell PowerStore": "Dell PowerStore",
"Description": "Description",
"Deselect critical issue VMs": "Deselect critical issue VMs",
"Details": "Details",
"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.",
"Disabled": "Disabled",
"Disk counter": "Disk counter",
"Disk decryption": "Disk decryption",
"Disk decryption passphrases": "Disk decryption passphrases",
"Disk transfer": "Disk transfer",
"Display name": "Display name",
"Do not migrate shared disks": "Do not migrate shared disks",
"Do not preserve static IPs": "Do not preserve static IPs",
"Documentation": "Documentation",
"Does not exist": "Does not exist",
"Domain": "Domain",
"Donut chart with migration plans statistics": "Donut chart with migration plans statistics",
"Donut chart with VM migration statistics": "Donut chart with VM migration statistics",
"Downtime is acceptable.": "Downtime is acceptable.",
"Drag and drop a file or upload one": "Drag and drop a file or upload one",
"Dual-boot operating system": "Dual-boot operating system",
"Duplicate": "Duplicate",
"Duplicate migration plan": "Duplicate migration plan",
"Dynamic provisioning": "Dynamic provisioning",
"Each row must have both source and target storage selected": "Each row must have both source and target storage selected",
"Easiest Way:": "Easiest Way:",
"Edit": "Edit",
"Edit {{hookTypeLowercase}} migration hook": "Edit {{hookTypeLowercase}} migration hook",
"Edit affinity rule": "Edit affinity rule",
"Edit Ansible hook configuration for your migration plan. Hooks are applied to all virtual machines in the plan.": "Edit Ansible hook configuration for your migration plan. Hooks are applied to all virtual machines in the plan.",
"Edit appliance management": "Edit appliance management",
"Edit convertor pod affinity rules": "Edit convertor pod affinity rules",
"Edit convertor pod labels": "Edit convertor pod labels",
"Edit convertor pod node selector": "Edit convertor pod node selector",
"Edit cutover": "Edit cutover",
"Edit default transfer network": "Edit default transfer network",
"Edit description": "Edit description",
"Edit labels": "Edit labels",
"Edit migration plan target project": "Edit migration plan target project",
"Edit migration plan transfer network": "Edit migration plan transfer network",
"Edit network map": "Edit network map",
"Edit network name template": "Edit network name template",
"Edit node selectors": "Edit node selectors",
"Edit provider": "Edit provider",
"Edit provider credentials": "Edit provider credentials",
"Edit provider credentials.\n Use this link to edit the providers credentials instead of editing the secret directly.": "Edit provider credentials.\n Use this link to edit the providers credentials instead of editing the secret directly.",
"Edit provider web UI link": "Edit provider web UI link",
"Edit providers": "Edit providers",
"Edit PVC name template": "Edit PVC name template",
"Edit root device": "Edit root device",
"Edit settings": "Edit settings",
"Edit step": "Edit step",
"Edit storage map": "Edit storage map",
"Edit target name": "Edit target name",
"Edit target power state": "Edit target power state",
"Edit URL": "Edit URL",
"Edit VDDK image": "Edit VDDK image",
"Edit VM target affinity rules": "Edit VM target affinity rules",
"Edit VM target labels": "Edit VM target labels",
"Edit VM target node selector": "Edit VM target node selector",
"Edit volume name template": "Edit volume name template",
"Empty": "Empty",
"Enable {{hookTypeLowercase}} migration hook": "Enable {{hookTypeLowercase}} migration hook",
"Enable appliance management for local OVA file uploads": "Enable appliance management for local OVA file uploads",
"Enabled": "Enabled",
"Enables hardware-assisted copying by instructing the vSphere ESXi host to transfer data directly on the storage backend using technologies like XCOPY and VAAI.": "Enables hardware-assisted copying by instructing the vSphere ESXi host to transfer data directly on the storage backend using technologies like XCOPY and VAAI.",
"Endpoint": "Endpoint",
"Ensure providers are connected": "Ensure providers are connected",
"Ensure that both source and target providers are correctly added.": "Ensure that both source and target providers are correctly added.",
"Ensure that both source and target providers are correctly added. Without the source and target providers properly connected and configured, MTV cannot see the networks on either side to map them.": "Ensure that both source and target providers are correctly added. Without the source and target providers properly connected and configured, MTV cannot see the networks on either side to map them.",
"Ensure the network path between your source environment (e.g., ESXi hosts) and the OpenShift cluster is maximized for throughput. When adding your VMware source provider in MTV, select a dedicated migration network, then map the migration to a dedicated, high-throughput network (e.g., 10GbE) that is separate from your production traffic. Adjust concurrency limits. In the MTV settings, fine-tune the maximum number of concurrent migrations (controller_max_vm_inflight) and the concurrent disk transfers per ESXi host to match your network and storage capacity.": "Ensure the network path between your source environment (e.g., ESXi hosts) and the OpenShift cluster is maximized for throughput. When adding your VMware source provider in MTV, select a dedicated migration network, then map the migration to a dedicated, high-throughput network (e.g., 10GbE) that is separate from your production traffic. Adjust concurrency limits. In the MTV settings, fine-tune the maximum number of concurrent migrations (controller_max_vm_inflight) and the concurrent disk transfers per ESXi host to match your network and storage capacity.",
"Enter a unique and descriptive name for your migration plan (e.g., \"VMware to OpenShift_Prod_AppX\").": "Enter a unique and descriptive name for your migration plan (e.g., \"VMware to OpenShift_Prod_AppX\").",
"Enter key": "Enter key",
"Enter the application credential ID and the secret.": "Enter the application credential ID and the secret.",
"Enter the application credential name and the secret.": "Enter the application credential name and the secret.",
"Enter the authentication token and the user ID.": "Enter the authentication token and the user ID.",
"Enter the authentication token and the username.": "Enter the authentication token and the username.",
"Enter the credentials (username and password) for accessing the SMB share. The username can include a domain, for example: DOMAIN\\username": "Enter the credentials (username and password) for accessing the SMB share. The username can include a domain, for example: DOMAIN\\username",
"Enter the full API endpoint URL for the OpenShift cluster you are connecting to. Remember to include the port, like https://example.com:6443.": "Enter the full API endpoint URL for the OpenShift cluster you are connecting to. Remember to include the port, like https://example.com:6443.",
"Enter the full URL for the OpenStack Identity service (Keystone) API endpoint. This is how OpenShift will connect to your OpenStack environment. For example, https://identity.service.com:5000/v3": "Enter the full URL for the OpenStack Identity service (Keystone) API endpoint. This is how OpenShift will connect to your OpenStack environment. For example, https://identity.service.com:5000/v3",
"Enter the full URL for the RHV Manager's API engine. This is the URL the Migration Toolkit will use to interact with the RHV environment. For example, https://rhv-host-example.com/ovirt-engine/api": "Enter the full URL for the RHV Manager's API engine. This is the URL the Migration Toolkit will use to interact with the RHV environment. For example, https://rhv-host-example.com/ovirt-engine/api",
"Enter the interval in minutes for precopy. If empty, the default value will be used.": "Enter the interval in minutes for precopy. If empty, the default value will be used.",
"Enter the interval in seconds for snapshot pooling. If empty, the default value will be used.": "Enter the interval in seconds for snapshot pooling. If empty, the default value will be used.",
"Enter the limit for CPU usage by the controller in milliCPU. If empty, the default value will be used.": "Enter the limit for CPU usage by the controller in milliCPU. If empty, the default value will be used.",
"Enter the limit for memory usage by the controller in Mi. If empty, the default value will be used.": "Enter the limit for memory usage by the controller in Mi. If empty, the default value will be used.",
"Enter the limit for memory usage by the inventory container in Mi. If empty, the default value will be used.": "Enter the limit for memory usage by the inventory container in Mi. If empty, the default value will be used.",
"Enter the maximum number of concurrent VM migrations. If empty, the default value will be used.": "Enter the maximum number of concurrent VM migrations. If empty, the default value will be used.",
"Enter the name you would like the <1>{vm.name}</1> VM to have after migration.": "Enter the name you would like the <1>{vm.name}</1> VM to have after migration.",
"Enter the network file system (NFS) shared directory, following the format: the server IP address or hostname followed by the exported directory path. For example, 10.0.10.10:/ova": "Enter the network file system (NFS) shared directory, following the format: the server IP address or hostname followed by the exported directory path. For example, 10.0.10.10:/ova",
"Enter the SMB shared directory containing the exported Hyper-V VMs. For example, //server/share or \\server\\share": "Enter the SMB shared directory containing the exported Hyper-V VMs. For example, //server/share or \\server\\share",
"Enter the username and password of the account to use to connect to the RHV Manager. This is typically an administrative or service account.": "Enter the username and password of the account to use to connect to the RHV Manager. This is typically an administrative or service account.",
"Enter the username, password, Region where your source VMs reside, project that the migration will take place (for example, migration-project), and OpenStack domain name (for example, Default).": "Enter the username, password, Region where your source VMs reside, project that the migration will take place (for example, migration-project), and OpenStack domain name (for example, Default).",
"Enter value": "Enter value",
"Enter your vCenter username and password.": "Enter your vCenter username and password.",
"Enter your vCenter's address into the vCenter API endpoint URL field (it should start with https://).": "Enter your vCenter's address into the vCenter API endpoint URL field (it should start with https://).",
"Error": "Error",
"Error creating network map": "Error creating network map",
"Error creating provider": "Error creating provider",
"Error creating storage map": "Error creating storage map",
"Error details": "Error details",
"ESXi": "ESXi",
"ESXi host admin password": "ESXi host admin password",
"ESXi host admin username": "ESXi host admin username",
"ESXi hosts": "ESXi hosts",
"Even with warm migration, there is a brief period of downtime when the VM is shut down to perform the final data synchronization and bring it up on the new platform. You can schedule this cutover for a time with the least impact.": "Even with warm migration, there is a brief period of downtime when the VM is shut down to perform the final data synchronization and bring it up on the new platform. You can schedule this cutover for a time with the least impact.",
"Examples:": "Examples:",
"Excluded characters are removed.": "Excluded characters are removed.",
"executing": "executing",
"Existing network map options are limited to those without an owner reference. Upon creation of this plan, a new network map will be created with this plan as its owner.": "Existing network map options are limited to those without an owner reference. Upon creation of this plan, a new network map will be created with this plan as its owner.",
"Existing storage map options are limited to those without an owner reference. Upon creation of this plan, a new storage map will be created with this plan as its owner.": "Existing storage map options are limited to those without an owner reference. Upon creation of this plan, a new storage map will be created with this plan as its owner.",
"Exists": "Exists",
"Expand folders to show VMs on the current page, then you can select them.": "Expand folders to show VMs on the current page, then you can select them.",
"Expiration date": "Expiration date",
"EXT4 file system": "EXT4 file system",
"External links": "External links",
"External web UI link": "External web UI link",
"Extra large precopy interval": "Extra large precopy interval",
"Extra long snapshot polling interval": "Extra long snapshot polling interval",
"Extra short snapshot polling interval": "Extra short snapshot polling interval",
"Extra small precopy interval": "Extra small precopy interval",
"failed": "failed",
"Failed": "Failed",
"Failed to create plan": "Failed to create plan",
"False": "False",
"Features": "Features",
"Fetch certificate from URL": "Fetch certificate from URL",
"Field selectors let you select Nodes based on the value of one or more resource fields.": "Field selectors let you select Nodes based on the value of one or more resource fields.",
"File uploaded": "File uploaded",
"Filesystem volume mode: Slower but generally more flexible. If your OpenShift storage does not support dynamic provisioning, MTV might default to this mode with ReadWriteOnce access. Block volume mode: Generally faster and preferred for performance-sensitive workloads.": "Filesystem volume mode: Slower but generally more flexible. If your OpenShift storage does not support dynamic provisioning, MTV might default to this mode with ReadWriteOnce access. Block volume mode: Generally faster and preferred for performance-sensitive workloads.",
"Fill in the fields for the Provider credentials section:": "Fill in the fields for the Provider credentials section:",
"Fill in the fields for the Provider credentials section.": "Fill in the fields for the Provider credentials section.",
"Fill in the fields for the Provider details section:": "Fill in the fields for the Provider details section:",
"Filter": "Filter",
"Filter by {{activeFilterLabel}}": "Filter by {{activeFilterLabel}}",
"Filter by cluster": "Filter by cluster",
"Filter by concerns (severity)": "Filter by concerns (severity)",
"Filter by concerns (type)": "Filter by concerns (type)",
"Filter by critical concerns": "Filter by critical concerns",
"Filter by description": "Filter by description",
"Filter by endpoint": "Filter by endpoint",
"Filter by features": "Filter by features",
"Filter by flavor": "Filter by flavor",
"Filter by host": "Filter by host",
"Filter by image": "Filter by image",
"Filter by migration": "Filter by migration",
"Filter by name": "Filter by name",
"Filter by namespace": "Filter by namespace",
"Filter by network": "Filter by network",
"Filter by path": "Filter by path",
"Filter by plan": "Filter by plan",
"Filter by project": "Filter by project",
"Filter by source": "Filter by source",
"Filter by status": "Filter by status",
"Filter by target": "Filter by target",
"Filter by template": "Filter by template",
"Filter by tenant": "Filter by tenant",
"First root device": "First root device",
"Flavor": "Flavor",
"Folder name": "Folder name",
"For applications that need to be available 24/7, warm migration is the preferred choice to ensure business continuity.": "For applications that need to be available 24/7, warm migration is the preferred choice to ensure business continuity.",
"For cold migrations or specific scenarios, you might have options to verify data copy (e.g., using checksums), though this can impact migration performance.": "For cold migrations or specific scenarios, you might have options to verify data copy (e.g., using checksums), though this can impact migration performance.",
"For each LUKS-encrypted device, migration toolkit for virtualization (MTV) tries each passphrase until one unlocks the device.": "For each LUKS-encrypted device, migration toolkit for virtualization (MTV) tries each passphrase until one unlocks the device.",
"For example: 10.10.0.10:/ova": "For example: 10.10.0.10:/ova",
"For example: https://host-example.com/sdk.": "For example: https://host-example.com/sdk.",
"For VMs used for development, testing, or other non-essential tasks, the downtime is unlikely to have a major business impact.": "For VMs used for development, testing, or other non-essential tasks, the downtime is unlikely to have a major business impact.",
"Forklift controller logs": "Forklift controller logs",
"Forklift controller logs capture Migration Toolkit for Virtualization (MTV) related events.": "Forklift controller logs capture Migration Toolkit for Virtualization (MTV) related events.",
"Forklift controller YAML": "Forklift controller YAML",
"Frequently asked questions": "Frequently asked questions",
"General": "General",
"Get quick answers to common problems.": "Get quick answers to common problems.",
"Get support": "Get support",
"Give your provider a resource name (something simple like my-vcenter).": "Give your provider a resource name (something simple like my-vcenter).",
"Give your provider a unique resource name. For example, hyperv-data-center-1.": "Give your provider a unique resource name. For example, hyperv-data-center-1.",
"Give your provider a unique resource name. For example, openstack-data-center-1.": "Give your provider a unique resource name. For example, openstack-data-center-1.",
"Give your provider a unique resource name. For example, ova-data-center-1.": "Give your provider a unique resource name. For example, ova-data-center-1.",
"Give your provider a unique resource name. For example, rhv-data-center-1.": "Give your provider a unique resource name. For example, rhv-data-center-1.",
"Give your provider a unique resource name. For example, target-ocp-cluster.": "Give your provider a unique resource name. For example, target-ocp-cluster.",
"Go back to review step": "Go back to review step",
"Go to": "Go to",
"Go to the providers list page": "Go to the providers list page",
"GPUs/Host Devices": "GPUs/Host Devices",
"Group by plan": "Group by plan",
"Guest conversion mode": "Guest conversion mode",
"Guest conversion uses the virt-v2v tool to modify all of the internal configurations of the VMs in the plan to make them compatible with Red Hat OpenShift Virtualization.": "Guest conversion uses the virt-v2v tool to modify all of the internal configurations of the VMs in the plan to make them compatible with Red Hat OpenShift Virtualization.",
"Health": "Health",
"Health indicates the current status of the pods related to the migration toolkit for virtualization, including whether any have failed. For more details, refer to the logs.": "Health indicates the current status of the pods related to the migration toolkit for virtualization, including whether any have failed. For more details, refer to the logs.",
"Hide values": "Hide values",
"Hide variables": "Hide variables",
"High CPU limit": "High CPU limit",
"High memory limit": "High memory limit",
"History": "History",
"Hitachi Vantara": "Hitachi Vantara",
"Holds the authentication credentials for your storage provider, allowing the offload plugin to securely connect to and control your storage hardware's API (for example, Hitachi Vantara or NetApp ONTAP).": "Holds the authentication credentials for your storage provider, allowing the offload plugin to securely connect to and control your storage hardware's API (for example, Hitachi Vantara or NetApp ONTAP).",
"Hook": "Hook",
"Hook runner image": "Hook runner image",
"Hook runner image is required.": "Hook runner image is required.",
"Hooks": "Hooks",
"Hooks (optional)": "Hooks (optional)",
"Hooks are Ansible playbooks that run at specific stages of the migration process. They are designed to automate manual steps that you would otherwise have to perform on the VM guest operating system. If you want to add a hook, check the box and then upload your existing Ansible playbook file.": "Hooks are Ansible playbooks that run at specific stages of the migration process. They are designed to automate manual steps that you would otherwise have to perform on the VM guest operating system. If you want to add a hook, check the box and then upload your existing Ansible playbook file.",
"Hooks are applied to all virtual machines in the plan.": "Hooks are applied to all virtual machines in the plan.",
"Hooks are contained in Ansible playbooks that can be run before or after the migration.": "Hooks are contained in Ansible playbooks that can be run before or after the migration.",
"Hooks are contained in Ansible playbooks that can be run before or after the migration. Hooks are applied to all virtual machines in the plan.": "Hooks are contained in Ansible playbooks that can be run before or after the migration. Hooks are applied to all virtual machines in the plan.",
"Host": "Host",
"Host cluster": "Host cluster",
"Hosts": "Hosts",
"How do I check network mapping for a failed migration?": "How do I check network mapping for a failed migration?",
"HPE Primera/3PAR": "HPE Primera/3PAR",
"Hyper-V host": "Hyper-V host",
"Hyper-V host is required": "Hyper-V host is required",
"I trust the authenticity of this certificate": "I trust the authenticity of this certificate",
"IBM FlashSystem": "IBM FlashSystem",
"Ideally, your OpenShift storage should support dynamic provisioning, where Persistent Volumes are automatically created when a PersistentVolumeClaim is made. If not, you might need to manually provision PVs or adjust MTV settings.": "Ideally, your OpenShift storage should support dynamic provisioning, where Persistent Volumes are automatically created when a PersistentVolumeClaim is made. If not, you might need to manually provision PVs or adjust MTV settings.",
"If a source VM uses multiple network interfaces connected to different networks, you must ensure that each of these source networks is mapped to an appropriate target network (NAD) in OpenShift.": "If a source VM uses multiple network interfaces connected to different networks, you must ensure that each of these source networks is mapped to an appropriate target network (NAD) in OpenShift.",
"If everything looks correct, click \"Create\" to finalize the migration plan. This will only create the plan, not run it. The plan will be saved in the migration plan list.": "If everything looks correct, click \"Create\" to finalize the migration plan. This will only create the plan, not run it. The plan will be saved in the migration plan list.",
"If none of these steps helped, you can reach out to <2>support</2> to get answers any time.": "If none of these steps helped, you can reach out to <2>support</2> to get answers any time.",
"If skipped, the VMs' disk data will be duplicated byte-for-byte, allowing for faster conversions. However, there is a risk that the VMs might not function properly and it is not recommended.": "If skipped, the VMs' disk data will be duplicated byte-for-byte, allowing for faster conversions. However, there is a risk that the VMs might not function properly and it is not recommended.",
"If that is not possible, use your preferred automated or manual procedure to install qemu-guest-agent manually.": "If that is not possible, use your preferred automated or manual procedure to install qemu-guest-agent manually.",
"If the migration progress and pod logs aren’t helpful, take a look at the forklift controller logs.": "If the migration progress and pod logs aren’t helpful, take a look at the forklift controller logs.",
"If the virtual machines you're migrating have LUKS-encrypted disks, click the \"Add passphrase\" button. Enter the decryption passphrase for each disk. MTV will try each passphrase until it can unlock the disk. If your VMs are not encrypted, you can leave this section blank.": "If the virtual machines you're migrating have LUKS-encrypted disks, click the \"Add passphrase\" button. Enter the decryption passphrase for each disk. MTV will try each passphrase until it can unlock the disk. If your VMs are not encrypted, you can leave this section blank.",
"If true, the Hyper-V host's TLS certificate won't be validated.": "If true, the Hyper-V host's TLS certificate won't be validated.",
"If true, the provider's CA certificate won't be validated.": "If true, the provider's CA certificate won't be validated.",
"If true, the provider's TLS certificate won't be validated.": "If true, the provider's TLS certificate won't be validated.",
"If you are migrating from VMware, ensure you are using the VMware Virtual Disk Development Kit (VDDK). VDDK provides a specialized, high-performance data path to read VM disks from the VMware environment, significantly boosting speed.": "If you are migrating from VMware, ensure you are using the VMware Virtual Disk Development Kit (VDDK). VDDK provides a specialized, high-performance data path to read VM disks from the VMware environment, significantly boosting speed.",
"If you don't use compatibility mode, you must have VirtIO drivers already installed in the source VM.": "If you don't use compatibility mode, you must have VirtIO drivers already installed in the source VM.",
"If you map more than 1 source and target network, each additional OpenShift Virtualization network requires its own network attachment definition.": "If you map more than 1 source and target network, each additional OpenShift Virtualization network requires its own network attachment definition.",
"If you specify a playbook, the image must be hook-runner.": "If you specify a playbook, the image must be hook-runner.",
"If you want support from Red Hat, follow these additional steps:": "If you want support from Red Hat, follow these additional steps:",
"If you want to keep the VM's static IP address after it has been migrated, check the \"Preserve static IPs\" box. By default, this is set to preserve the IPs. If you want the VM to get a new IP address via DHCP in the target environment, keep this box unchecked.": "If you want to keep the VM's static IP address after it has been migrated, check the \"Preserve static IPs\" box. By default, this is set to preserve the IPs. If you want the VM to get a new IP address via DHCP in the target environment, keep this box unchecked.",
"If your migration uses block storage and persistent volumes created with an EXT4 file system, increase the file system overhead in the Containerized Data Importer (CDI) to be more than 10%. The default overhead that is assumed by CDI does not completely include the reserved place for the root partition. If you do not increase the file system overhead in CDI by this amount, your migration might fail.": "If your migration uses block storage and persistent volumes created with an EXT4 file system, increase the file system overhead in the Containerized Data Importer (CDI) to be more than 10%. The default overhead that is assumed by CDI does not completely include the reserved place for the root partition. If you do not increase the file system overhead in CDI by this amount, your migration might fail.",
"If your source provider is Red Hat Virtualization, select a Source storage domain and a Target storage class": "If your source provider is Red Hat Virtualization, select a Source storage domain and a Target storage class",
"If your source provider is VMware, select a Source datastore and a Target storage class": "If your source provider is VMware, select a Source datastore and a Target storage class",
"Ignore network": "Ignore network",
"Image": "Image",
"Impacted resources": "Impacted resources",
"In": "In",
"In live migration, the source virtual machine continues to run until the migration is complete.": "In live migration, the source virtual machine continues to run until the migration is complete.",
"In some cases, a Raw Copy mode can be used as a fallback. This performs a block-level, byte-for-byte copy of the source disk. It is useful for complex disk layouts or when standard methods fail. Use this with caution as it bypasses filesystem optimizations and should only be used if you fully understand its implications.": "In some cases, a Raw Copy mode can be used as a fallback. This performs a block-level, byte-for-byte copy of the source disk. It is useful for complex disk layouts or when standard methods fail. Use this with caution as it bypasses filesystem optimizations and should only be used if you fully understand its implications.",
"In warm migration, the VM disks are copied incrementally using changed block tracking (CBT) snapshots.\n The snapshots are created at one-hour intervals by default.\n You can change the snapshot interval by updating the forklift-controller deployment.": "In warm migration, the VM disks are copied incrementally using changed block tracking (CBT) snapshots.\n The snapshots are created at one-hour intervals by default.\n You can change the snapshot interval by updating the forklift-controller deployment.",
"Include guest conversion": "Include guest conversion",
"incomplete": "incomplete",
"Incomplete": "Incomplete",
"Infinidat Infinibox": "Infinidat Infinibox",
"Information concerns": "Information concerns",
"Inherit plan wide setting": "Inherit plan wide setting",
"Insecure migration means that the transferred data is sent over an insecure connection and potentially sensitive data could be exposed.": "Insecure migration means that the transferred data is sent over an insecure connection and potentially sensitive data could be exposed.",
"Invalid application ID, spaces are not allowed": "Invalid application ID, spaces are not allowed",
"Invalid application name, spaces are not allowed": "Invalid application name, spaces are not allowed",
"Invalid application secret, spaces are not allowed": "Invalid application secret, spaces are not allowed",
"Invalid CA certificate, certificate must be in a valid PEM encoded X.509 format.": "Invalid CA certificate, certificate must be in a valid PEM encoded X.509 format.",
"Invalid container image format. Expected format: <registry_route_or_server_path>/image:<tag>": "Invalid container image format. Expected format: <registry_route_or_server_path>/image:<tag>",
"Invalid domain name, spaces are not allowed": "Invalid domain name, spaces are not allowed",
"Invalid mappings": "Invalid mappings",
"Invalid password": "Invalid password",
"Invalid password, spaces are not allowed": "Invalid password, spaces are not allowed",
"Invalid project ID, spaces are not allowed": "Invalid project ID, spaces are not allowed",
"Invalid project name, spaces are not allowed": "Invalid project name, spaces are not allowed",
"Invalid region, spaces are not allowed": "Invalid region, spaces are not allowed",
"Invalid Skip certificate validation value, must be true or false": "Invalid Skip certificate validation value, must be true or false",
"Invalid token, a valid Kubernetes service account token is required": "Invalid token, a valid Kubernetes service account token is required",
"Invalid token, spaces are not allowed": "Invalid token, spaces are not allowed",
"Invalid user ID, spaces are not allowed": "Invalid user ID, spaces are not allowed",
"Invalid username": "Invalid username",
"Invalid username, spaces are not allowed": "Invalid username, spaces are not allowed",
"Inventory": "Inventory",
"Inventory server is not reachable. To troubleshoot, check the Forklift controller pod logs.": "Inventory server is not reachable. To troubleshoot, check the Forklift controller pod logs.",
"IP address or hostname of the Hyper-V server, for example: 192.168.1.100": "IP address or hostname of the Hyper-V server, for example: 192.168.1.100",
"IP address preservation": "IP address preservation",
"Is the guest operating system of your source VM officially supported by OpenShift Virtualization?": "Is the guest operating system of your source VM officially supported by OpenShift Virtualization?",
"Issuer": "Issuer",
"Issues we have detected that might impact your virtual machines or their ability to migrate. There is no guarantee for a successful migration with any of the issues.": "Issues we have detected that might impact your virtual machines or their ability to migrate. There is no guarantee for a successful migration with any of the issues.",
"It is highly recommended to use a VDDK image.": "It is highly recommended to use a VDDK image.",
"It is recommended to use VDDK setup because it helps enhance migration performance. If you are using a warm migration, VDDK is required.": "It is recommended to use VDDK setup because it helps enhance migration performance. If you are using a warm migration, VDDK is required.",
"Jobs": "Jobs",
"Key": "Key",
"Key considerations": "Key considerations",
"Key terminology": "Key terminology",
"Kubernetes": "Kubernetes",
"Kubernetes name of the new migration Plan resource": "Kubernetes name of the new migration Plan resource",
"kubernetes.io/hostname": "kubernetes.io/hostname",
"Label": "Label",
"Label selectors let you select Nodes based on the value of one or more labels.": "Label selectors let you select Nodes based on the value of one or more labels.",
"Labels help you organize and select resources. Adding labels below will let you query for objects that have similar, overlapping or dissimilar labels.": "Labels help you organize and select resources. Adding labels below will let you query for objects that have similar, overlapping or dissimilar labels.",
"Large precopy interval": "Large precopy interval",
"Last 10 days": "Last 10 days",
"Last 24 hours": "Last 24 hours",
"Last 31 days": "Last 31 days",
"Lastly, you can review the ‘must-gather’ CLI logs to collect information about your cluster that is most likely needed for debugging purposes.": "Lastly, you can review the ‘must-gather’ CLI logs to collect information about your cluster that is most likely needed for debugging purposes.",
"Learn more": "Learn more",
"Learn more about migrating VMs": "Learn more about migrating VMs",
"Learn more about migration types": "Learn more about migration types",
"Learn more about projects.": "Learn more about projects.",
"Learn more about the must-gather tool": "Learn more about the must-gather tool",
"Learn more about VDDK": "Learn more about VDDK",
"Learn the best practices for seamlessly migrating your virtual machines.": "Learn the best practices for seamlessly migrating your virtual machines.",
"Link for OpenShift Virtualization web console UI. For example, https://console-openshift-console.apps.openshift-domain.com.": "Link for OpenShift Virtualization web console UI. For example, https://console-openshift-console.apps.openshift-domain.com.",
"Link for the OpenStack dashboard. For example, https://identity_service.com/dashboard.": "Link for the OpenStack dashboard. For example, https://identity_service.com/dashboard.",
"Link for the Red Hat Virtualization Manager landing page. For example, https://rhv-host-example.com/ovirt-engine.": "Link for the Red Hat Virtualization Manager landing page. For example, https://rhv-host-example.com/ovirt-engine.",
"Link for the VMware vSphere UI. For example, https://vSphere-host-example.com/ui.": "Link for the VMware vSphere UI. For example, https://vSphere-host-example.com/ui.",
"List of objects depended by this object. If ALL objects in the list have been deleted,\n this object will be garbage collected. If this object is managed by a controller,\n then an entry in this list will point to this controller, with the controller field set to true.\n There cannot be more than one managing controller.": "List of objects depended by this object. If ALL objects in the list have been deleted,\n this object will be garbage collected. If this object is managed by a controller,\n then an entry in this list will point to this controller, with the controller field set to true.\n There cannot be more than one managing controller.",
"Live": "Live",
"Live migration": "Live migration",
"Live migration, the source virtual machines continue running while their state is synchronized with the destination.": "Live migration, the source virtual machines continue running while their state is synchronized with the destination.",
"Loading": "Loading",
"Loading virtual machines...": "Loading virtual machines...",
"Loading...": "Loading...",
"Logs": "Logs",
"Long snapshot polling interval": "Long snapshot polling interval",
"Low CPU limit": "Low CPU limit",
"Low memory limit": "Low memory limit",
"Make sure your local and shared persistent storage support VM migration.": "Make sure your local and shared persistent storage support VM migration.",
"Make sure your migration plan looks correct. To make any changes, click directly on the step you want to go to or press the back button.": "Make sure your migration plan looks correct. To make any changes, click directly on the step you want to go to or press the back button.",
"Manage columns": "Manage columns",
"Manage the SSL/TLS certificate used to secure the connection to the provider. You can upload a custom CA certificate or skip this step.": "Manage the SSL/TLS certificate used to secure the connection to the provider. You can upload a custom CA certificate or skip this step.",
"Managed resource": "Managed resource",
"Manually specify the VDDK image URL": "Manually specify the VDDK image URL",
"Map": "Map",
"Mappings": "Mappings",
"Maximum concurrent VM migrations": "Maximum concurrent VM migrations",
"Measured Boot incompatibility": "Measured Boot incompatibility",
"Message": "Message",
"Method of authentication to use when connecting to the OpenStack Identity (Keystone) server.": "Method of authentication to use when connecting to the OpenStack Identity (Keystone) server.",
"Microsoft Hyper-V": "Microsoft Hyper-V",
"Microsoft Hyper-V virtualization platform. Supports migration via SMB share.": "Microsoft Hyper-V virtualization platform. Supports migration via SMB share.",
"Microsoft Windows VMs, which use the Measured Boot feature, cannot be migrated. Measured Boot is a mechanism to prevent any kind of device changes by checking each start-up component, including the firmware, all the way to the boot driver.": "Microsoft Windows VMs, which use the Measured Boot feature, cannot be migrated. Measured Boot is a mechanism to prevent any kind of device changes by checking each start-up component, including the firmware, all the way to the boot driver.",
"Migrate shared disks": "Migrate shared disks",
"Migrate shared disks. This may slow down the migration process": "Migrate shared disks. This may slow down the migration process",
"Migrate without validating a CA certificate": "Migrate without validating a CA certificate",
"Migrated": "Migrated",
"Migrating virtualization workloads is a multi-step process. <2>Learn more</2>.": "Migrating virtualization workloads is a multi-step process. <2>Learn more</2>.",
"Migrating your virtual machines": "Migrating your virtual machines",
"Migration": "Migration",
"Migration can not start until these critical concerns are resolved.": "Migration can not start until these critical concerns are resolved.",
"Migration for Virtualization": "Migration for Virtualization",
"Migration history": "Migration history",
"Migration network maps are used to map network interfaces between source and target virtualization providers. At least one source and one target provider must be available in order to create a migration network map. <2>Learn more</2>.": "Migration network maps are used to map network interfaces between source and target virtualization providers. At least one source and one target provider must be available in order to create a migration network map. <2>Learn more</2>.",
"Migration network maps are used to map networks between source and target providers.": "Migration network maps are used to map networks between source and target providers.",
"Migration plan concerns": "Migration plan concerns",
"Migration plan state information and progress": "Migration plan state information and progress",
"Migration plans": "Migration plans",
"Migration plans are used to document the moving of virtualization workloads from source providers to target providers.": "Migration plans are used to document the moving of virtualization workloads from source providers to target providers.",
"Migration plans are used to document the moving of virtualization workloads from source providers to target providers. At least one source and one target provider must be available in order to create a migration plan. <2>Learn more about migration plans</2>.": "Migration plans are used to document the moving of virtualization workloads from source providers to target providers. At least one source and one target provider must be available in order to create a migration plan. <2>Learn more about migration plans</2>.",
"Migration progress": "Migration progress",
"Migration resources": "Migration resources",
"Migration running": "Migration running",
"Migration started": "Migration started",
"Migration status": "Migration status",
"Migration storage maps are used to map source storages to OpenShift Virtualization storage classes. At least one source and one target provider must be available in order to create a migration storage map. <2>Learn more</2>.": "Migration storage maps are used to map source storages to OpenShift Virtualization storage classes. At least one source and one target provider must be available in order to create a migration storage map. <2>Learn more</2>.",
"Migration storage maps are used to map storages between source and target providers.": "Migration storage maps are used to map storages between source and target providers.",
"Migration Toolkit for Virtualization": "Migration Toolkit for Virtualization",
"Migration Toolkit for Virtualization (MTV) migrates virtual machines at scale to <2>Red Hat OpenShift Virtualization</2>. This allows organizations to more easily access workloads running on virtual machines while developing new cloud-native applications.": "Migration Toolkit for Virtualization (MTV) migrates virtual machines at scale to <2>Red Hat OpenShift Virtualization</2>. This allows organizations to more easily access workloads running on virtual machines while developing new cloud-native applications.",
"Migration type": "Migration type",
"Migration type is required.": "Migration type is required.",
"Migration types (cold vs warm vs)": "Migration types (cold vs warm vs)",
"Missing fields in {{kind}} labels": "Missing fields in {{kind}} labels",
"Missing fields in node fields": "Missing fields in node fields",
"Moderate CPU limit": "Moderate CPU limit",
"Moderate memory limit": "Moderate memory limit",
"MTU": "MTU",
"MTV behavior is based on the Shared disks setting in the plan. If checked, the shared disks will be migrated, otherwise the shared disks will not be migrated.": "MTV behavior is based on the Shared disks setting in the plan. If checked, the shared disks will be migrated, otherwise the shared disks will not be migrated.",
"MTV has limited support for the migration of dual-boot operating system VMs. In the case of a dual-boot operating system VM, MTV will try to convert the first boot disk it finds. Alternatively, the root device can be specified in the MTV UI.": "MTV has limited support for the migration of dual-boot operating system VMs. In the case of a dual-boot operating system VM, MTV will try to convert the first boot disk it finds. Alternatively, the root device can be specified in the MTV UI.",
"MTV performance recommendations": "MTV performance recommendations",
"MTV uses the vSphere Virtual Disk Development Kit (VDDK) to interact with VMware vSphere. This is a set of libraries that allows MTV to efficiently access and copy virtual machine disk files (.vmdk) from VMware environments.": "MTV uses the vSphere Virtual Disk Development Kit (VDDK) to interact with VMware vSphere. This is a set of libraries that allows MTV to efficiently access and copy virtual machine disk files (.vmdk) from VMware environments.",
"Multiple networks": "Multiple networks",
"Must choose a target provider to see available target projects": "Must choose a target provider to see available target projects",
"Must enable Changed Block Tracking (CBT) for warm migration": "Must enable Changed Block Tracking (CBT) for warm migration",
"Must enable VMware Virtual Disk Development Kit": "Must enable VMware Virtual Disk Development Kit",
"Must select at least 1 VM.": "Must select at least 1 VM.",
"My migration plan is failing with a network-related error. Are the source and destination networks mapped correctly?": "My migration plan is failing with a network-related error. Are the source and destination networks mapped correctly?",
"My warm migration is failing or getting stuck during the pre-copy stage. What's the problem?": "My warm migration is failing or getting stuck during the pre-copy stage. What's the problem?",
"Name": "Name",
"Name is primarily intended for creation idempotence and configuration definition. Cannot be updated.": "Name is primarily intended for creation idempotence and configuration definition. Cannot be updated.",
"Name must be no more than 253 characters": "Name must be no more than 253 characters",
"Name must consist of lower case alphanumeric characters or \"-\", and must start and end with an alphanumeric character": "Name must consist of lower case alphanumeric characters or \"-\", and must start and end with an alphanumeric character",
"Name your plan and choose the project you would like it to be created in.": "Name your plan and choose the project you would like it to be created in.",
"Namespace": "Namespace",
"Namespace defines the space within which each name must be unique.\n An empty namespace is equivalent to the \"default\" namespace, but \"default\" is the canonical representation.\n Not all objects are required to be scoped to a namespace -\n the value of this field for those objects will be empty.": "Namespace defines the space within which each name must be unique.\n An empty namespace is equivalent to the \"default\" namespace, but \"default\" is the canonical representation.\n Not all objects are required to be scoped to a namespace -\n the value of this field for those objects will be empty.",
"Naming information": "Naming information",
"Navigate to the directory where you want to store the must-gather data.": "Navigate to the directory where you want to store the must-gather data.",
"NBDE/Clevis enabled": "NBDE/Clevis enabled",
"NetApp ONTAP": "NetApp ONTAP",
"Network attachment definitions": "Network attachment definitions",
"Network for data transfer": "Network for data transfer",
"Network interfaces": "Network interfaces",
"Network map": "Network map",
"Network map details": "Network map details",
"Network map is required.": "Network map is required.",
"Network map name": "Network map name",
"Network map YAML": "Network map YAML",
"Network mapping ensures a seamless VM connectivity after migration by defining the correspondence between source network configurations (e.g., VLANs, subnets) on an existing virtualization platform and target network configurations in the new OpenShift Virtualization environment. Without proper network mapping, migrated VMs might lose network connectivity, leading to downtime and operational issues.": "Network mapping ensures a seamless VM connectivity after migration by defining the correspondence between source network configurations (e.g., VLANs, subnets) on an existing virtualization platform and target network configurations in the new OpenShift Virtualization environment. Without proper network mapping, migrated VMs might lose network connectivity, leading to downtime and operational issues.",
"Network maps": "Network maps",
"Network maps ensure that the network configurations of your migrating virtual machines (VMs) are correctly translated and applied in the target environment.": "Network maps ensure that the network configurations of your migrating virtual machines (VMs) are correctly translated and applied in the target environment.",
"Network name template": "Network name template",
"Network name template is a template for generating network interface names in the target virtual machine.": "Network name template is a template for generating network interface names in the target virtual machine.",
"NetworkAttachmentDefinitions": "NetworkAttachmentDefinitions",
"Networks": "Networks",
"Networks used by the selected VMs": "Networks used by the selected VMs",
"New migration plan name": "New migration plan name",
"Next": "Next",
"NFS path must be in format: host:/path (e.g., 10.10.0.10:/ova)": "NFS path must be in format: host:/path (e.g., 10.10.0.10:/ova)",
"NFS shared directory": "NFS shared directory",
"No affinity rules found": "No affinity rules found",
"No concerns found for this virtual machine.": "No concerns found for this virtual machine.",
"No data available.": "No data available.",
"No decryption defined": "No decryption defined",
"No inventory data available.": "No inventory data available.",
"No labels defined": "No labels defined",
"No namespace selected": "No namespace selected",
"No network mappings selected": "No network mappings selected",
"No network maps found": "No network maps found",
"No network maps found in project <1>{namespace}</1>.": "No network maps found in project <1>{namespace}</1>.",
"No node selectors defined": "No node selectors defined",
"No options available": "No options available",
"No owner": "No owner",
"No plans found": "No plans found",
"No plans found in project <1>{namespace}</1>.": "No plans found in project <1>{namespace}</1>.",
"No provider data available.": "No provider data available.",
"No providers found": "No providers found",
"No providers found in project <1>{namespace}</1>": "No providers found in project <1>{namespace}</1>",
"No results found": "No results found",
"No results match the filter criteria. Clear all filters and try again.": "No results match the filter criteria. Clear all filters and try again.",
"No secret": "No secret",
"No secrets available for this provider": "No secrets available for this provider",
"No source networks are available for the selected VMs.": "No source networks are available for the selected VMs.",
"No source storages are available for the selected VMs.": "No source storages are available for the selected VMs.",
"No storage mappings selected": "No storage mappings selected",
"No storage maps found": "No storage maps found",
"No storage maps found in project <1>{namespace}</1>.": "No storage maps found in project <1>{namespace}</1>.",
"No storages available": "No storages available",
"No value for provider web UI link": "No value for provider web UI link",
"No VMs have been selected": "No VMs have been selected",
"Node": "Node",
"Node affinity": "Node affinity",
"Node fields": "Node fields",
"Node labels": "Node labels",
"Node selector enables constraining virtual machines scheduling to specific nodes, based on node labels. Adding labels below will schedule virtual machines only on nodes which contain the specified labels.": "Node selector enables constraining virtual machines scheduling to specific nodes, based on node labels. Adding labels below will schedule virtual machines only on nodes which contain the specified labels.",
"None": "None",
"Not in": "Not in",
"Not Ready": "Not Ready",
"not started": "not started",
"Not yet migrated": "Not yet migrated",
"Note that for Node field expressions, entering a full path is required in the \"Key\" field (e.g. \"metadata.name: value\").": "Note that for Node field expressions, entering a full path is required in the \"Key\" field (e.g. \"metadata.name: value\").",
"NotStarted": "NotStarted",
"NUMA": "NUMA",
"Number of clusters in provider.": "Number of clusters in provider.",
"Number of data centers in provider.": "Number of data centers in provider.",
"Number of data stores in provider.": "Number of data stores in provider.",
"Number of hosts in provider.": "Number of hosts in provider.",
"Number of network interfaces in provider cluster.": "Number of network interfaces in provider cluster.",
"Number of projects in OpenStack cluster.": "Number of projects in OpenStack cluster.",
"Number of regions in provider.": "Number of regions in provider.",
"Number of storage classes in provider cluster.": "Number of storage classes in provider cluster.",
"Number of storage domains in provider.": "Number of storage domains in provider.",
"Number of storage types found in OVA server.": "Number of storage types found in OVA server.",
"Number of storage types in provider.": "Number of storage types in provider.",
"Number of storage volumes in provider.": "Number of storage volumes in provider.",
"Number of virtual machines exported from Hyper-V": "Number of virtual machines exported from Hyper-V",
"Number of virtual machines in OVA files": "Number of virtual machines in OVA files",
"Number of virtual machines in provider.": "Number of virtual machines in provider.",
"of your selected VMs do not have CBT enabled.": "of your selected VMs do not have CBT enabled.",
"Off": "Off",
"Offload options (optional)": "Offload options (optional)",
"Offload plugin": "Offload plugin",
"On": "On",
"Only one mapping can target the default network.": "Only one mapping can target the default network.",
"Open Virtual Appliance": "Open Virtual Appliance",
"Open Virtual Appliances": "Open Virtual Appliances",
"OpenShift Virtualization": "OpenShift Virtualization",
"OpenShift web console UI": "OpenShift web console UI",
"OpenStack": "OpenStack",
"OpenStack application credential ID needed for the application credential authentication.": "OpenStack application credential ID needed for the application credential authentication.",
"OpenStack application credential ID needed for the application credential authentication. [required]": "OpenStack application credential ID needed for the application credential authentication. [required]",
"OpenStack application credential name needed for application credential authentication.": "OpenStack application credential name needed for application credential authentication.",
"OpenStack application credential name needed for application credential authentication. [required]": "OpenStack application credential name needed for application credential authentication. [required]",
"OpenStack application credential Secret needed for the application credential authentication.": "OpenStack application credential Secret needed for the application credential authentication.",
"OpenStack application credential Secret needed for the application credential authentication. [required]": "OpenStack application credential Secret needed for the application credential authentication. [required]",
"OpenStack dashboard UI": "OpenStack dashboard UI",
"OpenStack domain name.": "OpenStack domain name.",
"OpenStack domain name. [required]": "OpenStack domain name. [required]",
"OpenStack Identity (Keystone) API endpoint URL": "OpenStack Identity (Keystone) API endpoint URL",
"OpenStack project ID.": "OpenStack project ID.",
"OpenStack project ID. [required]": "OpenStack project ID. [required]",
"OpenStack project name.": "OpenStack project name.",
"OpenStack project name. [required]": "OpenStack project name. [required]",
"OpenStack region name.": "OpenStack region name.",
"OpenStack region name. [required]": "OpenStack region name. [required]",
"OpenStack token for authentication using a user ID.": "OpenStack token for authentication using a user ID.",
"OpenStack token for authentication using a user name.": "OpenStack token for authentication using a user name.",
"OpenStack token for authentication using a user name. [required]": "OpenStack token for authentication using a user name. [required]",
"Operator": "Operator",
"Optimizing migration speed": "Optimizing migration speed",
"Optional: If you've entered an OpenShift Virtualization API endpoint URL, copy the bearer token from the Kubernetes Service Account that you created for migration (this token is essentially the password for the service account) and paste it into the input field.": "Optional: If you've entered an OpenShift Virtualization API endpoint URL, copy the bearer token from the Kubernetes Service Account that you created for migration (this token is essentially the password for the service account) and paste it into the input field.",
"Optionally, click Add to create additional storage mappings or to map multiple source data stores or storage domains to a single storage class.": "Optionally, click Add to create additional storage mappings or to map multiple source data stores or storage domains to a single storage class.",
"Optionally, you can click Add to create additional network mappings or to map multiple source networks to multiple target networks (OpenShift network attachment definitions).": "Optionally, you can click Add to create additional network mappings or to map multiple source networks to multiple target networks (OpenShift network attachment definitions).",
"Other networks present on the source provider": "Other networks present on the source provider",
"Other settings (optional)": "Other settings (optional)",
"Other storages present on the source provider": "Other storages present on the source provider",
"OvaPath": "OvaPath",
"Overview": "Overview",
"Owner": "Owner",
"Page table": "Page table",
"Passphrases for LUKS encrypted devices": "Passphrases for LUKS encrypted devices",
"Password": "Password",
"Password for accessing the SMB share": "Password for accessing the SMB share",
"Password for connecting to the Hyper-V server": "Password for connecting to the Hyper-V server",
"Password for connecting to the vSphere API endpoint.": "Password for connecting to the vSphere API endpoint.",
"Password is required": "Password is required",
"Password:": "Password:",
"Path": "Path",
"paused": "paused",
"Paused": "Paused",
"Performance characteristics": "Performance characteristics",
"Persistent storage": "Persistent storage",
"Persistent storage holds the migrated VM disks, ensuring data integrity and availability.": "Persistent storage holds the migrated VM disks, ensuring data integrity and availability.",
"Persistent TPM/EFI": "Persistent TPM/EFI",
"Persistent Volume (PV)": "Persistent Volume (PV)",
"Persistent Volume Claim (PVC)": "Persistent Volume Claim (PVC)",
"Persistent volumes without CDI": "Persistent volumes without CDI",
"PersistentVolumeClaims": "PersistentVolumeClaims",
"Pipeline status": "Pipeline status",
"Plan": "Plan",
"Plan details": "Plan details",
"Plan information": "Plan information",
"Plan is currently running": "Plan is currently running",
"Plan is not archived": "Plan is not archived",
"Plan name": "Plan name",
"Plan name is required.": "Plan name is required.",
"Plan name must be unique across all namespaces.": "Plan name must be unique across all namespaces.",
"Plan name must contain only lowercase alphanumeric characters or '-', and must start or end with lowercase alphanumeric character.": "Plan name must contain only lowercase alphanumeric characters or '-', and must start or end with lowercase alphanumeric character.",
"Plan name:": "Plan name:",
"Plan network name template": "Plan network name template",
"Plan project": "Plan project",
"Plan project is required.": "Plan project is required.",
"Plan project:": "Plan project:",
"Plan PVC name template": "Plan PVC name template",
"Plan settings": "Plan settings",
"Plan volume name template": "Plan volume name template",
"Plan YAML": "Plan YAML",
"Plans": "Plans",
"Plans cannot be modified during migration": "Plans cannot be modified during migration",
"Please choose a NetworkAttachmentDefinition for data transfer.": "Please choose a NetworkAttachmentDefinition for data transfer.",
"Please choose a NetworkAttachmentDefinition for default data transfer.": "Please choose a NetworkAttachmentDefinition for default data transfer.",
"Please choose a target project for the migrated virtual machines.": "Please choose a target project for the migrated virtual machines.",
"Pod": "Pod",
"Pod logs": "Pod logs",
"Pod logs contain the details on the status of a specific pod within Kubernetes.": "Pod logs contain the details on the status of a specific pod within Kubernetes.",
"Pods": "Pods",
"Pods not found": "Pods not found",
"Post migration hook": "Post migration hook",
"Power": "Power",
"Powered off": "Powered off",
"Powered on": "Powered on",
"Pre migration hook": "Pre migration hook",
"Precopy interval": "Precopy interval",
"Preferred during scheduling": "Preferred during scheduling",
"Prerequisites": "Prerequisites",
"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 the virtual machines migrated": "Preserve the static IPs of the virtual machines migrated",
"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",
"Project ID": "Project ID",
"Project is required.": "Project is required.",
"Projects": "Projects",
"Projects, also known as namespaces, separate resources within clusters.": "Projects, also known as namespaces, separate resources within clusters.",
"Projects, also known as namespaces, separate resources within clusters. The target project is the project, within your selected target provider, that your virtual machines will be migrated to. This is different from the project that your migration plan will be created in and where your provider was created.": "Projects, also known as namespaces, separate resources within clusters. The target project is the project, within your selected target provider, that your virtual machines will be migrated to. This is different from the project that your migration plan will be created in and where your provider was created.",
"Provide a name now, or we'll generate one when the map is created.": "Provide a name now, or we'll generate one when the map is created.",
"Provide a name now, or we'll generate one when the map is created. You can find your network maps under the Network maps page.": "Provide a name now, or we'll generate one when the map is created. You can find your network maps under the Network maps page.",
"Provide a name now, or we'll generate one when the map is created. You can find your storage maps under the Storage maps page.": "Provide a name now, or we'll generate one when the map is created. You can find your storage maps under the Storage maps page.",
"Provide the storage device or partition that contains the root filesystem. If left blank, the first root device will be used.": "Provide the storage device or partition that contains the root filesystem. If left blank, the first root device will be used.",
"Provider": "Provider",
"Provider credentials": "Provider credentials",
"Provider default": "Provider default",
"Provider details": "Provider details",
"Provider inventory": "Provider inventory",
"Provider name": "Provider name",
"Provider name is required": "Provider name is required",
"Provider project": "Provider project",
"Provider project is required.": "Provider project is required.",
"Provider type": "Provider type",
"Provider type is required": "Provider type is required",
"Provider web UI link": "Provider web UI link",
"Provider YAML": "Provider YAML",
"Providers": "Providers",
"Providers refer to environments where the virtual machines originate from or are moved to during the migration process.": "Providers refer to environments where the virtual machines originate from or are moved to during the migration process.",
"Provides a storage framework to allow administrators to provision persistent storage for a cluster.": "Provides a storage framework to allow administrators to provision persistent storage for a cluster.",
"Pure Storage FlashArray": "Pure Storage FlashArray",
"PVC name template": "PVC name template",
"PVC name template is a template for generating persistent volume claims (PVC) names for VM disks.": "PVC name template is a template for generating persistent volume claims (PVC) names for VM disks.",
"QEMU-guest-agent installation": "QEMU-guest-agent installation",
"Quick reference": "Quick reference",
"Raw copy mode": "Raw copy mode",
"Raw Copy Mode (Fallback)": "Raw Copy Mode (Fallback)",
"Raw copy mode performs a block-level, byte-for-byte copy of the source disk. It is useful for complex disk layouts or when standard methods fail. Use this with caution as it bypasses filesystem optimizations and should only be used if you fully understand its implications.": "Raw copy mode performs a block-level, byte-for-byte copy of the source disk. It is useful for complex disk layouts or when standard methods fail. Use this with caution as it bypasses filesystem optimizations and should only be used if you fully understand its implications.",
"ReadWriteOnce (RWO): A volume can be mounted as read-write by a single node. This does not support live migration. ReadWriteMany (RWX): A volume can be mounted as read-write by many nodes. This is required for live migration of OpenShift Virtualization VMs, as it allows the disk to be accessed concurrently by both the source and target nodes during the migration process. Ensure your chosen StorageClass supports RWX if live migration is desired.": "ReadWriteOnce (RWO): A volume can be mounted as read-write by a single node. This does not support live migration. ReadWriteMany (RWX): A volume can be mounted as read-write by many nodes. This is required for live migration of OpenShift Virtualization VMs, as it allows the disk to be accessed concurrently by both the source and target nodes during the migration process. Ensure your chosen StorageClass supports RWX if live migration is desired.",
"Ready": "Ready",
"Ready for migration": "Ready for migration",
"Ready to start": "Ready to start",
"Reason": "Reason",
"Red Hat OpenShift Virtualization Administration I course": "Red Hat OpenShift Virtualization Administration I course",
"Red Hat Virtualization": "Red Hat Virtualization",
"Red Hat Virtualization Manager UI": "Red Hat Virtualization Manager UI",
"Region": "Region",
"Regions": "Regions",
"Remove cutover": "Remove cutover",
"Reorder": "Reorder",
"Requests persistent volume (PV) resources without having specific knowledge of the underlying storage infrastructure.": "Requests persistent volume (PV) resources without having specific knowledge of the underlying storage infrastructure.",
"Required during scheduling": "Required during scheduling",
"Resource": "Resource",
"Resources": "Resources",
"Restart": "Restart",
"Restore default columns": "Restore default columns",
"Retain source VM power state": "Retain source VM power state",
"Reveal values": "Reveal values",
"Review all the configured settings for your migration plan.": "Review all the configured settings for your migration plan.",
"Review and create": "Review and create",
"Review and Create:": "Review and Create:",
"Review your details. If everything is good to go, click Create provider.": "Review your details. If everything is good to go, click Create provider.",
"Root device": "Root device",
"Root filesystem format should start with \"/dev/sd[X]\", see documentation for more information.": "Root filesystem format should start with \"/dev/sd[X]\", see documentation for more information.",
"Rules with \"Preferred\" condition will stack with an \"AND\" relation between them.": "Rules with \"Preferred\" condition will stack with an \"AND\" relation between them.",
"Rules with \"Required\" condition will stack with an \"OR\" relation between them.": "Rules with \"Required\" condition will stack with an \"OR\" relation between them.",
"Run and manage virtual machines in Red Hat OpenShift": "Run and manage virtual machines in Red Hat OpenShift",
"Run the command:<1><0>{MUST_GATHER_EXAMPLE_URL}</0></1>(But this won't be static; the UI should populate it as the image can change),": "Run the command:<1><0>{MUST_GATHER_EXAMPLE_URL}</0></1>(But this won't be static; the UI should populate it as the image can change),",
"running": "running",
"Running": "Running",
"Running virtual machines": "Running virtual machines",
"Save": "Save",
"Save affinity rule": "Save affinity rule",
"Save target power state": "Save target power state",
"Schedule cutover": "Schedule cutover",
"Secret": "Secret",
"Secrets": "Secrets",
"Select a network": "Select a network",
"Select a network map:": "Select a network map:",
"Select a project": "Select a project",
"Select a provider type": "Select a provider type",
"Select a source provider to list available source networks": "Select a source provider to list available source networks",
"Select a source provider to list available source storages": "Select a source provider to list available source storages",
"Select a storage map:": "Select a storage map:",
"Select a target provider and project to list available target networks": "Select a target provider and project to list available target networks",
"Select a target provider and project to list available target storages": "Select a target provider and project to list available target storages",
"Select a target provider to list available target projects": "Select a target provider to list available target projects",
"Select a target StorageClass that meets the performance requirements of your migrated workloads. Consider factors like IOPS, throughput, and latency.": "Select a target StorageClass that meets the performance requirements of your migrated workloads. Consider factors like IOPS, throughput, and latency.",
"Select a topic": "Select a topic",
"Select an authentication type. Password is the most common choice.": "Select an authentication type. Password is the most common choice.",
"Select an existing network map or use a new network map.": "Select an existing network map or use a new network map.",
"Select an existing storage map or use a new storage map.": "Select an existing storage map or use a new storage map.",
"Select an option": "Select an option",
"Select at least one virtual machine.": "Select at least one virtual machine.",
"Select filter type": "Select filter type",
"Select how you want to set up the Virtual Disk Development Kit (VDDK).": "Select how you want to set up the Virtual Disk Development Kit (VDDK).",
"Select Microsoft Hyper-V as the provider type.": "Select Microsoft Hyper-V as the provider type.",