forked from apache/cloudstack
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpl.js
More file actions
2311 lines (2311 loc) · 145 KB
/
Copy pathpl.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": "Please fill in the following information to enable support for Swift",
"error.could.not.change.your.password.because.non.native.user": "Error could not change your password because LDAP is enabled.",
"error.could.not.enable.zone": "Could not enable zone",
"error.installWizard.message": "Something went wrong; you may go back and correct any errors",
"error.invalid.username.password": "Błędna nazwa użytkownika lub hasło",
"error.login": "Your username/password does not match our records.",
"error.menu.select": "Unable to perform action due to no items being selected.",
"error.mgmt.server.inaccessible": "The Management Server is unaccessible. Please try again later.",
"error.password.not.match": "The password fields do not match",
"error.please.specify.physical.network.tags": "Network offerings is not available until you specify tags for this physical network.",
"error.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": "Inline",
"instances.actions.reboot.label": "Reboot instance",
"label.CIDR.list": "Lista CIDR",
"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": "Pxe Server Type",
"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": "Accept project invitation",
"label.account": "Konto",
"label.account.and.security.group": "Account, Security group",
"label.account.details": "Account details",
"label.account.id": "ID konta",
"label.account.lower": "account",
"label.account.name": "Nazwa konta",
"label.account.specific": "Account-Specific",
"label.account.type": "Account Type",
"label.accounts": "Konta",
"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": "Dodaj dysk",
"label.action.attach.disk.processing": "Dodawanie dysku",
"label.action.attach.iso": "Dodaj obraz ISO",
"label.action.attach.iso.processing": "Dodawanie obrazu ISO",
"label.action.cancel.maintenance.mode": "Cancel Maintenance Mode",
"label.action.cancel.maintenance.mode.processing": "Cancelling Maintenance Mode....",
"label.action.change.password": "Zmień hasło",
"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": "Kopiuj ISO",
"label.action.copy.ISO.processing": "Copying ISO....",
"label.action.copy.template": "Kopij szablon",
"label.action.copy.template.processing": "Copying Template....",
"label.action.create.template": "Utwórz szablon",
"label.action.create.template.from.vm": "Utwórz szablon z VM",
"label.action.create.template.from.volume": "Utwórz Szablon z wolumenu",
"label.action.create.template.processing": "Tworzę szablon",
"label.action.create.vm": "Utwórz VM",
"label.action.create.vm.processing": "Tworzę VM....",
"label.action.create.volume": "Utwórz wolumen",
"label.action.create.volume.processing": "Tworzę wolumen....",
"label.action.delete.IP.range": "Delete IP Range",
"label.action.delete.IP.range.processing": "Deleting IP Range....",
"label.action.delete.ISO": "Usuń ISO",
"label.action.delete.ISO.processing": "Usuwam ISO....",
"label.action.delete.account": "Usuń dostęp",
"label.action.delete.account.processing": "Usuwanie dostępu....",
"label.action.delete.cluster": "Usuń klaster",
"label.action.delete.cluster.processing": "Usuwam klaster....",
"label.action.delete.disk.offering": "Delete Disk Offering",
"label.action.delete.disk.offering.processing": "Deleting Disk Offering....",
"label.action.delete.domain": "Usuń domenę",
"label.action.delete.domain.processing": "Usuwam domenę....",
"label.action.delete.firewall": "Usuń regułę Firewall",
"label.action.delete.firewall.processing": "Usuwam 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": "Usuń sieć",
"label.action.delete.network.processing": "Usuwam sieć....",
"label.action.delete.nexusVswitch": "Usuń Nexus 1000v",
"label.action.delete.nic": "Remove NIC",
"label.action.delete.physical.network": "Usuń fizyczną sieć",
"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": "Usuń użytkownika",
"label.action.delete.user.processing": "Usuwam użytkownika....",
"label.action.delete.volume": "Usuń wolumen",
"label.action.delete.volume.processing": "Usuwam wolumen....",
"label.action.delete.zone": "Usuń strefę",
"label.action.delete.zone.processing": "Usuwam strefę....",
"label.action.destroy.instance": "Usuń instancję",
"label.action.destroy.instance.processing": "Usuwam instancję",
"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": "Odłącz dysk",
"label.action.detach.disk.processing": "Odłączanie dysku....",
"label.action.detach.iso": "Odłącz obraz ISO",
"label.action.detach.iso.processing": "Odłączanie obrazu ISO",
"label.action.disable.account": "Wyłącz dostęp",
"label.action.disable.account.processing": "Wyłączam dostęp....",
"label.action.disable.cluster": "Wyłącz klaster",
"label.action.disable.cluster.processing": "Wyłączam klaster....",
"label.action.disable.nexusVswitch": "Wyłącz Nexus 1000v",
"label.action.disable.physical.network": "Wyłącz fizyczną sieć",
"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": "Wyłącz użytkownika",
"label.action.disable.user.processing": "Wyłączam użytkownika",
"label.action.disable.zone": "Wyłącz strefę",
"label.action.disable.zone.processing": "Wyłączam strefę....",
"label.action.download.ISO": "Pobierz ISO",
"label.action.download.template": "Pobierz szablon",
"label.action.download.volume": "Pobierz wolumen",
"label.action.download.volume.processing": "Pobieram wolumen....",
"label.action.edit.ISO": "Edytuj ISO",
"label.action.edit.account": "Edytuj dostęp",
"label.action.edit.disk.offering": "Edit Disk Offering",
"label.action.edit.domain": "Edytuj domenę",
"label.action.edit.global.setting": "Edytuj Globalne ustawienia",
"label.action.edit.host": "Edytuj host",
"label.action.edit.instance": "Edytuj instancję",
"label.action.edit.network": "Edytuj sieć",
"label.action.edit.network.offering": "Edit Network Offering",
"label.action.edit.network.processing": "Zmieniam sieć....",
"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": "Edytuj szablon",
"label.action.edit.user": "Edytuj użytkownika",
"label.action.edit.zone": "Edytuj strefę",
"label.action.enable.account": "Włącz dostęp",
"label.action.enable.account.processing": "Włączam dostęp....",
"label.action.enable.cluster": "Włącz klaster",
"label.action.enable.cluster.processing": "Włączam klaster....",
"label.action.enable.maintenance.mode": "Enable Maintenance Mode",
"label.action.enable.maintenance.mode.processing": "Enabling Maintenance Mode....",
"label.action.enable.nexusVswitch": "Włącz Nexus 1000v",
"label.action.enable.physical.network": "Włącz fizyczną sieć",
"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": "Włącz użytkownika",
"label.action.enable.user.processing": "Włączam użytkownika....",
"label.action.enable.zone": "Włącz strefę",
"label.action.enable.zone.processing": "Włączam strefę....",
"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": "Generuj klucze",
"label.action.generate.keys.processing": "Generuję klucze....",
"label.action.list.nexusVswitch": "Kista Nexus 1000v",
"label.action.lock.account": "Zablokuj dostęp",
"label.action.lock.account.processing": "Blokuję dostęp....",
"label.action.manage.cluster": "Zarządzaj klastrem",
"label.action.manage.cluster.processing": "Zarządzam klastrem....",
"label.action.migrate.instance": "Migruj instancję",
"label.action.migrate.instance.processing": "Migruję instancję....",
"label.action.migrate.router": "Migruj router",
"label.action.migrate.router.processing": "Migruje router....",
"label.action.migrate.systemvm": "Migruj system VM",
"label.action.migrate.systemvm.processing": "Migruję system VM....",
"label.action.reboot.instance": "Restartuj instancję",
"label.action.reboot.instance.processing": "Restartuje instancję",
"label.action.reboot.router": "Restartuj router",
"label.action.reboot.router.processing": "Restartuje router.....",
"label.action.reboot.systemvm": "Restartuj system VM",
"label.action.reboot.systemvm.processing": "Restartuje system VM....",
"label.action.recover.volume":"Recover Volume",
"label.action.recurring.snapshot": "Recurring Snapshots",
"label.action.register.iso": "Rejestruj 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": "Usuń host",
"label.action.remove.host.processing": "Usuwam host....",
"label.action.reset.password": "Resetuj hasło",
"label.action.reset.password.processing": "Resetuję hasło....",
"label.action.resize.volume": "Zmień wielkość wolumenu",
"label.action.resize.volume.processing": "Zmieniam wielkość wolumenu....",
"label.action.resource.limits": "Resource limits",
"label.action.restore.instance": "Przywróć instancję",
"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": "Uruchom instancję",
"label.action.start.instance.processing": "Uruchamiam instancję....",
"label.action.start.router": "Uruchom router",
"label.action.start.router.processing": "Uruchamiam router....",
"label.action.start.systemvm": "Uruchom system VM",
"label.action.start.systemvm.processing": "Uruchamiam system VM...",
"label.action.stop.instance": "Zatrzymaj instancję",
"label.action.stop.instance.processing": "Zatrzymuję instancję....",
"label.action.stop.router": "Zatrzymaj router",
"label.action.stop.router.processing": "Zatrzymuję router...",
"label.action.stop.systemvm": "Zatrzymaj system VM",
"label.action.stop.systemvm.processing": "Zatrzymuję system VM....",
"label.action.take.snapshot": "Zrób snapshot",
"label.action.take.snapshot.processing": "Tworzę 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": "Akcje",
"label.activate.project": "Aktywuj projekt",
"label.active.sessions": "Active Sessions",
"label.add": "Dodaj",
"label.add.ACL": "Dodaj 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": "Dodaj konto",
"label.add.account.to.project": "Dodaj konto do projektu",
"label.add.accounts": "Dodaj konta",
"label.add.accounts.to": "Dodaj konto do",
"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": "Dodaj przez",
"label.add.by.cidr": "Dodaj przez CIDR",
"label.add.by.group": "Dodaj przez grupę",
"label.add.ciscoASA1000v": "Add CiscoASA1000v Resource",
"label.add.cluster": "Dodaj klaster",
"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": "Dodaj domenę",
"label.add.egress.rule": "Add egress rule",
"label.add.firewall": "Dodaj regułę firewall",
"label.add.globo.dns": "Add GloboDNS",
"label.add.gslb": "Add GSLB",
"label.add.guest.network": "Add guest network",
"label.add.host": "Dodaj 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": "Dodaj więcej",
"label.add.netScaler.device": "Add Netscaler device",
"label.add.network": "Dodaj sieć",
"label.add.network.ACL": "Add network ACL",
"label.add.network.acl.list": "Add Network ACL List",
"label.add.network.device": "Dodaj urządzenie sieciowe",
"label.add.network.offering": "Add network offering",
"label.add.new.F5": "Dodaj nowy F5",
"label.add.new.NetScaler": "Add new NetScaler",
"label.add.new.PA": "Add new Palo Alto",
"label.add.new.SRX": "Dodaj nowy 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": "Add physical network",
"label.add.pod": "Add Pod",
"label.add.port.forwarding.rule": "Add port forwarding rule",
"label.add.portable.ip.range": "Add Portable IP Range",
"label.add.primary.storage": "Add Primary Storage",
"label.add.private.gateway": "Add Private Gateway",
"label.add.region": "Dodaj region",
"label.add.resources": "Add Resources",
"label.add.role": "Add Role",
"label.add.route": "Add route",
"label.add.rule": "Dodaj regułę",
"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": "Add static NAT rule",
"label.add.static.route": "Add static route",
"label.add.system.service.offering": "Add System Service Offering",
"label.add.template": "Add Template",
"label.add.to.group": "Dodaj do grupy",
"label.add.ucs.manager": "Add UCS Manager",
"label.add.user": "Dodaj użytkownika",
"label.add.userdata": "Userdata",
"label.add.vlan": "Dodaj VLAN",
"label.add.vm": "Dodaj VM",
"label.add.vms": "Dodaj VM-ny",
"label.add.vms.to.lb": "Add VM(s) to load balancer rule",
"label.add.vmware.datacenter": "Add VMware datacenter",
"label.add.vnmc.device": "Add VNMC device",
"label.add.vnmc.provider": "Add VNMC provider",
"label.add.volume": "Dodaj wolumen",
"label.add.vpc": "Dodaj VPC",
"label.add.vpc.offering": "Add VPC Offering",
"label.add.vpn.customer.gateway": "Add VPN Customer Gateway",
"label.add.vpn.user": "Add VPN user",
"label.add.vxlan": "Add VXLAN",
"label.add.zone": "Dodaj strefę",
"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": "Dodawanie",
"label.adding.cluster": "Adding Cluster",
"label.adding.failed": "Dodanie nieudane",
"label.adding.pod": "Adding Pod",
"label.adding.processing": "Dodawanie",
"label.adding.succeeded": "Dodanie udane",
"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": "Agree",
"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": "Klucz API",
"label.api.version": "API Version",
"label.app.name": "CloudStack",
"label.apply": "Zastosuj",
"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": "Imię autora",
"label.autoscale": "AutoScale",
"label.autoscale.configuration.wizard": "AutoScale Configuration Wizard",
"label.availability": "Availability",
"label.availability.zone": "Availability Zone",
"label.availabilityZone": "availabilityZone",
"label.available": "Dostępne",
"label.available.public.ips": "Dostępne publiczne adresy IP",
"label.back": "Wstecz",
"label.bandwidth": "Przepustowość",
"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": "Broadcast domain range",
"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": "Zakończ",
"label.capacity": "Capacity",
"label.capacity.bytes": "Capacity Bytes",
"label.capacity.iops": "Capacity IOPS",
"label.certificate": "Certyfikat",
"label.change.affinity": "Change Affinity",
"label.change.ipaddress": "Change IP address for NIC",
"label.change.service.offering": "Change service offering",
"label.change.value": "Change value",
"label.character": "Character",
"label.chassis": "Chassis",
"label.checksum": "checksum",
"label.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": "Wyczyść",
"label.clear.list": "Wyczyść listę",
"label.close": "Zamknij",
"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": "Kod",
"label.community": "Społeczność",
"label.compute": "Compute",
"label.compute.and.storage": "Compute and Storage",
"label.compute.offering": "Compute offering",
"label.compute.offerings": "Compute Offerings",
"label.configuration": "Konfiguracja",
"label.configure": "Konfiguruj",
"label.configure.ldap": "Configure LDAP",
"label.configure.network.ACLs": "Configure Network ACLs",
"label.configure.sticky.policy": "Configure Sticky Policy",
"label.configure.vpc": "Konfiguruj VPC",
"label.confirm.password": "Potwierdź hasło",
"label.confirmation": "Potwierdzenie",
"label.congratulations": "Gratulacje!",
"label.conserve.mode": "Conserve mode",
"label.console.proxy": "Console proxy",
"label.console.proxy.vm": "Console Proxy VM",
"label.continue": "Kontynuuj",
"label.continue.basic.install": "Continue with basic installation",
"label.copying.iso": "Copying ISO",
"label.corrections.saved": "Poprawka zapisana",
"label.counter": "Counter",
"label.cpu": "CPU",
"label.cpu.allocated": "CPU Allocated",
"label.cpu.allocated.for.VMs": "CPU Allocated for VMs",
"label.cpu.limits": "Limit CPU",
"label.cpu.mhz": "CPU (w 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": "Stwórz projekt",
"label.create.ssh.key.pair": "Create a SSH Key Pair",
"label.create.template": "Create template",
"label.created": "Utworzono",
"label.created.by.system": "Utworzono przez 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": "Dziennie",
"label.data.disk.offering": "Data Disk Offering",
"label.date": "Data",
"label.day": "Day",
"label.day.of.month": "Dzień miesiąca",
"label.day.of.week": "Dzień tygodnia",
"label.dc.name": "DC Name",
"label.dead.peer.detection": "Dead Peer Detection",
"label.decline.invitation": "Decline invitation",
"label.dedicate": "Dedicate",
"label.dedicate.cluster": "Dedicate Cluster",
"label.dedicate.host": "Dedicate Host",
"label.dedicate.pod": "Dedicate Pod",
"label.dedicate.vlan.vni.range": "Dedicate VLAN/VNI Range",
"label.dedicate.zone": "Dedicate Zone",
"label.dedicated": "Dedykowany",
"label.dedicated.vlan.vni.ranges": "Dedicated VLAN/VNI Ranges",
"label.default": "Domyślnie",
"label.default.egress.policy": "Default egress policy",
"label.default.use": "Default Use",
"label.default.view": "Widok domyślny",
"label.delete": "Usuń",
"label.delete.BigSwitchBcf": "Remove BigSwitch BCF Controller",
"label.delete.BrocadeVcs": "Remove Brocade Vcs Switch",
"label.delete.F5": "Usuń F5",
"label.delete.NetScaler": "Delete NetScaler",
"label.delete.NiciraNvp": "Remove Nvp Controller",
"label.delete.OpenDaylight.device": "Delete OpenDaylight Controller",
"label.delete.PA": "Delete Palo Alto",
"label.delete.SRX": "Usuń 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": "Usuń projekt",
"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": "Delete VPN user",
"label.deleting.failed": "Usuwanie nieudane",
"label.deleting.processing": "Usuwanie....",
"label.deny": "Deny",
"label.deployment.planner": "Deployment planner",
"label.description": "Description",
"label.destination.physical.network.id": "Destination physical network ID",
"label.destination.zone": "Destination Zone",
"label.destroy": "Zniszcz",
"label.destroy.router": "Zniszcz router",
"label.destroy.vm.graceperiod": "Destroy VM Grace Period",
"label.detaching.disk": "Odłączanie dysku",
"label.details": "Szczegóły",
"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": "Disable provider",
"label.disable.vnmc.provider": "Disable VNMC provider",
"label.disable.vpc.offering": "Disable VPC offering",
"label.disable.vpn": "Wyłącz VPN",
"label.disabled": "Wyłączony",
"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": "Wielkość dysku",
"label.disk.size.gb": "Wielkość dysku (w 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": "Domena",
"label.domain.admin": "Administrator domeny",
"label.domain.details": "Domain details",
"label.domain.id": "ID domeny",
"label.domain.lower": "domain",
"label.domain.name": "Nazwa domeny",
"label.domain.router": "Domain router",
"label.domain.suffix": "DNS Domain Suffix (i.e., xyz.com)",
"label.done": "Skończono",
"label.double.quotes.are.not.allowed": "Double quotes are not allowed",
"label.download.progress": "Postęp w pobieraniu",
"label.drag.new.position": "Przenieś w nowe miejsce",
"label.duration.in.sec": "Duration (in sec)",
"label.dynamically.scalable": "Dynamically Scalable",
"label.edit": "Edytuj",
"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": "Edytuj szczegóły sieci",
"label.edit.project.details": "Zmień szczegóły projektu",
"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": "Edytuj VPC",
"label.egress.default.policy": "Egress Default Policy",
"label.egress.rule": "Egress rule",
"label.egress.rules": "Egress rules",
"label.elastic": "Elastyczny",
"label.elastic.IP": "Zmienne IP",
"label.elastic.LB": "Elastic LB",
"label.email": "Poczta",
"label.email.lower": "email",
"label.enable.autoscale": "Enable Autoscale",
"label.enable.host": "Enable Host",
"label.enable.network.offering": "Enable network offering",
"label.enable.provider": "Enable provider",
"label.enable.s3": "Enable S3-backed Secondary Storage",
"label.enable.swift": "Enable Swift",
"label.enable.vnmc.device": "Enable VNMC device",
"label.enable.vnmc.provider": "Enable VNMC provider",
"label.enable.vpc.offering": "Enable VPC offering",
"label.enable.vpn": "Włącz 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": "Błąd",
"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": "Extractable",
"label.extractable.lower": "extractable",
"label.f5": "F5",
"label.f5.details": "F5 details",
"label.failed": "Błąd",
"label.featured": "Polecane",
"label.fetch.latest": "Fetch latest",
"label.filterBy": "Filtrowanie wg",
"label.fingerprint": "FingerPrint",
"label.firewall": "Zapora",
"label.first.name": "Pierwsza nazwa",
"label.firstname.lower": "firstname",
"label.format": "Format",
"label.format.lower": "format",
"label.friday": "Piątek",
"label.full": "Full",
"label.full.path": "Pełna ścieżka",
"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": "Idź do punktu 2",
"label.go.step.3": "Idź do punktu 3",
"label.go.step.4": "Idź do punktu 4",
"label.go.step.5": "Idź do punktu 5",
"label.gpu": "GPU",
"label.group": "Grupa",
"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": "Grupa (opcjonalnie)",
"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": "Gość",
"label.guest.cidr": "Guest CIDR",
"label.guest.end.ip": "Guest end IP",
"label.guest.gateway": "Guest Gateway",
"label.guest.ip": "Guest IP Address",
"label.guest.ip.range": "Guest IP Range",
"label.guest.netmask": "Guest Netmask",
"label.guest.network.details": "Guest network details",
"label.guest.networks": "Guest networks",
"label.guest.start.ip": "Guest start IP",
"label.guest.traffic": "Guest Traffic",
"label.guest.traffic.vswitch.name": "Guest Traffic vSwitch Name",
"label.guest.traffic.vswitch.type": "Guest Traffic vSwitch Type",
"label.guest.type": "Rodzaj gości",
"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": "Pomoc",
"label.hide.ingress.rule": "Hide Ingress Rule",
"label.hints": "Podpowiedzi",
"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": "Informacje",
"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": "What is a cluster?",
"label.installWizard.addClusterIntro.title": "Let’s add a cluster",
"label.installWizard.addHostIntro.subtitle": "What is a host?",
"label.installWizard.addHostIntro.title": "Let’s add a host",
"label.installWizard.addPodIntro.subtitle": "What is a pod?",
"label.installWizard.addPodIntro.title": "Let’s add a pod",
"label.installWizard.addPrimaryStorageIntro.subtitle": "What is primary storage?",
"label.installWizard.addPrimaryStorageIntro.title": "Let’s add primary storage",
"label.installWizard.addSecondaryStorageIntro.subtitle": "What is secondary storage?",
"label.installWizard.addSecondaryStorageIntro.title": "Let’s add secondary storage",
"label.installWizard.addZone.title": "Add zone",
"label.installWizard.addZoneIntro.subtitle": "What is a zone?",
"label.installWizard.addZoneIntro.title": "Let’s add a zone",
"label.installWizard.click.launch": "Click the launch button.",
"label.installWizard.subtitle": "This tour will aid you in setting up your CloudStack™ installation",
"label.installWizard.title": "Hello and Welcome to 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": "Instancje",
"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": "Introduction to CloudStack™",
"label.invalid.integer": "Invalid Integer",
"label.invalid.number": "Invalid Number",
"label.invitations": "Zaproszenia",
"label.invite": "Zaproś",
"label.invite.to": "Zaproś do",
"label.invited.accounts": "Zaproszone konta",
"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": "IP Ranges",
"label.ipaddress": "IP Address",
"label.ips": "IP",
"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": "Item listing",
"label.japanese.keyboard": "Japanese keyboard",
"label.keep": "Zostaw",
"label.keep.colon": "Keep:",
"label.key": "Klucz",
"label.keyboard.language": "Keyboard language",
"label.keyboard.type": "Keyboard type",
"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": "Angielski",
"label.lang.french": "Francuski",
"label.lang.german": "German",
"label.lang.hungarian": "Hungarian",
"label.lang.italian": "Italian",
"label.lang.japanese": "Japoński",
"label.lang.korean": "Koreański",
"label.lang.norwegian": "Norwegian",
"label.lang.polish": "Polish",
"label.lang.russian": "Rosyjski",
"label.lang.spanish": "Hiszpiański",
"label.last.disconnected": "Last Disconnected",
"label.last.name": "Nazwisko",
"label.lastname.lower": "lastname",
"label.latest.events": "Latest events",
"label.launch": "Rozpocznij",
"label.launch.vm": "Launch VM",
"label.launch.zone": "Launch zone",
"label.lb.algorithm.leastconn": "Ostatnie połączenie",
"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": "Wpisz",
"label.ldap.port": "LDAP port",
"label.level": "Poziom",
"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": "Load Balancing",
"label.load.balancing.policies": "Load balancing policies",
"label.loading": "Wczytywanie",
"label.local": "Lokalne",
"label.local.file": "Local file",
"label.local.storage": "Pamięć lokalna",
"label.local.storage.enabled": "Enable local storage for User VMs",
"label.local.storage.enabled.system.vms": "Enable local storage for System VMs",
"label.login": "Zaloguj",
"label.logout": "Wyloguj",
"label.lun": "LUN",
"label.lxc.traffic.label": "LXC Traffic Label",
"label.make.project.owner": "Make account project owner",
"label.make.redundant": "Make redundant",
"label.manage": "Manage",
"label.manage.resources": "Manage Resources",
"label.managed": "Managed",
"label.management": "Management",
"label.management.ips": "Management IP Addresses",
"label.management.server": "Management Server",
"label.max.cpus": "Max. CPU cores",
"label.max.guest.limit": "Maksymalna liczba gości",
"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": "Maksymalna liczba publicznych adresów IP",
"label.max.secondary.storage": "Max. secondary (GiB)",
"label.max.snapshots": "Max. snapshots",
"label.max.templates": "Max. templates",
"label.max.vms": "Max. user VMs",
"label.max.volumes": "Max. volumes",
"label.max.vpcs": "Max. VPCs",
"label.maximum": "Maksimum",