-
Notifications
You must be signed in to change notification settings - Fork 60
Expand file tree
/
Copy pathplugin__kubevirt-plugin.json
More file actions
2238 lines (2238 loc) · 171 KB
/
plugin__kubevirt-plugin.json
File metadata and controls
2238 lines (2238 loc) · 171 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}} 套接字、{{threads}} 线程和 {{cores}} 内核。",
" Adding hot plugged disk": "添加热插磁盘",
" from <2>{currentNetwork}</2> network?": " from <2>{currentNetwork}</2> network?",
" in namespace <2>{{objNamespace}}</2>?": "在命名空间 <2>{{objNamespace}}</2>?",
" Please <3>approve this certificate</3> and try again.": "<3>批准此证书</3>并重试。",
"--- Pick an Operating system ---": "--- 选择操作系统 ---",
"--- Select network interface ---": "--- 选择网络接口 ---",
"--- Select PVC name ---": "--- 选择 PVC 名称 ---",
"--- Select PVC project ---": "--- 选择 PVC 项目 ---",
"--- Select sysprep ---": "--- 选择 sysprep ---",
"--- Select Volume name ---": "--- 选择卷名称 ---",
"--- Select Volume project ---": "--- 选择卷项目 ---",
"--- Select VolumeSnapshot name ---": "--- 选择 VolumeSnapshot 名称 ---",
"--- Select VolumeSnapshot project ---": "--- 选择 VolumeSnapshot 项目 ---",
", {{preferredQualifiedNodesSize}} matching preferred Nodes found": ", 找到 {{preferredQualifiedNodesSize}} 匹配的首选节点",
"({{count}})_one": "({{count}})_one",
"({{count}})_other": "({{count}})_other",
"(default)": "(默认)",
"(default) | ": "(默认) | ",
"(In seconds)": "(秒)",
"(requires login) and copy the download link URL of the KVM guest image (expires quickly)": "(需要登录),复制 KVM 客户端镜像的下载链接 URL(很快过期)",
"{{ osName }} VirtualMachine can not be edited because it is provided by OpenShift Virtualization Operator.": "{{ osName }} VirtualMachine 不能被编辑,因为它是由 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}} 注解",
"{{annotationsCount}} Annotations": "{{annotationsCount}} 注解",
"{{availableText}} available": "{{availableText}} available",
"{{clustersCount}} clusters found": "{{clustersCount}} clusters found",
"{{clustersCount}} clusters, {{projectsCount}} projects found": "{{clustersCount}} clusters, {{projectsCount}} projects found",
"{{count}} Expression_other": "{{count}} Expression",
"{{count}} failed checks_one": "{{count}} 个失败的检查",
"{{count}} failed checks_other": "{{count}} 个失败的检查",
"{{count}} in progress checks_one": "{{count}} 个进行中的检查",
"{{count}} in progress checks_other": "{{count}} 个进行中的检查",
"{{count}} minutes_other": "{{count}} minutes",
"{{count}} namespace_other": "{{count}} namespace",
"{{count}} Node Field_other": "{{count}} Node Field",
"{{count}} successful checks_one": "{{count}} 个成功的检查",
"{{count}} successful checks_other": "{{count}} 个成功的检查",
"{{count}} VirtualMachine_other": "{{count}} VirtualMachine",
"{{count}} Volumes_one": "{{count}} 个卷_one",
"{{count}} Volumes_other": "{{count}} 个卷_other",
"{{cpu}} CPU | {{memory}} Memory": "{{cpu}} CPU | {{memory}} 内存",
"{{cpuCount}} CPU | {{memory}} Memory": "{{cpuCount}} CPU | {{memory}} 内存",
"{{cpus}} CPUs, {{memory}} Memory": "{{cpus}} CPU, {{memory}} 内存",
"{{gpusCount}} GPU devices": "{{gpusCount}} GPU 设备",
"{{hostDevicesCount}} Host devices": "{{hostDevicesCount}} 主机设备",
"{{hours}}h {{minutes}}m {{seconds}}s": "{{hours}}h {{minutes}}m {{seconds}}s",
"{{matchingNodesCount}} matching nodes found": "{{matchingNodesCount}} matching nodes found",
"{{matchingNodeText}} matching": "{{matchingNodeText}} 匹配",
"{{matchingProjectText}} matching": "{{matchingProjectText}} 匹配",
"{{minutes}}m {{seconds}}s": "{{minutes}}m {{seconds}}s",
"{{name}} · {{resourceKind}} · Details": "{{name}} · {{resourceKind}} · 详情",
"{{name}}: {{input}}ms": "{{name}}: {{input}}ms",
"{{nameOrId}} - Default data image already exists": "{{nameOrId}} - 默认数据镜像已存在",
"{{nameOrId}} - Template missing data image definition": "{{nameOrId}} - 模板缺少数据镜像定义",
"{{num}} more": "{{num}} 更多",
"{{numRemaining}} more": "{{numRemaining}} 更多",
"{{numVMs}} VirtualMachines in {{namespace}} namespace?": "{{namespace}} 命名空间中的 {{numVMs}} VirtualMachines?",
"{{passed}}/{{total}} passed ({{failed}} failed, {{skipped}} skipped)": "{{passed}}/{{total}} 通过 ({{failed}} 失败, {{skipped}} 跳过)",
"{{passed}}/{{total}} passed ({{failed}} failed)": "{{passed}}/{{total}} 通过 ({{failed}} 失败)",
"{{projectsCount}} projects found": "{{projectsCount}} projects found",
"{{projectsCount}} projects selected": "{{projectsCount}} projects selected",
"{{qualifiedNodesCount}} matching nodes found": "找到 {{qualifiedNodesCount}} 匹配节点",
"{{qualifiedNodesCount}} matching Nodes found": "找到 {{qualifiedNodesCount}} 匹配节点",
"{{qualifiedNodesCount}} nodes found": "找到 {{qualifiedNodesCount}} 节点",
"{{qualifiedProjectsCount}} matching Projects found": "找到 {{qualifiedProjectsCount}} 匹配项目",
"{{rules}} Affinity rules": "{{rules}} 关联性规则",
"{{rules}} Tolerations rules": "{{rules}} 容限规则",
"{{seconds}}s": "{{seconds}}s",
"{{sizeLabel}}: {{cpus}} CPUs, {{memory}} Memory": "{{sizeLabel}}: {{cpus}} CPU, {{memory}} 内存",
"{{symbol}} series": "{{symbol}} 系列",
"{{timestampPluralized}} ago": "{{timestampPluralized}} 之前",
"{{tolerations}} Toleration rules": "{{tolerations}} 容限规则",
"{{usedText}} used": "{{usedText}} used",
"+{{ips}} more": "+ {{ips}} 更多",
"+{{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>网桥绑定</0> :将 VirtualMachine 连接到所选网络,这是 L2 设备的理想选择。</0><1><0>SR-IOV 绑定</0>:将虚拟功能网络设备附加到 VirtualMachine 以实现高性能。</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>警告:</0>此 PVC 用作基础操作系统镜像。新虚拟机将无法克隆此镜像</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 会在窗口安装期间自动获取。它可以用于磁盘格式化等具有破坏性的操作。Auunattend 只会在安装过程中使用一次。</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>点 \"Launch Remote Desktop\" 将下载一个 .rdp 文件并启动 <2>Remote Desktop Viewer</2>。</0><1>因为 RDP 是原生 Windows 协议,在基于 Windows 的桌面上使用有最佳体验。</1><2>对于其他操作系统,建议使用 <1>Remote Viewer</1>。如果需要访问 RDP,可以使用 <4>Remmina</4> 客户端。</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>点 \"Launch Remote Viewer\" 将下载一个 .vv 文件,并启动 <2>Remote Viewer</2></0><1><0>Remote Viewer</0> 可用于大多数操作系统。要安装它,在 GNOME 软件中搜索它,或运行以下命令:</1>",
"<0>Deleting this PVC will also delete <2>{{pvcName}}</2> Data Volume</0>": "<0>删除此 PVC 也会删除 <2>{{pvcName}}</2> 数据卷</0>",
"<0>Donuts chart represent current values.</0><1>Sparkline charts represent data over time</1>": "<0>环形图代表当前的值。</0><1>迷你图代表针对时间的数据</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>在卷表中,选择一个可引导卷来引导 VirtualMachine。</0><1>要添加一个没有列出的可引导卷,点 <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>没有找到卷</0>要添加可引导卷,点 <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>使用集群 API 服务器打开到虚拟机的 SSH 连接。您必须能够访问 API 服务器并安装了 virtctl 命令行工具。</0><br /><2>对于更多详情,请参阅 OpenShift Virtualization 入门中的<2>安装 virtctl</2>。</2>",
"<0>Select the storage to migrate for <2>{{vmsCount}} VirtualMachines with {{volumesCount}} Volumes</2> from the source (current) storage class {{storageClasses}}</0>": "<0>从源 (当前) 存储类 {{storageClasses}} 中为<2>带有 {{volumesCount}}卷的 {{vmsCount}} VirtualMachines</2> 选择迁移的存储 </0>",
"<0>Select the storage to migrate for <2></2>from the source (current) storage class {{storageClasses}}</0>": "<0>从源 (当前) 存储类 {{storageClasses}} 中为<2></2> 选择迁移的存储</0>",
"<0>Store the key in a project secret.</0><1>The key will be stored after the machine is created</1>": "<0>将密钥存储在项目 secret 中。</0><1>密钥将在创建机器后存储</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>descheduler 会驱除一个正在运行的 pod,以便可以在更合适的节点上重新调度 pod。</0><br /><2>注意:如果 VirtualMachine 不可实时迁移,则禁用此设置。</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>这是一个 Windows VirtualMachine,但没有找到 RDP (Remote Desktop Protocol)的服务。</0><br /><2> 为了更好地访问 Windows 控制台,建议使用 RDP。<1>创建 RDP 服务</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>这将启用 <2>DeclarativeHotplugVolumes</2> 功能门,并允许弹出 CD-ROM 磁盘并添加空 CD-ROM 驱动器。</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 可用于配置窗口设置,并在窗口设置/配置过程中多次选择。</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>欢迎使用 </0><1>OpenShift Virtualization</1><2>使用 OpenShift Virtualization 运行并管理虚拟化负载和容器工作负载。您可以同时管理 Linux 和 Windows 虚拟机。</2><3> 下一步做什么?</3><4></4><5></5>",
"1 project selected": "1 project selected",
"1 VirtualMachine in {{namespace}} namespace?": "{{namespace}} 命名空间中的 1 个 VirtualMachine?",
"2xlarge": "2xlarge",
"3 (default)": "3 (默认)",
"404: Not Found": "404: Not Found",
"4xlarge": "4xlarge",
"5 min": "5 分钟",
"8 min": "8 分钟",
"8xlarge": "8xlarge",
"A boot volume must be selected": "必须选择一个引导卷",
"A ControllerRevision resource is cloned from the InstanceType when creating the VirtualMachine": "在创建 VirtualMachine 时,从 InstanceType 克隆 ControllerRevision 资源",
"A ControllerRevision resource is cloned from the Preference when creating the VirtualMachine": "在创建 VirtualMachine 时,从 Preference 克隆 ControllerRevision 资源",
"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": "一个小写的 RFC 1123 标签只能包含小写字母数字字符或 '-',且必须以字母数字字符开头和结尾",
"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-'.": "项目名称必须包含小写字母数字字符或 ',且必须以字母数字字符开头和结尾(例如 'my-name' 或 '123-abc')。您必须创建一个命名空间来创建以 'openshift-', 'kubernetes-' 或 'kube-' 开头的项目。",
"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 namespace for the storage claim within the project": "项目中的存储声明的一个唯一命名空间",
"A valid URL should start with \"http://\" OR \"https://\" .": "有效 URL 应该以 \"http://\" 或 \"https://\" 开头。",
"A value of X means that the X latest versions will be kept": "X 的值表示将保留 X 个最新版本",
"A VM reset is a hard power cycle and might cause data loss or corruption. Only reset if the VM is completely unresponsive.": "VM 重置是一个硬电源周期,可能会导致数据丢失或崩溃。只在虚拟机完全无响应时才进行重置。",
"Aborted": "Aborted",
"Access mode": "访问模式",
"Access Mode": "访问模式",
"Access mode: {{accessMode}} / Volume mode: {{volumeMode}}": "访问模式: {{accessMode}} / 卷模式: {{volumeMode}}",
"Actions": "行动",
"Activation key": "激活码",
"Active users": "活跃用户",
"Active users ({{users}})": "活跃用户 ({{users}})",
"Activity": "活跃",
"Add": "添加",
"Add a CD-ROM to the VirtualMachine configuration": "在 VirtualMachine 配置中添加一个 CD-ROM",
"Add a new bootable volume to the cluster.": "在集群中添加一个新的可引导卷。",
"Add a snapshot available on the cluster to the VirtualMachine.": "将集群中可用的快照添加到 VirtualMachine。",
"Add a volume already available on the cluster.": "添加集群中已经可用的卷。",
"Add affinity rule": "添加关联性规则",
"Add CD-ROM": "添加 CD-ROM",
"Add Config Map, Secret, or Service Account": "添加配置映射、Secret 或服务帐户",
"Add configuration": "添加配置",
"Add disk": "添加磁盘",
"Add disk (hot plugged)": "添加磁盘(热插)",
"Add expression": "添加表达式",
"Add field": "添加字段",
"Add GPU device": "添加 GPU 设备",
"Add Host device": "添加主机设备",
"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 network data": "添加网络数据",
"Add network interface": "添加网络接口",
"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.": "通过引用现有配置映射、secret 或服务帐户来添加新值。使用这些值需要手动将其挂载到虚拟机。",
"Add public SSH key to project": "将公共 SSH 密钥添加到项目",
"Add resources": "添加资源",
"Add source": "添加源",
"Add toleration": "添加容限",
"Add toleration to specify qualifying Nodes": "添加容限(Taleration)来指定限定的节点",
"Add tolerations to allow a VirtualMachine to schedule onto Nodes with matching taints.": "添加容限,允许虚拟机调度到具有匹配污点的节点。",
"Add volume": "添加卷",
"Add volume.": "添加卷。",
"Adding CD-ROM drive": "添加 CD-ROM 驱动器",
"Additional column list": "额外列列表",
"Additional columns": "额外列",
"Additional disks types and interfaces are available when the VirtualMachine is stopped.": "当 VirtualMachine 停止时,额外的磁盘类型和接口可用。",
"Additional quota": "Additional quota",
"Additional quota limits": "Additional quota limits",
"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": "高级 CD-ROM 功能",
"advanced search": "高级搜索",
"Advanced search": "高级搜索",
"Advanced settings": "高级设置",
"Advanced Settings": "高级设置",
"Affected templates": "受影响的模板",
"Affinity": "关联性",
"Affinity rules": "关联性规则",
"Affinity rules table": "Affinity rules table",
"Aggregation mode": "Aggregation mode",
"Alerts": "警报",
"Alerts ({{alertsQuantity}})": "警报 ({{alertsQuantity}})",
"All": "所有",
"All clusters": "所有集群",
"All projects": "所有项目",
"All sources selected": "选择了所有资源",
"All templates": "所有模板",
"All VirtualMachines must be running": "所有 VirtualMachines 必须正在运行",
"Allocating resources": "分配资源",
"Allocating resources, please wait for upload to start.": "分配资源,请等待上传开始。",
"Allow automatic update": "允许自动更新",
"Allow the creation of NodePort services for SSH connections to VirtualMachines. An address of a publicly available Node must be provided.": "允许为到 VirtualMachines 的 SSH 连接创建 NodePort 服务。必须提供公开可用的节点的地址。",
"AllowAutoConverge allows the platform to compromise performance/availability of VMIs to guarantee successful VMI live migrations. Defaults to false.": "AllowAutoConverge 允许平台破坏 VMI 的性能/可用性,以保证成功 VMI 实时迁移。默认为 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 启用后复制实时迁移。这样的迁移可使即使最忙碌的 VMI 也可以成功完成实时迁移。但是,如网络失败等事件可能会导致 VMI 崩溃。如果设置为 true,则迁移仍会以 pre-copy 启动,但在 CompletionTimeoutPerGiB 触发时切换到 post-copy。 默认为 false。",
"Allows concurrent access by multiple VirtualMachines": "允许多个 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.": "激活码是一种预共享的身份验证令牌,可让授权用户注册和配置系统。机构管理员可以浏览<2>激活密钥</2>来跟踪现有的激活码,或使用 Create Activation key 按钮创建新激活码。",
"An answer file is an XML-based file that contains setting definitions and values to use during Windows Setup": "应答文件是基于 XML 的文件,其中包含 Windows 设置期间要使用的设置定义和值",
"An error occured, The VirtualMachine was not updated. Click \"Reload\" to go back to the last valid state": "发生错误,这个 VirtualMachine 没有被更新。点 \"Reload\" 以返回到最后一个有效状态",
"An error occurred": "发生错误",
"An error occurred during the cloning process": "克隆过程中出现错误",
"An error occurred during the upload process": "上传过程中出现错误",
"An error occurred.": "An error occurred.",
"An InstanceType must be selected": "必须选择一个 InstanceType",
"An OpenShift Lightspeed error occurred.": "发生 OpenShift Lightspeed 错误。",
"An OpenShift project is an alternative representation of a Kubernetes namespace.": "OpenShift 项目是 Kubernetes 命名空间的一个替代表示。",
"An unknown error occurred": "发生未知错误",
"and copy the download link URL": "并复制下载链接 URL",
"and copy the download link URL for the cloud base image": "并复制云基础镜像的下载链接 URL",
"and is preventing this view from showing their data.": "并且阻止此视图显示其数据。",
"annotation key": "注解键",
"annotation value": "注解值",
"Annotations": "注解",
"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.": "注解是一个无结构的键值映射,资源可由外部工具存储和检索任意元数据。它们不可查询,并在修改对象时被保留。",
"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 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 optimized StorageProfile settings": "应用优化的存储配置集设置",
"Apply rules": "应用规则",
"Applying deletion protection to this VM will prevent deletion through the web console.": "将删除保护应用到此虚拟机将阻止通过 Web 控制台删除。",
"Applying the headless mode to this Virtual Machine will cause the VNC not be available if checked.": "将无头模式应用到此虚拟机将在检查时导致 VNC 不可用。",
"Applying the start/pause mode to this Virtual Machine will cause it to partially reboot and pause.": "将 start/pause 模式应用到此虚拟机将导致其部分重启和暂停。",
"Architecture": "架构",
"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 {{action}} <3>{{name}}</3>": "您确定要 {{action}} <3>{{name}}</3>",
"Are you sure you want to {{actionName}} [<3>{{vmName}}</3>] in namespace [<5>{{vmNamespace}}</5>]?": "您确定要在命名空间 [<5>{{vmNamespace}}</5>] 中 {{actionName}} [<3>{{vmName}}</3>]?",
"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}}?": "您确定要为 {{vmNamespace}} 中的 {{vmName}} 禁用删除保护吗?",
"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>": "您确定要从 <4>{{cdromName}}</4> 中弹出挂载的 ISO <1>{{source}}</1>",
"Are you sure you want to enable deletion protection for {{vmName}} in {{vmNamespace}}?": "您确定要为 {{vmNamespace}} 中的 {{vmName}} 启用删除保护?",
"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>": "您确定要从快照 {{snapshotName}} 恢复 {{vmName}} 吗?<6><0>注意:</0>在最后一次创建快照后生成的数据将会丢失。为了防止丢失当前数据,请在从快照中恢复前进行另一个快照。</6>",
"As a default, the VirtualMachine CPU uses sockets to enable hotplug. You can also define the topology manually": "作为默认设置,VirtualMachine CPU 使用插槽来启用热插拔。您也可以手动定义拓扑",
"As new versions of a DataSource become available older versions will be replaced": "随着新版本的 DataSource 变为可用,则会替换旧版本",
"Ask your cluster administrator for access permissions or select a different project (current project: {{currentNamespace}})": "请联系集群管理员来确认访问权限,或选择一个不同的项目(当前项目:{{currentNamespace}})",
"Assigns an external IP address to the VirtualMachine. This option requires a LoadBalancer Service backend": "为 VirtualMachine 分配一个外部 IP 地址。这个选项需要一个 LoadBalancer 服务后端",
"Attach a virtual function network device to the VirtualMachine for high performance": "将虚拟功能网络设备附加到虚拟机以获得高性能",
"Attach existing sysprep": "附加现有的 sysprep",
"Attach this data to a Virtual Machine operating system": "把这个数据附加到一个虚拟机操作系统",
"Attach VirtualMachine to multiple networks": "将虚拟机附加到多个网络",
"Attached NVIDIA GPU resources": "附加的 NVIDIA GPU 资源",
"Auto converge": "自动聚合",
"Auto update": "自动更新",
"Auto-compute CPU and memory limits": "自动计算 CPU 和内存限值",
"AutoDetach Hotplug": "AutoDetach 热插",
"Automatic images download": "自动镜像下载",
"Automatic subscription of new RHEL VirtualMachines": "新的 RHEL VirtualMachines 自动订阅",
"Automatic update and scheduling": "自动更新和调度",
"Automatic updates": "自动更新",
"Automatically apply this key to any new VirtualMachine you create in this project.": "将此密钥自动应用到您在此项目中创建的任何新 VirtualMachine。",
"Automatically pull updates from the RHEL repository. Activation key and Organization ID are mandatory to enable this.": "从 RHEL 仓库自动拉取更新。需要激活码和机构 ID 才能启用此功能。",
"Automatically selected Node": "自动选择的节点",
"Autounattend.xml answer file": "Autounattend.xml 应答文件",
"Available": "可用",
"Available only on Nodes with labels": "仅可用于带有标签的节点",
"Available volumes": "可用卷",
"Average": "平均",
"Back": "退回",
"Back to form": "返回表格",
"Back to form (Deletes DataVolume)": "返回表格(删除 DataVolume)",
"Back to VirtualMachines list": "返回 VirtualMachines 列表",
"Balances performance, compatible with a broad range of workloads": "平衡性能,与大范围的工作负载兼容",
"Bandwidth": "带宽",
"Bandwidth consumption": "带宽消耗",
"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 限制允许使用实时迁移的网络带量。该值为每秒的数量。默认为 0 (无限制)。",
"Base template": "基本模板",
"Based on the file extension it seems like you are trying to upload a file which is not supported ({{fileNameExtText}}).": "基于文件的扩展名,看起来您正在尝试上传不被支持的文件({{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.": "在创建虚拟机之前,我们建议您配置公共 SSH 密钥。它将作为 secret 保存在项目中。您可以稍后配置公共 SSH 密钥,但这是最简单的方法。",
"Before uploading to a registry, it is recommended to remove any private information from the image": "在上传到 registry 之前,建议从镜像中删除任何私有信息",
"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.": "首次引导 VirtualMachine (VM) 前,添加一个公共 SSH 密钥。只有 RHEL 9+ 支持动态密钥注入,您需要在创建虚拟机时启用动态 SSH。",
"Binding": "绑定",
"BIOS": "BIOS",
"Blank": "空",
"Block": "块",
"Boot disk": "编辑磁盘",
"Boot from CD": "从 CD 引导",
"Boot from CD requires an image file i.e. ISO, qcow, etc. that will be mounted to the VirtualMachine as a CD": "从 CD 引导需要一个镜像文件,如 ISO、qcow 等。它将作为 CD 挂载到 VirtualMachine",
"Boot management": "引导管理",
"Boot mode": "引导模式",
"Boot order": "引导顺序",
"Boot source": "引导源",
"Boot source available": "引导源可用",
"Boot source reference cannot be edited": "无法编辑引导源引用",
"Boot source type": "引导源类型",
"bootable": "可引导",
"Bootable volume: {{bootableVolumeName}}": "可引导卷:{{bootableVolumeName}}",
"Bootable volumes": "可引导卷",
"Bootable volumes project": "可引导卷项目",
"Breakdown by network": "按网络细分",
"Bridge": "网桥",
"Build with guided documentation": "使用指导文档进行构建",
"By CPU": "按 CPU",
"By IOPS": "按 IOPS",
"By memory": "按内存",
"By memory swap traffic": "根据内存交换流量",
"By read latency": "通过读取延迟",
"By throughput": "按吞吐量",
"By vCPU wait": "按 vCPU 等待",
"By write latency": "通过写入延迟",
"Can not configure dedicated resources if the VirtualMachine is created from Instance Type": "如果从 Instance Type 创建 VirtualMachine,则无法配置专用资源",
"Can not delete in view-only mode": "无法以只读模式删除",
"Can not edit in view-only mode": "无法以只读模式编辑",
"Cancel": "取消",
"Cancel compute migration": "取消计算迁移",
"Cancel error": "取消错误",
"Cancel migration": "取消迁移",
"Cancel upload": "取消上传",
"Cancel Upload": "取消上传",
"Canceled": "取消",
"Canceling ongoing migration": "取消持续迁移",
"Cancelling upload": "取消上传",
"Cannot cancel migration for \"{{ status }}\" status": "无法取消 \"{{ status }}\" 状态的迁移",
"Cannot update": "无法更新",
"Capacity": "Capacity",
"Catalog": "目录",
"CatalogSource not found": "没有找到目录源",
"Category": "类别",
"CD source": "CD 源",
"CD source represents the source for our disk, this can be HTTP, Registry or an existing PVC": "CD 源代表磁盘的源,可以是 HTTP、Registry 或一个现有的 PVC",
"CD-ROM": "CD-ROM",
"CD-ROM drive will be added to the VirtualMachine when it is stopped and restarted.": "当停止并重启时,CD-ROM 驱动器会被添加到 VirtualMachine 中。",
"CD-ROM source": "CD-ROM source",
"CD-ROM type is automatically set and cannot be changed": "CD-ROM 类型会被自动设置且无法更改",
"CDI Error: Could not initiate Data Volume": "CDI 错误: 不要启动数据卷",
"CentOS cloud image list ": "CentOS 云镜像列表 ",
"Certificate error occurred.": "发生证书错误。",
"Change boot mode": "更改引导模式",
"Change boot order": "更改引导顺序",
"Channel": "频道",
"Check logs": "检查日志",
"check this option to add network data section to the cloud-init script.": "选中此选项,将网络数据部分添加到 cloud-init 脚本中。",
"Check your cluster readiness to run Virtualization workloads and verify it meets the system requirements needed to run VirtualMachines.": "检查集群的就绪情况以运行虚拟化工作负载,验证它是否满足运行 VirtualMachines 所需的系统要求。",
"Checking for usages of this PVC...": "检查此 PVC 的使用...",
"Checking this option will create a new PVC of the bootsource for the new template": "选择这个选项将为新模板创建一个新的引导源的 PVC",
"Checking this will mark the feature as installed. Installation and configuration are the responsibility of the user.": "选择此选项会将功能标记为已安装。安装和配置是用户的责任。",
"Checkup image": "检查镜像",
"Checkup not found": "未找到检查",
"Checkup progress": "检查进行中",
"Checkups": "检查",
"Choose the target location for your VirtualMachines, then adjust your migration plan if necessary": "选择 VirtualMachines 的目标位置,然后根据需要调整迁移计划",
"Clear all": "全部清除",
"Clear all filters": "清除所有过滤",
"Clear search": "Clear search",
"CLI": "CLI",
"Click \"Configure features\" to install this feature": "点 \"Configure features\" 以安装此功能",
"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": "点 <1>Add bootable volume</1> 添加第一个可引导卷",
"Click <1>Create MigrationPolicy</1> to create your first policy": "点 <1>Create MigrationPolicy</1> 创建第一个策略",
"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": "点 <1>Create Template</1> 创建您的第一个模板",
"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": "点 <1>Create VirtualMachine</1> 创建第一个 VirtualMachine,或查看 <4>catalog</4> 标签页从可用选项中创建 VirtualMachine",
"Click <1>Create VirtualMachineInstanceType</1> to create your first VirtualMachineInstanceType": "点 <1>Create VirtualMachineInstanceType</1> 创建第一个 VirtualMachineInstanceType",
"Click <1>Create VirtualMachinePreference</1> to create your first VirtualMachinePreference": "点 <1>Create VirtualMachinePreference</1> 创建第一个 VirtualMachinePreference",
"Click Connect to open serial console.": "点 Connect 打开串行控制台。",
"Click Connect to open the VNC console.": "点 Connect 打开 VNC 控制台。",
"Clone": "克隆",
"Clone {{kind}}": "克隆 {{kind}}",
"Clone {{sourceKind}}": "克隆 {{sourceKind}}",
"Clone a VirtualMachine": "克隆 VirtualMachine",
"Clone a volume available on the cluster and add it to the VirtualMachine. ": "克隆集群中的可用卷,并将其添加到 VirtualMachine 中。 ",
"Clone existing Volume": "克隆现有卷",
"Clone in progress": "克隆进行中",
"Clone template": "克隆模板",
"Clone volume": "克隆卷",
"Cloning": "克隆",
"Close": "关闭",
"Close header": "克隆标头",
"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 和 SSH 密钥配置仅在第一次引导时应用到 VirtualMachine。",
"Cluster": "集群",
"Cluster InstanceTypes": "集群 InstanceTypes",
"Cluster is already selected. To update filters, choose another project or cluster in the tree view.": "集群已选择。要更新过滤器,在树形视图中选择另一个项目或集群。",
"Cluster observability": "集群可观察性",
"Cluster observability (COO)": "集群可观察性 (COO)",
"Cluster preferences": "集群首选",
"Cluster Preferences": "集群首选",
"Cluster scope migrations": "集群范围迁移",
"Cluster-scoped": "Cluster-scoped",
"Cluster-wide UserDefinedNetworks": "Cluster-wide UserDefinedNetworks",
"Cluster: {{clusterName}}": "集群:{{clusterName}}",
"Cluster's default network": "Cluster's default network",
"Clusters": "集群",
"Collapse": "折叠",
"Collapse all": "折叠所有",
"Column management": "栏管理",
"Complete time": "完成时间",
"Complete time:": "完成时间:",
"Completed": "完成",
"Completed successfully": "成功完成",
"Completion time": "完成时间",
"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 是允许迁移使用的每 GiB 的最大秒数。如果实时迁移所需的时间超过这个值乘以 VMI 的大小,则迁移将被取消,除非 AllowPostCopy 为 true。默认为 800。",
"Compute": "计算",
"Compute compatibility": "计算兼容性",
"Compute-intensive applications": "计算密集型应用程序",
"Condition": "条件",
"Conditions": "条件",
"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": "配置映射 / secret / 服务帐户",
"Config Maps": "Config Map",
"ConfigMap not found": "未找到 ConfigMap",
"ConfigMaps": "ConfigMaps",
"Configuration": "配置",
"Configuration drawer": "Configuration drawer",
"Configuration name": "Configuration name",
"Configurations": "配置",
"Configurations table": "Configurations table",
"Configure features": "配置功能",
"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.": "配置运行 VirtualMachines 和虚拟化工作负载的要求。选择默认虚拟化配置或自行在 Operator hub 中设置它。",
"Configure via:": "通过以下配置:",
"Configured state: {{ configuredState}}": "配置的状态: {{ configuredState}}",
"Configures the VM workloads to use swap for higher density": "将虚拟机工作负载配置为使用交换来获得更高的密度",
"Confirm requested VirtualMachine actions before executing them": "在执行它们前确认请求的 VirtualMachine 操作",
"Confirm VirtualMachine actions": "确认 VirtualMachine 操作",
"Connect": "连接",
"Connect with any viewer application for following protocols": "为以下协议与任何 viewer 应用程序连接",
"Connected projects": "Connected projects",
"Connected virtual machines": "Connected virtual machines",
"Connecting": "连接",
"Connection did not close cleanly.": "Connection did not close cleanly.",
"Console": "控制台",
"Console is disabled in headless mode": "控制台在无头模式下被禁用",
"Container": "容器",
"Container (Ephemeral)": "容器(临时)",
"Container disk": "容器磁盘",
"Container Image": "容器镜像",
"Container is required.": "需要容器。",
"Content from container registry": "来自容器 registry 的内容",
"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": "已复制",
"Copy FQDN": "复制 FQDN",
"Copy SSH command": "复制 SSH 命令",
"Copy template's boot source disk": "复制模板的引导源磁盘",
"Copy to clipboard": "复制到剪贴板",
"Copying files": "复制文件",
"Cores": "核",
"Could not create persistent volume claim": "无法创建持久性卷声明(PVC)",
"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 | 内存",
"CPU used": "使用的 CPU",
"CPUs": "CPU",
"CPUs = sockets x threads x cores.": "CPU = 插槽 x 线程 x 内核。",
"Create": "创建",
"Create {{kind}}": "创建 {{kind}}",
"create a bootable volume automatically by using pipelines": "使用管道自动创建可引导卷",
"Create a copy of the VirtualMachine from snapshot": "从快照创建 VirtualMachine 的副本",
"Create a disk with no contents.": "创建一个没有内容的磁盘。",
"Create a Kube Descheduler with KubeVirtRelieveAndMigrate profile to use this feature.": "使用 KubeVirtRelieveAndMigrate 配置集创建一个 Kube Descheduler 来使用此功能。",
"Create a new blank PVC": "创建一个新的空 PVC",
"Create a new custom 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": "创建一个 Windows 可引导卷",
"Create activation key": "创建激活码",
"Create application-aware quota": "Create application-aware quota",
"Create bootable volume": "Create bootable volume",
"Create DataSource": "创建数据源",
"Create folder \"{{filterValue}}\"": "创建文件夹 \"{{filterValue}}\"",
"Create MigrationPolicy": "创建 MigrationPolicy",
"Create network": "Create network",
"Create new sysprep": "创建新 Secret",
"Create new VirtualMachine": "创建新 VirtualMachine",
"Create physical network": "Create physical network",
"Create project": "创建项目",
"Create quota": "Create quota",
"Create Template": "删除模板",
"Create Virtual Machine": "创建虚拟机",
"Create virtual machine network": "Create virtual machine network",
"Create VirtualMachine": "创建 VirtualMachine",
"Create VirtualMachine error": "创建 VirtualMachine 错误",
"Create VirtualMachine from snapshot": "从快照创建 VirtualMachine",
"Create VirtualMachineInstanceType": "创建 VirtualMachineInstanceType",
"Create VirtualMachinePreference": "创建 VirtualMachinePreference",
"Create with no available boot source": "创建没有可用引导源",
"Created": "创建",
"Created at": "创建于",
"Creates a DataImportCron, which defines a cron job to poll and import the disk image.": "创建 DataImportCron,它定义了一个 cron 作业来轮询和导入磁盘镜像。",
"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 是一个代表创建此对象时服务器时间的时间戳。无法保证在跨独立的操作间以 happens-before 顺序设置设置。客户端可能无法设置这个值。它以 RFC3339 格式表示,且采用 UTC。",
"Critical": "关键",
"Cron expression": "Cron 表达式",
"Cross cluster migration": "跨集群迁移",
"Cross-cluster migration": "跨集群迁移",
"Cross-cluster migration is not supported on this cluster.": "在此集群中不支持跨集群迁移。",
"current": "当前",
"Current default StorageClass for VirtualMachines": "VirtualMachines 的当前默认 StorageClass",
"Current memory density: {{percentage}}%": "当前内存密度:{{percentage}}%",
"Currently running": "当前正在运行",
"Custom": "自定义",
"Custom...": "自定义...",
"Customize and create VirtualMachine": "自定义并创建 VirtualMachine",
"Customize template parameters": "自定义模板参数",
"Customize VirtualMachine": "自定义 VirtualMachine",
"CX series": "CX 系列",
"CX Series": "CX 系列",
"cx1": "cx1",
"D series": "D 系列",
"Data Processed": "处理的数据",
"Data read: {{input}}": "读取数据:{{input}}",
"Data Remaining": "剩余数据",
"Data transfer: {{input}}": "数据传输:{{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.": "数据卷启动上传失败。",
"Data written: {{input}}": "写入的数据:{{input}}",
"DataImportCron": "DataImportCron",
"DataImportCron available": "DataImportCron 可用",
"DataImportCron details": "DataImportCron 详情",
"DataImportCron Details": "DataImportCron 详情",
"DataImportCrons": "DataImportCrons",
"DataSource": "DataSource",
"DataSource details": "DataSource 详情",
"DataSource Details": "DataSource 详情",
"DataSources": "DataSources",
"DataVolume status": "DataVolume 状态",
"DataVolume Status is a mechanism for reporting if a volume succeed.": "DataVolume Status 是在卷成功时报告的机制。",
"DataVolumes": "DataVolumes",
"Date created": "创建日期",
"Date created from": "创建日期 from",
"Date created to": "创建日期 to",
"Date To cannot be before Date From": "Date To 不能早于 Date From",
"Deadline": "截止时间",
"Deadline must be a number": "截止时间需要是一个数字",
"Deadline must be greater than 0": "截止时间必须大于 0",
"Decrement": "减量",
"Dedicated resources": "专用资源",
"Dedicated virtual resources": "Dedicated virtual resources",
"default": "默认",
"Default": "默认",
"Default {{resourceKind}} columns": "默认 {{resourceKind}} 列",
"Default column list": "默认列列表",
"Default InstanceType": "默认 InstanceType",
"Default templates": "默认模板",
"Default value for this parameter": "此参数的默认值",
"Default value type": "默认值类型",
"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 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 {{kind}}": "删除{{kind}}",
"Delete {{kind}} source <3>{{name}}</3> in namespace <6>{{namespace}}</6>": "删除命名空间 <6>{{namespace}}</6> 中的 {{kind}} 源 <3>{{name}}</3>",
"Delete {{volumeResourceName}} {{modelLabel}}": "删除 {{volumeResourceName}} {{modelLabel}}",
"Delete checkup": "删除检查",
"Delete Data Volume: {{pvcName}}": "删除数据卷:{{pvcName}}",
"Delete DataImportCron?": "删除 DataImportCron?",
"Delete DataSource?": "删除 DataSource?",
"Delete job": "删除作业",
"Delete migration plan?": "删除迁移计划?",
"Delete MigrationPolicy?": "删除 MigrationPolicy?",
"Delete network?": "Delete network?",
"Delete NIC?": "删除 NIC?",
"Delete quota": "Delete quota",
"Delete quota?": "Delete quota?",
"Delete Resource?": "删除资源?",
"Delete saved search": "删除保存的搜索",
"Delete Service": "删除服务",
"Delete snapshot": "删除快照",
"Delete source": "删除源",
"Delete VirtualMachine Template?": "删除 VirtualMachine 模板?",
"Delete VirtualMachine?": "删除 VirtualMachine?",
"Delete VirtualMachineClusterInstancetype?": "删除 VirtualMachineClusterInstancetype?",
"Delete VirtualMachineClusterPreference?": "删除 VirtualMachineClusterPreference?",
"Delete VirtualMachineInstance": "删除 VirtualMachineInstance",
"Delete VirtualMachineInstance?": "删除 VirtualMachineInstance?",
"Delete VirtualMachineInstancetype?": "删除 VirtualMachineInstancetype?",
"Delete VirtualMachinePreference?": "删除 VirtualMachinePreference?",
"Delete VirtualMachineSnapshot?": "删除 VirtualMachineSnapshot?",
"Deleting": "删除",
"Deleting a network interface is supported only on VirtualMachines that were created in versions greater than 4.13.": "只有在版本高于 4.13 中创建的 VirtualMachines 上才支持删除网络接口。",
"Deletion protection": "删除保护",
"Delivers real-time, in-depth metrics and a fully functional Cluster Health Dashboard.": "提供实时、深入的指标和全功能集群健康仪表板。",
"Deprecated": "已弃用",
"Descheduler": "Descheduler",
"Description": "描述",
"Description of the VirtualMachine": "VirtualMachine 的描述",
"description text area": "描述文本区域",
"Desktop": "桌面",
"Desktop viewer": "桌面查看器",
"Destination": "目的地",
"Destination details": "目的地详情",
"Destination project": "目的地项目",
"Destination StorageClass": "目的地 StorageClass",
"Detach": "取消附加",
"Detach disk?": "取消附加磁盘?",
"Detach sysprep": "分离 sysprep",
"Details": "详情",
"Detect failed Nodes and trigger remediation with a remediation operator.": "检测到失败的节点,并使用补救 Operator 触发补救。",
"Detected changes:": "检测到的更改:",
"Detected file extension is {{fileNameExtension}}": "检测到的文件扩展是 {{fileNameExtension}}",
"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.": "开发人员预览功能不应在生产环境中使用。使用开发人员预览功能部署的集群是开发集群,目前不受红帽支持。",
"Device name": "设备名称",
"Diagnostics": "诊断",
"DIC": "DIC",
"Disable": "禁用",
"Disable deletion protection?": "禁用删除保护?",
"Disable memory density?": "禁用内存密度?",
"Disable YAML tab for non-admins": "Disable YAML tab for non-admins",
"Disabled": "禁用",
"Disabling Deletion Protection will allow you to delete this VirtualMachine. VirtualMachine deletion can result in data loss or service disruption.": "禁用删除保护将允许您删除此 VirtualMachine。VirtualMachine 删除可能会导致数据丢失或服务中断。",
"Disabling memory density will reset the memory overcommit percentage to 100%. This change will affect all VMs as they are migrated or restarted.": "禁用内存密度会将内存过量使用百分比重置为 100%。这个更改会在迁移或重启时影响到所有虚拟机。",
"Disconnect": "断开连接",
"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 will be determined by the volume snapshot size": "磁盘大小将由卷快照大小决定",
"Disk source": "磁盘源",
"Disk Source represents the source for our disk, this can be HTTP, Registry or an existing PVC": "磁盘源代表磁盘的源,可以是 HTTP、Registry 或一个现有的 PVC",
"Disk Type": "磁盘类型",
"Disks": "磁盘",
"Disks ({{disks}})": "磁盘 ({{disks}})",
"Disks included in this snapshot ({{volumes}})": "此快照中包含的磁盘({{volumes}})",
"Disks tab": "磁盘标签页",
"Display name": "显示名称",
"display name text area": "显示名称文本区",
"Displays real-time metrics of the live migration process, such as memory transfer and downtime.": "显示实时迁移过程的实时指标,如内存传输和停机信息。",
"Do not show this again": "不要再次显示",
"Documentation": "文档",
"Domain": "域",
"Down": "下",
"Download": "下载",
"Download results": "下载结果",
"Download the MSI from ": "下载 MSI,从",
"Download the virtctl command-line utility": "下载 virtctl 命令行工具",
"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": "拖放镜像或上传一个",
"Drive": "驱动",
"Drive {{index}}": "驱动 {{index}}",
"Drivers": "驱动程序",
"Dry run": "空运行",
"DS": "DS",
"Duplicate keys found": "找到重复键",
"Duration": "持续时间",
"Dynamic": "动态",
"Dynamic SSH key injection": "动态 SSH 密钥注入",
"Dynamic SSH key injection is not enabled in this virtual machine.": "此虚拟机中没有启用动态 SSH 密钥注入。",
"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.": "例如,0%:10% 意味着,将每个低于平均利用率的节点标记为使用率不足,将每个节点平均利用率超过 10% 的节点标记为过度使用。",
"e1000e": "e1000e",
"Ease operational complexity with virtualization by using Operators.": "使用 Operator 简化虚拟化操作的复杂性。",
"Edit": "编辑",
"Edit {{kind}}": "编辑 {{kind}}",
"Edit affinity rule": "编辑关联性规则",
"Edit annotations": "编辑注解",
"Edit Annotations": "编辑注解",
"Edit application-aware quota": "Edit application-aware quota",
"Edit boot source": "编辑引导源",
"Edit boot source reference": "编辑引导源参考",
"Edit CPU | Memory": "编辑 CPU | 内存",
"Edit disk": "编辑磁盘",
"Edit Display name": "编辑显示名称",
"Edit hostname": "编辑主机名",
"Edit InstanceType": "编辑 InstanceType",
"Edit labels": "编辑标签",
"Edit Labels": "编辑标签",
"Edit MigrationPolicy": "编辑 MigrationPolicy",
"Edit network definition": "Edit network definition",
"Edit network interface": "编辑网络接口",
"Edit Pod selector": "编辑 Pod 选择器",
"Edit projects mapping": "Edit projects mapping",
"Edit quota": "Edit quota",
"Edit quota calculation method": "Edit quota calculation method",
"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._other": "编辑该磁盘或者联系您的集群管理员以获取更多详情",
"Edit the disks or contact your cluster admin for further details._one": "编辑磁盘,或联系您的集群管理员以获取更多信息。",
"Edit the disks or contact your cluster admin for further details._other": "编辑磁盘,或联系您的集群管理员以获取更多信息。",
"Edit VirtualMachine name": "编辑 VirtualMachine 名称",
"Edit volume metadata": "编辑卷元数据",
"Edit workload profile": "编辑工作负载配置集",
"Edit YAML": "编辑 YAML",
"Editing the DataSource will affect <2>all templates</2> that are currently using this DataSource.": "编辑数据源将影响当前使用此数据源的<2>所有模板</2>。",
"Effect": "影响",
"Eject": "弹出",
"Eject ISO": "弹出 ISO",
"Elapsed time": "已经过的时间",
"Elapsed time since login": "登录后已经过的时间",
"Empty": "Empty",
"Empty disk (blank)": "空磁盘(空)",
"Enable": "启用",
"Enable advanced CD-ROM features": "启用高级 CD-ROM 功能",
"Enable auto updates for RHEL VirtualMachines": "为 RHEL VirtualMachines 启用自动更新",
"Enable automatic images download and update": "启用自动镜像下载和更新",
"Enable automatic subscription for Red Hat Enterprise Linux VirtualMachines.\n": "为 Red Hat Enterprise Linux VirtualMachines 启用自动订阅。\n",
"Enable deletion protection?": "启用删除保护?",
"Enable folders in Virtual Machines tree view": "在虚拟机树视图中启用文件夹",
"Enable guest system log access": "启用客户机系统日志访问",
"Enable headless mode": "启用无头模式",
"Enable load-aware descheduling": "启用负载感知的取消调度",
"Enable Passt binding for primary user-defined networks": "为主用户定义的网络启用 Passt 绑定",
"Enable Passt to SSH your VirtualMachine using virtctl": "使用 virtctl 启用 Passt 来 SSH 到您的 VirtualMachine",
"Enable persistent reservation": "启用持久性保留",
"Enable preallocation": "启用预分配",
"Enable predictive analytics": "启用预测分析",
"Enable the creation of LoadBalancer services for SSH connections to VirtualMachines. A load balancer must be configured": "为到 VirtualMachines 的 SSH 连接启用 LoadBalancer 服务创建。必须配置一个负载均衡器",
"Enabled": "已启用",
"Enables access to the VirtualMachine guest system log. Wait a few seconds for logging to start before viewing the log.": "启用对 VirtualMachine 客户机系统日志的访问。等待几秒钟以便日志记录在查看日志前启动。",
"Enables access to the VirtualMachine's guest system log. Wait a few seconds for logging to start before viewing the log.": "启用对 VirtualMachine 客户机系统日志的访问。等待几秒钟以便日志记录在查看日志前启动。",
"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.": "确保 PVC 大小满足未压缩镜像的要求以及任何其他空间要求。",
"Enter a container image (for example: {{containerDisk}})": "输入一个容器镜像(例如:{{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.": "为要分配的设备输入一个名称,然后从下拉菜单中选择它。点 <2> Save</2>。<br /> 点 <7>+ 添加 {{hardwareType}} 设备</7>以添加另一个设备。",
"Enter key=value": "输入键=值",
"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": "输入一个或多个 IP 地址,使用逗号来分隔多个地址。每个地址应包含子网掩码以正确配置网络接口。<br />例如: 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: ": "输入 URL 以下载。例如: ",
"Enter value": "输入值",
"Environment": "环境",
"environment disk": "环境磁盘",
"Ephemeral": "临时",
"Ephemeral disk (Container image)": "临时磁盘(容器镜像)",
"Ephemeral storage limits": "Ephemeral storage limits",
"Ephemeral storage requests": "Ephemeral storage requests",
"Equals": "等于",
"Error": "错误",
"Error checking for usages of this PVC.": "检查此 PVC 的使用情况的错误。",
"Error details": "错误详情",
"Error loading networks": "Error loading networks",
"Error loading progress": "错误加载进行中",
"Error loading results": "错误加载结果",
"Error loading the VirtualMachineSnapshotContent": "加载 VirtualMachineSnapshotContent 时出错",
"Error uploading data": "上传数据出错",
"Ethernet name": "Ethernet 名称",
"Events": "事件",
"Eviction strategy": "驱除策略",
"EvictionStrategy can be set to \"LiveMigrate\" if the VirtualMachineInstance should be migrated instead of shut-off in case of a node drain.": "如果节点排空时应该迁移 VirtualMachineInstance,则 EvictionStrategy 可以设置为 \"LiveMigrate\"。",
"Example (At 00:00 on Tuesday): {{exampleCron}}": "示例(星期二的 00:00):{{exampleCron}}",
"Example (At 00:00 on Tuesday): 0 0 * * 2.": "示例(星期二的 00:00): 0 0 * * 2。",
"Example: ": "示例: ",
"Example: {{exampleURL}}": "示例:{{exampleURL}}",
"Example: For CentOS, visit the ": "示例:对于 CentOS,访问 ",
"Example: For Fedora, visit the ": "示例:对于 Fedora,访问 ",
"Example: For RHEL, visit the ": "示例:对于 RHEL,访问 ",
"Example: For Windows, get a link to the ": "示例:对于 Windows,获取到这个链接 ",
"Example: quay.io/containerdisks/centos:7-2009": "示例: quay.io/containerdisks/centos:7-2009",
"Example: your company name": "示例:您的公司名称",
"Expand all": "扩展所有",
"Expand this network to a new set of Nodes.": "Expand this network to a new set of Nodes.",
"Explore {{kind}} list": "浏览 {{kind}} 列表",
"Expose RDP Service": "公开 RDP 服务",
"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 tests ({{count}})_one": "失败的测试 ({{count}})",
"Failed tests ({{count}})_other": "失败的测试 ({{count}})",
"Failed to create resource": "创建资源失败",
"Failed to download results. Please try again later.": "下载结果失败。请稍后再试。",
"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}}": "修改 {{resourceKind}} 失败",
"Failed to rerun checkup": "重新运行检查失败",
"Failed to retrieve the list of projects": "Failed to retrieve the list of projects",
"Failing": "Failing",
"Failure reason": "失败原因",
"FAR is installed.": "已安装了 FAR。",
"Favorites": "喜爱",
"Feature highlights": "功能亮点",
"Fedora cloud image list ": "Fedora 云镜像列表 ",
"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.": "字段选择器可让您根据一个或多个资源字段的值选择节点。",
"File input is missing": "缺少文件输入",
"File is required.": "文件是必需的。",
"File system type": "文件系统类型",
"File systems": "文件系统",
"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": "文件系统",
"Filter": "过滤器",
"Filter by keyword...": "按关键字过滤...",
"Filter nodes search input": "Filter nodes search input",
"Filter physical networks search input": "Filter physical networks search input",
"Find by name": "按名称查找",
"Finish": "完成",
"Flavor": "类型(Flavor)",
"Folder": "文件夹",
"Folder name can't end with": "文件夹名称不能以其结尾",
"Folder name can't start with": "文件夹名称不能以其开头",
"Follow guided documentation to build applications and familiarize yourself with key features.": "请参阅指导文档来构建应用程序并熟悉主要功能。",
"Force stop": "强制停止",
"Form view": "表单视图",
"Found {{count}} characters not supported by the selected keyboard layout:_one": "有 {{count}} 个不被所选键盘布局支持的字符",
"Found {{count}} characters not supported by the selected keyboard layout:_other": "有 {{count}} 个不被所选键盘布局支持的字符",
"FQDN": "FQDN",
"From": "从",
"From InstanceType": "从 InstanceType",
"From Registry": "从 Registry",
"From template": "从模板",
"From URL": "从 URL",
"General": "常规",
"General purpose applications": "常规目的应用程序",
"General settings": "常规设置",
"Generated (expression)": "生成的(表达式)",
"Getting started": "开始",
"Getting started resources": "开始使用资源",
"GiB": "GiB",
"GN Series": "GN 系列",
"gn1": "gn1",
"Go to catalog": "进入目录",
"Go to cluster settings": "进入集群设置",
"Golden image no DataSource": "金级镜像没有 DataSource",
"Golden image not up to date": "金级镜像非最新",
"GPU devices": "GPU 设备",
"GPU devices ({{gpusCount}})": "GPU 设备 ({{gpusCount}})",
"GPU limits (NVIDIA)": "GPU limits (NVIDIA)",
"GPU requests (NVIDIA)": "GPU requests (NVIDIA)",
"Greater or equals": "大于或等于",
"Greater than": "大于",
"Guest agent is not installed on VirtualMachine": "客户机代理不会在 VirtualMachine 上安装",
"Guest agent is required": "需要客户机代理",
"Guest login credentials": "客户机登录凭证",
"Guest management": "客户机成本管理",
"Guest system log": "客户机系统日志",
"Guest system log access": "客户机系统日志访问",
"Guest system logs are disabled at cluster": "在集群中禁用客户机系统日志",
"Guest system logs are disabled at VirtualMachine": "客户机系统日志在 VirtualMachine 中禁用",
"Guest system logs disabled at cluster": "在集群中禁用客户机系统日志",
"Guest system logs not ready. Restart required": "客户机系统日志未就绪。需要重启",
"Guided tour": "功能浏览",
"Hard power cycle on the VM": "虚拟机上的硬电源周期",
"Hard power cycle on the VMs": "虚拟机上的硬电源周期",
"Hardware devices": "硬件设备",
"Hardware Devices": "硬件设备",
"Hardware devices ({{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": "根据用于负载感知的取消调度的相同标准,让 Operator 部署 soft-tainter 组件来动态设置/删除软污点",
"Have the thresholds be based on the average utilization": "阈值基于平均利用率",
"Headless mode": "无头模式",
"Healthy": "健康",
"Heavy load checkups": "重度负载检查",
"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 deprecated templates": "隐藏已弃用的模板",
"Hide guest credentials for non-privileged users": "对非特权用户隐藏客户机凭证",
"Hide password": "隐藏密码",
"Hide username": "隐藏用户名",
"Hide YAML tab": "Hide YAML tab",
"High availability": "高可用性",
"High performance": "高性能",
"History": "历史记录",
"Host devices": "主机设备",
"Host devices ({{hostDevicesCount}})": "主机设备 ({{hostDevicesCount}})",
"Host network management (NMState)": "主机网络管理 (NMState)",
"Hostname": "主机名",
"Hot plug is enabled only for \"Bridge\" and \"SR-IOV\" types": "热插只为 \"Bridge\" 和 \"SR-IOV\" 类型启用",
"Hot plug is enabled only for Disk and LUN types": "热插仅为 Disk 和 LUN 类型启用",
"Hot plug is enabled only for SCSI and VirtIO interfaces": "热插仅为 SCSI 和 VirtIO 接口启用",
"Hot-unplugged": "热拔",
"How much time before the check will try to close itself": "检查在尝试关闭其自身前的时间",
"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 系列将 hugepages 设置为 1 GiB,普通系列将 hugepages 设置为 2 MiB。",
"HW devices": "HW 设备",
"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 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": "镜像 URL",
"Import content via container registry.": "通过容器 registry 导入内容。",
"Import content via URL (HTTP or HTTPS endpoint).": "通过 URL(HTTP 或 HTTPS 端点)导入内容。",
"Import from": "导入自",
"in": "in",
"In": "In",
"In order to add a new source for {{osName}} you will need to delete the following PVC:": "要为 {{osName}} 添加新源,您需要删除以下 PVC:",
"In process": "处理中",
"In progress": "进行中",
"Include all values from existing config maps, secrets, or service accounts (as disk)": "包括现有配置映射、secret 或服务帐户中的所有值(作为磁盘)",
"Increment": "增量",
"Indicates the current completion percentage of the ongoing live migration operation.": "代表正在进行实时迁移操作的当前完成百分比。",
"Indications": "表示",
"Info": "信息",
"Ingresses": "Ingresses",
"Initial run": "初始运行",
"Install FAR.": "安装 FAR。",
"Install load balance feature first to select a threshold.": "首先安装负载均衡功能以选择一个阈值。",
"Install NHC.": "安装 NHC。",
"Install permissions": "安装权限",
"installation iso of Microsoft Windows 10 ": "Microsoft Windows 10 的安装 iso ",
"Installed": "已安装",
"Installed version": "已安装的版本",
"Installing": "安装",
"InstanceType": "InstanceType",
"InstanceTypes": "InstanceTypes",
"Interested in other <1>Bootable Volumes</1>? Click <4></4> to get started.": "对其他<1>可引导卷</1>感兴趣?点 <4></4> 开始。",
"Interested in using a <1>RHEL Bootable Volume</1>? Click <4></4> to get started.": "对使用 <1>RHEL 可引导卷</1>感兴趣? 点 <4></4> 开始。",
"Interested in using a <1>Windows Bootable Volume</1>? Click <4></4> to get started. To learn more, follow the <7></7> quick start.": "对使用 <1>Windows 可引导卷</1>感兴趣? 点 <4></4> 开始。如需了解更多信息,请遵循<7></7> 快速开始操作。",
"Interface": "接口",
"Interface Type": "接口类型",
"Internal FQDN": "内部 FQDN",
"Invalid certificate, please visit the following URL and approve it": "无效的证书,请访问以下 URL 并批准它",
"Invalid character: {{invalidCharacter}}": "无效的字符:{{invalidCharacter}}",
"Invalid IP address. No VirtualMachines will be found.": "无效的 IP 地址。无法找到 VirtualMachines。",
"Invalid IPv4 address": "Invalid IPv4 address",
"Invalid IPv6 address": "Invalid IPv6 address",
"Invalid MAC address format": "无效的 MAC 地址格式",
"Invalid YAML cannot be persisted": "Invalid YAML cannot be persisted",
"Inventory": "清单",
"IOPS total: {{input}}": "IOPS 总计:{{input}}",
"IP": "IP",
"IP address": "IP 地址",
"IP Address": "IP 地址",
"IP addresses": "IP 地址",
"IP Addresses ({{ips}})": "IP 地址({{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 文件必须与虚拟机实例处于同一个项目中",
"It may take several minutes until the clone is done and the VirtualMachine is ready.": "克隆完成并且 VirtualMachine 就绪前可能需要几分钟时间。",
"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.": "浏览器似乎不信任上传代理的证书。",
"Job": "作业",
"Kernel Samepage Merging (KSM)": "Kernel Samepage Merging (KSM)",
"key": "键",
"Key": "键",
"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 是一个节省内存的取消重复数据功能,它通过共享数据将更多 VirtualMachines 放入物理内存中。它特别适用于类似的 VirtualMachines。KSM 应该只用于可信任的工作负载。打开此功能会为集群中的所有节点启用这个功能。",
"Kube Descheduler": "Kube Descheduler",
"Kubernetes NMState Operator": "Kubernetes NMState Operator",
"KV data transfer rate": "KV 数据传输率",
"Label": "标签",
"Label selectors let you select Nodes based on the value of one or more labels.": "标签选择器允许您根据一个或多个标签的值选择节点。",
"Labels": "标签",
"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.": "标签可帮助您组织和选择资源。在下面添加标签可让您查询带有相似,重叠或不相似标签的对象。",
"large": "大",
"Last {{numOfDays}} days' trend": "最后 {{numOfDays}} 天的趋势",
"Last 1 day": "最后 1 天",
"Last 1 hour": "最后 1 小时",
"Last 1 week": "最后 1 周",
"Last 12 hours": "最后 12 小时",
"Last 15 minutes": "最后 15 分钟",
"Last 2 days": "最后 2 天",
"Last 3 hours": "最后 3 小时",
"Last 30 days": "最后 30 天",
"Last 30 minutes": "最后 30 分钟",
"Last 5 minutes": "最后 5 分钟",
"Last 6 hours": "最后 6 小时",
"Last 7 days": "最后 7 天",
"Last 90 days": "最后 90 天",
"Last restored": "最后恢复的",
"Last updated": "最后更新",
"Latency: {{input}} {{unit}}": "延迟: {{input}} {{unit}}",
"Launch Migration Toolkit for Virtualization web console": "启动 Migration Toolkit for Virtualization web console",
"Launch Remote Desktop": "启动 Remote Desktop",
"Launch Remote Viewer": "启动 Remote Viewer",
"Learn how to create, import, and run virtual machines on OpenShift with step-by-step instructions and tasks.": "了解如何在 OpenShift 上按照具体步骤和任务创建、导入和运行虚拟机。",
"Learn how to use VirtualMachines": "了解如何使用虚拟机",
"Learn more": "了解更多",
"Learn more about {{ kind }}": "Learn more about {{ kind }}",
"Learn more about <2>access modes</2>.": "了解有关<2>访问模式</2>的更多信息。",
"Learn more about <2>volume modes</2>.": "了解有关<2>卷模式</2>的更多信息。",
"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": "了解有关 MigrationPolicies 的更多信息",
"Learn more about Operators": "了解更多与 Operator 相关的信息",
"Learn more about Red Hat support": "了解更多与红帽支持相关的信息",
"Learn more about RHACM.": "了解有关 RHACM 的更多信息。",
"Learn more about self validation checkups": "了解更多有关自我验证检查的信息",
"Learn more about snapshots": "了解更多有关快照的信息",
"Learn more about storage checkups": "了解有关存储检查的更多信息",
"Learn more about supported formats": "了解更多有关支持格式的信息",