This repository was archived by the owner on Jan 20, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy pathen.json
More file actions
3284 lines (3284 loc) · 191 KB
/
en.json
File metadata and controls
3284 lines (3284 loc) · 191 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
{
"alert.service.domainrouter": "Domain router",
"changed.item.properties": "Changed item properties",
"confirm.enable.s3": "Please fill in the following information to enable support for S3-backed Secondary Storage",
"confirm.enable.swift": "Please fill in the following information to enable support for Swift",
"error.could.not.change.your.password.because.non.native.user": "Error could not change your password because user is not a native CloudStack user.",
"error.could.not.enable.zone": "Could not enable zone",
"error.dedicate.cluster.failed": "Failed to dedicate cluster",
"error.dedicate.host.failed": "Failed to dedicate host",
"error.dedicate.pod.failed": "Failed to dedicate pod",
"error.dedicate.zone.failed": "Failed to dedicate zone",
"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 erorrs in the form. Please fix them",
"error.installwizard.message": "Something went wrong; you may go back and correct any errors",
"error.invalid.username.password": "Invalid username or password.<br/><br/>This could also be a restriction on the IP address you are connecting from.",
"error.login": "Your username/password does not match our records.",
"error.menu.select": "Unable to perform action due to no items being selected.",
"error.mgmt.server.inaccessible": "The Management Server is unaccessible. Please try again later.",
"error.password.not.match": "The password fields do not match",
"error.please.specify.physical.network.tags": "Network offerings is not available until you specify tags for this physical network.",
"error.release.dedicate.cluster": "Failed to release dedicated cluster",
"error.release.dedicate.host": "Failed to release dedicated host",
"error.release.dedicate.pod": "Failed to release dedicated pod",
"error.release.dedicate.zone": "Failed to release dedicated zone",
"error.session.expired": "Your session has expired.",
"error.unable.to.reach.management.server": "Unable to reach Management Server",
"error.unable.to.proceed": "Unable to proceed. Please contact your administrator",
"error.unresolved.internet.name": "Your internet name cannot be resolved.",
"firewall.close": "Firewall",
"force.delete.domain.warning": "Warning: Choosing this option will cause the deletion of all child domains and all associated accounts and their resources.",
"force.remove": "Force Remove",
"force.remove.host.warning": "Warning: Choosing this option will cause CloudStack to forcefully stop all running virtual machines before removing this host from the cluster.",
"force.stop": "Force Stop",
"force.stop.instance.warning": "Warning: Forcing a stop on this instance should be your last option. It can lead to data loss as well as inconsistent behavior of the virtual machine state.",
"hint.no.host.tags": "No host tags found",
"hint.no.storage.tags": "No storage tags found",
"hint.type.part.host.tag": "Type in part of a host tag",
"hint.type.part.storage.tag": "Type in part of a storage tag",
"icmp.code.desc": "Please specify -1 if you want to allow all ICMP codes",
"icmp.type.desc": "Please specify -1 if you want to allow all ICMP types.",
"image.directory": "Image Directory",
"inline": "Inline",
"label.about": "About",
"label.about.app": "About CloudStack",
"label.accept": "Accept",
"label.accept.project.invitation": "Accept project invitation",
"label.access": "Access",
"label.accesskey": "Access Key",
"label.account": "Account",
"label.account.and.security.group": "Account - Security group",
"label.account.details": "Account details",
"label.account.id": "Account ID",
"label.account.name": "Account Name",
"label.account.specific": "Account-Specific",
"label.accounts": "Accounts",
"label.accounttype": "Account Type",
"label.acl.export": "Export ACLs",
"label.acl.id": "ACL ID",
"label.acl.list.rules": "ACL List Rules",
"label.acl.reason.description": "Enter the reason behind an ACL rule.",
"label.acl.replaced": "ACL replaced",
"label.aclid": "ACL",
"label.aclname": "ACL Name",
"label.acltotal": "Network ACL Total",
"label.acquire.new.ip": "Acquire New IP",
"label.acquire.new.secondary.ip": "Acquire new secondary IP",
"label.acquiring.ip": "Acquiring IP",
"label.action": "Action",
"label.action.attach.disk": "Attach Disk",
"label.action.attach.disk.processing": "Attaching Disk....",
"label.action.attach.iso": "Attach ISO",
"label.action.attach.iso.processing": "Attaching ISO....",
"label.action.cancel.maintenance.mode": "Cancel Maintenance Mode",
"label.action.cancel.maintenance.mode.processing": "Cancelling Maintenance Mode....",
"label.action.change.password": "Change Password",
"label.action.change.service": "Change Service",
"label.action.change.service.processing": "Changing Service....",
"label.action.configure.samlauthorization": "Configure SAML SSO Authorization",
"label.action.configure.stickiness": "Stickiness",
"label.action.copy.iso": "Copy ISO",
"label.action.copy.iso.processing": "Copying ISO....",
"label.action.copy.template": "Copy Template",
"label.action.copy.template.processing": "Copying Template....",
"label.action.create.template.from.vm": "Create Template from VM",
"label.action.create.template.from.volume": "Create Template from Volume",
"label.action.create.template.processing": "Creating Template....",
"label.action.create.snapshot.from.vmsnapshot": "Create Snapshot from VM Snapshot",
"label.action.create.vm": "Create VM",
"label.action.create.vm.processing": "Creating VM....",
"label.action.create.volume": "Create Volume",
"label.action.create.volume.processing": "Creating Volume....",
"label.action.delete.account": "Delete account",
"label.action.delete.account.processing": "Deleting account....",
"label.action.delete.backup.offering": "Delete Backup Offering",
"label.action.delete.cluster": "Delete Cluster",
"label.action.delete.cluster.processing": "Deleting Cluster....",
"label.action.delete.disk.offering": "Delete Disk Offering",
"label.action.delete.disk.offering.processing": "Deleting Disk Offering....",
"label.action.delete.domain": "Delete Domain",
"label.action.delete.domain.processing": "Deleting Domain....",
"label.action.delete.firewall": "Delete firewall rule",
"label.action.delete.firewall.processing": "Deleting Firewall....",
"label.action.delete.ingress.rule": "Delete Ingress Rule",
"label.action.delete.ingress.rule.processing": "Deleting Ingress Rule....",
"label.action.delete.ip.range": "Delete IP Range",
"label.action.delete.ip.range.processing": "Deleting IP Range....",
"label.action.delete.iso": "Delete ISO",
"label.action.delete.iso.processing": "Deleting ISO....",
"label.action.delete.load.balancer": "Delete load balancer rule",
"label.action.delete.load.balancer.processing": "Deleting Load Balancer....",
"label.action.delete.network": "Delete Network",
"label.action.delete.network.processing": "Deleting Network....",
"label.action.delete.nexusvswitch": "Delete Nexus 1000v",
"label.action.delete.nic": "Remove NIC",
"label.action.delete.physical.network": "Delete physical network",
"label.action.delete.pod": "Delete Pod",
"label.action.delete.pod.processing": "Deleting Pod....",
"label.action.delete.primary.storage": "Delete Primary Storage",
"label.action.delete.primary.storage.processing": "Deleting Primary Storage....",
"label.action.delete.secondary.storage": "Delete Secondary Storage",
"label.action.delete.secondary.storage.processing": "Deleting Secondary Storage....",
"label.action.delete.security.group": "Delete Security Group",
"label.action.delete.security.group.processing": "Deleting Security Group....",
"label.action.delete.service.offering": "Delete Service Offering",
"label.action.delete.service.offering.processing": "Deleting Service Offering....",
"label.action.delete.snapshot": "Delete Snapshot",
"label.action.delete.snapshot.processing": "Deleting Snapshot....",
"label.action.delete.system.service.offering": "Delete System Service Offering",
"label.action.delete.template": "Delete Template",
"label.action.delete.template.processing": "Deleting Template....",
"label.action.delete.user": "Delete User",
"label.action.delete.user.processing": "Deleting User....",
"label.action.delete.volume": "Delete Volume",
"label.action.delete.volume.processing": "Deleting Volume....",
"label.action.delete.zone": "Delete Zone",
"label.action.delete.zone.processing": "Deleting Zone....",
"label.action.destroy.instance": "Destroy Instance",
"label.action.destroy.instance.processing": "Destroying Instance....",
"label.action.destroy.systemvm": "Destroy System VM",
"label.action.destroy.systemvm.processing": "Destroying System VM....",
"label.action.destroy.volume": "Destroy Volume",
"label.action.detach.disk": "Detach Disk",
"label.action.detach.disk.processing": "Detaching Disk....",
"label.action.detach.iso": "Detach ISO",
"label.action.detach.iso.processing": "Detaching ISO....",
"label.action.disable.account": "Disable account",
"label.action.disable.account.processing": "Disabling account....",
"label.action.disable.cluster": "Disable Cluster",
"label.action.disable.cluster.processing": "Disabling Cluster....",
"label.action.disable.nexusvswitch": "Disable Nexus 1000v",
"label.action.disable.physical.network": "Disable physical network",
"label.action.disable.pod": "Disable Pod",
"label.action.disable.pod.processing": "Disabling Pod....",
"label.action.disable.static.nat": "Disable Static NAT",
"label.action.disable.static.nat.processing": "Disabling Static NAT....",
"label.action.disable.user": "Disable User",
"label.action.disable.user.processing": "Disabling User....",
"label.action.disable.zone": "Disable Zone",
"label.action.disable.zone.processing": "Disabling Zone....",
"label.action.download.iso": "Download ISO",
"label.action.download.template": "Download Template",
"label.action.download.volume": "Download Volume",
"label.action.download.volume.processing": "Downloading Volume....",
"label.action.edit.account": "Edit account",
"label.action.edit.disk.offering": "Edit Disk Offering",
"label.action.edit.domain": "Edit Domain",
"label.action.edit.global.setting": "Edit Global Setting",
"label.action.edit.host": "Edit Host",
"label.action.edit.instance": "Edit Instance",
"label.action.edit.iso": "Edit ISO",
"label.action.edit.network": "Edit Network",
"label.action.edit.network.offering": "Edit Network Offering",
"label.action.edit.network.processing": "Editing Network....",
"label.action.edit.pod": "Edit Pod",
"label.action.edit.primary.storage": "Edit Primary Storage",
"label.action.edit.resource.limits": "Edit Resource Limits",
"label.action.edit.service.offering": "Edit Service Offering",
"label.action.edit.template": "Edit Template",
"label.action.edit.user": "Edit User",
"label.action.edit.zone": "Edit Zone",
"label.action.enable.account": "Enable account",
"label.action.enable.account.processing": "Enabling account....",
"label.action.enable.cluster": "Enable Cluster",
"label.action.enable.cluster.processing": "Enabling Cluster....",
"label.action.enable.maintenance.mode": "Enable Maintenance Mode",
"label.action.enable.maintenance.mode.processing": "Enabling Maintenance Mode....",
"label.action.enable.nexusvswitch": "Enable Nexus 1000v",
"label.action.enable.physical.network": "Enable physical network",
"label.action.enable.pod": "Enable Pod",
"label.action.enable.pod.processing": "Enabling Pod....",
"label.action.enable.static.nat": "Enable Static NAT",
"label.action.enable.static.nat.processing": "Enabling Static NAT....",
"label.action.enable.user": "Enable User",
"label.action.enable.user.processing": "Enabling User....",
"label.action.enable.zone": "Enable Zone",
"label.action.enable.zone.processing": "Enabling Zone....",
"label.action.expunge.instance": "Expunge Instance",
"label.action.expunge.instance.processing": "Expunging Instance....",
"label.action.force.reconnect": "Force Reconnect",
"label.action.force.reconnect.processing": "Reconnecting....",
"label.action.generate.keys": "Generate Keys",
"label.action.generate.keys.processing": "Generate Keys....",
"label.action.get.diagnostics": "Get Diagnostics Data",
"label.action.iso.permission": "Update ISO Permissions",
"label.action.iso.share": "Update ISO Sharing",
"label.action.list.nexusvswitch": "List Nexus 1000v",
"label.action.lock.account": "Lock account",
"label.action.lock.account.processing": "Locking account....",
"label.action.manage.cluster": "Manage Cluster",
"label.action.manage.cluster.processing": "Managing Cluster....",
"label.action.migrate.instance": "Migrate Instance",
"label.action.migrate.instance.processing": "Migrating Instance....",
"label.action.migrate.router": "Migrate Router",
"label.action.migrate.router.processing": "Migrating Router....",
"label.action.migrate.systemvm": "Migrate System VM",
"label.action.migrate.systemvm.processing": "Migrating System VM....",
"label.action.project.add.account": "Add Account to Project",
"label.action.project.add.user": "Add User to Project",
"label.action.reboot.instance": "Reboot Instance",
"label.action.reboot.instance.processing": "Rebooting Instance....",
"label.action.reboot.router": "Reboot Router",
"label.action.reboot.router.processing": "Rebooting Router....",
"label.action.reboot.systemvm": "Reboot System VM",
"label.action.reboot.systemvm.processing": "Rebooting System VM....",
"label.action.recover.volume": "Recover Volume",
"label.action.recurring.snapshot": "Recurring Snapshots",
"label.action.register.iso": "Register ISO",
"label.action.register.ncc": "Register NCC",
"label.action.register.template": "Register Template from URL",
"label.action.release.ip": "Release IP",
"label.action.release.ip.processing": "Releasing IP....",
"label.action.remove.host": "Remove Host",
"label.action.remove.host.processing": "Removing Host....",
"label.action.remove.vm": "Release VM",
"label.action.reset.password": "Reset Password",
"label.action.reset.password.processing": "Resetting Password....",
"label.action.resize.volume": "Resize Volume",
"label.action.resize.volume.processing": "Resizing Volume....",
"label.action.resource.limits": "Resource limits",
"label.action.restore.instance": "Restore Instance",
"label.action.restore.instance.processing": "Restoring Instance....",
"label.action.revert.snapshot": "Revert to Snapshot",
"label.action.revert.snapshot.processing": "Reverting 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.start.instance": "Start Instance",
"label.action.start.instance.processing": "Starting Instance....",
"label.action.start.router": "Start Router",
"label.action.start.router.processing": "Starting Router....",
"label.action.start.systemvm": "Start System VM",
"label.action.start.systemvm.processing": "Starting System VM....",
"label.action.stop.instance": "Stop Instance",
"label.action.stop.instance.processing": "Stopping Instance....",
"label.action.stop.router": "Stop Router",
"label.action.stop.router.processing": "Stopping Router....",
"label.action.stop.systemvm": "Stop System VM",
"label.action.stop.systemvm.processing": "Stopping System VM....",
"label.action.take.snapshot": "Take Snapshot",
"label.action.take.snapshot.processing": "Taking Snapshot....",
"label.action.template.permission": "Update Template Permissions",
"label.action.template.share": "Update Template Sharing",
"label.action.unmanage.cluster": "Unmanage Cluster",
"label.action.unmanage.cluster.processing": "Unmanaging Cluster....",
"label.action.unmanage.virtualmachine": "Unmanage VM",
"label.action.update.offering.access": "Update Offering Access",
"label.action.update.os.preference": "Update OS Preference",
"label.action.update.os.preference.processing": "Updating OS Preference....",
"label.action.update.resource.count": "Update Resource Count",
"label.action.update.resource.count.processing": "Updating Resource Count....",
"label.action.vmsnapshot.create": "Take VM Snapshot",
"label.action.vmsnapshot.delete": "Delete VM snapshot",
"label.action.vmsnapshot.revert": "Revert to VM snapshot",
"label.action.vmstoragesnapshot.create": "Take VM volume snapshot",
"label.actions": "Actions",
"label.activate.project": "Activate Project",
"label.activeviewersessions": "Active Sessions",
"label.add": "Add",
"label.add.account": "Add Account",
"label.add.accounts": "Add accounts",
"label.add.accounts.to": "Add accounts to",
"label.add.acl": "Add ACL",
"label.add.acl.list": "Add ACL List",
"label.add.affinity.group": "Add new affinity group",
"label.add.baremetal.dhcp.device": "Add Baremetal DHCP Device",
"label.add.baremetal.rack.configuration": "Add Baremetal Rack Configuration",
"label.add.bigswitchbcf.device": "Add BigSwitch BCF Controller",
"label.add.brocadevcs.device": "Add Brocade Vcs Switch",
"label.add.by": "Add by",
"label.add.by.cidr": "Add By CIDR",
"label.add.by.group": "Add By Group",
"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.direct.iprange": "Add Direct Ip Range",
"label.add.disk.offering": "Add Disk Offering",
"label.add.domain": "Add Domain",
"label.add.egress.rule": "Add egress rule",
"label.add.f5.device": "Add F5 device",
"label.add.firewall": "Add firewall rule",
"label.add.globo.dns": "Add GloboDNS",
"label.add.gslb": "Add GSLB",
"label.add.guest.network": "Add guest network",
"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.isolated.guest.network": "Add Isolated Guest Network",
"label.add.isolated.guest.network.with.sourcenat": "Add Isolated Guest Network with SourceNat",
"label.add.isolated.network": "Add Isolated Network",
"label.add.kubernetes.cluster": "Add Kubernetes Cluster",
"label.add.l2.guest.network": "Add L2 Guest Network",
"label.add.ldap.account": "Add LDAP account",
"label.add.ldap.list.users": "List LDAP users",
"label.add.list.name": "ACL List Name",
"label.add.load.balancer": "Add Load Balancer",
"label.add.management.ip.range": "Add Management IP Range",
"label.add.more": "Add More",
"label.add.netscaler.device": "Add Netscaler device",
"label.add.network": "Add Network",
"label.add.network.acl": "Add network ACL",
"label.add.network.acl.list": "Add Network ACL List",
"label.add.network.device": "Add Network Device",
"label.add.network.offering": "Add Network Offering",
"label.add.new.f5": "Add new F5",
"label.add.new.gateway": "Add new gateway",
"label.add.new.iso": "Add new ISO",
"label.add.new.netscaler": "Add new NetScaler",
"label.add.new.pa": "Add new Palo Alto",
"label.add.new.srx": "Add new SRX",
"label.add.new.tier": "Add new tier",
"label.add.nfs.secondary.staging.store": "Add NFS Secondary Staging Store",
"label.add.niciranvp.device": "Add Nvp Controller",
"label.add.note": "Add Note",
"label.add.opendaylight.device": "Add OpenDaylight Controller",
"label.add.pa.device": "Add Palo Alto device",
"label.add.physical.network": "Add Physical Network",
"label.add.pod": "Add Pod",
"label.add.port.forwarding.rule": "Add port forwarding rule",
"label.add.portable.ip.range": "Add Portable IP Range",
"label.add.primary.storage": "Add Primary Storage",
"label.add.private.gateway": "Add Private Gateway",
"label.add.project.role": "Add Project Role",
"label.add.region": "Add Region",
"label.add.resources": "Add Resources",
"label.add.role": "Add Role",
"label.add.route": "Add Route",
"label.add.rule": "Add Rule",
"label.add.rule.desc": "Create a new ACL rule",
"label.add.secondary.ip": "Add Secondary IP",
"label.add.secondary.storage": "Add Secondary Storage",
"label.add.security.group": "Add Security Group",
"label.add.service.offering": "Add Service Offering",
"label.add.setting": "Add Setting",
"label.add.srx.device": "Add SRX device",
"label.add.static.nat.rule": "Add static NAT rule",
"label.add.static.route": "Add static route",
"label.add.system.service.offering": "Add System Service Offering",
"label.add.template": "Add Template",
"label.add.to.group": "Add to group",
"label.add.traffic": "Add Traffic",
"label.add.ucs.manager": "Add UCS Manager",
"label.add.user": "Add User",
"label.add.vlan": "Add VLAN",
"label.add.vm": "Add VM",
"label.add.vm.to.tier": "Add VM to tier",
"label.add.vms": "Add VMs",
"label.add.vms.to.lb": "Add VM(s) to load balancer rule",
"label.add.vmware.datacenter": "Add VMware datacenter",
"label.add.vnmc.device": "Add VNMC device",
"label.add.vnmc.provider": "Add VNMC provider",
"label.add.volume": "Add Volume",
"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.vxlan": "Add VXLAN",
"label.add.zone": "Add Zone",
"label.addanothernetwork": "Add another network",
"label.added.brocade.vcs.switch": "Added new Brocade Vcs Switch",
"label.added.network.offering": "Added network offering",
"label.added.new.bigswitch.bcf.controller": "Added new BigSwitch BCF Controller",
"label.added.nicira.nvp.controller": "Added new Nicira NVP Controller",
"label.addes.new.f5": "Added new F5",
"label.adding": "Adding",
"label.adding.cluster": "Adding Cluster",
"label.adding.failed": "Adding Failed",
"label.adding.pod": "Adding Pod",
"label.adding.processing": "Adding....",
"label.adding.succeeded": "Adding Succeeded",
"label.adding.user": "Adding User",
"label.adding.zone": "Adding Zone",
"label.additional.networks": "Additional Networks",
"label.addnewnetworks": "Add new networks",
"label.address": "Address",
"label.admin": "Domain Admin",
"label.admin.accounts": "Admin Accounts",
"label.advanced": "Advanced",
"label.advanced.mode": "Advanced Mode",
"label.advanced.search": "Advanced Search",
"label.affinity": "Affinity",
"label.affinity.groups": "Affinity Groups",
"label.affinitygroup": "Affinity Group",
"label.agent.password": "Agent Password",
"label.agent.username": "Agent Username",
"label.agentport": "Agent Port",
"label.agentstate": "Agent State",
"label.agree": "Agree",
"label.alert": "Alert",
"label.alert.archived": "Alert Archived",
"label.alert.deleted": "Alert Deleted",
"label.alert.details": "Alert details",
"label.alerts": "Alerts",
"label.algorithm": "Algorithm",
"label.all": "All",
"label.all.zone": "All Zones",
"label.allocated": "Allocated",
"label.allocatediops": "IOPS Allocated",
"label.allocationstate": "Allocation State",
"label.allow": "Allow",
"label.allowuserdrivenbackups": "Allow User Driven Backups",
"label.annotated.by": "Annotator",
"label.annotation": "Annotation",
"label.anti.affinity": "Anti-affinity",
"label.anti.affinity.group": "Anti-affinity Group",
"label.anti.affinity.groups": "Anti-affinity Groups",
"label.api.version": "API Version",
"label.apikey": "API Key",
"label.app.cookie": "AppCookie",
"label.app.name": "CloudStack",
"label.apply": "Apply",
"label.archive": "Archive",
"label.archive.alerts": "Archive alerts",
"label.archive.events": "Archive events",
"label.as.default": "as default",
"label.assign": "Assign",
"label.assign.instance.another": "Assign Instance to Another Account",
"label.assign.to.load.balancer": "Assigning instance to load balancer",
"label.assign.vms": "Assign VMs",
"label.assigning.vms": "Assigning VMs",
"label.associatednetwork": "Associated Network",
"label.associatednetworkid": "Associated Network ID",
"label.associatednetworkname": "Network Name",
"label.asyncbackup": "Async Backup",
"label.author.email": "Author e-mail",
"label.author.name": "Author name",
"label.autoscale": "AutoScale",
"label.autoscale.configuration.wizard": "AutoScale Configuration Wizard",
"label.availability": "Availability",
"label.availabilityzone": "Availability Zone",
"label.available": "Available",
"label.available.public.ips": "Available Public IP Addresses",
"label.back": "Back",
"label.backup": "Backups",
"label.backup.attach.restore": "Restore and Attach Backup Volume",
"label.backup.offering.assign": "Assign VM to backup offering",
"label.backup.offering.remove": "Remove VM from backup offering",
"label.backup.offerings": "Backup Offerings",
"label.backup.restore": "Restore VM Backup",
"label.backupofferingid": "Backup Offering",
"label.backupofferingname": "Backup Offering",
"label.balance": "Balance",
"label.bandwidth": "Bandwidth",
"label.baremetal.dhcp.devices": "Baremetal DHCP Devices",
"label.baremetal.dhcp.provider": "Baremetal DHCP Provider",
"label.baremetal.pxe.device": "Add Baremetal PXE Device",
"label.baremetal.pxe.devices": "Baremetal PXE Devices",
"label.baremetal.pxe.provider": "Baremetal PXE Provider",
"label.baremetal.rack.configuration": "Baremetal Rack Configuration",
"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.basic": "Basic",
"label.basic.mode": "Basic Mode",
"label.basicsetup": "Basic setup",
"label.bcfdeviceid": "ID",
"label.bigswitch.bcf.details": "BigSwitch BCF details",
"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.brocade.vcs.details": "Brocade Vcs Switch details",
"label.bucket": "Bucket",
"label.by.account": "By Account",
"label.by.alert.type": "By alert type",
"label.by.availability": "By Availability",
"label.by.domain": "By Domain",
"label.by.end.date": "By End Date",
"label.by.event.type": "By event type",
"label.by.level": "By Level",
"label.by.pod": "By Pod",
"label.by.role": "By Role",
"label.by.start.date": "By Start Date",
"label.by.state": "By State",
"label.by.traffic.type": "By Traffic Type",
"label.by.type": "By Type",
"label.by.type.id": "By Type ID",
"label.by.zone": "By Zone",
"label.bypassvlanoverlapcheck": "Bypass VLAN id/range overlap",
"label.cachemode": "Write-cache Type",
"label.cancel": "Cancel",
"label.capacity": "Capacity",
"label.capacity.iops": "Capacity IOPS",
"label.capacitybytes": "Capacity Bytes",
"label.capacityiops": "IOPS Total",
"label.category": "Category",
"label.certchain": "Chain",
"label.certificate": "Certificate",
"label.certificate.details": "Certificate Details",
"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.change.affinity": "Change Affinity",
"label.change.ip.addess": "Change IP Address",
"label.change.ipaddress": "Change IP address for NIC",
"label.change.service.offering": "Change service offering",
"label.change.value": "Change value",
"label.character": "Character",
"label.chassis": "Chassis",
"label.checksum": "Checksum",
"label.choose.saml.indentity": "Choose SAML identity provider",
"label.cidr": "CIDR",
"label.cidr.account": "CIDR or Account/Security Group",
"label.cidr.destination.network": "Destination Network CIDR",
"label.cidr.of.destination.network": "CIDR of destination network",
"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.ciscovnmc.resource.details": "CiscoVNMC resource details",
"label.cks.cluster.size": "Cluster size (Worker nodes)",
"label.cleanup": "Clean up",
"label.clear": "Clear",
"label.clear.list": "Clear list",
"label.close": "Close",
"label.cloud.console": "Cloud Management Console",
"label.cloud.managed": "Cloud.com Managed",
"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.comma.separated.list.description": "Enter comma-separated list of commands",
"label.comments": "Comments",
"label.community": "Community",
"label.complete": "Complete",
"label.compute": "Compute",
"label.compute.and.storage": "Compute and Storage",
"label.compute.offering.access": "Compute offering access",
"label.compute.offerings": "Compute Offerings",
"label.configuration": "Configuration",
"label.configure": "Configure",
"label.configure.ldap": "Configure LDAP",
"label.configure.network.acls": "Configure Network ACLs",
"label.configure.ovs": "Configure Ovs",
"label.configure.sticky.policy": "Configure Sticky Policy",
"label.configure.vpc": "Configure VPC",
"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.congratulations": "Congratulations!",
"label.connectiontimeout": "Connection Timeout",
"label.conservemode": "Conserve mode",
"label.console.proxy": "Console proxy",
"label.console.proxy.vm": "Console Proxy VM",
"label.continue": "Continue",
"label.continue.install": "Continue with installation",
"label.copied.clipboard": "Copied to clipboard",
"label.copy": "Copy",
"label.copy.clipboard": "Copy to clipboard",
"label.copy.text": "Copy Text",
"label.copyid": "Copy ID",
"label.copying.iso": "Copying ISO",
"label.corrections.saved": "Corrections saved",
"label.counterid": "Counter",
"label.cpu": "CPU",
"label.cpu.allocated": "CPU Allocated",
"label.cpu.sockets": "CPU Sockets",
"label.cpuallocated": "CPU Allocated for VMs",
"label.cpuallocatedghz": "Allocated",
"label.cpulimit": "CPU limits",
"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": "Total",
"label.cpuused": "CPU Utilized",
"label.cpuusedghz": "Used CPU",
"label.create.account": "Create Account",
"label.create.backup": "Start Backup",
"label.create.network": "Create New Network",
"label.create.network.gateway.description": "The gateway of the tier in the super CIDR range and not overlapping the CIDR of any other tier in this VPC.",
"label.create.network.netmask.description": "Netmask of the tier. For example, with VPC CIDR of 10.0.0.0/16 and network tier CIDR of 10.1.1.0/24, gateway is 10.1.1.1 and netmask is 255.255.255.0",
"label.create.nfs.secondary.staging.storage": "Create NFS Secondary Staging Store",
"label.create.nfs.secondary.staging.store": "Create NFS secondary staging store",
"label.create.project": "Create project",
"label.create.project.role": "Create Project Role",
"label.create.site.vpn.connection": "Create Site-to-Site VPN Connection",
"label.create.site.vpn.gateway": "Create Site-to-Site VPN Gateway",
"label.create.ssh.key.pair": "Create a SSH Key Pair",
"label.create.template": "Create template",
"label.create.user": "Create user",
"label.create.vpn.connection": "Create VPN Connection",
"label.created": "Created",
"label.created.by.system": "Created by system",
"label.createnfscache": "Create NFS secondary staging store",
"label.creating.iprange": "Creating IP Ranges",
"label.credit": "Credit",
"label.crosszones": "Cross Zones",
"label.currency": "Currency",
"label.current": "isCurrent",
"label.currentsslcert": "Current SSL Certificate",
"label.currentpassword": "Current Password",
"label.custom": "Custom",
"label.custom.disk.offering": "Custom Disk Offering",
"label.customconstrained": "Custom Constrained",
"label.customdisksize": "Custom Disk Size",
"label.customunconstrained": "Custom Unconstrained",
"label.daily": "Daily",
"label.dashboard": "Dashboard",
"label.dashboard.endpoint": "Dashboard endpoint",
"label.data.disk": "Data Disk",
"label.data.disk.offering": "Data Disk Offering",
"label.date": "Date",
"label.day": "Day",
"label.day.of.month": "Day of Month",
"label.day.of.week": "Day of Week",
"label.dc.name": "DC Name",
"label.decline.invitation": "Decline invitation",
"label.dedicate": "Dedicate",
"label.dedicate.cluster": "Dedicate Cluster",
"label.dedicate.host": "Dedicate Host",
"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.default": "Default",
"label.default.use": "Default Use",
"label.default.view": "Default View",
"label.defaultnetwork": "Default network",
"label.delete": "Delete",
"label.delete.acl.list": "Delete ACL List",
"label.delete.affinity.group": "Delete Affinity Group",
"label.delete.alerts": "Delete alerts",
"label.delete.backup": "Delete Backup",
"label.delete.baremetal.rack.configuration": "Delete Baremetal Rack Configuration",
"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.confirm": "Delete?",
"label.delete.dedicated.vlan.range": "Deleted dedicated VLAN/VNI range",
"label.delete.domain": "Delete Domain",
"label.delete.events": "Delete events",
"label.delete.f5": "Delete F5",
"label.delete.gateway": "Delete gateway",
"label.delete.instance.group": "Delete Instance Group",
"label.delete.internal.lb": "Delete Internal LB",
"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.portable.ip.range": "Delete Portable IP Range",
"label.delete.project": "Delete project",
"label.delete.project.role": "Delete Project Role",
"label.delete.role": "Delete Role",
"label.delete.rule": "Delete rule",
"label.delete.secondary.staging.store": "Delete Secondary Staging Store",
"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.ucs.manager": "Delete UCS Manager",
"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.deleteconfirm": "Please confirm that you would like to delete this",
"label.deleteprofile": "Delete Profile",
"label.deleting": "Deleting",
"label.deleting.failed": "Deleting Failed",
"label.deleting.iso": "Deleting ISO",
"label.deleting.processing": "Deleting....",
"label.deleting.template": "Deleting template",
"label.demote.project.owner": "Demote account to Regular role",
"label.demote.project.owner.user": "Demote user to Regular role",
"label.deny": "Deny",
"label.deployasis":"Deploy As-Is",
"label.deploymentplanner": "Deployment planner",
"label.description": "Description",
"label.destcidr": "Destination CIDR",
"label.destination": "Destination",
"label.destinationphysicalnetworkid": "Destination physical network ID",
"label.destinationzoneid": "Destination Zone",
"label.destroy": "Destroy",
"label.destroy.kubernetes.cluster": "Destroy Kubernetes cluster",
"label.destroy.router": "Destroy router",
"label.destroyvmgraceperiod": "Destroy VM Grace Period",
"label.detaching.disk": "Detaching Disk",
"label.details": "Details",
"label.deviceid": "Device ID",
"label.devices": "Devices",
"label.dhcp": "DHCP",
"label.dhcp.server.type": "DHCP Server Type",
"label.direct.attached.public.ip": "Direct Attached Public IP",
"label.direct.ips": "Shared Network IPs",
"label.directdownload": "Direct Download",
"label.disable.autoscale": "Disable Autoscale",
"label.disable.host": "Disable Host",
"label.disable.network.offering": "Disable network offering",
"label.disable.provider": "Disable provider",
"label.disable.vnmc.provider": "Disable VNMC provider",
"label.disable.vpc.offering": "Disable VPC offering",
"label.disable.vpn": "Disable Remote Access VPN",
"label.disabled": "Disabled",
"label.disabling.vpn.access": "Disabling VPN Access",
"label.disassociate.profile.blade": "Disassociate Profile from Blade",
"label.disbale.vnmc.device": "Disable VNMC device",
"label.disconnected": "Last Disconnected",
"label.disk": "Disk",
"label.disk.newoffering": "New Disk Offering",
"label.disk.newoffering.description": "New disk offering to be used by this volume after the migration.",
"label.disk.offering.access": "Disk offering access",
"label.disk.offering.details": "Disk offering details",
"label.disk.offerings": "Disk Offerings",
"label.disk.size": "Disk Size",
"label.disk.volume": "Disk Volume",
"label.diskbytesreadrate": "Disk Read Rate (BPS)",
"label.diskbyteswriterate": "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 (Bytes)",
"label.diskkbswrite": "Disk Write (Bytes)",
"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.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.displaytext": "Description",
"label.distributedvpcrouter": "Distributed VPC Router",
"label.dns": "DNS",
"label.dns.domain.for.guest.networks": "DNS domain for Guest Networks",
"label.dns1": "DNS 1",
"label.dns2": "DNS 2",
"label.domain": "Domain",
"label.domain.details": "Domain details",
"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.domains": "Domains",
"label.done": "Done",
"label.double.quotes.are.not.allowed": "Double quotes are not allowed",
"label.download": "Download",
"label.download.kubeconfig.cluster": "Download kubeconfig for the cluster <br><br> The <code>kubectl</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>kubectl</code> tool for cluster's Kubernetes version",
"label.download.kubernetes.cluster.config": "Download Kubernetes cluster config",
"label.download.progress": "Download Progress",
"label.dpd": "Dead Peer Detection",
"label.drag.new.position": "Drag to new position",
"label.driver": "Driver",
"label.duration.in.sec": "Duration (in sec)",
"label.edit": "Edit",
"label.edit.acl.list": "Edit ACL List",
"label.edit.acl.rule": "Edit ACL rule",
"label.edit.affinity.group": "Edit Affinity Group",
"label.edit.lb.rule": "Edit LB rule",
"label.edit.network.details": "Edit network details",
"label.edit.project.details": "Edit project details",
"label.edit.project.role": "Edit Project Role",
"label.edit.region": "Edit Region",
"label.edit.role": "Edit Role",
"label.edit.rule": "Edit rule",
"label.edit.secondary.ips": "Edit secondary IPs",
"label.edit.tags": "Edit tags",
"label.edit.traffic.type": "Edit traffic type",
"label.edit.user": "Edit user",
"label.edit.vpc": "Edit VPC",
"label.egress": "Egress",
"label.egress.default.policy": "Egress Default Policy",
"label.egress.rule": "Egress rule",
"label.egress.rules": "Egress rules",
"label.egressdefaultpolicy": "Default egress policy",
"label.elastic": "Elastic",
"label.email": "Email",
"label.enable.autoscale": "Enable Autoscale",
"label.enable.host": "Enable Host",
"label.enable.network.offering": "Enable network offering",
"label.enable.provider": "Enable provider",
"label.enable.s3": "Enable S3-backed Secondary Storage",
"label.enable.swift": "Enable Swift",
"label.enable.vnmc.device": "Enable VNMC device",
"label.enable.vnmc.provider": "Enable VNMC provider",
"label.enable.vpc.offering": "Enable VPC offering",
"label.enable.vpn": "Enable Remote Access VPN",
"label.enabling.vpn": "Enabling VPN",
"label.enabling.vpn.access": "Enabling VPN Access",
"label.end": "End",
"label.end.ip": "End IP",
"label.end.reserved.system.ip": "End Reserved system IP",
"label.end.vlan": "End VLAN",
"label.end.vxlan": "End VXLAN",
"label.enddate": "By date (end)",
"label.endip": "End IP",
"label.endipv4": "IPv4 End IP",
"label.endipv6": "IPv6 End IP",
"label.endpoint": "Endpoint",
"label.endpoint.or.operation": "Endpoint or Operation",
"label.endport": "End Port",
"label.enter.token": "Enter token",
"label.error": "Error",
"label.error.caught": "Error caught",
"label.error.code": "Error Code",
"label.error.file.read": "Cannot read file",
"label.error.file.upload": "File upload failed",
"label.error.rules.file.import": "Please choose a valid CSV rules file",
"label.error.setting": "Error setting",
"label.error.something.went.wrong.please.correct.the.following": "Something went wrong; please correct the following",
"label.error.upper": "ERROR",
"label.error.volume.upload": "Please choose a file",
"label.espencryption": "ESP Encryption",
"label.esphash": "ESP Hash",
"label.esplifetime": "ESP Lifetime (second)",
"label.esppolicy": "ESP policy",
"label.event": "Event",
"label.event.archived": "Event(s) Archived",
"label.event.deleted": "Event(s) Deleted",
"label.event.timeline": "Event Timeline",
"label.events": "Events",
"label.every": "Every",
"label.example": "Example",
"label.example.plugin": "ExamplePlugin",
"label.existingnetworks": "Existing networks",
"label.expunge": "Expunge",
"label.expunged": "Expunged",
"label.expunging": "Expunging",
"label.external.link": "External link",
"label.externalid": "External Id",
"label.externalloadbalanceripaddress": "External load balancer IP address",
"label.extra": "Extra Arguments",
"label.f5": "F5",
"label.f5.details": "F5 details",
"label.f5.ip.loadbalancer": "F5 Big Ip Load Balancer",
"label.failed": "Failed",
"label.featured": "Featured",
"label.fetch.latest": "Fetch latest",
"label.files": "Alternate Files to Retrieve",
"label.filter": "Filter",
"label.filterby": "Filter by",
"label.fingerprint": "FingerPrint",
"label.firewall": "Firewall",
"label.firstname": "First Name",
"label.firstname.lower": "firstname",
"label.fix.errors": "Fix errors",
"label.fixed": "Fixed Offering",
"label.for": "for",
"label.forbidden": "Forbidden",
"label.forced": "Force",
"label.forceencap": "Force UDP Encapsulation of ESP Packets",
"label.forgedtransmits": "Forged Transmits",
"label.format": "Format",
"label.french.azerty.keyboard": "French AZERTY keyboard",
"label.friday": "Friday",
"label.from": "from",
"label.from.lb": "from LB",
"label.full": "Full",
"label.full.path": "Full path",
"label.fwdeviceid": "ID",
"label.fwdevicename": "Type",
"label.fwdevicestate": "Status",
"label.gateway": "Gateway",
"label.general.alerts": "General Alerts",
"label.generating.url": "Generating URL",
"label.get.diagnostics.desc": "If you wish to override the standard files returned, enter them here. Otherwise leave blank and press OK",
"label.global.settings": "Global Settings",
"label.globo.dns": "GloboDNS",
"label.globo.dns.configuration": "GloboDNS Configuration",
"label.glustervolume": "Volume",
"label.go.back": "Go Back",
"label.go.step.2": "Go to Step 2",
"label.go.step.3": "Go to Step 3",
"label.go.step.4": "Go to Step 4",
"label.go.step.5": "Go to Step 5",
"label.gpu": "GPU",
"label.group": "Group",
"label.group.by.account": "Group by account",
"label.group.by.cluster": "Group by cluster",
"label.group.by.pod": "Group by pod",
"label.group.by.zone": "Group by zone",
"label.group.optional": "Group (Optional)",
"label.gslb": "GSLB",
"label.gslb.assigned.lb": "Assigned load balancing",
"label.gslb.assigned.lb.more": "Assign more load balancing",
"label.gslb.delete": "Delete GSLB",
"label.gslb.details": "GSLB details",
"label.gslb.lb.details": "Load balancing details",
"label.gslb.lb.remove": "Remove load balancing from this GSLB",
"label.gslb.service": "GSLB service",
"label.gslb.service.private.ip": "GSLB service Private IP",
"label.gslb.service.public.ip": "GSLB service Public IP",
"label.gslbdomainname": "GSLB Domain Name",
"label.gslbprovider": "GSLB service",
"label.gslbproviderprivateip": "GSLB service Private IP",
"label.gslbproviderpublicip": "GSLB service Public IP",
"label.gslbservicetype": "Service Type",
"label.guest": "Guest",
"label.guest.cidr": "Guest CIDR",
"label.guest.end.ip": "Guest end IP",
"label.guest.gateway": "Guest Gateway",
"label.guest.ip": "Guest IP Address",
"label.guest.ip.range": "Guest IP Range",
"label.guest.netmask": "Guest Netmask",
"label.guest.network.details": "Guest network details",
"label.guest.networks": "Guest networks",
"label.guest.start.ip": "Guest start IP",
"label.guest.traffic": "Guest Traffic",
"label.guestcidraddress": "Guest CIDR",
"label.guestendip": "Guest end IP",
"label.guestgateway": "Guest Gateway",
"label.guestipaddress": "Guest IP Address",
"label.guestiptype": "Guest Type",
"label.guestnetmask": "Guest Netmask",
"label.guestnetwork": "Guest Network",
"label.guestnetworkid": "Network ID",
"label.guestnetworkname": "Network Name",
"label.guestosid": "OS Type",
"label.gueststartip": "Guest start IP",
"label.guestvlanrange": "VLAN Range(s)",
"label.guestvmcidr": "CIDR",
"label.ha": "HA",
"label.ha.configure": "Configure HA",
"label.ha.disable": "Disable HA",
"label.ha.enable": "Enable HA",
"label.haenable": "HA Enabled",
"label.hahost": "HA Enabled",
"label.haprovider": "HA Provider",
"label.hardware": "Hardware",
"label.hastate": "HA State",
"label.header.backup.schedule": "You can set up recurring backup schedules by selecting from the available options below and applying your policy preference",
"label.header.volume.snapshot": "You can set up recurring snapshot schedules by selecting from the available options below and applying your policy preference",
"label.header.volume.take.snapshot": "Please confirm that you want to take a snapshot of this volume.",
"label.health.check": "Health Check",
"label.health.check.advanced.options": "Advanced Options:",
"label.health.check.configurations.options": "Configuration Options:",
"label.health.check.interval.in.sec": "Health Check Interval (in sec)",
"label.health.check.message.desc": "Your load balancer will automatically perform health checks on your cloudstack instances and only route traffic to instances that pass the health check",
"label.health.check.wizard": "Health Check Wizard",
"label.healthy.threshold": "Healthy Threshold",
"label.help": "Help",
"label.hide.ingress.rule": "Hide Ingress Rule",
"label.hideipaddressusage": "Hide IP Address Usage",
"label.hints": "Hints",
"label.home": "Home",
"label.host": "IP Address",
"label.host.alerts": "Hosts in Alert State",
"label.host.name": "Host Name",
"label.host.tag": "Host Tag",
"label.host.ueficapability": "UEFI Supported",