-
Notifications
You must be signed in to change notification settings - Fork 60
Expand file tree
/
Copy pathplugin__kubevirt-plugin.json
More file actions
2246 lines (2246 loc) · 178 KB
/
plugin__kubevirt-plugin.json
File metadata and controls
2246 lines (2246 loc) · 178 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
{
" (NIC)": " (NIC)",
" {{sockets}} sockets, {{threads}} threads, and {{cores}} cores.": " {{sockets}} sockets, {{threads}} threads, and {{cores}} cores.",
" Adding hot plugged disk": " Adding hot plugged disk",
" from <2>{currentNetwork}</2> network?": " from <2>{currentNetwork}</2> network?",
" in namespace <2>{{objNamespace}}</2>?": " in namespace <2>{{objNamespace}}</2>?",
" Please <3>approve this certificate</3> and try again.": " Please <3>approve this certificate</3> and try again.",
"--- Pick an Operating system ---": "--- Pick an Operating system ---",
"--- Select network interface ---": "--- Select network interface ---",
"--- Select PVC name ---": "--- Select PVC name ---",
"--- Select PVC project ---": "--- Select PVC project ---",
"--- Select sysprep ---": "--- Select sysprep ---",
"--- Select Volume name ---": "--- Select Volume name ---",
"--- Select Volume project ---": "--- Select Volume project ---",
"--- Select VolumeSnapshot name ---": "--- Select VolumeSnapshot name ---",
"--- Select VolumeSnapshot project ---": "--- Select VolumeSnapshot project ---",
", {{preferredQualifiedNodesSize}} matching preferred Nodes found": ", {{preferredQualifiedNodesSize}} matching preferred Nodes found",
"({{count}})_one": "({{count}})",
"({{count}})_other": "({{count}})",
"(default)": "(default)",
"(default) | ": "(default) | ",
"(In seconds)": "(In seconds)",
"(requires login) and copy the download link URL of the KVM guest image (expires quickly)": "(requires login) and copy the download link URL of the KVM guest image (expires quickly)",
"{{ osName }} VirtualMachine can not be edited because it is provided by OpenShift Virtualization Operator.": "{{ osName }} VirtualMachine can not be edited because it is provided by OpenShift Virtualization Operator.",
"{{actionType}} {{numVMs}} of {{totalVMs}} VirtualMachines?": "{{actionType}} {{numVMs}} of {{totalVMs}} VirtualMachines?",
"{{actionType}} {{numVMs}} VirtualMachines?": "{{actionType}} {{numVMs}} VirtualMachines?",
"{{actionType}} VirtualMachine?": "{{actionType}} VirtualMachine?",
"{{annotations}} Annotations": "{{annotations}} Annotations",
"{{annotationsCount}} Annotations": "{{annotationsCount}} Annotations",
"{{availableText}} available": "{{availableText}} available",
"{{clustersCount}} clusters found": "{{clustersCount}} clusters found",
"{{clustersCount}} clusters, {{projectsCount}} projects found": "{{clustersCount}} clusters, {{projectsCount}} projects found",
"{{count}} Expression_one": "{{count}} Expression",
"{{count}} Expression_other": "{{count}} Expressions",
"{{count}} failed checks_one": "{{count}} failed check",
"{{count}} failed checks_other": "{{count}} failed checks",
"{{count}} in progress checks_one": "{{count}} in progress check",
"{{count}} in progress checks_other": "{{count}} in progress checks",
"{{count}} minutes_one": "{{count}} minute",
"{{count}} minutes_other": "{{count}} minutes",
"{{count}} namespace_one": "{{count}} namespace",
"{{count}} namespace_other": "{{count}} namespaces",
"{{count}} Node Field_one": "{{count}} Node Field",
"{{count}} Node Field_other": "{{count}} Node Fields",
"{{count}} successful checks_one": "{{count}} successful check",
"{{count}} successful checks_other": "{{count}} successful checks",
"{{count}} VirtualMachine_one": "{{count}} VirtualMachine",
"{{count}} VirtualMachine_other": "{{count}} VirtualMachines",
"{{count}} Volumes_one": "{{count}} Volume",
"{{count}} Volumes_other": "{{count}} Volumes",
"{{cpu}} CPU | {{memory}} Memory": "{{cpu}} CPU | {{memory}} Memory",
"{{cpuCount}} CPU | {{memory}} Memory": "{{cpuCount}} CPU | {{memory}} Memory",
"{{cpus}} CPUs, {{memory}} Memory": "{{cpus}} CPUs, {{memory}} Memory",
"{{gpusCount}} GPU devices": "{{gpusCount}} GPU devices",
"{{hostDevicesCount}} Host devices": "{{hostDevicesCount}} Host devices",
"{{hours}}h {{minutes}}m {{seconds}}s": "{{hours}}h {{minutes}}m {{seconds}}s",
"{{matchingNodesCount}} matching nodes found": "{{matchingNodesCount}} matching nodes found",
"{{matchingNodeText}} matching": "{{matchingNodeText}} matching",
"{{matchingProjectText}} matching": "{{matchingProjectText}} matching",
"{{minutes}}m {{seconds}}s": "{{minutes}}m {{seconds}}s",
"{{name}} · {{resourceKind}} · Details": "{{name}} · {{resourceKind}} · Details",
"{{name}}: {{input}}ms": "{{name}}: {{input}}ms",
"{{nameOrId}} - Default data image already exists": "{{nameOrId}} - Default data image already exists",
"{{nameOrId}} - Template missing data image definition": "{{nameOrId}} - Template missing data image definition",
"{{num}} more": "{{num}} more",
"{{numRemaining}} more": "{{numRemaining}} more",
"{{numVMs}} VirtualMachines in {{namespace}} namespace?": "{{numVMs}} VirtualMachines in {{namespace}} namespace?",
"{{passed}}/{{total}} passed ({{failed}} failed, {{skipped}} skipped)": "{{passed}}/{{total}} passed ({{failed}} failed, {{skipped}} skipped)",
"{{passed}}/{{total}} passed ({{failed}} failed)": "{{passed}}/{{total}} passed ({{failed}} failed)",
"{{projectsCount}} projects found": "{{projectsCount}} projects found",
"{{projectsCount}} projects selected": "{{projectsCount}} projects selected",
"{{qualifiedNodesCount}} matching nodes found": "{{qualifiedNodesCount}} matching nodes found",
"{{qualifiedNodesCount}} matching Nodes found": "{{qualifiedNodesCount}} matching Nodes found",
"{{qualifiedNodesCount}} nodes found": "{{qualifiedNodesCount}} nodes found",
"{{qualifiedProjectsCount}} matching Projects found": "{{qualifiedProjectsCount}} matching Projects found",
"{{rules}} Affinity rules": "{{rules}} Affinity rules",
"{{rules}} Tolerations rules": "{{rules}} Tolerations rules",
"{{seconds}}s": "{{seconds}}s",
"{{sizeLabel}}: {{cpus}} CPUs, {{memory}} Memory": "{{sizeLabel}}: {{cpus}} CPUs, {{memory}} Memory",
"{{symbol}} series": "{{symbol}} series",
"{{timestampPluralized}} ago": "{{timestampPluralized}} ago",
"{{tolerations}} Toleration rules": "{{tolerations}} Toleration rules",
"{{usedText}} used": "{{usedText}} used",
"+{{ips}} more": "+{{ips}} more",
"+{{num}} more": "+{{num}} more",
"<0><0>Bridge binding</0>: Connects the VirtualMachine to the selected network, which is ideal for L2 devices.</0><1><0>SR-IOV binding</0>: Attaches a virtual function network device to the VirtualMachine for high performance.</1>": "<0><0>Bridge binding</0>: Connects the VirtualMachine to the selected network, which is ideal for L2 devices.</0><1><0>SR-IOV binding</0>: Attaches a virtual function network device to the VirtualMachine for high performance.</1>",
"<0><0>WARNING:</0> this PVC is used as a base operating system image. New VMs will not be able to clone this image</0>": "<0><0>WARNING:</0> this PVC is used as a base operating system image. New VMs will not be able to clone this image</0>",
"<0>Autounattend.xml</0><1>Autounattend will be picked up automatically during windows installation. it can be used with destructive actions such as disk formatting. Autounattend will only be used once during installation.</1><2><0>{t('Learn more')}</0></2>": "<0>Autounattend.xml</0><1>Autounattend will be picked up automatically during windows installation. it can be used with destructive actions such as disk formatting. Autounattend will only be used once during installation.</1><2><0>{t('Learn more')}</0></2>",
"<0>Clicking \"Launch Remote Desktop\" will download an .rdp file and launch <2>Remote Desktop Viewer</2>.</0><1>Since the RDP is native Windows protocol, the best experience is achieved when used on Windows-based desktop.</1><2>For other operating systems, the <1>Remote Viewer</1> is recommended. If RDP needs to be accessed anyway, the <4>Remmina</4> client is available.</2>": "<0>Clicking \"Launch Remote Desktop\" will download an .rdp file and launch <2>Remote Desktop Viewer</2>.</0><1>Since the RDP is native Windows protocol, the best experience is achieved when used on Windows-based desktop.</1><2>For other operating systems, the <1>Remote Viewer</1> is recommended. If RDP needs to be accessed anyway, the <4>Remmina</4> client is available.</2>",
"<0>Clicking \"Launch Remote Viewer\" will download a .vv file and launch <2>Remote Viewer</2></0><1><0>Remote Viewer</0> is available for most operating systems. To install it, search for it in GNOME Software or run the following:</1>": "<0>Clicking \"Launch Remote Viewer\" will download a .vv file and launch <2>Remote Viewer</2></0><1><0>Remote Viewer</0> is available for most operating systems. To install it, search for it in GNOME Software or run the following:</1>",
"<0>Deleting this PVC will also delete <2>{{pvcName}}</2> Data Volume</0>": "<0>Deleting this PVC will also delete <2>{{pvcName}}</2> Data Volume</0>",
"<0>Donuts chart represent current values.</0><1>Sparkline charts represent data over time</1>": "<0>Donuts chart represent current values.</0><1>Sparkline charts represent data over time</1>",
"<0>From the Volume table, select a bootable volume to boot your VirtualMachine.</0><1>To add a bootable volume that is not listed, click <2></2></1><2>Learn how to <2></2></2>": "<0>From the Volume table, select a bootable volume to boot your VirtualMachine.</0><1>To add a bootable volume that is not listed, click <2></2></1><2>Learn how to <2></2></2>",
"<0>List of objects depended by this object. If ALL objects in the list have been deleted, this object will be garbage collected. If this object is managed by a controller, then an entry in this list will point to this controller, with the controller field set to true. There cannot be more than one managing controller.</0>": "<0>List of objects depended by this object. If ALL objects in the list have been deleted, this object will be garbage collected. If this object is managed by a controller, then an entry in this list will point to this controller, with the controller field set to true. There cannot be more than one managing controller.</0>",
"<0>No volumes found</0>To add a bootable volume, click <2></2> Add volume": "<0>No volumes found</0>To add a bootable volume, click <2></2> Add volume",
"<0>Note</0>: The network will be marked for deletion and removed after all connected virtual machines are disconnected.": "<0>Note</0>: The network will be marked for deletion and removed after all connected virtual machines are disconnected.",
"<0>Open an SSH connection with the VM using the cluster API server. You must be able to access the API server and have virtctl command line tool installed.</0><br /><2>For more details, see <2>Installing virtctl</2> in Getting started with OpenShift Virtualization.</2>": "<0>Open an SSH connection with the VM using the cluster API server. You must be able to access the API server and have virtctl command line tool installed.</0><br /><2>For more details, see <2>Installing virtctl</2> in Getting started with OpenShift Virtualization.</2>",
"<0>Select the storage to migrate for <2>{{vmsCount}} VirtualMachines with {{volumesCount}} Volumes</2> from the source (current) storage class {{storageClasses}}</0>": "<0>Select the storage to migrate for <2>{{vmsCount}} VirtualMachines with {{volumesCount}} Volumes</2> from the source (current) storage class {{storageClasses}}</0>",
"<0>Select the storage to migrate for <2></2>from the source (current) storage class {{storageClasses}}</0>": "<0>Select the storage to migrate for <2></2>from the source (current) storage class {{storageClasses}}</0>",
"<0>Store the key in a project secret.</0><1>The key will be stored after the machine is created</1>": "<0>Store the key in a project secret.</0><1>The key will be stored after the machine is created</1>",
"<0>The descheduler evicts a running pod so that the pod can be rescheduled on a more suitable node.</0><br /><2>Note: This setting is disabled if the VirtualMachine is not live migratable.</2>": "<0>The descheduler evicts a running pod so that the pod can be rescheduled on a more suitable node.</0><br /><2>Note: This setting is disabled if the VirtualMachine is not live migratable.</2>",
"<0>This is a Windows VirtualMachine but no Service for the RDP (Remote Desktop Protocol) can be found.</0><br /><2>For better experience accessing Windows console, it is recommended to use the RDP.<1>Create RDP Service</1></2>": "<0>This is a Windows VirtualMachine but no Service for the RDP (Remote Desktop Protocol) can be found.</0><br /><2>For better experience accessing Windows console, it is recommended to use the RDP.<1>Create RDP Service</1></2>",
"<0>This will enable <2>DeclarativeHotplugVolumes</2> feature gate and allow ejecting CD-ROM disks and adding empty CD-ROM drives.</0>": "<0>This will enable <2>DeclarativeHotplugVolumes</2> feature gate and allow ejecting CD-ROM disks and adding empty CD-ROM drives.</0>",
"<0>Unattend.xml</0><1>Unattend can be used to configure windows setup and can be picked up several times during windows setup/configuration.</1><2><0>{t('Learn more')}</0></2>": "<0>Unattend.xml</0><1>Unattend can be used to configure windows setup and can be picked up several times during windows setup/configuration.</1><2><0>{t('Learn more')}</0></2>",
"<0>Welcome to</0><1>OpenShift Virtualization</1><2>Use OpenShift Virtualization to run and manage virtualized workloads alongside container workloads. You can manage both Linux and Windows virtual machines.</2><3>What do you want to do next?</3><4></4><5></5>": "<0>Welcome to</0><1>OpenShift Virtualization</1><2>Use OpenShift Virtualization to run and manage virtualized workloads alongside container workloads. You can manage both Linux and Windows virtual machines.</2><3>What do you want to do next?</3><4></4><5></5>",
"1 project selected": "1 project selected",
"1 VirtualMachine in {{namespace}} namespace?": "1 VirtualMachine in {{namespace}} namespace?",
"2xlarge": "2xlarge",
"3 (default)": "3 (default)",
"404: Not Found": "404: Not Found",
"4xlarge": "4xlarge",
"5 min": "5 min",
"8 min": "8 min",
"8xlarge": "8xlarge",
"A boot volume must be selected": "A boot volume must be selected",
"A ControllerRevision resource is cloned from the InstanceType when creating the VirtualMachine": "A ControllerRevision resource is cloned from the InstanceType when creating the VirtualMachine",
"A ControllerRevision resource is cloned from the Preference when creating the VirtualMachine": "A ControllerRevision resource is cloned from the Preference when creating the VirtualMachine",
"A list of matching Nodes will be provided on label input below.": "A list of matching Nodes will be provided on label input below.",
"a lowercase RFC 1123 label must consist of lower case alphanumeric characters or '-', and must start and end with an alphanumeric character": "a lowercase RFC 1123 label must consist of lower case alphanumeric characters or '-', and must start and end with an alphanumeric character",
"A physical network establishes a specific network configuration on cluster nodes. To get started, create a physical network.": "A physical network establishes a specific network configuration on cluster nodes. To get started, create a physical network.",
"A Project name must consist of lower case alphanumeric characters or ', and must start and end with an alphanumeric character (e.g. 'my-name' or '123-abc'). You must create a Namespace to be able to create projects that begin with 'openshift-', 'kubernetes-', or 'kube-'.": "A Project name must consist of lower case alphanumeric characters or ', and must start and end with an alphanumeric character (e.g. 'my-name' or '123-abc'). You must create a Namespace to be able to create projects that begin with 'openshift-', 'kubernetes-', or 'kube-'.",
"A saved search with this name already exists. Please choose a different name.": "A saved search with this name already exists. Please choose a different name.",
"A unique name for the application-aware quota": "A unique name for the application-aware quota",
"A unique name for the storage claim within the project": "A unique name for the storage claim within the project",
"A unique namespace for the storage claim within the project": "A unique namespace for the storage claim within the project",
"A valid URL should start with \"http://\" OR \"https://\" .": "A valid URL should start with \"http://\" OR \"https://\" .",
"A value of X means that the X latest versions will be kept": "A value of X means that the X latest versions will be kept",
"A VM reset is a hard power cycle and might cause data loss or corruption. Only reset if the VM is completely unresponsive.": "A VM reset is a hard power cycle and might cause data loss or corruption. Only reset if the VM is completely unresponsive.",
"Aborted": "Aborted",
"Access mode": "Access mode",
"Access Mode": "Access Mode",
"Access mode: {{accessMode}} / Volume mode: {{volumeMode}}": "Access mode: {{accessMode}} / Volume mode: {{volumeMode}}",
"Actions": "Actions",
"Activation key": "Activation key",
"Active users": "Active users",
"Active users ({{users}})": "Active users ({{users}})",
"Activity": "Activity",
"Add": "Add",
"Add a CD-ROM to the VirtualMachine configuration": "Add a CD-ROM to the VirtualMachine configuration",
"Add a new bootable volume to the cluster.": "Add a new bootable volume to the cluster.",
"Add a snapshot available on the cluster to the VirtualMachine.": "Add a snapshot available on the cluster to the VirtualMachine.",
"Add a volume already available on the cluster.": "Add a volume already available on the cluster.",
"Add affinity rule": "Add affinity rule",
"Add CD-ROM": "Add CD-ROM",
"Add Config Map, Secret, or Service Account": "Add Config Map, Secret, or Service Account",
"Add configuration": "Add configuration",
"Add disk": "Add disk",
"Add disk (hot plugged)": "Add disk (hot plugged)",
"Add expression": "Add expression",
"Add field": "Add field",
"Add GPU device": "Add GPU device",
"Add Host device": "Add Host device",
"Add label": "Add label",
"Add label to specify qualifying nodes": "Add label to specify qualifying nodes",
"Add label to specify qualifying projects": "Add label to specify qualifying projects",
"Add more": "Add more",
"Add network data": "Add network data",
"Add network interface": "Add network interface",
"Add new": "Add new",
"Add new values by referencing an existing config map, secret, or service account. Using these values requires mounting them manually to the VM.": "Add new values by referencing an existing config map, secret, or service account. Using these values requires mounting them manually to the VM.",
"Add public SSH key to project": "Add public SSH key to project",
"Add resources": "Add resources",
"Add source": "Add source",
"Add toleration": "Add toleration",
"Add toleration to specify qualifying Nodes": "Add toleration to specify qualifying Nodes",
"Add tolerations to allow a VirtualMachine to schedule onto Nodes with matching taints.": "Add tolerations to allow a VirtualMachine to schedule onto Nodes with matching taints.",
"Add volume": "Add volume",
"Add volume.": "Add volume.",
"Adding CD-ROM drive": "Adding CD-ROM drive",
"Additional column list": "Additional column list",
"Additional columns": "Additional columns",
"Additional disks types and interfaces are available when the VirtualMachine is stopped.": "Additional disks types and interfaces are available when the VirtualMachine is stopped.",
"Additional quota": "Additional quota",
"Additional quota limits": "Additional quota limits",
"Additional resources": "Additional resources",
"Additional workload limits (such as pods) can be added later using advanced configuration": "Additional workload limits (such as pods) can be added later using advanced configuration",
"Address": "Address",
"Advanced CD-ROM features": "Advanced CD-ROM features",
"advanced search": "advanced search",
"Advanced search": "Advanced search",
"Advanced settings": "Advanced settings",
"Advanced Settings": "Advanced Settings",
"Affected templates": "Affected templates",
"Affinity": "Affinity",
"Affinity rules": "Affinity rules",
"Affinity rules table": "Affinity rules table",
"Aggregation mode": "Aggregation mode",
"Alerts": "Alerts",
"Alerts ({{alertsQuantity}})": "Alerts ({{alertsQuantity}})",
"All": "All",
"All clusters": "All clusters",
"All projects": "All projects",
"All sources selected": "All sources selected",
"All templates": "All templates",
"All VirtualMachines must be running": "All VirtualMachines must be running",
"Allocating resources": "Allocating resources",
"Allocating resources, please wait for upload to start.": "Allocating resources, please wait for upload to start.",
"Allow automatic update": "Allow automatic update",
"Allow the creation of NodePort services for SSH connections to VirtualMachines. An address of a publicly available Node must be provided.": "Allow the creation of NodePort services for SSH connections to VirtualMachines. An address of a publicly available Node must be provided.",
"AllowAutoConverge allows the platform to compromise performance/availability of VMIs to guarantee successful VMI live migrations. Defaults to false.": "AllowAutoConverge allows the platform to compromise performance/availability of VMIs to guarantee successful VMI live migrations. Defaults to false.",
"AllowPostCopy enables post-copy live migrations. Such migrations allow even the busiest VMIs to successfully live-migrate. However, events like a network failure can cause a VMI crash. If set to true, migrations will still start in pre-copy, but switch to post-copy when CompletionTimeoutPerGiB triggers. Defaults to false.": "AllowPostCopy enables post-copy live migrations. Such migrations allow even the busiest VMIs to successfully live-migrate. However, events like a network failure can cause a VMI crash. If set to true, migrations will still start in pre-copy, but switch to post-copy when CompletionTimeoutPerGiB triggers. Defaults to false.",
"Allows concurrent access by multiple VirtualMachines": "Allows concurrent access by multiple VirtualMachines",
"Always": "Always",
"An activation key is a preshared authentication token that enables authorized users to register and configure systems. Organization administrators can browse to <2>Activation keys</2> to track an existing Activation key or use the Create activation key button to create a new one.": "An activation key is a preshared authentication token that enables authorized users to register and configure systems. Organization administrators can browse to <2>Activation keys</2> to track an existing Activation key or use the Create activation key button to create a new one.",
"An answer file is an XML-based file that contains setting definitions and values to use during Windows Setup": "An answer file is an XML-based file that contains setting definitions and values to use during Windows Setup",
"An error occured, The VirtualMachine was not updated. Click \"Reload\" to go back to the last valid state": "An error occured, The VirtualMachine was not updated. Click \"Reload\" to go back to the last valid state",
"An error occurred": "An error occurred",
"An error occurred during the cloning process": "An error occurred during the cloning process",
"An error occurred during the upload process": "An error occurred during the upload process",
"An error occurred.": "An error occurred.",
"An InstanceType must be selected": "An InstanceType must be selected",
"An OpenShift Lightspeed error occurred.": "An OpenShift Lightspeed error occurred.",
"An OpenShift project is an alternative representation of a Kubernetes namespace.": "An OpenShift project is an alternative representation of a Kubernetes namespace.",
"An unknown error occurred": "An unknown error occurred",
"and copy the download link URL": "and copy the download link URL",
"and copy the download link URL for the cloud base image": "and copy the download link URL for the cloud base image",
"and is preventing this view from showing their data.": "and is preventing this view from showing their data.",
"annotation key": "annotation key",
"annotation value": "annotation value",
"Annotations": "Annotations",
"Annotations cannot be edited for Red Hat templates": "Annotations cannot be edited for Red Hat templates",
"Annotations is an unstructured key value map stored with a resource that may be set by external tools to store and retrieve arbitrary metadata. They are not queryable and should be preserved when modifying objects.": "Annotations is an unstructured key value map stored with a resource that may be set by external tools to store and retrieve arbitrary metadata. They are not queryable and should be preserved when modifying objects.",
"Another user is currently connected to this VM’s console. Connecting now will disconnect their session. Would you like to continue connecting and disconnect the existing user, or try connecting later?": "Another user is currently connected to this VM’s console. Connecting now will disconnect their session. Would you like to continue connecting and disconnect the existing user, or try connecting later?",
"Any changes are lost upon reboot": "Any changes are lost upon reboot",
"Any time": "Any time",
"Application Aware Quota (AAQ)": "Application Aware Quota (AAQ)",
"Application-aware quotas": "Application-aware quotas",
"Applies only to VM specific resources, excluding pod overhead from the calculations.": "Applies only to VM specific resources, excluding pod overhead from the calculations.",
"Applies the quota to the selected project": "Applies the quota to the selected project",
"Applies to both VMs and their associated pods, tracking quota usage separately for each resource type.": "Applies to both VMs and their associated pods, tracking quota usage separately for each resource type.",
"Applies to pods that run VM workloads. Resource usage includes both VM and pod overhead.": "Applies to pods that run VM workloads. Resource usage includes both VM and pod overhead.",
"Apply": "Apply",
"Apply optimized StorageProfile settings": "Apply optimized StorageProfile settings",
"Apply rules": "Apply rules",
"Applying deletion protection to this VM will prevent deletion through the web console.": "Applying deletion protection to this VM will prevent deletion through the web console.",
"Applying the headless mode to this Virtual Machine will cause the VNC not be available if checked.": "Applying the headless mode to this Virtual Machine will cause the VNC not be available if checked.",
"Applying the start/pause mode to this Virtual Machine will cause it to partially reboot and pause.": "Applying the start/pause mode to this Virtual Machine will cause it to partially reboot and pause.",
"Architecture": "Architecture",
"Architecture type": "Architecture type",
"are not eligible for live migration and will not be migrated.": "are not eligible for live migration and will not be migrated.",
"Are you sure you want to": "Are you sure you want to",
"Are you sure you want to {{action}} <3>{{name}}</3>": "Are you sure you want to {{action}} <3>{{name}}</3>",
"Are you sure you want to {{actionName}} [<3>{{vmName}}</3>] in namespace [<5>{{vmNamespace}}</5>]?": "Are you sure you want to {{actionName}} [<3>{{vmName}}</3>] in namespace [<5>{{vmNamespace}}</5>]?",
"Are you sure you want to cancel?": "Are you sure you want to cancel?",
"Are you sure you want to delete": "Are you sure you want to delete",
"Are you sure you want to disable deletion protection for {{vmName}} in {{vmNamespace}}?": "Are you sure you want to disable deletion protection for {{vmName}} in {{vmNamespace}}?",
"Are you sure you want to disconnect ": "Are you sure you want to disconnect ",
"Are you sure you want to disconnect <1>{getName(vms[0])}</1> virtual machine from <3>{currentNetwork}</3> network?": "Are you sure you want to disconnect <1>{getName(vms[0])}</1> virtual machine from <3>{currentNetwork}</3> network?",
"Are you sure you want to eject the mounted ISO <1>{{source}}</1> from <4>{{cdromName}}</4>": "Are you sure you want to eject the mounted ISO <1>{{source}}</1> from <4>{{cdromName}}</4>",
"Are you sure you want to enable deletion protection for {{vmName}} in {{vmNamespace}}?": "Are you sure you want to enable deletion protection for {{vmName}} in {{vmNamespace}}?",
"Are you sure you want to leave this page?": "Are you sure you want to leave this page?",
"Are you sure you want to restore {{vmName}} from snapshot {{snapshotName}}?<6><0>Note: </0>Data from the last snapshot taken will be lost. To prevent losing current data, take another snapshot before restoring from this one.</6>": "Are you sure you want to restore {{vmName}} from snapshot {{snapshotName}}?<6><0>Note: </0>Data from the last snapshot taken will be lost. To prevent losing current data, take another snapshot before restoring from this one.</6>",
"As a default, the VirtualMachine CPU uses sockets to enable hotplug. You can also define the topology manually": "As a default, the VirtualMachine CPU uses sockets to enable hotplug. You can also define the topology manually",
"As new versions of a DataSource become available older versions will be replaced": "As new versions of a DataSource become available older versions will be replaced",
"Ask your cluster administrator for access permissions or select a different project (current project: {{currentNamespace}})": "Ask your cluster administrator for access permissions or select a different project (current project: {{currentNamespace}})",
"Assigns an external IP address to the VirtualMachine. This option requires a LoadBalancer Service backend": "Assigns an external IP address to the VirtualMachine. This option requires a LoadBalancer Service backend",
"Attach a virtual function network device to the VirtualMachine for high performance": "Attach a virtual function network device to the VirtualMachine for high performance",
"Attach existing sysprep": "Attach existing sysprep",
"Attach this data to a Virtual Machine operating system": "Attach this data to a Virtual Machine operating system",
"Attach VirtualMachine to multiple networks": "Attach VirtualMachine to multiple networks",
"Attached NVIDIA GPU resources": "Attached NVIDIA GPU resources",
"Auto converge": "Auto converge",
"Auto update": "Auto update",
"Auto-compute CPU and memory limits": "Auto-compute CPU and memory limits",
"AutoDetach Hotplug": "AutoDetach Hotplug",
"Automatic images download": "Automatic images download",
"Automatic subscription of new RHEL VirtualMachines": "Automatic subscription of new RHEL VirtualMachines",
"Automatic update and scheduling": "Automatic update and scheduling",
"Automatic updates": "Automatic updates",
"Automatically apply this key to any new VirtualMachine you create in this project.": "Automatically apply this key to any new VirtualMachine you create in this project.",
"Automatically pull updates from the RHEL repository. Activation key and Organization ID are mandatory to enable this.": "Automatically pull updates from the RHEL repository. Activation key and Organization ID are mandatory to enable this.",
"Automatically selected Node": "Automatically selected Node",
"Autounattend.xml answer file": "Autounattend.xml answer file",
"Available": "Available",
"Available only on Nodes with labels": "Available only on Nodes with labels",
"Available volumes": "Available volumes",
"Average": "Average",
"Back": "Back",
"Back to form": "Back to form",
"Back to form (Deletes DataVolume)": "Back to form (Deletes DataVolume)",
"Back to VirtualMachines list": "Back to VirtualMachines list",
"Balances performance, compatible with a broad range of workloads": "Balances performance, compatible with a broad range of workloads",
"Bandwidth": "Bandwidth",
"Bandwidth consumption": "Bandwidth consumption",
"Bandwidth per migration": "Bandwidth per migration",
"BandwidthPerMigration limits the amount of network bandwith live migrations are allowed to use. The value is in quantity per second. Defaults to 0 (no limit).": "BandwidthPerMigration limits the amount of network bandwith live migrations are allowed to use. The value is in quantity per second. Defaults to 0 (no limit).",
"Base template": "Base template",
"Based on the file extension it seems like you are trying to upload a file which is not supported ({{fileNameExtText}}).": "Based on the file extension it seems like you are trying to upload a file which is not supported ({{fileNameExtText}}).",
"Before creating a virtual machine, we recommend that you configure the public SSH key. It will be saved in the project as a secret. You can configure the public SSH key at a later time, but this is the easiest way.": "Before creating a virtual machine, we recommend that you configure the public SSH key. It will be saved in the project as a secret. You can configure the public SSH key at a later time, but this is the easiest way.",
"Before uploading to a registry, it is recommended to remove any private information from the image": "Before uploading to a registry, it is recommended to remove any private information from the image",
"Before you boot the VirtualMachine (VM) for the first time, add a public SSH key. Only RHEL 9+ versions support dynamic key injection, and you must enable dynamic SSH when you create the VM.": "Before you boot the VirtualMachine (VM) for the first time, add a public SSH key. Only RHEL 9+ versions support dynamic key injection, and you must enable dynamic SSH when you create the VM.",
"Binding": "Binding",
"BIOS": "BIOS",
"Blank": "Blank",
"Block": "Block",
"Boot disk": "Boot disk",
"Boot from CD": "Boot from CD",
"Boot from CD requires an image file i.e. ISO, qcow, etc. that will be mounted to the VirtualMachine as a CD": "Boot from CD requires an image file i.e. ISO, qcow, etc. that will be mounted to the VirtualMachine as a CD",
"Boot management": "Boot management",
"Boot mode": "Boot mode",
"Boot order": "Boot order",
"Boot source": "Boot source",
"Boot source available": "Boot source available",
"Boot source reference cannot be edited": "Boot source reference cannot be edited",
"Boot source type": "Boot source type",
"bootable": "bootable",
"Bootable volume: {{bootableVolumeName}}": "Bootable volume: {{bootableVolumeName}}",
"Bootable volumes": "Bootable volumes",
"Bootable volumes project": "Bootable volumes project",
"Breakdown by network": "Breakdown by network",
"Bridge": "Bridge",
"Build with guided documentation": "Build with guided documentation",
"By CPU": "By CPU",
"By IOPS": "By IOPS",
"By memory": "By memory",
"By memory swap traffic": "By memory swap traffic",
"By read latency": "By read latency",
"By throughput": "By throughput",
"By vCPU wait": "By vCPU wait",
"By write latency": "By write latency",
"Can not configure dedicated resources if the VirtualMachine is created from Instance Type": "Can not configure dedicated resources if the VirtualMachine is created from Instance Type",
"Can not delete in view-only mode": "Can not delete in view-only mode",
"Can not edit in view-only mode": "Can not edit in view-only mode",
"Cancel": "Cancel",
"Cancel compute migration": "Cancel compute migration",
"Cancel error": "Cancel error",
"Cancel migration": "Cancel migration",
"Cancel upload": "Cancel upload",
"Cancel Upload": "Cancel Upload",
"Canceled": "Canceled",
"Canceling ongoing migration": "Canceling ongoing migration",
"Cancelling upload": "Cancelling upload",
"Cannot cancel migration for \"{{ status }}\" status": "Cannot cancel migration for \"{{ status }}\" status",
"Cannot update": "Cannot update",
"Capacity": "Capacity",
"Catalog": "Catalog",
"CatalogSource not found": "CatalogSource not found",
"Category": "Category",
"CD source": "CD source",
"CD source represents the source for our disk, this can be HTTP, Registry or an existing PVC": "CD source represents the source for our disk, this can be HTTP, Registry or an existing PVC",
"CD-ROM": "CD-ROM",
"CD-ROM drive will be added to the VirtualMachine when it is stopped and restarted.": "CD-ROM drive will be added to the VirtualMachine when it is stopped and restarted.",
"CD-ROM source": "CD-ROM source",
"CD-ROM type is automatically set and cannot be changed": "CD-ROM type is automatically set and cannot be changed",
"CDI Error: Could not initiate Data Volume": "CDI Error: Could not initiate Data Volume",
"CentOS cloud image list ": "CentOS cloud image list ",
"Certificate error occurred.": "Certificate error occurred.",
"Change boot mode": "Change boot mode",
"Change boot order": "Change boot order",
"Channel": "Channel",
"Check logs": "Check logs",
"check this option to add network data section to the cloud-init script.": "check this option to add network data section to the cloud-init script.",
"Check your cluster readiness to run Virtualization workloads and verify it meets the system requirements needed to run VirtualMachines.": "Check your cluster readiness to run Virtualization workloads and verify it meets the system requirements needed to run VirtualMachines.",
"Checking for usages of this PVC...": "Checking for usages of this PVC...",
"Checking this option will create a new PVC of the bootsource for the new template": "Checking this option will create a new PVC of the bootsource for the new template",
"Checking this will mark the feature as installed. Installation and configuration are the responsibility of the user.": "Checking this will mark the feature as installed. Installation and configuration are the responsibility of the user.",
"Checkup image": "Checkup image",
"Checkup not found": "Checkup not found",
"Checkup progress": "Checkup progress",
"Checkups": "Checkups",
"Choose the target location for your VirtualMachines, then adjust your migration plan if necessary": "Choose the target location for your VirtualMachines, then adjust your migration plan if necessary",
"Clear all": "Clear all",
"Clear all filters": "Clear all filters",
"Clear search": "Clear search",
"CLI": "CLI",
"Click \"Configure features\" to install this feature": "Click \"Configure features\" to install this feature",
"Click <1>{{createButtonText}}</1> to create your first {{kind}}": "Click <1>{{createButtonText}}</1> to create your first {{kind}}",
"Click <1>Add bootable volume</1> to add your first bootable volume": "Click <1>Add bootable volume</1> to add your first bootable volume",
"Click <1>Create MigrationPolicy</1> to create your first policy": "Click <1>Create MigrationPolicy</1> to create your first policy",
"Click <1>Create quota</1> to create your first application-aware quota to limit VMs, pods, or both.": "Click <1>Create quota</1> to create your first application-aware quota to limit VMs, pods, or both.",
"Click <1>Create Template</1> to create your first template": "Click <1>Create Template</1> to create your first template",
"Click <1>Create VirtualMachine</1> to create your first VirtualMachine or view the <4>catalog</4> tab to create a VirtualMachine from the available options": "Click <1>Create VirtualMachine</1> to create your first VirtualMachine or view the <4>catalog</4> tab to create a VirtualMachine from the available options",
"Click <1>Create VirtualMachineInstanceType</1> to create your first VirtualMachineInstanceType": "Click <1>Create VirtualMachineInstanceType</1> to create your first VirtualMachineInstanceType",
"Click <1>Create VirtualMachinePreference</1> to create your first VirtualMachinePreference": "Click <1>Create VirtualMachinePreference</1> to create your first VirtualMachinePreference",
"Click Connect to open serial console.": "Click Connect to open serial console.",
"Click Connect to open the VNC console.": "Click Connect to open the VNC console.",
"Clone": "Clone",
"Clone {{kind}}": "Clone {{kind}}",
"Clone {{sourceKind}}": "Clone {{sourceKind}}",
"Clone a VirtualMachine": "Clone a VirtualMachine",
"Clone a volume available on the cluster and add it to the VirtualMachine. ": "Clone a volume available on the cluster and add it to the VirtualMachine. ",
"Clone existing Volume": "Clone existing Volume",
"Clone in progress": "Clone in progress",
"Clone template": "Clone template",
"Clone volume": "Clone volume",
"Cloning": "Cloning",
"Close": "Close",
"Close header": "Close header",
"Closing it will cause the upload to fail. You may still navigate the console.": "Closing it will cause the upload to fail. You may still navigate the console.",
"Cloud-init": "Cloud-init",
"Cloud-init and SSH key configurations will be applied to the VirtualMachine only at the first boot.": "Cloud-init and SSH key configurations will be applied to the VirtualMachine only at the first boot.",
"Cluster": "Cluster",
"Cluster InstanceTypes": "Cluster InstanceTypes",
"Cluster is already selected. To update filters, choose another project or cluster in the tree view.": "Cluster is already selected. To update filters, choose another project or cluster in the tree view.",
"Cluster observability": "Cluster observability",
"Cluster observability (COO)": "Cluster observability (COO)",
"Cluster preferences": "Cluster preferences",
"Cluster Preferences": "Cluster Preferences",
"Cluster scope migrations": "Cluster scope migrations",
"Cluster-scoped": "Cluster-scoped",
"Cluster-wide UserDefinedNetworks": "Cluster-wide UserDefinedNetworks",
"Cluster: {{clusterName}}": "Cluster: {{clusterName}}",
"Cluster's default network": "Cluster's default network",
"Clusters": "Clusters",
"Collapse": "Collapse",
"Collapse all": "Collapse all",
"Column management": "Column management",
"Complete time": "Complete time",
"Complete time:": "Complete time:",
"Completed": "Completed",
"Completed successfully": "Completed successfully",
"Completion time": "Completion time",
"Completion timeout": "Completion timeout",
"CompletionTimeoutPerGiB is the maximum number of seconds per GiB a migration is allowed to take. If a live-migration takes longer to migrate than this value multiplied by the size of the VMI, the migration will be cancelled, unless AllowPostCopy is true. Defaults to 800.": "CompletionTimeoutPerGiB is the maximum number of seconds per GiB a migration is allowed to take. If a live-migration takes longer to migrate than this value multiplied by the size of the VMI, the migration will be cancelled, unless AllowPostCopy is true. Defaults to 800.",
"Compute": "Compute",
"Compute compatibility": "Compute compatibility",
"Compute-intensive applications": "Compute-intensive applications",
"Condition": "Condition",
"Conditions": "Conditions",
"Conditions provide a standard mechanism for status reporting. Conditions are reported for all aspects of a VM.": "Conditions provide a standard mechanism for status reporting. Conditions are reported for all aspects of a VM.",
"Conditions table": "Conditions table",
"config map / secret / service account": "config map / secret / service account",
"Config Maps": "Config Maps",
"ConfigMap not found": "ConfigMap not found",
"ConfigMaps": "ConfigMaps",
"Configuration": "Configuration",
"Configuration drawer": "Configuration drawer",
"Configuration name": "Configuration name",
"Configurations": "Configurations",
"Configurations table": "Configurations table",
"Configure features": "Configure features",
"Configure memory density": "Configure memory density",
"Configure Nodes": "Configure Nodes",
"Configure the requirements for running VirtualMachines and virtualization workloads. Select the default Virtualization configurations or set it by yourself in the operator hub.": "Configure the requirements for running VirtualMachines and virtualization workloads. Select the default Virtualization configurations or set it by yourself in the operator hub.",
"Configure via:": "Configure via:",
"Configured state: {{ configuredState}}": "Configured state: {{ configuredState}}",
"Configures the VM workloads to use swap for higher density": "Configures the VM workloads to use swap for higher density",
"Confirm requested VirtualMachine actions before executing them": "Confirm requested VirtualMachine actions before executing them",
"Confirm VirtualMachine actions": "Confirm VirtualMachine actions",
"Connect": "Connect",
"Connect with any viewer application for following protocols": "Connect with any viewer application for following protocols",
"Connected projects": "Connected projects",
"Connected virtual machines": "Connected virtual machines",
"Connecting": "Connecting",
"Connection did not close cleanly.": "Connection did not close cleanly.",
"Console": "Console",
"Console is disabled in headless mode": "Console is disabled in headless mode",
"Container": "Container",
"Container (Ephemeral)": "Container (Ephemeral)",
"Container disk": "Container disk",
"Container Image": "Container Image",
"Container is required.": "Container is required.",
"Content from container registry": "Content from container registry",
"Control": "Control",
"Controls how AAQ counts resource usage for quotas.": "Controls how AAQ counts resource usage for quotas.",
"Controls whether non-admin users can access YAML configurations for virtualization objects in the UI (VirtualMachines, VirtualMachineInstances, Templates, DataSources, DataImportCrons, MigrationPolicies, Checkups, and VM Networks).": "Controls whether non-admin users can access YAML configurations for virtualization objects in the UI (VirtualMachines, VirtualMachineInstances, Templates, DataSources, DataImportCrons, MigrationPolicies, Checkups, and VM Networks).",
"Controls whether the teardown steps should be skipped after checkup completion": "Controls whether the teardown steps should be skipped after checkup completion",
"Copied": "Copied",
"Copy FQDN": "Copy FQDN",
"Copy SSH command": "Copy SSH command",
"Copy template's boot source disk": "Copy template's boot source disk",
"Copy to clipboard": "Copy to clipboard",
"Copying files": "Copying files",
"Cores": "Cores",
"Could not create persistent volume claim": "Could not create persistent volume claim",
"Could not download results file": "Could not download results file",
"counts only VM resources, while pod overhead is excluded.": "counts only VM resources, while pod overhead is excluded.",
"counts the full pod running the VM, including overhead.": "counts the full pod running the VM, including overhead.",
"CPU": "CPU",
"CPU | Memory": "CPU | Memory",
"CPU used": "CPU used",
"CPUs": "CPUs",
"CPUs = sockets x threads x cores.": "CPUs = sockets x threads x cores.",
"Create": "Create",
"Create {{kind}}": "Create {{kind}}",
"create a bootable volume automatically by using pipelines": "create a bootable volume automatically by using pipelines",
"Create a copy of the VirtualMachine from snapshot": "Create a copy of the VirtualMachine from snapshot",
"Create a disk with no contents.": "Create a disk with no contents.",
"Create a Kube Descheduler with KubeVirtRelieveAndMigrate profile to use this feature.": "Create a Kube Descheduler with KubeVirtRelieveAndMigrate profile to use this feature.",
"Create a new blank PVC": "Create a new blank PVC",
"Create a new custom Template": "Create a new custom Template",
"Create a Virtual Machine from a template": "Create a Virtual Machine from a template",
"Create a virtual machines network using this physical network": "Create a virtual machines network using this physical network",
"Create a Windows bootable volume": "Create a Windows bootable volume",
"Create activation key": "Create activation key",
"Create application-aware quota": "Create application-aware quota",
"Create bootable volume": "Create bootable volume",
"Create DataSource": "Create DataSource",
"Create folder \"{{filterValue}}\"": "Create folder \"{{filterValue}}\"",
"Create MigrationPolicy": "Create MigrationPolicy",
"Create network": "Create network",
"Create new sysprep": "Create new sysprep",
"Create new VirtualMachine": "Create new VirtualMachine",
"Create physical network": "Create physical network",
"Create project": "Create project",
"Create quota": "Create quota",
"Create Template": "Create Template",
"Create Virtual Machine": "Create Virtual Machine",
"Create virtual machine network": "Create virtual machine network",
"Create VirtualMachine": "Create VirtualMachine",
"Create VirtualMachine error": "Create VirtualMachine error",
"Create VirtualMachine from snapshot": "Create VirtualMachine from snapshot",
"Create VirtualMachineInstanceType": "Create VirtualMachineInstanceType",
"Create VirtualMachinePreference": "Create VirtualMachinePreference",
"Create with no available boot source": "Create with no available boot source",
"Created": "Created",
"Created at": "Created at",
"Creates a DataImportCron, which defines a cron job to poll and import the disk image.": "Creates a DataImportCron, which defines a cron job to poll and import the disk image.",
"Creates an OVN Localnet network. Additional configuration required.": "Creates an OVN Localnet network. Additional configuration required.",
"CreationTimestamp is a timestamp representing the server time when this object was created. It is not guaranteed to be set in happens-before order across separate operations. 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. It is not guaranteed to be set in happens-before order across separate operations. Clients may not set this value. It is represented in RFC3339 form and is in UTC.",
"Critical": "Critical",
"Cron expression": "Cron expression",
"Cross cluster migration": "Cross cluster migration",
"Cross-cluster migration": "Cross-cluster migration",
"Cross-cluster migration is not supported on this cluster.": "Cross-cluster migration is not supported on this cluster.",
"current": "current",
"Current default StorageClass for VirtualMachines": "Current default StorageClass for VirtualMachines",
"Current memory density: {{percentage}}%": "Current memory density: {{percentage}}%",
"Currently running": "Currently running",
"Custom": "Custom",
"Custom...": "Custom...",
"Customize and create VirtualMachine": "Customize and create VirtualMachine",
"Customize template parameters": "Customize template parameters",
"Customize VirtualMachine": "Customize VirtualMachine",
"CX series": "CX series",
"CX Series": "CX Series",
"cx1": "cx1",
"D series": "D series",
"Data Processed": "Data Processed",
"Data read: {{input}}": "Data read: {{input}}",
"Data Remaining": "Data Remaining",
"Data transfer: {{input}}": "Data transfer: {{input}}",
"Data Volume failed to initiate upload, you can either delete the Data Volume and try again, or check logs": "Data Volume failed to initiate upload, you can either delete the Data Volume and try again, or check logs",
"Data Volume failed to initiate upload.": "Data Volume failed to initiate upload.",
"Data written: {{input}}": "Data written: {{input}}",
"DataImportCron": "DataImportCron",
"DataImportCron available": "DataImportCron available",
"DataImportCron details": "DataImportCron details",
"DataImportCron Details": "DataImportCron Details",
"DataImportCrons": "DataImportCrons",
"DataSource": "DataSource",
"DataSource details": "DataSource details",
"DataSource Details": "DataSource Details",
"DataSources": "DataSources",
"DataVolume status": "DataVolume status",
"DataVolume Status is a mechanism for reporting if a volume succeed.": "DataVolume Status is a mechanism for reporting if a volume succeed.",
"DataVolumes": "DataVolumes",
"Date created": "Date created",
"Date created from": "Date created from",
"Date created to": "Date created to",
"Date To cannot be before Date From": "Date To cannot be before Date From",
"Deadline": "Deadline",
"Deadline must be a number": "Deadline must be a number",
"Deadline must be greater than 0": "Deadline must be greater than 0",
"Decrement": "Decrement",
"Dedicated resources": "Dedicated resources",
"Dedicated virtual resources": "Dedicated virtual resources",
"default": "default",
"Default": "Default",
"Default {{resourceKind}} columns": "Default {{resourceKind}} columns",
"Default column list": "Default column list",
"Default InstanceType": "Default InstanceType",
"Default templates": "Default templates",
"Default value for this parameter": "Default value for this parameter",
"Default value type": "Default value type",
"Default values": "Default values",
"Default: 10": "Default: 10",
"Default: 3 minutes": "Default: 3 minutes",
"Define a virtual network providing access to the physical underlay through a selected node network mapping. Learn more about <2>virtual machine networks</2>.": "Define a virtual network providing access to the physical underlay through a selected node network mapping. Learn more about <2>virtual machine networks</2>.",
"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 and monitor quotas for virtual machines and pods using Application Aware Quota. AAQ provides more accurate quota enforcement for virtualized workloads and is designed to fully replace Kubernetes ResourceQuota.": "Define and monitor quotas for virtual machines and pods using Application Aware Quota. AAQ provides more accurate quota enforcement for virtualized workloads and is designed to fully replace Kubernetes ResourceQuota.",
"Delete": "Delete",
"Delete {{kind}}": "Delete {{kind}}",
"Delete {{kind}} source <3>{{name}}</3> in namespace <6>{{namespace}}</6>": "Delete {{kind}} source <3>{{name}}</3> in namespace <6>{{namespace}}</6>",
"Delete {{volumeResourceName}} {{modelLabel}}": "Delete {{volumeResourceName}} {{modelLabel}}",
"Delete checkup": "Delete checkup",
"Delete Data Volume: {{pvcName}}": "Delete Data Volume: {{pvcName}}",
"Delete DataImportCron?": "Delete DataImportCron?",
"Delete DataSource?": "Delete DataSource?",
"Delete job": "Delete job",
"Delete migration plan?": "Delete migration plan?",
"Delete MigrationPolicy?": "Delete MigrationPolicy?",
"Delete network?": "Delete network?",
"Delete NIC?": "Delete NIC?",
"Delete quota": "Delete quota",
"Delete quota?": "Delete quota?",
"Delete Resource?": "Delete Resource?",
"Delete saved search": "Delete saved search",
"Delete Service": "Delete Service",
"Delete snapshot": "Delete snapshot",
"Delete source": "Delete source",
"Delete VirtualMachine Template?": "Delete VirtualMachine Template?",
"Delete VirtualMachine?": "Delete VirtualMachine?",
"Delete VirtualMachineClusterInstancetype?": "Delete VirtualMachineClusterInstancetype?",
"Delete VirtualMachineClusterPreference?": "Delete VirtualMachineClusterPreference?",
"Delete VirtualMachineInstance": "Delete VirtualMachineInstance",
"Delete VirtualMachineInstance?": "Delete VirtualMachineInstance?",
"Delete VirtualMachineInstancetype?": "Delete VirtualMachineInstancetype?",
"Delete VirtualMachinePreference?": "Delete VirtualMachinePreference?",
"Delete VirtualMachineSnapshot?": "Delete VirtualMachineSnapshot?",
"Deleting": "Deleting",
"Deleting a network interface is supported only on VirtualMachines that were created in versions greater than 4.13.": "Deleting a network interface is supported only on VirtualMachines that were created in versions greater than 4.13.",
"Deletion protection": "Deletion protection",
"Delivers real-time, in-depth metrics and a fully functional Cluster Health Dashboard.": "Delivers real-time, in-depth metrics and a fully functional Cluster Health Dashboard.",
"Deprecated": "Deprecated",
"Descheduler": "Descheduler",
"Description": "Description",
"Description of the VirtualMachine": "Description of the VirtualMachine",
"description text area": "description text area",
"Desktop": "Desktop",
"Desktop viewer": "Desktop viewer",
"Destination": "Destination",
"Destination details": "Destination details",
"Destination project": "Destination project",
"Destination StorageClass": "Destination StorageClass",
"Detach": "Detach",
"Detach disk?": "Detach disk?",
"Detach sysprep": "Detach sysprep",
"Details": "Details",
"Detect failed Nodes and trigger remediation with a remediation operator.": "Detect failed Nodes and trigger remediation with a remediation operator.",
"Detected changes:": "Detected changes:",
"Detected file extension is {{fileNameExtension}}": "Detected file extension is {{fileNameExtension}}",
"Developer preview": "Developer preview",
"Developer Preview": "Developer Preview",
"Developer preview features are not intended to use in production environments. The clusters deployed with the developer preview features are developmental clusters and are not currently supported by Red Hat.": "Developer preview features are not intended to use in production environments. The clusters deployed with the developer preview features are developmental clusters and are not currently supported by Red Hat.",
"Device name": "Device name",
"Diagnostics": "Diagnostics",
"DIC": "DIC",
"Disable": "Disable",
"Disable deletion protection?": "Disable deletion protection?",
"Disable memory density?": "Disable memory density?",
"Disable YAML tab for non-admins": "Disable YAML tab for non-admins",
"Disabled": "Disabled",
"Disabling Deletion Protection will allow you to delete this VirtualMachine. VirtualMachine deletion can result in data loss or service disruption.": "Disabling Deletion Protection will allow you to delete this VirtualMachine. VirtualMachine deletion can result in data loss or service disruption.",
"Disabling memory density will reset the memory overcommit percentage to 100%. This change will affect all VMs as they are migrated or restarted.": "Disabling memory density will reset the memory overcommit percentage to 100%. This change will affect all VMs as they are migrated or restarted.",
"Disconnect": "Disconnect",
"Disconnect user and connect": "Disconnect user and connect",
"Disconnect virtual machine from network": "Disconnect virtual machine from network",
"Disconnect virtual machine from this network?": "Disconnect virtual machine from this network?",
"Disconnect virtual machines from this network?": "Disconnect virtual machines from this network?",
"Disk size": "Disk size",
"Disk size will be determined by the volume snapshot size": "Disk size will be determined by the volume snapshot size",
"Disk source": "Disk source",
"Disk Source represents the source for our disk, this can be HTTP, Registry or an existing PVC": "Disk Source represents the source for our disk, this can be HTTP, Registry or an existing PVC",
"Disk Type": "Disk Type",
"Disks": "Disks",
"Disks ({{disks}})": "Disks ({{disks}})",
"Disks included in this snapshot ({{volumes}})": "Disks included in this snapshot ({{volumes}})",
"Disks tab": "Disks tab",
"Display name": "Display name",
"display name text area": "display name text area",
"Displays real-time metrics of the live migration process, such as memory transfer and downtime.": "Displays real-time metrics of the live migration process, such as memory transfer and downtime.",
"Do not show this again": "Do not show this again",
"Documentation": "Documentation",
"Domain": "Domain",
"Down": "Down",
"Download": "Download",
"Download results": "Download results",
"Download the MSI from ": "Download the MSI from ",
"Download the virtctl command-line utility": "Download the virtctl command-line utility",
"Drag and drop a certificate file or paste PEM content": "Drag and drop a certificate file or paste PEM content",
"Drag and drop an image or upload one": "Drag and drop an image or upload one",
"Drive": "Drive",
"Drive {{index}}": "Drive {{index}}",
"Drivers": "Drivers",
"Dry run": "Dry run",
"DS": "DS",
"Duplicate keys found": "Duplicate keys found",
"Duration": "Duration",
"Dynamic": "Dynamic",
"Dynamic SSH key injection": "Dynamic SSH key injection",
"Dynamic SSH key injection is not enabled in this virtual machine.": "Dynamic SSH key injection is not enabled in this virtual machine.",
"E.g., 0%:10% means to mark every node with utilization below average as underutilized, and every node with utilization more than 10% above average as overutilized.": "E.g., 0%:10% means to mark every node with utilization below average as underutilized, and every node with utilization more than 10% above average as overutilized.",
"e1000e": "e1000e",
"Ease operational complexity with virtualization by using Operators.": "Ease operational complexity with virtualization by using Operators.",
"Edit": "Edit",
"Edit {{kind}}": "Edit {{kind}}",
"Edit affinity rule": "Edit affinity rule",
"Edit annotations": "Edit annotations",
"Edit Annotations": "Edit Annotations",
"Edit application-aware quota": "Edit application-aware quota",
"Edit boot source": "Edit boot source",
"Edit boot source reference": "Edit boot source reference",
"Edit CPU | Memory": "Edit CPU | Memory",
"Edit disk": "Edit disk",
"Edit Display name": "Edit Display name",
"Edit hostname": "Edit hostname",
"Edit InstanceType": "Edit InstanceType",
"Edit labels": "Edit labels",
"Edit Labels": "Edit Labels",
"Edit MigrationPolicy": "Edit MigrationPolicy",
"Edit network definition": "Edit network definition",
"Edit network interface": "Edit network interface",
"Edit Pod selector": "Edit Pod selector",
"Edit projects mapping": "Edit projects mapping",
"Edit quota": "Edit quota",
"Edit quota calculation method": "Edit quota calculation method",
"Edit Service": "Edit Service",
"Edit the disk or contact your cluster admin for further details._one": "Edit the disk or contact your cluster admin for further details.",
"Edit the disk or contact your cluster admin for further details._other": "Edit the disk or contact your cluster admin for further details.",
"Edit the disks or contact your cluster admin for further details._one": "Edit the disks or contact your cluster admin for further details.",
"Edit the disks or contact your cluster admin for further details._other": "Edit the disks or contact your cluster admin for further details.",
"Edit VirtualMachine name": "Edit VirtualMachine name",
"Edit volume metadata": "Edit volume metadata",
"Edit workload profile": "Edit workload profile",
"Edit YAML": "Edit YAML",
"Editing the DataSource will affect <2>all templates</2> that are currently using this DataSource.": "Editing the DataSource will affect <2>all templates</2> that are currently using this DataSource.",
"Effect": "Effect",
"Eject": "Eject",
"Eject ISO": "Eject ISO",
"Elapsed time": "Elapsed time",
"Elapsed time since login": "Elapsed time since login",
"Empty": "Empty",
"Empty disk (blank)": "Empty disk (blank)",
"Enable": "Enable",
"Enable advanced CD-ROM features": "Enable advanced CD-ROM features",
"Enable auto updates for RHEL VirtualMachines": "Enable auto updates for RHEL VirtualMachines",
"Enable automatic images download and update": "Enable automatic images download and update",
"Enable automatic subscription for Red Hat Enterprise Linux VirtualMachines.\n": "Enable automatic subscription for Red Hat Enterprise Linux VirtualMachines.\n",
"Enable deletion protection?": "Enable deletion protection?",
"Enable folders in Virtual Machines tree view": "Enable folders in Virtual Machines tree view",
"Enable guest system log access": "Enable guest system log access",
"Enable headless mode": "Enable headless mode",
"Enable load-aware descheduling": "Enable load-aware descheduling",
"Enable Passt binding for primary user-defined networks": "Enable Passt binding for primary user-defined networks",
"Enable Passt to SSH your VirtualMachine using virtctl": "Enable Passt to SSH your VirtualMachine using virtctl",
"Enable persistent reservation": "Enable persistent reservation",
"Enable preallocation": "Enable preallocation",
"Enable predictive analytics": "Enable predictive analytics",
"Enable the creation of LoadBalancer services for SSH connections to VirtualMachines. A load balancer must be configured": "Enable the creation of LoadBalancer services for SSH connections to VirtualMachines. A load balancer must be configured",
"Enabled": "Enabled",
"Enables access to the VirtualMachine guest system log. Wait a few seconds for logging to start before viewing the log.": "Enables access to the VirtualMachine guest system log. Wait a few seconds for logging to start before viewing the log.",
"Enables access to the VirtualMachine's guest system log. Wait a few seconds for logging to start before viewing the log.": "Enables access to the VirtualMachine's guest system log. Wait a few seconds for logging to start before viewing the log.",
"Enactment state": "Enactment state",
"Enactment state table": "Enactment state table",
"Ensure the projects for this network have the labels you specified.": "Ensure the projects for this network have the labels you specified.",
"Ensure your PVC size covers the requirements of the uncompressed image and any other space requirements.": "Ensure your PVC size covers the requirements of the uncompressed image and any other space requirements.",
"Enter a container image (for example: {{containerDisk}})": "Enter a container image (for example: {{containerDisk}})",
"Enter a name for the device to be assigned and select it from the dropdown menu. Click <2> Save</2>.<br /> Click <7>+ Add {{hardwareType}} device</7> to add another devices.": "Enter a name for the device to be assigned and select it from the dropdown menu. Click <2> Save</2>.<br /> Click <7>+ Add {{hardwareType}} device</7> to add another devices.",
"Enter key=value": "Enter key=value",
"Enter node address": "Enter node address",
"Enter one or more IP addresses and use commas to separate multiple addresses. Each address should include the subnet mask to properly configure the network interface.<br />Example: 192.168.6.25/22,2001:470:e091:6::25/64": "Enter one or more IP addresses and use commas to separate multiple addresses. Each address should include the subnet mask to properly configure the network interface.<br />Example: 192.168.6.25/22,2001:470:e091:6::25/64",
"Enter URL to download. For example:": "Enter URL to download. For example:",
"Enter URL to download. For example: ": "Enter URL to download. For example: ",
"Enter value": "Enter value",
"Environment": "Environment",
"environment disk": "environment disk",
"Ephemeral": "Ephemeral",
"Ephemeral disk (Container image)": "Ephemeral disk (Container image)",
"Ephemeral storage limits": "Ephemeral storage limits",
"Ephemeral storage requests": "Ephemeral storage requests",
"Equals": "Equals",
"Error": "Error",
"Error checking for usages of this PVC.": "Error checking for usages of this PVC.",
"Error details": "Error details",
"Error loading networks": "Error loading networks",
"Error loading progress": "Error loading progress",
"Error loading results": "Error loading results",
"Error loading the VirtualMachineSnapshotContent": "Error loading the VirtualMachineSnapshotContent",
"Error uploading data": "Error uploading data",
"Ethernet name": "Ethernet name",
"Events": "Events",
"Eviction strategy": "Eviction strategy",
"EvictionStrategy can be set to \"LiveMigrate\" if the VirtualMachineInstance should be migrated instead of shut-off in case of a node drain.": "EvictionStrategy can be set to \"LiveMigrate\" if the VirtualMachineInstance should be migrated instead of shut-off in case of a node drain.",
"Example (At 00:00 on Tuesday): {{exampleCron}}": "Example (At 00:00 on Tuesday): {{exampleCron}}",
"Example (At 00:00 on Tuesday): 0 0 * * 2.": "Example (At 00:00 on Tuesday): 0 0 * * 2.",
"Example: ": "Example: ",
"Example: {{exampleURL}}": "Example: {{exampleURL}}",
"Example: For CentOS, visit the ": "Example: For CentOS, visit the ",
"Example: For Fedora, visit the ": "Example: For Fedora, visit the ",
"Example: For RHEL, visit the ": "Example: For RHEL, visit the ",
"Example: For Windows, get a link to the ": "Example: For Windows, get a link to the ",
"Example: quay.io/containerdisks/centos:7-2009": "Example: quay.io/containerdisks/centos:7-2009",
"Example: your company name": "Example: your company name",
"Expand all": "Expand all",
"Expand this network to a new set of Nodes.": "Expand this network to a new set of Nodes.",
"Explore {{kind}} list": "Explore {{kind}} list",
"Expose RDP Service": "Expose RDP Service",
"Extends ResourceQuota by managing quotas for VM workloads as well as pods and other resource limits. AAQ is virtualization-aware and helps prevent issues such as failing live migrations due to quota limits.": "Extends ResourceQuota by managing quotas for VM workloads as well as pods and other resource limits. AAQ is virtualization-aware and helps prevent issues such as failing live migrations due to quota limits.",
"Failed": "Failed",
"Failed tests ({{count}})_one": "Failed tests ({{count}})",
"Failed tests ({{count}})_other": "Failed tests ({{count}})",
"Failed to create resource": "Failed to create resource",
"Failed to download results. Please try again later.": "Failed to download results. Please try again later.",
"Failed to load searches": "Failed to load searches",
"Failed to load storage classes": "Failed to load storage classes",
"Failed to load TLS certificates": "Failed to load TLS certificates",
"Failed to modify {{resourceKind}}": "Failed to modify {{resourceKind}}",
"Failed to rerun checkup": "Failed to rerun checkup",
"Failed to retrieve the list of projects": "Failed to retrieve the list of projects",
"Failing": "Failing",
"Failure reason": "Failure reason",
"FAR is installed.": "FAR is installed.",
"Favorites": "Favorites",
"Feature highlights": "Feature highlights",
"Fedora cloud image list ": "Fedora cloud image list ",
"Fence agents remediation (FAR)": "Fence agents remediation (FAR)",
"Fence Agents Remediation (FAR)": "Fence Agents Remediation (FAR)",
"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 input is missing": "File input is missing",
"File is required.": "File is required.",
"File system type": "File system type",
"File systems": "File systems",
"File type extension": "File type extension",
"File type not supported. Supported types: .iso, .img, .qcow2, .gz, .xz": "File type not supported. Supported types: .iso, .img, .qcow2, .gz, .xz",
"Filesystem": "Filesystem",
"Filter": "Filter",
"Filter by keyword...": "Filter by keyword...",
"Filter nodes search input": "Filter nodes search input",
"Filter physical networks search input": "Filter physical networks search input",
"Find by name": "Find by name",
"Finish": "Finish",
"Flavor": "Flavor",
"Folder": "Folder",
"Folder name can't end with": "Folder name can't end with",
"Folder name can't start with": "Folder name can't start with",
"Follow guided documentation to build applications and familiarize yourself with key features.": "Follow guided documentation to build applications and familiarize yourself with key features.",
"Force stop": "Force stop",
"Form view": "Form view",
"Found {{count}} characters not supported by the selected keyboard layout:_one": "Found {{count}} characters not supported by the selected keyboard layout:",
"Found {{count}} characters not supported by the selected keyboard layout:_other": "Found {{count}} characters not supported by the selected keyboard layout:",
"FQDN": "FQDN",
"From": "From",
"From InstanceType": "From InstanceType",
"From Registry": "From Registry",
"From template": "From template",
"From URL": "From URL",
"General": "General",
"General purpose applications": "General purpose applications",
"General settings": "General settings",
"Generated (expression)": "Generated (expression)",
"Getting started": "Getting started",
"Getting started resources": "Getting started resources",
"GiB": "GiB",
"GN Series": "GN Series",
"gn1": "gn1",
"Go to catalog": "Go to catalog",
"Go to cluster settings": "Go to cluster settings",
"Golden image no DataSource": "Golden image no DataSource",
"Golden image not up to date": "Golden image not up to date",
"GPU devices": "GPU devices",
"GPU devices ({{gpusCount}})": "GPU devices ({{gpusCount}})",
"GPU limits (NVIDIA)": "GPU limits (NVIDIA)",
"GPU requests (NVIDIA)": "GPU requests (NVIDIA)",
"Greater or equals": "Greater or equals",
"Greater than": "Greater than",
"Guest agent is not installed on VirtualMachine": "Guest agent is not installed on VirtualMachine",
"Guest agent is required": "Guest agent is required",
"Guest login credentials": "Guest login credentials",
"Guest management": "Guest management",
"Guest system log": "Guest system log",
"Guest system log access": "Guest system log access",
"Guest system logs are disabled at cluster": "Guest system logs are disabled at cluster",
"Guest system logs are disabled at VirtualMachine": "Guest system logs are disabled at VirtualMachine",
"Guest system logs disabled at cluster": "Guest system logs disabled at cluster",
"Guest system logs not ready. Restart required": "Guest system logs not ready. Restart required",
"Guided tour": "Guided tour",
"Hard power cycle on the VM": "Hard power cycle on the VM",
"Hard power cycle on the VMs": "Hard power cycle on the VMs",
"Hardware devices": "Hardware devices",
"Hardware Devices": "Hardware Devices",
"Hardware devices ({{devices}})": "Hardware devices ({{devices}})",
"Have the operator deploying the soft-tainter component to dynamically set/remove soft taints according to the same criteria used for load aware descheduling": "Have the operator deploying the soft-tainter component to dynamically set/remove soft taints according to the same criteria used for load aware descheduling",
"Have the thresholds be based on the average utilization": "Have the thresholds be based on the average utilization",
"Headless mode": "Headless mode",
"Healthy": "Healthy",
"Heavy load checkups": "Heavy load checkups",
"Help": "Help",
"Help for number of VMs": "Help for number of VMs",
"Help for skip teardown": "Help for skip teardown",
"Help for VMI timeout": "Help for VMI timeout",
"Hide": "Hide",
"Hide deprecated templates": "Hide deprecated templates",
"Hide guest credentials for non-privileged users": "Hide guest credentials for non-privileged users",
"Hide password": "Hide password",
"Hide username": "Hide username",
"Hide YAML tab": "Hide YAML tab",
"High availability": "High availability",
"High performance": "High performance",
"History": "History",
"Host devices": "Host devices",
"Host devices ({{hostDevicesCount}})": "Host devices ({{hostDevicesCount}})",
"Host network management (NMState)": "Host network management (NMState)",
"Hostname": "Hostname",
"Hot plug is enabled only for \"Bridge\" and \"SR-IOV\" types": "Hot plug is enabled only for \"Bridge\" and \"SR-IOV\" types",
"Hot plug is enabled only for Disk and LUN types": "Hot plug is enabled only for Disk and LUN types",
"Hot plug is enabled only for SCSI and VirtIO interfaces": "Hot plug is enabled only for SCSI and VirtIO interfaces",
"Hot-unplugged": "Hot-unplugged",
"How much time before the check will try to close itself": "How much time before the check will try to close itself",
"Hugepages": "Hugepages",
"Hugepages are a memory management technique that uses larger memory blocks than the default page size to improve performance. Hugepages series has hugepages set to 1 GiB, normal series has hugepages set to 2 MiB.": "Hugepages are a memory management technique that uses larger memory blocks than the default page size to improve performance. Hugepages series has hugepages set to 1 GiB, normal series has hugepages set to 2 MiB.",
"HW devices": "HW devices",
"I acknowledge that this action is permanent and cannot be undone.": "I acknowledge that this action is permanent and cannot be undone.",
"I am using an alternative solution for this feature": "I am using an alternative solution for this feature",
"I confirm this is a non-production environment safe for heavy load testing.": "I confirm this is a non-production environment safe for heavy load testing.",
"i.e., 16": "i.e., 16",
"i.e., 4": "i.e., 4",
"i.e., 8": "i.e., 8",
"Image URL": "Image URL",
"Import content via container registry.": "Import content via container registry.",
"Import content via URL (HTTP or HTTPS endpoint).": "Import content via URL (HTTP or HTTPS endpoint).",
"Import from": "Import from",
"in": "in",
"In": "In",
"In order to add a new source for {{osName}} you will need to delete the following PVC:": "In order to add a new source for {{osName}} you will need to delete the following PVC:",
"In process": "In process",
"In progress": "In progress",
"Include all values from existing config maps, secrets, or service accounts (as disk)": "Include all values from existing config maps, secrets, or service accounts (as disk)",
"Increment": "Increment",
"Indicates the current completion percentage of the ongoing live migration operation.": "Indicates the current completion percentage of the ongoing live migration operation.",
"Indications": "Indications",
"Info": "Info",
"Ingresses": "Ingresses",
"Initial run": "Initial run",
"Install FAR.": "Install FAR.",
"Install load balance feature first to select a threshold.": "Install load balance feature first to select a threshold.",
"Install NHC.": "Install NHC.",
"Install permissions": "Install permissions",
"installation iso of Microsoft Windows 10 ": "installation iso of Microsoft Windows 10 ",
"Installed": "Installed",
"Installed version": "Installed version",
"Installing": "Installing",
"InstanceType": "InstanceType",
"InstanceTypes": "InstanceTypes",
"Interested in other <1>Bootable Volumes</1>? Click <4></4> to get started.": "Interested in other <1>Bootable Volumes</1>? Click <4></4> to get started.",
"Interested in using a <1>RHEL Bootable Volume</1>? Click <4></4> to get started.": "Interested in using a <1>RHEL Bootable Volume</1>? Click <4></4> to get started.",
"Interested in using a <1>Windows Bootable Volume</1>? Click <4></4> to get started. To learn more, follow the <7></7> quick start.": "Interested in using a <1>Windows Bootable Volume</1>? Click <4></4> to get started. To learn more, follow the <7></7> quick start.",
"Interface": "Interface",
"Interface Type": "Interface Type",
"Internal FQDN": "Internal FQDN",
"Invalid certificate, please visit the following URL and approve it": "Invalid certificate, please visit the following URL and approve it",
"Invalid character: {{invalidCharacter}}": "Invalid character: {{invalidCharacter}}",
"Invalid IP address. No VirtualMachines will be found.": "Invalid IP address. No VirtualMachines will be found.",
"Invalid IPv4 address": "Invalid IPv4 address",
"Invalid IPv6 address": "Invalid IPv6 address",
"Invalid MAC address format": "Invalid MAC address format",
"Invalid YAML cannot be persisted": "Invalid YAML cannot be persisted",
"Inventory": "Inventory",
"IOPS total: {{input}}": "IOPS total: {{input}}",
"IP": "IP",
"IP address": "IP address",
"IP Address": "IP Address",
"IP addresses": "IP addresses",
"IP Addresses ({{ips}})": "IP Addresses ({{ips}})",
"IPL": "IPL",
"IPv4 Gateway address": "IPv4 Gateway address",
"IPv6 Gateway address": "IPv6 Gateway address",
"is not eligible for live migration and will not be migrated.": "is not eligible for live migration and will not be migrated.",
"ISO": "ISO",
"ISO file must be in the same project as the Virtual Machine": "ISO file must be in the same project as the Virtual Machine",
"It may take several minutes until the clone is done and the VirtualMachine is ready.": "It may take several minutes until the clone is done and the VirtualMachine is ready.",
"It seems that your browser does not trust the certificate of the results server.": "It seems that your browser does not trust the certificate of the results server.",
"It seems that your browser does not trust the certificate of the upload proxy.": "It seems that your browser does not trust the certificate of the upload proxy.",
"Job": "Job",
"Kernel Samepage Merging (KSM)": "Kernel Samepage Merging (KSM)",
"key": "key",
"Key": "Key",
"Key options": "Key options",
"Kind": "Kind",
"KSM is a memory-saving deduplication feature designed to fit more VirtualMachines into physical memory by sharing the data common between them. It is specifically effective for similar VirtualMachines. KSM should only be used with trusted workloads. Turning this feature on enables it for all nodes in the cluster.": "KSM is a memory-saving deduplication feature designed to fit more VirtualMachines into physical memory by sharing the data common between them. It is specifically effective for similar VirtualMachines. KSM should only be used with trusted workloads. Turning this feature on enables it for all nodes in the cluster.",
"Kube Descheduler": "Kube Descheduler",
"Kubernetes NMState Operator": "Kubernetes NMState Operator",
"KV data transfer rate": "KV data transfer rate",
"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": "Labels",
"Labels cannot be edited for Red Hat templates": "Labels cannot be edited for Red Hat templates",
"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": "large",
"Last {{numOfDays}} days' trend": "Last {{numOfDays}} days' trend",
"Last 1 day": "Last 1 day",
"Last 1 hour": "Last 1 hour",
"Last 1 week": "Last 1 week",
"Last 12 hours": "Last 12 hours",
"Last 15 minutes": "Last 15 minutes",
"Last 2 days": "Last 2 days",
"Last 3 hours": "Last 3 hours",
"Last 30 days": "Last 30 days",
"Last 30 minutes": "Last 30 minutes",
"Last 5 minutes": "Last 5 minutes",
"Last 6 hours": "Last 6 hours",
"Last 7 days": "Last 7 days",
"Last 90 days": "Last 90 days",
"Last restored": "Last restored",
"Last updated": "Last updated",
"Latency: {{input}} {{unit}}": "Latency: {{input}} {{unit}}",
"Launch Migration Toolkit for Virtualization web console": "Launch Migration Toolkit for Virtualization web console",
"Launch Remote Desktop": "Launch Remote Desktop",
"Launch Remote Viewer": "Launch Remote Viewer",
"Learn how to create, import, and run virtual machines on OpenShift with step-by-step instructions and tasks.": "Learn how to create, import, and run virtual machines on OpenShift with step-by-step instructions and tasks.",
"Learn how to use VirtualMachines": "Learn how to use VirtualMachines",
"Learn more": "Learn more",
"Learn more about {{ kind }}": "Learn more about {{ kind }}",
"Learn more about <2>access modes</2>.": "Learn more about <2>access modes</2>.",
"Learn more about <2>volume modes</2>.": "Learn more about <2>volume modes</2>.",
"Learn more about key areas to complete workflows, increase productivity, and familiarize yourself with Virtualization using our resources.": "Learn more about key areas to complete workflows, increase productivity, and familiarize yourself with Virtualization using our resources.",
"Learn more about managing VM quotas with AAQ": "Learn more about managing VM quotas with AAQ",
"Learn more about MigrationPolicies": "Learn more about MigrationPolicies",
"Learn more about Operators": "Learn more about Operators",
"Learn more about Red Hat support": "Learn more about Red Hat support",