forked from apache/cloudstack
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathca.js
More file actions
2311 lines (2311 loc) · 145 KB
/
Copy pathca.js
File metadata and controls
2311 lines (2311 loc) · 145 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
// Licensed to the Apache Software Foundation (ASF) under one
// or more contributor license agreements. See the NOTICE file
// distributed with this work for additional information
// regarding copyright ownership. The ASF licenses this file
// to you under the Apache License, Version 2.0 (the
// "License"); you may not use this file except in compliance
// with the License. You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing,
// software distributed under the License is distributed on an
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
// KIND, either express or implied. See the License for the
// specific language governing permissions and limitations
// under the License.
var dictionary = {
"ICMP.code": "ICMP Code",
"ICMP.code.desc": "Please specify -1 if you want to allow all ICMP codes",
"ICMP.type": "ICMP Type",
"ICMP.type.desc": "Please specify -1 if you want to allow all ICMP types.",
"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": "Si us plau ompliu la següent informació per habilitar el suport per a Swift",
"error.could.not.change.your.password.because.non.native.user": "Error could not change your password because LDAP is enabled.",
"error.could.not.enable.zone": "Could not enable zone",
"error.installWizard.message": "Quelcom ha fallat, vostè pot tornar enrere i corregir els errors detalls suggerime",
"error.invalid.username.password": "Invalid username or password",
"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": "Els camps de contrasenya no coincideixen",
"error.please.specify.physical.network.tags": "Network offerings is not available until you specify tags for this physical network.",
"error.session.expired": "Your session has expired.",
"error.something.went.wrong.please.correct.the.following": "Something went wrong; please correct the following",
"error.unable.to.reach.management.server": "Unable to reach Management Server",
"error.unresolved.internet.name": "Your internet name cannot be resolved.",
"force.delete": "Force Delete",
"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",
"image.directory": "Image Directory",
"inline": "En línia",
"instances.actions.reboot.label": "Reboot instance",
"label.CIDR.list": "CIDR list",
"label.CIDR.of.destination.network": "CIDR of destination network",
"label.CPU.cap": "CPU Cap",
"label.DHCP.server.type": "DHCP Server Type",
"label.DNS.domain.for.guest.networks": "DNS domain for Guest Networks",
"label.ESP.encryption": "ESP Encryption",
"label.ESP.hash": "ESP Hash",
"label.ESP.lifetime": "ESP Lifetime (second)",
"label.ESP.policy": "ESP policy",
"label.IKE.DH": "IKE DH",
"label.IKE.encryption": "IKE Encryption",
"label.IKE.hash": "IKE Hash",
"label.IKE.lifetime": "IKE lifetime (second)",
"label.IKE.policy": "IKE policy",
"label.IPsec.preshared.key": "IPsec Preshared-Key",
"label.LB.isolation": "LB isolation",
"label.LUN.number": "LUN #",
"label.PA": "Palo Alto",
"label.PA.log.profile": "Palo Alto Log Profile",
"label.PA.threat.profile": "Palo Alto Threat Profile",
"label.PING.CIFS.password": "PING CIFS password",
"label.PING.CIFS.username": "PING CIFS username",
"label.PING.dir": "PING Directory",
"label.PING.storage.IP": "PING storage IP",
"label.PreSetup": "PreSetup",
"label.Pxe.server.type": "Tipus de servidor PXE",
"label.SNMP.community": "SNMP Community",
"label.SNMP.port": "SNMP Port",
"label.SR.name": "SR Name-Label",
"label.SharedMountPoint": "SharedMountPoint",
"label.TFTP.dir": "TFTP Directory",
"label.VMFS.datastore": "VMFS datastore",
"label.VMs.in.tier": "VMs in tier",
"label.VPC.limits": "VPC limits",
"label.VPC.router.details": "VPC router details",
"label.VPN.connection": "VPN Connection",
"label.VPN.customer.gateway": "VPN Customer Gateway",
"label.VPN.gateway": "VPN Gateway",
"label.Xenserver.Tools.Version61plus": "Original XS Version is 6.1+",
"label.about": "About",
"label.about.app": "About CloudStack",
"label.accept.project.invitation": "Accpetar invitació al projecte",
"label.account": "Account",
"label.account.and.security.group": "Account, Security group",
"label.account.details": "Account details",
"label.account.id": "Account ID",
"label.account.lower": "account",
"label.account.name": "Account Name",
"label.account.specific": "Account-Specific",
"label.account.type": "Account Type",
"label.accounts": "Accounts",
"label.acl": "ACL",
"label.acl.id": "ACL ID",
"label.acl.export": "Export ACLs",
"label.acl.list.rules": "ACL List Rules",
"label.acl.name": "ACL Name",
"label.acl.replaced": "ACL replaced",
"label.acl.reason": "Reason",
"label.acl.reason.description": "Enter the reason behind an ACL rule.",
"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.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.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": "Create 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.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.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.account": "Delete account",
"label.action.delete.account.processing": "Deleting account....",
"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.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.ISO": "Edit ISO",
"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": "Editar Host",
"label.action.edit.instance": "Edit Instance",
"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.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": "Migrar router",
"label.action.migrate.router.processing": "Migrant router...",
"label.action.migrate.systemvm": "Migrar MV de Sistema",
"label.action.migrate.systemvm.processing": "Migrant MV de Sistema...",
"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.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.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.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.unmanage.cluster": "Unmanage Cluster",
"label.action.unmanage.cluster.processing": "Unmanaging Cluster....",
"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.actions": "Actions",
"label.activate.project": "Activar projecte",
"label.active.sessions": "Active Sessions",
"label.add": "Add",
"label.add.ACL": "Add ACL",
"label.add.BigSwitchBcf.device": "Add BigSwitch BCF Controller",
"label.add.BrocadeVcs.device": "Add Brocade Vcs Switch",
"label.add.F5.device": "Add F5 device",
"label.add.LDAP.account": "Add LDAP Account",
"label.add.NiciraNvp.device": "Add Nvp Controller",
"label.add.OpenDaylight.device": "Add OpenDaylight Controller",
"label.add.PA.device": "Add Palo Alto device",
"label.add.SRX.device": "Add SRX device",
"label.add.VM.to.tier": "Add VM to tier",
"label.add.VPN.gateway": "Add VPN Gateway",
"label.add.account": "Add Account",
"label.add.account.to.project": "Afegir compte al projecte",
"label.add.accounts": "Afegir comptes",
"label.add.accounts.to": "Afegir comptes a",
"label.add.acl.list": "Add ACL List",
"label.edit.acl.list": "Edit 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.by": "Afegir per",
"label.add.by.cidr": "Add By CIDR",
"label.add.by.group": "Add By Group",
"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": "Afegir regla de sortida",
"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.l2.guest.network":"Add L2 Guest Network",
"label.add.ldap.account": "Add LDAP account",
"label.add.list.name": "ACL List Name",
"label.add.load.balancer": "Add Load Balancer",
"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": "Afegir nou F5",
"label.add.new.NetScaler": "Afegir un nou NetScaler",
"label.add.new.PA": "Add new Palo Alto",
"label.add.new.SRX": "Afegir nou SRX",
"label.add.new.gateway": "Add new gateway",
"label.add.new.tier": "Add new tier",
"label.add.nfs.secondary.staging.store": "Add NFS Secondary Staging Store",
"label.add.physical.network": "Afegir xarxa física",
"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.region": "Add Region",
"label.add.resources": "Add Resources",
"label.add.role": "Add Role",
"label.add.route": "Add route",
"label.add.rule": "Afegir regla",
"label.add.rule.desc": "Create a new ACL rule",
"label.add.secondary.storage": "Add Secondary Storage",
"label.add.security.group": "Add Security Group",
"label.add.service.offering": "Add Service Offering",
"label.add.static.nat.rule": "Afegir regla de NAT estàtic",
"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": "Afegir a grup",
"label.add.ucs.manager": "Add UCS Manager",
"label.add.user": "Add User",
"label.add.userdata": "Userdata",
"label.add.vlan": "Add VLAN",
"label.add.vm": "Afegir MV",
"label.add.vms": "Afegir MVs",
"label.add.vms.to.lb": "Afegir MV(s) a la regla de balanceig de càrrega",
"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.user": "Afegir usuari VPN",
"label.add.vxlan": "Add VXLAN",
"label.add.zone": "Add Zone",
"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.admin": "Admin",
"label.admin.accounts": "Admin Accounts",
"label.advanced": "Advanced",
"label.advanced.mode": "Advanced Mode",
"label.advanced.search": "Advanced Search",
"label.affinity": "Affinity",
"label.affinity.group": "Affinity Group",
"label.affinity.groups": "Affinity Groups",
"label.agent.password": "Agent Password",
"label.agent.port": "Agent Port",
"label.agent.state": "Agent State",
"label.agent.username": "Agent Username",
"label.agree": "D'acord",
"label.alert": "Alert",
"label.alert.archived": "Alert Archived",
"label.alert.deleted": "Alert Deleted",
"label.alert.details": "Alert details",
"label.algorithm": "Algorithm",
"label.allocated": "Allocated",
"label.allocation.state": "Allocation State",
"label.allow": "Allow",
"label.anti.affinity": "Anti-affinity",
"label.anti.affinity.group": "Anti-affinity Group",
"label.anti.affinity.groups": "Anti-affinity Groups",
"label.api.key": "API Key",
"label.api.version": "API Version",
"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.to.load.balancer": "Assigning instance to load balancer",
"label.assign.vms": "Assign VMs",
"label.assigned.vms": "Assigned VMs",
"label.associate.public.ip": "Associate Public IP",
"label.associated.network": "Associated Network",
"label.associated.network.id": "Associated Network ID",
"label.associated.profile": "Associated Profile",
"label.attached.iso": "Attached ISO",
"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.availability.zone": "Availability Zone",
"label.availabilityZone": "availabilityZone",
"label.available": "Available",
"label.available.public.ips": "Available Public IP Addresses",
"label.back": "Back",
"label.bandwidth": "Ample de banda",
"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.basic": "Basic",
"label.basic.mode": "Basic Mode",
"label.bigswitch.bcf.details": "BigSwitch BCF details",
"label.bigswitch.bcf.nat": "BigSwitch BCF NAT Enabled",
"label.bigswitch.controller.address": "BigSwitch BCF Controller Address",
"label.blade.id": "Blade ID",
"label.blades": "Blades",
"label.bootable": "Bootable",
"label.broadcast.domain.range": "Rang del domini de broadcast",
"label.broadcast.domain.type": "Broadcast Domain Type",
"label.broadcast.uri": "Broadcast URI",
"label.broadcasturi": "broadcasturi",
"label.broadcat.uri": "Broadcast URI",
"label.brocade.vcs.address": "Vcs Switch Address",
"label.brocade.vcs.details": "Brocade Vcs Switch details",
"label.by.account": "By Account",
"label.by.alert.type": "By alert type",
"label.by.availability": "By Availability",
"label.by.date.end": "By date (end)",
"label.by.date.start": "By date (start)",
"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.bytes.received": "Bytes Received",
"label.bytes.sent": "Bytes Sent",
"label.cache.mode": "Write-cache Type",
"label.cancel": "Cancel",
"label.capacity": "Capacitat",
"label.capacity.bytes": "Capacity Bytes",
"label.capacity.iops": "Capacity IOPS",
"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.change.value": "Canviar valor",
"label.character": "Character",
"label.chassis": "Chassis",
"label.checksum": "checksum",
"label.cidr": "CIDR",
"label.cidr.account": "CIDR or Account/Security Group",
"label.cidr.list": "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.ciscovnmc.resource.details": "CiscoVNMC resource details",
"label.clean.up": "Clean up",
"label.clear.list": "Esborra llista",
"label.close": "Close",
"label.cloud.console": "Cloud Management Console",
"label.cloud.managed": "Cloud.com Managed",
"label.cluster": "Cluster",
"label.cluster.name": "Cluster Name",
"label.cluster.type": "Cluster Type",
"label.clusters": "Clusters",
"label.clvm": "CLVM",
"label.code": "Code",
"label.community": "Comunitat",
"label.compute": "Computació",
"label.compute.and.storage": "Computació i Emmagatzematge",
"label.compute.offering": "Compute offering",
"label.compute.offerings": "Compute Offerings",
"label.configuration": "Configuració",
"label.configure": "Configurar",
"label.configure.ldap": "Configure LDAP",
"label.configure.network.ACLs": "Configure Network ACLs",
"label.configure.sticky.policy": "Configure Sticky Policy",
"label.configure.vpc": "Configure VPC",
"label.confirm.password": "Confirmar contrasenya",
"label.confirmation": "Confirmation",
"label.congratulations": "Enorabona!",
"label.conserve.mode": "Conserve mode",
"label.console.proxy": "Console proxy",
"label.console.proxy.vm": "Console Proxy VM",
"label.continue": "Continuar",
"label.continue.basic.install": "Continueu amb la instal·lació bàsica",
"label.copying.iso": "Copying ISO",
"label.corrections.saved": "Correccions guardades",
"label.counter": "Counter",
"label.cpu": "CPU",
"label.cpu.allocated": "CPU Allocated",
"label.cpu.allocated.for.VMs": "CPU Allocated for VMs",
"label.cpu.limits": "CPU limits",
"label.cpu.mhz": "CPU (in MHz)",
"label.cpu.utilized": "CPU Utilized",
"label.create.VPN.connection": "Create VPN Connection",
"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": "Crear projecte",
"label.create.ssh.key.pair": "Create a SSH Key Pair",
"label.create.template": "Create template",
"label.created": "Created",
"label.created.by.system": "Created by system",
"label.cross.zones": "Cross Zones",
"label.custom": "Custom",
"label.custom.disk.iops": "Custom IOPS",
"label.custom.disk.offering": "Custom Disk Offering",
"label.custom.disk.size": "Custom Disk Size",
"label.daily": "Daily",
"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.dead.peer.detection": "Dead Peer Detection",
"label.decline.invitation": "Declinar invitació",
"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.egress.policy": "Default egress policy",
"label.default.use": "Default Use",
"label.default.view": "Default View",
"label.delete": "Delete",
"label.delete.BigSwitchBcf": "Remove BigSwitch BCF Controller",
"label.delete.BrocadeVcs": "Remove Brocade Vcs Switch",
"label.delete.F5": "Esborrar F5",
"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.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.acl.list": "Delete ACL List",
"label.delete.affinity.group": "Delete Affinity Group",
"label.delete.alerts": "Delete alerts",
"label.delete.baremetal.rack.configuration": "Delete Baremetal Rack Configuration",
"label.delete.ciscoASA1000v": "Delete CiscoASA1000v",
"label.delete.ciscovnmc.resource": "Delete CiscoVNMC resource",
"label.delete.events": "Delete events",
"label.delete.gateway": "Delete gateway",
"label.delete.internal.lb": "Delete Internal LB",
"label.delete.portable.ip.range": "Delete Portable IP Range",
"label.delete.profile": "Delete Profile",
"label.delete.project": "Esborrar projecte",
"label.delete.role": "Delete Role",
"label.delete.secondary.staging.store": "Delete Secondary Staging Store",
"label.delete.ucs.manager": "Delete UCS Manager",
"label.delete.vpn.user": "Esborrar usuari VPN",
"label.deleting.failed": "Deleting Failed",
"label.deleting.processing": "Deleting....",
"label.deny": "Deny",
"label.deployment.planner": "Deployment planner",
"label.description": "Description",
"label.destination.physical.network.id": "ID de xarxa física de destí",
"label.destination.zone": "Zona de destí",
"label.destroy": "Destroy",
"label.destroy.router": "Destruir router",
"label.destroy.vm.graceperiod": "Destroy VM Grace Period",
"label.detaching.disk": "Detaching Disk",
"label.details": "Details",
"label.device.id": "Device ID",
"label.devices": "Devices",
"label.dhcp": "DHCP",
"label.direct.attached.public.ip": "Direct Attached Public IP",
"label.direct.download":"Direct Download",
"label.direct.ips": "Shared Network IPs",
"label.disable.autoscale": "Disable Autoscale",
"label.disable.host": "Disable Host",
"label.disable.network.offering": "Disable network offering",
"label.disable.provider": "Deshabilitar proveïdor",
"label.disable.vnmc.provider": "Disable VNMC provider",
"label.disable.vpc.offering": "Disable VPC offering",
"label.disable.vpn": "Deshabilitar VPN",
"label.disabled": "Deshabilitat",
"label.disabling.vpn.access": "Disabling VPN Access",
"label.disassociate.profile.blade": "Disassociate Profile from Blade",
"label.disbale.vnmc.device": "Disable VNMC device",
"label.disk.allocated": "Disk Allocated",
"label.disk.bytes.read.rate": "Disk Read Rate (BPS)",
"label.disk.bytes.write.rate": "Disk Write Rate (BPS)",
"label.disk.iops.max": "Max IOPS",
"label.disk.iops.min": "Min IOPS",
"label.disk.iops.read.rate": "Disk Read Rate (IOPS)",
"label.disk.iops.total": "IOPS Total",
"label.disk.iops.write.rate": "Disk Write Rate (IOPS)",
"label.disk.offering": "Disk Offering",
"label.disk.offering.details": "Disk offering details",
"label.disk.newOffering": "New Disk Offering",
"label.disk.newOffering.description": "New disk offering to be used by this volume after the migration.",
"label.disk.physicalsize":"Physical Size",
"label.disk.provisioningtype": "Provisioning Type",
"label.disk.read.bytes": "Disk Read (Bytes)",
"label.disk.read.io": "Disk Read (IO)",
"label.disk.size": "Disk Size",
"label.disk.size.gb": "Disk Size (in GB)",
"label.disk.total": "Disk Total",
"label.disk.utilisation":"Utilisation",
"label.disk.virtualsize":"Virtual Size",
"label.disk.volume": "Disk Volume",
"label.disk.write.bytes": "Disk Write (Bytes)",
"label.disk.write.io": "Disk Write (IO)",
"label.diskoffering": "diskoffering",
"label.display.name": "Display Name",
"label.display.text": "Display Text",
"label.distributedrouter": "Distributed Router",
"label.dns": "DNS",
"label.dns.1": "DNS 1",
"label.dns.2": "DNS 2",
"label.domain": "Domain",
"label.domain.admin": "Domain Admin",
"label.domain.details": "Domain details",
"label.domain.id": "Domain ID",
"label.domain.lower": "domain",
"label.domain.name": "Domain Name",
"label.domain.router": "Domain router",
"label.domain.suffix": "DNS Domain Suffix (i.e., xyz.com)",
"label.done": "Done",
"label.double.quotes.are.not.allowed": "Double quotes are not allowed",
"label.download.progress": "Download Progress",
"label.drag.new.position": "Arrosegar a la nova posició",
"label.duration.in.sec": "Duration (in sec)",
"label.dynamically.scalable": "Dynamically Scalable",
"label.edit": "Edit",
"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": "Editar detalls del projecte",
"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.vpc": "Edit VPC",
"label.egress.default.policy": "Egress Default Policy",
"label.egress.rule": "Regla de sortida",
"label.egress.rules": "Egress rules",
"label.elastic": "Elàstic",
"label.elastic.IP": "Elastic IP",
"label.elastic.LB": "Elastic LB",
"label.email": "Email",
"label.email.lower": "email",
"label.enable.autoscale": "Enable Autoscale",
"label.enable.host": "Enable Host",
"label.enable.network.offering": "Enable network offering",
"label.enable.provider": "Habilitar proveïdor",
"label.enable.s3": "Enable S3-backed Secondary Storage",
"label.enable.swift": "Habilitar 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": "Habilitar VPN",
"label.enabling.vpn": "Enabling VPN",
"label.enabling.vpn.access": "Enabling VPN Access",
"label.end.IP": "End IP",
"label.end.port": "End Port",
"label.end.reserved.system.IP": "End Reserved system IP",
"label.end.vlan": "End VLAN",
"label.end.vxlan": "End VXLAN",
"label.endpoint": "Endpoint",
"label.endpoint.or.operation": "Endpoint or Operation",
"label.enter.token": "Enter token",
"label.error": "Error",
"label.error.code": "Error Code",
"label.error.upper": "ERROR",
"label.esx.host": "ESX/ESXi Host",
"label.event": "Event",
"label.event.archived": "Event Archived",
"label.event.deleted": "Event Deleted",
"label.every": "Every",
"label.example": "Example",
"label.expunge": "Expunge",
"label.external.link": "External link",
"label.extractable": "Es pot extreure",
"label.extractable.lower": "extractable",
"label.f5": "F5",
"label.f5.details": "F5 details",
"label.failed": "Failed",
"label.featured": "Featured",
"label.fetch.latest": "Fetch latest",
"label.filterBy": "Filter by",
"label.fingerprint": "FingerPrint",
"label.firewall": "Firewall",
"label.first.name": "First Name",
"label.firstname.lower": "firstname",
"label.format": "Format",
"label.format.lower": "format",
"label.friday": "Friday",
"label.full": "Full",
"label.full.path": "Camí sencer",
"label.gateway": "Gateway",
"label.general.alerts": "General Alerts",
"label.generating.url": "Generating URL",
"label.globo.dns": "GloboDNS",
"label.globo.dns.configuration": "GloboDNS Configuration",
"label.gluster.volume": "Volume",
"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.domain.name": "GSLB Domain Name",
"label.gslb.lb.details": "Load balancing details",
"label.gslb.lb.remove": "Remove load balancing from this GSLB",
"label.gslb.lb.rule": "Load balancing rule",
"label.gslb.service": "GSLB service",
"label.gslb.service.private.ip": "GSLB service Private IP",
"label.gslb.service.public.ip": "GSLB service Public IP",
"label.gslb.servicetype": "Service Type",
"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.network.details": "Guest network details",
"label.guest.networks": "Guest networks",
"label.guest.start.ip": "Inici d'IP per a MV",
"label.guest.traffic": "Tràfic de MV",
"label.guest.traffic.vswitch.name": "Guest Traffic vSwitch Name",
"label.guest.traffic.vswitch.type": "Guest Traffic vSwitch Type",
"label.guest.type": "Guest Type",
"label.ha.enabled": "HA Enabled",
"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.hints": "Pistes",
"label.home": "Home",
"label.host": "Host",
"label.host.MAC": "Host MAC",
"label.host.alerts": "Hosts in Alert State",
"label.host.name": "Host Name",
"label.host.tag": "Host Tag",
"label.host.tags": "Host Tags",
"label.hosts": "Hosts",
"label.hourly": "Hourly",
"label.hvm": "HVM",
"label.hyperv.traffic.label": "HyperV Traffic Label",
"label.hypervisor": "Hypervisor",
"label.hypervisor.capabilities": "Hypervisor capabilities",
"label.hypervisor.snapshot.reserve": "Hypervisor Snapshot Reserve",
"label.hypervisor.type": "Hypervisor Type",
"label.hypervisor.version": "Hypervisor version",
"label.hypervisors": "Hypervisors",
"label.id": "ID",
"label.info": "Info",
"label.info.upper": "INFO",
"label.ingress.rule": "Ingress Rule",
"label.initiated.by": "Initiated By",
"label.inside.port.profile": "Inside Port Profile",
"label.installWizard.addClusterIntro.subtitle": "Que és un cluster?",
"label.installWizard.addClusterIntro.title": "Anem a afegir un cluster",
"label.installWizard.addHostIntro.subtitle": "Què és un amfitrió \"host\"?",
"label.installWizard.addHostIntro.title": "Anem a afegir un amfitrió",
"label.installWizard.addPodIntro.subtitle": "Que és un pod?",
"label.installWizard.addPodIntro.title": "Anem a afegir un pod",
"label.installWizard.addPrimaryStorageIntro.subtitle": "Què és l'emmagatzematge primari?",
"label.installWizard.addPrimaryStorageIntro.title": "Anem a afegir emmagatzematge primari",
"label.installWizard.addSecondaryStorageIntro.subtitle": "Què és el emmagatzematge secundari?",
"label.installWizard.addSecondaryStorageIntro.title": "Anem a afegir emmagatzematge secundari",
"label.installWizard.addZone.title": "Afegir zona",
"label.installWizard.addZoneIntro.subtitle": "Que és una zona?",
"label.installWizard.addZoneIntro.title": "Anem a afegir una zona",
"label.installWizard.click.launch": "Feu clic al botó d'inici.",
"label.installWizard.subtitle": "Auqesta guia us ajudarà a configurar la vostra instal·lació de CloudStack™",
"label.installWizard.title": "Hola i benvigut a CloudStack™",
"label.instance": "Instance",
"label.instance.limits": "Instance Limits",
"label.instance.name": "Instance Name",
"label.instance.port": "Instance Port",
"label.instance.scaled.up": "Instance scaled to the requested offering",
"label.instances": "Instances",
"label.instanciate.template.associate.profile.blade": "Instanciate Template and Associate Profile to Blade",
"label.intermediate.certificate": "Intermediate certificate {0}",
"label.internal.dns.1": "Internal DNS 1",
"label.internal.dns.2": "Internal DNS 2",
"label.internal.lb": "Internal LB",
"label.internal.lb.details": "Internal LB details",
"label.internal.name": "Internal name",
"label.internallbvm": "InternalLbVm",
"label.interval.type": "Interval Type",
"label.introduction.to.cloudstack": "Introducció a la CloudStack™",
"label.invalid.integer": "Invalid Integer",
"label.invalid.number": "Invalid Number",
"label.invitations": "Invitacions",
"label.invite": "Convidar",
"label.invite.to": "Convidar a",
"label.invited.accounts": "Comptes convidades",
"label.ip": "IP",
"label.ip.address": "IP Address",
"label.ip.allocations": "IP Allocations",
"label.ip.limits": "Public IP Limits",
"label.ip.or.fqdn": "IP or FQDN",
"label.ip.range": "IP Range",
"label.ip.ranges": "Rangs d'IPs",
"label.ipaddress": "IP Address",
"label.ips": "IPs",
"label.ipv4.cidr": "IPv4 CIDR",
"label.ipv4.dns1": "IPv4 DNS1",
"label.ipv4.dns2": "IPv4 DNS2",
"label.ipv4.end.ip": "IPv4 End IP",
"label.ipv4.gateway": "IPv4 Gateway",
"label.ipv4.netmask": "IPv4 Netmask",
"label.ipv4.start.ip": "IPv4 Start IP",
"label.ipv6.CIDR": "IPv6 CIDR",
"label.ipv6.address": "IPv6 IP Address",
"label.ipv6.dns1": "IPv6 DNS1",
"label.ipv6.dns2": "IPv6 DNS2",
"label.ipv6.end.ip": "IPv6 End IP",
"label.ipv6.gateway": "IPv6 Gateway",
"label.ipv6.start.ip": "IPv6 Start IP",
"label.is.default": "Is Default",
"label.is.redundant.router": "Redundant",
"label.is.shared": "Is Shared",
"label.is.system": "Is System",
"label.iscsi": "iSCSI",
"label.iso": "ISO",
"label.iso.boot": "ISO Boot",
"label.isolated.networks": "Isolated networks",
"label.isolation.method": "Isolation method",
"label.isolation.mode": "Isolation Mode",
"label.isolation.uri": "Isolation URI",
"label.item.listing": "Llista d'articles",
"label.japanese.keyboard": "Japanese keyboard",
"label.keep": "Keep",
"label.keep.colon": "Keep:",
"label.key": "Clau",
"label.keyboard.language": "Keyboard language",
"label.keyboard.type": "Tipus de teclat",
"label.kvm.traffic.label": "KVM traffic label",
"label.label": "Label",
"label.lang.arabic": "Arabic",
"label.lang.brportugese": "Brazilian Portugese",
"label.lang.catalan": "Catalan",
"label.lang.chinese": "Chinese (Simplified)",
"label.lang.dutch": "Dutch (Netherlands)",
"label.lang.english": "English",
"label.lang.french": "French",
"label.lang.german": "German",
"label.lang.hungarian": "Hungarian",
"label.lang.italian": "Italian",
"label.lang.japanese": "Japanese",
"label.lang.korean": "Korean",
"label.lang.norwegian": "Norwegian",
"label.lang.polish": "Polish",
"label.lang.russian": "Russian",
"label.lang.spanish": "Spanish",
"label.last.disconnected": "Last Disconnected",
"label.last.name": "Last Name",
"label.lastname.lower": "lastname",
"label.latest.events": "Latest events",
"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.ldap.configuration": "LDAP Configuration",
"label.ldap.group.name": "LDAP Group",
"label.ldap.link.type": "Type",
"label.ldap.port": "LDAP port",
"label.level": "Level",
"label.link.domain.to.ldap": "Link Domain to LDAP",
"label.linklocal.ip": "Link Local IP Address",
"label.load.balancer": "Load Balancer",
"label.load.balancer.type": "Load Balancer Type",
"label.load.balancing": "Balanceig de càrrega",
"label.load.balancing.policies": "Pol·lítiques de balanceig de càrrega",
"label.loading": "Loading",
"label.local": "Local",
"label.local.file": "Local file",
"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.login": "Login",
"label.logout": "Logout",
"label.lun": "LUN",
"label.lxc.traffic.label": "LXC Traffic Label",
"label.make.project.owner": "Feu la compta propietària del projecte",
"label.make.redundant": "Make redundant",
"label.manage": "Manage",
"label.manage.resources": "Administrar Recursos",
"label.managed": "Managed",
"label.management": "Administració",
"label.management.ips": "Management IP Addresses",
"label.management.server": "Management Server",
"label.max.cpus": "Max. CPU cores",
"label.max.guest.limit": "Max guest limit",
"label.max.instances": "Max Instances",
"label.max.memory": "Max. memory (MiB)",
"label.max.networks": "Max. networks",
"label.max.primary.storage": "Max. primary (GiB)",
"label.max.public.ips": "Max. IP públiques",
"label.max.secondary.storage": "Max. secondary (GiB)",
"label.max.snapshots": "Max. instantànies",
"label.max.templates": "Max. plantilles",
"label.max.vms": "Max. MV d'usuari",
"label.max.volumes": "Max. Volums",
"label.max.vpcs": "Max. VPCs",
"label.maximum": "Maximum",