-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Expand file tree
/
Copy pathen.json
More file actions
4243 lines (4243 loc) · 261 KB
/
en.json
File metadata and controls
4243 lines (4243 loc) · 261 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
{
"message.delete.account.not.disabled": "Please disable the account before attempting to delete it.",
"alert.service.domainrouter": "Domain Router",
"error.dedicate.bgp.peer.failed":"Failed to dedicate BGP peer",
"error.dedicate.cluster.failed": "Failed to dedicate Cluster.",
"error.dedicate.host.failed": "Failed to dedicate Host.",
"error.dedicate.ipv4.subnet.failed": "Failed to dedicate IPv4 subnet.",
"error.dedicate.pod.failed": "Failed to dedicate Pod.",
"error.dedicate.zone.failed": "Failed to dedicate Zone.",
"error.empty.counter.operator.threshold": "Either Counter, Operator or Threshold is empty",
"error.execute.api.failed": "Failed to execute API.",
"error.fetching.async.job.result": "Error encountered while fetching async job result.",
"error.form.message": "There are errors in the form. Please fix them.",
"error.password.not.match": "The password fields do not match",
"error.release.dedicate.bgp.peer": "Failed to release dedicated BGP peer.",
"error.release.dedicate.cluster": "Failed to release dedicated Cluster.",
"error.release.dedicate.host": "Failed to release dedicated host.",
"error.release.dedicate.ipv4.subnet": "Failed to release dedicated IPv4 subnet.",
"error.release.dedicate.pod": "Failed to release dedicated Pod.",
"error.release.dedicate.zone": "Failed to release dedicated Zone.",
"error.unable.to.add.setting.extraconfig": "It is not allowed to add setting for extraconfig. Please update VirtualMachine with extraconfig parameter.",
"error.unable.to.add.setting": "Unable to add or edit setting",
"error.unable.to.proceed": "Unable to proceed. Please contact your administrator.",
"firewall.close": "Firewall",
"icmp.code.desc": "Please specify -1 if you want to allow all ICMP codes (except NSX zones).",
"icmp.type.desc": "Please specify -1 if you want to allow all ICMP types (except NSX zones).",
"inline": "Inline",
"label.about": "About",
"label.about.app": "About CloudStack",
"label.accept": "Accept",
"label.accept.project.invitation": "Accept project invitation",
"label.access": "Access",
"label.access.kubernetes.nodes": "Access Kubernetes nodes",
"label.accesskey": "Access Key",
"label.access.key": "Access Key",
"label.secret.key": "Secret Key",
"label.apikeyaccess": "Api Key Access",
"label.account": "Account",
"label.account.and.security.group": "Account - security group",
"label.account.id": "Account ID",
"label.account.name": "Account name",
"label.account.specific": "Account-specific",
"label.accounts": "Accounts",
"label.accountstate": "Account state",
"label.accounttype": "Account type",
"label.import": "Import",
"label.acl.import": "Import rules",
"label.acl.export": "Export rules",
"label.acl.id": "ACL ID",
"label.acl.rules": "ACL rules",
"label.acl.reason.description": "Enter the reason behind an ACL rule.",
"label.aclid": "ACL",
"label.aclname": "ACL name",
"label.acl.rule.name": "ACL rule name",
"label.acquire.new.ip": "Acquire new IP",
"label.acquire.new.secondary.ip": "Acquire new secondary IP",
"label.acquiring.ip": "Acquiring IP",
"label.associated.resource": "Associated resource",
"label.action": "Action",
"label.action.add.nodes.to.kubernetes.cluster": "Add nodes to Kubernetes cluster",
"label.action.remove.nodes.from.kubernetes.cluster": "Remove nodes from Kubernetes cluster",
"label.action.attach.disk": "Attach Disk",
"label.action.attach.iso": "Attach ISO",
"label.action.attach.to.instance": "Attach to Instance",
"label.action.bulk.delete.egress.firewall.rules": "Bulk delete egress firewall rules",
"label.action.bulk.delete.firewall.rules": "Bulk delete firewall rules",
"label.action.bulk.delete.ip.v6.firewall.rules": "Bulk remove IPv6 firewall rules",
"label.action.bulk.delete.isos": "Bulk delete ISOs",
"label.action.bulk.delete.load.balancer.rules": "Bulk delete load balancer rules",
"label.action.bulk.delete.portforward.rules": "Bulk delete port forward rules",
"label.action.bulk.delete.routing.firewall.rules": "Bulk remove IPv4 Routing firewall rules",
"label.action.bulk.delete.snapshots": "Bulk delete Snapshots",
"label.action.bulk.delete.templates": "Bulk delete Templates",
"label.action.bulk.release.public.ip.address": "Bulk release public IP addresses",
"label.action.cancel.maintenance.mode": "Cancel maintenance mode",
"label.action.change.password": "Change password",
"label.action.clear.webhook.deliveries": "Clear deliveries",
"label.action.clear.webhook.filters": "Clear filters",
"label.action.change.primary.storage.scope": "Change Primary Storage scope",
"label.action.configure.stickiness": "Stickiness",
"label.action.configure.storage.access.group": "Update storage access group",
"label.action.copy.iso": "Copy ISO",
"label.action.copy.snapshot": "Copy Snapshot",
"label.action.copy.template": "Copy Template",
"label.action.create.backup.schedule": "Create Backup Schedule",
"label.action.create.recurring.snapshot": "Create Recurring Snapshot",
"label.action.create.snapshot.from.vmsnapshot": "Create Snapshot from Instance Snapshot",
"label.action.create.template.from.volume": "Create Template from volume",
"label.action.create.volume": "Create Volume",
"label.action.create.volume.add": "Create and Add Volume",
"label.action.delete.account": "Delete Account",
"label.action.delete.backup.offering": "Delete backup offering",
"label.action.delete.cluster": "Delete Cluster",
"label.action.delete.domain": "Delete Domain",
"label.action.delete.egress.firewall": "Delete Egress Firewall Rule",
"label.action.delete.firewall": "Delete Firewall Rule",
"label.action.delete.interface.static.route": "Remove Tungsten Fabric interface static route",
"label.action.delete.gpu.card": "Delete GPU card",
"label.action.delete.guest.os": "Delete guest OS",
"label.action.delete.guest.os.category": "Delete guest OS category",
"label.action.delete.guest.os.hypervisor.mapping": "Delete guest OS hypervisor mapping",
"label.action.delete.ip.range": "Delete IP range",
"label.action.delete.iso": "Delete ISO",
"label.action.delete.load.balancer": "Delete Load Balancer Rule",
"label.action.delete.network": "Delete Network",
"label.action.delete.network.static.route": "Remove Tungsten Fabric Network static route",
"label.action.delete.network.permission": "Delete Network permission",
"label.action.delete.node": "Delete Node",
"label.action.delete.oauth.provider": "Delete OAuth provider",
"label.action.delete.physical.network": "Delete physical Network",
"label.action.delete.pod": "Delete Pod",
"label.action.delete.primary.storage": "Delete Primary Storage",
"label.action.delete.routing.firewall.rule": "Delete IPv4 Routing firewall rule",
"label.action.delete.secondary.storage": "Delete Secondary Storage",
"label.action.delete.security.group": "Delete Security Group",
"label.action.delete.snapshot": "Delete Snapshot",
"label.action.delete.template": "Delete Template",
"label.action.delete.tungsten.router.table": "Remove Tungsten Fabric route table from Network",
"label.action.delete.user": "Delete User",
"label.action.delete.vgpu.profile": "Delete vGPU profile",
"label.action.delete.volume": "Delete Volume",
"label.action.delete.webhook.deliveries": "Delete Deliveries",
"label.action.delete.webhook.filters": "Delete Filters",
"label.action.delete.zone": "Delete Zone",
"label.action.destroy.instance": "Destroy Instance",
"label.action.destroy.systemvm": "Destroy System VM",
"label.action.destroy.volume": "Destroy Volume",
"label.action.detach.disk": "Detach Disk",
"label.action.detach.iso": "Detach ISO",
"label.action.disable.account": "Disable Account",
"label.action.disable.cluster": "Disable Cluster",
"label.action.disable.disk.offering": "Disable Disk Offering",
"label.action.disable.physical.network": "Disable physical Network",
"label.action.disable.pod": "Disable Pod",
"label.action.disable.role": "Disable Role",
"label.action.disable.static.nat": "Disable static NAT",
"label.action.disable.service.offering": "Disable Service Offering",
"label.action.disable.system.service.offering": "Disable System Service Offering",
"label.action.disable.user": "Disable User",
"label.action.disable.zone": "Disable Zone",
"label.action.download.iso": "Download ISO",
"label.action.download.snapshot": "Download Snapshot",
"label.action.download.template": "Download Template",
"label.action.download.volume": "Download Volume",
"label.action.edit.account": "Edit Account",
"label.action.edit.domain": "Edit Domain",
"label.action.edit.instance": "Edit Instance",
"label.action.edit.iso": "Edit ISO",
"label.action.edit.nfs.options": "Edit NFS mount options",
"label.action.edit.template": "Edit Template",
"label.action.edit.zone": "Edit Zone",
"label.action.enable.two.factor.authentication": "Enabled Two factor authentication",
"label.action.verify.two.factor.authentication": "Verified Two factor authentication",
"label.action.enable.account": "Enable Account",
"label.action.enable.cluster": "Enable Cluster",
"label.action.enable.disk.offering": "Enable disk offering",
"label.action.enable.maintenance.mode": "Enable maintenance mode",
"label.action.enable.physical.network": "Enable physical Network",
"label.action.enable.pod": "Enable Pod",
"label.action.enable.role": "Enable Role",
"label.action.enable.service.offering": "Enable Service Offering",
"label.action.enable.system.service.offering": "Enable System Service Offering",
"label.action.enable.static.nat": "Enable static NAT",
"label.action.enable.user": "Enable User",
"label.action.enable.zone": "Enable Zone",
"label.action.expunge.instance": "Expunge Instance",
"label.action.force.reconnect": "Force reconnect",
"label.action.generate.keys": "Generate keys",
"label.action.generate.api.secret.keys": "Generate New API/Secret Keys",
"label.action.get.diagnostics": "Get diagnostics data",
"label.action.health.monitor": "Health monitor",
"label.action.image.store.read.only": "Make image store read-only",
"label.action.image.store.read.write": "Make image store read-write",
"label.action.import.export.instances": "Import-Export Instances",
"label.action.import.unmanage.volumes": "Import Data Volumes",
"label.action.ingest.instances": "Ingest instances",
"label.action.iso.permission": "Update ISO permissions",
"label.action.iso.share": "Update ISO sharing",
"label.action.lock.account": "Lock Account",
"label.action.lock.user": "Lock User",
"label.action.manage.cluster": "Manage Cluster",
"label.action.migrate.router": "Migrate Router",
"label.action.migrate.systemvm": "Migrate System VM",
"label.action.migrate.systemvm.to.ps": "Migrate System VM to another Primary Storage",
"label.action.patch.systemvm": "Patch System VM",
"label.action.patch.systemvm.vpc": "Patch System VM - VPC Router",
"label.action.patch.systemvm.processing": "Patching System VM....",
"label.action.project.add.account": "Add Account to Project",
"label.action.project.add.user": "Add User to Project",
"label.action.quota.tariff.create": "Create Quota Tariff",
"label.action.quota.tariff.edit": "Edit Quota Tariff",
"label.action.quota.tariff.remove": "Remove Quota Tariff",
"label.action.reboot.instance": "Reboot Instance",
"label.action.reboot.router": "Reboot Router",
"label.action.reboot.systemvm": "Reboot System VM",
"label.action.recover.volume": "Recover Volume",
"label.action.resize.sharedfs": "Resize Shared FileSystem",
"label.action.restart.sharedfs": "Restart Shared FileSystem",
"label.action.recurring.snapshot": "Recurring Snapshots",
"label.action.disable.2FA.user.auth": "Disable User Two Factor Authentication",
"label.action.register.iso": "Register ISO",
"label.action.register.template": "Register Template from URL",
"label.action.release.asnumber": "Release AS Number",
"label.action.release.ip": "Release IP",
"label.action.release.reserved.ip": "Release reserved IP",
"label.action.remove.host": "Remove Host",
"label.action.remove.logical.router": "Remove Logical Router",
"label.action.remove.network.policy": "Remove Network Policy",
"label.action.remove.router.table.from.interface": "Remove Tungsten Fabric route table from interface",
"label.action.remove.tungsten.routing.policy": "Remove Tungsten-Fabric routing policy from Network",
"label.action.remove.nic": "Remove NIC",
"label.action.reserve.ip": "Reserve Public IP",
"label.action.reset.network.permissions": "Reset Network permissions",
"label.action.reset.password": "Reset password",
"label.action.resize.volume": "Resize Volume",
"label.action.revert.snapshot": "Revert to Snapshot",
"label.action.router.health.checks": "Get health checks result",
"label.action.run.diagnostics": "Run Diagnostics",
"label.action.secure.host": "Provision host security keys",
"label.action.set.as.source.nat.ip": "make source NAT",
"label.action.setup.2FA.user.auth": "Setup User Two Factor Authentication",
"label.action.start.sharedfs": "Start Shared FileSystem",
"label.action.start.instance": "Start Instance",
"label.action.start.router": "Start Router",
"label.action.start.systemvm": "Start System VM",
"label.action.stop.sharedfs": "Stop Shared FileSystem",
"label.action.stop.instance": "Stop Instance",
"label.action.stop.router": "Stop Router",
"label.action.stop.systemvm": "Stop System VM",
"label.action.take.snapshot": "Take Snapshot",
"label.action.template.permission": "Update Template permissions",
"label.action.template.share": "Update Template sharing",
"label.action.unmanage.cluster": "Unmanage Cluster",
"label.action.unmanage.instance": "Unmanage Instance",
"label.action.unmanage.instances": "Unmanage Instances",
"label.action.unmanage.virtualmachine": "Unmanage Instance",
"label.action.update.cluster": "Update cluster",
"label.action.update.pod": "Update pod",
"label.action.update.zone": "Update zone",
"label.action.update.storage.pool": "Update storage pool",
"label.action.unmanage.volume": "Unmanage Volume",
"label.action.unmanage.volumes": "Unmanage Volumes",
"label.action.unregister.extension.resource": "Unregister extension resource",
"label.action.update.host": "Update Host",
"label.action.update.security.groups": "Update security groups",
"label.action.update.offering.access": "Update offering access",
"label.action.update.resource.count": "Update resource count",
"label.action.user.data.reset": "Reset User Data",
"label.action.value": "Action/Value",
"label.action.vmsnapshot.create": "Take Instance Snapshot",
"label.action.vmsnapshot.delete": "Delete Instance Snapshot",
"label.action.vmsnapshot.revert": "Revert to Instance Snapshot",
"label.action.vmstoragesnapshot.create": "Take Instance volume Snapshot",
"label.actions": "Actions",
"label.active": "Active",
"label.activate.project": "Activate project",
"label.activeviewersessions": "Active sessions",
"label.add": "Add",
"label.addservices": "Add Services",
"label.add.account": "Add Account",
"label.add.acl.rule": "Add rule",
"label.add.acl": "Add ACL",
"label.add.affinity.group": "Add new Affinity Group",
"label.add.backup.schedule": "Add Backup Schedule",
"label.add.baremetal.dhcp.device": "Add bare metal DHCP device",
"label.add.bgp.peer": "Add BGP Peer",
"label.add.bigswitchbcf.device": "Add BigSwitch BCF Controller",
"label.add.brocadevcs.device": "Add Brocade Vcs Switch",
"label.add.by": "Add by",
"label.add.certificate": "Add certificate",
"label.add.ciscoasa1000v": "Add CiscoASA1000v resource",
"label.add.cluster": "Add Cluster",
"label.add.compute.offering": "Add Compute Offering",
"label.add.condition": "Add condition",
"label.add.custom.action": "Add Custom Action",
"label.add.disk.offering": "Add Disk Offering",
"label.add.domain": "Add Domain",
"label.add.egress.rule": "Add Egress Rule",
"label.add.external.details": "Add external details",
"label.add.f5.device": "Add F5 device",
"label.add.firewall": "Add Firewall Rule",
"label.add.firewallrule": "Add Firewall Rule",
"label.add.gpu.card": "Add GPU card",
"label.add.gpu.device": "Add GPU device",
"label.add.guest.os.category": "Add guest OS category",
"label.add.guest.network": "Add Guest Network",
"label.add.guest.os": "Add Guest OS",
"label.add.guest.os.hypervisor.mapping": "Add guest os hypervisor mapping",
"label.add.host": "Add Host",
"label.add.ingress.rule": "Add Ingress Rule",
"label.add.intermediate.certificate": "Add intermediate certificate",
"label.add.internal.lb": "Add internal LB",
"label.add.ip.range": "Add IP Range",
"label.add.ipv4.subnet": "Add IPv4 Subnet for Routed Networks",
"label.add.ip.v6.prefix": "Add IPv6 prefix",
"label.add.isolated.network": "Add Isolated Network",
"label.add.kubernetes.cluster": "Add Kubernetes Cluster",
"label.add.acl.name": "ACL name",
"label.add.latest.kubernetes.iso": "Add latest Kubernetes ISO",
"label.add.ldap.account": "Add LDAP Account",
"label.add.logical.router": "Add Logical Router to this Network",
"label.add.minimum.required.compute.offering": "Add minimum required Compute Offering",
"label.add.more": "Add more",
"label.add.nodes": "Add Nodes to Kubernetes Cluster",
"label.add.netscaler.device": "Add Netscaler Device",
"label.add.network": "Add Network",
"label.add.network.acl": "Add Network ACL",
"label.add.network.offering": "Add Network Offering",
"label.add.network.permission": "Add Network permission",
"label.add.new.gateway": "Add new Gateway",
"label.add.new.tier": "Add new Network Tier",
"label.add.niciranvp.device": "Add Nvp controller",
"label.add.note": "Add comment",
"label.add.opendaylight.device": "Add OpenDaylight controller",
"label.add.pa.device": "Add Palo Alto device",
"label.add.param": "Add param",
"label.add.physical.network": "Add Physical Network",
"label.add.pod": "Add Pod",
"label.add.prefix": "Add prefix",
"label.add.policy": "Add policy",
"label.add.primary.storage": "Add Primary Storage",
"label.add.private.gateway": "Add Private Gateway",
"label.add.resources": "Add Resources",
"label.add.role": "Add Role",
"label.add.route": "Add Route",
"label.add.router.table.to.instance": "Add Router Table to this Instance",
"label.add.routing.policy": "Add Routing Policy",
"label.add.rule": "Add Rule",
"label.add.secondary.ip": "Add Secondary IP",
"label.add.secondary.storage": "Add Secondary Storage",
"label.add.security.group": "Add Security Group",
"label.add.setting": "Add setting",
"label.add.srx.device": "Add SRX Device",
"label.add.static.route": "Add Static Route",
"label.add.system.service.offering": "Add System Service Offering",
"label.add.term.then": "Add term",
"label.add.traffic": "Add traffic",
"label.add.traffic.type": "Add traffic type",
"label.add.tungsten.address.group": "Add Address Group",
"label.add.tungsten.fabric.route": "Add Tungsten Fabric Network routing table",
"label.add.tungsten.firewall.policy": "Add Firewall Policy",
"label.add.tungsten.firewall.rule": "Add Firewall Rule",
"label.add.tungsten.interface.route": "Add Tungsten Fabric interface routing table",
"label.add.tungsten.interface.static.route": "Add Tungsten Fabric interface static route",
"label.add.tungsten.logical.route": "Add Logical Router",
"label.add.tungsten.network.static.route": "Add Tungsten Fabric Network static route",
"label.add.tungsten.policy": "Add Policy",
"label.add.tungsten.policy.set": "Add Application Policy Set",
"label.add.tungsten.router.table": "Add route table to this Network",
"label.add.tungsten.routing.policy": "Add routing policy to this Network",
"label.add.tungsten.service.group": "Add Service Group",
"label.add.tungsten.tag": "Add Tag",
"label.add.tungsten.tag.type": "Add Tag Type",
"label.add.user": "Add User",
"label.add.upstream.ipv4.routes": "Add upstream IPv4 routes",
"label.add.upstream.ipv6.routes": "Add upstream IPv6 routes",
"label.add.vgpu.profile": "Add profile",
"label.add.vm": "Add Instance",
"label.add.vms": "Add Instances",
"label.add.vmware.datacenter": "Add VMware Datacenter",
"label.add.vnmc.device": "Add VNMC Device",
"label.add.vpc": "Add VPC",
"label.add.vpc.offering": "Add VPC Offering",
"label.add.vpn.customer.gateway": "Add VPN Customer Gateway",
"label.add.vpn.gateway": "Add VPN Gateway",
"label.add.vpn.user": "Add VPN User",
"label.add.webhook.filter": "Add Webhook Filter",
"label.add.zone": "Add Zone",
"label.adding": "Adding",
"label.adding.user": "Adding User...",
"label.address": "Address",
"label.address.group": "Address group",
"label.admin": "Domain Admin",
"label.advanced": "Advanced",
"label.advanced.mode": "Advanced mode",
"label.affinity": "Affinity",
"label.affinity.groups": "Affinity Groups",
"label.affinitygroup": "Affinity Group",
"label.agentcount": "Number Of connected agents",
"label.agent.password": "Agent password",
"label.agent.username": "Agent username",
"label.agentport": "Agent port",
"label.agentstate": "Agent state",
"label.agentscount": "Number Of connected agents",
"label.agree": "Agree",
"label.alert": "Alert",
"label.alert.details": "Alert details",
"label.alerts": "Alerts",
"label.algorithm": "Algorithm",
"label.all": "All",
"label.all.available.data": "All available data",
"label.all.ipv6": "All IPv6",
"label.all.zone": "All Zones",
"label.allocated": "Allocated",
"label.allocatedonly": "Allocated",
"label.allocationstate": "Allocation state",
"label.allow": "Allow",
"label.allowedroletypes": "Allowed Role Types",
"label.allow.duplicate.macaddresses": "Allow duplicate MAC addresses",
"label.allowuserdrivenbackups": "Allow User driven backups",
"label.annotation": "Comment",
"label.annotations": "Comments",
"label.adminsonly": "Only visible to administrators",
"label.annotation.everyone": "Visible to everyone",
"label.anti.affinity": "Anti-affinity",
"label.anti.affinity.group": "Anti-affinity group",
"label.api.docs": "API Docs",
"label.api.docs.description": "For information about how the APIs work, and tips on how to use them, click here to see the Developer's Guide.",
"label.api.docs.count": "APIs available for your account",
"label.api.version": "API version",
"label.apikey": "API key",
"label.app.cookie": "AppCookie",
"label.app.name": "CloudStack",
"label.application.policy.set": "Application Policy Set",
"label.apply": "Apply",
"label.apply.to.all": "Apply to all",
"label.apply.tungsten.firewall.policy": "Apply Firewall Policy",
"label.apply.tungsten.network.policy": "Apply Network Policy",
"label.apply.tungsten.tag": "Apply tag",
"label.arch": "Arch",
"label.archive": "Archive",
"label.archived": "Archived",
"label.archive.alerts": "Archive alerts",
"label.archive.events": "Archive events",
"label.as.default": "as default",
"label.asnumber": "AS Number",
"label.asnumbers": "AS Numbers",
"label.asnrange": "AS Range",
"label.assign": "Assign",
"label.assign.instance.another": "Assign Instance to another Account",
"label.assign.vms": "Assign Instances",
"label.assigning.vms": "Assigning Instances",
"label.associatednetwork": "Associated Network",
"label.associatednetworkid": "Associated Network ID",
"label.associatednetworkname": "Network name",
"label.asyncbackup": "Async backup",
"label.attach.vol.to.instance": "Attach the created Volume to an existing Instance",
"label.attaching": "Attaching",
"label.authentication.method": "Authentication Method",
"label.authentication.sshkey": "System SSH Key",
"label.use.existing.vcenter.credentials.from.zone": "Use existing vCenter credentials from the Zone",
"label.autoscale": "AutoScale",
"label.autoscalevmgroupname": "AutoScaling Group",
"label.author.email": "Author e-mail",
"label.author.name": "Author name",
"label.auto.assign": "Automatically assign",
"label.auto.assign.diskoffering.disk.size": "Automatically assign offering matching the disk size",
"label.auto.assign.random.ip": "Automatically assign a random IP address",
"label.auto.refresh.statistics": "Period between auto refreshes",
"label.auto.refresh.statistics.none": "None",
"label.automigrate.volume": "Auto migrate volume to another storage pool if required",
"label.autoscale.vm.groups": "AutoScaling Groups",
"label.autoscale.vm.profile": "AutoScale Instance Profile",
"label.autoscalingenabled": "Auto scaling",
"label.availability": "Availability",
"label.available": "Available",
"label.availableprocessors": "Available processor cores",
"label.availablevirtualmachinecount": "Available Instances",
"label.back": "Back",
"label.back.login": "Back to login",
"label.backup": "Backup",
"label.backups": "Backups",
"label.backup.attach.restore": "Restore and attach backup volume",
"label.backup.configure.schedule": "Configure Backup Schedule",
"label.backup.offering.assign": "Assign Instance to backup offering",
"label.backup.offering.remove": "Remove Instance from backup offering",
"label.backup.offerings": "Backup Offerings",
"label.backup.offering.assign.failed": "Failed to assign Backup Offering",
"label.backup.repository": "Backup Repository",
"label.backup.restore": "Restore Instance backup",
"label.backup.schedule.create.failed": "Failed to create Backup Schedule",
"label.backuplimit": "Backup Limits",
"label.backup.schedules": "Backup Schedules",
"label.backup.storage": "Backup Storage",
"label.backupstoragelimit": "Backup Storage Limits (GiB)",
"label.backupofferingid": "Backup Offering ID",
"label.backupofferingname": "Backup Offering Name",
"label.backup.repository.add": "Add Backup Repository",
"label.backup.repository.edit": "Edit Backup Repository",
"label.backup.repository.remove": "Remove Backup Repository",
"label.balance": "Balance",
"label.bandwidth": "Bandwidth",
"label.baremetal.dhcp.devices": "Bare metal DHCP devices",
"label.baremetal.pxe.device": "Add bare metal PXE device",
"label.baremetal.pxe.devices": "Bare metal PXE devices",
"label.baremetalcpu": "CPU (in MHz)",
"label.baremetalcpucores": "# of CPU cores",
"label.baremetalmac": "Host MAC",
"label.baremetalmemory": "Memory (in MB)",
"label.based.on": "Based on",
"label.based.on.role.id.or.type": "Creates a role based on either role id or type.",
"label.basic": "Basic",
"label.bcfdeviceid": "ID",
"label.bgp.peers": "BGP Peers",
"label.bgp.peer.set.reservation.desc": "You can make the BGP peer public, or you can dedicate/reserve it for either a Domain or an Account",
"label.bigswitch.controller.address": "BigSwitch BCF controller address",
"label.bladeid": "Blade ID",
"label.blades": "Blades",
"label.bootable": "Bootable",
"label.bootintosetup": "Boot into hardware setup",
"label.bootmode": "Boot mode",
"label.boottype": "Boot type",
"label.broadcastdomainrange": "Broadcast domain range",
"label.broadcastdomaintype": "Broadcast domain type",
"label.broadcasturi": "Broadcast URI",
"label.brocade.vcs.address": "Vcs switch address",
"label.browser": "Browser",
"label.bucket": "Bucket",
"label.bucketlimit": "Bucket Limits",
"label.by.account": "By Account",
"label.by.domain": "By Domain",
"label.by.level": "By level",
"label.by.pod": "By Pod",
"label.by.state": "By state",
"label.by.type": "By type",
"label.by.zone": "By Zone",
"label.bypassvlanoverlapcheck": "Bypass VLAN id/range overlap",
"label.cachemode": "Write-cache type",
"label.cancel": "Cancel",
"label.cancel.shutdown": "Cancel Shutdown",
"label.cancel.maintenance": "Cancel Maintenance",
"label.cancel.host.as.degraded": "Cancel host as degraded",
"label.capacity": "Capacity",
"label.capacitybytes": "Capacity bytes",
"label.capacityiops": "IOPS total",
"label.category": "Category",
"label.certchain": "Chain",
"label.certificate": "Certificate",
"label.certificate.chain": "Certificate chain",
"label.certificate.upload": "Certificate uploaded.",
"label.certificate.upload.failed": "Certificate upload failed",
"label.certificate.upload.failed.description": "Failed to update SSL Certificate. Failed to pass certificate validation check.",
"label.certificateid": "Certificate ID",
"label.certificates": "Certificates",
"label.chainsize": "Chain size",
"label.change": "Change",
"label.change.affinity": "Change affinity",
"label.change.bgp.peers": "Change BGP peers",
"label.change.ip.address": "Change IP address",
"label.change.ipaddress": "Change IP address for NIC",
"label.change.disk.offering": "Change disk offering",
"label.change.offering.for.volume": "Change disk offering for the volume",
"label.change.password.onlogin": "User must change password at next login",
"label.change.password.reset": "Force password reset",
"label.change.service.offering": "Change service offering",
"label.character": "Character",
"label.checksum": "Checksum",
"label.choose.resource.icon": "Choose icon",
"label.choose.saml.identity": "Choose SAML identity provider",
"label.choose.isolation.method.public.ip.range": "Choose the proper isolation method for the public IP range in accordance with the zone. Valid options currently 'vlan' or 'vxlan', defaults to 'vlan'.",
"label.cidr": "CIDR",
"label.cidrsize": "CIDR size",
"label.cidr.destination.network": "Destination Network CIDR",
"label.cidrlist": "CIDR list",
"label.cisco.nexus1000v.ip.address": "Nexus 1000v IP address",
"label.cisco.nexus1000v.password": "Nexus 1000v password",
"label.cisco.nexus1000v.username": "Nexus 1000v username",
"label.cks.cluster.autoscalingenabled": "Enable auto scaling on this cluster",
"label.cks.cluster.control.nodes.offeringid": "Service Offering for Control Nodes",
"label.cks.cluster.control.nodes.templateid": "Template for Control Nodes",
"label.cks.cluster.etcd.nodes": "Etcd Nodes",
"label.cks.cluster.etcd.nodes.offeringid": "Service Offering for etcd Nodes",
"label.cks.cluster.etcd.nodes.templateid": "Template for etcd Nodes",
"label.cks.cluster.maxsize": "Maximum cluster size (Worker nodes)",
"label.cks.cluster.minsize": "Minimum cluster size (Worker nodes)",
"label.cks.cluster.node.manual.upgrade": "Mark nodes for manual upgrade",
"label.cks.cluster.size": "Cluster size (Worker nodes)",
"label.cks.cluster.worker.nodes.offeringid": "Service Offering for Worker Nodes",
"label.cks.cluster.worker.nodes.templateid": "Template for Worker Nodes",
"label.cks.cluster.control.nodes.affinitygroupid": "Affinity Groups for Control Nodes",
"label.cks.cluster.worker.nodes.affinitygroupid": "Affinity Groups for Worker Nodes",
"label.cks.cluster.etcd.nodes.affinitygroupid": "Affinity Groups for ETCD Nodes",
"label.cleanup": "Clean up",
"label.clear": "Clear",
"label.clear.all": "Clear all",
"label.clear.list": "Clear list",
"label.clear.notification": "Clear notification",
"label.clientid": "Provider Client ID",
"label.clone.backup.offering": "Clone Backup Offering",
"label.clone.compute.offering": "Clone Compute Offering",
"label.clone.disk.offering": "Clone Disk Offering",
"label.clone.network.offering": "Clone Network Offering",
"label.clone.system.service.offering": "Clone System Service Offering",
"label.clone.vpc.offering": "Clone VPC Offering",
"label.close": "Close",
"label.cloud.managed": "CloudManaged",
"label.cloudian.admin.password": "Admin Service Password",
"label.cloudian.admin.url": "Admin Service Endpoint URL",
"label.cloudian.admin.username": "Admin Service Username",
"label.cloudian.iam.url": "IAM Service Endpoint URL",
"label.cloudian.s3.url": "S3 Service Endpoint URL",
"label.cloudian.storage": "Cloudian storage",
"label.cluster": "Cluster",
"label.cluster.name": "Cluster name",
"label.cluster.size": "Cluster size",
"label.clusterid": "Cluster",
"label.clustername": "Cluster name",
"label.clusternamelabel": "Cluster name",
"label.clusters": "Clusters",
"label.clustertype": "Cluster type",
"label.clvm": "CLVM",
"label.code": "Code",
"label.collectiontime": "Collection time",
"label.columns": "Columns",
"label.comma.separated.list.description": "Enter comma-separated list of commands",
"label.command": "Command",
"label.comments": "Comments",
"label.communities": "Communities",
"label.community": "Community",
"label.complete": "Complete",
"label.completed": "Completed",
"label.compute": "Compute",
"label.compute.offerings": "Compute Offerings",
"label.compute.offering.for.sharedfs.instance": "Compute Offering for Instance",
"label.computeonly.offering": "Compute only disk offering",
"label.computeonly.offering.tooltip": "Option to specify root disk related information in the compute offering or to directly link a disk offering to the compute offering",
"label.conditions": "Conditions",
"label.configuration": "Configuration",
"label.configuration.details": "Configuration Details",
"label.configure": "Configure",
"label.configure.instance": "Configure Instance",
"label.configure.health.monitor": "Configure Health Monitor",
"label.configure.app": "Configure the App",
"label.configure.ldap": "Configure LDAP",
"label.configure.ovs": "Configure Ovs",
"label.configure.sticky.policy": "Configure sticky policy",
"label.confirm.delete.egress.firewall.rules": "Please confirm you wish to delete the selected egress firewall rules.",
"label.confirm.delete.firewall.rules": "Please confirm you wish to delete the selected firewall rules.",
"label.confirm.delete.ip.v6.firewall.rules": "Please confirm you wish to delete the selected IPv6 firewall rules",
"label.confirm.delete.isos": "Please confirm you wish to delete the selected ISOs.",
"label.confirm.delete.loadbalancer.rules": "Please confirm you wish to delete the selected load balancing rules.",
"label.confirm.delete.portforward.rules": "Please confirm you wish to delete the selected port-forward rules.",
"label.confirm.delete.routing.firewall.rules": "Please confirm you wish to delete the selected IPv4 Routing firewall rules",
"label.confirm.delete.snapshot.zones": "Please confirm you wish to delete the Snapshot in the selected Zones.",
"label.confirm.delete.templates": "Please confirm you wish to delete the selected Templates.",
"label.confirm.delete.tungsten.address.group": "Please confirm that you would like to delete this Address Group",
"label.confirm.delete.tungsten.firewall.policy": "Please confirm that you would like to delete this Firewall Policy",
"label.confirm.delete.tungsten.policy": "Please confirm that you would like to delete this Policy",
"label.confirm.delete.tungsten.policy.set": "Please confirm that you would like to delete this Application Policy Set",
"label.confirm.delete.tungsten.service.group": "Please confirm that you would like to delete this Service Group",
"label.confirm.delete.tungsten.tag": "Please confirm that you would like to delete this Tag",
"label.confirm.delete.tungsten.tag.type": "Please confirm that you would like to delete this Tag Type",
"label.confirm.release.public.ip.addresses": "Please confirm you wish to release the selected public IP addresses.",
"label.confirm.remove.logical.router": "Please confirm that you would like to delete this Logical Router",
"label.confirm.remove.network.route.table": "Please confirm that you would like to delete this Network Route Table",
"label.confirm.remove.route.table": "Please confirm that you would like to delete this Interface Route Table",
"label.confirmacceptinvitation": "Please confirm you wish to join this project.",
"label.confirmation": "Confirmation",
"label.confirmdeclineinvitation": "Are you sure you want to decline this project invitation?",
"label.confirmpassword": "Confirm password",
"label.confirmpassword.description": "Please type the same password again.",
"label.connected.agents": "Connected Agents",
"label.connect": "Connect",
"label.connectiontimeout": "Connection timeout",
"label.conservemode": "Conserve mode",
"label.considerlasthost": "Consider Last Host",
"label.consoleproxy": "Console proxy",
"label.console.proxy": "Console proxy",
"label.console.proxy.vm": "Console proxy VM",
"label.contains": "Contains",
"label.continue": "Continue",
"label.continue.install": "Continue with installation",
"label.controlnodes": "Control nodes",
"label.conversionhost": "Conversion Host",
"label.copied.clipboard": "Copied to clipboard",
"label.copy": "Copy",
"label.copy.clipboard": "Copy to clipboard",
"label.copy.consoleurl": "Copy console URL to clipboard",
"label.copyid": "Copy ID",
"label.copy.password": "Copy password",
"label.copy.templates.from.other.secondary.storages": "Copy Templates from other storages instead of fetching from URLs",
"label.copy.templates.from.other.secondary.storages.add.zone": "Copy Templates from other storages",
"label.core": "Core",
"label.core.zone.type": "Core Zone type",
"label.count": "Count",
"label.counter": "Counter",
"label.counter.name": "Name of the counter for which the policy will be evaluated",
"label.cpu": "CPU",
"label.cpu.sockets": "CPU Sockets",
"label.cpu.usage.info": "CPU usage information",
"label.cpuallocated": "CPU allocated for Instances",
"label.cpuallocatedghz": "CPU allocated",
"label.cpulimit": "CPU limits",
"label.cpuload": "% CPU in use",
"label.cpumaxdeviation": "Deviation",
"label.cpunumber": "CPU cores",
"label.cpusockets": "The number of CPU sockets",
"label.cpuspeed": "CPU (in MHz)",
"label.cputotal": "Total CPU",
"label.cputotalghz": "CPU total",
"label.cpuused": "CPU utilized",
"label.cpuusedghz": "CPU used",
"label.create": "Create",
"label.create.instance": "Create Cloud Server",
"label.create.account": "Create Account",
"label.create.asnrange": "Create AS Range",
"label.create.backup": "Start Backup",
"label.create.extension": "Create Extension",
"label.create.sharedfs": "Create Shared FileSystem",
"label.create.network": "Create new Network",
"label.create.nfs.secondary.staging.storage": "Create NFS secondary staging storage",
"label.create.project": "Create Project",
"label.create.project.role": "Create Project Role",
"label.create.routing.policy": "Create Routing Policy",
"label.create.site.vpn.connection": "Create site-to-site VPN connection",
"label.create.site.vpn.gateway": "Create site-to-site VPN gateway",
"label.create.snapshot.for.volume": "Created Snapshot for Volume",
"label.create.ssh.key.pair": "Create a SSH Key Pair",
"label.create.template": "Create Template",
"label.create.tier.aclid.description": "The ACL associated with the Network Tier.",
"label.create.tier.externalid.description": "ID of the Network in an external system.",
"label.create.tier.gateway.description": "Gateway IP must be within VPC CIDR ({value})",
"label.create.tier.name.description": "A unique name for the Network Tier.",
"label.create.tier.netmask.description": "Network Tier's netmask must be more restrictive than {value}",
"label.create.tier.networkofferingid.description": "The Network offering for the Network Tier.",
"label.create.tungsten.routing.policy": "Create Tungsten-Fabric routing policy",
"label.create.user": "Create User",
"label.create.vm": "Create Instance",
"label.create.vm.and.stay": "Create Instance & stay on this page",
"label.create.vpn.connection": "Create VPN connection",
"label.create.webhook": "Create Webhook",
"label.created": "Created",
"label.creating": "Creating",
"label.creating.iprange": "Creating IP ranges",
"label.credit": "Credit",
"label.cron": "Cron expression",
"label.cron.mode": "Cron mode",
"label.crosszones": "Cross Zones",
"label.csienabled": "CSI Enabled",
"label.csv.preview": "Data preview",
"label.currency": "Currency",
"label.current": "Current",
"label.currentstep": "Current step",
"label.currentstep.duration": "Current step duration",
"label.current.storage": "Current storage",
"label.currentpassword": "Current password",
"label.custom": "Custom",
"label.customactionid": "Custom Action",
"label.customactions": "Custom Actions",
"label.custom.actions": "Custom Actions",
"label.customconstrained": "Custom constrained",
"label.customdisksize": "Custom disk size",
"label.customunconstrained": "Custom unconstrained",
"label.daily": "Daily",
"label.dark.mode": "Dark mode",
"label.dashboard": "Dashboard",
"label.data.disk": "Data Disk",
"label.data.disk.offering": "Data Disk Offering",
"label.data.pool": "Data pool",
"label.data.pool.description": "Data pool is required when using a Ceph pool with erasure code",
"label.date": "Date",
"label.datetime.filter.period": "From <b>{startDate}</b> to <b>{endDate}</b>",
"label.datetime.filter.starting": "Starting <b>{startDate}</b>.",
"label.datetime.filter.up.to": "Up to <b>{endDate}</b>.",
"label.day": "Day",
"label.days": "Days",
"label.day.of.month": "Day of month",
"label.day.of.week": "Day of week",
"label.db.usage.metrics": "DB/Usage Server",
"label.dbislocal": "The db runs locally",
"label.dc.name": "DC name",
"label.declare.host.as.degraded": "Declare host as degraded",
"label.decline.invitation": "Decline invitation",
"label.dedicate": "Dedicate",
"label.dedicate.bgp.peer": "Dedicate BGP peer",
"label.dedicate.cluster": "Dedicate Cluster",
"label.dedicate.host": "Dedicate Host",
"label.dedicate.ipv4.subnet": "Dedicate IPv4 subnet",
"label.dedicate.pod": "Dedicate Pod",
"label.dedicate.vlan.vni.range": "Dedicate VLAN/VNI range",
"label.dedicate.zone": "Dedicate Zone",
"label.dedicated": "Dedicated",
"label.dedicated.vlan.vni.ranges": "Dedicated VLAN/VNI ranges",
"label.dedicatedresources": "Dedicated resources",
"label.default": "Default",
"label.default.use": "Default use",
"label.default.view": "Default view",
"label.default.network.domain.isolated.network": "Default network domain for Isolated networks",
"label.default.network.guestcidraddress.isolated.network": "Default guest CIDR for Isolated Networks",
"label.defaultnetwork": "Default Network",
"label.delete": "Delete",
"label.delete.acl": "Delete ACL",
"label.delete.affinity.group": "Delete affinity group",
"label.delete.alerts": "Delete alerts",
"label.delete.asnrange": "Delete AS Range",
"label.delete.autoscale.vmgroup": "Delete AutoScaling Group",
"label.delete.backup": "Delete backup",
"label.delete.backup.schedule": "Delete backup schedule",
"label.delete.bgp.peer": "Delete BGP peer",
"label.delete.bigswitchbcf": "Remove BigSwitch BCF controller",
"label.delete.brocadevcs": "Remove Brocade Vcs switch",
"label.delete.certificate": "Delete certificate",
"label.delete.ciscoasa1000v": "Delete CiscoASA1000v",
"label.delete.ciscovnmc.resource": "Delete CiscoVNMC resource",
"label.delete.condition": "Delete condition",
"label.delete.custom.action": "Delete Custom Action",
"label.delete.dedicated.vlan.range": "Deleted dedicated VLAN/VNI range.",
"label.delete.domain": "Delete domain",
"label.delete.events": "Delete events",
"label.delete.extension": "Delete Extension",
"label.delete.f5": "Delete F5",
"label.delete.gateway": "Delete gateway",
"label.delete.icon": "Delete icon",
"label.delete.instance.group": "Delete Instance group",
"label.delete.internal.lb": "Delete internal LB",
"label.delete.ipv4.subnet": "Delete IPv4 subnet",
"label.delete.ip.v6.prefix": "Delete IPv6 prefix",
"label.delete.netscaler": "Delete NetScaler",
"label.delete.niciranvp": "Remove Nvp controller",
"label.delete.opendaylight.device": "Delete OpenDaylight controller",
"label.delete.pa": "Delete Palo Alto",
"label.delete.portforward.rules": "Delete port forward rules",
"label.delete.project": "Delete project",
"label.delete.project.role": "Delete project role",
"label.delete.role": "Delete Role",
"label.delete.rule": "Delete Rule",
"label.delete.setting": "Delete Setting",
"label.delete.snapshot.policy": "Delete Snapshot policy",
"label.delete.srx": "Delete SRX",
"label.delete.sslcertificate": "Delete SSL certificate",
"label.delete.tag": "Remove Tag",
"label.delete.term": "Delete term",
"label.delete.traffic.type": "Delete traffic type",
"label.delete.tungsten.address.group": "Delete Address Group",
"label.delete.tungsten.fabric.tag": "Delete Tag",
"label.delete.tungsten.fabric.tag.type": "Delete Tag type",
"label.delete.tungsten.firewall.policy": "Delete Firewall Policy",
"label.delete.tungsten.policy": "Delete Policy",
"label.delete.tungsten.policy.set": "Delete Policy Set",
"label.delete.tungsten.service.group": "Delete Service Group",
"label.delete.volumes": "Data volumes to be deleted",
"label.delete.vpn.connection": "Delete VPN connection",
"label.delete.vpn.customer.gateway": "Delete VPN Customer Gateway",
"label.delete.vpn.gateway": "Delete VPN gateway",
"label.delete.vpn.user": "Delete VPN User",
"label.delete.webhook": "Delete Webhook",
"label.delete.webhook.delivery": "Delete Webhook Delivery",
"label.delete.webhook.filter": "Delete Webhook Filter",
"label.deleteconfirm": "Please confirm that you would like to delete this",
"label.deleting": "Deleting",
"label.deleting.failed": "Deleting failed",
"label.deleting.iso": "Deleting ISO",
"label.deleting.snapshot": "Deleting Snapshot",
"label.deleting.template": "Deleting Template",
"label.deleteprotection": "Delete protection",
"label.demote.project.owner": "Demote Account to regular role",
"label.demote.project.owner.user": "Demote User to regular role",
"label.deny": "Deny",
"label.deployasis": "Read Instance settings from OVA",
"label.deploymentplanner": "Deployment planner",
"label.desc.db.stats": "Database Statistics",
"label.desc.importexportinstancewizard": "Import and export Instances to/from an existing VMware or KVM Cluster.",
"label.desc.import.ext.kvm.wizard": "Import Instance from remote KVM host",
"label.desc.import.local.kvm.wizard": "Import QCOW2 image from Local Storage",
"label.desc.import.shared.kvm.wizard": "Import QCOW2 image from Shared Storage",
"label.desc.import.unmanage.volume": "Import and unmanage volume on Storage Pools",
"label.desc.ingesttinstancewizard": "Ingest instances from an external KVM host",
"label.desc.importmigratefromvmwarewizard": "Import instances from VMware into a KVM Cluster",
"label.desc.usage.stats": "Usage Server Statistics",
"label.description": "Description",
"label.destaddressgroupuuid": "Destination Address Group",
"label.destcidr": "Destination CIDR",
"label.destendport": "Destination End Port",
"label.desthost": "Destination host",
"label.destination": "Destination",
"label.destination.cluster": "Destination Cluster",
"label.destination.pod": "Destination Pod",
"label.destination.zone": "Destination Zone",
"label.destinationphysicalnetworkid": "Destination physical Network ID",
"label.destination.hypervisor": "Destination Hypervisor",
"label.destinationtype": "Destination Type",
"label.destipprefix": "Destination Network Address",
"label.destipprefixlen": "Destination Prefix Length",
"label.destnetwork": "Destination Network",
"label.destnetworkuuid": "Network",
"label.destport": "Destination Ports",
"label.destroy": "Destroy",
"label.destroying": "Destroying",
"label.destroyed": "Destroyed",
"label.destroy.router": "Destroy router",
"label.destroy.sharedfs": "Destroy Shared FileSystem",
"label.deststartport": "Destination Start Port",
"label.desttaguuid": "Destination Tag",
"label.details": "Details",
"label.deviceid": "Device ID",
"label.devicename": "Device Name",
"label.devices": "Devices",
"label.dhcp": "DHCP",
"label.direct.attached.public.ip": "Direct attached public IP",
"label.direct.ips": "Shared Network IPs",
"label.directdownload": "Direct download",
"label.direction": "Direction",
"label.disable.autoscale.vmgroup": "Disable AutoScaling Group",
"label.disable.custom.action": "Disable Custom Action",
"label.disable.extension": "Disable Extension",
"label.disable.host": "Disable host",
"label.disable.network.offering": "Disable Network Offering",
"label.disable.provider": "Disable provider",
"label.disable.storage": "Disable storage pool",
"label.disable.vpc.offering": "Disable VPC Offering",
"label.disable.vpn": "Disable remote access VPN",
"label.disable.webhook": "Disable Webhook",
"label.disabled": "Disabled",
"label.disconnected": "Last disconnected",
"label.discover.gpu.devices": "Discover GPU devices",
"label.disk": "Disk",
"label.disk.offerings": "Disk Offerings",
"label.disk.path": "Disk Path",
"label.disk.tooltip": "Disk Image filename in the selected Storage Pool",
"label.disk.selection": "Disk selection",
"label.disk.size": "Disk size",
"label.disk.usage.info": "Disk usage information",
"label.diskbytesreadrate": "Disk read rate (BPS)",
"label.diskbytesreadratemax": "Max disk read rate (BPS)",
"label.diskbyteswriterate": "Disk write rate (BPS)",
"label.diskbyteswriteratemax": "Max disk write rate (BPS)",
"label.diskiopsmax": "Max IOPS",
"label.diskiopsmin": "Min IOPS",
"label.diskiopsreadrate": "Disk read rate (IOPS)",
"label.diskiopstotal": "Disk IOPS",
"label.diskiopswriterate": "Disk write rate (IOPS)",
"label.diskioread": "Disk read (IO)",
"label.diskiowrite": "Disk write (IO)",
"label.diskkbsread": "Disk read (KiB)",
"label.diskkbswrite": "Disk write (KiB)",
"label.diskread": "Disk read",
"label.diskwrite": "Disk write",
"label.diskoffering": "Disk Offering",
"label.diskofferingdisplaytext": "Disk Offering",
"label.diskofferingid": "Disk Offering",
"label.disksize": "Disk size (in GB)",
"label.disksizeallocated": "Disk allocated",
"label.disksizeallocatedgb": "Allocated",
"label.disksizefree": "Disk free",
"label.disksizetotal": "Disk total",
"label.disksizetotalgb": "Total",
"label.disksizeunallocatedgb": "Unallocated",
"label.disksizeused": "Disk size used",
"label.disksizeusedgb": "Used",
"label.display.text": "Display text",
"label.displayname": "Display name",
"label.displaynetwork": "Display Network",
"label.displaytext": "Description",
"label.distributedvpcrouter": "Distributed VPC router",
"label.dns": "DNS",
"label.dns1": "DNS 1",
"label.dns2": "DNS 2",
"label.domain": "Domain",
"label.domain.id": "Domain ID",
"label.domain.name": "Domain name",
"label.domain.router": "Domain Router",
"label.domain.suffix": "DNS domain suffix (i.e., xyz.com)",
"label.domainid": "Domain",
"label.domainname": "Domain",
"label.domainpath": "Domain",
"label.domainrouter": "Virtual Router",
"label.domains": "Domains",
"label.done": "Done",
"label.down": "Down",
"label.dropservices": "Drop Services",
"label.download": "Download",
"label.download.csv": "Download CSV",
"label.download.kubeconfig.cluster": "Download kubeconfig for the cluster <br><br> The <code><b>kubectl</b></code> command-line tool uses kubeconfig files to find the information it needs to choose a cluster and communicate with the API server of a cluster.",
"label.download.kubectl": "Download <code><b>kubectl</b></code> tool for cluster's Kubernetes version",
"label.download.kubernetes.cluster.config": "Download Kubernetes cluster config",
"label.download.percent": "Download percent",
"label.download.setting": "Download setting",
"label.download.state": "Download state",
"label.dpd": "Dead peer detection",
"label.crosszoneinstancecreation": "Cross-Zone Instance Creation",
"label.driver": "Driver",
"label.drs": "DRS",
"label.drsimbalance": "DRS imbalance",
"label.drs.plan": "DRS Plan",
"label.drs.generate.plan": "Generate DRS plan",
"label.drs.no.plan.generated": "No DRS plan has been generated as the cluster is not imbalanced according to the threshold set",
"label.duration": "Duration (in sec)",
"label.duration.custom": "Custom",
"label.duration.1hour": "1 hour",
"label.duration.6hours": "6 hours",
"label.duration.12hours": "12 hours",
"label.duration.24hours": "24 hours",
"label.duration.7days": "7 days",
"label.dynamic": "Dynamic",
"label.dynamicscalingenabled": "Dynamic scaling enabled",
"label.dynamicscalingenabled.tooltip": "Instance can dynamically scale only when dynamic scaling is enabled on Template, service offering and global setting.",
"label.diskofferingstrictness": "Disk offering strictness",
"label.disksizestrictness": "Disk size strictness",
"label.edge": "Edge",
"label.edge.zone": "Edge Zone",
"label.edit": "Edit",
"label.edit.account": "Edit Account",
"label.edit.acl": "Edit ACL",
"label.edit.acl.rule": "Edit ACL rule",
"label.edit.autoscale.vmprofile": "Edit AutoScale Instance Profile",
"label.edit.nic": "Edit NIC",
"label.edit.project.details": "Edit project details",
"label.edit.project.role": "Edit project role",
"label.edit.role": "Edit Role",
"label.edit.rule": "Edit Rule",