File: ast.po

package info (click to toggle)
pingus 0.7.6-5.1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye
  • size: 31,636 kB
  • sloc: cpp: 42,076; xml: 2,319; lisp: 521; ruby: 455; ansic: 365; objc: 248; sh: 247; makefile: 143; python: 15
file content (2214 lines) | stat: -rw-r--r-- 60,612 bytes parent folder | download | duplicates (6)
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
# Asturian translation for pingus
# Copyright (c) 2011 Rosetta Contributors and Canonical Ltd 2011
# This file is distributed under the same license as the pingus package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2011.
#
msgid ""
msgstr ""
"Project-Id-Version: pingus\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2011-12-24 22:39+0100\n"
"PO-Revision-Date: 2011-09-18 18:50+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: Asturian <ast@li.org>\n"
"Language: ast\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2011-10-20 15:40+0000\n"
"X-Generator: Launchpad (build 14165)\n"

#: src/engine/display/screenshot.cpp:37
msgid "Screenshot: Saving screenshot to: "
msgstr ""

#: src/engine/display/screenshot.cpp:39
msgid "Screenshot: Screenshot is done."
msgstr ""

#: src/engine/display/screenshot.cpp:124 src/engine/display/screenshot.cpp:152
msgid "Screenshot: Couldn't write file: "
msgstr ""

#: src/editor/editor_screen.cpp:230
msgid "== Editor Help =="
msgstr ""

#: src/editor/editor_screen.cpp:248
msgid ""
"Select all\n"
"Clear Selection\n"
"Raise objects\n"
"Lower objects\n"
"Raise objects to top\n"
"Lower objects to bottom\n"
"Rotate 90 degree\n"
"Rotate 270 degree\n"
"Group selected objects\n"
"Ungroup selected objects\n"
msgstr ""

#: src/editor/editor_screen.cpp:271
msgid ""
"Flip object horizontaly\n"
"Flip object vertically\n"
"Delete all marked objects\n"
"Move objects by one pixel\n"
"Move objects by 32 pixel\n"
"Toggle background color\n"
"Increase/lower repeat\n"
msgstr ""

#: src/editor/editor_screen.cpp:282
msgid ""
"You should name your level files systematically, i.e. by their theme, their "
"number and your nickname:\n"
"\n"
"     <levelname><number>-<creator>.pingus\n"
"\n"
"So if you create your second level with a stone theme, call it: stone2-"
"yourname.pingus\n"
"\n"
"When you have created a level and want to have it included in the game mail "
"it to:\n"
"\n"
"     pingus-devel@nongnu.org\n"
"\n"
"Only levels published under the GPL are allowed into the game. The editor "
"automatically inserts a reference \n"
"to the GPL, if you want to have your level under a different license, you "
"have to change that reference.\n"
msgstr ""

#: src/editor/file_dialog.cpp:58
msgid "Datadir"
msgstr ""

#: src/editor/file_dialog.cpp:60
msgid "Userdir"
msgstr ""

#: src/editor/file_dialog.cpp:63
msgid "Open"
msgstr ""

#: src/editor/file_dialog.cpp:63
msgid "Save"
msgstr ""

#: src/editor/file_dialog.cpp:66 src/editor/message_box.cpp:35
msgid "Cancel"
msgstr ""

#: src/editor/file_dialog.cpp:77
msgid "Filename:"
msgstr ""

#: src/editor/file_dialog.cpp:78
msgid "Pathname:"
msgstr ""

#: src/editor/file_dialog.cpp:98
msgid "Open a level"
msgstr ""

#: src/editor/file_dialog.cpp:98
msgid "Save your level"
msgstr ""

#: src/editor/panel.cpp:171
msgid "New level"
msgstr ""

#: src/editor/panel.cpp:173
msgid "Open level..."
msgstr ""

#: src/editor/panel.cpp:175
msgid "Save level..."
msgstr ""

#: src/editor/panel.cpp:177
msgid "Save level as..."
msgstr ""

#: src/editor/panel.cpp:180
msgid "Play level..."
msgstr ""

#: src/editor/panel.cpp:183
msgid "Configure actions"
msgstr ""

#: src/editor/panel.cpp:185
msgid "Configure level"
msgstr ""

#: src/editor/panel.cpp:187
msgid "Display object properties"
msgstr ""

#: src/editor/panel.cpp:189
msgid "Show object insertion window"
msgstr ""

#: src/editor/panel.cpp:191
msgid "Show minimap"
msgstr ""

#: src/editor/panel.cpp:194
msgid "Duplicate the selected objects"
msgstr ""

#: src/editor/panel.cpp:196
msgid "Delete the selected objects"
msgstr ""

#: src/editor/panel.cpp:199
msgid "Raise object to top"
msgstr ""

#: src/editor/panel.cpp:201
msgid "Raise object"
msgstr ""

#: src/editor/panel.cpp:203
msgid "Lower object"
msgstr ""

#: src/editor/panel.cpp:205
msgid "Lower object to bottom"
msgstr ""

#: src/editor/panel.cpp:211
msgid "Flip object horizontally"
msgstr ""

#: src/editor/panel.cpp:213
msgid "Flip object vertically"
msgstr ""

#: src/editor/panel.cpp:216
msgid "Rotate object -90 degree"
msgstr ""

#: src/editor/panel.cpp:218
msgid "Rotate object 90 degree"
msgstr ""

#: src/editor/panel.cpp:227
msgid "Display help"
msgstr ""

#: src/editor/panel.cpp:229 src/editor/object_selector.cpp:174
#: src/pingus/screens/pingus_menu.cpp:74
msgid "Exit"
msgstr ""

#: src/editor/object_selector.cpp:165
msgid "Entrance"
msgstr ""

#: src/editor/object_selector.cpp:166
msgid "Groundpiece (ground)"
msgstr ""

#: src/editor/object_selector.cpp:167
msgid "Groundpiece (solid)"
msgstr ""

#: src/editor/object_selector.cpp:168
msgid "Groundpiece (bridge)"
msgstr ""

#: src/editor/object_selector.cpp:169
msgid "Groundpiece (transparent)"
msgstr ""

#: src/editor/object_selector.cpp:170
msgid "Groundpiece (remove)"
msgstr ""

#: src/editor/object_selector.cpp:171
msgid "Hotspot"
msgstr ""

#: src/editor/object_selector.cpp:172
msgid "Background"
msgstr ""

#: src/editor/object_selector.cpp:175
msgid "Liquid"
msgstr ""

#: src/editor/object_selector.cpp:176
msgid "Trap"
msgstr ""

#: src/editor/object_selector.cpp:177
msgid "Weather"
msgstr ""

#: src/editor/object_selector.cpp:178
msgid "Special Object"
msgstr ""

#: src/editor/object_selector.cpp:179
msgid "Prefab Object"
msgstr ""

#: src/editor/message_box.cpp:37
msgid "Replace"
msgstr ""

#: src/editor/object_properties.cpp:87 src/editor/object_properties.cpp:515
msgid "Object:"
msgstr ""

#: src/editor/object_properties.cpp:88 src/editor/object_properties.cpp:516
msgid "Nothing selected"
msgstr ""

#: src/editor/object_properties.cpp:97
msgid "Transparent"
msgstr ""

#: src/editor/object_properties.cpp:98
msgid "Solid"
msgstr ""

#: src/editor/object_properties.cpp:99
msgid "Ground"
msgstr ""

#: src/editor/object_properties.cpp:100
msgid "Bridge"
msgstr ""

#: src/editor/object_properties.cpp:101
msgid "Water"
msgstr ""

#: src/editor/object_properties.cpp:102
msgid "Lava"
msgstr ""

#: src/editor/object_properties.cpp:103
msgid "Remove"
msgstr ""

#: src/editor/object_properties.cpp:108
msgid "Direction:"
msgstr ""

#: src/editor/object_properties.cpp:110
msgid "Left"
msgstr ""

#: src/editor/object_properties.cpp:111
msgid "Misc"
msgstr ""

#: src/editor/object_properties.cpp:112
msgid "Right"
msgstr ""

#: src/editor/object_properties.cpp:117
msgid "ReleaseRate:"
msgstr ""

#: src/editor/object_properties.cpp:140
msgid "Para-X:"
msgstr ""

#: src/editor/object_properties.cpp:141
msgid "Para-Y:"
msgstr ""

#: src/editor/object_properties.cpp:149
msgid "Scroll-X:"
msgstr ""

#: src/editor/object_properties.cpp:150
msgid "Scroll-Y:"
msgstr ""

#: src/editor/object_properties.cpp:158
msgid "Owner Id:"
msgstr ""

#: src/editor/object_properties.cpp:162
msgid "Z-Pos:"
msgstr ""

#: src/editor/object_properties.cpp:169
msgid "Color:"
msgstr ""

#: src/editor/object_properties.cpp:181
msgid "Small Stars:"
msgstr ""

#: src/editor/object_properties.cpp:184
msgid "Middle Stars:"
msgstr ""

#: src/editor/object_properties.cpp:187
msgid "Large Stars:"
msgstr ""

#: src/editor/object_properties.cpp:195
msgid "Repeat:"
msgstr ""

#: src/editor/object_properties.cpp:211
msgid "Id:"
msgstr ""

#: src/editor/object_properties.cpp:215
msgid "Target Id:"
msgstr ""

#: src/editor/object_properties.cpp:220
msgid "Height:"
msgstr ""

#: src/editor/object_properties.cpp:521
msgid "Object: [Group]"
msgstr ""

#: src/editor/object_properties.cpp:522
msgid "Group not supported"
msgstr ""

#: src/editor/object_properties.cpp:527
msgid "Object: "
msgstr ""

#: src/pingus/pingus_main.cpp:172
msgid "[OPTIONS]... [FILE]"
msgstr ""

#: src/pingus/pingus_main.cpp:173
msgid ""
"Pingus is a puzzle game where you need to guide a bunch of little penguins "
"around the world."
msgstr ""

#: src/pingus/pingus_main.cpp:175
msgid "General Options:"
msgstr ""

#: src/pingus/pingus_main.cpp:177
msgid "Displays this help"
msgstr ""

#: src/pingus/pingus_main.cpp:179
msgid "Print version number and exit"
msgstr ""

#: src/pingus/pingus_main.cpp:181
msgid "Enable info level log output"
msgstr ""

#: src/pingus/pingus_main.cpp:183
msgid "Enable debug level log output"
msgstr ""

#: src/pingus/pingus_main.cpp:185
msgid "Disable all log output"
msgstr ""

#: src/pingus/pingus_main.cpp:187
msgid "Display Options:"
msgstr ""

#: src/pingus/pingus_main.cpp:189
msgid "Start in Window Mode"
msgstr ""

#: src/pingus/pingus_main.cpp:191
msgid "Start in Fullscreen"
msgstr ""

#: src/pingus/pingus_main.cpp:193
msgid "Use the given renderer (default: sdl)"
msgstr ""

#: src/pingus/pingus_main.cpp:195
msgid "Set the window resolution for pingus (default: 800x600)"
msgstr ""

#: src/pingus/pingus_main.cpp:197
msgid "Set the resolution used in fullscreen mode (default: 800x600)"
msgstr ""

#: src/pingus/pingus_main.cpp:199
msgid "Enable software cursor"
msgstr ""

#: src/pingus/pingus_main.cpp:201
msgid "Game Options:"
msgstr ""

#: src/pingus/pingus_main.cpp:203
msgid "Disable automatic scrolling"
msgstr ""

#: src/pingus/pingus_main.cpp:205
msgid "Enable drag'n drop scrolling"
msgstr ""

#: src/pingus/pingus_main.cpp:207
msgid "Sound Options:"
msgstr ""

#: src/pingus/pingus_main.cpp:209
msgid "Disable sound"
msgstr ""

#: src/pingus/pingus_main.cpp:211
msgid "Disable music"
msgstr ""

#: src/pingus/pingus_main.cpp:215
msgid "Select language to use with Pingus"
msgstr ""

#: src/pingus/pingus_main.cpp:217
msgid "List all available languages"
msgstr ""

#: src/pingus/pingus_main.cpp:221
msgid "Loads the level editor"
msgstr ""

#: src/pingus/pingus_main.cpp:223
msgid "Directory Options:"
msgstr ""

#: src/pingus/pingus_main.cpp:224 src/pingus/pingus_main.cpp:226
#: src/pingus/pingus_main.cpp:228
msgid "DIR"
msgstr ""

#: src/pingus/pingus_main.cpp:225
msgid "Load game datafiles from DIR"
msgstr ""

#: src/pingus/pingus_main.cpp:227
msgid "Load config files and store savegames in DIR"
msgstr ""

#: src/pingus/pingus_main.cpp:229
msgid "Load game modifications from DIR"
msgstr ""

#: src/pingus/pingus_main.cpp:231
msgid "Don't read ~/.pingus/config"
msgstr ""

#: src/pingus/pingus_main.cpp:232
msgid "FILE"
msgstr ""

#: src/pingus/pingus_main.cpp:233
msgid "Read config options from FILE"
msgstr ""

#: src/pingus/pingus_main.cpp:235
msgid "Uses the controller given in FILE"
msgstr ""

#: src/pingus/pingus_main.cpp:237
msgid "Debug Options:"
msgstr ""

#: src/pingus/pingus_main.cpp:239
msgid "Enables some special features for developers"
msgstr ""

#: src/pingus/pingus_main.cpp:241
msgid "Set the game speed (0=fastest, >0=slower)"
msgstr ""

#: src/pingus/pingus_main.cpp:243
msgid "Set the desired game framerate (frames per second)"
msgstr ""

#: src/pingus/pingus_main.cpp:245
msgid "Set the size of the map tiles (default: 32)"
msgstr ""

#: src/pingus/pingus_main.cpp:663
msgid "Pingus: Out of memory!"
msgstr ""

#: src/pingus/pingus_main.cpp:667
msgid "Pingus: Standard exception caught!:\n"
msgstr ""

#: src/pingus/pingus_main.cpp:671
msgid "Pingus: Unknown throw caught!"
msgstr ""

#: src/pingus/game_time.cpp:29
msgid "unlimited"
msgstr ""

#: src/pingus/actions/bridger.cpp:38 src/pingus/actions/bridger.cpp:196
#: src/pingus/action_name.cpp:32
msgid "Bridger"
msgstr ""

#: src/pingus/screens/start_screen.cpp:67
msgid "Play"
msgstr ""

#: src/pingus/screens/start_screen.cpp:111
#: src/pingus/screens/level_menu.cpp:50
msgid "Back"
msgstr ""

#: src/pingus/screens/start_screen.cpp:166
msgid "Number of Pingus: "
msgstr ""

#: src/pingus/screens/start_screen.cpp:169
msgid "Number to Save: "
msgstr ""

#: src/pingus/screens/start_screen.cpp:172
msgid "Time: "
msgstr ""

#: src/pingus/screens/start_screen.cpp:178
msgid "Author: "
msgstr ""

#: src/pingus/screens/addon_menu.cpp:53 src/pingus/screens/option_menu.cpp:336
msgid "Close"
msgstr ""

#: src/pingus/screens/pingus_menu.cpp:54
msgid "Story"
msgstr ""

#: src/pingus/screens/pingus_menu.cpp:55
msgid "..:: Start the game ::.."
msgstr ""

#: src/pingus/screens/pingus_menu.cpp:59
msgid "Editor"
msgstr ""

#: src/pingus/screens/pingus_menu.cpp:60
msgid "..:: Create your own levels ::.."
msgstr ""

#: src/pingus/screens/pingus_menu.cpp:64
msgid "Options"
msgstr ""

#: src/pingus/screens/pingus_menu.cpp:65
msgid "..:: Configure the game ::.."
msgstr ""

#: src/pingus/screens/pingus_menu.cpp:69 src/pingus/screens/level_menu.cpp:177
msgid "Levelsets"
msgstr ""

#: src/pingus/screens/pingus_menu.cpp:70
msgid "..:: Play User Built levels ::.."
msgstr ""

#: src/pingus/screens/pingus_menu.cpp:75
msgid "..:: Bye, bye ::.."
msgstr ""

#: src/pingus/screens/pingus_menu.cpp:87
msgid ""
"..:: Ctrl-g: mouse grab   ::   F10: fps counter   ::   F11: "
"fullscreen   ::   F12: screenshot ::.."
msgstr ""

#: src/pingus/screens/level_menu.cpp:155
msgid "Under Construction"
msgstr ""

#: src/pingus/screens/level_menu.cpp:156
msgid "Untested, unpolished and broken levels"
msgstr ""

#: src/pingus/screens/level_menu.cpp:192
msgid "Solved:"
msgstr ""

#: src/pingus/screens/level_menu.cpp:193
msgid "levels"
msgstr ""

#: src/pingus/screens/story_screen.cpp:108
#: src/pingus/screens/story_screen.cpp:114
msgid "skip"
msgstr ""

#: src/pingus/screens/option_menu.cpp:208
msgid "Fullscreen"
msgstr ""

#: src/pingus/screens/option_menu.cpp:209
msgid "Mouse Grab"
msgstr ""

#: src/pingus/screens/option_menu.cpp:211
msgid "Software Cursor"
msgstr ""

#: src/pingus/screens/option_menu.cpp:212
msgid "Autoscrolling"
msgstr ""

#: src/pingus/screens/option_menu.cpp:213
msgid "Drag&Drop Scrolling"
msgstr ""

#: src/pingus/screens/option_menu.cpp:215
msgid "Print FPS"
msgstr ""

#: src/pingus/screens/option_menu.cpp:219
msgid "Resolution:"
msgstr ""

#: src/pingus/screens/option_menu.cpp:220
msgid "Renderer:"
msgstr ""

#: src/pingus/screens/option_menu.cpp:222
msgid "Language:"
msgstr ""

#: src/pingus/screens/option_menu.cpp:224
msgid "Master Volume:"
msgstr ""

#: src/pingus/screens/option_menu.cpp:225
msgid "Sound Volume:"
msgstr ""

#: src/pingus/screens/option_menu.cpp:226
msgid "Music Volume:"
msgstr ""

#: src/pingus/screens/option_menu.cpp:334
msgid "Option Menu"
msgstr ""

#: src/pingus/screens/option_menu.cpp:340
msgid "Some options require a restart of the game to take effect."
msgstr ""

#: src/pingus/screens/result_screen.cpp:91
msgid "Give up"
msgstr ""

#: src/pingus/screens/result_screen.cpp:126
msgid "Retry"
msgstr ""

#: src/pingus/screens/result_screen.cpp:183
msgid "Success!"
msgstr ""

#: src/pingus/screens/result_screen.cpp:191
msgid "Failure!"
msgstr ""

#: src/pingus/screens/result_screen.cpp:200
msgid "Perfect! You saved everyone possible - great!"
msgstr ""

#: src/pingus/screens/result_screen.cpp:202
msgid "No-one got killed, pretty good work."
msgstr ""

#: src/pingus/screens/result_screen.cpp:204
msgid ""
"You saved exactly what you needed - you made it, but\n"
"maybe you can do better?"
msgstr ""

#: src/pingus/screens/result_screen.cpp:207
msgid "Not everybody was saved, but still good work!"
msgstr ""

#: src/pingus/screens/result_screen.cpp:209
msgid "What can I say, you made it - congratulations!"
msgstr ""

#: src/pingus/screens/result_screen.cpp:214
msgid "You killed everybody, not good."
msgstr ""

#: src/pingus/screens/result_screen.cpp:216
msgid "No-one got saved - I know you can do better."
msgstr ""

#: src/pingus/screens/result_screen.cpp:218
msgid ""
"You didn't save enough, but you saved a few.  Next\n"
"time you might do better."
msgstr ""

#: src/pingus/screens/result_screen.cpp:221
msgid "Only one more and you would have made it - try again!"
msgstr ""

#: src/pingus/screens/result_screen.cpp:223
msgid "Only a handful more and you would have made it - try again!"
msgstr ""

#: src/pingus/screens/result_screen.cpp:225
msgid "Better luck next time!"
msgstr ""

#: src/pingus/screens/result_screen.cpp:233
msgid "Saved: "
msgstr ""

#: src/pingus/screens/result_screen.cpp:237
msgid "Died: "
msgstr ""

#: src/pingus/screens/result_screen.cpp:240
msgid "Time left: "
msgstr ""

#: src/pingus/action_name.cpp:27
msgid "Angel"
msgstr ""

#: src/pingus/action_name.cpp:28
msgid "Basher"
msgstr ""

#: src/pingus/action_name.cpp:29
msgid "Blocker"
msgstr ""

#: src/pingus/action_name.cpp:30
msgid "Boarder"
msgstr ""

#: src/pingus/action_name.cpp:31
msgid "Bomber"
msgstr ""

#: src/pingus/action_name.cpp:33
msgid "Climber"
msgstr ""

#: src/pingus/action_name.cpp:34
msgid "Digger"
msgstr ""

#: src/pingus/action_name.cpp:35
msgid "Drown"
msgstr ""

#: src/pingus/action_name.cpp:36
msgid "Exiter"
msgstr ""

#: src/pingus/action_name.cpp:37
msgid "Faller"
msgstr ""

#: src/pingus/action_name.cpp:38
msgid "Floater"
msgstr ""

#: src/pingus/action_name.cpp:39
msgid "Jumper"
msgstr ""

#: src/pingus/action_name.cpp:40
msgid "Laserkill"
msgstr ""

#: src/pingus/action_name.cpp:41
msgid "Miner"
msgstr ""

#: src/pingus/action_name.cpp:42
msgid "Slider"
msgstr ""

#: src/pingus/action_name.cpp:43
msgid "Smashed"
msgstr ""

#: src/pingus/action_name.cpp:44
msgid "Splashed"
msgstr ""

#: src/pingus/action_name.cpp:45
msgid "Superman"
msgstr ""

#: src/pingus/action_name.cpp:46
msgid "Teleported"
msgstr ""

#: src/pingus/action_name.cpp:47
msgid "Waiter"
msgstr ""

#: src/pingus/action_name.cpp:48
msgid "Walker"
msgstr ""

#: src/pingus/components/pingus_counter.cpp:43
#, c-format, boost-format
msgid "Released:%3d/%d   Out:%3d   Saved:%3d/%d"
msgstr ""

#: src/pingus/worldmap/level_dot.cpp:134
msgid "???"
msgstr ""

#: src/pingus/worldmap/worldmap_screen.cpp:84
msgid "Show Ending?"
msgstr ""

#: src/pingus/worldmap/worldmap_screen.cpp:113
msgid "Leave?"
msgstr ""

#: data/levels/tutorial/basher-tutorial-grumbel.pingus:5
msgid "If the way is blocked, bash away"
msgstr ""

#: data/levels/tutorial/basher-tutorial-grumbel.pingus:6
msgid ""
"Similar to the Digger action that you already know from previous levels, "
"there is also an action that allows the Pingus to dig horizontally, as "
"opposed to the vertical dig ability the Digger action provides. This new "
"action is called Basher. "
msgstr ""

#: data/levels/tutorial/bomber-tutorial2-grumbel.pingus:5
msgid "Sacrifice a few and save the rest"
msgstr ""

#: data/levels/tutorial/bomber-tutorial2-grumbel.pingus:6
msgid ""
"Sometimes no other actions are available, so you have to bomb your way "
"through the ground. The Pingus can do this by actually self- destructing. "
"This will kill them, but it is sometimes necessary to sacrifice a few to "
"save the rest. "
msgstr ""

#: data/levels/tutorial/digger-tutorial2-grumbel.pingus:5
msgid "Learning to dig"
msgstr ""

#: data/levels/tutorial/digger-tutorial2-grumbel.pingus:6
msgid ""
"This is your first mission. As always, it's pretty easy. All you have to do "
"is to give a Pingu the command to dig a hole into the ground so that they "
"can reach the exit. This can be accomplished simply by clicking on a Pingu. "
msgstr ""

#: data/levels/tutorial/floater-tutorial-grumbel.pingus:5
msgid "Float or Die"
msgstr ""

#: data/levels/tutorial/floater-tutorial-grumbel.pingus:6
msgid ""
"Well done in mission one! Now let's start the next one. This time you will "
"need to equip your Pingus with a little propeller, so that they can float to "
"the ground smoothly. If Pingus fall too far, they will not be able to "
"survive the fall, so keep your eyes open! "
msgstr ""

#: data/levels/tutorial/jumper-tutorial-grumbel.pingus:5
msgid "Jump for joy"
msgstr ""

#: data/levels/tutorial/jumper-tutorial-grumbel.pingus:6
msgid ""
"Sometimes a Pingu needs to reach a platform that is far away, but not "
"reachable by walking. That's when the Jumper comes in handy - it allows the "
"Pingu to make a small jump and so enables him to reach the platform. "
msgstr ""

#: data/levels/tutorial/miner-tutorial2-grumbel.pingus:5
msgid "Miner's heaven"
msgstr ""

#: data/levels/tutorial/miner-tutorial2-grumbel.pingus:6
msgid ""
"Another action hits the street - another digging action, this time a "
"diagonal one. It allows a Pingu to dig diagonally through ground, thus "
"creating a path for following Pingus. The action is called Miner. "
msgstr ""

#: data/levels/tutorial/snow10-grumbel.pingus:5
msgid "Panic Island (float/bash)"
msgstr ""

#: data/levels/tutorial/snow10-grumbel.pingus:6
msgid ""
"While the previous levels have not required much quick action from you, this "
"one gets a bit trickier. The Pingus are coming out of two entrances in "
"parallel and it is your job to coordinate the two groups wisely. "
msgstr ""

#: data/levels/tutorial/snow11-grumbel.pingus:5
msgid "Jump'n Bump... and Bash..."
msgstr ""

#: data/levels/tutorial/snow11-grumbel.pingus:6
msgid ""
"It's panic time again. The Pingus will not come out very fast, but since "
"they turn around when they hit walls you will soon have some trouble "
"coordinating them all. Since you only need to save 5 it should be doable, "
"but if all else fails use the pause-mode ('p') to get an overview again. "
msgstr ""

#: data/levels/tutorial/snow12-grumbel.pingus:5
msgid "Two groups in parallel, coordinate wisely"
msgstr ""

#: data/levels/tutorial/snow12-grumbel.pingus:6
msgid ""
"You have two groups to coordinate this time. No need to panic, since this "
"level gives you enough time to think your actions through. No more tips this "
"time, but good luck! "
msgstr ""

#: data/levels/tutorial/snow14-grumbel.pingus:5
msgid "Block'a Rock"
msgstr ""

#: data/levels/tutorial/snow14-grumbel.pingus:6
msgid ""
"Once again it's time to combine the things you have learned in your previous "
"levels. Blast your way free and make sure you also keep the rest of the "
"Pingus under control. The Blocker action will be helpful."
msgstr ""

#: data/levels/tutorial/snow15-grumbel.pingus:5
msgid "Climb, Climber,... Boom!"
msgstr ""

#: data/levels/tutorial/snow15-grumbel.pingus:6
msgid ""
"As you might have already figured out from previous levels, you often have "
"to combine different actions to get the job done. Due to the lack of a "
"Digger action in this level the Bomber needs to jump in, but how can it "
"reach the place to bomb? "
msgstr ""

#: data/levels/tutorial/snow16-grumbel.pingus:5
msgid "Bridging gets more complicated..."
msgstr ""

#: data/levels/tutorial/snow16-grumbel.pingus:6
msgid ""
"Once again you have to combine actions carefully and wisely. If you don't "
"you could end up in the hole just before the exit, so think about how to "
"avoid that. "
msgstr ""

#: data/levels/tutorial/snow17-grumbel.pingus:5
msgid "If too high, your Pingu will die..."
msgstr ""

#: data/levels/tutorial/snow17-grumbel.pingus:6
msgid ""
"Teamwork is the way to the exit this time. You don't have enough Floaters to "
"reach the exit, so just send a few and let them prepare the path for the "
"rest. "
msgstr ""

#: data/levels/tutorial/snow19-grumbel.pingus:5
msgid "Learn to use the bridge"
msgstr ""

#: data/levels/tutorial/snow19-grumbel.pingus:6
msgid ""
"If no Jumper is at hand and a large hole needs to be passed, a bridge can be "
"pretty helpful. It takes some time to build, but unlike the jumper action it "
"allows following Pingus to reach the other end too. "
msgstr ""

#: data/levels/tutorial/snow20-grumbel.pingus:5
msgid "Three solutions, it's up to you"
msgstr ""

#: data/levels/tutorial/snow20-grumbel.pingus:6
msgid ""
"Now that you've learned all the actions, it's time for some more practice. "
"This level presents you with at least three different ways to solve it. It's "
"up to you which one you pick. "
msgstr ""

#: data/levels/tutorial/snow21-grumbel.pingus:5
msgid "Climb, Climber, climb... and build a bridge"
msgstr ""

#: data/levels/tutorial/snow21-grumbel.pingus:6
msgid ""
"Once again you get access to a new action. The Climber action allows a Pingu "
"to climb up straight walls, thus allowing him to reach stuff that might be "
"too high to reach by other means. "
msgstr ""

#: data/levels/tutorial/snow22-grumbel.pingus:5
msgid "Entrance high, Exit low"
msgstr ""

#: data/levels/tutorial/snow22-grumbel.pingus:6
msgid ""
"If you don't have enough floaters to bring all the Pingus down to the exit - "
"you have to find other ways to guide them down. You should have learned all "
"the stuff you need for this level in previous levels, so this shouldn't be "
"too much of a problem for you. "
msgstr ""

#: data/levels/tutorial/snow7-grumbel.pingus:5
msgid "One must prepare, the rest must follow"
msgstr ""

#: data/levels/tutorial/snow7-grumbel.pingus:6
msgid ""
"Sometimes there are situations where you don't have a Blocker at hand to "
"coordinate your Pingus. You'll have to find other ways to keep them under "
"control while a single one prepares the path for the rest. "
msgstr ""

#: data/levels/tutorial/snow8-grumbel.pingus:5
msgid "Dig and float, just don't fall and smash"
msgstr ""

#: data/levels/tutorial/snow8-grumbel.pingus:6
msgid ""
"Unlike the first two levels, you have two actions available in this level. "
"Your job is again simple: select an action at the panel on the left and "
"apply it to the Pingus so that they will be able to reach the exit. Make "
"sure that not too many of them die. "
msgstr ""

#: data/levels/tutorial/snow9-grumbel.pingus:5
msgid "Dig, bash and other problems"
msgstr ""

#: data/levels/tutorial/snow9-grumbel.pingus:6
msgid ""
"The more levels you master, the more difficult they will get, but don't "
"panic, as this one is still pretty easy. Just use the stuff that you've "
"learned in the previous levels and you shouldn't have many problems. If you "
"think you've reached a situation from which you can no longer solve the "
"level, double click the armageddon button at the lower right. "
msgstr ""

#: data/levels/tutorial/solid-tutorial-grumbel.pingus:5
msgid "Solid ground can block the path"
msgstr ""

#: data/levels/tutorial/solid-tutorial-grumbel.pingus:6
msgid ""
"As you have learned in earlier levels your Pingus can dig through basically "
"any terrain, but there is one material which they can't penetrate: steel. "
"These regions are marked dark grey on the level map and cannot be destroyed, "
"so you must find a way around them. "
msgstr ""

#: data/levels/halloween/halloween1-grumbel.pingus:5
msgid "One jump to catch them all"
msgstr ""

#: data/levels/halloween/halloween1-grumbel.pingus:6
msgid ""
"The pingus have found themselves lost on their journey.  What is this "
"mysterious place?  Smiling pumpkins, giant candlesticks, and some boiling "
"soup below... what wizardry is this? Now, facing a deadly abyss right in "
"front of them it's your job to save them. Can you save them from a terrible "
"fate?"
msgstr ""

#: data/levels/halloween/halloween2-grumbel.pingus:5
msgid "One Thousand and One Jumps"
msgstr ""

#: data/levels/halloween/halloween2-grumbel.pingus:6
msgid ""
"With the exit so high above and far out of reach for a normal Pingu, what "
"options are there? Perhaps a jumper can rescue them?  Or will he simply slow "
"their inevitable demise? It's your job to find out, but are you good enough "
"to save them all?"
msgstr ""

#: data/levels/halloween/halloween3-grumbel.pingus:5
msgid "Boom Boom"
msgstr ""

#: data/levels/halloween/halloween3-grumbel.pingus:6
msgid ""
"You've mastered the last challenge and now face the next. Their path to "
"salvation seems to be cursed, but by whom? There is no time to think about "
"it, since the next deadly challenge already awaits the Pingus. Two mighty "
"roots block the way, but without a basher at hand to bash them away, "
"sacrifice might be the only option..."
msgstr ""

#: data/levels/halloween/halloween4-grumbel.pingus:5
msgid "Full Circle"
msgstr ""

#: data/levels/halloween/halloween4-grumbel.pingus:6
msgid ""
"The exit is so close, yet out of reach. A step in the wrong direction and "
"the Pingus will fall to a terrible fate. You must do something to help them, "
"but is there enough time? You have to hurry and can't allow yourself any "
"mistakes. The Pingus are counting on you!"
msgstr ""

#: data/levels/halloween/halloween5-grumbel.pingus:5
msgid "Bridgers Nightmare"
msgstr ""

#: data/levels/halloween/halloween5-grumbel.pingus:6
msgid ""
"Who placed this monstrous wall here?  This terrible blockade separates your "
"Pingus from the exit. Destruction of its awful construction seems an "
"impossibility, but perhaps the bridger can come to the rescue?  Can they "
"build their bridges high enough to guide the group yet again safely to the "
"exit? Or is somebody playing evil mind tricks with you?\n"
"\n"
"Yet again the solution is your call... your gray matter is the key to the "
"Pingus' success, so don't let yourself get confused and misguided from the "
"true path."
msgstr ""

#: data/levels/halloween/halloween6-grumbel.pingus:5
msgid "Locked up by the witch"
msgstr ""

#: data/levels/halloween/halloween6-grumbel.pingus:6
msgid ""
"Is this a prison? Blocked by solid walls all around, there doesn't seem to "
"be a way to escape. Salvation seems impossible. But wait... the wall to the "
"right seems weak... perhaps this is a way to escape? Or is it a false path "
"that will lead to the Pingus' doom?\n"
"\n"
"This is a risky trip, but you must take it to find out how to bring them all "
"to freedom once again."
msgstr ""

#: data/levels/halloween/halloween7-grumbel.pingus:5
msgid "Splatterfest"
msgstr ""

#: data/levels/halloween/halloween7-grumbel.pingus:6
msgid ""
"This is by far the deepest pit the Pingus have yet encountered. Building a "
"bridge across it seems obvious but that won't help since the exit is deep "
"down in the pit itself. Pingus who try to go down the pit will just end up "
"splattered all over the ground. You have two groups of Pingus at your "
"disposal, can you make them work together to reach even an exit this well "
"hidden?"
msgstr ""

#: data/levels/halloween/halloween8-plouj.pingus:5
msgid "Staircase Maintenance"
msgstr ""

#: data/levels/halloween/halloween8-plouj.pingus:6
msgid ""
"It seems we are up again against a mighty wall, and it is blocking the exit! "
"But wait, some good soul has built a staircase around it. It seems, however, "
"that the poor fool's efforts didn't last long, as the staircase is destroyed "
"and full of holes. Can you fix it and make it over the wall? Yet of course "
"you know that the right solution might not be the obvious one. But your "
"Pingus are almost free, and they trust in your skill to guide them to safety "
"once more. Succeed and you will have freed them once and for all from "
"whatever evildoer that placed them in this nightmare... at least for this "
"year."
msgstr ""

#: data/levels/halloween2011/halloween10-grumbel.pingus:5
msgid "Down Into The Cave"
msgstr ""

#: data/levels/halloween2011/halloween10-grumbel.pingus:6
msgid ""
"The exit is far below and the pingus are separated from it by quite a "
"distance. The path down is riddled with gulfs, so jumping and bridging will "
"be the primary tool to get down there. But be careful, the last few steps "
"require some extra cleverness."
msgstr ""

#: data/levels/halloween2011/halloween11-grumbel.pingus:5
msgid "Round and Round"
msgstr ""

#: data/levels/halloween2011/halloween11-grumbel.pingus:6
msgid ""
"Trapped in an eternal loop one brave pingu has to break out and go on a "
"journey in search for the exit, but he mustn't be too happy once he found "
"it, as there is still one last challenge he must solve before being allowed "
"to enter it, otherwise all his friends might perish."
msgstr ""

#: data/levels/halloween2011/halloween12-grumbel.pingus:5
msgid "Red Herring Cave"
msgstr ""

#: data/levels/halloween2011/halloween12-grumbel.pingus:6
msgid ""
"The exit is right above the pingus heads, with a few friendly arrows "
"pointing the way. With jumpers around the solution should be obvious. But "
"wait, can anything you find in a dark cave be trusted or is there some more "
"going on which might slip your view? Thinking outside the box might be "
"required."
msgstr ""

#: data/levels/halloween2011/halloween13-grumbel.pingus:5
msgid "Group Coordination"
msgstr ""

#: data/levels/halloween2011/halloween13-grumbel.pingus:6
msgid ""
"Three groups are on their way to the exit, one of them trapped right above "
"it, but locked into a box. None of them can make it alone, coordinate them "
"wisely and everybody should be able to make it safely to the exit. "
msgstr ""

#: data/levels/halloween2011/halloween14-grumbel.pingus:5
msgid "Traps, Dangers and other Problems"
msgstr ""

#: data/levels/halloween2011/halloween14-grumbel.pingus:6
msgid ""
"The path to the exit lays below, shimmering through the planks. But the fall "
"is too high, deadly for sure. Can one pingu alone make it's way through the "
"dangerous traps and secure the path to the exit?"
msgstr ""

#: data/levels/halloween2011/halloween15-grumbel.pingus:5
msgid "Reach that Switch"
msgstr ""

#: data/levels/halloween2011/halloween15-grumbel.pingus:6
msgid ""
"The path to the exit is straight, flat and simple, but wait a solid door "
"blocking the way? How can the pingus open it? Is that a switch there on the "
"hill to the right? Might that be the solution to opening the door and "
"freeing the pingus? But how can they reach that switch?"
msgstr ""

#: data/levels/halloween2011/halloween16-grumbel.pingus:5
msgid "The Collapsed Column"
msgstr ""

#: data/levels/halloween2011/halloween16-grumbel.pingus:6
msgid ""
"High up above the green slime the pingus are moving from column to column, "
"getting closer to the exit with each step, but wait, there is a second group "
"of pingus, they are stuck. The column next to them has collapsed making "
"getting to the exit impossible. Can you find a way around the abyss?"
msgstr ""

#: data/levels/halloween2011/halloween17-grumbel.pingus:5
msgid "Island of Doom"
msgstr ""

#: data/levels/halloween2011/halloween17-grumbel.pingus:6
msgid ""
"The pingus are released close together, but split up by a solid metal column "
"with seemingly no way to join them back up. The journey will be dangerous "
"and some height has be crossed with the exit hidden below. With some "
"cleverness it should be possible to join those two groups back together."
msgstr ""

#: data/levels/halloween2011/halloween18-grumbel.pingus:5
msgid "Tower of Death"
msgstr ""

#: data/levels/halloween2011/halloween18-grumbel.pingus:6
msgid ""
"The pingus are at the top of the tower, with no stairway around. The exit is "
"deep down, hidden at the foot of the tower. How shall they make it down all "
"that height with no floaters sight? A few well placed diggers should be "
"enough to get the job done, but wait, no, their direction isn't quite right. "
"You have to give them directions or it will be their doom."
msgstr ""

#: data/levels/halloween2011/halloween19-rz.pingus:5
msgid "The Ones"
msgstr ""

#: data/levels/halloween2011/halloween19-rz.pingus:6
msgid ""
"This is the last stage the pingus have to pass during this Halloween. Two "
"oddly familiar column are in the way. What do they mean? The two groups of "
"pingus have to work together to make it down the columns to the exit far "
"below."
msgstr ""

#: data/levels/desert/desert-crawl-timpany.pingus:5
msgid "Crawlspace"
msgstr ""

#: data/levels/desert/desert-crawl-timpany.pingus:6
msgid ""
"The path to the exit is blocked and many small tunnels lead the way, but be "
"careful some of those lead to certain death. Or is there something you can "
"do about that and create a save passage for all the Pingus and lead them "
"safely to the exit?"
msgstr ""

#: data/levels/desert/desert1-janne.pingus:5
msgid "Down the valley and up again"
msgstr ""

#: data/levels/desert/desert1-janne.pingus:6
msgid ""
"There is a large valley between the entrance and the exit. No bridge will be "
"long enough to cross the valley, but can you find a way back up once you "
"lead the Pingus down into the valley?"
msgstr ""

#: data/levels/desert/desert1.pingus:5
msgid "Entering the pyramid"
msgstr ""

#: data/levels/desert/desert1.pingus:6
msgid ""
"After their long and dangerous journey through the desert the Pingus finally "
"reach the large pyramid, but there is still a pedestal blocking their way."
msgstr ""

#: data/levels/desert/desert2.pingus:5
msgid "The window room"
msgstr ""

#: data/levels/desert/desert2.pingus:6
msgid ""
"After the Pingus have entered the pyramid, they reach a large room with a "
"large window. The only problem they have is that the entrance to the room is "
"much too high to survive the landing. Can you help them?"
msgstr ""

#: data/levels/desert/desert3-jings.pingus:5
msgid "Grand Hall"
msgstr ""

#: data/levels/desert/desert3-jings.pingus:6
msgid ""
"The pingus have found themselves in the grand hall, a hall full of wonder "
"and treasures. The exit however is high up and won't be easy to reach. Guide "
"the pingus around the hall and maybe you will find a way."
msgstr ""

#: data/levels/desert/desert3.pingus:5
msgid "Pass the pedestal"
msgstr ""

#: data/levels/desert/desert3.pingus:6
msgid ""
"A large pedestal is blocking the way to the exit and there aren't enough "
"bashers available to dig it away. Can you find a way to make it past the "
"pedestal?"
msgstr ""

#: data/levels/desert/desert4.pingus:5
msgid "The excavation of the pyramid"
msgstr ""

#: data/levels/desert/desert4.pingus:6
msgid ""
"The excavations are open to reach the pyramid for his redeeming content. "
"Some excavations, however, is best done with two competitors. Who comes "
"first?"
msgstr ""

#: data/levels/desert/desert5-tflavel.pingus:5
msgid "Claustrophobia"
msgstr ""

#: data/levels/desert/desert5-tflavel.pingus:6
msgid ""
"Hidden deep below the pyramid the pingus come across a small underground "
"room, but unfortunatley a large tree root blocks their path..."
msgstr ""

#: data/levels/desert/desert5.pingus:5
msgid "Catch them at the half way point"
msgstr ""

#: data/levels/desert/desert5.pingus:6
msgid ""
"The Pingus are separated from the exit by large abyss. A simple bridge won't "
"be enough to catch them safely, unless of course you find the right place to "
"put it. Can you uncover that spot?"
msgstr ""

#: data/levels/desert/desert6-grumbel.pingus:5
msgid "A bit to the right a bit to left"
msgstr ""

#: data/levels/desert/desert6-grumbel.pingus:6
msgid "Only the most audacious Pingus will be allowed to continue."
msgstr ""

#: data/levels/desert/desert7-grumbel.pingus:5
msgid "25 Pingus free and 25 in the box"
msgstr ""

#: data/levels/desert/desert7-grumbel.pingus:6
msgid ""
"Okay for the Bridger but what can I do with Digger? You should save at least "
"one Pingu trapped in the box above the exit."
msgstr ""

#: data/levels/desert/desert8-grumbel.pingus:5
msgid "Tunnel Time"
msgstr ""

#: data/levels/desert/desert8-grumbel.pingus:6
msgid ""
"Dig a tunnel and you might make it to the exit. Digger and miners and stuff "
"have to work together."
msgstr ""

#: data/levels/desert/desertwaste1-grumbel.pingus:5
msgid "The Roof"
msgstr ""

#: data/levels/desert/desertwaste1-grumbel.pingus:6
msgid ""
"Sometimes the roofs are not good for refuge, sometimes it should be "
"demolished! But be careful if you aren't precise enough, you might lead the "
"Pingus straight to certain death."
msgstr ""

#: data/levels/desert/indiana-yingwan.pingus:5
msgid "Pingus Jones and the Last Exit"
msgstr ""

#: data/levels/desert/indiana-yingwan.pingus:6
msgid ""
"Dr. Jones' notebook:\n"
"\n"
"  (1) the breath of God: only the penitent pingus will pass;\n"
"  (2) the word of God... in reverse;\n"
"  (3) the path of God: leap from the head of something like a cat."
msgstr ""

#: data/levels/mysteryisland/cave-lac.pingus:7
msgid "Trapped Underground"
msgstr ""

#: data/levels/mysteryisland/cave-lac.pingus:8
msgid ""
"The penguins escaped the mad scientist, but now they were trapped deep "
"underground. They had no food or water, so they had to move fast."
msgstr ""

#: data/levels/mysteryisland/cave1-marcotte.pingus:5
msgid "Near can mean far"
msgstr ""

#: data/levels/mysteryisland/cave1-marcotte.pingus:6
msgid ""
"What do you do when you're going in the wrong direction ? Simple: walk into "
"a wall. But it is easier said than done..."
msgstr ""

#: data/levels/mysteryisland/emperiment-lac.pingus:5
msgid "Experimentation"
msgstr ""

#: data/levels/mysteryisland/emperiment-lac.pingus:6
msgid ""
"A mad scientist has captured the penguins and is experimenting on them. How "
"can the penguins escape the guillotine?"
msgstr ""

#: data/levels/mysteryisland/hall-of-illusion-lac.pingus:5
msgid "Hall of Illusion"
msgstr ""

#: data/levels/mysteryisland/hall-of-illusion-lac.pingus:6
msgid ""
"The penguins stopped and stood in indecision. What was real and what was "
"not? Flame lanced from above and a guillotine glittered in the distance. "
"Almost all penguins must survive."
msgstr ""

#: data/levels/mysteryisland/lavapit3.pingus:7
msgid "The Lava Pit"
msgstr ""

#: data/levels/mysteryisland/lavapit3.pingus:8
msgid ""
"The penguins had defeated the mad scientist, and were walking away from his "
"destroyed laboratory when a huge hole opened under their feet. The penguins "
"fell into an underground cave and the only way out was across the lava pit. "
"Luckily, it seemed someone had left some helpful signs."
msgstr ""

#: data/levels/mysteryisland/madscientist1-lac.pingus:7
msgid "At least the experiments are over..."
msgstr ""

#: data/levels/mysteryisland/madscientist1-lac.pingus:8
msgid ""
"The good news was that the mad scientist had tired of his experiments, the "
"bad news was that now he was dumping them down a pit. A single floatation "
"device was all the penguins had. Save as many as possible."
msgstr ""

#: data/levels/mysteryisland/multi1-lac.pingus:7
msgid "Ghosting"
msgstr ""

#: data/levels/mysteryisland/multi1-lac.pingus:8
msgid ""
"The penguins came to a long pass. Acid bubbled underneath and it seemed a "
"climber or two were needed.  Hint: slider can be used to stop the miner "
"ability."
msgstr ""

#: data/levels/mysteryisland/rainy1-lac.pingus:7
msgid "The Final (and suprisingly easy) Challenge"
msgstr ""

#: data/levels/mysteryisland/rainy1-lac.pingus:8
msgid ""
"The penguins had reached the end of the island. In the water was a long "
"tree, perfect for the penguin's needs. Their journey was almost over."
msgstr ""

#: data/levels/mysteryisland/revenge1-lac.pingus:7
#: data/levels/mysteryisland/revenge2-lac.pingus:7
msgid "Revenge is sweet"
msgstr ""

#: data/levels/mysteryisland/revenge1-lac.pingus:8
msgid ""
"The penguins had escaped the mad scientist but now they wanted revenge. They "
"intended to destroy the support structures, sending the evil laboratory "
"crashing down."
msgstr ""

#: data/levels/mysteryisland/revenge2-lac.pingus:8
msgid ""
"The penguins had escaped the mad scientist but now they wanted revenge. They "
"intended to destroy the support structures, sending the evil laboratory "
"crashing down. They had to move fast though, because the mad scientist would "
"detect and recapture them if they weren't fast enough."
msgstr ""

#: data/levels/mysteryisland/snow2-lac.pingus:7
msgid "Winter Wonderland"
msgstr ""

#: data/levels/mysteryisland/snow2-lac.pingus:8
msgid ""
"After getting past the lava pit, the penguins walked and walked until they "
"reached a snowed in exit. That would be relatively easy to tunnel through "
"but how would it be possible to tunnel through solid metal?"
msgstr ""

#: data/levels/mysteryisland/theend-lac.pingus:7
msgid "The Journey Goes On"
msgstr ""

#: data/levels/mysteryisland/theend-lac.pingus:8
msgid ""
"And so the penguins continued on their journey, drawing ever closer to the "
"North Pole. They had escaped the guillotine, defeated the mad scientist and "
"got a new boat. And so this chapter in their voyage was over, but there "
"would be other obstacles. Nothing  would stop the determined penguins from "
"reaching their goal."
msgstr ""

#: data/levels/mysteryisland/use-the-slide-lac.pingus:7
msgid "Think fast (literally)"
msgstr ""

#: data/levels/mysteryisland/use-the-slide-lac.pingus:8
msgid ""
"This would be simple but for one thing, there are no blockers. All the "
"penguins must survive."
msgstr ""

#: data/levels/mysteryisland/volcano1-grumbel.pingus:5
msgid "Shipwrecked"
msgstr ""

#: data/levels/mysteryisland/volcano1-grumbel.pingus:6
msgid ""
"The penguins were sailing along happily on their makeshift boat until "
"suddenly an island appeared. The penguins were drawn towards it and crashed, "
"destroying their boat. Now they must find their way across this strange "
"island."
msgstr ""

#: data/levels/alien/aliens1-grumbel.pingus:5
#: data/levels/alien/aliens1-phil.pingus:7
msgid "Escape from Aliens"
msgstr ""

#: data/levels/alien/aliens1-grumbel.pingus:6
msgid ""
"Aliens invade our starship blocking intrance to the teleporter. Your crew is "
"well trained, like you they don't panic."
msgstr ""

#: data/levels/alien/aliens1-phil.pingus:8
msgid ""
"Aliens invade our starship blocking entrance to the teleporter. Your crew is "
"well trained, like you they don't panic."
msgstr ""

#: data/levels/alien/aliens2-phil.pingus:7
msgid "Escape from Aliens 2"
msgstr ""

#: data/levels/alien/aliens2-phil.pingus:8
msgid "Aliens are now closest making your escape harder. You must dig it up."
msgstr ""

#: data/levels/alien/aliens4-phil.pingus:5
msgid "Alien's nest"
msgstr ""

#: data/levels/alien/aliens4-phil.pingus:6
msgid "Pingus invade the nest. Take care of jaws. What's the matrix above?"
msgstr ""

#: data/levels/alien/aliens5-phil.pingus:5
msgid "Matrix of the death"
msgstr ""

#: data/levels/alien/aliens5-phil.pingus:6
msgid ""
"Take a piece of paper. Now pingus have to enter the matrix of the death. "
"This is a maze, bad ways are protect by jaws."
msgstr ""

#: data/levels/alien/aliens6-phil.pingus:7
msgid "Spy's pingus in the matrix of the death"
msgstr ""

#: data/levels/alien/aliens6-phil.pingus:8
msgid ""
"Spy's pingus have marked the location of jaws in the matrix of the death. "
"Many died to gain that information :..( Perhaps this help. Perhaps..."
msgstr ""

#: data/levels/alien/aliens7-phil.pingus:7
msgid "Fourth dimension"
msgstr ""

#: data/levels/alien/aliens7-phil.pingus:8
msgid ""
"The defenses of the aliens get stronger. Now you have to jump in the fourth "
"dimension to win!"
msgstr ""

#: data/levels/alien/space-11-rz+eriksoe.pingus:5
msgid "Set your watches"
msgstr ""

#: data/levels/alien/space-11-rz+eriksoe.pingus:6
msgid "Cooperation in space."
msgstr ""

#: data/levels/alien/space-9-tom.pingus:5
msgid "Outside In"
msgstr ""

#: data/levels/alien/space-9-tom.pingus:6
msgid "Can you help the pingus escape without getting their flippers wet?"
msgstr ""

#: data/levels/alien/space-loop-timpany.pingus:5
msgid "Endless Loop"
msgstr ""

#: data/levels/alien/space-loop-timpany.pingus:6
msgid ""
"To the right and to the left the Pingus will face certain death and you have "
"to save 50. Can you help them get out of this mess?"
msgstr ""

#: data/levels/alien/space-tom1.pingus:7
msgid "Up up in the space"
msgstr ""

#: data/levels/alien/space-tom1.pingus:8
msgid "What good is a pick in space? Certainly not to go to the stars."
msgstr ""

#: data/levels/alien/space2.pingus:5
msgid "Lost in Space"
msgstr ""

#: data/levels/alien/space2.pingus:6
msgid "We don't know where we are but we don't leave anybody behind."
msgstr ""

#: data/levels/factorycampaign/factory_campaign1.pingus:5
msgid "Falling down"
msgstr ""

#: data/levels/factorycampaign/factory_campaign1.pingus:6
msgid ""
"Pingus intelligence reported that a huge factory located in the subtropical "
"zone might be a reason of a climate change. They decided to go there and "
"shut down the factories. This will be a long and dangerous expedition. "
"Pingus and you will have to face many difficulties on your way. As the ice "
"is melting, at first you have to build some bridges and watch out for the "
"cliff."
msgstr ""

#: data/levels/factorycampaign/factory_campaign10.pingus:5
msgid "Jump"
msgstr ""

#: data/levels/factorycampaign/factory_campaign10.pingus:6
msgid ""
"All Pingus need is to jump.... Hint: While pausing (press P key) you still "
"can control Pingus. "
msgstr ""

#: data/levels/factorycampaign/factory_campaign11.pingus:5
msgid "Factory"
msgstr ""

#: data/levels/factorycampaign/factory_campaign11.pingus:6
msgid ""
"Finally you reached the factory. Watch out as there are many dangers. Use "
"bombers to destroy the basement of the factory. Good luck!"
msgstr ""

#: data/levels/factorycampaign/factory_campaign12.pingus:5
msgid "Going back home"
msgstr ""

#: data/levels/factorycampaign/factory_campaign12.pingus:6
msgid "Your mission is over. Pingus can go back home, but be careful!"
msgstr ""

#: data/levels/factorycampaign/factory_campaign13.pingus:5
msgid "Bonus track"
msgstr ""

#: data/levels/factorycampaign/factory_campaign13.pingus:6
msgid ""
"Pingus are at home, but after the climate change living on the South Pole "
"became more dangerous. There is one more mission for you."
msgstr ""

#: data/levels/factorycampaign/factory_campaign2.pingus:5
msgid "Destination North"
msgstr ""

#: data/levels/factorycampaign/factory_campaign2.pingus:6
msgid ""
"For now, Pingus are leaving South Pole and moving North. You have to help "
"them!"
msgstr ""

#: data/levels/factorycampaign/factory_campaign3.pingus:5
msgid "The Cave"
msgstr ""

#: data/levels/factorycampaign/factory_campaign3.pingus:6
msgid ""
"Pingus on their way came across a huge cave. You have to lead them through. "
"Remember that sometimes there is more than one way out. Hint: To 'unlock' "
"blockers you can use bashers and jumpers."
msgstr ""

#: data/levels/factorycampaign/factory_campaign4.pingus:5
msgid "Difficulties on the way"
msgstr ""

#: data/levels/factorycampaign/factory_campaign4.pingus:6
msgid ""
"It looks you have encountered serious difficulties. But don't panic, Pingus "
"are waiting for your orders, they count on you so don't fail! Hint: Miners, "
"diggers and bashers are very important here!"
msgstr ""

#: data/levels/factorycampaign/factory_campaign5.pingus:5
msgid "Four ways out"
msgstr ""

#: data/levels/factorycampaign/factory_campaign5.pingus:6
msgid ""
"It's getting warmer but Pingus are bravely moving North. This time it will "
"be much easier. There are at least four ways out. Could you find them?"
msgstr ""

#: data/levels/factorycampaign/factory_campaign6.pingus:5
msgid "Egypt - So easy"
msgstr ""

#: data/levels/factorycampaign/factory_campaign6.pingus:6
msgid "Pingus reached Egypt. Looks easy, but is it really so easy? Try it out."
msgstr ""

#: data/levels/factorycampaign/factory_campaign7.pingus:5
msgid "Egypt - Oasis"
msgstr ""

#: data/levels/factorycampaign/factory_campaign7.pingus:6
msgid ""
"Last time it was easy. Now it will be a little bit harder. Pingus are "
"entering oasis. Watch out for the water."
msgstr ""

#: data/levels/factorycampaign/factory_campaign8.pingus:5
msgid "Egypt - The Maze"
msgstr ""

#: data/levels/factorycampaign/factory_campaign8.pingus:6
msgid ""
"You came across a maze. Can you find the way out? Think twice before digging."
msgstr ""

#: data/levels/factorycampaign/factory_campaign9.pingus:5
msgid "Egypt - Pyramids"
msgstr ""

#: data/levels/factorycampaign/factory_campaign9.pingus:6
msgid ""
"The maze led you to the big pyramids. Now you have 4 minutes to escape. "
"Hurry up!"
msgstr ""

#: data/levels/xmas2011/xmas01-grumbel.pingus:5
msgid "Bomb and Double Catch"
msgstr ""

#: data/levels/xmas2011/xmas01-grumbel.pingus:6
msgid ""
"Here you might have some time to relax. The path isn't complicated and a bit "
"of bombing and catching of Pingus should bring you to the end without much "
"trouble, but don't relax to much, your resources are limited, so be careful "
"when using them."
msgstr ""

#: data/levels/xmas2011/xmas02-grumbel.pingus:5
msgid "Up, Up and Away"
msgstr ""

#: data/levels/xmas2011/xmas02-grumbel.pingus:6
msgid ""
"The exit is in a weird spot here, straight above. A bridge won't get you "
"there, but your toolset allows an alternative way. Can you figure it out?"
msgstr ""

#: data/levels/xmas2011/xmas03-grumbel.pingus:5
msgid "If only penguins could fly"
msgstr ""

#: data/levels/xmas2011/xmas03-grumbel.pingus:6
msgid ""
"Bridges are kind of rare around here, so don't waste any. That aside, you "
"shouldn't have to much trouble here, everything to do here you should have "
"learned, but you might have to use all that knowledge at once."
msgstr ""

#: data/levels/xmas2011/xmas04-grumbel.pingus:5
msgid "Stairway to Heaven"
msgstr ""

#: data/levels/xmas2011/xmas04-grumbel.pingus:6
msgid ""
"Here things start to get a little complicated. Getting up to the exit is "
"hard enough with a single Pingu, but with all of them? Impossible! But wait, "
"who says they have to come the same way?"
msgstr ""

#: data/levels/xmas2011/xmas05-grumbel.pingus:5
msgid "Misdirection Everywhere"
msgstr ""

#: data/levels/xmas2011/xmas05-grumbel.pingus:6
msgid ""
"The last level for this Xmas. Looks a little complicated, right? Don't worry "
"with all you have learned so far, you should be able to even solve this.\n"
"\n"
"Good Luck & a Merry Xmas 2011"
msgstr ""

#: data/levels/xmas2011/xmas06-grumbel.pingus:5
msgid "The Big Jump"
msgstr ""

#: data/levels/xmas2011/xmas06-grumbel.pingus:6
msgid ""
"Going in and out of the abyss with all Pingus isn't an option here, but a "
"small group preparing the path or the others should get you across."
msgstr ""

#: data/levels/xmas2011/xmas07-grumbel.pingus:5
msgid "No Way to Stop"
msgstr ""

#: data/levels/xmas2011/xmas07-grumbel.pingus:6
msgid ""
"Here you don't have much time to waste. The path to the exit is clear and "
"straight, but you don't have the time to prepare it. Can you find a way to "
"leap ahead?"
msgstr ""

#: data/levels/xmas2011/xmas08-grumbel.pingus:5
msgid "Ice Block Blockage"
msgstr ""

#: data/levels/xmas2011/xmas08-grumbel.pingus:6
msgid ""
"What's this? A gigantic ice block straight in the path? Where did that come "
"from? No time wondering about things like that. The Pingus need to get to "
"the exist and it's your job to find a way around the block."
msgstr ""

#: data/levels/xmas2011/xmas09-grumbel.pingus:5
msgid "The Impossible Bridge"
msgstr ""

#: data/levels/xmas2011/xmas09-grumbel.pingus:6
msgid ""
"Two groups of Pingus separated by a deep byss, joining them by a bridge "
"seems impossible, but wise coordination of the two groups and a brave leap "
"should let you make it to the exit."
msgstr ""

#: data/levels/xmas2011/xmas10-grumbel.pingus:5
msgid "Spiraling Away"
msgstr ""

#: data/levels/xmas2011/xmas10-grumbel.pingus:6
msgid ""
"The exit is straight below, but the path is blocked by solid steal with no "
"way through. But the Pingus have a versatile toolset at hand, can you use it "
"to find a way around and make it to the exit?"
msgstr ""

#: data/worldmaps/tutorial.worldmap:4
msgid "Tutorial Island"
msgstr ""

#: data/worldmaps/tutorial.worldmap:6
msgid "Learn the basics"
msgstr ""

#: data/worldmaps/tutorial.worldmap:124
msgid "Watch Ending"
msgstr ""

#: data/worldmaps/tutorial.worldmap:131
msgid "Watch Intro"
msgstr ""

#: data/stories/tutorial_intro.story:2
msgid "The Journey Begins"
msgstr ""

#: data/stories/tutorial_intro.story:9
msgid ""
"For a long time, the Pingus have lived happily in peace on the South Pole "
"along with all the other animals. Everything was in balance and it seemed "
"like nothing could disrupt their peace.  The Pingus were happy and it seemed "
"like this could never end."
msgstr ""

#: data/stories/tutorial_intro.story:17
msgid ""
"But then one day, things began to change slowly: the sky got darker and the "
"earth got warmer. Firstly, they thought this was just a normal fluctuation "
"in the world's climate, but things seemed to get worse and worse with every "
"year."
msgstr ""

#: data/stories/tutorial_intro.story:25
msgid ""
"The snow began to melt away in a few areas and food became an issue. Other "
"animals tried to leave the region to search for colder areas, but the Pingus "
"knew that this wouldn't help: they knew that they had to do something about "
"it."
msgstr ""

#: data/stories/tutorial_intro.story:33
msgid ""
"So the circle of the eldest came together to decide what to do about it. "
"They decided to send out an expedition around the world to find the cause of "
"this warming. The expedition consisted of hundreds of the bravest Pingus on "
"the South Pole."
msgstr ""

#: data/stories/tutorial_intro.story:41
msgid ""
"And they picked you to lead them on their journey around the world. Since "
"the journey will be dangerous and difficult, your first goal is the Island "
"of Mogorok, also known as the Tutorial Island. According to the eldest, this "
"island has always been the first stop of Pingus that were sent out into the "
"world."
msgstr ""

#: data/stories/tutorial_intro.story:50
msgid ""
"The island consists of many areas that are ideal to teach the Pingus their "
"abilities. The Pingus can learn to build bridges, climb, bash and use many "
"other talents which they will need on their long and dangerous journey."
msgstr ""

#: data/stories/tutorial_intro.story:57
msgid ""
"While there, you can practice your abilities in commanding and guiding the "
"Pingus. You can also get familiar with all the abilities the Pingus provide "
"and learn to master them, since you will need all of them on your journey "
"around the world."
msgstr ""

#: data/stories/tutorial_intro.story:65
msgid ""
"Now that you and the Pingus have arrived at Tutorial Island it is time to "
"take command and begin your mission.\n"
"\n"
"Good Luck!"
msgstr ""

#: data/stories/tutorial_outro.story:2
msgid "The Journey Continues"
msgstr ""

#: data/stories/tutorial_outro.story:9
msgid ""
"Now after you and the Pingus have learned the basics and practiced a bit it "
"is time to move on and begin the journey into the world. Since the ice floe "
"with which the Pingus traveled to the Tutorial Island isn't going to hold on "
"the whole way into the warmer climates the Pingus have to find something "
"else to guide them on their journey."
msgstr ""

#: data/stories/tutorial_outro.story:18
msgid ""
"But as the eldest have said, the Tutorial Island provides not only a good "
"way to practice, but it is also the starting point into the world. After "
"some searching the Pingus discovered the meaning of this, and they found the "
"large tree at the end of the island which gave them wood to construct a "
"float."
msgstr ""

#: data/stories/tutorial_outro.story:27
msgid ""
"So the Pingus set out and constructed some large rafts, enough to carry them "
"all. After also packing a bunch of provisions they were prepared to start "
"their journey and leave their familiar ground and enter the unknown parts of "
"the world."
msgstr ""

#: data/stories/tutorial_outro.story:35
msgid ""
"So the Pingus sit on their raft, worrying about what's to come and where to "
"go, while floating into the sunset.\n"
"\n"
"To be continued..."
msgstr ""

#: data/levelsets/alien.levelset:3
msgid "Alien by Josh Dye"
msgstr ""

#: data/levelsets/alien.levelset:4
msgid "Escape from alien"
msgstr ""

#: data/levelsets/crystal.levelset:3
msgid "Crystal"
msgstr ""

#: data/levelsets/crystal.levelset:4
msgid "Crystaline sparkling full of danger"
msgstr ""

#: data/levelsets/desert.levelset:3
msgid "Desert"
msgstr ""

#: data/levelsets/desert.levelset:4
msgid "Getting hot outside..."
msgstr ""

#: data/levelsets/factory.levelset:3
msgid "Factory Campaign"
msgstr ""

#: data/levelsets/factory.levelset:4
msgid "Pingus expedition"
msgstr ""

#: data/levelsets/halloween.levelset:3
msgid "Halloween 2007"
msgstr ""

#: data/levelsets/halloween.levelset:4
msgid "Trapped at All Hallows Eve"
msgstr ""

#: data/levelsets/halloween2011.levelset:2
msgid "Halloween 2011"
msgstr ""

#: data/levelsets/halloween2011.levelset:3
msgid "Going Underground"
msgstr ""

#: data/levelsets/hellmouth.levelset:3
msgid "Hellmouth"
msgstr ""

#: data/levelsets/hellmouth.levelset:4
msgid "A cave full of slime..."
msgstr ""

#: data/levelsets/jungle.levelset:3
msgid "Jungle"
msgstr ""

#: data/levelsets/mysteryisland.levelset:3
msgid "Island of Mystery"
msgstr ""

#: data/levelsets/mysteryisland.levelset:4
msgid "Marooned on an Uncharted Isle [by Lachlan McCubbin]"
msgstr ""

#: data/levelsets/pacman.levelset:3
msgid "Pac-Man"
msgstr ""

#: data/levelsets/pacman.levelset:4
msgid "Trapped in a video game"
msgstr ""

#: data/levelsets/xmas2011.levelset:3
msgid "Xmas 2011"
msgstr ""

#: data/levelsets/xmas2011.levelset:4
msgid "Merry Christmas and a Happy New Year"
msgstr ""