summaryrefslogtreecommitdiff
path: root/lang/pl/language.php
blob: b25f9e9c5b44abfbc7cb349966cb3d043bc07568 (plain)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
<?php
// -*- coding:utf-8 -*-
$lang=Array(
"List of attached files" => "Pokaż dołączone pliki",
"name" => "Tytuł",
"uploaded" => "załadowano",
"size" => "wielkość",
"dls" => "dls",
"desc" => "opis",
"by" => "autor:",
"Upload file" => "Załaduj plik",
"comment" => "dodaj komentarz",
"attach" => "dołącz",
"categorize" => "klasyfikuj",
"show categories" => "pokaż kategorie",
"hide categories" => "ukryj kategorie",
"categorize this object" => "sklasyfikuj ten obiekt",
"Admin categories" => "Administruj kategoriami",
"Posted comments" => "Przysłane komentarze",
"Comments" => "Komentarze",
"Sort" => "Sortuj",
"Date" => "Data",
"Threshold" => "Próg",
"All" => "Wszystkie",
"Search" => "Szukaj",
"set" => "ustaw",
"Top" => "Góra",
"Vote" => "Głosuj",
"remove" => "usuń",
"edit" => "edytuj",
"reply to this" => "odpowiedz na ten",
"parent" => "nadrzędny",
"Score" => "Wynik",
"on" => "on",
"Comments below your current threshold" => "Komentarze poniżej twojego obecnego progu",
"prev" => "poprzednia",
"Page" => "Strona",
"next" => "Następna",
"Preview" => "Podgląd",
"Editing comment" => "Edytowanie komentarza",
"post new comment" => "dodaj nowy komentarz",
"Post new comment" => "Dodaj nowy komentarz",
"preview" => "podgląd",
"post" => "prześlij",
"Smileys" => "Buźki",
"Title" => "Tytuł",
"Comment" => "Komentarz",
"Posting comments" => "Dodawanie komentarzy",
"Use" => "Użyj",
"or" => "lub",
"for links" => "przy wstawianiu odsyłaczy.",
"HTML tags are not allowed inside comments" => "W komentarzach nie można stosować znaczników HTML.",
"Copyrights" => "Prawa autorskie",
"Year" => "Rok",
"Authors" => "Autorzy",
"add" => "dodaj",
"Error" => "Błąd",
"Go back" => "Powróć",
"Return to home page" => "Powróć do strony startowej",
"Broadcast message" => "Wyślij wiadomość",
"Group" => "Grupa",
"All users" => "Wszyscy użytkownicy",
"Priority" => "Priorytet",
"Lowest" => "Najniższy",
"Low" => "Niski",
"Normal" => "Normalny",
"High" => "Wysoki",
"Very High" => "Bardzo wysoki",
"send" => "wyślij",
"Subject" => "Temat",
"Compose message" => "Zredaguj wiadomość",
"To" => "To",
"CC" => "CC",
"BCC" => "BCC",
"Messages" => "Wiadomości",
"Read" => "Przeczytane",
"Unread" => "Nieprzeczytane",
"Flagged" => "Oznaczone",
"Unflagged" => "Odznaczone",
"1" => "1",
"2" => "2",
"3" => "3",
"4" => "4",
"5" => "5",
"Containing" => "Zawierające",
"filter" => "filtruj",
"delete" => "usuń",
"Mark as unread" => "Oznacz jako nieprzeczytane",
"Mark as read" => "Oznacz jako przeczytane",
"Mark as unflagged" => "Oznacz jako niezaznaczone",
"Mark as flagged" => "Oznacz jako zaznaczone",
"mark" => "oznacz",
"from" => "od",
"subject" => "temat",
"date" => "data",
"No messages to display" => "Brak wiadomości do wyświetlenia",
"Mailbox" => "Skrzynka odbiorcza",
"Compose" => "Utwórz",
"Broadcast" => "Roześlij",
"Read message" => "Czytaj wiadomość",
"Prev" => "Poprzednia",
"Next" => "Następna",
"Return to messages" => "Powróć do wiadomości",
"reply" => "odpowiedz",
"replyall" => "odpowiedz na wszystkie",
"Unflagg" => "Usuń zaznaczenie",
"Flag this message" => "Zaznacz tę wiadomość",
"From" => "From",
"Cc" => "Cc",
"Features" => "Składniki",
"General" => "Ogólne",
"Login" => "Logowanie",
"Wiki" => "Wiki",
"Image Galleries" => "Galerie obrazów",
"File Galleries" => "Galerie plików",
"Blogs" => "Blogi",
"Forums" => "Forum",
"Polls" => "Sondaże",
"RSS" => "RSS",
"Articles" => "Artykuły",
"FAQs" => "CZP",
"Trackers" => "Trackers",
"Webmail" => "Poczta",
"Directory" => "Katalog",
"User files" => "Pliki użytkownika",
"Blog settings" => "Ustawienia bloga",
"Home Blog (main blog)" => "Blog główny",
"Set prefs" => "Ustaw preferencje",
"Blog features" => "Składniki blogu",
"Rankings" => "Rankingi",
"Blog level comments" => "Blog level comments",
"Post level comments" => "Post level comments",
"Spellchecking" => "Sprawdzanie pisowni",
"Default ordering for blog listing" => "Domyślna kolejność wykazu blogów",
"Creation date (desc)" => "Data utworzenia (mal.)",
"Last modification date (desc)" => "Data ostaniej zmiany (mal.)",
"Blog title (asc)" => "Tytuł blogu (rosn.)",
"Number of posts (desc)" => "Liczba wiadomości (mal.)",
"Visits (desc)" => "Odwiedziny (mal.)",
"Activity (desc)" => "Aktywność (mal.)",
"In blog listing show user as" => "W wykazie blogu pokazuj użytkownika jako",
"Plain text" => "Zwykły tekst",
"Link to user information" => "Odsyłacz do danych użytkownika",
"User avatar" => "Emblemat użytkownika",
"Set features" => "Ustaw składniki",
"Blog listing configuration (when listing available blogs)" => "Konfiguracja wykazu blogów",
"title" => "tytuł",
"description" => "opis",
"creation date" => "data utworzenia",
"last modification time" => "czas ostatniej zmiany",
"user" => "użytkownik",
"posts" => "wiadomości",
"visits" => "odwiedziny",
"activity" => "aktywność",
"Change preferences" => "Zmień preferencje",
"Blog comments settings" => "Ustawienia komentarzy blogu",
"Default number of comments per page" => "Domyślna liczba komentarzy na stronie",
"Comments default ordering" => "Domyślne kryterium sortowania komentarzy",
"Points" => "Punkty",
"CMS settings" => "Ustawienia CMS",
"CMS features" => "Składniki CMS",
"Use templates" => "Używaj szablonów",
"Maximum number of articles in home" => "Maksymalna liczba artykułów na stronie startowej",
"Article comments settings" => "Ustawienia komentarzy do artykułów",
"Articles listing configuration" => "Konfiguracja wykazu artykułów",
"view" => "zobacz",
"Topic" => "Temat",
"Author" => "Autor",
"Reads" => "Wyświetlenia",
"Size" => "Wielkość",
"Img" => "Obrazek",
"Number of columns per page when listing categories" => "Liczba kolumn na stronie przy wyświetlaniu listy kategorii",
"Links per page" => "Odsyłacze na stronie",
"Validate URLs" => "Sprawdzaj URL",
"Method to open directory links" => "Sposób otwierania odsyłaczy w katalogu",
"replace current window" => "zastąp bieżące okno",
"new window" => "nowe okno",
"inline frame" => "ramka wewnętrz strony",
"FAQs settings" => "Ustawienia CZP",
"FAQ comments" => "Komentarze do CZP",
"Tiki sections and features" => "Sekcje i moduły Tiki",
"File galleries" => "Galerie plików",
"Submissions" => "Zgłoszenia",
"Chat" => "Czat",
"Shoutbox" => "Shoutbox",
"Newsreader" => "Czytnik news",
"Surveys" => "Ankiety",
"Quizzes" => "Quizy",
"Tikiwiki.org help" => "Pomoc Tikiwiki.org",
"Ephemerides" => "Ephemerides",
"Featured links" => "Featured links",
"Banners" => "Bannery",
"Full Text Search" => "Wyszukiwanie pełnotekstowe",
"Games" => "Gry",
"Search stats" => "Statystyka wyszukiwań",
"Newsletters" => "Newsletters",
"Live support system" => "System obsługi na bieżąco",
"HTML pages" => "Strony HTML",
"Workflow engine" => "Workflow engine",
"Mini calendar" => "Mini kalendarz",
"Categories" => "Kategorie",
"Calendar" => "Kalendarz",
"Show category path" => "Pokaż scieżkę kategorii",
"Display current category objects" => "Pokaż obiekty bieżącej kategorii",
"Content Features" => "Składniki zawartości",
"Hotwords" => "Gorące słowa",
"Edit templates" => "Edytuj szablony",
"Edit Templates" => "Edytuj szablony",
"Hotwords in new window" => "Gorące słowa w nowym oknie",
"Edit css" => "Edytuj css",
"Custom home" => "Custom home",
"Dynamic content system" => "System zawartości dynamicznej",
"Drawings" => "Rysunki",
"Allow smileys" => "Pozwalaj na buźki",
"Charts" => "Wykresy",
"Administration Features" => "Składniki administracyjne",
"Banning system" => "System banowania",
"Debugger Console" => "Konsola debuggera",
"Stats" => "Statystyki",
"Communications (send/receive objects)" => "Komunikacja (wyślij/odbierz obiekty)",
"Use PHPOpenTracker" => "Użyj PHPOpenTracker",
"XMLRPC API" => "XMLRPC API",
"Referer stats" => "Statystyki stron odsyłających",
"Referer Stats" => "Statystyki stron odsyłających",
"Contact" => "Kontakt",
"Theme control" => "Kontrola motywów",
"Theme Control" => "Kontrola motywów",
"User Features" => "Składniki użytkownika",
"User preferences screen" => "Preferencje użytkownika",
"Users can configure modules" => "Użytkownicy mogą konfigurować moduły",
"User bookmarks" => "Zakładki użytkownika",
"User menu" => "Menu użytkownika",
"User watches" => "Czuwania użytkownika",
"User messages" => "Wiadomości użytkownika",
"User tasks" => "Zadania użytkownika",
"User notepad" => "Notatnik użytkownika",
"General Layout options" => "Ogólne opcje układu strony",
"Left column" => "Lewa kolumna",
"Layout per section" => "Układ w sekcjach",
"Right column" => "Prawa kolumna",
"Admin layout per section" => "Administruj układem w sekcjach",
"Top bar" => "Pasek nagłówka",
"Bottom bar" => "Pasek stopki",
"Update" => "Uaktualnij",
"Home Gallery (main gallery)" => "Strona startowa galerii (galeria główna)",
"Galleries features" => "Składniki galerii",
"Use database to store files" => "Używaj bazy danych do przechowywania plików",
"Use a directory to store files" => "Używaj katalogu do przechowywania plików",
"Directory path" => "Ścieżka do katalogu",
"Uploaded filenames must match regex" => "Nazwy ładowanych plików muszą być zgodne z regex",
"Uploaded filenames cannot match regex" => "Nazwy ładowanych plików nie mogą być zgodne z regex",
"please read" => "proszę przeczytać",
"Gallery listing configuration" => "Konfiguracja wykazu galerii",
"Name" => "Nazwa",
"Description" => "Opis",
"Created" => "Utworzono",
"Last modified" => "Ostatnia zmiana",
"User" => "Użytkownik",
"Files" => "Pliki",
"Hits" => "Wywołania",
"File galleries comments settings" => "Ustawienia komentarzy składu plików",
"Forums settings" => "Ustawienia forum",
"Home Forum (main forum)" => "Strona startowa forum (forum główne)",
"Set home forum" => "Ustaw stronę startową forum",
"Accept wiki syntax" => "Przyjmij składnię wiki",
"Forum quick jumps" => "Szybkie skoki na forum",
"Ordering for forums in the forum listing" => "Kolejność forów na wykazie",
"Creation Date (desc)" => "Data utworzenia (mal.)",
"Topics (desc)" => "Tematy (mal.)",
"Threads (desc)" => "Wątki (mal.)",
"Last post (desc)" => "Ostatnia wiadomość (mal.)",
"Name (desc)" => "Nazwa (mal.)",
"Name (asc)" => "Nazwa (rosn.)",
"Forum listing configuration" => "Konfiguracja wykazu forów",
"Topics" => "Tematy",
"Posts" => "Wiadomości",
"Posts per day" => "Wiadomości dziennie",
"Last post" => "Ostatnia wiadomość",
"Visits" => "Odwiedziny",
"Image galleries" => "Galerie obrazów",
"Use database to store images" => "Używaj bazy danych do przechowywania obrazów",
"Use a directory to store images" => "Używaj katalogu do przechowywania obrazóws",
"Library to use for processing images" => "Biblioteka używana do prztwarzania obrazów",
"Uploaded image names must match regex" => "Nazwy ładowanych obrazów muszą być zgodne z regex",
"Uploaded image names cannot match regex" => "UNazwy ładowanych obrazów nie mogą być zgodne z regex",
"Remove images in the system gallery not being used in Wiki pages, articles or blog posts" => "Usuwaj obrazy z galerii systemowej, które nie są używane na stronach Wiki, w artykułach lub wiadomościach blogów",
"Images" => "Obrazy",
"Image galleries comments settings" => "Ustawienia komentarzy galerii obrazów",
"General preferences and settings" => "Ogólne preferencje i ustawienia",
"General Preferences" => "Preferencje ogólne",
"Theme" => "Motyw",
"Slideshows theme" => "Motyw Slideshows",
"Use URI as Home Page" => "Używaj URL jako strony startowej",
"Home page" => "Strona startowa",
"Blog" => "Blog",
"Image Gallery" => "Galeria obrazów",
"File Gallery" => "Skład plików",
"Forum" => "Forum",
"Language" => "Język",
"Use database for translation" => "Używaj bazy danych do tłumaczenia",
"Record untranslated" => "Rekord nieprzetłumaczony",
"OS" => "OS",
"Unix" => "Unix",
"Windows" => "Windows",
"Unknown/Other" => "Nieznany/Inny",
"General Settings" => "Ustawienia ogólne",
"Open external links in new window" => "Zewnętrzne odsyłacze otwieraj w nowym oknie",
"Display modules to all groups always" => "Zawsze wyświetlaj moduły wszystkim grupom",
"Use cache for external pages" => "Używaj cache dla stron zewnętrznych",
"Use cache for external images" => "Używaj cache dla obrazów zewnętrznych",
"Use direct pagination links" => "Używaj bezpośrednich odsyłaczy do stron",
"Display menus as folders" => "Wyświetlaj pozycje menu jako foldery",
"Use gzipped output" => "Używaj kompresji na wyjściu",
"Count admin pageviews" => "Zliczaj otwarcia stron przez administratora",
"Server name (for absolute URIs)" => "Nazwa serwera (dla absolutnych URI)",
"Browser title" => "Tytuł w przeglądarce",
"Wiki_Tiki_Title" => "Tytuł_Wiki_Tiki",
"Temporary directory" => "Katalog tymczasowy",
"Sender Email" => "Email nadawcy",
"Contact user" => "Użytkownik do kontaktu",
"contact feature disabled" => "składnik kontaktowy wyłączony",
"Maximum number of records in listings" => "Największa liczba rekordów w wykazie",
"Date and Time Formats" => "Formaty daty i czasu",
"Long date format" => "Długi format daty",
"Short date format" => "Krótki format daty",
"Long time format" => "Długi format czasu",
"Short time format" => "Krótki format czasu",
"Date and Time Format Help" => "Pomoc dot. formatu daty i czasu",
"Time Zone" => "Strefa czasowa",
"Server time zone" => "Strefa czasowa serwera",
"Displayed time zone" => "Wyświetlana strefa czasowa",
"Time Zone Map" => "Mapa stref czasowych",
"Change admin password" => "Zmień hasło administratora",
"New password" => "Nowe hasło",
"Repeat password" => "Powtórz hasło",
"Change password" => "Zmień hasło",
"Sections" => "Sekcje",
"User registration and login" => "Logowanie i rejestracja użytkownika",
"Authentication method" => "Metoda uwierzytelniania",
"Just Tiki" => "Tylko Tiki",
"Web Server" => "Serwer WWW",
"Tiki and PEAR::Auth" => "Tiki i PEAR::Auth",
"Tiki and HTTP Auth" => "Tiki i HTTP Auth",
"Use WebServer authentication for Tiki" => "Używaj serwera do uwierzytelniania w Tiki",
"Users can register" => "Użytkownicy mogą się rejestrować",
"Request passcode to register" => "Wymagaj kodu przepustki do rejestracji",
"Prevent automatic/robot registration" => "Zapobiegaj rejestracji przez automaty/roboty",
"Validate users by email" => "Sprawdzaj użytkowników za pomocą poczty elektronicznej",
"Remind passwords by email" => "Przypominaj hasła pocztą elektroniczną",
"Reg users can change theme" => "Zarejestrowani użytkownicy mogą zmienić motyw",
"Reg users can change language" => "Zarejestrowani użytkownicy mogą zmienić język",
"Store plaintext passwords" => "Przechowuj hasła jako zwykły tekst",
"Use challenge/response authentication" => "Używaj uwierzytelniania wezwanie/odpowiedź",
"Force to use chars and nums in passwords" => "Wymuszaj używanie liter i cyfr w haśle",
"Minimum password length" => "Najmniejsza długość hasła",
"Password invalid after days" => "Hasło traci ważność po upływie dni",
"Require HTTP Basic authentication" => "Wymagaj uwierzytelniania HTTP Basic",
"Allow secure (https) login" => "Pozwalaj na bezbieczne (https) logowanie",
"Require secure (https) login" => "Wymagaj bezpiecznego (https) logowania",
"HTTP server name" => "Nazwa serwera HTTP",
"HTTP port" => "Port HTTP",
"HTTP URL prefix" => "Prefix HTTP URL",
"HTTPS server name" => "Nazwa serwera HTTPS",
"HTTPS port" => "Port HTTPS",
"HTTPS URL prefix" => "Prefiks HTTPS URL",
"Remember me feature" => "Składnik Pamiętaj mnie",
"Disabled" => "Nieaktywne",
"Only for users" => "Tylko dla użytkowników",
"Users and admins" => "Użytkownicy i administratorzy",
"Duration:" => "Czas trwania:",
"minutes" => "minut",
"hour" => "godzina",
"hours" => "godzin",
"day" => "dzień",
"week" => "tydzień",
"PEAR::Auth" => "PEAR::Auth",
"Create user if not in Tiki?" => "Create user if not in Tiki?",
"Create user if not in Auth?" => "Create user if not in Auth?",
"Just use Tiki auth for admin?" => "Just use Tiki auth for admin?",
"LDAP Host" => "LDAP Host",
"LDAP Port" => "LDAP Port",
"LDAP Scope" => "LDAP Scope",
"LDAP Base DN" => "LDAP Base DN",
"LDAP User DN" => "LDAP User DN",
"LDAP User Attribute" => "LDAP User Attribute",
"LDAP User OC" => "LDAP User OC",
"LDAP Group DN" => "LDAP Group DN",
"LDAP Group Atribute" => "LDAP Group Atribute",
"LDAP Group OC" => "LDAP Group OC",
"LDAP Member Attribute" => "LDAP Member Attribute",
"LDAP Member Is DN" => "LDAP Member Is DN",
"LDAP Admin User" => "LDAP Admin User",
"LDAP Admin Pwd" => "LDAP Admin Pwd",
"Poll settings" => "Ustawienia sondażu",
"Poll comments settings" => "Ustawienia komentarzy sondażu",
"RSS feeds" => "Wstawki RSS",
"<b>Feed</b>" => "<b>Wstawka</b>",
"<b>enable/disable</b>" => "<b>włącz/wyłącz</b>",
"<b>Max number of items</b>" => "<b>Największa liczba pozycji</b>",
"Feed for Articles" => "Wstawka dla artykułów",
"Feed for Weblogs" => "Wstawka dla blogów",
"Feed for Image Galleries" => "Wstawka dla galerii obrazów",
"Feed for File Galleries" => "Wstawka dla składu plików",
"Feed for the Wiki" => "Wstawka dla Wiki",
"Feed for individual Image Galleries" => "Wstawka dla indywidualnych galerii obrazów",
"Feed for individual File Galleries" => "Wstawka dla indywidualnych składów plików",
"Feed for individual weblogs" => "Wstawka dla indywidualnych blogów",
"Feed for forums" => "Wstawka dla forów",
"Feed for individual forums" => "Wstawka dla indywidualnych forów",
"Set feeds" => "Ustaw wstawki",
"Path" => "Ścieżka",
"Quota (Mb)" => "Przydział (MB)",
"Use database to store userfiles" => "Używaj bazy danych do składowania plików użytkowników",
"Use a directory to store userfiles" => "Używaj katalogu do składowania plików użytkowników",
"Allow viewing HTML mails?" => "Pozwalaj na wyświetlanie poczty w HTML?",
"Maximum size for each attachment" => "Maksymalna wielkość każdego załącznika",
"Wiki settings" => "Ustawienia Wiki",
"Dumps" => "Zrzuty",
"Generate dump" => "Wykonaj zrzut",
"Download last dump" => "Pobierz ostatni zrzut",
"Create a tag for the current wiki" => "Utwórz znacznik dla bieżącej wiki",
"Tag Name" => "Nazwa znacznika",
"create" => "utwórz",
"Restore the wiki" => "Przywróć wiki",
"restore" => "przywróć",
"Remove a tag" => "Usuń znacznik",
"Wiki comments settings" => "Ustawienia komentarzy Wiki",
"Wiki attachments" => "Załączniki Wiki",
"Export Wiki Pages" => "Eksportuj strony Wiki",
"Export" => "Eksportuj",
"Remove unused pictures" => "Usuń nieużywane obrazki",
"Wiki Home Page" => "Strona startowa Wiki",
"Wiki Discussion" => "Dyskusja Wiki",
"Discuss pages on forums" => "Dyskutuj o stronach na forum",
"Wiki Page Names" => "Tytuły stron Wiki",
"full" => "full",
"strict" => "strict",
"Wiki page list configuration" => "Konfiguracja wykazu stron Wiki",
"Last modification date" => "Data ostatniej zmiany",
"Creator" => "Twórca",
"Last version" => "Ostatnia wersja",
"Status" => "Status",
"Versions" => "Wersje",
"Links" => "Odsyłacze",
"Wiki Features" => "Składniki Wiki",
"Sandbox" => "Brudnopis",
"Last changes" => "Ostatnie zmiany",
"Dump" => "Zrzut",
"Ranking" => "Ranking",
"History" => "Historia",
"List pages" => "Pokaż strony",
"Backlinks" => "Odsyłacze do tej strony",
"Like pages" => "Podobne strony",
"Undo" => "Cofnij",
"MultiPrint" => "MultiPrint",
"PDF generation" => "Tworzenie PDF",
"Warn on edit" => "Ostrzegaj przy edycji",
"mins" => "min.",
"Pictures" => "Obrazki",
"Use page description" => "Użyj opisu strony",
"Show page title" => "Pokaż tytuł strony",
"Cache wiki pages" => "Przechowuj strony wiki w cache",
"no cache" => "brak cache",
"minute" => "minuta",
"Footnotes" => "Footnotes",
"Users can lock pages (if perm)" => "Użytkownicy mogą blokować strony (jeśli pozw.)",
"Use WikiWords" => "Use WikiWords",
"Page creators are admin of their pages" => "Page creators are admin of their pages",
"Tables syntax" => "Składnia tabel",
"|| for rows" => "|| dla wierszy",
"\n for rows" => "\n dla wierszy",
"Automonospaced text" => "Automonospaced text",
"Wiki History" => "Historia Wiki",
"Maximum number of versions for history" => "Maximum number of versions for history",
"Never delete versions younger than days" => "Never delete versions younger than days",
"Set" => "Set",
"Copyright Management" => "Copyright Management",
"Enable Feature" => "Enable Feature",
"License Page" => "License Page",
"Submit Notice" => "Submit Notice",
"Administration" => "Administracja",
"Add or edit a rule" => "Add or edit a rule",
"Rule title" => "Rule title",
"Username regex matching" => "Username regex matching",
"IP regex matching" => "IP regex matching",
"Banned from sections" => "Banned from sections",
"Rule activated by dates" => "Rule activated by dates",
"Rule active from" => "Rule active from",
"Rule active until" => "Rule active until",
"Custom message to the user" => "Custom message to the user",
"save" => "zapisz",
"Find" => "Szukaj",
"Rules" => "Zasady",
"x" => "x",
"User/IP" => "Użytkownik/IP",
"Action" => "Akcja",
"No records found" => "Nie znaleziono rekordów",
"Admin Calendars" => "Administruj kalendarzami",
"Create/edit Calendars" => "Create/edit Calendars",
"Custom Locations" => "Custom Locations",
"Custom Categories" => "Custom Categories",
"Custom Languages" => "Custom Languages",
"no" => "no",
"Custom Priorities" => "Custom Priorities",
"yes" => "tak",
"Save" => "Zapisz",
"List of Calendars" => "List of Calendars",
"find" => "szukaj",
"ID" => "ID",
"loc" => "loc",
"cat" => "cat",
"lang" => "lang",
"prio" => "prio",
"action" => "Akcja",
"Current category" => "Bieżąca kategoria",
"top" => "góra",
"Edit this category:" => "Edytuj tę kategorię:",
"create new" => "utwórz nową",
"Add new category" => "Dodaj nową kategorię",
"Parent" => "Nadrzędna",
"Objects in category" => "Obiekty w kategorii",
"type" => "typ",
"Add objects to category" => "Dodaj obiekty do kategorii",
"page" => "strona",
"article" => "artykuł",
"blog" => "blog",
"directory" => "katalog",
"image gal" => "galeria obr.",
"file gal" => "galeria plik.",
"forum" => "forum",
"poll" => "ankieta",
"faq" => "czp",
"quiz" => "quiz",
"Admin chart items" => "Admin chart items",
"charts" => "wykresy",
"edit chart" => "edytuj wykres",
"Add or edit an item" => "Dodaj lub edytuj pozycję",
"new" => "new",
"update" => "update",
"Chart items" => "Chart items",
"URL" => "URL",
"No items defined yet" => "No items defined yet",
"Admin charts" => "Admin charts",
"Add or edit a chart" => "Add or edit a chart",
"Active" => "Active",
"Users can vote only one item from this chart per period" => "Users can vote only one item from this chart per period",
"Prevent users from voting same item more than one time" => "Prevent users from voting same item more than one time",
"Users can suggest new items" => "Users can suggest new items",
"Auto validate user suggestions" => "Auto validate user suggestions",
"Ranking shows" => "Ranking shows",
"All items" => "All items",
"Top 10 items" => "Top 10 items",
"Top 20 items" => "Top 20 items",
"Top 40 items" => "Top 40 items",
"Top 50 items" => "Top 50 items",
"Top 100 items" => "Top 100 items",
"Top 250 items" => "Top 250 items",
"Voting system" => "Voting system",
"Vote items" => "Vote items",
"Rank 1..5" => "Rank 1..5",
"Rank 1..10" => "Rank 1..10",
"Ranking frequency" => "Ranking frequency",
"Realtime" => "Realtime",
"Each 5 minutes" => "Each 5 minutes",
"Daily" => "Daily",
"Weekly" => "Weekly",
"Monthly" => "Monthly",
"Show Average" => "Show Average",
"Show Votes" => "Show Votes",
"Use Cookies for unregistered users" => "Use Cookies for unregistered users",
"Users can vote again after" => "Users can vote again after",
"Anytime" => "Anytime",
"5 minutes" => "5 minut",
"1 day" => "1 dzień",
"1 week" => "1 tydzień",
"1 month" => "1 miesiąc",
"Items" => "Items",
"Ranks" => "Ranks",
"No charts defined yet" => "No charts defined yet",
"Chat Administration" => "Chat Administration",
"Create/edit channel" => "Create/edit channel",
"Refresh rate" => "Refresh rate",
"half a second" => "half a second",
"second" => "second",
"seconds" => "sekund",
"Chat channels" => "Chat channels",
"active" => "active",
"refresh" => "odświeź",
"Admin templates" => "Administruj szablonami",
"Edit this template:" => "Edytuj ten szablon:",
"Create new template" => "Utwórz nowy szablon",
"use in cms" => "zastosuj w cms",
"use in wiki" => "zastosuj w wiki",
"use in newsletters" => "zastosuj do biuletynów",
"use in HTML pages" => "zastosuj na stronach HTML",
"template" => "szablon",
"Templates" => "Szablony",
"last modif" => "ost. zmiana",
"sections" => "sekcje",
"Admin content templates" => "Admin content templates",
"Create/edit cookies" => "Create/edit cookies",
"Cookie" => "Cookie",
"Upload Cookies from textfile" => "Upload Cookies from textfile",
"Upload from disk:" => "Upload from disk:",
"upload" => "upload",
"Cookies" => "Cookies",
"cookie" => "cookie",
"Admin cookies" => "Admin cookies",
"Remove all cookies" => "Remove all cookies",
"Edit drawings" => "Edit drawings",
"Available drawings" => "Available drawings",
"Ver" => "Ver",
"Admin dsn" => "Admin dsn",
"Create/edit dsn" => "Create/edit dsn",
"dsn" => "dsn",
"Admin external wikis" => "Admin external wikis",
"Create/edit extwiki" => "Create/edit extwiki",
"URL (use \$page to be replaced by the page name in the URL example: http://www.example.com/wiki/index.php?page=\$page)" => "URL (use \$page to be replaced by the page name in the URL example: http://www.example.com/wiki/index.php?page=\$page)",
"extwiki" => "extwiki",
"Admin Forums" => "Administruj forum",
"Edit this Forum:" => "Edytuj to forum:",
"Create New Forum" => "Utwórz nowe forum",
"There are individual permissions set for this forum" => "There are individual permissions set for this forum",
"Show description" => "Pokaż opis",
"Prevent flooding" => "Prevent flooding",
"Minimum time between posts" => "Minimum time between posts",
"secs" => "sekund",
"min" => "minut",
"Topics per page" => "Tematów na stronie",
"Section" => "Sekcja",
"None" => "Brak",
"Create new" => "Utwórz nową",
"Moderator user" => "Moderator user",
"Moderator group" => "Moderator group",
"Password protected" => "Password protected",
"No" => "Nie",
"Topics only" => "Tylko tematy",
"All posts" => "Wszystkie wiadomości",
"Forum password" => "Hasło forum",
"Default ordering for topics" => "Default ordering for topics",
"Replies (desc)" => "Odpowiedzi (mal.)",
"Reads (desc)" => "Wyświetlenia (mal.)",
"Default ordering for threads" => "Default ordering for threads",
"Date (desc)" => "Data (mal.)",
"Date (asc)" => "Data (rosn.)",
"Score (desc)" => "Wynik (mal.)",
"Title (desc)" => "Tytuł (mal.)",
"Title (asc)" => "Tytuł (rosn.)",
"Send this forums posts to this email" => "Send this forums posts to this email",
"Prune unreplied messages after" => "Prune unreplied messages after",
"Prune old messages after" => "Prune old messages after",
"days" => "dni",
"Topic list configuration" => "Topic list configuration",
"Replies" => "Odpowiedzi",
"author" => "autor",
"Threads can be voted" => "Threads can be voted",
"Forward messages to this forum to this email" => "Forward messages to this forum to this email",
"Add messages from this email to the forum" => "Add messages from this email to the forum",
"POP3 server" => "Serwer POP3",
"Password" => "Hasło",
"Use topic smileys" => "Use topic smileys",
"Show topic summary" => "Pokaż streszczenie tematu",
"User information display" => "User information display",
"avatar" => "emblemat",
"flag" => "flaga",
"user level" => "poziom użytkownika",
"email" => "email",
"online" => "online",
"Approval type" => "Typ zatwierdzania",
"All posted" => "Wszystkie nadesłane",
"Queue anonymous posts" => "Anonimowe wiadomości oczekują w kolejce",
"Queue all posts" => "Wszystkie wiadomości oczekują w kolejce",
"Attachments" => "Załączniki",
"No attachments" => "Brak załączników",
"Everybody can attach" => "Everybody can attach",
"Only users with attach permission" => "Only users with attach permission",
"Moderators and admin can attach" => "Moderators and admin can attach",
"Store attachments in:" => "Miejsce przechowywania załączników:",
"Database" => "Baza danych",
"Directory (include trailing slash)" => "Katalog (z ukośnikiem na końcu)",
"Max attachment size (bytes)" => "Max attachment size (bytes)",
"topics" => "tematy",
"coms" => "coms",
"users" => "użytkownicy",
"age" => "wiek",
"ppd" => "ppd",
"last post" => "ostatnia wiadomość",
"hits" => "wywołania",
"permissions" => "uprawnienia",
"Admin Hotwords" => "Admin Hotwords",
"Add Hotword" => "Add Hotword",
"Add" => "Dodaj",
"Word" => "Słowo",
"Admin HTML page dynamic zones" => "Admin HTML page dynamic zones",
"Admin HTML pages" => "Admin HTML pages",
"Edit this page" => "Edytuj tę stronę",
"View page" => "Zobacz stronę",
"Edit zone" => "Edytuj strefę",
"Zone" => "Strefa",
"Content" => "Content",
"Dynamic zones" => "Dynamic zones",
"zone" => "zone",
"content" => "content",
"Mass update" => "Mass update",
"Edit this HTML page:" => "Edit this HTML page:",
"Create new HTML page" => "Create new HTML page",
"Page name" => "Tytuł strony",
"Apply template" => "Użyj szablonu",
"none" => "brak",
"Type" => "Typ",
"Dynamic" => "Dynamic",
"Static" => "Static",
"Refresh rate (if dynamic) [secs]" => "Refresh rate (if dynamic) [secs]",
"Use {literal}{{/literal}ed id=name} or {literal}{{/literal}ted id=name} to insert dynamic zones" => "Use {literal}{{/literal}ed id=name} or {literal}{{/literal}ted id=name} to insert dynamic zones",
"Admin layout" => "Admin layout",
"layout options" => "layout options",
"Generate positions by hits" => "Generate positions by hits",
"List of featured links" => "List of featured links",
"url" => "url",
"position" => "position",
"Add Featured Link" => "Add Featured Link",
"Edit this Featured Link:" => "Edit this Featured Link:",
"Create new Featured Link" => "Create new Featured Link",
"Position" => "Pozycja",
"disables the link" => "disables the link",
"Link type" => "Link type",
"replace current page" => "replace current page",
"framed" => "framed",
"open new window" => "open new window",
"Mailin accounts" => "Mailin accounts",
"Add new mail account" => "Dodaj nowe konto pocztowe",
"Account name" => "Nazwa konta",
"POP server" => "Serwer POP",
"SMTP server" => "Serwer SMTP",
"Port" => "Port",
"SMTP requires authentication" => "SMTP wymaga uwierzytelnienia",
"Username" => "Nazwa użytkownika",
"wiki-get" => "wiki-get",
"wiki-put" => "wiki-put",
"wiki-append" => "wiki-append",
"wiki" => "wiki",
"Yes" => "Tak",
"User accounts" => "Konta użytkowników",
"account" => "konto",
"Admin Menu" => "Admin Menu",
"List menus" => "Wykaz menu",
"Edit this menu" => "Edytyj to menu",
"Preview menu" => "Podgląd menu",
"Edit menu options" => "Edytuj opcje menu",
"section" => "sekcja",
"option" => "opcja",
"Some useful URLs" => "Kilka pożytecznych URL-i",
"Home Page" => "Strona startowa",
"Home Blog" => "Blog",
"Home Image Gal" => "Galeria obrazów",
"Home Image Gallery" => "Galeria obrazów",
"Home File Gal" => "Skład plików",
"Home File Gallery" => "Skład plików",
"User preferences" => "Preferencje użytkownka",
"User prefs" => "Pref. użytkownka",
"Wiki Home" => "Strona startowa Wiki",
"List galleries" => "Pokaż galerie",
"List image galleries" => "Pokaż galerie obrazów",
"Upload image" => "Załaduj obraz",
"Upload" => "Załaduj",
"Gallery Rankings" => "Rankingi galerii",
"Browse a gallery" => "Przeglądaj galerię",
"Articles home" => "Artykuły",
"All articles" => "Wszystkie artykuły",
"List articles" => "Pokaż artykuły",
"Submit" => "Prześlij",
"List Blogs" => "Pokaż blogi",
"Create blog" => "Utwórz blog",
"Post" => "Post",
"View a forum" => "Zobacz forum",
"View a thread" => "Zobacz wątek",
"View a FAQ" => "Zobacz CZP",
"Take a quiz" => "Take a quiz",
"Quiz stats" => "Statystyki quizu",
"Stats for a Quiz" => "Statystyki quizu",
"Menu options" => "Opcje menu",
"Admin Menus" => "Administruj menu",
"Edit this Menu:" => "Edytuj to menu:",
"Create new Menu" => "Dodaj nowe menu",
"dynamic collapsed" => "dynamiczne zwinięte",
"dynamic extended" => "dynamiczne rozwinięte",
"fixed" => "stałe",
"Menus" => "Menu",
"options" => "opcje",
"Admin Modules" => "Administruj modułami",
"assign module" => "przypisz moduł",
"left modules" => "lewe moduły",
"right modules" => "prawe moduły",
"edit/create" => "edytuj/zmień",
"clear cache" => "wyczyść cache",
"\n<b>Note 1</b>: if you allow your users to configure modules then assigned\nmodules won't be reflected in the screen until you configure them\nfrom MyTiki->modules.<br />\n<b>Note 2</b>: If you assign modules to groups make sure that you\nhave turned off the option 'display modules to all groups always'\nfrom Admin->General\n" => "\n<b>Uwaga 1</b>: Jeśli użytkownik ma uprawnienia do konfigurowania modułów,\n wtedy przydzielone moduły nie będą pokazane na ekranie\n dopóki nie zostaną skonfigurowane w MyTiki->moduły.<br/>\n<b>Uwaga 2</b>: Jeśli przydzielisz moduły do grup upewnij się,\n że wyłączona została opcja 'zawsze wyświetlaj moduły wszystkim grupom'\nw Administracja->Ogólne\n",
"User Modules" => "Moduły użytkownika",
"assign" => "przydziel",
"Assign new module" => "Przydziel nowy moduł",
"Edit this assigned module:" => "Edytuj ten przydzielony moduł:",
"Module Name" => "Nazwa modułu",
"left" => "po lewej",
"right" => "po prawej",
"Order" => "Kolejność",
"Cache Time" => "Czas cache",
"Rows" => "Wiersze",
"Parameters" => "Parametry",
"Groups" => "Grupy",
"Assigned Modules" => "Przydzielone moduły",
"Left Modules" => "Moduły po lewej",
"order" => "kolejność",
"rows" => "wiersze",
"up" => "wyżej",
"Right Modules" => "Moduły po prawej",
"cache" => "cache",
"groups" => "grupy",
"down" => "niżej",
"Edit this user module:" => "Edytuj ten moduł użytkownika:",
"Use wysiwyg editor" => "Użyj edytora wysiwyg",
"Use normal editor" => "Użyj zwykłego edytora",
"Create new user module" => "Utwórz nowy moduł użytkownika",
"Data" => "Dane",
"create/edit" => "utwórz/edytuj",
"Objects that can be included" => "Obiekty, które można dołączyć",
"Available polls" => "Dostępne sondaże",
"use poll" => "użyj sondażu",
"Random image from" => "Wylosowany obrazek z",
"All galleries" => "Wszystkie galerie",
"use gallery" => "użyj galerii",
"Dynamic content blocks" => "Bloki z dynamiczną zawartością",
"use dynamic  content" => "użyj dynamicznej zawartości",
"RSS modules" => "Moduły RSS",
"use rss module" => "użyj modułu rss",
"use menu" => "użyj menu",
"Banner zones" => "Strefy bannerów",
"use banner zone" => "użyj strefy bannerów",
"Admin newsletter subscriptions" => "Administruj subskrypcjami biuletynu",
"list newsletters" => "pokaż biuletyny",
"admin newsletters" => "administruj biuletynami",
"send newsletters" => "wyślij biuletny",
"Newsletter" => "Biuletyn",
"Add a subscription newsletters" => "Add a subscription newsletters",
"Email" => "Email",
"Add all your site users to this newsletter (broadcast)" => "Add all your site users to this newsletter (broadcast)",
"Add users" => "Dodaj użytkowników",
"Subscriptions" => "Subskrypcje",
"valid" => "valid",
"subscribed" => "subscribed",
"Admin newsletters" => "Administruj biuletynami",
"Create/edit newsletters" => "Utwórz/edytuj biuletyny",
"There are individual permissions set for this newsletter" => "Ten biuletyn ma indywidualnie nadane uprawnienia",
"Users can subscribe any email addresss" => "Użytkownicy mogą podać dowolne adresy email",
"Frequency" => "Częstotliwość",
"editions" => "editions",
"last sent" => "last sent",
"subscriptions" => "subskrypcje",
"perms" => "uprawnienia",
"Mail notifications" => "Mail notifications",
"Add notification" => "Add notification",
"Event" => "Wydarzenie",
"A user registers" => "A user registers",
"A user submits an article" => "A user submits an article",
"use admin email" => "use admin email",
"event" => "wydarzenie",
"object" => "obiekt",
"Admin Polls" => "Administruj sondażami",
"List polls" => "Pokaż sondaże",
"Edit this poll" => "Edytuj ten sondaż",
"Preview poll" => "Podgląd sondażu",
"Edit or add poll options" => "Edytuj lub dodaj opcje sondażu",
"Option" => "Opcja",
"Poll options" => "Opcje sondażu",
"votes" => "głosy",
"Set last poll as current" => "Ustaw ostatni sondaż bieżącym",
"Close all polls but last" => "Zamknij wszystkie sondaże oprócz ostatniego",
"Activate all polls" => "Uaktywnij wszystkie sondaże",
"Create/edit Polls" => "Utwórz/edytuj sondaż",
"current" => "bieżąca",
"closed" => "zamknięta",
"PublishDate" => "Data opublikowania",
"at" => "o",
"Publish" => "Opublikuj",
"Admin RSS modules" => "Administruj modułami RSS",
"Content for the feed" => "Content for the feed",
"Edit this RSS module:" => "Edytuj ten moduł RSS:",
"Create new RSS module" => "Utwórz nowy moduł RSS",
"Rss channels" => "Rss channels",
"Last update" => "Last update",
"Create new structure" => "Utwórz nową strukturę",
"create new empty structure" => "utwórz nową pustą strukturę",
"Structures" => "Struktury",
"Destroy the structure leaving the wiki pages" => "Destroy the structure leaving the wiki pages",
"Destroy the structure and remove the pages" => "Destroy the structure and remove the pages",
"Structure" => "Struktura",
"export pages" => "eksportuj strony",
"dump tree" => "dump tree",
"Create structure from tree" => "Utwórz strukturę z drzewa",
"Use single spaces to indent structure levels" => "Używaj pojedyńczych spacji do wcięcia poziomów struktury",
"tree" => "drzewo",
"Edit survey questions" => "Edytuj pytania ankiety",
"List surveys" => "Pokaż ankiety",
"survey stats" => "statystyki ankiet",
"this survey stats" => "statystyki tej ankiety",
"edit this survey" => "edytuj tę ankietę",
"admin surveys" => "administruj ankietami",
"Create/edit questions for survey" => "Utwórz/edytuj pytania ankiety",
"Question" => "Pytanie",
"One choice" => "Jeden wybór",
"Multiple choices" => "Wiele wyborów",
"Short text" => "Krótki tekst",
"Rate (1..5)" => "Oceń (1..5)",
"Rate (1..10)" => "Oceń (1..10)",
"Options (if apply)" => "Opcje (jeśli potrzebne)",
"Questions" => "Pytania",
"question" => "pytanie",
"Admin surveys" => "Administruj ankietami",
"list surveys" => "pokaż ankiety",
"Edit this Survey:" => "Edytuj tę ankietę:",
"Create New Survey:" => "Utwórz nową ankietę:",
"There are individual permissions set for this survey" => "Dla tej ankiety ustanowione są indywidualne uprawnienia",
"stat" => "statystyka",
"open" => "otwarta",
"questions" => "pytania",
"Admin Topics" => "Administruj tematami",
"Create a new topic" => "Rozpocznij nowy temat",
"Topic Name" => "Tytuł tematu",
"Upload Image" => "Załaduj obrazek",
"List of topics" => "Lista tematów",
"Image" => "Obrazek",
"Active?" => "Aktywny?",
"Articles (subs)" => "Artykuły (subs)",
"Deactivate" => "Deaktywuj",
"Remove" => "Usuń",
"Activate" => "Aktywuj",
"Admin tracker" => "Admin tracker",
"List trackers" => "List trackers",
"Admin trackers" => "Admin trackers",
"Edit this tracker" => "Edit this tracker",
"View this tracker items" => "View this tracker items",
"Edit tracker fields" => "Edit tracker fields",
"checkbox" => "checkbox",
"text field" => "pole tekstowe",
"textarea" => "textarea",
"drop down" => "drop down",
"user selector" => "user selector",
"group selector" => "group selector",
"date and time" => "data i czas",
"Options (separated by commas used in dropdowns only)" => "Options (separated by commas used in dropdowns only)",
"Is column visible when listing tracker items?" => "Is column visible when listing tracker items?",
"Column links to edit/view item?" => "Column links to edit/view item?",
"Tracker fields" => "Tracker fields",
"is_main" => "is_main",
"Tbl vis" => "Tbl vis",
"Create/edit trackers" => "Create/edit trackers",
"There are individual permissions set for this tracker" => "There are individual permissions set for this tracker",
"Show status when listing tracker items?" => "Show status when listing tracker items?",
"Show creation date when listing tracker items?" => "Show creation date when listing tracker items?",
"Show last_modified date when listing tracker items?" => "Show last_modified date when listing tracker items?",
"Tracker items allow comments?" => "Tracker items allow comments?",
"Tracker items allow attachments?" => "Tracker items allow attachments?",
"trackers" => "trackers",
"created" => "utworzono",
"items" => "items",
"fields" => "fields",
"Admin groups" => "Administruj grupami",
"Add New Group" => "Dodaj nową grupę",
"Edit this group:" => "Edytuj tę grupę:",
"Desc" => "Rosn.",
"Include" => "Include",
"List of existing groups" => "Istniejące grupy",
"Includes" => "Zawiera",
"Permissions" => "Uprawnienia",
"assign_perms" => "przydziel",
"Admin users" => "Administruj użytkownikami",
"Add a new user" => "Dodaj nowego użytkownika",
"Pass" => "Hasło",
"Again" => "Ponownie",
"Batch upload (CSV file)" => "Załaduj wsadowo (plik CSV)",
"Overwrite" => "Nadpisz",
"Generate a password" => "Generuj hasło",
"Batch Upload Results" => "Batch Upload Results",
"Added users" => "Dodani użytkownicy",
"Rejected users" => "Odrzuceni użytkownicy",
"Reason" => "Powód",
"Users" => "Użytkownicy",
"Number of displayed rows" => "Liczba wyświetlanych wierszy",
"last_login" => "ostatnie zalogowanie",
"assign group" => "przydziel grupę",
"view info" => "zobacz informacje",
"Assign permissions to group" => "Przydziel uprawnienia do grupy",
"Group Information" => "Dane grupy",
"Create level" => "Utwórz stopień",
"all permissions in level" => "wszystkie uprawnienia stopnia",
"File gals" => "File gals",
"Image gals" => "Image gals",
"Comm" => "Comm",
"Cms" => "Cms",
"Content Templates" => "Content Templates",
"DSN" => "DSN",
"Workflow" => "Workflow",
"ExtWikis" => "ExtWikis",
"Live support" => "Live support",
"level" => "poziom",
"assgn" => "assgn",
"Assign user" => "Assign user",
"to groups" => "to groups",
"User Information" => "User Information",
"backlinks to" => "backlinks to",
"No backlinks to this page" => "No backlinks to this page",
"Backups" => "Kopie zapasowe",
"List of available backups" => "List of available backups",
"Filename" => "Nazwa pliku",
"Restoring a backup" => "Odtwarzanie kopii zapasowej",
"Warning!" => "Ostrzeżenie!",
"Restoring a backup destoys all the data in your Tiki database. All your tables will be replaced with the information in the backup." => "Restoring a backup destoys all the data in your Tiki database. All your tables will be replaced with the information in the backup.",
"Click here to confirm restoring" => "Click here to confirm restoring",
"Create new backup" => "Utwórz nową kopię zapasową",
"Creating backups may take a long time. If the process is not completed you will see a blank screen. If so you need to increment the maximum script execution time from your php.ini file" => "Creating backups may take a long time. If the process is not completed you will see a blank screen. If so you need to increment the maximum script execution time from your php.ini file",
"Click here to create a new backup" => "Click here to create a new backup",
"Upload a backup" => "Upload a backup",
"Upload backup" => "Upload backup",
"Edit Post" => "Edit Post",
"view blog" => "view blog",
"list blogs" => "list blogs",
"Note: if you want to use images please save the post first and you\nwill be able to edit/post images. Use the &lt;img&gt; snippet to include uploaded images in the textarea editor\nor use the image URL to include images using the WYSIWYG editor. " => "Note: if you want to use images please save the post first and you\nwill be able to edit/post images. Use the &lt;img&gt; snippet to include uploaded images in the textarea editor\nor use the image URL to include images using the WYSIWYG editor. ",
"Quicklinks" => "Skróty",
"Use ...page... to separate pages in a multi-page post" => "Use ...page... to separate pages in a multi-page post",
"Upload image for this post" => "Upload image for this post",
"Send trackback pings to:" => "Send trackback pings to:",
"(comma separated list of URIs)" => "(comma separated list of URIs)",
"Spellcheck" => "Spellcheck",
"save and exit" => "save and exit",
"Page generated in" => "Strona utworzona w ciągu",
"search category" => "search category",
"deep" => "deep",
"Objects" => "Objects",
"Browsing Gallery" => "Browsing Gallery",
"edit gallery" => "edit gallery",
"rebuild thumbnails" => "rebuild thumbnails",
"upload image" => "upload image",
"list gallery" => "list gallery",
"Sort Images by" => "Sort Images by",
"original size" => "original size",
"rotate right" => "rotate right",
"rotate" => "rotate",
"popup" => "popup",
"comments" => "komentarzy",
"Browsing Image" => "Browsing Image",
"return to gallery" => "return to gallery",
"edit image" => "edit image",
"last image" => "last image",
"Click to enlarge" => "Click to enlarge",
"first image" => "first image",
"smaller" => "smaller",
"bigger" => "bigger",
"prev image" => "prev image",
"Popup window" => "Popup window",
"popup window" => "popup window",
"next image" => "next image",
"Image Name" => "Image Name",
"Move image" => "Move image",
"move" => "move",
"You can view this image in your browser using" => "You can view this image in your browser using",
"You can include the image in an HTML or Tiki page using" => "You can include the image in an HTML or Tiki page using",
"admin" => "administruj",
"Calendars Panel" => "Calendars Panel",
"Hide Panels" => "Hide Panels",
"Navigation Panel" => "Navigation Panel",
"Refresh" => "Refresh",
"check / uncheck all" => "check / uncheck all",
"Tools Calendars" => "Tools Calendars",
"Group Calendars" => "Group Calendars",
"Tiki Calendars" => "Tiki Calendars",
"hide from display" => "hide from display",
"today" => "today",
"+1d" => "+1d",
"+7d" => "+7d",
"+1m" => "+1m",
"browse by" => "browse by",
"month" => "miesiąc",
"+" => "+",
"Edit Calendar Item" => "Edit Calendar Item",
"Modified" => "Modified",
"If you change the calendar selection, please refresh to get the appropriated list in Category, Location and people (if applicable to the calendar you choose)." => "If you change the calendar selection, please refresh to get the appropriated list in Category, Location and people (if applicable to the calendar you choose).",
"Category" => "Category",
"or create a new category" => "or create a new category",
"Location" => "Location",
"or create a new location" => "or create a new location",
"Organized by" => "Organized by",
"comma separated usernames" => "comma separated usernames",
"Participants" => "Participants",
"comma separated username:role" => "comma separated username:role",
"from the list" => "from the list",
"choose" => "choose",
"with role" => "with role",
"Chair" => "Chair",
"Required" => "Required",
"with roles" => "with roles",
"Optional" => "Optional",
"Start" => "Początek",
"End" => "koniec",
"Url" => "Url",
"Tentative" => "Tentative",
"Confirmed" => "Confirmed",
"Cancelled" => "Cancelled",
"duplicate" => "duplicate",
"You should first ask that a calendar is created, so you can create events attached to it." => "You should first ask that a calendar is created, so you can create events attached to it.",
"in" => "in",
"Change password enforced" => "Change password enforced",
"Old password" => "Stare hasło",
"Again please" => "Ponownie",
"change" => "zmień",
"Welcome to the Tiki Chat Rooms" => "Welcome to the Tiki Chat Rooms",
"Please select a chat channel" => "Please select a chat channel",
"Nickname" => "Nickname",
"enter chat room" => "enter chat room",
"Chatroom" => "Chatroom",
"Active Channels" => "Active Channels",
"Users in this channel" => "Users in this channel",
"Browser not supported" => "Browser not supported",
"Channel Information" => "Channel Information",
"Channel" => "Channel",
"Ratio" => "Ratio",
"Use :nickname:message for private messages" => "Use :nickname:message for private messages",
"Use [URL|description] or [URL] for links" => "Use [URL|description] or [URL] for links",
"Use (:name:) for smileys" => "Use (:name:) for smileys",
"PDF Settings" => "PDF Settings",
"Font" => "Font",
"Textheight" => "Textheight",
"Height of top Heading" => "Height of top Heading",
"Height of mid Heading" => "Height of mid Heading",
"Height of inner Heading" => "Height of inner Heading",
"tbheight" => "tbheight",
"imagescale" => "imagescale",
"Filter" => "Filtr",
"Select Wiki Pages" => "Wybierz strony Wiki",
"add page" => "dodaj stronę",
"remove page" => "usuń stronę",
"reset" => "resetuj",
"Create PDF" => "Utwórz PDF",
"Contact us" => "Napisz do nas",
"Send a message to us" => "Napisz do nas",
"Contact us by email" => "Napisz do nas email",
"Tiki Debugger Console" => "Tiki Debugger Console",
"Close" => "Zamknij",
"Current URL" => "Obecny URL",
"Command" => "Polecenie",
"exec" => "exec",
"Type <code>help</code> to get list of available commands" => "Type <code>help</code> to get list of available commands",
"Add a new site" => "Dodaj nową witrynę",
"Site added" => "Witryna została dodana",
"The following site was added and validation by admin may be needed before appearing on the lists" => "Następujące witryny zostały dodane, lecz mogą wymagać sprawdzenia przez administratora przed zamieszczeniem w katalogu",
"Country" => "Kraj",
"Add or edit a site" => "Dodaj lub edytuj witrynę",
"Is valid" => "Jest poprawna",
"Directory Administration" => "Administracja katalogiem",
"Statistics" => "Statystyki",
"invalid sites" => "witryny niepoprawne",
"valid sites" => "valid sites",
"There are" => "There are",
"categories" => "kategorie",
"Users have visited" => "Użytkownicy odwiedzili",
"sites from the directory" => "witryn z katalogu",
"Users have searched" => "Użytkownicy wyszukiwali",
"times from the directory" => "razy z katalogu",
"Menu" => "Menu",
"Admin sites" => "Administruj witrynami",
"Admin category relationships" => "Admin category relationships",
"Validate links" => "Sprawdź odsyłacze",
"Settings" => "Ustawienia",
"browse" => "przeglądaj",
"related" => "pokrewne",
"sites" => "witryny",
"validate" => "sprawdź",
"Admin directory categories" => "Administruj kategoriami katalogu",
"Parent category" => "Kategoria nadrzędna",
"go" => "dalej",
"Add a directory category" => "Dodaj kategorię katalogu",
"Edit this directory category" => "Edytuj tę kategorię katalogu",
"Children type" => "Children type",
"Most visited sub-categories" => "Najczęściej odwiedzane podkategorie",
"Category description" => "Opis kategorii",
"Random sub-categories" => "Dowolne podkategorie",
"Maximum number of children to show" => "Maximum number of children to show",
"Allow sites in this category" => "Allow sites in this category",
"Show number of sites in this category" => "Pokaż liczbę witryn w tej kategorii",
"Editor group" => "Grupa uprawniona do edycji",
"Subcategories" => "Podkategorie",
"cType" => "cType",
"allow" => "allow",
"count" => "count",
"editor" => "editor",
"relate" => "relate",
"Admin related categories" => "Administruj pokrewnymi kategoriami",
"Add a related category" => "Dodaj pokrewną kategorię",
"Mutual" => "Mutual",
"Related categories" => "Pokrewne kategorie",
"category" => "kategoria",
"all" => "wszystkie",
"Sites" => "Witryny",
"country" => "kraj",
"new sites" => "nowe witryny",
"cool sites" => "dobre witryny",
"add a site" => "dodaj witrynę",
"any" => "dowolne",
"in entire directory" => "w całym katalogu",
"in current category" => "w bieżącej kategorii",
"search" => "szukaj",
"Sort by" => "Sortuj wg",
"name (desc)" => "nazwa (mal.)",
"name (asc)" => "nazwa (rosn.)",
"hits (desc)" => "wywołania (mal.)",
"hits (asc)" => "wywołania (rosn.)",
"creation date (desc)" => "data utworzenia (mal.)",
"creation date (asc)" => "data utworzenia (rosn.)",
"last updated (desc)" => "last updated (desc)",
"last updated (asc)" => "last updated (asc)",
"sort" => "sortuj",
"Added" => "Dodano",
"Last updated" => "Last updated",
"Total categories" => "Ogółem kategorii",
"Total links" => "Ogółem odsyłaczy",
"Links to validate" => "Odsyłacze do sprawdzenia",
"Searches performed" => "Wykonane wyszukiwania",
"Total links visited" => "Ogółem odwiedzonych odsyłaczy",
"Directory ranking" => "Ranking ktalogu",
"Search results" => "Wyniki poszukiwania",
"Validate sites" => "Sprawdź witryny",
"Edit" => "Edytuj",
"list articles" => "pokaż artykuły",
"view articles" => "zobacz artykuły",
"Author Name" => "Imię autora",
"Article" => "Artykuł",
"Review" => "Review",
"Rating" => "Rating",
"Own Image" => "Własny obrazek",
"Use own image" => "Użyj własnego obrazka",
"Float text around image" => "Tekst opływa obrazek",
"Own image size x" => "Własny rozmiar obrazka x",
"Own image size y" => "Własny rozmiar obrazka y",
"Heading" => "Nagłówek",
"Body" => "Treść",
"Use ...page... to separate pages in a multi-page article" => "Użyj ...page... do podziału artykułu na strony",
"Publish Date" => "Data publikacji",
"Allow HTML" => "HTML dozwolony",
"Edit or create banners" => "Edit or create banners",
"List banners" => "Pokaż bannery",
"URL to link the banner" => "URL to link the banner",
"Client" => "Klient",
"Max impressions" => "Max impressions",
"create zone" => "create zone",
"Show the banner only between these dates" => "Show the banner only between these dates",
"From date" => "From date",
"To date" => "To date",
"Use dates" => "Używaj dat",
"Show the banner only in this hours" => "Show the banner only in this hours",
"to" => "to",
"Show the banner only on" => "Show the banner only on",
"Mon" => "Mon",
"Tue" => "Tue",
"Wed" => "Wed",
"Thu" => "Thu",
"Fri" => "Fri",
"Sat" => "Sat",
"Sun" => "Sun",
"Select ONE method for the banner" => "Select ONE method for the banner",
"Use HTML" => "Use HTML",
"HTML code" => "HTML code",
"Use image" => "Use image",
"Image:" => "Image:",
"Current Image" => "Current Image",
"Use image generated by URL (the image will be requested at the URL for each impression)" => "Use image generated by URL (the image will be requested at the URL for each impression)",
"Use text" => "Use text",
"Text" => "Text",
"save the banner" => "save the banner",
">Remove Zones (you lose entered info for the banner)" => ">Remove Zones (you lose entered info for the banner)",
"Edit Blog" => "Edit Blog",
"Current heading" => "Current heading",
"There are individual permissions set for this blog" => "There are individual permissions set for this blog",
"Number of posts to show" => "Number of posts to show",
"Allow other user to post in this blog" => "Allow other user to post in this blog",
"Use titles in blog posts" => "Use titles in blog posts",
"Allow search" => "Allow search",
"Allow comments" => "Allow comments",
"Blog heading" => "Blog heading",
"Edit Style Sheet" => "Edytuj arkusz stylu",
"Style Sheet" => "Arkusz stylu",
"save a custom copy" => "zapisz własną kopię",
"Cancel" => "Anuluj",
"choose a stylesheet" => "wybierz arkusz stylu",
"try" => "spróbuj",
"display" => "wyświetl",
"File with names appended by -{\$user} are modifiable, others are only duplicable and be used as model." => "File with names appended by -{\$user} are modifiable, others are only duplicable and be used as model.",
"Show Plugins Help" => "Show Plugins Help",
"Emphasis" => "Wyróżnienia",
"italics" => "kursywa (dwa apostrofy)",
"for" => "dla",
"bold" => "pogrubienie",
"both" => "obu",
"Lists" => "Listy",
"for bullet lists" => "dla list wypunktowanych",
"for numbered lists" => "dla list numerowanych",
"term" => "termin",
"definition" => "definicja",
"for definiton lists" => "dla list definicyjnych",
"Wiki References" => "Odsyłacze Wiki",
"JoinCapitalizedWords or use" => "ZlepWyrazyRozpoczynaneWielkimiLiterami lub użyj",
"page|desc" => "strona|opis",
"for wiki references" => "dla odsyłaczy wiki",
"SomeName" => "PewnaNazwa",
"prevents referencing" => "zapobiega tworzeniu odsyłacza",
"creates the editable drawing foo" => "tworzy edytowalny rysunek foo",
"External links" => "Odsyłacze zewnętrzne",
"use square brackets for an" => "użyj nawiasów kwadratowych dla",
"external link" => "odsyłaczya zewnętrznego",
"link_description" => "link_description",
"Multi-page pages" => "Strony wielostronicowe",
"use ...page... to separate pages" => "użyj ...page... do podziału stron",
"Misc" => "Różne",
"make_headings" => "tworzy_nagłówki",
"makes a horizontal rule" => "tworzy linię poziomą",
"text" => "tekst",
"underlines text" => "podkreśla tekst",
"Title bar" => "Pasek tytułu",
"creates a title bar" => "tworzy pasek tytułu",
"height width desc link and align are optional" => "height width desc link i align są opcjonalne",
"Non cacheable images" => "Obrazki nie są umieszczane w cache",
"displays an image" => "wyświetla obraz",
"Tables" => "Tabele",
"creates a table" => "tworzy tabelę",
"displays rss feed with id=n maximum=m items" => "wyświetla wstawkę rss o id=n i maximum=m pozycjach",
"Simple box" => "Prosta ramka",
"Box content" => "Zawartość ramki",
"Creates a box with the data" => "Tworzy ramkę z treścią",
"Dynamic content" => "Element dynamiczny",
"Will be replaced by the actual value of the dynamic content block with id=n" => "Will be replaced by the actual value of the dynamic content block with id=n",
"Colored text" => "Tekst kolorowy",
"some text" => "some text",
"Will display using the indicated HTML color" => "Will display using the indicated HTML color",
"Center" => "Wyśrodkowanie",
"Will display the text centered" => "Will display the text centered",
"Non parsed sections" => "Non parsed sections",
"data" => "dane",
"Prevents parsing data" => "Prevents parsing data",
"Show Text Formatting Rules" => "Show Text Formatting Rules",
"No description available" => "No description available",
"italic" => "kursywa",
"underline" => "podkreślenie",
"table" => "tabela",
"wiki link" => "odsyłacz wiki",
"heading1" => "nagłówek1",
"heading" => "nagłówek",
"title bar" => "pasek tytułowy",
"box" => "okienko",
"rss feed" => "rss feed",
"dynamic content" => "element dynamiczny",
"tagline" => "tagline",
"hr" => "hr",
"horizontal ruler" => "linia pozioma",
"center text" => "center text",
"center" => "wyśrodkowanie",
"colored text" => "tekst kolorowy",
"img nc" => "img nc",
"image" => "obrazek",
"special chars" => "znaki specjalne",
"special characters" => "znaki specjalne",
"Edit Image" => "Edit Image",
"Edit successful!" => "Edit successful!",
"The following image was successfully edited" => "The following image was successfully edited",
"Image Description" => "Image Description",
"Edit or ex/import Languages" => "Edit or ex/import Languages",
"Edit and create Languages" => "Edit and create Languages",
"Im- Export Languages" => "Im- Export Languages",
"Edit and create languages" => "Edit and create languages",
"Create Language" => "Create Language",
"Shortname" => "Shortname",
"like" => "like",
"Longname" => "Longname",
"Select the language to edit" => "Select the language to edit",
"Add a translation" => "Add a translation",
"Edit translations" => "Edit translations",
"Translate recorded" => "Translate recorded",
"Original" => "Original",
"translate" => "translate",
"reset table" => "reset table",
"previous page" => "previous page",
"next page" => "next page",
"Translation" => "Translation",
"Program dynamic content for block" => "Program dynamic content for block",
"Block description: " => "Block description: ",
"Create or edit content" => "Create or edit content",
"You are editing block:" => "You are editing block:",
"create new block" => "create new block",
"Return to block listing" => "Return to block listing",
"Publishing date" => "Data publikacji",
"Available content blocks" => "Available content blocks",
"Id" => "Id",
"Publishing Date" => "Data publikacji",
"Edit question options" => "Edit question options",
"list quizzes" => "list quizzes",
"quiz stats" => "quiz stats",
"this quiz stats" => "this quiz stats",
"edit this quiz" => "edit this quiz",
"admin quizzes" => "admin quizzes",
"Create/edit options for question" => "Create/edit options for question",
"points" => "points",
"Admin quizzes" => "Admin quizzes",
"Create/edit quizzes" => "Create/edit quizzes",
"There are individual permissions set for this quiz" => "There are individual permissions set for this quiz",
"Quiz can be repeated" => "Quiz can be repeated",
"Store quiz results" => "Store quiz results",
"Questions per page" => "Pytań na stronie",
"Quiz is time limited" => "Quiz is time limited",
"Maximum time" => "Maximum time",
"quizzes" => "quizzes",
"can_repeat" => "can_repeat",
"time_limit" => "time_limit",
"results" => "results",
"Edit quiz questions" => "Edit quiz questions",
"Create/edit questions for quiz" => "Create/edit questions for quiz",
"Reuse question" => "Reuse question",
"use" => "use",
"maxScore" => "maxScore",
"From Points" => "From Points",
"Answer" => "Answer",
"Results" => "Results",
"To Points" => "To Points",
"answer" => "answer",
"Admin structures" => "Admin structures",
"In parent page" => "In parent page",
"After page" => "After page",
"create page" => "create page",
"Use pre-existing page" => "Use pre-existing page",
"You will remove" => "You will remove",
"and its subpages from the structure, now you have two options:" => "and its subpages from the structure, now you have two options:",
"Remove only from structure" => "Remove only from structure",
"Remove from structure and remove page too" => "Remove from structure and remove page too",
"list submissions" => "list submissions",
"Available templates" => "Dostępne szablony",
"Template" => "Szablon",
"Template listing" => "Template listing",
"This page is being edited by" => "This page is being edited by",
"Proceed at your own peril" => "Proceed at your own peril",
"The SandBox is a page where you can practice your editing skills, use the preview feature to preview the appeareance of the page, no versions are stored for this page." => "Brudnopis to miejsce, gdzie można ćwiczyć umiejętność edycji stron i obserwować wygląd strony na podglądzie. Wersje tej strony nie są rejestrowane.",
"Copyright" => "Copyright",
"Title:" => "Tytuł:",
"Year:" => "Rok:",
"Authors:" => "Autorzy:",
"Import page" => "Importuj stronę",
"export all versions" => "eksportuj wszystkie wersje",
"Upload picture" => "Załaduj obraz",
"License" => "Licencja",
"Important" => "Ważne",
"Minor" => "Mała",
"cancel edit" => "anuluj edycję",
"Admin" => "Administruj",
"Admin ephemerides" => "Admin ephemerides",
"All ephemerides" => "All ephemerides",
"Browse" => "Przeglądaj",
"del" => "usuń",
"Admin FAQ" => "Administruj CZP",
"List FAQs" => "Pokaż CZP",
"View FAQ" => "Zobacz CZP",
"Edit this FAQ" => "Edytuj to CZP",
"new question" => "nowe pytanie",
"Edit FAQ questions" => "Edytuj pytania CZP",
"Use a question from another FAQ" => "Użyj pytania z innego CZP",
"FAQ questions" => "Pytania CZP",
"Suggested questions" => "Proponowane pytania",
"approve" => "zatwierdź",
"No suggested questions" => "Brak propozycji pytań",
"Create a file gallery" => "Utwórz galerię plików",
"Edit this file gallery:" => "Edytuj tę galerię plików:",
"There are individual permissions set for this file gallery" => "There are individual permissions set for this file gallery",
"Gallery is visible to non-admin users?" => "Gallery is visible to non-admin users?",
"Listing configuration" => "Listing configuration",
"icon" => "ikona",
"id" => "id",
"downloads" => "pobrania",
"Name-filename" => "Name-filename",
"Filename only" => "Filename only",
"Max description display size" => "Max description display size",
"Max Rows per page" => "Max Rows per page",
"Other users can upload files to this gallery" => "Other users can upload files to this gallery",
"You can access the file gallery using the following URL" => "You can access the file gallery using the following URL",
"Available File Galleries" => "Dostępne galerie plików",
"create new gallery" => "utwórz nową galerię",
"Actions" => "Akcje",
"configure listing" => "konfiguruj listę",
"Message queue for" => "Message queue for",
"back to forum" => "powróć do forum",
"Edit queued message" => "Edit queued message",
"topic" => "temat",
"make this a thread of" => "make this a thread of",
"None, this is a thread message" => "None, this is a thread message",
"summary" => "summary",
"normal" => "normal",
"announce" => "announce",
"hot" => "hot",
"sticky" => "sticky",
"locked" => "locked",
"no feeling" => "no feeling",
"frown" => "frown",
"exclaim" => "exclaim",
"idea" => "idea",
"mad" => "mad",
"neutral" => "neutral",
"sad" => "sad",
"happy" => "happy",
"wink" => "wink",
"save and approve" => "zapisz i zatwierdź",
"convert to topic" => "przekształć na temat",
"List of messages" => "Lista wiadomości",
"message" => "wiadomość",
"new topic" => "nowy temat",
"no summary" => "brak streszczenia",
"attachment" => "załącznik",
"No messages queued yet" => "No messages queued yet",
"reject" => "odrzuć",
"adm" => "adm",
"Reported messages for" => "Reported messages for",
"Reported by" => "Reported by",
"Activity completed" => "Activity completed",
"Process" => "Przetwórz",
"Activity" => "Aktywność",
"Admin process activities" => "Admin process activities",
"Add or edit an activity" => "Add or edit an activity",
"end" => "koniec",
"split" => "podziel",
"interactive" => "interactive",
"auto routed" => "auto routed",
"Add transitions" => "Add transitions",
"Add transition from:" => "Add transition from:",
"Add transition to:" => "Add transition to:",
"roles" => "roles",
"No roles associated to this activity" => "No roles associated to this activity",
"Add role" => "Add role",
"add new" => "add new",
"add role" => "add role",
"Process activities" => "Process activities",
"Int" => "Int",
"Routing" => "Routing",
"start" => "początek",
"switch" => "switch",
"join" => "join",
"standalone" => "standalone",
"Interactive" => "Interactive",
"Automatic" => "Automatic",
"Auto routed" => "Auto routed",
"Manual" => "Podręcznik",
"#" => "#",
"inter" => "inter",
"route" => "route",
"(no roles)" => "(no roles)",
"code" => "kod",
"No activities defined yet" => "No activities defined yet",
"Process Transitions" => "Process Transitions",
"List of transitions" => "List of transitions",
"From:" => "From:",
"Origin" => "Origin",
"No transitions defined yet" => "No transitions defined yet",
"Add a transition" => "Add a transition",
"Admin instance" => "Admin instance",
"Instance" => "Instance",
"Workitems" => "Workitems",
"exception" => "exception",
"completed" => "completed",
"aborted" => "aborted",
"Owner" => "Owner",
"Send all to" => "Send all to",
"Don't move" => "Don't move",
"Activities" => "Activities",
"Act status" => "Act status",
"run" => "run",
"Properties" => "Properties",
"Property" => "Property",
"Value" => "Value",
"Add property" => "Add property",
"value" => "value",
"Admin processes" => "Admin processes",
"Add or edit a process" => "Add or edit a process",
"This process is invalid" => "This process is invalid",
"Process Name" => "Nazwa procesu",
"ver:" => "wersja:",
"is active?" => "is active?",
"Or upload a process using this form" => "Or upload a process using this form",
"List of processes" => "Lista procesów",
"Inactive" => "Nieaktywny",
"version" => "wersja",
"act" => "akcja",
"val" => "wartość",
"active process" => "active process",
"invalid" => "invalid",
"invalid process" => "invalid process",
"valid process" => "valid process",
"new minor" => "new minor",
"new major" => "new major",
"activities" => "activities",
"No processes defined yet" => "No processes defined yet",
"Admin process roles" => "Admin process roles",
"Add or edit a role" => "Add or edit a role",
"Process roles" => "Process roles",
"No roles defined yet" => "No roles defined yet",
"Map users to roles" => "Map users to roles",
"Map" => "Map",
"Roles" => "Roles",
"Anonymous" => "Anonymous",
"map" => "map",
"Map groups to roles" => "Map groups to roles",
"Operation" => "Operation",
"Warning" => "Warning",
"No roles are defined yet so no roles can be mapped" => "No roles are defined yet so no roles can be mapped",
"List of mappings" => "List of mappings",
"Role" => "Role",
"No mappings defined yet" => "No mappings defined yet",
"Admin process sources" => "Admin process sources",
"select source" => "select source",
"Shared code" => "Shared code",
"cancel" => "cancel",
"Set next user" => "Set next user",
"Get property" => "Get property",
"Set property" => "Set property",
"Complete" => "Complete",
"Process form" => "Process form",
"Set Next act" => "Set Next act",
"If:SetNextact" => "If:SetNextact",
"Switch construct" => "Switch construct",
"Map process roles" => "Map process roles",
"admin processes" => "admin processes",
"admin activities" => "admin activities",
"admin roles" => "admin roles",
"edit this process" => "edit this process",
"Process:" => "Process:",
"Monitor activities" => "Monitor activities",
"List of activities" => "List of activities",
"proc" => "proc",
"auto" => "auto",
"int" => "int",
"routing" => "routing",
"Instances" => "Instances",
"run activity" => "run activity",
"monitor" => "monitor",
"monitor processes" => "monitor processes",
"monitor activities" => "monitor activities",
"monitor instances" => "monitor instances",
"monitor workitems" => "monitor workitems",
"Monitor instances" => "Monitor instances",
"List of instances" => "List of instances",
"status" => "status",
"act status" => "act status",
"running" => "running",
"No instances created yet" => "No instances created yet",
"Monitor processes" => "Monitor processes",
"Valid" => "Valid",
"Invalid" => "Invalid",
"Activs" => "Activs",
"processes" => "processes",
"being run" => "being run",
"exceptions" => "exceptions",
"Monitor workitems" => "Monitor workitems",
"List of workitems" => "List of workitems",
"instance" => "instance",
"Ins" => "Ins",
"time" => "time",
"stop" => "stop",
"activate" => "activate",
"graph" => "graph",
"export" => "eksportuj",
"User Activities" => "User Activities",
"process" => "process",
"user processes" => "user processes",
"user activities" => "user activities",
"user instances" => "user instances",
"User instances" => "User instances",
"Inst Status" => "Inst Status",
"exception instance" => "exception instance",
"exceptions instance" => "exceptions instance",
"send instance" => "send instance",
"run instance" => "run instance",
"abort instance" => "abort instance",
"grab instance" => "grab instance",
"release instance" => "release instance",
"No instances defined yet" => "No instances defined yet",
"User processes" => "User processes",
"Browsing Workitem" => "Browsing Workitem",
"Workitem information" => "Workitem information",
"Galleries" => "Galerie",
"Create a gallery" => "Utwórz galerie",
"Edit this gallery:" => "Edytuj tę galerię:",
"There are individual permissions set for this gallery" => "There are individual permissions set for this gallery",
"Images per row" => "Images per row",
"Thumbnails size X" => "Thumbnails size X",
"Thumbnails size Y" => "Thumbnails size Y",
"Available scales" => "Available scales",
"No scales available" => "No scales available",
"Add scaled images size X x Y" => "Add scaled images size X x Y",
"Other users can upload images to this gallery" => "Other users can upload images to this gallery",
"You can access the gallery using the following URL" => "You can access the gallery using the following URL",
"Available Galleries" => "Dostępne galerie",
" modified" => " modified",
"Imgs" => "Imgs",
"List" => "List",
"Im- Export languages" => "Im- Export languages",
"Select the language to Import" => "Select the language to Import",
"import" => "import",
"Select the language to Export" => "Select the language to Export",
"Import pages from a PHPWiki Dump" => "Import pages from a PHPWiki Dump",
"Path to where the dumped files are (relative to tiki basedir with trailing slash ex: dump/)" => "Path to where the dumped files are (relative to tiki basedir with trailing slash ex: dump/)",
"Overwrite existing pages if the name is the same" => "Overwrite existing pages if the name is the same",
"Previously remove existing page versions" => "Previously remove existing page versions",
"ver" => "wersja",
"excerpt" => "excerpt",
"result" => "wynik",
"locked by" => "zablokował",
"Save to notepad" => "Zapisz w notatniku",
"First page" => "Pierwsza strona",
"Previous page" => "Poprzednia strona",
"Next page" => "Następna strona",
"Last page" => "Ostatnia strona",
"Last Changes" => "Ostatnie zmiany",
"Today" => "Dziś",
"Days" => "Dni",
"Week" => "tydzień",
"Weeks" => "tygodnie",
"Last" => "Ostatnie",
"Month" => "Miesiąc",
"Search by Date" => "Szukaj wg daty",
"Found" => "Znaleziono",
"LastChanges" => "OstatnieZmiany",
"Ip" => "Ip",
"hist" => "historia",
"Pages like" => "Strony podobne do",
"No pages found" => "Nie znaleziono stron",
"edit new article" => "edytuj nowy artykuł",
"AuthorName" => "Autor",
"Create banner" => "Utwórz banner",
"Method" => "Method",
"Use Dates?" => "Use Dates?",
"Max Impressions" => "Max Impressions",
"Impressions" => "Impressions",
"Clicks" => "Clicks",
"create new blog" => "create new blog",
"Last Modified" => "Last Modified",
"Cache" => "Cache",
"Create or edit content block" => "Create or edit content block",
"Current ver" => "Obecna wersja",
"Next ver" => "Next ver",
"Old vers" => "Old vers",
"Program" => "Program",
"Edit this FAQ:" => "Edytuj to CZP:",
"Create New FAQ:" => "Utwórz nowe CZP:",
"Users can suggest questions" => "Użytkownicy mogą proponować pytania",
"Available FAQs" => "Dostępne CZP",
"Listing Gallery" => "Listing Gallery",
"upload file" => "upload file",
"Edit a file using this form" => "Edit a file using this form",
"Gallery Files" => "Gallery Files",
"move selected files" => "move selected files",
"delete selected files" => "usuń zaznaczone pliki",
"Move to" => "Move to",
"Filesize" => "Filesize",
"Dls" => "Dls",
"browse gallery" => "przeglądaj galerię",
"Gallery Images" => "Gallery Images",
"All games are from" => "All games are from",
"visit the site for more games and fun" => "visit the site for more games and fun",
"Upload a game" => "Upload a game",
"Upload a new game" => "Upload a new game",
"Flash binary (.sqf or .dcr)" => "Flash binary (.sqf or .dcr)",
"Thumbnail (if the game is foo.swf the thumbnail must be named foo.swf.gif or foo.swf.png or foo.swf.jpg)" => "Thumbnail (if the game is foo.swf the thumbnail must be named foo.swf.gif or foo.swf.png or foo.swf.jpg)",
"Edit game" => "Edit game",
"Played" => "Played",
"times" => "times",
"If you can't see the game then you need a flash plugin for your browser" => "If you can't see the game then you need a flash plugin for your browser",
"edit blog" => "edytuj blog",
"Blog Title" => "Tytuł blogu",
"edit new submission" => "edytuj nowe zgłoszenie",
"Approve" => "Zatwierdź",
"Survey stats" => "Statystyki ankiety",
"Pages" => "Strony",
"Last mod" => "Ostatnia zmiana",
"Last author" => "Ostatni autor",
"Last ver" => "Ostatnia wersja",
"Com" => "Com",
"Vers" => "Wersje",
"unlocked" => "unlocked",
"with checked" => "zaznaczone",
"ok" => "ok",
"Open operator console" => "Open operator console",
"Open client window" => "Open client window",
"Generate HTML" => "Generate HTML",
"Transcripts" => "Transcripts",
"Support tickets" => "Support tickets",
"Online operators" => "Online operators",
"Operator" => "Operator",
"stats" => "statystyki",
"Accepted requests" => "Accepted requests",
"since" => "since",
"transcripts" => "transcripts",
"Offline operators" => "Offline operators",
"Add an operator to the system" => "Add an operator to the system",
"Operators must be tiki users" => "Operators must be tiki users",
"set as operator" => "set as operator",
"Chat started" => "Chat started",
"User:" => "Użytkownik:",
"Operator:" => "Operator:",
"Request live support" => "Request live support",
"Request support" => "Request support",
"Open a support ticket instead" => "Open a support ticket instead",
"Your request is being processed" => "Your request is being processed",
"cancel request and exit" => "cancel request and exit",
"cancel request and leave a message" => "cancel request and leave a message",
"Live support:Console" => "Live support:Console",
"be online" => "be online",
"be offline" => "be offline",
"Support requests" => "Support requests",
"Requested" => "Requested",
"Accept" => "Accept",
"Join" => "Join",
"Support chat transcripts" => "Support chat transcripts",
"back to admin" => "back to admin",
"op" => "op",
"started" => "started",
"reason" => "reason",
"msgs" => "msgs",
"Transcript" => "Transcript",
"Mini Calendar" => "Mini Calendar",
"Prefs" => "Prefs",
"Import" => "Import",
"Upcoming events" => "Upcoming events",
"topic image" => "topic image",
"Remove old events" => "Remove old events",
"duration" => "duration",
"h" => "h",
"Add or edit event" => "Add or edit event",
"Duration" => "Duration",
"Mini Calendar: Preferences" => "Mini Calendar: Preferences",
"Preferences" => "Preferences",
"Calendar Interval in daily view" => "Calendar Interval in daily view",
"Start hour for days" => "Start hour for days",
"End hour for days" => "End hour for days",
"Reminders" => "Reminders",
"no reminders" => "no reminders",
"Import CSV file" => "Import CSV file",
"Admin topics" => "Administruj tematami",
"Or enter path or URL" => "lub podaj ścieżkę albo URL",
"add topic" => "dodaj temat",
"My Tiki" => "Moja Tiki",
"My Pages" => "Moje strony",
"My galleries" => "Moje galerie",
"My items" => "Moje pozycje",
"My messages" => "Moje wiadomości",
"My tasks" => "Moje zadania",
"My blogs" => "Moje blogi",
"User Pages" => "Strony użytkownika",
"User Galleries" => "User Galleries",
"Assigned items" => "Assigned items",
"at tracker" => "at tracker",
"Unread Messages" => "Unread Messages",
"Tasks" => "Zadania",
"User Blogs" => "User Blogs",
"MyTiki" => "MojaTiki",
"Bookmarks" => "Zakładki",
"Modules" => "Moduły",
"Notepad" => "Notatnik",
"MyFiles" => "MojePliki",
"My watches" => "My watches",
"Thanks for your subscription. You will receive an email soon to confirm your subscription. No newsletters will be sent to you until the subscription is confirmed." => "Thanks for your subscription. You will receive an email soon to confirm your subscription. No newsletters will be sent to you until the subscription is confirmed.",
"Your email address was removed from the list of subscriptors." => "Your email address was removed from the list of subscriptors.",
"Subscription confirmed!" => "Subskrypcja potwierdzona!",
"Subscribe to newsletter" => "Subskrybuj biuletyn",
"Email:" => "Email:",
"Subscribe" => "Subskrybuj",
"Select news group" => "Select news group",
"Back to servers" => "Back to servers",
"Msgs" => "Msgs",
"Newss from" => "Newss from",
"Back to groups" => "Back to groups",
"Save position" => "Save position",
"Reading article from" => "Reading article from",
"Back to list of articles" => "Powróć do wykazu artykułów",
"First" => "First",
"Newsgroup" => "Newsgroup",
"Configure news servers" => "Configure news servers",
"Select a news server to browse" => "Select a news server to browse",
"server" => "server",
"Add or edit a news server" => "Add or edit a news server",
"News server" => "News server",
"port" => "port",
"Notes" => "Notatki",
"quota" => "pojemność",
"Write a note" => "Napisz natatkę",
"No notes yet" => "Nie ma notatek",
"merge selected notes into" => "merge selected notes into",
"Reading note:" => "Reading note:",
"List notes" => "Pokaż notatki",
"Write note" => "Napisz natatkę",
"wiki create" => "wiki create",
"wiki overwrite" => "wiki overwrite",
"Assign permissions to " => "Przydziel uprawnienia do ",
"back" => "powróć",
"Current permissions for this object" => "Current permissions for this object",
"group" => "grupa",
"permission" => "uprawnienia",
"No individual permissions global permissions apply" => "Brak indywidalnego przydziału uprawnień, obowiązują uprawnienia globalne",
"Assign permissions to this object" => "Przydziel uprawnienia do tego obiektu",
"to group" => "to group",
"Published" => "Opublikowano",
"Votes" => "Głosów",
"Orphan Pages" => "Strony osierocone",
"rename" => "zmień nazwę",
"unlock" => "odblokuj",
"lock" => "zablokuj",
"history" => "historia",
"similar" => "podobne",
"undo" => "cofnij",
"slides" => "slides",
"discuss" => "dyskutuj",
"wiki help" => "pomoc wiki",
"add comment" => "dodaj komentarz",
"1 comment" => "1 komentarz",
"attach file" => "attach file",
"1 file attached" => "1 file attached",
"{\$atts_cnt} files attached" => "{\$atts_cnt} files attached",
"of" => "strony",
"Comparing versions" => "Comparing versions",
"Actual_version" => "Actual_version",
"Version" => "Wersja",
"Diff to version" => "Różnice do wersji",
"rollback" => "wycofaj",
"compare" => "porównaj",
"diff" => "różnice",
"source" => "źródło",
"Assign permissions to page" => "Przydziel uprawnienia do strony",
"Current permissions for this page" => "Obecne uprawnienia do tej strony",
"Assign permissions to this page" => "Przydziel uprawnienia do tej strony",
"Send email notifications when this page changes to" => "Send email notifications when this page changes to",
"add email" => "add email",
"Notifications" => "Notifications",
"Pick your avatar" => "Pick your avatar",
"Your current avatar" => "Your current avatar",
"Hide all" => "Hide all",
"Pick avatar from the library" => "Pick avatar from the library",
"Show all" => "Show all",
"random" => "random",
"Upload your own avatar" => "Upload your own avatar",
"File" => "File",
"vote" => "vote",
"Vote poll" => "Vote poll",
"Other Polls" => "Other Polls",
"Total" => "Total",
"By:" => "Autor:",
"on:" => "dnia:",
"reads" => "wyświetleń",
"posted by" => "posted by",
"Viewing blog post" => "Viewing blog post",
"Return to blog" => "Powróć do bloga",
"Permalink" => "Permalink",
"referenced by" => "referenced by",
"references" => "references",
"view comments" => "zobacz komentarze",
"print" => "drukuj",
"email this post" => "email this post",
"Print multiple pages" => "Drukuj wiele stron",
"Print Wiki Pages" => "Drukuj strony Wiki",
"clear" => "wyczyść",
"Quiz result stats" => "Quiz result stats",
"Quiz" => "Quiz",
"Time" => "Time",
"User answers" => "User answers",
"Stats for quizzes" => "Stats for quizzes",
"taken" => "wybrane",
"Av score" => "Śr. wynik",
"Av time" => "Śr. czas",
"Stats for quiz" => "Statystyki quizu",
"clear stats" => "wyczyść statystyki",
"score" => "wynik",
"details" => "szczegóły",
"Stats for this quiz Questions " => "Stats for this quiz Questions ",
"Average" => "Average",
"Top 10" => "Top 10",
"Top 20" => "Top 20",
"Top 50" => "Top 50",
"Top 100" => "Top 100",
"Print" => "Drukuj",
"Received articles" => "Otrzymane artykuły",
"Edit received article" => "Edytuj otrzymany artykuł",
"Use Image" => "Use Image",
"Image x size" => "Image x size",
"Image y size" => "Image y size",
"Image name" => "Image name",
"Image size" => "Image size",
"Accept Article" => "Zaakceptuj artykuł",
"accept" => "akceptuj",
"Received Articles" => "Otrzymane artykuły",
"Site" => "Witryna",
"Received pages" => "Otrzymane strony",
"Edit received page" => "Edytuj otrzymaną stronę",
"last" => "last",
"Register as a new user" => "Zarejestruj się jako nowy użytkownik",
"Your registration code:" => "Twój kod rejestracyjny:",
"Passcode to register (not your user password)" => "Passcode to register (not your user password)",
"Registration code" => "Registration code",
"register" => "zarejestruj się",
"I forgot my password" => "Nie pamiętam hasła",
"username" => "użytkownik",
"send me my password" => "send me my password",
"Return to HomePage" => "Powróć do strony startowej",
"Remove page" => "Usuń stronę",
"You are about to remove the page" => "You are about to remove the page",
"permanently" => "permanently",
"Remove all versions of this page" => "Remove all versions of this page",
"Rename page" => "Zmień nazwę strony",
"New name" => "Nowy tytuł",
"Rollback page" => "Wycofaj zmiany strony",
"to_version" => "do_wersji",
"searched" => "szukano",
"Search in" => "Szukaj w",
"galleries" => "galeriach",
"images" => "obrazach",
"files" => "plikach",
"forums" => "forach",
"faqs" => "czp",
"blogs" => "blogach",
"blog posts" => "wiadomościach blogów",
"articles" => "artykułach",
"Relevance" => "Trafność",
"No pages matched the search criteria" => "Nie znaleziono stron odpowiadających kryteriom wyszukiwania",
"Send blog post" => "Send blog post",
"A link to this post was sent to the following addresses:" => "A link to this post was sent to the following addresses:",
"Send post to this addresses" => "Send post to this addresses",
"List of email addresses separated by commas" => "List of email addresses separated by commas",
"Send newsletters" => "Send newsletters",
"The newsletter was sent to {\$sent} email addresses" => "The newsletter was sent to {\$sent} email addresses",
"This newsletter will be sent to {\$subscribers} email addresses." => "This newsletter will be sent to {\$subscribers} email addresses.",
"Prepare a newsletter to be sent" => "Prepare a newsletter to be sent",
"Send Newsletters" => "Send Newsletters",
"Sent editions" => "Sent editions",
"sent" => "wyślij",
"Send objects" => "Wyślij obiekty",
"Transmission results" => "Wyniki transmisji",
"Send objects to this site" => "Wyślij obiekty na tę witrynę",
"site" => "witryna",
"path" => "ścieżka",
"password" => "hasło",
"Send Wiki Pages" => "Wyślij strony Wiki",
"Send Articles" => "Wyślij artykuły",
"add article" => "dodaj artykuł",
"Tiki Shoutbox" => "Tiki Shoutbox",
"Post or edit a message" => "Prześlij lub edytuj wiadomość",
"backlinks" => "odsyłacze zwrotne",
"create pdf" => "utwórz pdf",
"pdf" => "pdf",
"monitor this page" => "monitoruj tę stronę",
"stop monitoring this page" => "zakończ monitorowanie tej strony",
"Created by" => "Utworzył(a)",
"last modification" => "ostatnia zmiana",
"To edit the copyright notices" => "To edit the copyright notices",
"click here" => "kliknij tutaj",
"The content on this page is licensed under the terms of the" => "The content on this page is licensed under the terms of the",
"The original document is available at" => "The original document is available at",
"Usage chart" => "Wykres użytkowania",
"Site Stats" => "Statystyki witryny",
"Started" => "Data startu",
"Days online" => "Liczba dni online",
"Total pageviews" => "Liczba wyświetlonych stron",
"Average pageviews per day" => "Średnia liczba wyświetleń stron dziennie",
"Best day" => "Najlepszy dzień",
"Worst day" => "Najgorszy dzień",
"pvs" => "wyśw.",
"Show chart for the last " => "Pokaż wykres za ostatnie ",
"days (0=all)" => "dni (0=wszystkie)",
"Wiki Stats" => "Statystyki Wiki",
"Wiki Pages" => "Strony Wiki",
"Size of Wiki Pages" => "Objętość stron Wiki",
"Average page length" => "Średnia wielkość strony",
"Average versions per page" => "Średnia liczba wersji strony",
"Visits to wiki pages" => "Odwiedziny stron wiki",
"Orphan pages" => "Strony osierocone",
"Average links per page" => "Średnia liczba odsyłaczy na stronie",
"Image galleries Stats" => "Statystyki galerii obrazów",
"Average images per gallery" => "Średnia liczba obrazów w galerii",
"Total size of images" => "Ogólna wielkość obrazów",
"Average image size" => "Średnia wielkość obrazu",
"Visits to image galleries" => "Odwiedziny galerii obrazów",
"File galleries Stats" => "Statystyki galerii plików",
"Average files per gallery" => "Średnia liczba plików w galerii",
"Total size of files" => "Ogólna wielkość plików",
"Mb" => "MB",
"Average file size" => "Średnia wielkość pliku",
"Visits to file galleries" => "Odwiedziny galerii plików",
"Downloads" => "Pobrania",
"CMS Stats" => "Statystyki CMS",
"Total reads" => "Całkowita liczba wyświetleń",
"Average reads per article" => "Średnia liczba wyświetleń artykułów",
"Total articles size" => "Ogólem wielkość artykułów",
"Average article size" => "Średnia wielkość artykułu",
"bytes" => "bajtów",
"Forum Stats" => "Statystyki forum",
"Total topics" => "Liczba tematów ogółem",
"Average topics per forums" => "Średnia liczba tematów na forum",
"Total threads" => "Liczba wątków ogółem",
"Average threads per topic" => "Średnia liczba wątków w temacie",
"Visits to forums" => "Odwiedziny forum",
"Blog Stats" => "Statystyki blogów",
"Weblogs" => "Weblogi",
"Total posts" => "Ogółem wiadomości",
"Average posts per weblog" => "Średnia liczba wiadomości w weblogu",
"Total size of blog posts" => "Ogółem wielkość wiadomości w blogach",
"Average posts size" => "Średnia wielkość wiadomości",
"Visits to weblogs" => "Odwiedziny weblogów",
"CMS" => "CMS",
"Poll Stats" => "Statystyki sondaży",
"Total votes" => "Ogółem głosów",
"Average votes per poll" => "Średnia liczba głosów w sondażu",
"Faq Stats" => "Statystyki CZP",
"Total questions" => "Liczba pytań ogółem",
"Average questions per FAQ" => "Średnia liczba pytań w CZP",
"User Stats" => "Statystyki użytkowników",
"Average bookmarks per user" => "Średnia liczba zakładek użytkownika",
"Quiz Stats" => "Statystyki quizów",
"Average questions per quiz" => "Średnia liczba pytań w quizie",
"Quizzes taken" => "Wybrane quizy",
"Average quiz score" => "Średni wynik quizu",
"Average time per quiz" => "Średni czas quizu",
"Stats for surveys" => "Statystyki ankiet",
"Survey" => "Ankieta",
"Last taken" => "Ostatnio wybrane",
"Stats for survey" => "Statystyki ankiet",
"Stats for this survey Questions " => "Statystyki pytań tej ankiety ",
"Time Left" => "Pozostały czas",
"send answers" => "prześlij odpowiedzi",
"Result" => "Wynik",
"Theme Control Center: categories" => "Theme Control Center: categories",
"Theme is selected as follows" => "Theme is selected as follows",
"If a theme is assigned to the individual object that theme is used." => "If a theme is assigned to the individual object that theme is used.",
"If not then if a theme is assigned to the object's category that theme is used" => "If not then if a theme is assigned to the object's category that theme is used",
"If not then a theme for the section is used" => "If not then a theme for the section is used",
"If none of the above was selected the user theme is used" => "If none of the above was selected the user theme is used",
"Finally if the user didn't select a theme the default theme is used" => "Finally if the user didn't select a theme the default theme is used",
"Control by Object" => "Control by Object",
"Control by Sections" => "Control by Sections",
"Assign themes to categories" => "Assign themes to categories",
"Assigned categories" => "Assigned categories",
"theme" => "theme",
"Theme Control Center: Objects" => "Theme Control Center: Objects",
"Control by category" => "Control by category",
"Assign themes to objects" => "Assign themes to objects",
"Object" => "Object",
"Assigned objects" => "Assigned objects",
"Theme Control Center: sections" => "Theme Control Center: sections",
"Control by Categories" => "Control by Categories",
"Assign themes to sections" => "Assign themes to sections",
"Assigned sections" => "Assigned sections",
"This is" => "This is",
"by the" => "by the",
"debug" => "debug",
"Upload File" => "Upload File",
"Browse gallery" => "Browse gallery",
"File Title" => "Nazwa pliku",
"File Description" => "Opis pliku",
"Now enter the file URL" => "Now enter the file URL",
" or upload a local file from your disk" => " or upload a local file from your disk",
"Batch upload" => "Batch upload",
"Errors detected" => "Wykryto błędy",
"The following file was successfully uploaded" => "The following file was successfully uploaded",
"You can download this file using" => "You can download this file using",
"You can include the file in an HTML/Tiki page using" => "You can include the file in an HTML/Tiki page using",
"You have to create a gallery first!" => "You have to create a gallery first!",
"use filename" => "use filename",
"Gallery" => "Galeria",
"Now enter the image URL" => "Now enter the image URL",
" or upload a local image from your disk" => " or upload a local image from your disk",
"Upload from disk" => "Załaduj z dysku",
"Thumbnail (optional, overrides automatic thumbnail generation)" => "Thumbnail (optional, overrides automatic thumbnail generation)",
"Upload successful!" => "Upload successful!",
"The following image was successfully uploaded" => "The following image was successfully uploaded",
"Thumbnail" => "Thumbnail",
"You can include the image in an HTML/Tiki page using" => "You can include the image in an HTML/Tiki page using",
"Restore defaults" => "Przywróć domyślne",
"User assigned modules" => "Moduły przypisane użytkownikowi",
"move to right column" => "przesuń do prawej kolumny",
"unassign" => "cofnij przypisanie",
"move to left column" => "przesuń do lewej kolumny",
"Assign module" => "Przypisz moduł",
"Module" => "Moduł",
"Column" => "Kolumna",
"User Bookmarks" => "Zakładki użytkownika",
"Current folder" => "Bieżący folder",
"Folders" => "Foldery",
"remove folder" => "usuń folder",
"remove bookmark" => "usuń zakładkę",
"refresh cache" => "odśwież cache",
"Admin folders and bookmarks" => "Administruj folderami i zakładkami",
"Add or edit folder" => "Dodaj lub edytuj folder",
"Add or edit a URL" => "Dodaj lub edytuj URL",
"Last login" => "Ostatnie zalogowanie",
"Real Name" => "Prawdziwe imię",
"Avatar" => "Emblemat",
"HomePage" => "StronaStartowa",
"Your personal Wiki Page" => "Twoja osobista strona Wiki",
"Send me a message" => "Przyślij mi wiadomość",
"User Preferences" => "Preferencje użytkownika",
"Is email public? (uses scrambling to prevent spam)" => "Adres email widoczny publicznie? (uses scrambling to prevent spam)",
"Edit CSS" => "Edytuj CSS",
"Pick user Avatar" => "Wybierz własny emblemat",
"Number of visited pages to remember" => "Liczba zapamiętywanych odwiedzanych stron",
"UTC" => "UTC",
"Local" => "Lokalna",
"User information" => "Dane użytkownika",
"private" => "prywatne",
"public" => "publiczne",
"Use dbl click to edit pages" => "Używaj podwójnego kliknięcia, aby edytować strony",
"Change your password" => "Zmień swoje hasło",
"Configure this page" => "Konfiguruj tę stronę",
"User Messages" => "Wiadomości użytkownika",
"Messages per page" => "Wiadomości na stronie",
"Allow messages from other users" => "Pozwalaj na wiadomości od innych użytkowników",
"Send me an email for messages with priority equal or greater than" => "Powiadom mnie pocztą elektroniczną w przypadku wiadomości o priorytecie większym lub równym",
"User Tasks" => "Zadania użytkownika",
"Tasks per page" => "Zadania na stronie",
"My pages" => "Moje strony",
"All tasks" => "Wszystkie zadania",
"mark as done" => "oznacz jako wykonane",
"open tasks" => "otwórz zadania",
"priority" => "priorytet",
"No tasks entered" => "Nie ma zadań",
"Add or edit a task" => "Dodaj lub edytuj zadanie",
"Start date" => "Data rozpoczęcia",
"Completed" => "Ukończono",
"Percentage completed" => "Stopień ukończenia",
"Watches" => "Watches",
"User Files" => "Pliki użytkownika",
"User Menu" => "Menu użytkownika",
"May need to refresh twice to see changes" => "May need to refresh twice to see changes",
"Add top level bookmarks to menu" => "Dodaj zakładki najwyższego poziomu do menu",
"delete selected" => "usuń zaznaczone",
"Pos" => "Pozycja",
"Mode" => "Tryb",
"replace window" => "zastąp okno",
"User_versions_for" => "User_versions_for",
"Read More" => "Czytaj dalej",
"Banner stats" => "Banner stats",
"Create new banner" => "Create new banner",
"Banner Information" => "Banner Information",
"Click ratio" => "Click ratio",
"Hours" => "Hours",
"Weekdays" => "Weekdays",
"mon" => "pn",
"tue" => "wt",
"wed" => "śr",
"thu" => "cz",
"fri" => "pt",
"sat" => "sb",
"sun" => "nd",
"Banner raw data" => "Banner raw data",
" on " => " on ",
"Activity=" => "Activity=",
"RSS feed" => "RSS feed",
"Edit blog" => "Edit blog",
"monitor this blog" => "monitor this blog",
"stop monitoring this blog" => "stop monitoring this blog",
"Description:" => "Description:",
"Find:" => "Szukaj:",
"Sort posts by:" => "Sort posts by:",
"read more" => "read more",
"pages" => "pages",
"Trackback pings" => "Trackback pings",
"URI" => "URI",
"Blog name" => "Tytuł blogu",
"Cached" => "Przechowywane w cache",
"This is a cached version of the page." => "To jest wersja strony przechowywana w cache.",
"Click here to view the Google cache of the page instead." => "Click here to view the Google cache of the page instead.",
"viewed" => "viewed",
"edit items" => "edit items",
"list charts" => "list charts",
"last chart" => "last chart",
"previous chart" => "previous chart",
"Chart created" => "Chart created",
"next chart" => "next chart",
"pos" => "pos",
"pre" => "pre",
"perm" => "perm",
"item" => "item",
"chg" => "chg",
"avg" => "avg",
"cool" => "cool",
"info/vote" => "info/vote",
"Next chart will be generated on" => "Next chart will be generated on",
"View or vote items not listed in the chart" => "View or vote items not listed in the chart",
"Select something to vote on" => "Select something to vote on",
"Item information" => "Item information",
"Chart" => "Chart",
"Item" => "Item",
"Permanency" => "Permanency",
"Previous" => "Previous",
"Dif" => "Dif",
"Best Position" => "Best Position",
"Vote this item" => "Vote this item",
"Highest" => "Highest",
"FAQ Questions" => "Pytania CZP",
"FAQ Answers" => "Odpowiedzi CZP",
"Q" => "P",
"A" => "O",
"Show suggested questions/suggest a question" => "Show suggested questions/suggest a question",
"Hide suggested questions" => "Hide suggested questions",
"Tiki forums" => "Fora Tiki",
"Show Post Form" => "Pokaż formularz wiadomości",
"Hide Post Form" => "Ukryj formularz wiadomości",
"Edit Forum" => "Edytuj forum",
"monitor this forum" => "monitor this forum",
"stop monitoring this forum" => "stop monitoring this forum",
"You have" => "You have",
" unread private messages" => " unread private messages",
"Your message has been queued for approval, the message will be posted after\na moderator approves it." => "Your message has been queued for approval, the message will be posted after\na moderator approves it.",
"You have to enter a title and text" => "You have to enter a title and text",
"smileys" => "buźki",
"Summary" => "Streszczenie",
"Attach file" => "Dołącz plik",
"moderator actions" => "moderator actions",
"move selected topics" => "move selected topics",
"unlock selected topics" => "unlock selected topics",
"lock selected topics" => "lock selected topics",
"delete selected topics" => "delete selected topics",
"merge" => "merge",
"merge selected topics" => "merge selected topics",
"reported messages:" => "reported messages:",
"queued messages:" => "wiadomości w kolejce:",
"Merge into topic" => "Merge into topic",
"mot" => "mot",
"replies" => "odpowiedzi",
"pts" => "pkt",
"No topics yet" => "Nie ma jeszcze tematów",
"Show posts" => "Pokaż wiadomości",
"Last hour" => "Last hour",
"Last 24 hours" => "Last 24 hours",
"Last 48 hours" => "Last 48 hours",
"Jump to forum" => "Jump to forum",
"stars" => "stars",
"monitor this topic" => "monitor this topic",
"stop monitoring this topic" => "stop monitoring this topic",
"user online" => "user online",
"user offline" => "user offline",
"prev topic" => "poprzedni temat",
"next topic" => "następny temat",
"Moderator actions" => "Moderator actions",
"Move to topic:" => "Move to topic:",
"reported:" => "reported:",
"queued:" => "queued:",
"this post was reported" => "this post was reported",
"report this post" => "report this post",
"private message" => "wiadomość prywatna",
"send email to user" => "wyślij email do użytkownika",
"Tracker" => "Tracker",
"Insert new item" => "Insert new item",
"Tracker Items" => "Tracker Items",
"Filters" => "Filters",
"checked" => "checked",
"unchecked" => "unchecked",
"last_modified" => "last_modified",
"Editing tracker item" => "Editing tracker item",
"Edit item" => "Edit item",
"View item" => "View item",
"Add a comment" => "Dodaj komentarz",
"posted on" => "posted on",
"Attach a file to this item" => "Attach a file to this item",
"No attachments for this item" => "No attachments for this item",
"settings" => "ustawienia",
"mailbox" => "skrzynka odbiorcza",
"compose" => "zredaguj",
"contacts" => "kontakty",
"pop" => "pop",
"View All" => "View All",
"Msg" => "Msg",
"Mark as Flagged" => "Mark as Flagged",
"sender" => "sender",
"back to mailbox" => "back to mailbox",
"full headers" => "full headers",
"normal headers" => "normal headers",
"reply all" => "reply all",
"forward" => "forward",
"Create/edit contacts" => "Create/edit contacts",
"Last Name" => "Nazwisko",
"Contacts" => "Kontakty",
"select from address book" => "wybierz z książki adresowej",
"cc" => "cc",
"bcc" => "bcc",
"Use HTML mail" => "Use HTML mail",
"The following addresses are not in your address book" => "The following addresses are not in your address book",
"First Name" => "Imię",
"add contacts" => "add contacts",
"Attachment 1" => "Załącznik 1",
"Attachment 2" => "Załącznik 2",
"Attachment 3" => "Załącznik 3",
"done" => "zrobione",
"Address book" => "Książka adresowa",
"Syntax" => "Składnia",
"Example" => "Przykład",
"Page generation debugging log" => "Page generation debugging log",
"Features state" => "Features state",
"features matched" => "features matched",
"Watchlist" => "Watchlist",
"Hi {\$mail_user} has sent you this link:" => "Hi {\$mail_user} has sent you this link:",
"Blog post:" => "Blog post:",
"at:" => "at:",
"Somebody or you tried to subscribe this email address at our site:" => "Somebody or you tried to subscribe this email address at our site:",
"To the newsletter:" => "To the newsletter:",
"In order to confirm your subscription you must access the following URL:" => "In order to confirm your subscription you must access the following URL:",
"A new message was posted to forum" => "A new message was posted to forum",
"Message" => "Wiadomość",
"Hi," => "Witaj,",
"A new message was posted to you at {\$mail_machine}" => "A new message was posted to you at {\$mail_machine}",
"The user" => "Użytkownik",
"registered at your site" => "registered at your site",
"Bye bye!" => "Bye bye!",
"This email address has been removed to the list of subscriptors of:" => "This email address has been removed to the list of subscriptors of:",
"Newsletter:" => "Newsletter:",
"Welcome to our newsletter!" => "Welcome to our newsletter!",
"This email address has been added to the list of subscriptors of:" => "This email address has been added to the list of subscriptors of:",
"You can always cancel your subscription using:" => "You can always cancel your subscription using:",
"Hi" => "Hi",
"someone from" => "someone from",
"requested a reminder of the password for the" => "requested a reminder of the password for the",
"since this is your registered email address we inform that the" => "since this is your registered email address we inform that the",
"password for this account is" => "password for this account is",
"A new article was submitted by {\$mail_user} to {\$mail_site} at {\$mail_date|bit_short_datetime}" => "A new article was submitted by {\$mail_user} to {\$mail_site} at {\$mail_date|bit_short_datetime}",
"You can edit the submission following this link:" => "You can edit the submission following this link:",
"Heading:" => "Heading:",
"Body:" => "Body:",
"Information:" => "Information:",
"you or someone registered this email address at" => "you or someone registered this email address at",
"If you want to be a registered user in this site you will have to use the following link to login for the first time:" => "If you want to be a registered user in this site you will have to use the following link to login for the first time:",
"Enjoy the site!" => "Enjoy the site!",
"New blog post: {\$mail_title} by {\$mail_user} at {\$mail_date|bit_short_datetime}" => "New blog post: {\$mail_title} by {\$mail_user} at {\$mail_date|bit_short_datetime}",
"View the blog at:" => "View the blog at:",
"If you don't want to receive these notifications follow this link:" => "If you don't want to receive these notifications follow this link:",
"The page {\$mail_page} was changed by {\$mail_user} at {\$mail_date|bit_short_datetime}" => "The page {\$mail_page} was changed by {\$mail_user} at {\$mail_date|bit_short_datetime}",
"You can edit the page following this link:" => "You can edit the page following this link:",
"Comment:" => "Comment:",
"Diff:" => "Diff:",
"The new page content is:" => "The new page content is:",
"Banning" => "Banning",
"Admin drawings" => "Admin drawings",
"Mail-in" => "Mail-in",
"Content templates" => "Content templates",
"Wiki Import dump" => "Wiki Import dump",
"phpinfo" => "phpinfo",
"External wikis" => "External wikis",
"Syntax highlighting" => "Syntax highlighting",
"home" => "strona startowa",
"chat" => "czat",
"contact us" => "kontakt",
"games" => "gry",
"calendar" => "kalendarz",
"debugger console" => "debugger console",
"MyTiki (click!)" => "MojaTiki (kliknij!)",
"My files" => "Moje pliki",
"User activities" => "Aktywność użytkownika",
"last changes" => "ostatnie zmiany",
"dump" => "zrzut",
"rankings" => "rankingi",
"list pages" => "pokaż strony",
"orphan pages" => "strony osierocone",
"sandbox" => "brudnopis",
"received pages" => "strony otrzymane",
"structures" => "struktury",
"Image Gals" => "Galerie obrazów",
"System gallery" => "Galeria systemowa",
"Articles Home" => "Artykuły",
"Submit article" => "Dodaj artykuł",
"View submissions" => "Zobacz zgłoszenia",
"Edit article" => "Edytuj artykuł",
"Send articles" => "Wyślij artykuły",
"List blogs" => "Pokaż blogi",
"Create/Edit Blog" => "Utwórz/Edytuj blog",
"Admin posts" => "Admin posts",
"List forums" => "Pokaż fora",
"Admin forums" => "Administruj forami",
"Submit a new link" => "Zgłoś nowy odsyłacz",
"Browse Directory" => "Przeglądaj katalog",
"Admin directory" => "Administruj katalogiem",
"Admin FAQs" => "Administruj CZP",
"List Quizzes" => "Pokaż quizy",
"Admin quiz" => "Administruj quizami",
"List Trackers" => "List Trackers",
"List Surveys" => "Pokaż ankiety",
"Admin (click!)" => "Administruj (kliknij!)",
"Edit languages" => "Edytuj języki",
"Click here to manage your personal menu" => "Kliknij tutaj, aby zarządzać menu osobistym",
"Recently visited pages" => "Ostatnio odwiedzone strony",
"Received objects" => "Otrzymane obiekty",
"Pages:" => "Strony:",
"Last Sites" => "Ostatnie witryny",
"Directory Stats" => "Statystyki katalogu",
"Sites to validate" => "Witryny do sprawdzenia",
"Searches" => "Wyszukiwania",
"Visited links" => "Odwiedzone witryny",
"Top Sites" => "Najlepsze witryny",
"Top topics" => "Najlepsze tematy",
"Last forum topics" => "Ostatnie tematy na forum",
"Most commented forums" => "Najbardziej komentowane forum",
"Most read topics" => "Najczęściej czytane tematy",
"Most visited forums" => "Najczęściej odwiedzane fora",
"Google Search" => "Szukaj z Google",
"Last blog posts" => "Ostatnie wiadomości blogów",
"Last Created blogs" => "Ostatnio utworzone blogi",
"Last Created FAQs" => "Ostatnio utworzone CZP",
"Last Created Quizzes" => "Ostatnio utworzone quizy",
"Last modified file galleries" => "Ostatnio zmienione galerie plików",
"Last Files" => "Ostatnie pliki",
"Last galleries" => "Ostatnie galerie",
"Last Modified Items" => "Ostatnio zmienione pozycje",
"Last Modified blogs" => "Ostatnio zmienione blogi",
"Last submissions" => "Ostatnie zgłoszenia",
"Last Items" => "Ostatnie pozycje",
"Online users" => "Użytkownicy online",
"We have" => "Jest",
"online users" => "użytkowników online",
"logged as" => "zalogowany jako",
"Logout" => "Wyloguj się",
"pass" => "hasło",
"login" => "zaloguj się",
"Remember me" => "Zapamiętaj mnie",
"I forgot my pass" => "Nie pamiętam hasła",
"standard" => "standard",
"secure" => "bezpieczny",
"stay in ssl mode" => "pozostań w trybie ssl",
"Tiki Logo" => "Logo Tiki",
"new messages" => "nowe wiadomości",
"new message" => "nowa wiadomość",
"You have 0 new messages" => "Masz 0 nowych wiadomości",
"Waiting Submissions" => "Oczekujące zgłoszenia",
"submissions waiting to be examined" => "zgłoszeń oczekujących na rozpatrzenie",
"Old articles" => "Starsze artykuły",
"Quick edit a Wiki page" => "Quick edit a Wiki page",
"Random Pages" => "Wylosowana strona",
"in:" => "w:",
"Entire Site" => "Cała witryna",
"Blog Posts" => "Wiadomości blogów",
"Search Wiki PageName" => "Szukaj TytułuStrony Wiki",
"Since your last visit" => "Od Twojej ostatniej wizyty",
"Since your last visit on" => "Od Twojej ostatniej wizyty",
"new images" => "nowe obrazy",
"wiki pages changed" => "zmienione strony wiki",
"new files" => "nowe pliki",
"new comments" => "nowe komentarze",
"new users" => "nowi użytkownicy",
"Most Active blogs" => "Najbardziej aktywne blogi",
"Top articles" => "Najlepsze artykuły",
"Top File Galleries" => "Najlepsze galerie plików",
"Top Files" => "Najlepsze pliki",
"Top games" => "Najlepsze gry",
"Top galleries" => "Najlepsze galerie",
"Top Images" => "Najlepsze obrazy",
"Top Pages" => "Najlepsze strony",
"Top Quizzes" => "Najlepsze quizy",
"Most visited blogs" => "Najczęściej odwiedzane blogi",
"Top Visited FAQs" => "Najczęściej odwiedzane CZP",
"online user" => "użytkownik online",
"Send a message to" => "Wyślij wiadomość do",
"Send message" => "Wyślij wiadomość",
"More info about" => "Więcej informacji o",
"idle" => "pusty",
"Missing title or body when trying to post a comment" => "Missing title or body when trying to post a comment",
"The copyright management feature is not enabled." => "The copyright management feature is not enabled.",
"You do not have permission to use this feature." => "You do not have permission to use this feature.",
"You must supply all the information, including title and year." => "You must supply all the information, including title and year.",
"You are not logged in" => "Musisz się zalogować",
"This feature is disabled" => "This feature is disabled",
"Permission denied" => "Brak dostępu",
"Invalid user" => "Nieuprawniony użytkownik",
"Message will be sent to: " => "Wiadomość zostanie wysłana do: ",
"ERROR: Either the subject or body must be non-empty" => "ERROR: Either the subject or body must be non-empty",
"ERROR: No valid users to send the message" => "ERROR: No valid users to send the message",
"No more messages" => "Nie ma więcej wiadomości",
"You dont have permission to use this feature" => "Nie masz uprawnień do korzystania z tego składnika",
"TOP" => "TOP",
"child categories" => "child categories",
"objects in category" => "objects in category",
"No chart indicated" => "No chart indicated",
"Upload failed" => "Upload failed",
"Feature disabled" => "Feature disabled",
"No page indicated" => "No page indicated",
"The passwords dont match" => "The passwords dont match",
"Password should be at least" => "Password should be at least",
"characters long" => "characters long",
"Tag already exists" => "Tag already exists",
"Tag not found" => "Tag not found",
"Unexistant link" => "Unexistant link",
"No menu indicated" => "No menu indicated",
"No newsletter indicated" => "No newsletter indicated",
"No poll indicated" => "No poll indicated",
"No survey indicated" => "No survey indicated",
"No image uploaded" => "No image uploaded",
"No tracker indicated" => "No tracker indicated",
"Group already exists" => "Group already exists",
"The file is not a CSV file or has not a correct syntax" => "The file is not a CSV file or has not a correct syntax",
"No records were found. Check the file please!" => "No records were found. Check the file please!",
"User login is required" => "User login is required",
"Password is required" => "Hasło jest konieczne",
"Email is required" => "Adres email jest konieczny",
"User is duplicated" => "User is duplicated",
"User already exists" => "User already exists",
"Unknown group" => "Unknown group",
"Group doesnt exist" => "Grupa nie istnieje",
"Unknown user" => "Unknown user",
"User doesnt exist" => "User doesnt exist",
"Permission denied you cannot view backlinks for this page" => "Permission denied you cannot view backlinks for this page",
"The page cannot be found" => "The page cannot be found",
"Permission denied you cannot post" => "Permission denied you cannot post",
"Permission denied you cannot edit this post" => "Permission denied you cannot edit this post",
"You can't post in any blog maybe you have to create a blog first" => "You can't post in any blog maybe you have to create a blog first",
"Permission denied you cannot view this section" => "Nie masz wystarczających uprawnień do oglądania tej sekcji",
"Top visited blogs" => "Top visited blogs",
"blog_ranking_top_blogs" => "blog_ranking_top_blogs",
"Last posts" => "Last posts",
"blog_ranking_last_posts" => "blog_ranking_last_posts",
"Top active blogs" => "Top active blogs",
"blog_ranking_top_active_blogs" => "blog_ranking_top_active_blogs",
"Permission denied you cannot access this gallery" => "Dostęp zabroniony do tej galerii",
"No gallery indicated" => "No gallery indicated",
"Permission denied you can not view this section" => "Dostęp zabroniony, nie możesz zobaczyć tej sekcji",
"Permission denied you cannot browse this gallery" => "Dostęp zabroniony, nie możesz przeglądać tej galerii",
"Permission denied you cannot remove images from this gallery" => "Dostęp zabroniony, nie możesz usunąć obrazów z tej galerii",
"Permission denied you cannot rebuild thumbnails in this gallery" => "Dostęp zabroniony, nie możesz przebudować miniatur w tej galerii",
"Permission denied you cannot rotate images in this gallery" => "Dostęp zabroniony, nie możesz obracać obrazów w tej galerii",
"No image indicated" => "No image indicated",
"Permission denied you cannot move images from this gallery" => "Dostęp zabroniony, nie możesz przesuwać obrazów z tej galerii",
"Permission denied you cannot view the calendar" => "Dostęp zabroniony, nie możesz zobaczyć kalendarza",
"event without name" => "event without name",
"Sunday" => "Niedziela",
"Monday" => "Poniedziałek",
"Tuesday" => "Wtorek",
"Wednesday" => "Środa",
"Thursday" => "Czwartek",
"Friday" => "Piątek",
"Saturday" => "Sobota",
"The passwords didn't match" => "The passwords didn't match",
"You can not use the same password again" => "You can not use the same password again",
"Invalid old password" => "Nieprawidłowe stare hasło",
"Password must contain both letters and numbers" => "Password must contain both letters and numbers",
"Permission denied to use this feature" => "Permission denied to use this feature",
"No channel indicated" => "No channel indicated",
"No nickname indicated" => "No nickname indicated",
"Top authors" => "Najlepsi autorzy",
"Permission denied you cannot view this page" => "Brak uprawnień, nie możesz zobaczyć tej strony",
"Message sent to" => "Wiadomość wysłana do",
"This feature has been disabled" => "This feature has been disabled",
"Must enter a name to add a site" => "Must enter a name to add a site",
"Must enter a url to add a site" => "Must enter a url to add a site",
"URL already added to the directory. Duplicate site?" => "URL already added to the directory. Duplicate site?",
"URL cannot be accessed wrong URL or site is offline and cannot be added to the directory" => "URL cannot be accessed wrong URL or site is offline and cannot be added to the directory",
"Must select a category" => "Musisz zaznaczyć kategorię",
"No site indicated" => "No site indicated",
"You can not download files" => "You can not download files",
"Permission denied you cannot edit this article" => "Permission denied you cannot edit this article",
"You dont have permissions to edit banners" => "You dont have permissions to edit banners",
"Banner not found" => "Banner not found",
"You dont have permission to edit this banner" => "You dont have permission to edit this banner",
"Permission denied you cannot create or edit blogs" => "Permission denied you cannot create or edit blogs",
"Permission denied you cannot edit this blog" => "Permission denied you cannot edit this blog",
"You dont have permission to write the style sheet" => "You dont have permission to write the style sheet",
"Invalid request to edit an image" => "Invalid request to edit an image",
"Permission denied you cannot edit images" => "Permission denied you cannot edit images",
"Permission denied you can edit images but not in this gallery" => "Permission denied you can edit images but not in this gallery",
"Failed to edit the image" => "Failed to edit the image",
"Shortname must be 2 Characters" => "Shortname must be 2 Characters",
"You must provide a longname" => "You must provide a longname",
"Language created" => "Language created",
"No content id indicated" => "No content id indicated",
"No question indicated" => "No question indicated",
"No quiz indicated" => "No quiz indicated",
"No structure indicated" => "No structure indicated",
"Permission denied you cannot send submissions" => "Permission denied you cannot send submissions",
"Permission denied you cannot edit submissions" => "Permission denied you cannot edit submissions",
"You have to create a topic first" => "You have to create a topic first",
"You dont have permission to do that" => "You dont have permission to do that",
"You dont have permission to write the template" => "You dont have permission to write the template",
"You dont have permission to read the template" => "You dont have permission to read the template",
"You cannot edit this page because it is a user personal page" => "You cannot edit this page because it is a user personal page",
"The SandBox is disabled" => "Brudnopis nie jest uaktywniony",
"Page cannot be found" => "Nie można znaleźć strony",
"Cannot edit page because it is locked" => "Strony nie można edytować, ponieważ jest zablokowana",
"Permission denied you cannot edit this page" => "Permission denied you cannot edit this page",
"Anonymous users cannot edit pages" => "Anonimowi użytkownicy nie mogą edytować stron",
"page imported" => "page imported",
"created from import" => "created from import",
"Permission denied you cannot create galleries and so you cant edit them" => "Permission denied you cannot create galleries and so you cant edit them",
"Permission denied you cannot edit this gallery" => "Permission denied you cannot edit this gallery",
"Permission denied you cannot remove this gallery" => "Permission denied you cannot remove this gallery",
"Top visited file galleries" => "Top visited file galleries",
"Most downloaded files" => "Most downloaded files",
"Last files" => "Ostatnie pliki",
"No forum indicated" => "No forum indicated",
"Forum posts" => "Forum posts",
"No process indicated" => "No process indicated",
"Activity name already exists" => "Activity name already exists",
"No instance indicated" => "No instance indicated",
"The process name already exists" => "The process name already exists",
"Process already exists" => "Process already exists",
"No activity indicated" => "No activity indicated",
"You cant execute this activity" => "You cant execute this activity",
"No item indicated" => "No item indicated",
"Permission denied you cannot view pages like this page" => "Permission denied you cannot view pages like this page",
"Top images" => "Najlepsze obrazy",
"Last images" => "Ostatnie obrazy",
"page not added (Exists)" => "page not added (Exists)",
"overwriting old page" => "overwriting old page",
"updated by the phpwiki import process" => "updated by the phpwiki import process",
"page created" => "page created",
"created from phpwiki import" => "created from phpwiki import",
"Cannot write to this file:" => "Cannot write to this file:",
"Wiki page" => "Wiki page",
"Permission denied you cannot view pages" => "Brak dostępu, nie możesz przeglądać stron",
"Permission denied you cannot remove articles" => "Brak dostępu, nie możesz usuwać artykułów",
"Permission denied you cannot remove banners" => "Brak dostępu, nie możesz usuwać bannerów",
"Permission denied you cannot remove this blog" => "Brak dostępu, nie możesz usuwać this blog",
"Unexistant gallery" => "Unexistant gallery",
"Permission denied you cannot remove files from this gallery" => "Permission denied you cannot remove files from this gallery",
"Permission denied you can't upload files so you can't edit them" => "Permission denied you can't upload files so you can't edit them",
"Permission denied you cannot edit this file" => "Permission denied you cannot edit this file",
"Permission denied you cannot upload images" => "Permission denied you cannot upload images",
"The thumbnail name must be" => "The thumbnail name must be",
"You cannot admin blogs" => "You cannot admin blogs",
"Permission denied you cannot remove submissions" => "Permission denied you cannot remove submissions",
"Permission denied you cannot approve submissions" => "Permission denied you cannot approve submissions",
"Permission denied you cannot remove pages" => "Permission denied you cannot remove pages",
"Invalid username or password" => "Invalid username or password",
"Tiki mail-in instructions" => "Tiki mail-in instructions",
"Must be logged to use this feature" => "Musisz zalogować się, aby z tego skorzystać",
"About" => "O",
"You dont have permission to view other users data" => "Nie masz uprawnień, aby zobaczyć dane innych użytkowników",
"You must be logged in to subscribe to newsletters" => "Musisz zalogować się, aby dokonać subskrypcji biuletynów",
"No server indicated" => "No server indicated",
"Cannot connect to" => "Cannot connect to",
"Missing information to read news (server,port,username,password,group) required" => "Missing information to read news (server,port,username,password,group) required",
"Cannot get messages" => "Cannot get messages",
"No note indicated" => "No note indicated",
"File is too big" => "Plik jest zbyt duży",
"merged note:" => "merged note:",
"No name indicated for wiki page" => "Nie podano tytułu strony wiki",
"Page already exists" => "Taka strona już istnieje",
"created from notepad" => "utworzono z notatnika",
"Permission denied you cannot assign permissions for this page" => "Odmowa dostępu, nie możesz przydzielać uprawnień do tej strony",
"Not enough information to display this page" => "Brak dostatecznych informacji do wyświetlenia tej strony",
"Fatal error" => "Błąd krytyczny",
"Permission denied you cannot browse this page history" => "Odmowa dostępu, nie możesz przeglądać historii tej strony",
"No article indicated" => "Nie wskazano artykułu",
"Article not found" => "Artykuł nie znaleziony",
"Article is not published yet" => "Artykuł jeszcze nie został opublikowany",
"No post indicated" => "Nie wskazano wiadomości",
"Blog not found" => "Blog nie znaleziony",
"No pages indicated" => "Nie wskazano strony",
"No result indicated" => "Nie wskazano wyniku",
"Permision denied" => "Odmowa dostępu",
"Wrong registration code" => "Nieprawidłowy kod rejestracyjny",
"Invalid username" => "Nieprawidłowa nazwa użytkownika",
"Username is too long" => "Nazwa użytkownika jest zbyt długa",
"Username cannot contain whitespace" => "W nazwie użytkownika nie mogą występować odstępy",
"Wrong passcode you need to know the passcode to register in this site" => "Nieprawidłowy kod, musisz znać poprawny kod, aby zarejestrować sięna witrynie",
"Invalid email address. You must enter a valid email address" => "Nieprawidłowy adres email. Podaj prawidłowy adres emai",
"Thank you for you registration. You may log in now." => "Dziękujemy za zarejestrowanie się. Teraz możesz się już zalogować.",
"New user registration" => "New user registration",
"You will receive an email with information to login for the first time into this site" => "You will receive an email with information to login for the first time into this site",
"Your Tiki information registration" => "Your Tiki information registration",
"Your Tiki account information for" => "Your Tiki account information for",
"A password reminder email has been sent " => "A password reminder email has been sent ",
"A new password has been sent " => "A new password has been sent ",
"to the registered email address for" => "to the registered email address for",
"Invalid or unknown username" => "Invalid or unknown username",
"Permission denied you cannot remove versions from this page" => "Permission denied you cannot remove versions from this page",
"Cannot rename page maybe new page already exists" => "Nie można zmienić nazwy strony, prawdopodobnie taka strona już istnieje",
"No version indicated" => "No version indicated",
"Unexistant version" => "Unexistant version",
"Permission denied you cannot rollback this page" => "Permission denied you cannot rollback this page",
"Post recommendation at" => "Post recommendation at",
" successfully sent" => " successfully sent",
" not sent" => " not sent",
"You dont have permission to edit messages" => "You dont have permission to edit messages",
"Page must be defined inside a structure to use this feature" => "Page must be defined inside a structure to use this feature",
"You cannot take this quiz twice" => "You cannot take this quiz twice",
"Quiz time limit excedeed quiz cannot be computed" => "Quiz time limit excedeed quiz cannot be computed",
"You cannot take this survey twice" => "You cannot take this survey twice",
"Please create a category first" => "Please create a category first",
"Permission denied you cannot upload files" => "Permission denied you cannot upload files",
"Permission denied you can upload files but not to this file gallery" => "Permission denied you can upload files but not to this file gallery",
"Invalid filename (using filters for filenames)" => "Invalid filename (using filters for filenames)",
"No permission to upload zipped file packages" => "No permission to upload zipped file packages",
"Cannot read file" => "Cannot read file",
"Upload was not successful" => "Upload was not successful",
"Upload was not successful (maybe a duplicate file)" => "Upload was not successful (maybe a duplicate file)",
"Permission denied you can upload images but not to this gallery" => "Permission denied you can upload images but not to this gallery",
"Cannot get image from URL" => "Cannot get image from URL",
"cannot process upload" => "cannot process upload",
"You have to provide a name to the image" => "You have to provide a name to the image",
"Invalid imagename (using filters for filenames)" => "Invalid imagename (using filters for filenames)",
"Error processing zipped image package" => "Error processing zipped image package",
"No permission to upload zipped image packages" => "No permission to upload zipped image packages",
"You must log in to use this feature" => "You must log in to use this feature",
"No url indicated" => "No url indicated",
"You are not logged in and no user indicated" => "You are not logged in and no user indicated",
"The user has choosen to make his information private" => "The user has choosen to make his information private",
"(AT)" => "(AT)",
"(DOT)" => "(DOT)",
"Cannot upload this file not enough quota" => "Cannot upload this file not enough quota",
"No user indicated" => "No user indicated",
"Unexistant user" => "Unexistant user",
"No banner indicated" => "No banner indicated",
"No blog indicated" => "No blog indicated",
"Permission denied you cannot remove the post" => "Permission denied you cannot remove the post",
"No cache information available" => "No cache information available",
"No faq indicated" => "No faq indicated",
"Wrong password. Cannot post comment" => "Wrong password. Cannot post comment",
"Please wait 2 minutes between posts" => "Please wait 2 minutes between posts",
" new topic:" => " new topic:",
"Tiki email notification" => "Tiki email notification",
"Cannot upload this file maximum upload size exceeded" => "Cannot upload this file maximum upload size exceeded",
"No thread indicated" => "No thread indicated",
"topic:" => "topic:",
"Re:" => "Re:",
"forum topic" => "forum topic",
"Your email address has been removed from the list of addresses monitoring this tracker" => "Your email address has been removed from the list of addresses monitoring this tracker",
"Your email address has been added to the list of addresses monitoring this tracker" => "Your email address has been added to the list of addresses monitoring this tracker",
"Cancel monitoring" => "Cancel monitoring",
"Monitor" => "Monitor",
"Your email address has been removed from the list of addresses monitoring this item" => "Your email address has been removed from the list of addresses monitoring this item",
"Your email address has been added to the list of addresses monitoring this item" => "Your email address has been added to the list of addresses monitoring this item",
"No subject" => "No subject",
"Your email was sent" => "Your email was sent",
"Top pages" => "Najlepsze strony",
"Last pages" => "Ostatnie strony",
"Most relevant pages" => "Najbardziej odpowiednie strony",
"no such file" => "nie ma takiego pliku",
"January" => "Styczeń",
"February" => "Luty",
"March" => "Marzec",
"April" => "Kwiecień",
"May" => "Maj",
"June" => "Czerwiec",
"July" => "Lipiec",
"August" => "Sierpień",
"September" => "Wrzesień",
"October" => "Październik",
"November" => "Listopad",
"December" => "Grudzień",
"WikiDiff::apply: line count mismatch: %s != %s" => "WikiDiff::apply: line count mismatch: %s != %s",
"WikiDiff::_check: failed" => "WikiDiff::_check: failed",
"WikiDiff::_check: edit sequence is non-optimal" => "WikiDiff::_check: edit sequence is non-optimal",
"WikiDiff Okay: LCS = %s" => "WikiDiff Okay: LCS = %s",
"Current page:" => "Obecna strona:",
"version %s" => "wersja %s",
"last modified on %s" => "last modified on %s",
"Archived page:" => "Archived page:",
"by %s" => "autor: %s",
"Versions are identical" => "Versions are identical",
"Diff of %s." => "Diff of %s.",
"FAQ" => "CZP",
"No image yet, sorry." => "No image yet, sorry.",
"You are banned from" => "You are banned from",
"no description" => "no description",
"picture not found" => "picture not found",
"drawing not found" => "drawing not found",
"changed" => "changed",
"help" => "help",
"indicates if the process is active. Invalid processes cant be active" => "indicates if the process is active. Invalid processes cant be active",
"New article submitted at " => "New article submitted at ",
"Blog post" => "Blog post",
"continued" => "continued",
"click to edit" => "click to edit",
"new image uploaded by" => "new image uploaded by",
"uploaded by" => "uploaded by",
"new item in tracker" => "new item in tracker",
"new subscriptions" => "new subscriptions",
"not specified" => "not specified",
"Home" => "Home",
"New message arrived from " => "New message arrived from ",
"NONE" => "BRAK",
"Newsletter subscription information at " => "Newsletter subscription information at ",
"Welcome to " => "Welcome to ",
"Bye bye from " => "Bye bye from ",
" at " => " o ",
"You can unsubscribe from this newsletter following this link" => "You can unsubscribe from this newsletter following this link",
"Wiki top pages" => "Najlepsze strony",
"Wiki last pages" => "Ostatnie strony",
"Forums last topics" => "Ostatnie tematy na forum",
"Topic date" => "Data tematu",
"Forums most read topics" => "Najczęściej czytane tematy",
"Forums best topics" => "Najlepsze tematy",
"Forums most visited forums" => "Najczęściej odwiedzane fora",
"Forums with most posts" => "Fora z większością wiadomości",
"Wiki top galleries" => "Najlepsze galerie",
"Wiki top file galleries" => "Najlepsze galerie plików",
"Wiki top images" => "Najlepsze obrazy",
"Wiki top files" => "Najlepsze pliki",
"Wiki last images" => "Ostatnie obrazy",
"Upload date" => "Data załadowania",
"Wiki last files" => "Ostatnie pliki",
"Wiki top articles" => "Najlepsze artykuły",
"Most active blogs" => "Najaktywniejsze blogi",
"Blogs last posts" => "Ostatnie wiadomości w blogach",
"Post date" => "Datawiadomości",
"Wiki top authors" => "Najlepsi autorzy",
"Top article authors" => "Najlepsi autorzy artykułów",
"Tracker was modified at " => "Tracker was modified at ",
"Displays the user Avatar" => "Displays the user Avatar",
"Insert theme styled box on wiki page" => "Insert theme styled box on wiki page",
"Insert list of items for the current/given category into wiki page" => "Insert list of items for the current/given category into wiki page",
"Categories are disabled" => "Categories are disabled",
"Insert the full category path for each category that this wiki page belongs to" => "Insert the full category path for each category that this wiki page belongs to",
"Centers the plugin content in the wiki page" => "Centers the plugin content in the wiki page",
"Displays a snippet of code.\nSet optional paramater -+ln+- to 1 if you need line numbering feature." => "Displays a snippet of code.\nSet optional paramater -+ln+- to 1 if you need line numbering feature.",
"Insert copyright notices" => "Insert copyright notices",
"Displays the data using the TikiWiki odd/even table style" => "Displays the data using the TikiWiki odd/even table style",
"Displays a graphical GAUGE" => "Displays a graphical GAUGE",
"Displays a module inlined in page" => "Displays a module inlined in page",
"Sorry no such module" => "Sorry no such module",
"Please choose a module" => "Please choose a module",
"to be used as argument" => "to be used as argument",
"Displays the data using a monospace font" => "Displays the data using a monospace font",
"Sorts the plugin content in the wiki page" => "Sorts the plugin content in the wiki page",
"Missing db param" => "Missing db param",
"Renders a graph" => "Renders a graph",
"There is an error in the plugin data" => "There is an error in the plugin data",
"Change your email" => "Zmień swój adres email",
"No such forum" => "Nie ma takiego forum",
"Publish/Event Date" => "Data publikacji/wydarzenia",
"User" => "Użytkownik",
"##end###" => "###end###");
?>