-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Expand file tree
/
Copy pathca.json
More file actions
1481 lines (1481 loc) · 78.1 KB
/
ca.json
File metadata and controls
1481 lines (1481 loc) · 78.1 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
{
"error.password.not.match": "Els camps de contrasenya no coincideixen",
"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.",
"inline": "En l\u00ednia",
"label.about": "About",
"label.about.app": "About CloudStack",
"label.accept.project.invitation": "Accpetar invitaci\u00f3 al projecte",
"label.accesskey": "Access Key",
"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.accounttype": "Account Type",
"label.acl.export": "Export ACL 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.acl.rule.name": "ACL Name",
"label.acquire.new.ip": "Acquire New IP",
"label.acquire.new.secondary.ip": "Acquire new secondary IP",
"label.action": "Action",
"label.action.attach.disk": "Attach Disk",
"label.action.attach.iso": "Attach ISO",
"label.action.cancel.maintenance.mode": "Cancel Maintenance Mode",
"label.action.change.password": "Change Password",
"label.action.configure.stickiness": "Tend\u00e8ncia",
"label.action.copy.iso": "Copy ISO",
"label.action.copy.template": "Copy Template",
"label.action.create.template.from.volume": "Create Template from Volume",
"label.action.create.volume": "Create Volume",
"label.action.delete.account": "Delete account",
"label.action.delete.cluster": "Delete Cluster",
"label.action.delete.disk.offering": "Delete Disk Offering",
"label.action.delete.domain": "Delete Domain",
"label.action.delete.firewall": "Delete firewall rule",
"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.physical.network": "Delete physical network",
"label.action.delete.pod": "Delete Pod",
"label.action.delete.primary.storage": "Delete Primary Storage",
"label.action.delete.secondary.storage": "Delete Secondary Storage",
"label.action.delete.security.group": "Delete Security Group",
"label.action.delete.service.offering": "Delete Service Offering",
"label.action.delete.snapshot": "Delete Snapshot",
"label.action.delete.system.service.offering": "Delete System Service Offering",
"label.action.delete.template": "Delete Template",
"label.action.delete.user": "Delete User",
"label.action.delete.volume": "Delete Volume",
"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.physical.network": "Disable physical network",
"label.action.disable.pod": "Disable Pod",
"label.action.disable.static.nat": "Disable Static NAT",
"label.action.disable.user": "Disable User",
"label.action.disable.zone": "Disable Zone",
"label.action.download.iso": "Download ISO",
"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.zone": "Edit Zone",
"label.action.enable.account": "Enable account",
"label.action.enable.cluster": "Enable Cluster",
"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.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.lock.account": "Lock account",
"label.action.manage.cluster": "Manage Cluster",
"label.action.migrate.router": "Migrar router",
"label.action.migrate.systemvm": "Migrar MV de Sistema",
"label.action.project.add.account": "Afegir compte al projecte",
"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.recurring.snapshot": "Recurring Snapshots",
"label.action.register.iso": "Register ISO",
"label.action.register.template": "Register Template from URL",
"label.action.release.ip": "Release IP",
"label.action.remove.host": "Remove Host",
"label.action.remove.nic": "Remove NIC",
"label.action.reset.password": "Reset Password",
"label.action.resize.volume": "Resize Volume",
"label.action.revert.snapshot": "Revert to Snapshot",
"label.action.start.instance": "Start Instance",
"label.action.start.router": "Start Router",
"label.action.start.systemvm": "Start System VM",
"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.unmanage.cluster": "Unmanage Cluster",
"label.action.update.resource.count": "Update 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.actions": "Actions",
"label.activate.project": "Activar projecte",
"label.activeviewersessions": "Active Sessions",
"label.add": "Add",
"label.add.account": "Add Account",
"label.add.acl.rule": "Add ACL rule",
"label.add.acl": "Add ACL",
"label.add.affinity.group": "Add new affinity group",
"label.add.baremetal.dhcp.device": "Add Baremetal DHCP Device",
"label.add.bigswitchbcf.device": "Add BigSwitch BCF Controller",
"label.add.brocadevcs.device": "Add Brocade Vcs Switch",
"label.add.by": "Afegir per",
"label.add.ciscoasa1000v": "Add CiscoASA1000v Resource",
"label.add.cluster": "Add Cluster",
"label.add.compute.offering": "Add compute offering",
"label.add.disk.offering": "Add Disk Offering",
"label.add.domain": "Add Domain",
"label.add.egress.rule": "Afegir regla de sortida",
"label.add.f5.device": "Add F5 device",
"label.add.firewall": "Add firewall rule",
"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.network": "Add Isolated Network",
"label.add.ldap.account": "Add LDAP account",
"label.add.acl.name": "ACL Name",
"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": "Add Network ACL",
"label.add.network.offering": "Add network offering",
"label.add.new.gateway": "Add new gateway",
"label.add.new.tier": "Add new tier",
"label.add.niciranvp.device": "Add Nvp Controller",
"label.add.opendaylight.device": "Add OpenDaylight Controller",
"label.add.pa.device": "Add Palo Alto device",
"label.add.physical.network": "Afegir xarxa f\u00edsica",
"label.add.pod": "Add Pod",
"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.rule": "Afegir regla",
"label.add.secondary.storage": "Add Secondary Storage",
"label.add.security.group": "Add Security Group",
"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.user": "Add User",
"label.add.vm": "Afegir MV",
"label.add.vms": "Afegir MVs",
"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": "Afegir usuari VPN",
"label.add.zone": "Add Zone",
"label.adding": "Adding",
"label.adding.user": "Adding User",
"label.address": "Address",
"label.admin": "Admin",
"label.advanced": "Advanced",
"label.advanced.mode": "Advanced Mode",
"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": "D'acord",
"label.alert": "Alert",
"label.alert.details": "Alert details",
"label.alerts": "Alerts",
"label.algorithm": "Algorithm",
"label.all": "All",
"label.allocated": "Allocated",
"label.allocationstate": "Allocation State",
"label.allow": "Allow",
"label.anti.affinity": "Anti-affinity",
"label.anti.affinity.group": "Anti-affinity Group",
"label.api.version": "API Version",
"label.apikey": "API Key",
"label.app.name": "CloudStack",
"label.apply": "Aplicar",
"label.archive": "Archive",
"label.archive.alerts": "Archive alerts",
"label.archive.events": "Archive events",
"label.assign": "Assign",
"label.assign.instance.another": "Assign Instance to Another Account",
"label.assign.vms": "Assign VMs",
"label.associatednetwork": "Associated Network",
"label.associatednetworkid": "Associated Network ID",
"label.associatednetworkname": "Network Name",
"label.author.email": "Author e-mail",
"label.author.name": "Author name",
"label.availability": "Availability",
"label.available": "Available",
"label.back": "Back",
"label.balance": "Balance",
"label.bandwidth": "Ample de banda",
"label.baremetal.dhcp.devices": "Baremetal DHCP Devices",
"label.baremetal.pxe.device": "Add Baremetal PXE Device",
"label.baremetal.pxe.devices": "Baremetal PXE Devices",
"label.baremetalcpu": "CPU (in MHz)",
"label.baremetalcpucores": "# of CPU Cores",
"label.baremetalmac": "Host MAC",
"label.baremetalmemory": "Memory (in MB)",
"label.basic": "Basic",
"label.bcfdeviceid": "ID",
"label.bigswitch.controller.address": "BigSwitch BCF Controller Address",
"label.bladeid": "Blade ID",
"label.blades": "Blades",
"label.bootable": "Bootable",
"label.broadcastdomainrange": "Rang del domini de broadcast",
"label.broadcastdomaintype": "Broadcast Domain Type",
"label.broadcasturi": "broadcasturi",
"label.brocade.vcs.address": "Vcs Switch Address",
"label.bucket": "Bucket",
"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.cachemode": "Write-cache Type",
"label.cancel": "Cancel",
"label.capacity": "Capacitat",
"label.capacitybytes": "Capacity Bytes",
"label.capacityiops": "IOPS Total",
"label.certificate": "Server certificate",
"label.change.affinity": "Change Affinity",
"label.change.ipaddress": "Change IP address for NIC",
"label.change.service.offering": "Canvia oferta de servei",
"label.character": "Character",
"label.checksum": "checksum",
"label.cidr": "CIDR",
"label.cidrlist": "Source CIDR",
"label.cisco.nexus1000v.ip.address": "Nexus 1000v IP Address",
"label.cisco.nexus1000v.password": "Nexus 1000v Password",
"label.cisco.nexus1000v.username": "Nexus 1000v Username",
"label.cleanup": "Clean up",
"label.clear.list": "Esborra llista",
"label.close": "Close",
"label.cluster": "Cluster",
"label.cluster.name": "Cluster Name",
"label.clusterid": "Cluster",
"label.clustername": "Cluster",
"label.clusternamelabel": "Cluster Name",
"label.clusters": "Clusters",
"label.clustertype": "Cluster Type",
"label.clvm": "CLVM",
"label.code": "Code",
"label.community": "Comunitat",
"label.compute": "Computaci\u00f3",
"label.compute.offerings": "Compute Offerings",
"label.configuration": "Configuraci\u00f3",
"label.configure": "Configurar",
"label.configure.ldap": "Configure LDAP",
"label.configure.sticky.policy": "Configure Sticky Policy",
"label.confirmation": "Confirmation",
"label.confirmdeclineinvitation": "Esteu segurs de declinar aquesta invitaci\u00f3 per al projecte?",
"label.confirmpassword": "Confirmar contrasenya",
"label.connectiontimeout": "Connection Timeout",
"label.conservemode": "Conserve mode",
"label.console.proxy": "Console proxy",
"label.console.proxy.vm": "Console Proxy VM",
"label.continue": "Continuar",
"label.cpu": "CPU",
"label.cpu.sockets": "CPU Sockets",
"label.cpuallocated": "CPU Allocated for VMs",
"label.cpuallocatedghz": "Allocated",
"label.cpulimit": "CPU limits",
"label.cpumaxdeviation": "Deviation",
"label.cpusockets": "The Number of CPU Sockets",
"label.cpuspeed": "CPU (in MHz)",
"label.cputotal": "Total de CPU",
"label.cputotalghz": "Total",
"label.cpuused": "CPU Utilized",
"label.create.nfs.secondary.staging.storage": "Create NFS Secondary Staging Store",
"label.create.project": "Crear projecte",
"label.create.ssh.key.pair": "Create a SSH Key Pair",
"label.create.template": "Create template",
"label.create.vpn.connection": "Create VPN Connection",
"label.created": "Created",
"label.credit": "Credit",
"label.crosszones": "Cross Zones",
"label.current": "isCurrent",
"label.currentpassword": "Current Password",
"label.custom": "Custom",
"label.customdisksize": "Custom Disk Size",
"label.daily": "Daily",
"label.dashboard": "Dashboard",
"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": "Declinar invitaci\u00f3",
"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": "Dedicat",
"label.dedicated.vlan.vni.ranges": "Dedicated VLAN/VNI Ranges",
"label.default": "Per defecte",
"label.default.use": "Default Use",
"label.default.view": "Default View",
"label.delete": "Delete",
"label.delete.acl": "Delete ACL",
"label.delete.affinity.group": "Delete Affinity Group",
"label.delete.alerts": "Delete alerts",
"label.delete.bigswitchbcf": "Remove BigSwitch BCF Controller",
"label.delete.brocadevcs": "Remove Brocade Vcs Switch",
"label.delete.ciscoasa1000v": "Delete CiscoASA1000v",
"label.delete.ciscovnmc.resource": "Delete CiscoVNMC resource",
"label.delete.events": "Delete events",
"label.delete.f5": "Esborrar F5",
"label.delete.gateway": "Delete gateway",
"label.delete.internal.lb": "Delete Internal LB",
"label.delete.netscaler": "Esborrar NetScaler",
"label.delete.niciranvp": "Remove Nvp Controller",
"label.delete.opendaylight.device": "Delete OpenDaylight Controller",
"label.delete.pa": "Delete Palo Alto",
"label.delete.project": "Esborrar projecte",
"label.delete.role": "Delete Role",
"label.delete.srx": "Esborar SRX",
"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": "Esborrar usuari VPN",
"label.deleting.failed": "Deleting Failed",
"label.deny": "Deny",
"label.deploymentplanner": "Deployment planner",
"label.description": "Description",
"label.destinationphysicalnetworkid": "ID de xarxa f\u00edsica de dest\u00ed",
"label.destroy": "Destroy",
"label.destroy.router": "Destruir router",
"label.details": "Details",
"label.deviceid": "Device ID",
"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.disable.host": "Disable Host",
"label.disable.network.offering": "Disable network offering",
"label.disable.provider": "Deshabilitar prove\u00efdor",
"label.disable.vpc.offering": "Disable VPC offering",
"label.disable.vpn": "Deshabilitar VPN",
"label.disabled": "Deshabilitat",
"label.disconnected": "Last Disconnected",
"label.disk": "Disk",
"label.disk.offerings": "Disk Offerings",
"label.disk.size": "Disk Size",
"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.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.diskoffering": "diskoffering",
"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.disksizeusedgb": "Used",
"label.display.text": "Display Text",
"label.displayname": "Display Name",
"label.displaytext": "Description",
"label.distributedvpcrouter": "Distributed VPC Router",
"label.dns": "DNS",
"label.dns1": "DNS 1",
"label.dns2": "DNS 2",
"label.domain": "Domain",
"label.domains": "Domain",
"label.domain.name": "Domain Name",
"label.domain.router": "Domain router",
"label.domain.suffix": "DNS Domain Suffix (i.e., xyz.com)",
"label.domainid": "Domain ID",
"label.domainname": "Domain",
"label.domainpath": "Domain",
"label.done": "Done",
"label.dpd": "Dead Peer Detection",
"label.driver": "Driver",
"label.edit": "Edit",
"label.edit.acl": "Edit ACL",
"label.edit.acl.rule": "Edit ACL rule",
"label.edit.project.details": "Editar detalls del projecte",
"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.egress.rule": "Regla de sortida",
"label.egress.rules": "Egress rules",
"label.egressdefaultpolicy": "Default egress policy",
"label.elastic": "El\u00e0stic",
"label.email": "Email",
"label.enable.host": "Enable Host",
"label.enable.network.offering": "Enable network offering",
"label.enable.provider": "Habilitar prove\u00efdor",
"label.enable.vpc.offering": "Enable VPC offering",
"label.enable.vpn": "Habilitar VPN",
"label.end.ip": "End IP",
"label.end.reserved.system.ip": "End Reserved system IP",
"label.end.vlan": "End VLAN",
"label.enddate": "By date (end)",
"label.endip": "End IP",
"label.endipv4": "IPv4 End IP",
"label.endipv6": "IPv6 End IP",
"label.endpoint": "Endpoint",
"label.endport": "End Port",
"label.enter.token": "Enter token",
"label.error": "Error",
"label.error.code": "Error Code",
"label.error.something.went.wrong.please.correct.the.following": "Something went wrong; please correct the following",
"label.error.upper": "ERROR",
"label.espencryption": "ESP Encryption",
"label.esphash": "ESP Hash",
"label.esplifetime": "ESP Lifetime (second)",
"label.esppolicy": "ESP policy",
"label.event": "Event",
"label.event.archived": "Event Archived",
"label.event.deleted": "Event Deleted",
"label.events": "Events",
"label.every": "Every",
"label.example": "Example",
"label.expunge": "Expunge",
"label.external.link": "External link",
"label.f5": "F5",
"label.failed": "Failed",
"label.featured": "Featured",
"label.fetch.latest": "Fetch latest",
"label.filterby": "Filter by",
"label.fingerprint": "FingerPrint",
"label.firewall": "Firewall",
"label.firstname": "First Name",
"label.forceencap": "Force UDP Encapsulation of ESP Packets",
"label.format": "Format",
"label.friday": "Friday",
"label.full": "Full",
"label.full.path": "Cam\u00ed sencer",
"label.fwdeviceid": "ID",
"label.fwdevicestate": "Status",
"label.gateway": "Gateway",
"label.global.settings": "Global Settings",
"label.globo.dns": "GloboDNS",
"label.globo.dns.configuration": "GloboDNS Configuration",
"label.glustervolume": "Volume",
"label.gpu": "GPU",
"label.group": "Group",
"label.group.optional": "Group (Optional)",
"label.gslb": "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.gslbprovider": "GSLB service",
"label.gslbproviderprivateip": "GSLB service Private IP",
"label.gslbproviderpublicip": "GSLB service Public IP",
"label.guest": "MV",
"label.guest.cidr": "Guest CIDR",
"label.guest.end.ip": "Fi d'IP per a MV",
"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.networks": "Guest networks",
"label.guest.start.ip": "Inici d'IP per a MV",
"label.guest.traffic": "Tr\u00e0fic de MV",
"label.guestcidraddress": "Guest CIDR",
"label.guestendip": "Fi d'IP per a MV",
"label.guestgateway": "Guest Gateway",
"label.guestipaddress": "Guest IP Address",
"label.guestiptype": "Guest Type",
"label.guestnetmask": "Guest Netmask",
"label.guestnetworkid": "Network ID",
"label.guestnetworkname": "Network Name",
"label.gueststartip": "Inici d'IP per a MV",
"label.guestvlanrange": "VLAN Range(s)",
"label.haenable": "HA Enabled",
"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.help": "Help",
"label.home": "Home",
"label.host": "Host",
"label.host.alerts": "Hosts in Alert State",
"label.host.name": "Host Name",
"label.host.tag": "Host Tag",
"label.hostid": "Host",
"label.hostname": "Host",
"label.hostnamelabel": "Host Name",
"label.hosts": "Hosts",
"label.hosttags": "Host Tags",
"label.hourly": "Hourly",
"label.hypervisor": "Hypervisor",
"label.hypervisor.capabilities": "Hypervisor capabilities",
"label.hypervisor.type": "Hypervisor Type",
"label.hypervisors": "Hypervisors",
"label.hypervisorsnapshotreserve": "Hypervisor Snapshot Reserve",
"label.hypervisortype": "Hypervisor",
"label.hypervisorversion": "Hypervisor version",
"label.hypervnetworklabel": "HyperV Traffic Label",
"label.icmpcode": "ICMP Code",
"label.icmptype": "ICMP Type",
"label.id": "ID",
"label.ikedh": "IKE DH",
"label.ikeencryption": "IKE Encryption",
"label.ikehash": "IKE Hash",
"label.ikelifetime": "IKE lifetime (second)",
"label.ikepolicy": "IKE policy",
"label.info": "Info",
"label.info.upper": "INFO",
"label.infrastructure": "Infrastructure",
"label.ingress.rule": "Ingress Rule",
"label.insideportprofile": "Inside Port Profile",
"label.installwizard.addzoneintro.title": "Anem a afegir una zona",
"label.installwizard.subtitle": "Auqesta guia us ajudar\u00e0 a configurar la vostra instal\u00b7laci\u00f3 de CloudStack™",
"label.installwizard.title": "Hola i benvigut a CloudStack™",
"label.instance": "Instance",
"label.instance.name": "Instance Name",
"label.instancename": "Internal name",
"label.instanceport": "Instance Port",
"label.instances": "Instances",
"label.intermediate.certificate": "Intermediate certificate",
"label.internal.dns.1": "Internal DNS 1",
"label.internal.dns.2": "Internal DNS 2",
"label.internal.lb": "Internal LB",
"label.internaldns1": "Internal DNS 1",
"label.internaldns2": "Internal DNS 2",
"label.internallbvm": "InternalLbVm",
"label.interval": "Polling Interval (in sec)",
"label.intervaltype": "Interval Type",
"label.introduction.to.cloudstack": "Introducci\u00f3 a la CloudStack™",
"label.invitations": "Invitacions",
"label.invite": "Convidar",
"label.ip": "IP",
"label.ip.range": "IP Range",
"label.ip.ranges": "Rangs d'IPs",
"label.ip4gateway": "IPv4 Gateway",
"label.ip4netmask": "IPv4 Netmask",
"label.ip6address": "IPv6 IP Address",
"label.ip6cidr": "IPv6 CIDR",
"label.ip6dns1": "IPv6 DNS1",
"label.ip6dns2": "IPv6 DNS2",
"label.ip6gateway": "IPv6 Gateway",
"label.ipaddress": "IP Address",
"label.iplimit": "Public IP Limits",
"label.ips": "IPs",
"label.ipsecpsk": "IPsec Preshared-Key",
"label.iptotal": "Total of IP Addresses",
"label.ipv4.cidr": "IPv4 CIDR",
"label.ipv4.dns1": "IPv4 DNS1",
"label.ipv4.dns2": "IPv4 DNS2",
"label.ipv6.dns1": "IPv6 DNS1",
"label.ipv6.dns2": "IPv6 DNS2",
"label.iqn": "Target IQN",
"label.is.shared": "Is Shared",
"label.isadvanced": "Show advanced settings",
"label.iscsi": "iSCSI",
"label.iscustomized": "Custom Disk Size",
"label.iscustomizeddiskiops": "Custom IOPS",
"label.iscustomizediops": "Custom IOPS",
"label.isdedicated": "Dedicat",
"label.isdefault": "Is Default",
"label.isdynamicallyscalable": "Dynamically Scalable",
"label.isextractable": "Es pot extreure",
"label.isfeatured": "Featured",
"label.isforced": "Force Delete",
"label.ismanaged": "Managed",
"label.iso": "ISO",
"label.isoid": "ISO",
"label.isolated.networks": "Isolated networks",
"label.isolatedpvlanid": "Secondary Isolated VLAN ID",
"label.isolation.method": "Isolation method",
"label.isolationmethod": "Isolation method",
"label.isolationmethods": "Isolation method",
"label.isolationuri": "Isolation URI",
"label.isoname": "Attached ISO",
"label.isos": "ISOs",
"label.ispersistent": "Persistent ",
"label.ispublic": "Public",
"label.isready": "Preparat",
"label.isredundantrouter": "Redundant Router",
"label.isrouting": "Routing",
"label.issourcenat": "Source NAT",
"label.isstaticnat": "Static NAT",
"label.issystem": "Is System",
"label.isvolatile": "Volatile",
"label.japanese.keyboard": "Japanese keyboard",
"label.keep": "Keep",
"label.key": "Clau",
"label.keyboard": "Keyboard language",
"label.keyboardtype": "Tipus de teclat",
"label.keypair": "SSH Key Pair",
"label.kvmnetworklabel": "KVM traffic label",
"label.l2gatewayserviceuuid": "L2 Gateway Service Uuid",
"label.l3gatewayserviceuuid": "L3 Gateway Service Uuid",
"label.label": "Label",
"label.last.updated": "Last Update",
"label.lastname": "Last Name",
"label.lastname.lower": "lastname",
"label.launch": "Iniciar",
"label.launch.vm": "Arrencar MV",
"label.launch.zone": "Launch zone",
"label.lb.algorithm.leastconn": "Least connections",
"label.lb.algorithm.roundrobin": "Round-robin",
"label.lb.algorithm.source": "Source",
"label.lbdevicededicated": "Dedicat",
"label.lbdeviceid": "ID",
"label.lbdevicestate": "Status",
"label.lbtype": "Load Balancer Type",
"label.ldap.configuration": "LDAP Configuration",
"label.ldap.group.name": "LDAP Group",
"label.level": "Level",
"label.limitcpuuse": "CPU Cap",
"label.link.domain.to.ldap": "Link Domain to LDAP",
"label.linklocalip": "Control IP Address",
"label.load.balancer": "Load Balancer",
"label.loadbalancerinstance": "Assigned VMs",
"label.loadbalancerrule": "Load balancing rule",
"label.loadbalancing": "Balanceig de c\u00e0rrega",
"label.loading": "Loading",
"label.local": "Local",
"label.local.storage": "Emmagatzemament local",
"label.local.storage.enabled": "Enable local storage for User VMs",
"label.local.storage.enabled.system.vms": "Enable local storage for System VMs",
"label.localstorageenabled": "Enable local storage for User VMs",
"label.localstorageenabledforsystemvm": "Enable local storage for System VMs",
"label.login": "Login",
"label.logout": "Logout",
"label.lun": "LUN",
"label.lun.number": "LUN #",
"label.lxcnetworklabel": "LXC Traffic Label",
"label.make.project.owner": "Feu la compta propiet\u00e0ria del projecte",
"label.makeredundant": "Make redundant",
"label.manage": "Manage",
"label.management": "Administraci\u00f3",
"label.management.ips": "Management IP Addresses",
"label.management.server": "Management Server",
"label.max.primary.storage": "Max. primary (GiB)",
"label.max.secondary.storage": "Max. secondary (GiB)",
"label.maxcpu": "Max. CPU cores",
"label.maxerrorretry": "Max Error Retry",
"label.maxguestslimit": "Max guest limit",
"label.maximum": "Maximum",
"label.maxinstance": "Max Instances",
"label.maxiops": "Max IOPS",
"label.maxmemory": "Max. memory (MiB)",
"label.maxnetwork": "Max. networks",
"label.maxpublicip": "Max. IP p\u00fabliques",
"label.maxsnapshot": "Max. instant\u00e0nies",
"label.maxtemplate": "Max. plantilles",
"label.maxuservm": "Max. MV d'usuari",
"label.maxvolume": "Max. Volums",
"label.maxvpc": "Max. VPCs",
"label.may.continue": "Ara pot continuar",
"label.memory": "Memory",
"label.memoryallocated": "Memory Allocated",
"label.memoryallocatedgb": "Allocated",
"label.memorylimit": "Memory limits (MiB)",
"label.memorymaxdeviation": "Deviation",
"label.memorytotal": "Memory Allocated",
"label.memorytotalgb": "Total",
"label.memoryusedgb": "Used",
"label.menu.security.groups": "Security Groups",
"label.menu.service.offerings": "Service Offerings",
"label.metrics": "Metrics",
"label.migrate.instance.to": "Migrate instance to",
"label.migrate.instance.to.host": "Migrar inst\u00e0ncia a un altre amfitri\u00f3 \"Host\"",
"label.migrate.instance.to.ps": "Migrar inst\u00e0ncia a un altra emmagatzematge primari",
"label.migrate.systemvm.to": "Migrar MV de sistema a:",
"label.migrate.volume": "Migrate Volume",
"label.min.balance": "Min Balance",
"label.min.past.hour": "min past the hr",
"label.minimum": "Minimum",
"label.miniops": "Min IOPS",
"label.minute.past.hour": "minute(s) past the hour",
"label.monday": "Monday",
"label.monthly": "Monthly",
"label.move.down.row": "Moure una fila cap a baix",
"label.move.to.bottom": "Move to bottom",
"label.move.to.top": "Moure a dalt",
"label.move.up.row": "Moure una fla cap a dalt",
"label.my.templates": "Les meves plantilles",
"label.na": "N/A",
"label.name": "Name",
"label.name.optional": "Name (Optional)",
"label.nat": "BigSwitch BCF NAT Enabled",
"label.netmask": "Netmask",
"label.netscaler": "NetScaler",
"label.network": "Network",
"label.network.acl": "Network ACL",
"label.network.addvm": "Add network to VM",
"label.network.desc": "Network Desc",
"label.network.domain": "Network Domain",
"label.network.label.display.for.blank.value": "Use default gateway",
"label.network.name": "Network Name",
"label.network.offering": "Network Offering",
"label.network.offerings": "Network Offerings",
"label.network.service.providers": "Network Service Providers",
"label.networkdevicetype": "Type",
"label.networkdomain": "Network Domain",
"label.networkid": "Network",
"label.networkkbsread": "Network Read",
"label.networkkbswrite": "Network Write",
"label.networklimit": "Network limits",
"label.networkname": "Network Name",
"label.networkofferingdisplaytext": "Network Offering",
"label.networkofferingid": "Network Offering",
"label.networkofferingname": "Network Offering",
"label.networkrate": "Velocitat de xarxa",
"label.networkread": "Network Read",
"label.networks": "Xarxes",
"label.networktype": "Network Type",
"label.networkwrite": "Network Write",
"label.new": "Nou",
"label.new.password": "New Password",
"label.new.project": "Nou projecte",
"label.new.vm": "Nova MV",
"label.newdiskoffering": "New Offering",
"label.next": "Next",
"label.nfs": "NFS",
"label.nfsserver": "NFS Server",
"label.nicadaptertype": "Tipus de tarja de xarxa",
"label.nics": "NICs",
"label.no": "No",
"label.no.data": "No hi ha dades",
"label.no.errors": "No Recent Errors",
"label.no.items": "No Available Items",
"label.none": "None",
"label.noselect": "No gr\u00e0cies",
"label.not.found": "Not Found",
"label.notifications": "Notifications",
"label.num.cpu.cores": "# of CPU Cores",
"label.number": "#Rule",
"label.numretries": "Number of Retries",
"label.nvpdeviceid": "ID",
"label.ocfs2": "OCFS2",
"label.of.month": "of month",
"label.offerha": "Offer HA",
"label.ok": "OK",
"label.opendaylight": "OpenDaylight",
"label.opendaylight.controller": "OpenDaylight Controller",
"label.opendaylight.controllers": "OpenDaylight Controllers",
"label.optional": "Optional",
"label.order": "Ordre",
"label.oscategoryid": "OS Preference",
"label.ostypeid": "OS Type",
"label.ostypename": "OS Type",
"label.other": "Other",
"label.outofbandmanagement": "Out-of-band Management",
"label.outofbandmanagement.action.issue": "Issue Out-of-band Management Power Action",
"label.outofbandmanagement.changepassword": "Change Out-of-band Management Password",
"label.outofbandmanagement.configure": "Configure Out-of-band Management",
"label.outofbandmanagement.disable": "Disable Out-of-band Management",
"label.outofbandmanagement.enable": "Enable Out-of-band Management",
"label.override.guest.traffic": "Override Guest-Traffic",
"label.override.public.traffic": "Override Public-Traffic",
"label.overrideguesttraffic": "Override Guest-Traffic",
"label.overridepublictraffic": "Override Public-Traffic",
"label.ovm3cluster": "Native Clustering",
"label.ovm3networklabel": "OVM3 traffic label",
"label.ovm3pool": "Native Pooling",
"label.ovm3vip": "Primary Vip IP",
"label.ovmnetworklabel": "OVM traffic label",
"label.ovs": "OVS",
"label.owner.account": "Owner Account",
"label.pa": "Palo Alto",
"label.palp": "Palo Alto Log Profile",
"label.parentname": "Parent",
"label.passive": "Passive",
"label.password": "Password",
"label.password.reset.confirm": "Password has been reset to ",
"label.passwordenabled": "Password Enabled",
"label.path": "Path",
"label.patp": "Palo Alto Threat Profile",
"label.pavr": "Router virtual",
"label.pcidevice": "GPU",
"label.perfectforwardsecrecy": "Perfect Forward Secrecy",
"label.permission": "Permission",
"label.physical.network": "Physical Network",
"label.physicalnetworkid": "Physical Network",
"label.physicalsize": "Physical Size",
"label.ping.path": "Ping Path",
"label.plannermode": "Planner mode",
"label.please.specify.netscaler.info": "Si us plau doneu informaci\u00f3 del NetScaler",
"label.please.wait": "Please Wait",
"label.plugins": "Plugins",
"label.pod": "Pod",
"label.pod.dedicated": "Pod Dedicated",
"label.pod.name": "Nom de rack",
"label.podid": "Pod",
"label.podname": "Nom de rack",
"label.pods": "Racks",
"label.port": "Port",
"label.port.range": "Port Range",
"label.portforwarding": "Port Forwarding",
"label.powerstate": "Power State",
"label.presetup": "PreSetup",
"label.prev": "Prev",
"label.previous": "Anterior",
"label.primary.storage": "Primary Storage",
"label.primary.storage.allocated": "Primary Storage Allocated",
"label.primary.storage.used": "Primary Storage Used",
"label.primarystoragelimit": "Primary Storage limits (GiB)",
"label.private.gateway": "Private Gateway",
"label.private.interface": "Private Interface",
"label.privateinterface": "Private Interface",
"label.privateip": "Private IP Address",
"label.privatekey": "PKCS#8 Private Key",
"label.privatenetwork": "Xarxa privada",
"label.privateport": "Private Port",
"label.profilename": "Profile",
"label.project": "Projecte",
"label.project.name": "Nom del projecte",
"label.project.view": "Project View",
"label.projectid": "ID de projecte",
"label.projects": "Projectes",
"label.property": "Property",
"label.protocol": "Protocol",
"label.protocol.number": "Protocol Number",
"label.protocolnumber": "#Protocol",
"label.provider": "Provider",
"label.providername": "Provider",
"label.providers": "Prove\u00efdors",
"label.provisioningtype": "Provisioning Type",
"label.public.interface": "Public Interface",
"label.public.ip": "Public IP Address",
"label.public.ip.addresses": "Public IP Addresses",
"label.public.ips": "Public IP Addresses",
"label.public.lb": "Public LB",
"label.public.traffic": "Public traffic",
"label.publicinterface": "Public Interface",
"label.publicip": "IP Address",
"label.publickey": "Public Key",
"label.publicnetwork": "Xarxa p\u00fablica",
"label.publicport": "Public Port",
"label.purpose": "Purpose",
"label.qostype": "QoS Type",
"label.quickview": "Quickview",
"label.quiescevm": "Quiesce VM",
"label.quota": "Quota Value",
"label.quota.value": "Quota Value",
"label.quota.add.credits": "Add Credits",
"label.quota.configuration": "Quota Configuration",
"label.quota.credits": "Credits",
"label.quota.enforce": "Enforce Quota",
"label.quota.statement": "Statement",
"label.quota.statement.balance": "Quota Balance",
"label.quota.statement.quota": "Quota Usage",
"label.summary": "Summary",
"label.quota.tariff": "Tariff",
"label.quota.tariff.effectivedate": "Effective Date",
"label.quota.usage": "Quota Consumption",
"label.rbd": "RBD",
"label.rbdid": "Cephx user",
"label.rbdmonitor": "Ceph monitor",
"label.rbdpool": "Ceph pool",
"label.rbdsecret": "Cephx secret",
"label.reason": "Reason",
"label.reboot": "Reboot",
"label.receivedbytes": "Bytes Received",
"label.recover.vm": "Recover VM",
"label.redundantrouter": "Redundant Router",
"label.redundantstate": "Estat redundant",
"label.redundantvpcrouter": "Redundant VPC",
"label.refresh": "Refresh",
"label.region": "Region",
"label.reinstall.vm": "Reinstall VM",
"label.related": "Related",
"label.release.account": "Release from Account",
"label.release.dedicated.cluster": "Release Dedicated Cluster",
"label.release.dedicated.host": "Release Dedicated Host",
"label.release.dedicated.pod": "Release Dedicated Pod",
"label.release.dedicated.zone": "Release Dedicated Zone",
"label.remove.egress.rule": "Esborrar regla de sortida",
"label.remove.ip.range": "Remove IP range",
"label.remove.ldap": "Remove LDAP",
"label.remove.network.offering": "Remove network offering",
"label.remove.pf": "Esborrar regla de reenviament de port",
"label.remove.project.account": "Remove account from project",
"label.remove.rule": "Esborrar regla",
"label.remove.ssh.key.pair": "Remove SSH Key Pair",
"label.remove.vm.from.lb": "Treure VM de la regla de balanceig de c\u00e0rrega",
"label.remove.vmware.datacenter": "Remove VMware datacenter",
"label.remove.vpc": "Remove VPC",
"label.remove.vpc.offering": "Remove VPC offering",
"label.removing": "Esborrant",
"label.replace.acl": "Replace ACL",
"label.required": "Required",
"label.requireshvm": "HVM",
"label.requiresupgrade": "Requires Upgrade",
"label.reserved.system.gateway": "Pasarel\u00b7la reservada del sistema",
"label.reserved.system.ip": "Reserved System IP",
"label.reserved.system.netmask": "M\u00e0scara reservada del sistema",
"label.reservediprange": "Reserved IP Range",
"label.reservedsystemendip": "End Reserved system IP",
"label.reservedsystemgateway": "Pasarel\u00b7la reservada del sistema",
"label.reservedsystemnetmask": "M\u00e0scara reservada del sistema",
"label.reservedsystemstartip": "Start Reserved system IP",
"label.reset.ssh.key.pair": "Reset SSH Key Pair",
"label.reset.vpn.connection": "Reset VPN connection",
"label.resource": "Resource",
"label.resource.limit.exceeded": "Resource Limit Exceeded",
"label.resource.name": "Resource Name",
"label.resourceid": "Resource ID",
"label.resourcename": "Resource Name",
"label.resources": "Resources",
"label.resourcestate": "Resource state",
"label.restart.network": "Restart network",
"label.restart.vpc": "Restart VPC",
"label.restartrequired": "Restart required",
"label.restore": "Restore",
"label.review": "Review",
"label.role": "Role",
"label.rolename": "Role",
"label.roles": "Roles",
"label.roletype": "Role Type",
"label.root.certificate": "Root certificate",
"label.root.disk.size": "Root disk size (GB)",
"label.rootdiskcontrollertype": "Controlador de disc arrel",
"label.routercount": "Total of Virtual Routers",
"label.rule": "Rule",
"label.rule.number": "Rule Number",
"label.rules": "Rules",
"label.running": "Running VMs",
"label.s3.access.key": "Access Key",
"label.s3.bucket": "Bucket",
"label.s3.connection.timeout": "Connection Timeout",
"label.s3.endpoint": "Endpoint",
"label.s3.max.error.retry": "Max Error Retry",
"label.s3.nfs.path": "S3 NFS Path",
"label.s3.nfs.server": "S3 NFS Server",
"label.s3.secret.key": "Secret Key",
"label.s3.socket.timeout": "Socket Timeout",
"label.s3.use.https": "Use HTTPS",
"label.samlenable": "Authorize SAML SSO",
"label.samlentity": "Identity Provider",
"label.saturday": "Saturday",
"label.save": "Save",
"label.scope": "Scope",
"label.search": "Search",
"label.secondary.storage": "Secondary Storage",
"label.secondary.storage.vm": "Secondary storage VM",
"label.secondaryips": "Secondary IPs",
"label.secondarystoragelimit": "Secondary Storage limits (GiB)",
"label.secretkey": "Secret Key",
"label.security.groups": "Security Groups",
"label.securitygroup": "Security Group",
"label.securitygroups": "Security Groups",
"label.select": "Select",
"label.select-view": "Sel\u00b7lecioni vista",
"label.select.a.zone": "Sel\u00b7leccioni una zona",
"label.select.project": "Sel\u00b7leccionar projecte",
"label.select.tier": "Select Tier",
"label.self": "Mine",
"label.sent": "Sent",
"label.sentbytes": "Bytes Sent",
"label.server": "Server",
"label.service.connectivity.distributedroutercapabilitycheckbox": "Distributed Router",
"label.service.connectivity.regionlevelvpccapabilitycheckbox": "Region Level VPC",
"label.service.lb.elasticlbcheckbox": "Elastic LB",
"label.service.lb.inlinemodedropdown": "Mode",