File: pl.po

package info (click to toggle)
neverball 1.6.0%2Bgit20180603-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, sid, trixie
  • size: 152,380 kB
  • sloc: ansic: 27,402; makefile: 454; cpp: 208; xml: 177; sh: 161
file content (1658 lines) | stat: -rw-r--r-- 53,093 bytes parent folder | download | duplicates (4)
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
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR Robert Kooima
# This file is distributed under the same license as the PACKAGE package.
# 
# Translators:
# GunChleoc, 2014
msgid ""
msgstr ""
"Project-Id-Version: Neverball\n"
"Report-Msgid-Bugs-To: robert.kooima@gmail.com\n"
"POT-Creation-Date: 2014-05-19 16:28+0300\n"
"PO-Revision-Date: 2014-05-20 17:08+0000\n"
"Last-Translator: GunChleoc\n"
"Language-Team: Polish (http://www.transifex.com/projects/p/neverball/language/pl/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: pl\n"
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"

#: ball/st_play.c:100
msgid "Ready?"
msgstr "Gotowi?"

#: ball/st_play.c:184
msgid "Set?"
msgstr "Do startu!"

#: ball/st_play.c:325
msgid "GO!"
msgstr "START!"

#: ball/st_save.c:100
msgid "Replay Name"
msgstr "Nazwa powtórki"

#: ball/st_save.c:111
msgid "Save"
msgstr "Zapisz"

#: ball/st_save.c:113 ball/st_save.c:222 ball/st_name.c:112
msgid "Cancel"
msgstr "Anuluj"

#: ball/st_save.c:217
msgid "Overwrite?"
msgstr "Nadpisać?"

#: ball/st_save.c:223
msgid "Overwrite"
msgstr ""

#: ball/game_common.h:10
msgid "snd/select.ogg"
msgstr "snd/select.ogg"

#: ball/game_common.h:11
msgid "snd/ready.ogg"
msgstr "snd/ready.ogg"

#: ball/game_common.h:12
msgid "snd/set.ogg"
msgstr "snd/set.ogg"

#: ball/game_common.h:13
msgid "snd/go.ogg"
msgstr "snd/go.ogg"

#: ball/game_common.h:24
msgid "snd/record.ogg"
msgstr "snd/record.ogg"

#: ball/game_common.h:25
msgid "snd/fall.ogg"
msgstr "snd/fall.ogg"

#: ball/game_common.h:26
msgid "snd/time.ogg"
msgstr "snd/time.ogg"

#: ball/game_common.h:27
msgid "snd/over.ogg"
msgstr "snd/over.ogg"

#: ball/st_start.c:174 ball/st_demo.c:308 ball/st_help.c:105
#: ball/st_ball.c:182 share/gui.c:2204 share/st_common.c:97 putt/st_conf.c:106
#: putt/st_all.c:404 putt/st_all.c:552
msgid "Back"
msgstr "Powrót"

#: ball/st_start.c:203 ball/progress.c:417
msgid "Challenge"
msgstr "Wyzwanie"

#: ball/st_start.c:223
msgid "Unlocked"
msgstr ""

#: ball/st_start.c:224
msgid "Locked"
msgstr ""

#: ball/st_start.c:234
msgid "Goal State in Completed Levels"
msgstr ""

#: ball/st_conf.c:156 putt/st_conf.c:104
msgid "Options"
msgstr "Opcje"

#: ball/st_conf.c:158 share/st_common.c:339 putt/st_conf.c:116
msgid "Graphics"
msgstr ""

#: ball/st_conf.c:158 putt/st_conf.c:114
msgid "Configure"
msgstr ""

#: ball/st_conf.c:162
msgid "Mouse Sensitivity"
msgstr ""

#: ball/st_conf.c:167 putt/st_conf.c:134
msgid "Sound Volume"
msgstr "Głośność dźwięku"

#: ball/st_conf.c:169 putt/st_conf.c:150
msgid "Music Volume"
msgstr "Głośność muzyki"

#: ball/st_conf.c:174 ball/st_name.c:99
msgid "Player Name"
msgstr "Nazwa gracza"

#: ball/st_conf.c:175 ball/st_ball.c:180
msgid "Ball Model"
msgstr ""

#: ball/st_conf.c:176 share/st_common.c:655 putt/st_conf.c:160
msgid "Language"
msgstr ""

#: ball/st_conf.c:190 share/st_common.c:666
msgid "Default"
msgstr ""

#: ball/st_done.c:57
msgid "New Set Record"
msgstr "Nagranie nowego zestawu"

#: ball/st_done.c:58
msgid "Set Complete"
msgstr "Kompletny zestaw"

#: ball/st_done.c:77
msgid "Select Level"
msgstr "Wybór poziomu"

#: ball/progress.c:417 ball/st_help.c:259
msgid "Challenge Mode"
msgstr "Tryb wyzwania"

#: ball/progress.c:418 ball/st_help.c:246
msgid "Normal Mode"
msgstr "Tryb zwykły"

#: ball/progress.c:418
msgid "Normal"
msgstr "Zwykły"

#: ball/progress.c:419
msgid "Standalone Mode"
msgstr ""

#: ball/progress.c:419
msgid "Standalone"
msgstr ""

#: ball/progress.c:420
msgid "Unknown Mode"
msgstr "Tryb nieznany"

#: ball/progress.c:420 ball/game_common.c:32
msgid "Unknown"
msgstr "Nieznane"

#: ball/st_fail.c:82
msgid "Fall-out!"
msgstr "Upadek!"

#: ball/st_fail.c:84
msgid "Time's Up!"
msgstr "Czas minął!"

#: ball/st_fail.c:98
msgid "Exit"
msgstr "Wyjście"

#: ball/st_fail.c:101 ball/st_goal.c:220
msgid "Next Level"
msgstr "Następny poziom"

#: ball/st_fail.c:104 ball/st_goal.c:223
msgid "Retry Level"
msgstr "Powtórz poziom"

#: ball/st_fail.c:107 ball/st_goal.c:226
msgid "Save Replay"
msgstr "Zapisz powtórkę"

#: ball/st_name.c:110
msgid "OK"
msgstr "OK"

#: ball/st_demo.c:202
msgid "Time"
msgstr "Czas"

#: ball/st_demo.c:203 ball/hud.c:68 ball/st_goal.c:166
msgid "Coins"
msgstr "Monety"

#: ball/st_demo.c:204
msgid "Status"
msgstr "Status"

#: ball/st_demo.c:235 ball/st_demo.c:426
msgid "Replay"
msgstr "Powtórka"

#: ball/st_demo.c:236 putt/st_all.c:740
msgid "Player"
msgstr "Gracz"

#: ball/st_demo.c:237
msgid "Date"
msgstr "Data"

#: ball/st_demo.c:290
msgid "Select Replay"
msgstr "Wybór powtórki"

#: ball/st_demo.c:306
msgid "No Replays"
msgstr "Brak powtórek"

#: ball/st_demo.c:611
msgid "Replay Paused"
msgstr "Powtórka wstrzymana"

#: ball/st_demo.c:613
msgid "Replay Ends"
msgstr "Powtórka zakończyła się"

#: ball/st_demo.c:619 ball/st_pause.c:88 putt/st_all.c:649
msgid "Quit"
msgstr "Wyjście"

#: ball/st_demo.c:623 ball/st_demo.c:709
msgid "Keep"
msgstr "Zachowaj"

#: ball/st_demo.c:624 ball/st_demo.c:710
msgid "Delete"
msgstr "Usuń"

#: ball/st_demo.c:628 ball/st_pause.c:93 putt/st_all.c:650
msgid "Continue"
msgstr "Kontynuuj"

#: ball/st_demo.c:630
msgid "Repeat"
msgstr "Powtórz"

#: ball/st_demo.c:705
msgid "Delete Replay?"
msgstr "Usunąć powtórkę?"

#: ball/st_demo.c:759 ball/st_level.c:179
msgid "Warning!"
msgstr "Ostrzeżenie!"

#: ball/st_demo.c:761
msgid ""
"The current replay was recorded with a\\different (or unknown) version of "
"this level.\\Be prepared to encounter visual errors.\\"
msgstr "Obecna powtórka została nagrana korzystając z\\innej (lub nieznanej) wersji poziomu.\\Proszę przygotować się na błędy w wyświetlaniu.\\"

#: ball/st_help.c:101
msgid "Tricks"
msgstr "Sztuczki"

#: ball/st_help.c:102
msgid "Modes"
msgstr "Tryby"

#: ball/st_help.c:103
msgid "Controls"
msgstr "Kontrola"

#: ball/st_help.c:104
msgid "Rules"
msgstr "Reguły"

#: ball/st_help.c:115
msgid ""
"Move the mouse or joystick\\or use keyboard arrows to\\tilt the floor "
"causing the\\ball to roll.\\"
msgstr "Przesuń myszkę lub dżojstik\\albo użyj strzałek na klawiaturze,\\aby przechylić podłoże, powodując\\turlanie się piłki."

#: ball/st_help.c:120
msgid ""
"Roll over coins to collect\\them.  Collect coins to\\unlock the goal and "
"finish\\the level.\\"
msgstr "Przeturlaj się przez monety,\\aby je zebrać. Zbieraj monety,\\aby odblokować cel i zakończyć\\poziom."

#: ball/st_help.c:177
msgid ""
"Left and right mouse buttons rotate the view.\\Hold Shift for faster view "
"rotation."
msgstr ""

#: ball/st_help.c:179
msgid "Exit / Pause"
msgstr ""

#: ball/st_help.c:180 ball/game_common.c:46
msgid "Chase Camera"
msgstr ""

#: ball/st_help.c:181 ball/game_common.c:45
msgid "Lazy Camera"
msgstr ""

#: ball/st_help.c:182 ball/game_common.c:44
msgid "Manual Camera"
msgstr ""

#: ball/st_help.c:183
msgid "Screenshot"
msgstr "Zrzut ekranu"

#: ball/st_help.c:248
msgid ""
"Finish a level before the time runs out.\\You need to collect coins in order"
" to open the goal."
msgstr "Ukończ poziom przed upływem czasu.\\Musisz zebrać monety, aby uaktywnić cel."

#: ball/st_help.c:261
msgid ""
"Start playing from the first level of the set.\\You start with only three "
"balls, do not lose them.\\Earn an extra ball for each 100 coins collected."
msgstr "Rozpocznij grę o pierwszego poziomu z zestawu.\\Rozpoczynasz grę z trzema piłkami, nie trać ich.\\Zarabiasz dodatkową piłkę po zebraniu każdych 100 monet."

#: ball/st_help.c:275
msgid ""
"Corners can be used to jump.\\Get rolling and take aim\\at the angle. You "
"may be able\\to reach new places.\\"
msgstr "Narożniki mogą być wykorzystane do\\podskoków. Rozpocznij turlanie\\i wyceluj w kąt. Możesz w ten\\sposób osiągnąć nowe miejsca."

#: ball/st_help.c:280
msgid ""
"Tilting in 2 directions increases\\the slope. Use the manual camera\\and "
"turn the camera by 45\\degrees for best results.\\"
msgstr ""

#: ball/st_help.c:300 ball/st_help.c:310
msgid "Watch demo"
msgstr "Obejrzyj demonstrację"

#: ball/game_common.c:28
msgid "Aborted"
msgstr "Przerwano"

#: ball/game_common.c:29
msgid "Time-out"
msgstr "Czas minął"

#: ball/game_common.c:30
msgid "Success"
msgstr "Sukces"

#: ball/game_common.c:31
msgid "Fall-out"
msgstr "Upadek"

#: ball/game_common.c:48
#, c-format
msgid "Camera %d"
msgstr ""

#: ball/st_pause.c:82 putt/st_all.c:644
msgid "Paused"
msgstr "Pauza"

#: ball/st_pause.c:91
msgid "Restart"
msgstr "Restart"

#: ball/hud.c:69
msgid "Goal"
msgstr "Cel"

#: ball/hud.c:89 ball/st_goal.c:154
msgid "Balls"
msgstr "Piłki"

#: ball/hud.c:90 ball/st_goal.c:160 putt/hud.c:45
msgid "Score"
msgstr "Wynik"

#: ball/st_goal.c:101
msgid "New Record"
msgstr "Nowy rekord"

#: ball/st_goal.c:102
msgid "GOAL"
msgstr "SUKCES"

#: ball/st_goal.c:215 ball/st_goal.c:217
msgid "Finish"
msgstr "Ukończono"

#: ball/st_set.c:108
msgid "Level Set"
msgstr "Zestaw poziomów"

#: ball/st_level.c:56
#, c-format
msgid "Bonus Level %s"
msgstr "Poziom dodatkowy %s"

#: ball/st_level.c:58
#, c-format
msgid "Level %s"
msgstr "Poziom %s"

#: ball/st_level.c:64
#, c-format
msgid "Standalone level"
msgstr ""

#: ball/st_level.c:181
msgid ""
"A replay file could not be opened for writing.\\This game will not be "
"recorded.\\"
msgstr ""

#: ball/util.c:28
msgid "Hard"
msgstr "Trudny"

#: ball/util.c:29
msgid "Medium"
msgstr "Średni"

#: ball/util.c:30
msgid "Easy"
msgstr "Łatwy"

#: ball/util.c:76 ball/util.c:122
msgid "Unavailable"
msgstr "Niedostępny"

#: ball/util.c:178 ball/util.c:228
msgid "Most Coins"
msgstr "Najwięcej monet"

#: ball/util.c:185 ball/util.c:232
msgid "Best Times"
msgstr "Najlepsze czasy"

#: ball/util.c:192 ball/util.c:236
msgid "Fast Unlock"
msgstr "Szybkie odblokowanie"

#: ball/util.c:205
msgid "Change Name"
msgstr "Zmiana nazwy"

#: ball/util.c:332
msgid "caps"
msgstr "duże/małe"

#: ball/st_over.c:35
msgid "GAME OVER"
msgstr "KONIEC GRY"

#: ball/st_title.c:140 ball/st_title.c:175
msgid "menu^Cheat"
msgstr "Oszustwa"

#: ball/st_title.c:146 ball/st_title.c:178 putt/st_all.c:238
msgid "menu^Play"
msgstr "Gra"

#: ball/st_title.c:181
msgid "menu^Replay"
msgstr "Powtórka"

#: ball/st_title.c:182
msgid "menu^Help"
msgstr "Pomoc"

#: ball/st_title.c:183 putt/st_all.c:239
msgid "menu^Options"
msgstr "Opcje"

#: ball/st_title.c:184 putt/st_all.c:240
msgid "menu^Exit"
msgstr "Wyjście"

#: share/st_common.c:318 share/st_common.c:348 share/st_common.c:366
#: share/st_common.c:372 share/st_common.c:380 share/st_common.c:382
#: share/st_common.c:384
msgid "Off"
msgstr "Wyłączone"

#: share/st_common.c:319
msgid "2x"
msgstr ""

#: share/st_common.c:320
msgid "4x"
msgstr ""

#: share/st_common.c:321
msgid "8x"
msgstr ""

#: share/st_common.c:337
msgid "Unknown Display"
msgstr ""

#: share/st_common.c:341 share/st_common.c:447
msgid "Display"
msgstr ""

#: share/st_common.c:347
msgid "Fullscreen"
msgstr "Pełny ekran"

#: share/st_common.c:348 share/st_common.c:366 share/st_common.c:372
#: share/st_common.c:380 share/st_common.c:382 share/st_common.c:384
msgid "On"
msgstr "Włączone"

#: share/st_common.c:350 share/st_common.c:544
msgid "Resolution"
msgstr "Rozdzielczość"

#: share/st_common.c:365
msgid "HMD"
msgstr ""

#: share/st_common.c:371
msgid "V-Sync"
msgstr ""

#: share/st_common.c:373
msgid "Antialiasing"
msgstr ""

#: share/st_common.c:379
msgid "Reflection"
msgstr "Odbicia"

#: share/st_common.c:381
msgid "Background"
msgstr "Tło"

#: share/st_common.c:383
msgid "Shadow"
msgstr "Cienie"

#: putt/st_conf.c:158
msgid "Select"
msgstr ""

#: putt/hole.c:160 putt/st_all.c:107 putt/st_all.c:168 putt/hud.c:52
msgid "Par"
msgstr "Par"

#: putt/hole.c:162 putt/st_all.c:108 putt/st_all.c:169
msgid "P1"
msgstr "G1"

#: putt/hole.c:163 putt/st_all.c:109 putt/st_all.c:170
msgid "P2"
msgstr "G2"

#: putt/hole.c:164 putt/st_all.c:110 putt/st_all.c:171
msgid "P3"
msgstr "G3"

#: putt/hole.c:165 putt/st_all.c:111 putt/st_all.c:172
msgid "P4"
msgstr "G4"

#: putt/st_all.c:75
msgid "O"
msgstr "O"

#: putt/st_all.c:124
msgid "Tot"
msgstr "Suma"

#: putt/st_all.c:136
msgid "I"
msgstr "I"

#: putt/st_all.c:361
msgid "Select Course"
msgstr "Wybierz pole"

#: putt/st_all.c:529
msgid "Players?"
msgstr "Graczy?"

#: putt/st_all.c:731
#, c-format
msgid "Hole %02d"
msgstr "Dołek %02d"

#: putt/st_all.c:1073
msgid "It's In!"
msgstr "Zaliczony!"

#: putt/st_all.c:1216
msgid "1 Stroke Penalty"
msgstr "1 uderzenie karne"

#: putt/st_all.c:1294
msgid "Scores"
msgstr "Wyniki"

#: putt/st_all.c:1347
msgid "Final Scores"
msgstr "Wyniki końcowe"

#: data/set-easy.txt
msgid "Neverball Easy"
msgstr "Łatwy Neverball"

#: data/set-easy.txt
msgid ""
"Difficulty: Beginner through Intermediate\\\\25 levels with a smooth "
"learning curve.\\Read level introductions for gameplay tips.\\ \\"
msgstr "Trudność: od małej do umiarkowanej\\\\25 poziomów z płynnym przejściem\\pozwalającym na naukę. Wstępy poziomów\\zawierają informacje o rozgrywce.\\"

#: data/set-medium.txt
msgid "Neverball Medium"
msgstr "Średni Neverball"

#: data/set-medium.txt
msgid ""
"Difficulty: Beginner through Expert\\\\25 levels which provide a "
"balanced\\challenge for players. Try to claim\\some of the records "
"provided.\\"
msgstr "Trudność: od małej do dużej\\\\25 poziomów zapewniających zbalansowany\\poziom trudności dla graczy. Spróbuj\\pobić część zamieszczonych rekordów.\\"

#: data/set-hard.txt
msgid "Neverball Hard"
msgstr "Trudny Neverball"

#: data/set-hard.txt
msgid ""
"Difficulty: Intermediate through Expert\\\\25 levels with more of a "
"challenge for\\the experienced player. Try to claim\\Best Times, Most Coins,"
" and Fast Unlock records.\\"
msgstr "Trudność: od umiarkowanej do dużej\\\\25 poziomów będących większym wyzwaniem dla\\doświadczonych graczy. Spróbuj pobić rekordy:\\najlepszy czas, najwięcej monet i najszybsze odblokowanie.\\"

#: data/set-mym.txt
msgid "Tour de force"
msgstr "Tour de force"

#: data/set-mym.txt
msgid ""
"Difficulty: Expert through Insane\\\\25 levels with even greater "
"challenge.\\Author: Mehdi Yousfi-Monod (mym)\\ \\"
msgstr "Trudność: od dużej do szalonej\\\\25 jeszcze trudniejszych poziomów.\\Autor: Mehdi Yousfi-Monod (mym)\\ \\"

#: data/set-mym2.txt
msgid "Retour de force"
msgstr "Retour de force"

#: data/set-mym2.txt
msgid ""
"Difficulty: A little bit harder than my first set.\\\\More challenge, "
"particularly for grabbing coins.\\Author: Mehdi Yousfi-Monod (mym)\\ \\"
msgstr "Trudność: nieco trudniejsza od wcześniejszego zestawu.\\\\Bardziej wymagający, szczególnie jeśli\\chodzi o zbieranie monet.\\Autor: Mehdi Yousfi-Monod (mym)\\ \\"

#: data/set-fwp.txt
msgid "Nevermania"
msgstr "Nevermania"

#: data/set-fwp.txt
msgid ""
"Difficulty: Expert through Impossible\\\\Assorted levels for advanced "
"players.\\Author: Florian Priester\\\\"
msgstr "Trudność: od dużej do niesłychanej\\\\Zróżnicowane poziomy dla zaawansowanych graczy.\\Autor: Florian Priester\\\\"

#: data/set-tones.txt
msgid "Tones Levels"
msgstr ""

#: data/set-tones.txt
msgid "Difficulty: Moderate to Difficult.\\\\Author: Ian Walker\\\\"
msgstr ""

#: data/set-misc.txt
msgid "Neverball Misc"
msgstr "Neverball Misc"

#: data/set-misc.txt
msgid "Unsorted levels\\For testing purposes\\\\\\\\"
msgstr "Nieprzydzielone poziomy\\Do celów testowych\\\\\\\\"

#: data/holes-putt.txt
msgid ""
"The original 18-hole Neverputt course.\\With a gentle learning curve.\\ "
"\\Difficulty: Easy to Medium\\Author: rlk\\"
msgstr "Oryginalne, 18-dołkowe pole Neverputt.\\Stopniowy przyrost trudności.\\ \\Trudność: mała do średniej. Autor: rlk\\\\"

#: data/holes-paxed.txt
msgid "Another 18-hole course\\ \\ \\Difficulty: Medium\\Author: paxed\\"
msgstr "Kolejne 18-dołkowe pole\\ \\ \\Trudność: średnia\\Autor:paxed\\"

#: data/holes-paxed2.txt
msgid "Yet Another 18-hole course\\ \\ \\Difficulty: Medium\\Author: paxed\\"
msgstr "Jeszcze jedno pole 18-dołkowe\\ \\ \\Trudność: średnia\\ Autor: paxed\\"

#: data/holes-paxed3.txt
msgid "Even More Holes\\ \\ \\Difficulty: Medium\\Author: paxed\\"
msgstr "Jeszcze więcej dołków\\ \\ \\Trudność: średnia\\Autor:paxed\\"

#: data/holes-abc.txt
msgid "A 26-hole course\\following the alphabet\\\\Difficulty: Hard\\Author: paxed\\"
msgstr "Pole 26-dołkowe\\zgodne z alfabetem\\\\Trudność: duża\\autor:paxed\\"

#: data/holes-slippi.txt
msgid "Crazy Golf\\ \\\\Difficulty: Easy to Medium\\Author: slippifishi\\"
msgstr "Szalony golf\\ \\\\Trudność: mała do średniej\\autor: slippifishi\\"

#: data/holes-kk.txt
msgid ""
"Tricky Golf\\\\An 18-hole course with many challenges\\Difficulty: Expert "
"Through Insane\\Author: Byron James Johnson"
msgstr "Niełatwy golf\\\\18-dołkowe pole z wieloma wyzwaniami\\Trudność: bardzo duża do niesłychanej\\Autor: Byron James Johnson"

#: data/holes-vidski.txt
msgid ""
"Golf Jambalaya\\\\Vidski's infamous course.\\Difficulty: Medium to "
"hard.\\Author: vidski\\"
msgstr ""

#: data/holes-easyputt.txt
msgid ""
"Reshaun's Easy-Putt\\\\Difficulty: Easy through Hard\\Author: Reshaun "
"Francis"
msgstr ""

#: data/map-easy/bumper.map
msgid ""
"Try to avoid being hit by moving objects.\\One bump can throw the "
"ball\\completely out of control.\\"
msgstr "Staraj się unikać zderzenia\\z poruszającymi się obiektami.\\Jedno uderzenie może całkowicie pozbawić\\Cię kontroli nad piłką."

#: data/map-easy/bumps.map
msgid ""
"Learn to control a bouncing ball.\\Look at the shadow to know where "
"the\\ball will land.  If you're feeling confident in\\your mastery of "
"bouncing, take a risk\\for a big payoff.\\"
msgstr "Naucz się kontrolować odbicia piłki.\\Zwróć uwagę na cień, aby wiedzieć gdzie\\wyląduje piłka. Jeśli czujesz się pewnie\\w swej kontroli odbijania, podejmij ryzyko\\za dużą odpłatą.\\"

#: data/map-easy/coins.map
msgid ""
"This time you must get 50 coins to unlock the goal.\\Red coins are worth 5, "
"blue coins are worth 10.\\Get to the goal before time expires!\\\\Click to "
"begin.\\"
msgstr "Tym razem musisz zdobyć 50 monet, aby odblokować cel.\\Czerwone monety są warte 5, a niebieskie 10.\\Dotrzyj do celu przed upływem czasu!\\\\Kliknij, aby rozpocząć.\\"

#: data/map-easy/corners.map
msgid ""
"Here are some more opportunities for you to\\fall off into the void. Hit the"
" bump hard to\\grab some big coins and score a short time.\\"
msgstr "Są tu pewne miejsca, gdzie można wypaść z trasy.\\Wybij się wysoko, aby zgarnąć cenne monety\\i zdobyć wynik w krótkim czasie.\\"

#: data/map-easy/curved.map
msgid ""
"As before, but without the training wheels.\\Keep the ball on a level "
"floor\\and maintain precise control.\\Build some momentum to reach the "
"corners.\\"
msgstr "Jak poprzednio, lecz tym razem bez taryfy ulgowej.\\Utrzymaj piłkę na poziomie podłoża\\i naucz się precyzyjnej kontroli.\\Zdobądź nieco rozpędu, aby dotrzeć do narożników.\\"

#: data/map-easy/easy.map data/map-misc/centrifuge.map
#: data/map-misc/texture-debug.map data/map-misc/timer-test.map
msgid ""
"Move the mouse to tilt the floor.\\Collect 10 coins to unlock the "
"goal.\\Guide the ball to the goal to\\finish the level.\\\\Click to begin.\\"
msgstr "Przesuń mysz, aby przechylić podłoże.\\Zdobądź 10 monet, aby odblokować cel.\\Poprowadź piłkę do celu aby ukończyć poziom.\\\\Kliknij, aby rozpocząć.\\"

#: data/map-easy/easyhalfpipe.map
msgid ""
"Half-pipes can be fun,\\but they make it easy to fall out.\\Don't over "
"accelerate and you will\\be able to stay in control."
msgstr "Rampy mogą dostarczyć dużo frajdy,\\ale łatwo z nich wypaść.\\Nie przyspiesz za bardzo,\\a będziesz w stanie kontrolować piłkę."

#: data/map-easy/fence.map
msgid ""
"''Flat'' is relative.\\Learn to hold the floor at an angle\\so that a slope "
"remains level.\\This way, you maintain full control of the ball.\\Use "
"momentum to get up to the big coins.\\"
msgstr "\"Poziom\" jest relatywny.\\Naucz się utrzymywać podłoże pod kątem,\\dzięki czemu pochyłość pozostaje w poziomie.\\W ten sposób masz pełną kontrolę nad piłką.\\Użyj przyspieszenia, aby zdobyć duże monety."

#: data/map-easy/goals.map
msgid ""
"There are 100 coins here.\\This one shouldn't be too difficult,\\if you "
"don't accidentally make a goal first.\\"
msgstr "Masz 100 monet do zebrania.\\Nie powinno być to trudne, chyba\\że przypadkowo trafisz wcześniej w cel.\\"

#: data/map-easy/goslow.map
msgid ""
"Tilt the floor as little as possible.\\Less tilt means lower speed.\\Lower "
"speed means better control.\\Watch the clock and use the time wisely.\\"
msgstr "Przechyl podłoże tak mało, jak to możliwe. Mniejsze przechylenie oznacza mniejszą prędkość. Mniejsza prędkość to lepsza kontrola. Obserwuj zegar i roztropnie korzystaj z czasu."

#: data/map-easy/greed.map
msgid ""
"Each bridge is narrower than the one before.\\But each pays better than the "
"last as well!\\You get to decide how far you go on this one.\\"
msgstr "Każdy kolejny most jest węższy od poprzedniego,\\jednak idzie za tym również większa zapłata!\\Możesz sam zadecydować, jak daleko zajdziesz.\\"

#: data/map-easy/groundbreak.map
msgid ""
"Getting to the goal\\shouldn't be a problem,\\but getting all of the coins "
"will\\require some planning.\\\\Hint: often it is faster to avoid\\a hole "
"instead of falling into it."
msgstr "Otrzymanie wystarczającego wyniku\\nie powinno być problemem, lecz zebranie\\wszystkich monet wymaga nieco planowania.\\Podpowiedź: często szybciej jest\\uniknąć dziury, niż w nią wpaść."

#: data/map-easy/hole.map
msgid ""
"Stay away from the edges!\\When approaching a drop, begin slowing "
"down\\early. You need just as much room to slow\\down as you did to speed "
"up.\\"
msgstr "Trzymaj się z dala od krawędzi! Podczas przybliżania\\się do przepaści, zacznij zwalniać odpowiednio\\wcześniej. Potrzebujesz na to tyle samo miejsca,\\ile konieczne było wcześniej do przyspieszenia.\\"

#: data/map-easy/lollipop.map
msgid ""
"Follow the yellow lick road!\\\\The blue coins are especially "
"challenging,\\but with some experimentation and practice,\\you'll be able to"
" collect them all."
msgstr "Podążaj za żółtą ścieżką!\\\\Niebieskie monety są szczególnie wymagające,\\ale mając nieco doświadczenia\\i praktyki można zebrać wszystkie."

#: data/map-easy/maze.map
msgid ""
"The ball wants to rebound uncontrollably\\in a narrow passage. Keep it slow "
"and\\off the walls. All the coins are collectable\\in the given time.\\"
msgstr "Piłka będzie chciała odbić się w sposób\\niekontrolowany w wąskim przejściu. Przemieszczaj \\się powoli i nie zbliżaj się do ścian. W podanym czasie\\można zebrać wszystkie monety.\\"

#: data/map-easy/mazebump.map
msgid ""
"Puzzling but profitable.\\\\Take time to observe the motions\\of the bumpers"
" - it will help you\\to reach the goal."
msgstr "Mała łamigłówka, lecz całkiem opłacalna.\\\\Obserwuj przez chwilę ruch odbijaczy\\- pomoże Ci to osiągnąć cel."

#: data/map-easy/mover.map
msgid ""
"A moving platform can be tricky.\\Use precise timing to get aboard,\\and "
"precise balance to stay there.\\Don't let it move out from under you.\\Ride "
"the platforms to grab the big coins.\\"
msgstr "Przesuwające się platformy mogą być trudne.\\Precyzyjnie dobierz czas, aby je osiągnąć\\i równie precyzyjnie staraj się\\balansować, aby tam pozostać.\\Nie pozwól im uciec spod siebie. Skorzystaj\\z platform, aby zebrać najcenniejsze monety."

#: data/map-easy/peasy.map
msgid ""
"Mouse buttons rotate the view.\\Press Escape to pause or quit.\\\\\\\\Click "
"to begin.\\"
msgstr "Klawisze myszy obracają widok.\\Klawisz Esc pauzuje grę lub wychodzi z niej.\\\\\\\\Kliknij, aby rozpocząć grę."

#: data/map-easy/roundcoins.map
msgid ""
"When you are on the elevators,\\make small adjustments to keep the ball "
"steady.\\You can collect many coins by\\keeping the ball in one place.\\Too "
"much movement and you will fall off."
msgstr "Gdy jesteś w windach, wykonuj niewielkie ruchy,\\aby w nich pozostać. Możesz zebrać dużo\\monet trzymając piłkę w jednym miejscu.\\Zbyt gwałtowne zrywy - i wypadniesz."

#: data/map-easy/roundlaby.map
msgid ""
"There is only one path to reach the goal,\\but lots of paths for collecting "
"coins.\\Make sure you collect enough\\to unlock the goal."
msgstr "Jest tylko jedna droga do celu, lecz wiele\\- aby zbierać monety. Upewnij się, że masz\\wystarczająco dużo, aby odblokować cel."

#: data/map-easy/slalom.map
msgid ""
"Follow the trail of coins to reach the goal.\\If you hit a post while moving"
" quickly,\\you will bounce far off course."
msgstr "Przemieszczaj się szpalerem monet, aby osiągnąć\\cel. Jeśli uderzysz w słupek podczas zbyt\\szybkiego ruchu - wypadniesz poza trasę."

#: data/map-easy/slightcurve.map
msgid "Hills require more speed to get over.\\Be careful not to go too fast!"
msgstr "Wturlanie się na wzgórza, wymaga większej prędkości.\\Uważaj, aby jednak nie przesadzić!"

#: data/map-easy/speedbumps.map
msgid ""
"When the ball is on a moving platform,\\it will be pulled in the direction "
"of movement.\\Use the rails to steady yourself,\\and collect the coins you "
"need\\to open the goal."
msgstr "Gdy piłka znajduje się na ruchomej platformie,\\jest przesuwana w kierunku jej ruchu. Użyj barier,\\aby ustabilizować piłkę i zbierz monety\\potrzebne do odblokowania celu."

#: data/map-easy/thwomp2.map
msgid "Grab all the coins...\\but don't get bullied!"
msgstr "Zbierz wszystkie monety... lecz nie daj się zrzucić!"

#: data/map-easy/wakka.map
msgid ""
"Here's another coin grab.\\Perhaps you already know a good "
"route.\\Teleportation might come in handy.\\"
msgstr "Oto kolejny poziom dla zbieraczy monet.\\Pewnie znasz już dobrą drogę.\\Teleportacja może się przydać."

#: data/map-fwp/adventure.map
msgid "=Adventure=\\Many things to do, coins to collect, risks to take."
msgstr "=Przygoda=\\Wiele rzeczy do zrobienia, monety\\do zebrania, ryzyko do podjęcia."

#: data/map-fwp/atrium.map
msgid "=Atrium=\\Remove the coins from their columns."
msgstr "=Atrium=\\Zbierz monety z kolumn."

#: data/map-fwp/buoys.map
msgid "=Buoys=\\He who controls the timers, controls the gates."
msgstr ""

#: data/map-fwp/cargo.map
msgid "=Cargo=\\Let yourself be carried away."
msgstr "=Dostawa=\\Daj się doprowadzić."

#: data/map-fwp/confetti.map
msgid "=Confetti=\\Help! There has got to be a way through this mess."
msgstr "=Confetti=\\Pomocy! Musi być jakaś droga przez ten rozgardiasz."

#: data/map-fwp/discs.map
msgid "=Discs=\\Used correctly, the platforms will take you to the goal."
msgstr "=Dyski=\\Poprawnie użyte platformy pozwolą Ci dotrzeć do celu."

#: data/map-fwp/inferno.map
msgid "=Inferno=\\The fire thwomps will try to foil your mission."
msgstr ""

#: data/map-fwp/ladybirds.map
msgid "=Ladybirds=\\Don't let them bug you."
msgstr ""

#: data/map-fwp/mountains.map
msgid "=Mountains=\\Ups and downs are a part of life."
msgstr "=Góry=\\Wzloty i upadki są częścią życia."

#: data/map-fwp/museum.map
msgid "=Museum=\\Please do not touch the exhibits."
msgstr "=Muzeum=\\Proszę nie dotykać eksponatów."

#: data/map-fwp/oddities.map
msgid "=Oddities=\\Something is not quite right here..."
msgstr "=Dziwności=\\Coś tu jest nie tak..."

#: data/map-fwp/rails.map
msgid "=Rails=\\Do not lose your balance."
msgstr "=Kolej=\\Nie strać równowagi."

#: data/map-fwp/ramps.map
msgid "=Ramps=\\Can you make it to the top?"
msgstr "=Rampy=\\Czy dotrzesz na szczyt?"

#: data/map-fwp/rings.map
msgid "=Rings=\\Roll your way through this trap."
msgstr ""

#: data/map-fwp/slope.map
msgid "=Slope=\\Try not to become a modern-day Sisyphus."
msgstr "=Stok=\\Nie stań się współczesnym Syzyfem."

#: data/map-fwp/spacetime.map
msgid "=Spacetime=\\Not much space, not much time."
msgstr "=Czasoprzestrzeń=\\Mało przestrzeni, mało czasu."

#: data/map-fwp/swarm.map
msgid "=Swarm=\\Warning: Trespassers will be thwomped."
msgstr "=Rój=\\Ostrzeżenie: Intruzi zostaną thwompnięci."

#: data/map-fwp/tennis.map
msgid "=Tennis=\\There is plenty of prize money, and it's up for grabs."
msgstr "=Tenis=\\Jest tu sporo nagród,\\które czekają na swego zdobywcę."

#: data/map-fwp/tree.map
msgid "=Tree=\\Follow the spiral staircase to the goal."
msgstr "=Drzewo=\\Spiralna pochylnia doprowadzi Cię do celu."

#: data/map-fwp/ufo.map
msgid "=UFO=\\Ride the spaceship they don't want you to know about."
msgstr "=UFO=\\Wsiądź na pojazd, o którym powinieneś nie wiedzieć."

#: data/map-hard/airways.map
msgid "2 switches have to be enabled\\to open the path to the goal."
msgstr "Aby otworzyć ścieżkę prowadzącą do celu, trzeba włączyć dwa przełączniki."

#: data/map-hard/check.map
msgid "There's not enough floor here.\\Hopefully that's not a problem.\\"
msgstr "Nie ma tu zbyt dużo podłoża. Ale to chyba nie problem?"

#: data/map-hard/curbs.map
msgid ""
"To make progress here you'll need to hit the\\edges hard and control your "
"bouncing.\\It's often easiest to hit the curb at a corner.\\"
msgstr "W tym poziomie, konieczne jest mocne wybicie się\\od krawędzi i kontrolowanie odbijania się. Najłatwiejsze\\może okazać się skorzystanie z narożników krawężnika.\\"

#: data/map-hard/flip.map
msgid ""
"Thus Neverball is a puzzle game?\\Remove the red to unlock the goal.\\Each "
"trigger switches colors in direct contact."
msgstr "Zatem Neverball jest grą logiczną?\\Usuń czerwień, aby odblokować cel.\\Bezpośrednie dotknięcie każdego przełącznika\\przełącza kolory."

#: data/map-hard/frogger.map
msgid "Ribbit!\\"
msgstr "Rege, rege, kum!\\"

#: data/map-hard/gaps.map
msgid ""
"Time the switches carefully to synchronize\\the motion of the "
"platforms.\\Move quickly across the gaps.\\"
msgstr "Konieczne jest dobranie momentu aktywacji\\przełączników do ruchu platform. Szybko\\przemieść się przez luki."

#: data/map-hard/grid.map
msgid "Yes, the ball does fit quite nicely through\\those little holes.\\"
msgstr "O tak, piłka idealnie mieści się\\między tymi niewielkimi dziurami.\\"

#: data/map-hard/hallways.map
msgid ""
"Control your speed and your bounces.\\Teleporters will always bring "
"you\\back somewhere in the level."
msgstr "Kontroluj prędkość i odbicia.\\Teleporty zawsze przeniosą Cię gdzieś\\do wcześniejszego miejsca poziomu."

#: data/map-hard/hump.map
msgid "Momentum may work against you.\\"
msgstr "Przyspieszenie może działać na Twoją niekorzyść.\\"

#: data/map-hard/invis.map
msgid ""
"Allow your greed to guide you.\\For an added challenge,\\try to get to all "
"of the coins.\\It can be done without guesswork.\\"
msgstr "Kluczem do sukcesu jest chciwość.\\Możesz podjąć wyzwanie zebrania wszystkich monet.\\Unikniesz w ten sposób zgadywanki.\\"

#: data/map-hard/movers.map
msgid "Go for a ride.\\"
msgstr "Czas na przejażdżkę.\\"

#: data/map-hard/nostairs.map
msgid ""
"There are two goals here.\\You can complete this level\\the easy way or the "
"hard way.\\Of course, by going the easy way\\you can forget about all\\those"
" red and blue coins."
msgstr "Są dwa cele do osiągnięcia.\\Możesz skorzystać z łatwiejszej lub trudniejszej drogi.\\Wybierając pierwszą, możesz zapomnieć o wszystkich\\czerwonych i niebieskich monetach."

#: data/map-hard/paths.map
msgid "So many different paths to take...\\have you tried all of them?"
msgstr "Tak wiele dróg do wyboru...\\czy wypróbowałeś wszystkie?"

#: data/map-hard/pipe.map
msgid "Ceci n'est pas une pipe.\\"
msgstr "Ceci n'est pas une pipe.\\"

#: data/map-hard/poker.map
msgid "Slow and steady.\\"
msgstr "Powoli i spokojnie.\\"

#: data/map-hard/pyramid.map
msgid ""
"You'll only get about 15 seconds at each step,\\so don't delay.  Get the "
"coins and\\get to the next switch.\\"
msgstr "Masz tylko około 15 sekund na każdy krok,\\więc nie ociągaj się. Zbierz monety\\i zmierzaj do następnego przełącznika.\\"

#: data/map-hard/quads.map
msgid "Don't get bullied.\\"
msgstr "Nie daj się zastraszyć.\\"

#: data/map-hard/rampup.map
msgid "I think I can.\\I think I can.\\"
msgstr "Uda się.\\Uda się.\\"

#: data/map-hard/ring.map
msgid "So close, yet so very far.\\"
msgstr "Tak blisko, a tak daleko.\\"

#: data/map-hard/risers.map data/map-misc/edge-test.map
msgid ""
"Ride the elevators to the top.\\They move quickly,\\so don't dally too "
"long.\\"
msgstr "Wyjedź na górę za pomocą wind.\\Są szybkie, więc nie marnuj czasu\\"

#: data/map-hard/spiralin.map
msgid "Have fun picking up those\\red and blue coins.\\"
msgstr "Dobrej zabawy przy zbieraniu\\czerwonych i niebieskich monet.\\"

#: data/map-hard/spread.map
msgid "Don't worry.\\The green part isn't going anywhere.\\"
msgstr "Nie martw się.\\Zielona część nigdzie Ci nie ucieknie.\\"

#: data/map-hard/sync.map
msgid ""
"Use the switches to set the platforms\\in motion.  Time it so they "
"come\\together in the middle.\\"
msgstr "Użyj przełączników, aby wprawić platformy\\w ruch. Zrób to tak, aby\\spotkały się na środku."

#: data/map-hard/teleport.map
msgid ""
"The ball must be entirely within a teleporter\\in order to trigger "
"it.\\Remember that the ball carries its momentum\\through a teleporter, so "
"plan ahead.\\"
msgstr "Piłka musi być dokładnie wewnątrz teleportu,\\aby go uruchomić. Pamiętaj, że piłka zachowuje\\swą prędkość podczas teleportowania,\\więc planuj z wyprzedzeniem.\\"

#: data/map-hard/tilt.map
msgid "The floor is as flat as you make it.\\"
msgstr "Podłoże jest tak płaskie, jak chcesz.\\"

#: data/map-medium/accordian.map
msgid "Stairway to heaven"
msgstr "Schody do nieba"

#: data/map-medium/angle.map
msgid ""
"Those bridges are angled.\\Each is narrower and steeper than the last.\\Take"
" the easy cash or\\go all the way for a big payoff.\\"
msgstr "Mostki są łukowate.\\Każdy jest węższy i ostrzejszy od poprzedniego.\\Zbierz łatwą kasę lub\\idź na całość na duże pieniądze.\\"

#: data/map-medium/coneskeleton.map
msgid "Plenty of coins for the taking.\\Can you take them all?"
msgstr "Dużo kasy do zebrania.\\Nabijesz sakiewkę do pełna?"

#: data/map-medium/cross.map
msgid ""
"Use momentum to reach\\the upper platforms,\\but keep the ball in "
"control\\for safe landing.\\\\The manual view may help here.\\"
msgstr "Użyj przyspieszenia aby dotrzeć\\do wyższych platform, lecz utrzymuj\\piłkę w ryzach, aby bezpiecznie\\wylądować. Widok ręczny może\\okazać się przydatny.\\"

#: data/map-medium/drops.map
msgid ""
"Remember to keep an eye on the shadow to\\help control a bouncing ball.  And"
" don't\\forget to use the mouse buttons to keep the\\ball in view.\\"
msgstr "Pamiętaj, aby obserwować cień w celu\\lepszej kontroli odbijającej się piłki.\\Nie zapomnij o używaniu przycisków myszy,\\aby utrzymywać dobry widok.\\"

#: data/map-medium/easytele.map
msgid "Use teleporters to go\\where you otherwise couldn't.\\"
msgstr "Użyj teleportów, aby dotrzeć tam,\\gdzie nie inaczej się nie da.\\"

#: data/map-medium/four.map
msgid "Balance risk versus reward.\\"
msgstr "Balansowanie kontra nagroda.\\"

#: data/map-medium/hardrise.map
msgid "Ascend the slope to reach your goal.\\(Easier said than done.)"
msgstr "Wespnij się na pochyłość, aby osiągnąć cel\\(łatwiej powiedzieć niż zrobić)."

#: data/map-medium/islands.map
msgid "Catch the train before it leaves the station.\\"
msgstr "Złap pociąg, zanim Ci ucieknie.\\To nie PKP - nasze pociągi są punktualne.\\"

#: data/map-medium/learngrow.map
msgid ""
"The ball will fit in those small holes,\\if you can just find something to "
"make it smaller.\\Other places may require a bigger ball.\\One thing is "
"certain - you'll want a plan!"
msgstr "Piłka zmieści się w te niewielkie otwory,\\jeśli tylko znajdziesz coś, co ją zmniejszy.\\Inne miejsca mogą wymagać większej piłki.\\Jedno jest pewne - potrzebujesz planu!"

#: data/map-medium/locks.map
msgid "Hit the switches to move the barriers.\\"
msgstr "Użyj przełączników, aby przesunąć bariery.\\"

#: data/map-medium/multicurves.map
msgid ""
"The temptation to move quickly\\could prove your undoing.\\\\Then again, "
"maybe not..."
msgstr "Pokusa osiągnięcia dużej\\szybkości może doprowadzić Cię donikąd.\\\\Chociaż czekaj, może nie..."

#: data/map-medium/plinko.map
msgid "Take it slowly.\\"
msgstr "Po-wo-li.\\"

#: data/map-medium/qbert.map
msgid "You can never go home again..."
msgstr "Góralu, czy ci nie żal..."

#: data/map-medium/rampdn.map
msgid ""
"You'll need to exert some control over your\\view here.  Press 3 to stop the"
" auto-rotation.\\Use the mouse buttons to rotate it manually.\\Press 1 to "
"return to the auto-rotating view.\\"
msgstr ""

#: data/map-medium/roundfloors.map
msgid ""
"This wedding cake is plenty rich,\\but be careful as you go\\to each lower "
"layer."
msgstr "Ten tort jest całkiem bogaty,\\lecz uważaj podczas przechodzenia\\na niższą warstwę."

#: data/map-medium/sparselines.map
msgid ""
"Bump the logs at speed to change lanes.\\Try to reach the top for an extra "
"challenge!"
msgstr "Przeskocz przez kloc przy dużej szybkości,\\aby zmienić ścieżkę. Dodatkowym wyzwaniem będzie\\osiągnięcie samego wierzchołka!"

#: data/map-medium/spiraldn.map
msgid ""
"Take it slow to keep it away from the edge.\\Or, don't.\\Either way might "
"work.\\"
msgstr "Poruszaj się powoli i z dala od krawędzi.\\Albo i nie.\\Oba sposoby mogą zadziałać.\\"

#: data/map-medium/spiralup.map
msgid "Just as before, but moving up instead of down.\\No cheating this time.\\"
msgstr "Jak poprzednio, lecz w drugą stronę.\\Tym razem bez oszustw.\\"

#: data/map-medium/stairs.map
msgid ""
"Here's yet another test of your ability\\to control bouncing.  Moving down "
"the\\stairs too quickly can be hazardous.\\"
msgstr "Oto kolejny test na twe zdolności\\kontroli odbijania się. Zbyt szybkie\\zjeżdżanie ze schodów może być ryzykowne.\\"

#: data/map-medium/telemaze.map
msgid ""
"This maze has no walls.\\But that doesn't make the solution\\any easier to "
"find.\\"
msgstr "Ten labirynt jest pozbawiony ścian.\\Wcale nie ułatwia to znalezienia rozwiązania.\\"

#: data/map-medium/timer.map
msgid ""
"That one switch controls all five barriers.\\Be quick, because the switch is"
" on a timer.\\When it expires, the barriers will rise.\\"
msgstr "Jeden przełącznik odpowiada za wszystkie pięć barier.\\Bądź szybki, ponieważ przełącznik ma zegar.\\Gdy czas minie, bariery ponownie się uniosą.\\"

#: data/map-medium/title.map
msgid "Neverball\\\\http://neverball.org\\\\Created by Robert Kooima\\"
msgstr "Neverball\\\\http://neverball.org\\\\Twórca: Robert Kooima\\"

#: data/map-medium/woodmaze.map
msgid "Follow the trail of coins\\to make it through the labyrinth."
msgstr "Monety doprowadzą cię do\\wyjścia z labiryntu."

#: data/map-medium/zigzag.map
msgid ""
"There are plenty of coins here if you're\\willing to take the time to grab "
"them.\\"
msgstr "Jest tu sporo monet do zebrania,\\jeśli poświęcisz im trochę czasu.\\"

#: data/map-misc/bigball-old.map
msgid ""
"Prisonnier de la boule.\\Living in a sphere.\\Catching all blue coins is a "
"challenge."
msgstr "Prisonnier de la boule.\\Więzień kuli.\\Zebranie wszystkich niebieskich monet jest prawdziwym wyzwaniem."

#: data/map-misc/billiard.map
msgid "Try to grab all of the blue coins...\\it won't be easy!"
msgstr "Spróbuj zebrać wszystkie niebieskie monety...\\to nie będzie łatwe!"

#: data/map-misc/blockers.map
msgid "Block around the clock."
msgstr "Block around the clock."

#: data/map-misc/bounce.map
msgid ""
"Follow the blue coins...\\and learn to control your bounce!\\Hint: Use the "
"'chase' camera mode."
msgstr "Podążaj za niebieskimi monetami...\\i naucz się kontrolować swe odbicia!\\Podpowiedź: użyj widoku \"podążającego\""

#: data/map-misc/bounce2.map
msgid "Follow the arrows."
msgstr "Strzałki wskażą Ci drogę."

#: data/map-misc/checkers.map
msgid ""
"It's a real game of checkers, but no one wins...\\You have to bounce to "
"reach the blue coins."
msgstr "To prawdziwe warcaby, lecz nikt nie wygrywa...\\Musisz się odbić, aby zebrać niebieskie monety."

#: data/map-misc/elevator.map
msgid "Calm and meditation may bring you to the Nirvana."
msgstr "Skupienie i medytacja mogą doprowadzić Cię do Nirwany."

#: data/map-misc/freefall-old.map
msgid "Savoir chuter.\\Follow the blue markers."
msgstr "Savoir chuter.\\Podążaj za niebieskimi wskaźnikami."

#: data/map-misc/grow_demo.map
msgid "Use the new coins to change ball size!\\I hope you like it!\\-Dave"
msgstr "Użyj nowych monet do zmiany rozmiaru piłki!\\Mam nadzieję, że Ci się podoba!\\-Dave"

#: data/map-misc/groweasy.map
msgid "There are special coins which can make your\\ball larger or smaller."
msgstr "Są tu specjalne monety, które zwiększają\\lub zmniejszają Twoją piłkę."

#: data/map-misc/ocean.map
msgid "Let's go for a swim...\\all the coins are fully submerged.\\"
msgstr "Czas popływać...\\wszystkie monety są całkowicie zatopione.\\"

#: data/map-misc/stairs.map
msgid "Fall down stairs.\\Ough!\\It hurts."
msgstr "Upadek ze schodów.\\Auć!\\To boli."

#: data/map-misc/thwomp1.map
msgid "Just let it happen...\\then start to worry!"
msgstr "Niech się dzieje co chce...\\a martwić będziemy się później!"

#: data/map-misc/timer-test_2.map
msgid "Another test for timer accuracy."
msgstr ""

#: data/map-mym/assault.map
msgid "Le parcours du combattant.\\Ready for the assault course?"
msgstr "Le parcours du combattant.\\Gotowy na kurs desantowy?"

#: data/map-mym/circuit1.map
msgid "La course effrénée.\\Let's run some laps."
msgstr ""

#: data/map-mym/circuit2.map
msgid "Les rampes abruptes.\\Control your speed."
msgstr "Les rampes abruptes.\\Kontroluj swą prędkość."

#: data/map-mym/climb.map
msgid "L'escalade ardue.\\Do you suffer from vertigo?"
msgstr "L'escalade ardue.\\Kręci Ci się w głowie?"

#: data/map-mym/comeback.map
msgid "Le cycle éternel.\\Avoid teleporters..."
msgstr "Le cycle éternel.\\Unikaj teleportów..."

#: data/map-mym/dance1.map
msgid "La ballade tranquille.\\What a quiet walk."
msgstr "La ballade tranquille.\\Phi! Spacerek."

#: data/map-mym/dance2.map
msgid ""
"La ballade dansante.\\Let's dance on the moving platform!\\Tip: After "
"activating the last moving platform,\\ turn around the Thwomp until the goal"
" is reachable."
msgstr "La ballade dansante.\\Tańcz na przesuwających się platformach!\\Wskazówka: po włączeniu ostatniej platformy,\\obracaj się wokół Thwompa,\\dopóki cel nie stanie się dostępny."

#: data/map-mym/descent.map
msgid "La descente infernale.\\Easy enough to start?"
msgstr "La descente infernale.\\Dobry początek?"

#: data/map-mym/drive1.map
msgid ""
"La conduite stressante.\\Attention:\\The platform under the ball moves "
"forward."
msgstr "La conduite stressante.\\Uwaga:\\Platforma pod piłką porusza się do przodu."

#: data/map-mym/drive2.map
msgid ""
"La conduite dangereuse.\\The platform under the ball moves quickly "
"forward.\\You would do well to advance."
msgstr "La conduite dangereuse.\\Platforma pod piłką porusza się\\w szybkim tempie naprzód.\\Musisz się postarać."

#: data/map-mym/earthquake.map
msgid "Le passage incertain.\\Isn't too easy?"
msgstr "Le passage incertain.\\Czy to nie za łatwe?"

#: data/map-mym/ghosts.map
msgid "Ghost Valley.\\Make 3 laps to open the goal."
msgstr "Dolina Duchów.\\Zrób trzy okrążenia, aby otworzyć cel."

#: data/map-mym/glasstower.map
msgid "La tour de verre.\\Find the way to the exit."
msgstr "La tour de verre.\\Znajdź drogę do wyjścia."

#: data/map-mym/hard.map
msgid "La maîtrise de Neverball.\\You still think Neverball is too easy?"
msgstr "La maîtrise de Neverball.\\Wciąż twierdzisz, że Neverball jest za łatwy?"

#: data/map-mym/loop1.map
msgid "Les boucles renversantes.\\Upside down!"
msgstr "Les boucles renversantes.\\Do góry nogami!"

#: data/map-mym/loop2.map
msgid ""
"Le contrôle des courbes.\\Find the right angle to turn,\\to jump and to "
"land..."
msgstr "Le contrôle des courbes.\\Znajdź właściwy kąt do obrotu,\\skoku i lądowania z telemarkiem..."

#: data/map-mym/maze1.map
msgid "Le chemin dissimulé.\\Test your memory."
msgstr "Le chemin dissimulé.\\Przetestuj swą pamięć."

#: data/map-mym/maze2.map
msgid ""
"Le labyrinthe fou.\\You know the way, you see it,\\so why are you taking "
"another one?"
msgstr "Le labyrinthe fou.\\Znasz drogę, widzisz ją,\\więc czemu wybierasz inną?"

#: data/map-mym/narrow.map
msgid ""
"Le sentier étroit.\\Patience and timing.\\Tip: maximise speed at the first "
"slope."
msgstr ""

#: data/map-mym/running.map
msgid "Les épreuves minutées.\\Run baby, run!"
msgstr "Les épreuves minutées.\\Run Forest, run!"

#: data/map-mym/scrambling.map
msgid ""
"Le petit cross.\\Let's go scrambling!\\Stick to the track to optimize speed."
msgstr "Le petit cross.\\Powspinajmy się!\\Aby osiągnąć dużą szybkość trzymaj się trasy."

#: data/map-mym/snow.map
msgid "La descente rafraîchissante.\\Not so fast, not so fast."
msgstr "La descente rafraîchissante.\\Wolniej, wolniej."

#: data/map-mym/trust.map
msgid "Le chemin de la foi.\\Self-confidence."
msgstr "Le chemin de la foi.\\Pewność siebie."

#: data/map-mym/turn.map
msgid "Le sens trigonométrique.\\Turn, wait and jump."
msgstr "Le sens trigonométrique.\\Obróć się, zaczekaj i skacz."

#: data/map-mym/up.map
msgid "L'ascension pressée.\\Only one piece of advice: don't stop!"
msgstr "L'ascension pressée.\\Tylko jedna rada: nie zatrzymuj się!"

#: data/map-mym2/backforth.map
msgid "Un va-et-vient frustrant.\\Remember the activation order."
msgstr "Un va-et-vient frustrant.\\Pamiętaj kolejność aktywacji."

#: data/map-mym2/basket.map
msgid "Street Neverball\\Choose your party and score 3 points."
msgstr "Uliczny Neverball\\Wybierz swą stronę i zdobądź 3 punkty."

#: data/map-mym2/bigball.map
msgid "La machine à circonvolutions.\\Easy, the goal is just above you."
msgstr "La machine à circonvolutions.\\To proste, cel jest zaraz ponad Tobą."

#: data/map-mym2/bigcone.map
msgid "Le grand cône.\\Living in a cone."
msgstr "Le grand cône.\\Życie w rożku."

#: data/map-mym2/bombman.map
msgid "Les flammes ardentes.\\Does this remind you of something?"
msgstr ""

#: data/map-mym2/bounces.map
msgid "Les sauts du célèbre plombier.\\Follow the coins."
msgstr "Les sauts du célèbre plombier.\\Podążaj za monetami."

#: data/map-mym2/fall.map
msgid ""
"Savoir rebondir pour aller plus haut.\\The Neverball Arena.\\Use the 2 "
"teleports to unlock and reach the goal."
msgstr "Savoir rebondir pour aller plus haut.\\Arena Neverball.\\Użyj 2 teleportów, aby odblokować i osiągnąć cel."

#: data/map-mym2/freefall.map
msgid ""
"This level is full of challenges:\\understand the level's "
"functioning,\\learn to fly and to survive,\\grab half of all coins to open "
"the goal,\\find and reach the goal,\\and more..."
msgstr "Ten poziom jest pełen wyzwań:\\zrozum jego działanie, naucz się\\latać i przetrwać, zbierz połowę\\monet, aby otworzyć cel, znajdź\\i osiągnij cel i ..."

#: data/map-mym2/grinder.map
msgid "Le petit moulin.\\The good timing to go in the cabin."
msgstr "Le petit moulin.\\Zsynchronizuj się z windą."

#: data/map-mym2/littlecones.map
msgid "Ne pas se laisser emporter dans le néant.\\Don't go too low."
msgstr "Ne pas se laisser emporter dans le néant.\\Nie zejdź za nisko."

#: data/map-mym2/longpipe.map
msgid ""
"Si si, ce tuyau a une fin.\\Living in a pipe.\\Tip: slow down for the last "
"jump!"
msgstr "Si si, ce tuyau a une fin.\\Życie w kanale.\\Wskazówka: zwolnij przed ostatnim skokiem!"

#: data/map-mym2/morenarrow.map
msgid "Plus dur que la difficulté.\\Good luck."
msgstr "Plus dur que la difficulté.\\Powodzenia."

#: data/map-mym2/movinglumps.map
msgid "Être patient.\\Not too hard."
msgstr "Être patient.\\Niezbyt trudne."

#: data/map-mym2/movingpath.map
msgid "Le passage éphémère.\\Trust the coins."
msgstr "Le passage éphémère.\\Zaufaj monetom."

#: data/map-mym2/push.map
msgid "Hé, on pousse pas !\\Not too fast, not too slow."
msgstr "Hé, on pousse pas !\\Nie za szybko, nie za wolno."

#: data/map-mym2/rainbow.map
msgid "Rainbow Road.\\Do 3 laps to open the goal."
msgstr ""

#: data/map-mym2/rodeo.map
msgid "Le rodéo de Neverball.\\You'll fall quickly."
msgstr "Le rodéo de Neverball.\\Spadniesz szybko."

#: data/map-mym2/runstop.map
msgid "J'y vais, ou j'y vais pas ?\\Do not dither."
msgstr "J'y vais, ou j'y vais pas ?\\Nie wahaj się."

#: data/map-mym2/shaker.map
msgid "Préparez un petit sac.\\The stomach-tester."
msgstr "Préparez un petit sac.\\Tester żołądka."

#: data/map-mym2/sonic.map
msgid "Un petit échauffement.\\Welcome to Mehdi's new set!"
msgstr ""

#: data/map-mym2/speed.map
msgid "Plus vite que la vitesse.\\The definition of speed."
msgstr ""

#: data/map-mym2/speeddance.map
msgid "La danse asiatique\\Trust the arrows."
msgstr ""

#: data/map-mym2/translation.map
msgid "Suis le mouvement.\\Warning, the road is moving."
msgstr "Suis le mouvement.\\Uwaga, droga się rusza."

#: data/map-mym2/updown.map
msgid "Tranquille, mais pas trop.\\Sync yourself to the elevators."
msgstr "Tranquille, mais pas trop.\\Zsynchronizuj się z windami."

#: data/map-mym2/webs.map
msgid "Les toiles attirantes.\\Get out of the webs."
msgstr "Les toiles attirantes.\\Wydostań się z sieci."

#: data/map-tones/bigtube.map
msgid "Speed is the name of the game."
msgstr ""

#: data/map-tones/blue.map
msgid "Tread carefully...\\and keep moving!\\"
msgstr ""

#: data/map-tones/bumperoo.map
msgid "Who's the boss around here anyway?"
msgstr ""

#: data/map-tones/canals.map
msgid "You might have to get wet\\if you want all the coins."
msgstr ""

#: data/map-tones/check.map
msgid "Keep your eye on the sky!\\but don't run out of time...\\"
msgstr ""

#: data/map-tones/city.map
msgid "Stepping stones."
msgstr ""

#: data/map-tones/discs.map
msgid "Work your way to the top."
msgstr ""

#: data/map-tones/easyian.map
msgid ""
"Collect 45 coins to unlock the goal.\\You can use the teleporter to gain "
"enough speed\\for the jump."
msgstr ""

#: data/map-tones/easyone.map
msgid "Control your speed\\to avoid a bumpy ride."
msgstr ""

#: data/map-tones/hotwheels.map
msgid "Learn the course and stick to the rails!"
msgstr ""

#: data/map-tones/hurdles.map
msgid "Let's start with an easy warm-up.\\Build speed and leap to the goal."
msgstr ""

#: data/map-tones/leaps.map
msgid "Look before you leap..."
msgstr ""

#: data/map-tones/marble.map
msgid "Mind your footing!"
msgstr ""

#: data/map-tones/marble.map
msgid "Watch your footing..."
msgstr ""

#: data/map-tones/runner.map
msgid "Walk the plank.\\After the teleport, go for speed!"
msgstr ""

#: data/map-tones/skiball.map
msgid "Ski Ball!\\\\Work your way from 10 to 100\\in sequence or you'll fall out."
msgstr ""

#: data/map-tones/swish.map
msgid "Timing is everything."
msgstr ""

#: data/map-tones/swoop.map
msgid "What goes down must come up!\\"
msgstr ""

#: data/map-tones/tonesmaze.map
msgid ""
"Make sure you are\\safely on a purple platform\\before 20 seconds have "
"elapsed!"
msgstr ""

#: data/map-tones/twisted.map
msgid "Afraid of heights?\\Try not to get dizzy."
msgstr ""

#: data/map-tones/waves.map
msgid "Surf's Up !!"
msgstr ""

#. Desktop entry comment
#: dist/neverball.desktop.in
msgid "A 3D arcade game with a ball"
msgstr "Trójwymiarowa gra zręcznościowa z piłką"

#. Desktop entry comment
#: dist/neverputt.desktop.in
msgid "A 3D mini golf game"
msgstr "Trójwymiarowa gra typu mini golf"

#. Translators,
#. Listed here are the Neverball materials (relative to the data directory)
#. that can be localised.  Each material <mtrl> has a corresponding JPG or PNG
#. texture.  To localise a material, create a localised texture for it (copy
#. the original texture <mtrl>.<ext> to <mtrl>-<lang-code>.<ext> and modify
#. it)
#. and translate the material name to match (from <mtrl> to
#. <mtrl>-<lang-code>).
#. Author's comments on the original mtrl/words texture:
#. "Courier New, 40pt, bold. The words are centered in cells of 256x64 pixels.
#. For the vertical centering, the x-height is used as the reference. Some
#. manual corrections were made; for example, the hyphen in 'Fall-out' was
#. shortened in order to increase the margin on each side of the word."
#. Those on GNU+Linux having the ImageMagick program suite installed may find
#. the provided scripts/gen-words.sh shell script useful.
msgid "mtrl/words"
msgstr "mtrl/words"

#. Translators,
#. These coin materials may be translated to the same texture path.
msgid "item/coin/coin"
msgstr "item/coin/zloty_coin"

msgid "item/coin/coin5"
msgstr "item/coin/coin5"

msgid "item/coin/coin10"
msgstr "item/coin/coin10"