Merge lp:~gunchleoc/widelands/gci18nfixes into lp:widelands

Proposed by GunChleoc
Status: Rejected
Rejected by: SirVer
Proposed branch: lp:~gunchleoc/widelands/gci18nfixes
Merge into: lp:widelands
Diff against target: 11991 lines (+4194/-4216)
79 files modified
compile.sh (+31/-27)
po/map_plateau.wmf/map_plateau.wmf.pot (+1/-1)
po/maps/maps.pot (+1/-1)
po/mp_scenario_island_hopping.wmf/mp_scenario_island_hopping.wmf.pot (+1/-1)
po/mp_scenario_smugglers.wmf/mp_scenario_smugglers.wmf.pot (+1/-1)
po/scenario_atl01.wmf/scenario_atl01.wmf.pot (+1/-1)
po/scenario_dummy.wmf/scenario_dummy.wmf.pot (+1/-1)
po/scenario_emp01.wmf/scenario_emp01.wmf.pot (+1/-1)
po/scenario_emp02.wmf/scenario_emp02.wmf.pot (+1/-1)
po/scenario_t01.wmf/scenario_t01.wmf.pot (+1/-1)
po/scenario_t02.wmf/scenario_t02.wmf.pot (+1/-1)
po/scenario_t03.wmf/scenario_t03.wmf.pot (+1/-1)
po/scenario_tutorial01.wmf/scenario_tutorial01.wmf.pot (+1/-1)
po/texts/texts.pot (+1/-1)
po/tribe_atlanteans/tribe_atlanteans.pot (+1/-1)
po/tribe_barbarians/tribe_barbarians.pot (+16/-11)
po/tribe_empire/tribe_empire.pot (+1/-1)
po/widelands/gd.po (+56/-11)
po/widelands/widelands.pot (+3443/-3607)
po/win_conditions/gd.po (+11/-4)
po/win_conditions/win_conditions.pot (+67/-43)
po/world_blackland/world_blackland.pot (+1/-1)
po/world_desert/world_desert.pot (+1/-1)
po/world_greenland/world_greenland.pot (+1/-1)
po/world_winterland/world_winterland.pot (+1/-1)
scripting/win_condition_texts.lua (+0/-31)
scripting/win_conditions/02_collectors.lua (+9/-6)
scripting/win_conditions/03_territorial_lord.lua (+9/-6)
scripting/win_conditions/03_territorial_time.lua (+33/-18)
scripting/win_conditions/04_wood_gnome.lua (+13/-7)
src/editor/tools/editor_info_tool.cc (+3/-3)
src/game_io/game_player_economies_data_packet.cc (+1/-1)
src/game_io/game_player_info_data_packet.cc (+7/-7)
src/graphic/animation.cc (+3/-3)
src/logic/building.cc (+11/-11)
src/logic/cmd_queue.cc (+1/-1)
src/logic/constructionsite.cc (+3/-1)
src/logic/immovable.cc (+16/-16)
src/logic/instances.cc (+4/-4)
src/logic/military_data.cc (+4/-4)
src/logic/militarysite.cc (+1/-1)
src/logic/playercommand.cc (+27/-27)
src/logic/production_program.cc (+123/-96)
src/logic/requirements.cc (+2/-2)
src/logic/soldier.cc (+18/-18)
src/logic/tribe.cc (+17/-16)
src/logic/worker.cc (+3/-1)
src/map_io/widelands_map_bobdata_data_packet.cc (+11/-11)
src/map_io/widelands_map_buildingdata_data_packet.cc (+37/-37)
src/map_io/widelands_map_flag_data_packet.cc (+4/-2)
src/map_io/widelands_map_flagdata_data_packet.cc (+9/-9)
src/map_io/widelands_map_objective_data_packet.cc (+1/-1)
src/map_io/widelands_map_player_position_data_packet.cc (+1/-1)
src/map_io/widelands_map_players_messages_data_packet.cc (+25/-25)
src/map_io/widelands_map_roaddata_data_packet.cc (+5/-5)
src/map_io/widelands_map_ware_data_packet.cc (+1/-1)
src/map_io/widelands_map_waredata_data_packet.cc (+6/-6)
src/network/internet_gaming.cc (+11/-2)
src/network/nethost.cc (+24/-16)
src/network/network_gaming_messages.cc (+8/-7)
src/sound/sound_handler.cc (+3/-3)
src/ui_basic/messagebox.cc (+4/-4)
src/ui_fsmenu/launchMPG.cc (+16/-14)
src/ui_fsmenu/launchSPG.cc (+14/-12)
src/ui_fsmenu/loadgame.cc (+3/-1)
src/ui_fsmenu/loadreplay.cc (+3/-1)
src/ui_fsmenu/mapselect.cc (+1/-1)
src/ui_fsmenu/options.cc (+3/-3)
src/wui/building_statistics_menu.cc (+8/-8)
src/wui/game_debug_ui.cc (+9/-9)
src/wui/game_message_menu.cc (+12/-12)
src/wui/game_options_menu.cc (+1/-2)
src/wui/interactive_base.cc (+2/-2)
src/wui/login_box.cc (+3/-3)
src/wui/login_box.h (+2/-1)
src/wui/multiplayersetupgroup.cc (+2/-2)
src/wui/playerdescrgroup.cc (+9/-8)
src/wui/story_message_box.cc (+1/-1)
tribes/barbarians/trainingscamp/help.lua (+4/-4)
To merge this branch: bzr merge lp:~gunchleoc/widelands/gci18nfixes
Reviewer Review Type Date Requested Status
Widelands Developers Pending
Review via email: mp+191497@code.launchpad.net

Description of the change

i18n string fixes

To post a comment you must log in.
Revision history for this message
SirVer (sirver) wrote :

This is superseeded by work on lp:~widelands-dev/widelands/gci18nfixes which is currently in_progress.

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'compile.sh'
2--- compile.sh 2013-07-18 12:31:57 +0000
3+++ compile.sh 2013-10-20 08:28:11 +0000
4@@ -58,33 +58,37 @@
5 local_var_ready=0
6 while [ $local_var_ready -eq 0 ]
7 do
8- echo " "
9- echo " Should Widelands be build in [r]elease or [d]ebug mode?"
10- echo " "
11- read local_var_choice
12- echo " "
13- case $local_var_choice in
14- r) echo " -> Release mode selected" ; var_build=1 ; local_var_ready=1 ;;
15- d) echo " -> Debug mode selected" ; var_build=0 ; local_var_ready=1 ;;
16- *) echo " -> Bad choice. Please try again!" ;;
17- esac
18+var_build=1
19+local_var_ready=1
20+# echo " "
21+# echo " Should Widelands be build in [r]elease or [d]ebug mode?"
22+# echo " "
23+# read local_var_choice
24+# echo " "
25+# case $local_var_choice in
26+# r) echo " -> Release mode selected" ; var_build=1 ; local_var_ready=1 ;;
27+# d) echo " -> Debug mode selected" ; var_build=0 ; local_var_ready=1 ;;
28+# *) echo " -> Bad choice. Please try again!" ;;
29+# esac
30 done
31 local_var_ready=0
32- if [ $var_build -eq 0 ] ; then
33- while [ $local_var_ready -eq 0 ]
34- do
35- echo " "
36- echo " Should translations be build [y]/[n]?"
37- echo " "
38- read local_var_choice
39- echo " "
40- case $local_var_choice in
41- y) echo " -> Translations will be build" ; var_build_lang=1 ; local_var_ready=1 ;;
42- n) echo " -> Translations will not be build" ; var_build_lang=0 ; local_var_ready=1 ;;
43- *) echo " -> Bad choice. Please try again!" ;;
44- esac
45- done
46- fi
47+var_build_lang=0
48+local_var_ready=1
49+# if [ $var_build -eq 0 ] ; then
50+# while [ $local_var_ready -eq 0 ]
51+# do
52+# echo " "
53+# echo " Should translations be build [y]/[n]?"
54+# echo " "
55+# read local_var_choice
56+# echo " "
57+# case $local_var_choice in
58+# y) echo " -> Translations will be build" ; var_build_lang=1 ; local_var_ready=1 ;;
59+# n) echo " -> Translations will not be build" ; var_build_lang=0 ; local_var_ready=1 ;;
60+# *) echo " -> Bad choice. Please try again!" ;;
61+# esac
62+# done
63+# fi
64 return 0
65 }
66
67@@ -154,9 +158,9 @@
68 update_script () {
69 # First check if this is an bzr checkout at all - only in that case,
70 # creation of a script makes any sense.
71- if ! [ -f .bzr/branch-format ] ; then
72+# if ! [ -f .bzr/branch-format ] ; then
73 return 0
74- fi
75+# fi
76 while :
77 do
78 echo " "
79
80=== modified file 'po/map_plateau.wmf/map_plateau.wmf.pot'
81--- po/map_plateau.wmf/map_plateau.wmf.pot 2013-09-15 17:41:36 +0000
82+++ po/map_plateau.wmf/map_plateau.wmf.pot 2013-10-20 08:28:11 +0000
83@@ -6,7 +6,7 @@
84 msgstr ""
85 "Project-Id-Version: Widelands svnVERSION\n"
86 "Report-Msgid-Bugs-To: widelands-public@lists.sourceforge.net\n"
87-"POT-Creation-Date: 2013-09-15 17:41+0000\n"
88+"POT-Creation-Date: 2013-10-18 14:52+0000\n"
89 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
90 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
91 "Language-Team: LANGUAGE <widelands-public@lists.sourceforge.net>\n"
92
93=== modified file 'po/maps/maps.pot'
94--- po/maps/maps.pot 2013-09-15 17:41:36 +0000
95+++ po/maps/maps.pot 2013-10-20 08:28:11 +0000
96@@ -6,7 +6,7 @@
97 msgstr ""
98 "Project-Id-Version: Widelands svnVERSION\n"
99 "Report-Msgid-Bugs-To: widelands-public@lists.sourceforge.net\n"
100-"POT-Creation-Date: 2013-09-15 17:41+0000\n"
101+"POT-Creation-Date: 2013-10-18 14:52+0000\n"
102 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
103 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
104 "Language-Team: LANGUAGE <widelands-public@lists.sourceforge.net>\n"
105
106=== modified file 'po/mp_scenario_island_hopping.wmf/mp_scenario_island_hopping.wmf.pot'
107--- po/mp_scenario_island_hopping.wmf/mp_scenario_island_hopping.wmf.pot 2013-09-15 17:41:36 +0000
108+++ po/mp_scenario_island_hopping.wmf/mp_scenario_island_hopping.wmf.pot 2013-10-20 08:28:11 +0000
109@@ -6,7 +6,7 @@
110 msgstr ""
111 "Project-Id-Version: Widelands svnVERSION\n"
112 "Report-Msgid-Bugs-To: widelands-public@lists.sourceforge.net\n"
113-"POT-Creation-Date: 2013-09-15 17:41+0000\n"
114+"POT-Creation-Date: 2013-10-18 14:52+0000\n"
115 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
116 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
117 "Language-Team: LANGUAGE <widelands-public@lists.sourceforge.net>\n"
118
119=== modified file 'po/mp_scenario_smugglers.wmf/mp_scenario_smugglers.wmf.pot'
120--- po/mp_scenario_smugglers.wmf/mp_scenario_smugglers.wmf.pot 2013-09-15 17:41:36 +0000
121+++ po/mp_scenario_smugglers.wmf/mp_scenario_smugglers.wmf.pot 2013-10-20 08:28:11 +0000
122@@ -6,7 +6,7 @@
123 msgstr ""
124 "Project-Id-Version: Widelands svnVERSION\n"
125 "Report-Msgid-Bugs-To: widelands-public@lists.sourceforge.net\n"
126-"POT-Creation-Date: 2013-09-15 17:41+0000\n"
127+"POT-Creation-Date: 2013-10-18 14:52+0000\n"
128 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
129 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
130 "Language-Team: LANGUAGE <widelands-public@lists.sourceforge.net>\n"
131
132=== modified file 'po/scenario_atl01.wmf/scenario_atl01.wmf.pot'
133--- po/scenario_atl01.wmf/scenario_atl01.wmf.pot 2013-09-15 17:41:36 +0000
134+++ po/scenario_atl01.wmf/scenario_atl01.wmf.pot 2013-10-20 08:28:11 +0000
135@@ -6,7 +6,7 @@
136 msgstr ""
137 "Project-Id-Version: Widelands svnVERSION\n"
138 "Report-Msgid-Bugs-To: widelands-public@lists.sourceforge.net\n"
139-"POT-Creation-Date: 2013-09-15 17:41+0000\n"
140+"POT-Creation-Date: 2013-10-18 14:52+0000\n"
141 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
142 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
143 "Language-Team: LANGUAGE <widelands-public@lists.sourceforge.net>\n"
144
145=== modified file 'po/scenario_dummy.wmf/scenario_dummy.wmf.pot'
146--- po/scenario_dummy.wmf/scenario_dummy.wmf.pot 2013-09-15 17:41:36 +0000
147+++ po/scenario_dummy.wmf/scenario_dummy.wmf.pot 2013-10-20 08:28:11 +0000
148@@ -6,7 +6,7 @@
149 msgstr ""
150 "Project-Id-Version: Widelands svnVERSION\n"
151 "Report-Msgid-Bugs-To: widelands-public@lists.sourceforge.net\n"
152-"POT-Creation-Date: 2013-09-15 17:41+0000\n"
153+"POT-Creation-Date: 2013-10-18 14:52+0000\n"
154 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
155 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
156 "Language-Team: LANGUAGE <widelands-public@lists.sourceforge.net>\n"
157
158=== modified file 'po/scenario_emp01.wmf/scenario_emp01.wmf.pot'
159--- po/scenario_emp01.wmf/scenario_emp01.wmf.pot 2013-09-15 17:41:36 +0000
160+++ po/scenario_emp01.wmf/scenario_emp01.wmf.pot 2013-10-20 08:28:11 +0000
161@@ -6,7 +6,7 @@
162 msgstr ""
163 "Project-Id-Version: Widelands svnVERSION\n"
164 "Report-Msgid-Bugs-To: widelands-public@lists.sourceforge.net\n"
165-"POT-Creation-Date: 2013-09-15 17:41+0000\n"
166+"POT-Creation-Date: 2013-10-18 14:52+0000\n"
167 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
168 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
169 "Language-Team: LANGUAGE <widelands-public@lists.sourceforge.net>\n"
170
171=== modified file 'po/scenario_emp02.wmf/scenario_emp02.wmf.pot'
172--- po/scenario_emp02.wmf/scenario_emp02.wmf.pot 2013-09-15 17:41:36 +0000
173+++ po/scenario_emp02.wmf/scenario_emp02.wmf.pot 2013-10-20 08:28:11 +0000
174@@ -6,7 +6,7 @@
175 msgstr ""
176 "Project-Id-Version: Widelands svnVERSION\n"
177 "Report-Msgid-Bugs-To: widelands-public@lists.sourceforge.net\n"
178-"POT-Creation-Date: 2013-09-15 17:41+0000\n"
179+"POT-Creation-Date: 2013-10-18 14:52+0000\n"
180 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
181 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
182 "Language-Team: LANGUAGE <widelands-public@lists.sourceforge.net>\n"
183
184=== modified file 'po/scenario_t01.wmf/scenario_t01.wmf.pot'
185--- po/scenario_t01.wmf/scenario_t01.wmf.pot 2013-09-15 17:41:36 +0000
186+++ po/scenario_t01.wmf/scenario_t01.wmf.pot 2013-10-20 08:28:11 +0000
187@@ -6,7 +6,7 @@
188 msgstr ""
189 "Project-Id-Version: Widelands svnVERSION\n"
190 "Report-Msgid-Bugs-To: widelands-public@lists.sourceforge.net\n"
191-"POT-Creation-Date: 2013-09-15 17:41+0000\n"
192+"POT-Creation-Date: 2013-10-18 14:52+0000\n"
193 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
194 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
195 "Language-Team: LANGUAGE <widelands-public@lists.sourceforge.net>\n"
196
197=== modified file 'po/scenario_t02.wmf/scenario_t02.wmf.pot'
198--- po/scenario_t02.wmf/scenario_t02.wmf.pot 2013-09-15 17:41:36 +0000
199+++ po/scenario_t02.wmf/scenario_t02.wmf.pot 2013-10-20 08:28:11 +0000
200@@ -6,7 +6,7 @@
201 msgstr ""
202 "Project-Id-Version: Widelands svnVERSION\n"
203 "Report-Msgid-Bugs-To: widelands-public@lists.sourceforge.net\n"
204-"POT-Creation-Date: 2013-09-15 17:41+0000\n"
205+"POT-Creation-Date: 2013-10-18 14:52+0000\n"
206 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
207 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
208 "Language-Team: LANGUAGE <widelands-public@lists.sourceforge.net>\n"
209
210=== modified file 'po/scenario_t03.wmf/scenario_t03.wmf.pot'
211--- po/scenario_t03.wmf/scenario_t03.wmf.pot 2013-09-15 17:41:36 +0000
212+++ po/scenario_t03.wmf/scenario_t03.wmf.pot 2013-10-20 08:28:11 +0000
213@@ -6,7 +6,7 @@
214 msgstr ""
215 "Project-Id-Version: Widelands svnVERSION\n"
216 "Report-Msgid-Bugs-To: widelands-public@lists.sourceforge.net\n"
217-"POT-Creation-Date: 2013-09-15 17:41+0000\n"
218+"POT-Creation-Date: 2013-10-18 14:52+0000\n"
219 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
220 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
221 "Language-Team: LANGUAGE <widelands-public@lists.sourceforge.net>\n"
222
223=== modified file 'po/scenario_tutorial01.wmf/scenario_tutorial01.wmf.pot'
224--- po/scenario_tutorial01.wmf/scenario_tutorial01.wmf.pot 2013-09-15 17:41:36 +0000
225+++ po/scenario_tutorial01.wmf/scenario_tutorial01.wmf.pot 2013-10-20 08:28:11 +0000
226@@ -6,7 +6,7 @@
227 msgstr ""
228 "Project-Id-Version: Widelands svnVERSION\n"
229 "Report-Msgid-Bugs-To: widelands-public@lists.sourceforge.net\n"
230-"POT-Creation-Date: 2013-09-15 17:41+0000\n"
231+"POT-Creation-Date: 2013-10-18 14:52+0000\n"
232 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
233 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
234 "Language-Team: LANGUAGE <widelands-public@lists.sourceforge.net>\n"
235
236=== modified file 'po/texts/texts.pot'
237--- po/texts/texts.pot 2013-09-15 17:41:36 +0000
238+++ po/texts/texts.pot 2013-10-20 08:28:11 +0000
239@@ -6,7 +6,7 @@
240 msgstr ""
241 "Project-Id-Version: Widelands svnVERSION\n"
242 "Report-Msgid-Bugs-To: widelands-public@lists.sourceforge.net\n"
243-"POT-Creation-Date: 2013-09-15 17:41+0000\n"
244+"POT-Creation-Date: 2013-10-18 14:52+0000\n"
245 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
246 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
247 "Language-Team: LANGUAGE <widelands-public@lists.sourceforge.net>\n"
248
249=== modified file 'po/tribe_atlanteans/tribe_atlanteans.pot'
250--- po/tribe_atlanteans/tribe_atlanteans.pot 2013-09-15 17:41:36 +0000
251+++ po/tribe_atlanteans/tribe_atlanteans.pot 2013-10-20 08:28:11 +0000
252@@ -6,7 +6,7 @@
253 msgstr ""
254 "Project-Id-Version: Widelands svnVERSION\n"
255 "Report-Msgid-Bugs-To: widelands-public@lists.sourceforge.net\n"
256-"POT-Creation-Date: 2013-09-15 17:41+0000\n"
257+"POT-Creation-Date: 2013-10-18 14:52+0000\n"
258 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
259 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
260 "Language-Team: LANGUAGE <widelands-public@lists.sourceforge.net>\n"
261
262=== modified file 'po/tribe_barbarians/tribe_barbarians.pot'
263--- po/tribe_barbarians/tribe_barbarians.pot 2013-09-15 17:41:36 +0000
264+++ po/tribe_barbarians/tribe_barbarians.pot 2013-10-20 08:28:11 +0000
265@@ -6,7 +6,7 @@
266 msgstr ""
267 "Project-Id-Version: Widelands svnVERSION\n"
268 "Report-Msgid-Bugs-To: widelands-public@lists.sourceforge.net\n"
269-"POT-Creation-Date: 2013-09-15 17:41+0000\n"
270+"POT-Creation-Date: 2013-10-18 14:52+0000\n"
271 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
272 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
273 "Language-Team: LANGUAGE <widelands-public@lists.sourceforge.net>\n"
274@@ -358,7 +358,6 @@
275 #: ../../tribes/barbarians/deep_coalmine/help.lua:30
276 #: ../../tribes/barbarians/deeper_coalmine/help.lua:29
277 #: ../../tribes/barbarians/metalworks/help.lua:59
278-#: ../../tribes/barbarians/trainingscamp/help.lua:27
279 #: ../../tribes/barbarians/warmill/help.lua:35
280 msgid ""
281 "Axefactory"
282@@ -1365,7 +1364,6 @@
283 #: ../../tribes/barbarians/conf:207
284 #: ../../tribes/barbarians/deep_coalmine/help.lua:32
285 #: ../../tribes/barbarians/deeper_coalmine/help.lua:31
286-#: ../../tribes/barbarians/trainingscamp/help.lua:32
287 msgid ""
288 "Helmsmithy"
289 msgstr ""
290@@ -1419,16 +1417,16 @@
291 "Hunting Spear"
292 msgstr ""
293
294+#: ../../tribes/barbarians/trainingscamp/help.lua:61
295+msgid ""
296+"If all needed wares are delivered in time, a %1s can train one new soldier in %2s and %3s to the final level in %4s on average."
297+msgstr ""
298+
299 #: ../../tribes/barbarians/battlearena/help.lua:55
300 msgid ""
301 "If all needed wares are delivered in time, a %s can train %s for one soldier from 0 to the highest level in %s on average."
302 msgstr ""
303
304-#: ../../tribes/barbarians/trainingscamp/help.lua:61
305-msgid ""
306-"If all needed wares are delivered in time, a %s can train one new soldier in %s and %s to the final level in %s on average."
307-msgstr ""
308-
309 #: ../../tribes/barbarians/bakery/help.lua:55
310 #: ../../tribes/barbarians/cattlefarm/help.lua:48
311 msgid ""
312@@ -2073,10 +2071,18 @@
313 msgstr ""
314
315 #: ../../tribes/barbarians/trainingscamp/help.lua:27
316+msgid ""
317+"Provided by the Axefactory"
318+msgstr ""
319+
320+#: ../../tribes/barbarians/trainingscamp/help.lua:32
321+msgid ""
322+"Provided by the Helmsmithy"
323+msgstr ""
324+
325 #: ../../tribes/barbarians/trainingscamp/help.lua:29
326-#: ../../tribes/barbarians/trainingscamp/help.lua:32
327 msgid ""
328-"Provided by the "
329+"Provided by the War Mill"
330 msgstr ""
331
332 #: ../../tribes/barbarians/axefactory/help.lua:16
333@@ -3283,7 +3289,6 @@
334 #: ../../tribes/barbarians/conf:201
335 #: ../../tribes/barbarians/deep_coalmine/help.lua:31
336 #: ../../tribes/barbarians/deeper_coalmine/help.lua:30
337-#: ../../tribes/barbarians/trainingscamp/help.lua:29
338 msgid ""
339 "War Mill"
340 msgstr ""
341
342=== modified file 'po/tribe_empire/tribe_empire.pot'
343--- po/tribe_empire/tribe_empire.pot 2013-09-15 17:41:36 +0000
344+++ po/tribe_empire/tribe_empire.pot 2013-10-20 08:28:11 +0000
345@@ -6,7 +6,7 @@
346 msgstr ""
347 "Project-Id-Version: Widelands svnVERSION\n"
348 "Report-Msgid-Bugs-To: widelands-public@lists.sourceforge.net\n"
349-"POT-Creation-Date: 2013-09-15 17:41+0000\n"
350+"POT-Creation-Date: 2013-10-18 14:52+0000\n"
351 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
352 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
353 "Language-Team: LANGUAGE <widelands-public@lists.sourceforge.net>\n"
354
355=== modified file 'po/widelands/gd.po'
356--- po/widelands/gd.po 2013-10-09 05:12:14 +0000
357+++ po/widelands/gd.po 2013-10-20 08:28:11 +0000
358@@ -1523,8 +1523,29 @@
359 msgstr ""
360
361 #: ../../src/logic/production_program.cc:1022
362-msgid "Recruited "
363-msgstr ""
364+msgid "Recruited %s"
365+msgstr "%s air a thrusadh"
366+
367+#
368+msgid "Provided by the Axefactory"
369+msgstr "'Ga sholar leis an fhactaraidh thuaghan"
370+
371+#
372+msgid "Provided by the War Mill"
373+msgstr "'Ga sholar leis a' cheàrdach-cogaidh"
374+
375+#
376+msgid "Provided by the Helmsmithy"
377+msgstr "'Ga sholar leis a' cheàrdach chlogaidean"
378+
379+msgid "If all needed wares are delivered in time, "
380+"a %1s can train one new soldier in %2s and %3s "
381+"to the final level in %4s on average."
382+msgstr "Ma thèid na h-uile bathar a lìbhrigeadh ri àm, "
383+"bheir %1s %4s 'sa chuibheas gus %2s is %3s aig saighdear "
384+"a thrèanadh gun leibheil dheireannach."
385+
386+
387
388 #: ../../src/logic/production_program.cc:1069
389 msgid "distance"
390@@ -1727,12 +1748,13 @@
391 #, c-format
392 msgid ""
393 "should breed resource type %s, which does not exist in world; tribe is not "
394-"compatible with world"
395+"compatible with world"
396+
397 msgstr ""
398
399 #: ../../src/logic/worker.cc:605
400-msgid "Out of "
401-msgstr ""
402+msgid "Out of %s"
403+msgstr "%s a dhìth"
404
405 #: ../../src/logic/worker.cc:608
406 msgid ""
407@@ -2164,8 +2186,22 @@
408
409 #: ../../src/network/internet_gaming.cc:434
410 #, c-format
411-msgid "Server time offset is %i seconds."
412-msgstr ""
413+msgid "Server time offset is %u second."
414+msgid_plural "Server time offset is %u seconds."
415+msgstr[0] "Tha frith-àireamh ama an fhrithealaiche na %u diog."
416+msgstr[1] "Tha frith-àireamh ama an fhrithealaiche na %u dhiog."
417+msgstr[2] "Tha frith-àireamh ama an fhrithealaiche na %u diogan."
418+msgstr[3] "Tha frith-àireamh ama an fhrithealaiche na %u diog."
419+
420+#: ../../src/network/internet_gaming.cc:434
421+#, c-format
422+msgid "InternetGaming: Server time offset is %u second."
423+msgid_plural "InternetGaming: Server time offset is %u seconds."
424+msgstr[0] "Geama eadar-lìn: Tha frith-àireamh ama an fhrithealaiche na %u diog."
425+msgstr[1] "Geama eadar-lìn: Tha frith-àireamh ama an fhrithealaiche na %u dhiog."
426+msgstr[2] "Geama eadar-lìn: Tha frith-àireamh ama an fhrithealaiche na %u diogan."
427+msgstr[3] "Geama eadar-lìn: Tha frith-àireamh ama an fhrithealaiche na %u diog."
428+
429
430 #: ../../src/network/internet_gaming.cc:454
431 msgid "Invalid message type"
432@@ -2539,6 +2575,10 @@
433 msgid "Received command number %s, that is disallowed in this state."
434 msgstr ""
435
436+#, c-format
437+msgid "%1$i%% built"
438+msgstr "%1$i%% air a thogail"
439+
440 #: ../../src/network/network_gaming_messages.cc:142
441 msgid "Client reports time to host that is running backwards."
442 msgstr ""
443@@ -3033,8 +3073,13 @@
444
445 #: ../../src/ui_fsmenu/launchMPG.cc:649
446 #, c-format
447-msgid "* %i Players\n"
448-msgstr ""
449+msgid "* %u Player\n"
450+msgid_plural "* %u Players\n"
451+msgstr[0] "* %u chluicheadair\n"
452+msgstr[1] "* %u chluicheadair\n"
453+msgstr[2] "* %u cluicheadairean\n"
454+msgstr[3] "* %u cluicheadair\n"
455+
456
457 #: ../../src/ui_fsmenu/launchMPG.cc:650
458 #, c-format
459@@ -3198,8 +3243,8 @@
460 msgstr "Sguab às am faidhle"
461
462 #: ../../src/ui_fsmenu/loadgame.cc:158 ../../src/ui_fsmenu/loadreplay.cc:139
463-msgid "Do you really want to delete "
464-msgstr ""
465+msgid "Do you really want to delete %s?"
466+msgstr "A bheil thu airson %s a sguabadh às?"
467
468 #: ../../src/ui_fsmenu/loadgame.cc:215
469 msgid "Savegame from dedicated server"
470
471=== modified file 'po/widelands/widelands.pot'
472--- po/widelands/widelands.pot 2013-09-15 17:41:36 +0000
473+++ po/widelands/widelands.pot 2013-10-20 08:28:11 +0000
474@@ -8,7 +8,7 @@
475 msgstr ""
476 "Project-Id-Version: PACKAGE VERSION\n"
477 "Report-Msgid-Bugs-To: widelands-public@lists.sourceforge.net\n"
478-"POT-Creation-Date: 2013-09-15 19:41+0200\n"
479+"POT-Creation-Date: 2013-10-18 15:52+0100\n"
480 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
481 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
482 "Language-Team: LANGUAGE <LL@li.org>\n"
483@@ -18,39 +18,6 @@
484 "Content-Transfer-Encoding: 8bit\n"
485 "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
486
487-#: ../../src/computer_player.cc:38
488-msgid "None"
489-msgstr ""
490-
491-#: ../../src/s2map.cc:231
492-msgid "Bluebyte Settlers II Map. No comment defined!"
493-msgstr ""
494-
495-#: ../../src/s2map.cc:874
496-#, c-format
497-msgid ""
498-"WARNING: %i invalid port buildspaces could not be fixed and have been "
499-"removed! Some islands might be unreachable now. Please consider to fix the "
500-"map in the map editor.\n"
501-"\n"
502-msgstr ""
503-
504-#: ../../src/s2map.cc:886
505-msgid "WARNING"
506-msgstr ""
507-
508-#: ../../src/save_handler.cc:75
509-msgid "Saving game..."
510-msgstr ""
511-
512-#: ../../src/save_handler.cc:94
513-msgid "Saving failed!"
514-msgstr ""
515-
516-#: ../../src/save_handler.cc:113
517-msgid "Game saved"
518-msgstr ""
519-
520 #: ../../src/wlapplication.cc:398
521 msgid "ERROR: Could not connect to metaserver (reason above)!\n"
522 msgstr ""
523@@ -87,23 +54,23 @@
524 msgid "--double is disabled. This is not a debug build!"
525 msgstr ""
526
527-#: ../../src/wlapplication.cc:1332
528+#: ../../src/wlapplication.cc:1340
529 msgid "This is Widelands-"
530 msgstr ""
531
532-#: ../../src/wlapplication.cc:1334
533+#: ../../src/wlapplication.cc:1342
534 msgid ""
535 "Usage: widelands <option0>=<value0> ... <optionN>=<valueN>\n"
536 "\n"
537 msgstr ""
538
539-#: ../../src/wlapplication.cc:1335
540+#: ../../src/wlapplication.cc:1343
541 msgid ""
542 "Options:\n"
543 "\n"
544 msgstr ""
545
546-#: ../../src/wlapplication.cc:1339
547+#: ../../src/wlapplication.cc:1347
548 msgid ""
549 " --<config-entry-name>=value overwrites any config file setting\n"
550 "\n"
551@@ -115,11 +82,11 @@
552 " files, savegames and replays\n"
553 msgstr ""
554
555-#: ../../src/wlapplication.cc:1347
556+#: ../../src/wlapplication.cc:1355
557 msgid " Default is ~/.widelands\n"
558 msgstr ""
559
560-#: ../../src/wlapplication.cc:1350
561+#: ../../src/wlapplication.cc:1358
562 msgid ""
563 " --record=FILENAME Record all events to the given filename for\n"
564 " later playback\n"
565@@ -137,7 +104,7 @@
566 " If this is 0 replays are not deleted.\n"
567 msgstr ""
568
569-#: ../../src/wlapplication.cc:1365
570+#: ../../src/wlapplication.cc:1373
571 msgid ""
572 "Sound options:\n"
573 " --nosound Starts the game with sound disabled.\n"
574@@ -154,11 +121,17 @@
575 " --loadgame=FILENAME Directly loads the savegame FILENAME.\n"
576 msgstr ""
577
578-#: ../../src/wlapplication.cc:1378
579+#: ../../src/wlapplication.cc:1387
580+msgid ""
581+" --script=FILENAME Run the given Lua script after initialization.\n"
582+" Only valid with --scenario, --loadgame, or --editor.\n"
583+msgstr ""
584+
585+#: ../../src/wlapplication.cc:1389
586 msgid " --dedicated=FILENAME Starts a dedicated server with FILENAME as map\n"
587 msgstr ""
588
589-#: ../../src/wlapplication.cc:1381
590+#: ../../src/wlapplication.cc:1392
591 msgid ""
592 " --speed_of_new_game The speed that the new game will run at\n"
593 " when started, with factor 1000 (0 is pause,\n"
594@@ -167,8 +140,6 @@
595 " Whether to enter roadbuilding mode\n"
596 " automatically after placing a flag that is\n"
597 " not connected to a road.\n"
598-" --write_HTML=[yes|no]\n"
599-" Write HTML-helpfiles for parsed game data.\n"
600 "\n"
601 "Graphic options:\n"
602 " --fullscreen=[yes|no]\n"
603@@ -179,13 +150,13 @@
604 " --yres=[...] Height of the window in pixel.\n"
605 msgstr ""
606
607-#: ../../src/wlapplication.cc:1400
608+#: ../../src/wlapplication.cc:1409
609 msgid ""
610 " --opengl=[0|1]\n"
611 " Enables OpenGL rendering\n"
612 msgstr ""
613
614-#: ../../src/wlapplication.cc:1404
615+#: ../../src/wlapplication.cc:1413
616 msgid ""
617 "\n"
618 "Options for the internal window manager:\n"
619@@ -208,22 +179,22 @@
620 "\n"
621 msgstr ""
622
623-#: ../../src/wlapplication.cc:1428
624+#: ../../src/wlapplication.cc:1437
625 msgid ""
626 " --double Start the game twice (for localhost network\n"
627 " testing)\n"
628 "\n"
629 msgstr ""
630
631-#: ../../src/wlapplication.cc:1432
632+#: ../../src/wlapplication.cc:1441
633 msgid " --verbose Enable verbose debug messages\n"
634 msgstr ""
635
636-#: ../../src/wlapplication.cc:1433
637+#: ../../src/wlapplication.cc:1442
638 msgid " --help Show this help\n"
639 msgstr ""
640
641-#: ../../src/wlapplication.cc:1437
642+#: ../../src/wlapplication.cc:1446
643 msgid ""
644 "Bug reports? Suggestions? Check out the project website:\n"
645 " https://launchpad.net/widelands\n"
646@@ -232,29 +203,29 @@
647 "\n"
648 msgstr ""
649
650-#: ../../src/wlapplication.cc:1525
651+#: ../../src/wlapplication.cc:1534
652 msgid "Fallback settings in effect"
653 msgstr ""
654
655-#: ../../src/wlapplication.cc:1527
656+#: ../../src/wlapplication.cc:1536
657 msgid ""
658 "Your video settings could not be enabled, and fallback settings are in "
659 "effect. Please check the graphics options!"
660 msgstr ""
661
662-#: ../../src/wlapplication.cc:1598
663+#: ../../src/wlapplication.cc:1607
664 msgid "Warning: "
665 msgstr ""
666
667-#: ../../src/wlapplication.cc:1602
668+#: ../../src/wlapplication.cc:1611
669 msgid "Game data error"
670 msgstr ""
671
672-#: ../../src/wlapplication.cc:1607
673+#: ../../src/wlapplication.cc:1616
674 msgid "Unexpected error during the game"
675 msgstr ""
676
677-#: ../../src/wlapplication.cc:1611
678+#: ../../src/wlapplication.cc:1620
679 msgid ""
680 "\n"
681 "\n"
682@@ -263,7 +234,7 @@
683 "using build "
684 msgstr ""
685
686-#: ../../src/wlapplication.cc:1617
687+#: ../../src/wlapplication.cc:1626
688 msgid ""
689 ". Please add this information to your report.\n"
690 "\n"
691@@ -271,528 +242,232 @@
692 "It is often - though not always - possible to load it and continue playing.\n"
693 msgstr ""
694
695-#: ../../src/wlapplication.cc:1729
696+#: ../../src/wlapplication.cc:1738
697 msgid "The address of the game server is invalid"
698 msgstr ""
699
700-#: ../../src/wlapplication.cc:1834 ../../src/network/nethost.cc:2050
701-#: ../../src/wui/game_summary.cc:90
702+#: ../../src/wlapplication.cc:1843 ../../src/wui/game_summary.cc:90
703+#: ../../src/network/nethost.cc:2052
704 msgid "Player"
705 msgstr ""
706
707-#: ../../src/wlapplication.cc:2029 ../../src/network/netclient.cc:197
708+#: ../../src/wlapplication.cc:2038 ../../src/network/netclient.cc:197
709 #: ../../src/network/nethost.cc:839
710 msgid "Preparing game"
711 msgstr ""
712
713-#: ../../src/wlapplication.cc:2137
714+#: ../../src/wlapplication.cc:2146
715 msgid "End of replay"
716 msgstr ""
717
718-#: ../../src/wlapplication.cc:2139
719+#: ../../src/wlapplication.cc:2148
720 msgid ""
721 "The end of the replay has been reached and the game has been paused. You may "
722 "unpause the game and continue watching if you want to."
723 msgstr ""
724
725-#: ../../src/wlapplication.cc:2222 ../../src/logic/game.cc:375
726-#: ../../src/logic/game.cc:414
727+#: ../../src/wlapplication.cc:2231 ../../src/logic/game.cc:375
728+#: ../../src/logic/game.cc:408
729 msgid "Loading..."
730 msgstr ""
731
732-#: ../../src/writeHTML.cc:42
733-msgid "Requesters"
734-msgstr ""
735-
736-#: ../../src/writeHTML.cc:57
737-msgid "Providers"
738-msgstr ""
739-
740-#: ../../src/writeHTML.cc:72
741-msgid "Successors"
742-msgstr ""
743-
744-#: ../../src/writeHTML.cc:87
745-msgid "Predecessors"
746-msgstr ""
747-
748-#: ../../src/writeHTML.cc:102
749-msgid "Employers"
750-msgstr ""
751-
752-#: ../../src/writeHTML.cc:265 ../../src/writeHTML.cc:271
753-msgid "Building types"
754-msgstr ""
755-
756-#: ../../src/writeHTML.cc:276 ../../src/writeHTML.cc:510
757-#: ../../src/writeHTML.cc:1463
758-msgid "Icon"
759-msgstr ""
760-
761-#: ../../src/writeHTML.cc:278 ../../src/writeHTML.cc:512
762-#: ../../src/writeHTML.cc:1465 ../../src/ui_fsmenu/internet_lobby.cc:155
763-#: ../../src/wui/building_statistics_menu.cc:110
764-msgid "Name"
765-msgstr ""
766-
767-#: ../../src/writeHTML.cc:280 ../../src/wui/building_statistics_menu.cc:111
768-msgid "Size"
769-msgstr ""
770-
771-#: ../../src/writeHTML.cc:282
772-msgid "Buildable"
773-msgstr ""
774-
775-#: ../../src/writeHTML.cc:284
776-msgid "Enhanced"
777-msgstr ""
778-
779-#: ../../src/writeHTML.cc:286
780-msgid "Conquer<br/>range"
781-msgstr ""
782-
783-#: ../../src/writeHTML.cc:288 ../../src/writeHTML.cc:514
784-msgid "Vision<br/>range"
785-msgstr ""
786-
787-#: ../../src/writeHTML.cc:315 ../../src/writeHTML.cc:371
788-#: ../../src/logic/building.cc:545
789-msgid "Mine"
790-msgstr ""
791-
792-#: ../../src/writeHTML.cc:319 ../../src/writeHTML.cc:387
793-#: ../../src/logic/building.cc:546
794-msgid "Small"
795-msgstr ""
796-
797-#: ../../src/writeHTML.cc:323 ../../src/writeHTML.cc:381
798-#: ../../src/logic/building.cc:547
799-#: ../../src/editor/ui_menus/editor_main_menu_random_map.cc:255
800-msgid "Medium"
801-msgstr ""
802-
803-#: ../../src/writeHTML.cc:328 ../../src/writeHTML.cc:376
804-#: ../../src/logic/building.cc:547
805-msgid "Big"
806-msgstr ""
807-
808-#: ../../src/writeHTML.cc:332 ../../src/writeHTML.cc:335
809+#: ../../src/computer_player.cc:38
810+msgid "None"
811+msgstr ""
812+
813+#: ../../src/save_handler.cc:76
814+msgid "Saving game..."
815+msgstr ""
816+
817+#: ../../src/save_handler.cc:95
818+msgid "Saving failed!"
819+msgstr ""
820+
821+#: ../../src/save_handler.cc:114
822+msgid "Game saved"
823+msgstr ""
824+
825+#: ../../src/s2map.cc:231
826+msgid "Bluebyte Settlers II Map. No comment defined!"
827+msgstr ""
828+
829+#: ../../src/s2map.cc:874
830+#, c-format
831+msgid ""
832+"WARNING: %i invalid port buildspaces could not be fixed and have been "
833+"removed! Some islands might be unreachable now. Please consider to fix the "
834+"map in the map editor.\n"
835+"\n"
836+msgstr ""
837+
838+#: ../../src/s2map.cc:886
839+msgid "WARNING"
840+msgstr ""
841+
842+#: ../../src/ui_basic/spinbox.cc:115
843+msgid "Increase the value"
844+msgstr ""
845+
846+#: ../../src/ui_basic/spinbox.cc:123
847+msgid "Decrease the value"
848+msgstr ""
849+
850+#: ../../src/ui_basic/spinbox.cc:134
851+msgid "Increase the value by 10"
852+msgstr ""
853+
854+#: ../../src/ui_basic/spinbox.cc:142
855+msgid "Decrease the value by 10"
856+msgstr ""
857+
858+#: ../../src/ui_basic/progresswindow.cc:51
859+msgid "Preparing..."
860+msgstr ""
861+
862+#: ../../src/ui_basic/helpwindow.cc:47 ../../src/ui_basic/helpwindow.cc:191
863+msgid "Help: "
864+msgstr ""
865+
866+#: ../../src/ui_basic/helpwindow.cc:83 ../../src/ui_basic/messagebox.cc:92
867+#: ../../src/ui_fsmenu/mapselect.cc:110 ../../src/ui_fsmenu/loadreplay.cc:51
868+#: ../../src/ui_fsmenu/editor_mapselect.cc:96
869+#: ../../src/ui_fsmenu/campaign_select.cc:74
870+#: ../../src/ui_fsmenu/campaign_select.cc:281
871+#: ../../src/ui_fsmenu/loadgame.cc:68 ../../src/scripting/lua_game.cc:444
872+#: ../../src/wui/game_main_menu_save_game.cc:96
873+#: ../../src/editor/ui_menus/editor_main_menu_save_map.cc:132
874+#: ../../src/editor/ui_menus/editor_main_menu_save_map_make_directory.cc:57
875+#: ../../src/editor/ui_menus/editor_main_menu_load_map.cc:121
876+msgid "OK"
877+msgstr ""
878+
879 #: ../../src/ui_basic/messagebox.cc:99
880 #: ../../src/editor/tools/editor_info_tool.cc:75
881 #: ../../src/editor/tools/editor_info_tool.cc:76
882 msgid "Yes"
883 msgstr ""
884
885-#: ../../src/writeHTML.cc:332 ../../src/writeHTML.cc:335
886 #: ../../src/ui_basic/messagebox.cc:106
887 #: ../../src/editor/tools/editor_info_tool.cc:75
888 #: ../../src/editor/tools/editor_info_tool.cc:76
889 msgid "No"
890 msgstr ""
891
892-#: ../../src/writeHTML.cc:373
893-msgid "Is mine."
894-msgstr ""
895-
896-#: ../../src/writeHTML.cc:378
897-msgid "Is big."
898-msgstr ""
899-
900-#: ../../src/writeHTML.cc:383
901-msgid "Is medium."
902-msgstr ""
903-
904-#: ../../src/writeHTML.cc:389
905-msgid "Is small."
906-msgstr ""
907-
908-#: ../../src/writeHTML.cc:396
909-msgid "Is not buildable."
910-msgstr ""
911-
912-#: ../../src/writeHTML.cc:403
913-msgid "Is enhanced."
914-msgstr ""
915-
916-#: ../../src/writeHTML.cc:410
917-#, c-format
918-msgid "Conquer range is %u."
919-msgstr ""
920-
921-#: ../../src/writeHTML.cc:418 ../../src/writeHTML.cc:642
922-#, c-format
923-msgid "Vision range is %u."
924-msgstr ""
925-
926-#: ../../src/writeHTML.cc:426 ../../src/writeHTML.cc:649
927-msgid "Build cost"
928-msgstr ""
929-
930-#: ../../src/writeHTML.cc:436
931-#, c-format
932-msgid "%s's constructionsite"
933-msgstr ""
934-
935-#: ../../src/writeHTML.cc:448
936-msgid "Enhancements"
937-msgstr ""
938-
939-#: ../../src/writeHTML.cc:458
940-#, c-format
941-msgid "%s's enhancement"
942-msgstr ""
943-
944-#: ../../src/writeHTML.cc:499 ../../src/writeHTML.cc:505
945-msgid "Worker types"
946-msgstr ""
947-
948-#: ../../src/writeHTML.cc:516
949-msgid "Needed<br/>experience"
950-msgstr ""
951-
952-#: ../../src/writeHTML.cc:518
953-msgid "Becomes"
954-msgstr ""
955-
956-#: ../../src/writeHTML.cc:577
957-msgid "Combat Properties"
958-msgstr ""
959-
960-#: ../../src/writeHTML.cc:584
961-#, c-format
962-msgid "Hitpoints is %u, plus %u for each level above 0 (maximum level is %u)."
963-msgstr ""
964-
965-#: ../../src/writeHTML.cc:594
966-#, c-format
967-msgid ""
968-"Attack is between %u and %u, plus %u for each level above 0 (maximum level "
969-"is %u)."
970-msgstr ""
971-
972-#: ../../src/writeHTML.cc:604
973-#, c-format
974-msgid "Defense is %u, plus %u for each level above 0 (maximum level is %u)."
975-msgstr ""
976-
977-#: ../../src/writeHTML.cc:614
978-#, c-format
979-msgid "Evade is %u, plus %u for each level above 0 (maximum level is %u)."
980-msgstr ""
981-
982-#: ../../src/writeHTML.cc:660 ../../src/writeHTML.cc:671
983-#, c-format
984-msgid "%s's creation"
985-msgstr ""
986-
987-#: ../../src/writeHTML.cc:682
988-msgid "Spawns in warehouses."
989-msgstr ""
990-
991-#: ../../src/writeHTML.cc:691
992-#, c-format
993-msgid "Needs experience from working %u times to become"
994-msgstr ""
995-
996-#: ../../src/writeHTML.cc:699
997-#, c-format
998-msgid "%s's promotion"
999-msgstr ""
1000-
1001-#: ../../src/writeHTML.cc:710 ../../src/writeHTML.cc:855
1002-msgid "Programs"
1003-msgstr ""
1004-
1005-#: ../../src/writeHTML.cc:764
1006-msgid "UNKNOWN"
1007-msgstr ""
1008-
1009-#: ../../src/writeHTML.cc:771 ../../src/wui/ware_statistics_menu.cc:177
1010-msgid "Production"
1011-msgstr ""
1012-
1013-#: ../../src/writeHTML.cc:775 ../../src/wui/general_statistics_menu.cc:180
1014-#: ../../src/wui/productionsitewindow.cc:106 ../../src/wui/transport_ui.cc:66
1015-#: ../../src/wui/warehousewindow.cc:211
1016-msgid "Workers"
1017-msgstr ""
1018-
1019-#: ../../src/writeHTML.cc:786
1020-#, c-format
1021-msgid "%s's employee"
1022-msgstr ""
1023-
1024-#: ../../src/writeHTML.cc:796
1025-msgid "Inputs"
1026-msgstr ""
1027-
1028-#: ../../src/writeHTML.cc:807
1029-#, c-format
1030-msgid "%s's input"
1031-msgstr ""
1032-
1033-#: ../../src/writeHTML.cc:819
1034-msgid "Output"
1035-msgstr ""
1036-
1037-#: ../../src/writeHTML.cc:830 ../../src/writeHTML.cc:844
1038-#, c-format
1039-msgid "%s's output"
1040-msgstr ""
1041-
1042-#: ../../src/writeHTML.cc:893 ../../src/writeHTML.cc:1037
1043-#: ../../src/writeHTML.cc:1100 ../../src/writeHTML.cc:1129
1044-#: ../../src/writeHTML.cc:1150 ../../src/writeHTML.cc:1170
1045-#: ../../src/writeHTML.cc:1192 ../../src/writeHTML.cc:1236
1046-#: ../../src/writeHTML.cc:1274 ../../src/writeHTML.cc:1316
1047-#: ../../src/writeHTML.cc:1344 ../../src/writeHTML.cc:1369
1048-#: ../../src/writeHTML.cc:1394 ../../src/writeHTML.cc:1412
1049-msgid "Documentation for program command "
1050-msgstr ""
1051-
1052-#: ../../src/writeHTML.cc:1017
1053-msgid "workers of this site"
1054-msgstr ""
1055-
1056-#: ../../src/writeHTML.cc:1047
1057-#, c-format
1058-msgid "site's program %s"
1059-msgstr ""
1060-
1061-#: ../../src/writeHTML.cc:1114
1062-#, c-format
1063-msgid "%s's program %s"
1064-msgstr ""
1065-
1066-#: ../../src/writeHTML.cc:1138 ../../src/writeHTML.cc:1179
1067-#, c-format
1068-msgid " %u.%03u s"
1069-msgstr ""
1070-
1071-#: ../../src/writeHTML.cc:1452 ../../src/writeHTML.cc:1458
1072-msgid "Ware types"
1073-msgstr ""
1074-
1075-#: ../../src/economy/cmd_call_economy_balance.cc:86
1076-#: ../../src/economy/fleet.cc:767 ../../src/economy/portdock.cc:619
1077-#: ../../src/economy/request.cc:240 ../../src/economy/wares_queue.cc:287
1078+#: ../../src/sound/sound_handler.cc:147
1079+#, c-format
1080+msgid "Sound_Handler closing times %1$i, freq %2$i, format %3$i, chan %4$i\n"
1081+msgstr ""
1082+
1083+#: ../../src/sound/sound_handler.cc:165
1084+msgid "PROBLEM: sound device opened multiple times, trying to close"
1085+msgstr ""
1086+
1087+#: ../../src/graphic/animation.cc:137
1088+#: ../../src/map_io/widelands_map_buildingdata_data_packet.cc:557
1089+#: ../../src/map_io/widelands_map_players_messages_data_packet.cc:131
1090+#: ../../src/logic/building.cc:88 ../../src/logic/military_data.cc:51
1091+#: ../../src/logic/military_data.cc:58 ../../src/logic/immovable.cc:192
1092+#: ../../src/logic/immovable.cc:828 ../../src/logic/immovable.cc:868
1093+#: ../../src/logic/immovable.cc:1033 ../../src/logic/production_program.cc:114
1094+#: ../../src/logic/production_program.cc:282
1095+#: ../../src/logic/production_program.cc:289
1096+#: ../../src/logic/production_program.cc:307
1097+#: ../../src/logic/production_program.cc:324
1098+#: ../../src/logic/production_program.cc:349
1099+#: ../../src/logic/production_program.cc:368
1100+#: ../../src/logic/production_program.cc:401
1101+#: ../../src/logic/production_program.cc:405
1102+#: ../../src/logic/production_program.cc:540
1103+#: ../../src/logic/production_program.cc:554
1104+#: ../../src/logic/production_program.cc:672
1105+#: ../../src/logic/production_program.cc:746
1106+#: ../../src/logic/production_program.cc:908
1107+#: ../../src/logic/production_program.cc:1006
1108+#: ../../src/logic/production_program.cc:1087
1109+#: ../../src/logic/production_program.cc:1097
1110+#: ../../src/logic/production_program.cc:1108
1111+#: ../../src/logic/production_program.cc:1263
1112+#: ../../src/logic/production_program.cc:1275
1113+#: ../../src/logic/production_program.cc:1283
1114+#: ../../src/logic/production_program.cc:1342
1115+#: ../../src/logic/production_program.cc:1354
1116+#: ../../src/logic/production_program.cc:1363
1117+#: ../../src/logic/production_program.cc:1454 ../../src/logic/soldier.cc:70
1118+#: ../../src/logic/soldier.cc:77 ../../src/logic/soldier.cc:185
1119+#, c-format
1120+msgid "expected %1$s but found \"%2$s\""
1121+msgstr ""
1122+
1123+#: ../../src/graphic/animation.cc:138
1124+msgid "frame number"
1125+msgstr ""
1126+
1127+#: ../../src/game_io/game_player_info_data_packet.cc:54
1128+#, c-format
1129+msgid "player number (%1$i) is out of range (1 .. %2$u)"
1130+msgstr ""
1131+
1132+#: ../../src/game_io/game_player_info_data_packet.cc:143
1133+#: ../../src/game_io/game_game_class_data_packet.cc:44
1134+#: ../../src/game_io/game_player_economies_data_packet.cc:87
1135 #: ../../src/game_io/game_cmd_queue_data_packet.cc:84
1136-#: ../../src/game_io/game_game_class_data_packet.cc:44
1137 #: ../../src/game_io/game_interactive_player_data_packet.cc:79
1138-#: ../../src/game_io/game_player_economies_data_packet.cc:71
1139-#: ../../src/game_io/game_player_info_data_packet.cc:143
1140-#: ../../src/logic/battle.cc:408
1141-#: ../../src/logic/cmd_calculate_statistics.cc:44
1142-#: ../../src/logic/cmd_incorporate.cc:46
1143-#: ../../src/logic/cmd_luacoroutine.cc:75 ../../src/logic/cmd_luascript.cc:56
1144-#: ../../src/logic/cmd_queue.cc:191 ../../src/logic/critter_bob.cc:387
1145-#: ../../src/logic/immovable.cc:793 ../../src/logic/immovable.cc:1489
1146-#: ../../src/logic/instances.cc:71 ../../src/logic/instances.cc:129
1147-#: ../../src/logic/instances.cc:495 ../../src/logic/legacy.cc:428
1148-#: ../../src/logic/legacy.cc:486 ../../src/logic/playercommand.cc:151
1149-#: ../../src/logic/playercommand.cc:199 ../../src/logic/playercommand.cc:253
1150-#: ../../src/logic/playercommand.cc:301 ../../src/logic/playercommand.cc:388
1151-#: ../../src/logic/playercommand.cc:448 ../../src/logic/playercommand.cc:505
1152-#: ../../src/logic/playercommand.cc:579 ../../src/logic/playercommand.cc:623
1153-#: ../../src/logic/playercommand.cc:684 ../../src/logic/playercommand.cc:1177
1154-#: ../../src/logic/playercommand.cc:1368 ../../src/logic/playercommand.cc:1431
1155-#: ../../src/logic/playercommand.cc:1490 ../../src/logic/playercommand.cc:1553
1156-#: ../../src/logic/playercommand.cc:1615 ../../src/logic/playercommand.cc:1685
1157-#: ../../src/logic/playercommand.cc:1757 ../../src/logic/playercommand.cc:1855
1158-#: ../../src/logic/playercommand.cc:1933 ../../src/logic/playercommand.cc:1977
1159-#: ../../src/logic/replay.cc:116 ../../src/logic/requirements.cc:48
1160-#: ../../src/logic/ship.cc:984
1161-#: ../../src/map_io/widelands_map_bob_data_packet.cc:136
1162+#: ../../src/map_io/widelands_map_terrain_data_packet.cc:77
1163+#: ../../src/map_io/widelands_map_bob_data_packet.cc:135
1164+#: ../../src/map_io/widelands_map_flagdata_data_packet.cc:220
1165+#: ../../src/map_io/widelands_map_buildingdata_data_packet.cc:247
1166+#: ../../src/map_io/widelands_map_buildingdata_data_packet.cc:348
1167+#: ../../src/map_io/widelands_map_buildingdata_data_packet.cc:385
1168+#: ../../src/map_io/widelands_map_buildingdata_data_packet.cc:465
1169+#: ../../src/map_io/widelands_map_buildingdata_data_packet.cc:734
1170+#: ../../src/map_io/widelands_map_buildingdata_data_packet.cc:831
1171+#: ../../src/map_io/widelands_map_buildingdata_data_packet.cc:1130
1172+#: ../../src/map_io/widelands_map_buildingdata_data_packet.cc:1206
1173+#: ../../src/map_io/widelands_map_player_position_data_packet.cc:58
1174 #: ../../src/map_io/widelands_map_bobdata_data_packet.cc:372
1175 #: ../../src/map_io/widelands_map_bobdata_data_packet.cc:387
1176 #: ../../src/map_io/widelands_map_bobdata_data_packet.cc:481
1177 #: ../../src/map_io/widelands_map_bobdata_data_packet.cc:497
1178 #: ../../src/map_io/widelands_map_bobdata_data_packet.cc:549
1179-#: ../../src/map_io/widelands_map_building_data_packet.cc:111
1180-#: ../../src/map_io/widelands_map_buildingdata_data_packet.cc:247
1181-#: ../../src/map_io/widelands_map_buildingdata_data_packet.cc:348
1182-#: ../../src/map_io/widelands_map_buildingdata_data_packet.cc:385
1183-#: ../../src/map_io/widelands_map_buildingdata_data_packet.cc:465
1184-#: ../../src/map_io/widelands_map_buildingdata_data_packet.cc:763
1185-#: ../../src/map_io/widelands_map_buildingdata_data_packet.cc:860
1186-#: ../../src/map_io/widelands_map_buildingdata_data_packet.cc:1159
1187-#: ../../src/map_io/widelands_map_buildingdata_data_packet.cc:1235
1188-#: ../../src/map_io/widelands_map_exploration_data_packet.cc:92
1189-#: ../../src/map_io/widelands_map_extradata_data_packet.cc:99
1190+#: ../../src/map_io/widelands_map_extradata_data_packet.cc:98
1191+#: ../../src/map_io/widelands_map_heights_data_packet.cc:50
1192+#: ../../src/map_io/widelands_map_waredata_data_packet.cc:205
1193 #: ../../src/map_io/widelands_map_flag_data_packet.cc:118
1194-#: ../../src/map_io/widelands_map_flagdata_data_packet.cc:221
1195-#: ../../src/map_io/widelands_map_heights_data_packet.cc:51
1196 #: ../../src/map_io/widelands_map_node_ownership_data_packet.cc:62
1197+#: ../../src/map_io/widelands_map_road_data_packet.cc:66
1198+#: ../../src/map_io/widelands_map_exploration_data_packet.cc:91
1199+#: ../../src/map_io/widelands_map_version_data_packet.cc:73
1200 #: ../../src/map_io/widelands_map_object_packet.cc:61
1201-#: ../../src/map_io/widelands_map_player_position_data_packet.cc:59
1202-#: ../../src/map_io/widelands_map_road_data_packet.cc:67
1203-#: ../../src/map_io/widelands_map_roaddata_data_packet.cc:207
1204-#: ../../src/map_io/widelands_map_terrain_data_packet.cc:78
1205-#: ../../src/map_io/widelands_map_version_data_packet.cc:74
1206-#: ../../src/map_io/widelands_map_ware_data_packet.cc:74
1207-#: ../../src/map_io/widelands_map_waredata_data_packet.cc:206
1208+#: ../../src/map_io/widelands_map_building_data_packet.cc:110
1209+#: ../../src/map_io/widelands_map_ware_data_packet.cc:73
1210+#: ../../src/map_io/widelands_map_roaddata_data_packet.cc:206
1211+#: ../../src/logic/battle.cc:407 ../../src/logic/cmd_incorporate.cc:46
1212+#: ../../src/logic/cmd_luacoroutine.cc:75 ../../src/logic/ship.cc:1045
1213+#: ../../src/logic/cmd_queue.cc:184 ../../src/logic/instances.cc:71
1214+#: ../../src/logic/instances.cc:129 ../../src/logic/instances.cc:495
1215+#: ../../src/logic/cmd_luascript.cc:56 ../../src/logic/critter_bob.cc:387
1216+#: ../../src/logic/requirements.cc:48 ../../src/logic/immovable.cc:793
1217+#: ../../src/logic/immovable.cc:1489 ../../src/logic/legacy.cc:428
1218+#: ../../src/logic/legacy.cc:486 ../../src/logic/replay.cc:116
1219+#: ../../src/logic/playercommand.cc:151 ../../src/logic/playercommand.cc:199
1220+#: ../../src/logic/playercommand.cc:253 ../../src/logic/playercommand.cc:301
1221+#: ../../src/logic/playercommand.cc:388 ../../src/logic/playercommand.cc:448
1222+#: ../../src/logic/playercommand.cc:505 ../../src/logic/playercommand.cc:579
1223+#: ../../src/logic/playercommand.cc:623 ../../src/logic/playercommand.cc:684
1224+#: ../../src/logic/playercommand.cc:1177 ../../src/logic/playercommand.cc:1368
1225+#: ../../src/logic/playercommand.cc:1431 ../../src/logic/playercommand.cc:1490
1226+#: ../../src/logic/playercommand.cc:1553 ../../src/logic/playercommand.cc:1615
1227+#: ../../src/logic/playercommand.cc:1685 ../../src/logic/playercommand.cc:1757
1228+#: ../../src/logic/playercommand.cc:1855 ../../src/logic/playercommand.cc:1933
1229+#: ../../src/logic/playercommand.cc:1977
1230+#: ../../src/logic/cmd_calculate_statistics.cc:44
1231+#: ../../src/economy/portdock.cc:537 ../../src/economy/request.cc:241
1232+#: ../../src/economy/wares_queue.cc:287 ../../src/economy/fleet.cc:770
1233+#: ../../src/economy/cmd_call_economy_balance.cc:86
1234 #, c-format
1235 msgid "unknown/unhandled version %u"
1236 msgstr ""
1237
1238-#: ../../src/economy/cmd_call_economy_balance.cc:88
1239-#, c-format
1240-msgid "call economy balance: %s"
1241-msgstr ""
1242-
1243-#: ../../src/economy/economy_data_packet.cc:61
1244-#: ../../src/economy/economy_data_packet.cc:80
1245-#, c-format
1246-msgid "duplicated entry for %s"
1247-msgstr ""
1248-
1249-#: ../../src/economy/economy_data_packet.cc:92
1250-#, c-format
1251-msgid "target quantities: %s"
1252-msgstr ""
1253-
1254-#: ../../src/economy/economy_data_packet.cc:96
1255-#, c-format
1256-msgid "unknown version %u"
1257-msgstr ""
1258-
1259-#: ../../src/economy/economy_data_packet.cc:99
1260-#, c-format
1261-msgid "economy: %s"
1262-msgstr ""
1263-
1264-#: ../../src/economy/fleet.cc:769 ../../src/economy/portdock.cc:621
1265-#, c-format
1266-msgid "loading portdock: %s"
1267-msgstr ""
1268-
1269-#: ../../src/economy/wares_queue.cc:289
1270-#, c-format
1271-msgid "waresqueue: %s"
1272-msgstr ""
1273-
1274-#: ../../src/editor/editorinteractive.cc:64
1275-msgid "Menu"
1276-msgstr ""
1277-
1278-#: ../../src/editor/editorinteractive.cc:67
1279-#: ../../src/editor/ui_menus/editor_tool_menu.cc:46
1280-msgid "Tools"
1281-msgstr ""
1282-
1283-#: ../../src/editor/editorinteractive.cc:71
1284-#: ../../src/editor/ui_menus/editor_toolsize_menu.cc:41
1285-msgid "Toolsize"
1286-msgstr ""
1287-
1288-#: ../../src/editor/editorinteractive.cc:74
1289-#: ../../src/wui/interactive_player.cc:119
1290-#: ../../src/wui/interactive_spectator.cc:61
1291-msgid "Minimap"
1292-msgstr ""
1293-
1294-#: ../../src/editor/editorinteractive.cc:77
1295-#: ../../src/wui/interactive_player.cc:122
1296-msgid "Buildhelp"
1297-msgstr ""
1298-
1299-#: ../../src/editor/editorinteractive.cc:80
1300-#: ../../src/ui_fsmenu/launchMPG.cc:160
1301-msgid "Players"
1302-msgstr ""
1303-
1304-#: ../../src/editor/editorinteractive.cc:83
1305-msgid "Undo"
1306-msgstr ""
1307-
1308-#: ../../src/editor/editorinteractive.cc:86
1309-msgid "Redo"
1310-msgstr ""
1311-
1312-#: ../../src/editor/editorinteractive.cc:190
1313-#: ../../src/editor/editorinteractive.cc:610
1314-#, c-format
1315-msgid "Loading tribe: %s"
1316-msgstr ""
1317-
1318-#: ../../src/editor/editorinteractive.cc:196
1319-msgid "Creating players"
1320-msgstr ""
1321-
1322-#: ../../src/editor/editorinteractive.cc:203
1323-#: ../../src/logic/editor_game_base.cc:276
1324-msgid "Loading world data"
1325-msgstr ""
1326-
1327-#: ../../src/editor/editorinteractive.cc:206
1328-#: ../../src/editor/editorinteractive.cc:614
1329-msgid "Loading graphics..."
1330-msgstr ""
1331-
1332-#: ../../src/editor/editorinteractive.cc:252
1333-msgid "Map unsaved"
1334-msgstr ""
1335-
1336-#: ../../src/editor/editorinteractive.cc:253
1337-msgid "The Map is unsaved, do you really want to quit?"
1338-msgstr ""
1339-
1340-#: ../../src/editor/editorinteractive.cc:601
1341-#: ../../src/editor/ui_menus/editor_main_menu_new_map.cc:179
1342-#: ../../src/editor/ui_menus/editor_main_menu_random_map.cc:486
1343-#: ../../src/editor/ui_menus/editor_main_menu_save_map.cc:182
1344-#: ../../src/logic/map.h:166
1345-msgid "No Name"
1346-msgstr ""
1347-
1348-#: ../../src/editor/editorinteractive.cc:603
1349-#: ../../src/ui_fsmenu/loadgame.cc:241 ../../src/ui_fsmenu/loadreplay.cc:197
1350-#: ../../src/ui_fsmenu/netsetup_lan.cc:198 ../../src/wui/game_summary.cc:171
1351-#: ../../src/editor/ui_menus/editor_main_menu_new_map.cc:180
1352-#: ../../src/editor/ui_menus/editor_main_menu_random_map.cc:487
1353-#: ../../src/logic/map.h:167
1354-msgid "Unknown"
1355-msgstr ""
1356-
1357-#: ../../src/game_io/game_cmd_queue_data_packet.cc:86
1358-#, c-format
1359-msgid "command queue: %s"
1360-msgstr ""
1361-
1362-#: ../../src/game_io/game_game_class_data_packet.cc:46
1363-#, c-format
1364-msgid "game_class: %s"
1365-msgstr ""
1366-
1367-#: ../../src/game_io/game_interactive_player_data_packet.cc:57
1368-msgid "The game has no players!"
1369-msgstr ""
1370-
1371-#: ../../src/game_io/game_interactive_player_data_packet.cc:81
1372-#, c-format
1373-msgid "interactive player: %s"
1374-msgstr ""
1375-
1376-#: ../../src/game_io/game_player_economies_data_packet.cc:65
1377-msgid "there is no flag at the specified location"
1378-msgstr ""
1379-
1380-#: ../../src/game_io/game_player_economies_data_packet.cc:67
1381-#: ../../src/map_io/widelands_map_player_position_data_packet.cc:55
1382-#, c-format
1383-msgid "player %u: %s"
1384-msgstr ""
1385-
1386-#: ../../src/game_io/game_player_economies_data_packet.cc:73
1387-#, c-format
1388-msgid "economies: %s"
1389-msgstr ""
1390-
1391-#: ../../src/game_io/game_player_info_data_packet.cc:54
1392-#, c-format
1393-msgid "player number (%i) is out of range (1 .. %u)"
1394-msgstr ""
1395-
1396 #: ../../src/game_io/game_player_info_data_packet.cc:145
1397 #, c-format
1398 msgid "player info: %s"
1399@@ -803,19 +478,19 @@
1400 msgstr ""
1401
1402 #: ../../src/game_io/game_preload_data_packet.cc:77
1403+#: ../../src/ui_fsmenu/launchMPG.cc:287 ../../src/ui_fsmenu/launchSPG.cc:230
1404 #: ../../src/logic/game.cc:248 ../../src/logic/game.cc:344
1405-#: ../../src/ui_fsmenu/launchMPG.cc:286 ../../src/ui_fsmenu/launchSPG.cc:230
1406 #: ../../src/wui/multiplayersetupgroup.cc:356
1407 msgid "Scenario"
1408 msgstr ""
1409
1410 #: ../../src/game_io/game_preload_data_packet.cc:104
1411-#: ../../src/map_io/widelands_map_allowed_building_types_data_packet.cc:93
1412-#: ../../src/map_io/widelands_map_allowed_worker_types_data_packet.cc:79
1413-#: ../../src/map_io/widelands_map_elemental_data_packet.cc:68
1414-#: ../../src/map_io/widelands_map_objective_data_packet.cc:71
1415-#: ../../src/map_io/widelands_map_player_names_and_tribes_data_packet.cc:79
1416+#: ../../src/map_io/widelands_map_objective_data_packet.cc:70
1417+#: ../../src/map_io/widelands_map_allowed_worker_types_data_packet.cc:78
1418 #: ../../src/map_io/widelands_map_port_spaces_data_packet.cc:61
1419+#: ../../src/map_io/widelands_map_allowed_building_types_data_packet.cc:92
1420+#: ../../src/map_io/widelands_map_elemental_data_packet.cc:67
1421+#: ../../src/map_io/widelands_map_player_names_and_tribes_data_packet.cc:78
1422 #, c-format
1423 msgid "unknown/unhandled version %i"
1424 msgstr ""
1425@@ -825,928 +500,43 @@
1426 msgid "preload: %s"
1427 msgstr ""
1428
1429-#: ../../src/graphic/animation.cc:137 ../../src/logic/building.cc:88
1430-#: ../../src/logic/immovable.cc:192 ../../src/logic/immovable.cc:828
1431-#: ../../src/logic/immovable.cc:868 ../../src/logic/immovable.cc:1033
1432-#: ../../src/logic/military_data.cc:51 ../../src/logic/military_data.cc:58
1433-#: ../../src/logic/production_program.cc:114
1434-#: ../../src/logic/production_program.cc:276
1435-#: ../../src/logic/production_program.cc:283
1436-#: ../../src/logic/production_program.cc:301
1437-#: ../../src/logic/production_program.cc:318
1438-#: ../../src/logic/production_program.cc:397
1439-#: ../../src/logic/production_program.cc:401
1440-#: ../../src/logic/production_program.cc:529
1441-#: ../../src/logic/production_program.cc:543
1442-#: ../../src/logic/production_program.cc:661
1443-#: ../../src/logic/production_program.cc:735
1444-#: ../../src/logic/production_program.cc:891
1445-#: ../../src/logic/production_program.cc:989
1446-#: ../../src/logic/production_program.cc:1069
1447-#: ../../src/logic/production_program.cc:1079
1448-#: ../../src/logic/production_program.cc:1090
1449-#: ../../src/logic/production_program.cc:1246
1450-#: ../../src/logic/production_program.cc:1268
1451-#: ../../src/logic/production_program.cc:1327
1452-#: ../../src/logic/production_program.cc:1339
1453-#: ../../src/logic/production_program.cc:1348
1454-#: ../../src/logic/production_program.cc:1438 ../../src/logic/soldier.cc:70
1455-#: ../../src/logic/soldier.cc:77 ../../src/logic/soldier.cc:185
1456-#: ../../src/map_io/widelands_map_buildingdata_data_packet.cc:557
1457-#: ../../src/map_io/widelands_map_players_messages_data_packet.cc:131
1458-#, c-format
1459-msgid "expected %s but found \"%s\""
1460-msgstr ""
1461-
1462-#: ../../src/graphic/animation.cc:138
1463-msgid "frame number"
1464-msgstr ""
1465-
1466-#: ../../src/io/dedicated_log.cc:66 ../../src/network/internet_gaming.cc:795
1467-#: ../../src/ui_fsmenu/mapselect.cc:503 ../../src/ui_fsmenu/mapselect.cc:507
1468-msgid "unknown"
1469-msgstr ""
1470-
1471-#: ../../src/logic/battle.cc:174
1472-#, c-format
1473-msgid "[battle] soldier %u lose battle\n"
1474-msgstr ""
1475-
1476-#: ../../src/logic/battle.cc:178
1477-#, c-format
1478-msgid "[battle] waking up winner %d\n"
1479-msgstr ""
1480-
1481-#: ../../src/logic/bob.cc:88 ../../src/logic/immovable.cc:204
1482-#, c-format
1483-msgid "bad attribute \"%s\""
1484-msgstr ""
1485-
1486-#: ../../src/logic/building.cc:540
1487-msgid "mine"
1488-msgstr ""
1489-
1490-#: ../../src/logic/building.cc:541
1491-#: ../../src/editor/tools/editor_info_tool.cc:60
1492-msgid "small"
1493-msgstr ""
1494-
1495-#: ../../src/logic/building.cc:542
1496-#: ../../src/editor/tools/editor_info_tool.cc:61
1497-msgid "medium"
1498-msgstr ""
1499-
1500-#: ../../src/logic/building.cc:542
1501-#: ../../src/editor/tools/editor_info_tool.cc:62
1502-msgid "big"
1503-msgstr ""
1504-
1505-#: ../../src/logic/cmd_calculate_statistics.cc:46
1506-#, c-format
1507-msgid "calculate statistics function: %s"
1508-msgstr ""
1509-
1510-#: ../../src/logic/cmd_luacoroutine.cc:77
1511-#, c-format
1512-msgid "lua function: %s"
1513-msgstr ""
1514-
1515-#: ../../src/logic/cmd_luascript.cc:58
1516-#, c-format
1517-msgid "lua: %s"
1518-msgstr ""
1519-
1520-#: ../../src/logic/cmd_queue.cc:188
1521-#, c-format
1522-msgid "duetime (%i) < gametime (%i)"
1523-msgstr ""
1524-
1525-#: ../../src/logic/cmd_queue.cc:193
1526-#, c-format
1527-msgid "game logic: %s"
1528-msgstr ""
1529-
1530-#: ../../src/logic/critter_bob.cc:389
1531-#, c-format
1532-msgid "loading critter: %s"
1533-msgstr ""
1534-
1535-#: ../../src/logic/dismantlesite.cc:100
1536-#, c-format
1537-msgid "%u%% dismantled"
1538-msgstr ""
1539-
1540-#: ../../src/logic/editor_game_base.cc:283
1541-msgid "Loading tribes"
1542-msgstr ""
1543-
1544-#: ../../src/logic/game.cc:139
1545-msgid "Not set"
1546-msgstr ""
1547-
1548-#: ../../src/logic/game.cc:227
1549-msgid "Preloading a map"
1550-msgstr ""
1551-
1552-#: ../../src/logic/game.cc:234
1553-msgid "Loading a world"
1554-msgstr ""
1555-
1556-#: ../../src/logic/game.cc:240
1557-#, c-format
1558-msgid "Adding player %u"
1559-msgstr ""
1560-
1561-#: ../../src/logic/game.cc:254
1562-msgid "Loading a map"
1563-msgstr ""
1564-
1565-#: ../../src/logic/game.cc:283 ../../src/logic/game.cc:362
1566-#: ../../src/logic/game.cc:397
1567-msgid "Preloading map"
1568-msgstr ""
1569-
1570-#: ../../src/logic/game.cc:298
1571-msgid "Configuring players"
1572-msgstr ""
1573-
1574-#: ../../src/logic/game.cc:332
1575-msgid "Loading map"
1576-msgstr ""
1577-
1578-#: ../../src/logic/game.cc:484
1579-msgid "Creating player infrastructure"
1580-msgstr ""
1581-
1582-#: ../../src/logic/game.cc:497 ../../src/logic/player.cc:221
1583-msgid "Missing starting position"
1584-msgstr ""
1585-
1586-#: ../../src/logic/game.cc:499 ../../src/logic/player.cc:223
1587-#, c-format
1588-msgid ""
1589-"Widelands could not start the game, because player %u has no starting "
1590-"position.\n"
1591-"You can manually add a starting position with Widelands Editor, to fix this "
1592-"problem."
1593-msgstr ""
1594-
1595-#: ../../src/logic/immovable.cc:141 ../../src/logic/production_program.cc:1647
1596-#, c-format
1597-msgid "unknown command type \"%s\""
1598-msgstr ""
1599-
1600-#: ../../src/logic/immovable.cc:145
1601-msgid "no actions"
1602-msgstr ""
1603-
1604-#: ../../src/logic/immovable.cc:218
1605-msgid "this program has already been declared"
1606-msgstr ""
1607-
1608-#: ../../src/logic/immovable.cc:224
1609-#, c-format
1610-msgid "program %s: %s"
1611-msgstr ""
1612-
1613-#: ../../src/logic/immovable.cc:256 ../../src/logic/immovable.cc:271
1614-#, c-format
1615-msgid "expected 0 .. 255 but found %u"
1616-msgstr ""
1617-
1618-#: ../../src/logic/immovable.cc:258 ../../src/logic/immovable.cc:273
1619-msgid "duplicated"
1620-msgstr ""
1621-
1622-#: ../../src/logic/immovable.cc:276
1623-#, c-format
1624-msgid "[terrain affinity] \"%s\" (not in current world): %s"
1625-msgstr ""
1626-
1627-#: ../../src/logic/immovable.cc:312
1628-#, c-format
1629-msgid "immovable %s has no program \"%s\""
1630-msgstr ""
1631-
1632-#: ../../src/logic/immovable.cc:776
1633-#, c-format
1634-msgid "tribe %s does not define immovable type \"%s\""
1635-msgstr ""
1636-
1637-#: ../../src/logic/immovable.cc:779
1638-#, c-format
1639-msgid "unknown tribe %s"
1640-msgstr ""
1641-
1642-#: ../../src/logic/immovable.cc:785
1643-#, c-format
1644-msgid "world does not define immovable type \"%s\""
1645-msgstr ""
1646-
1647-#: ../../src/logic/immovable.cc:795
1648-#, c-format
1649-msgid "immovable type %s"
1650-msgstr ""
1651-
1652-#: ../../src/logic/immovable.cc:829 ../../src/logic/production_program.cc:662
1653-#: ../../src/logic/production_program.cc:736
1654-msgid "duration in ms"
1655-msgstr ""
1656-
1657-#: ../../src/logic/immovable.cc:868 ../../src/logic/production_program.cc:1438
1658-msgid "priority"
1659-msgstr ""
1660-
1661-#: ../../src/logic/immovable.cc:908 ../../src/logic/immovable.cc:1088
1662-#, c-format
1663-msgid "expected probability in range [1, 254] but found \"%s\""
1664-msgstr ""
1665-
1666-#: ../../src/logic/immovable.cc:927
1667-#, c-format
1668-msgid ""
1669-"unknown scope \"%s\" given for target type (must be \"world\" or \"tribe\")"
1670-msgstr ""
1671-
1672-#: ../../src/logic/immovable.cc:938
1673-msgid "illegal transformation to the same type"
1674-msgstr ""
1675-
1676-#: ../../src/logic/immovable.cc:980 ../../src/logic/immovable.cc:1067
1677-#, c-format
1678-msgid "immovable type not in tribe but target type has scope (\"%s\")"
1679-msgstr ""
1680-
1681-#: ../../src/logic/immovable.cc:986 ../../src/logic/immovable.cc:1073
1682-#, c-format
1683-msgid "scope \"%s\" given for target type (must be \"world\")"
1684-msgstr ""
1685-
1686-#: ../../src/logic/immovable.cc:1034
1687-msgid "probability in range [1, 254]"
1688-msgstr ""
1689-
1690-#: ../../src/logic/immovable.cc:1491
1691-#, c-format
1692-msgid "loading player immovable: %s"
1693-msgstr ""
1694-
1695-#: ../../src/logic/instances.cc:73
1696-#, c-format
1697-msgid "destroy map object: %s"
1698-msgstr ""
1699-
1700-#: ../../src/logic/instances.cc:122
1701-#, c-format
1702-msgid "object %u: %s"
1703-msgstr ""
1704-
1705-#: ../../src/logic/instances.cc:131
1706-#, c-format
1707-msgid "act: %s"
1708-msgstr ""
1709-
1710-#: ../../src/logic/map.cc:363
1711-msgid "Player 1"
1712-msgstr ""
1713-
1714-#: ../../src/logic/military_data.cc:51 ../../src/logic/soldier.cc:70
1715-msgid "\"min-max\""
1716-msgstr ""
1717-
1718-#: ../../src/logic/military_data.cc:59
1719-msgid "positive integer <= 100"
1720-msgstr ""
1721-
1722-#: ../../src/logic/military_data.cc:63
1723-#, c-format
1724-msgid "expected positive integer >= %u <= 100 but found \"%s\""
1725-msgstr ""
1726-
1727-#: ../../src/logic/military_data.cc:75
1728-#, c-format
1729-msgid "expected positive integer >= %u <= %u but found \"%u\""
1730-msgstr ""
1731-
1732-#: ../../src/logic/militarysite.cc:62 ../../src/logic/warehouse.cc:251
1733-msgid " conquer"
1734-msgstr ""
1735-
1736-#: ../../src/logic/militarysite.cc:119
1737-#, c-format
1738-msgid "%u soldier"
1739-msgid_plural "%u soldiers"
1740-msgstr[0] ""
1741-msgstr[1] ""
1742-
1743-#: ../../src/logic/militarysite.cc:124
1744-#, c-format
1745-msgid "%u(+%u) soldier"
1746-msgid_plural "%u(+%u) soldiers"
1747-msgstr[0] ""
1748-msgstr[1] ""
1749-
1750-#: ../../src/logic/militarysite.cc:239
1751-#, c-format
1752-msgid "Your soldiers occupied your %s."
1753-msgstr ""
1754-
1755-#: ../../src/logic/militarysite.cc:840
1756-#, c-format
1757-msgid "The enemy defeated your soldiers at the %s."
1758-msgstr ""
1759-
1760-#: ../../src/logic/militarysite.cc:845
1761-msgid "Militarysite lost!"
1762-msgstr ""
1763-
1764-#: ../../src/logic/militarysite.cc:899
1765-#, c-format
1766-msgid "Your soldiers defeated the enemy at the %s."
1767-msgstr ""
1768-
1769-#: ../../src/logic/militarysite.cc:904
1770-msgid "Enemy at site defeated!"
1771-msgstr ""
1772-
1773-#: ../../src/logic/militarysite.cc:949
1774-#, c-format
1775-msgid "Your %s discovered an aggressor.</p>"
1776-msgstr ""
1777-
1778-#: ../../src/logic/militarysite.cc:950
1779-#, c-format
1780-msgid "Your %s is under attack.</p>"
1781-msgstr ""
1782-
1783-#: ../../src/logic/militarysite.cc:958
1784-msgid "You are under attack"
1785-msgstr ""
1786-
1787-#: ../../src/logic/playercommand.cc:147
1788-#: ../../src/map_io/widelands_map_building_data_packet.cc:105
1789-#, c-format
1790-msgid "player %u does not exist"
1791-msgstr ""
1792-
1793-#: ../../src/logic/playercommand.cc:153
1794-#, c-format
1795-msgid "player command: %s"
1796-msgstr ""
1797-
1798-#: ../../src/logic/playercommand.cc:195
1799-#, c-format
1800-msgid "player immovable %u: %s"
1801-msgstr ""
1802-
1803-#: ../../src/logic/playercommand.cc:201
1804-#, c-format
1805-msgid "bulldoze: %s"
1806-msgstr ""
1807-
1808-#: ../../src/logic/playercommand.cc:255
1809-#, c-format
1810-msgid "build: %s"
1811-msgstr ""
1812-
1813-#: ../../src/logic/playercommand.cc:303
1814-#, c-format
1815-msgid "build flag: %s"
1816-msgstr ""
1817-
1818-#: ../../src/logic/playercommand.cc:390
1819-#, c-format
1820-msgid "build road: %s"
1821-msgstr ""
1822-
1823-#: ../../src/logic/playercommand.cc:444
1824-#, c-format
1825-msgid "flag %u: %s"
1826-msgstr ""
1827-
1828-#: ../../src/logic/playercommand.cc:450
1829-#, c-format
1830-msgid "flag action: %s"
1831-msgstr ""
1832-
1833-#: ../../src/logic/playercommand.cc:501 ../../src/logic/playercommand.cc:575
1834-#: ../../src/logic/playercommand.cc:619 ../../src/logic/playercommand.cc:677
1835-#: ../../src/map_io/widelands_map_buildingdata_data_packet.cc:242
1836-#, c-format
1837-msgid "building %u: %s"
1838-msgstr ""
1839-
1840-#: ../../src/logic/playercommand.cc:507 ../../src/logic/playercommand.cc:581
1841-#: ../../src/logic/playercommand.cc:625
1842-#, c-format
1843-msgid "start/stop building: %s"
1844-msgstr ""
1845-
1846-#: ../../src/logic/playercommand.cc:686
1847-#, c-format
1848-msgid "enhance building: %s"
1849-msgstr ""
1850-
1851-#: ../../src/logic/playercommand.cc:1169 ../../src/logic/playercommand.cc:1674
1852-#: ../../src/logic/playercommand.cc:1752
1853-#, c-format
1854-msgid "site %u: %s"
1855-msgstr ""
1856-
1857-#: ../../src/logic/playercommand.cc:1179
1858-#, c-format
1859-msgid "set ware priority: %s"
1860-msgstr ""
1861-
1862-#: ../../src/logic/playercommand.cc:1307
1863-#, c-format
1864-msgid "change target quantity: %s"
1865-msgstr ""
1866-
1867-#: ../../src/logic/playercommand.cc:1370
1868-#, c-format
1869-msgid "set ware target quantity: %s"
1870-msgstr ""
1871-
1872-#: ../../src/logic/playercommand.cc:1492
1873-#, c-format
1874-msgid "set worker target quantity: %s"
1875-msgstr ""
1876-
1877-#: ../../src/logic/playercommand.cc:1617
1878-#, c-format
1879-msgid "change training options: %s"
1880-msgstr ""
1881-
1882-#: ../../src/logic/playercommand.cc:1681
1883-#, c-format
1884-msgid "soldier %u: %s"
1885-msgstr ""
1886-
1887-#: ../../src/logic/playercommand.cc:1687
1888-#, c-format
1889-msgid "drop soldier: %s"
1890-msgstr ""
1891-
1892-#: ../../src/logic/playercommand.cc:1759
1893-#, c-format
1894-msgid "change soldier capacity: %s"
1895-msgstr ""
1896-
1897-#: ../../src/logic/playercommand.cc:1924
1898-#, c-format
1899-msgid "retreat: value out of range. Received %u expected %u-%u"
1900-msgstr ""
1901-
1902-#: ../../src/logic/playercommand.cc:1935
1903-#, c-format
1904-msgid "change military config: %s"
1905-msgstr ""
1906-
1907-#: ../../src/logic/playercommand.cc:1974
1908-#, c-format
1909-msgid "(player %u): message id is null"
1910-msgstr ""
1911-
1912-#: ../../src/logic/playercommand.cc:1979
1913-#, c-format
1914-msgid "player message: %s"
1915-msgstr ""
1916-
1917-#: ../../src/logic/production_program.cc:87
1918-#, c-format
1919-msgid ""
1920-"%s is not declared as an input (\"%s=<count>\" was not found in the [inputs] "
1921-"section)"
1922-msgstr ""
1923-
1924-#: ../../src/logic/production_program.cc:100
1925-#, c-format
1926-msgid ""
1927-"wrong order of ware types within group: ware type %s appears after ware type "
1928-"%s (fix order!)"
1929-msgstr ""
1930-
1931-#: ../../src/logic/production_program.cc:114
1932-#: ../../src/logic/production_program.cc:892
1933-#: ../../src/logic/production_program.cc:990
1934-msgid "count"
1935-msgstr ""
1936-
1937-#: ../../src/logic/production_program.cc:119
1938-#, c-format
1939-msgid ""
1940-"group count is %u but (total) input storage capacity of the specified ware "
1941-"type(s) is only %u, so the group can never be fulfilled by the site"
1942-msgstr ""
1943-
1944-#: ../../src/logic/production_program.cc:154
1945-msgid "not "
1946-msgstr ""
1947-
1948-#: ../../src/logic/production_program.cc:176
1949-#: ../../src/logic/production_program.cc:197
1950-msgid "economy needs "
1951-msgstr ""
1952-
1953-#: ../../src/logic/production_program.cc:226
1954-msgid "site has "
1955-msgstr ""
1956-
1957-#: ../../src/logic/production_program.cc:252
1958-msgid "workers need experience"
1959-msgstr ""
1960-
1961-#: ../../src/logic/production_program.cc:277
1962-msgid "ware type or worker type"
1963-msgstr ""
1964-
1965-#: ../../src/logic/production_program.cc:346
1966-#, c-format
1967-msgid "invalid condition: %s"
1968-msgstr ""
1969-
1970-#: ../../src/logic/production_program.cc:363
1971-#, c-format
1972-msgid "expected {\"failed\"|\"completed\"|\"skipped\"} but found \"%s\""
1973-msgstr ""
1974-
1975-#: ../../src/logic/production_program.cc:376
1976-msgid "expected \"and\" or end of input"
1977-msgstr ""
1978-
1979-#: ../../src/logic/production_program.cc:385
1980-msgid "expected condition at end of input"
1981-msgstr ""
1982-
1983-#: ../../src/logic/production_program.cc:391
1984-msgid "expected \"or\" or end of input"
1985-msgstr ""
1986-
1987-#: ../../src/logic/production_program.cc:424
1988-#: ../../src/logic/production_program.cc:815
1989-msgid "failed"
1990-msgstr ""
1991-
1992-#: ../../src/logic/production_program.cc:425
1993-msgid "completed"
1994-msgstr ""
1995-
1996-#: ../../src/logic/production_program.cc:425
1997-msgid "skipped"
1998-msgstr ""
1999-
2000-#: ../../src/logic/production_program.cc:431
2001-#: ../../src/logic/production_program.cc:839
2002-msgid " and "
2003-msgstr ""
2004-
2005-#: ../../src/logic/production_program.cc:432
2006-#: ../../src/logic/production_program.cc:818
2007-msgid " because: "
2008-msgstr ""
2009-
2010-#: ../../src/logic/production_program.cc:443
2011-#: ../../src/wui/encyclopedia_window.cc:198
2012-msgid " or "
2013-msgstr ""
2014-
2015-#: ../../src/logic/production_program.cc:444
2016-msgid " because not: "
2017-msgstr ""
2018-
2019-#: ../../src/logic/production_program.cc:493
2020-#, c-format
2021-msgid ""
2022-"the program \"%s\" has not (yet) been declared in %s (wrong declaration "
2023-"order?)"
2024-msgstr ""
2025-
2026-#: ../../src/logic/production_program.cc:515
2027-#: ../../src/logic/production_program.cc:520
2028-#: ../../src/logic/production_program.cc:525
2029-#, c-format
2030-msgid "%s handling method already defined"
2031-msgstr ""
2032-
2033-#: ../../src/logic/production_program.cc:515
2034-msgid "failure"
2035-msgstr ""
2036-
2037-#: ../../src/logic/production_program.cc:520
2038-msgid "completion"
2039-msgstr ""
2040-
2041-#: ../../src/logic/production_program.cc:525
2042-msgid "skip"
2043-msgstr ""
2044-
2045-#: ../../src/logic/production_program.cc:530
2046-msgid "{\"failure\"|\"completion\"|\"skip\"}"
2047-msgstr ""
2048-
2049-#: ../../src/logic/production_program.cc:544
2050-msgid "{\"fail\"|\"complete\"|\"skip\"|\"repeat\"}"
2051-msgstr ""
2052-
2053-#: ../../src/logic/production_program.cc:666
2054-#: ../../src/logic/production_program.cc:688
2055-#, c-format
2056-msgid "sleep: %s"
2057-msgstr ""
2058-
2059-#: ../../src/logic/production_program.cc:684
2060-#, c-format
2061-msgid "Unknown parameter \"%s\""
2062-msgstr ""
2063-
2064-#: ../../src/logic/production_program.cc:686
2065-msgid "No parameter given!"
2066-msgstr ""
2067-
2068-#: ../../src/logic/production_program.cc:719
2069-msgid "idle animation is default; calling is not allowed"
2070-msgstr ""
2071-
2072-#: ../../src/logic/production_program.cc:768
2073-msgid "expected ware_type1[,ware_type2[,...]][:N] ..."
2074-msgstr ""
2075-
2076-#: ../../src/logic/production_program.cc:842
2077-msgid " is missing"
2078-msgid_plural " are missing"
2079-msgstr[0] ""
2080-msgstr[1] ""
2081-
2082-#: ../../src/logic/production_program.cc:907
2083-#: ../../src/logic/production_program.cc:1005
2084-#, c-format
2085-msgid ""
2086-"%s is not declared as an output (\"output=%s\" was not found in the [global] "
2087-"section)"
2088-msgstr ""
2089-
2090-#: ../../src/logic/production_program.cc:934
2091-#: ../../src/logic/production_program.cc:1030
2092-#, c-format
2093-msgid "%u "
2094-msgstr ""
2095-
2096-#: ../../src/logic/production_program.cc:941
2097-#: ../../src/logic/production_program.cc:1037
2098-msgid ", "
2099-msgstr ""
2100-
2101-#: ../../src/logic/production_program.cc:944
2102-#, c-format
2103-msgid "Produced %s"
2104-msgstr ""
2105-
2106-#: ../../src/logic/production_program.cc:1022
2107-msgid "Recruited "
2108-msgstr ""
2109-
2110-#: ../../src/logic/production_program.cc:1069
2111-msgid "distance"
2112-msgstr ""
2113-
2114-#: ../../src/logic/production_program.cc:1080
2115-#: ../../src/logic/production_program.cc:1091
2116-msgid "percentage"
2117-msgstr ""
2118-
2119-#: ../../src/logic/production_program.cc:1208
2120-#, c-format
2121-msgid "No left resources found!"
2122-msgstr ""
2123-
2124-#: ../../src/logic/production_program.cc:1229
2125-msgid "Main vein exhausted"
2126-msgstr ""
2127-
2128-#: ../../src/logic/production_program.cc:1231
2129-msgid ""
2130-"This mines' main vein exhausted. Expect strongly diminished returns on "
2131-"investment. You should consider to expand, dismantle or destruct it."
2132-msgstr ""
2133-
2134-#: ../../src/logic/production_program.cc:1246
2135-#: ../../src/logic/production_program.cc:1327
2136-msgid "soldier type"
2137-msgstr ""
2138-
2139-#: ../../src/logic/production_program.cc:1259
2140-#, c-format
2141-msgid "expected {\"hp\"|\"attack\"|\"defense\"|\"evade\"} but found \"%s\""
2142-msgstr ""
2143-
2144-#: ../../src/logic/production_program.cc:1268
2145-#: ../../src/logic/production_program.cc:1348
2146-msgid "level"
2147-msgstr ""
2148-
2149-#: ../../src/logic/production_program.cc:1282
2150-#, c-format
2151-msgid "No soldier to train!"
2152-msgstr ""
2153-
2154-#: ../../src/logic/production_program.cc:1292
2155-#: ../../src/logic/production_program.cc:1382
2156-#, c-format
2157-msgid "No soldier for this training level found!"
2158-msgstr ""
2159-
2160-#: ../../src/logic/production_program.cc:1358
2161-#, c-format
2162-msgid "expected level > %u but found \"%s\""
2163-msgstr ""
2164-
2165-#: ../../src/logic/productionsite.cc:71
2166-msgid "this ware type has already been declared as an output"
2167-msgstr ""
2168-
2169-#: ../../src/logic/productionsite.cc:75
2170-msgid "this worker type has already been declared as an output"
2171-msgstr ""
2172-
2173-#: ../../src/logic/productionsite.cc:245
2174-msgid "(not occupied)"
2175-msgstr ""
2176-
2177-#: ../../src/logic/productionsite.cc:249
2178-msgid "Worker missing"
2179-msgstr ""
2180-
2181-#: ../../src/logic/productionsite.cc:249
2182-msgid "Workers missing"
2183-msgstr ""
2184-
2185-#: ../../src/logic/productionsite.cc:258
2186-msgid "(stopped)"
2187-msgstr ""
2188-
2189-#: ../../src/logic/requirements.cc:233
2190-#, c-format
2191-msgid ""
2192-"expected atrHP (%u), atrAttack (%u), atrDefense (%u), atrEvade (%u) or "
2193-"atrTotal (%u) but found unknown attribute value (%u)"
2194-msgstr ""
2195-
2196-#: ../../src/logic/ship.cc:423
2197-msgid "Port space found"
2198-msgstr ""
2199-
2200-#: ../../src/logic/ship.cc:424
2201-msgid "An expedition ship found a new port build space."
2202-msgstr ""
2203-
2204-#: ../../src/logic/ship.cc:531
2205-msgid "Island surrounded"
2206-msgstr ""
2207-
2208-#: ../../src/logic/ship.cc:532
2209-msgid "An expedition ship surrounded its island without any events."
2210-msgstr ""
2211-
2212-#: ../../src/logic/ship.cc:584
2213-msgid "Coast reached"
2214-msgstr ""
2215-
2216-#: ../../src/logic/ship.cc:586
2217-msgid "An expedition ship reached a coast and is waiting for further commands."
2218-msgstr ""
2219-
2220-#: ../../src/logic/ship.cc:722
2221-msgid "Expedition ready"
2222-msgstr ""
2223-
2224-#: ../../src/logic/ship.cc:723
2225-msgid "An expedition ship is waiting for your commands."
2226-msgstr ""
2227-
2228-#: ../../src/logic/ship.cc:986
2229-#, c-format
2230-msgid "loading ship: %s"
2231-msgstr ""
2232-
2233-#: ../../src/logic/soldier.cc:78
2234-msgid "positive integer"
2235-msgstr ""
2236-
2237-#: ../../src/logic/soldier.cc:82
2238-#, c-format
2239-msgid "expected positive integer >= %u but found \"%s\""
2240-msgstr ""
2241-
2242-#: ../../src/logic/soldier.cc:186
2243-msgid "\"anim_name[,another_anim,...]\""
2244-msgstr ""
2245-
2246-#: ../../src/logic/soldier.cc:1369
2247-#, c-format
2248-msgid "bad direction '%d'"
2249-msgstr ""
2250-
2251-#: ../../src/logic/soldier.cc:1560 ../../src/logic/soldier.cc:1565
2252-msgid "no"
2253-msgstr ""
2254-
2255-#: ../../src/logic/soldier.cc:1572 ../../src/logic/soldier.cc:1581
2256-msgid "Logic error"
2257-msgstr ""
2258-
2259-#: ../../src/logic/tribe.cc:133
2260-msgid "constructionsite type \"constructionsite\" is missing"
2261-msgstr ""
2262-
2263-#: ../../src/logic/tribe.cc:142
2264-msgid "dismantlesite type \"distmantlesite\" is missing"
2265-msgstr ""
2266-
2267-#: ../../src/logic/tribe.cc:259 ../../src/logic/tribe.cc:280
2268-#, c-format
2269-msgid "\"%s\" is duplicated"
2270-msgstr ""
2271-
2272-#: ../../src/logic/tribe.cc:268 ../../src/logic/tribe.cc:289
2273-msgid "none found"
2274-msgstr ""
2275-
2276-#: ../../src/logic/tribe.cc:270
2277-#, c-format
2278-msgid "frontier styles: %s"
2279-msgstr ""
2280-
2281-#: ../../src/logic/tribe.cc:291
2282-#, c-format
2283-msgid "flag styles: %s"
2284-msgstr ""
2285-
2286-#: ../../src/logic/tribe.cc:334
2287-#, c-format
2288-msgid "tribe %s: %s"
2289-msgstr ""
2290-
2291-#: ../../src/logic/warehouse.cc:464
2292-#, c-format
2293-msgid "A new %s was added to your economy."
2294-msgstr ""
2295-
2296-#: ../../src/logic/worker.cc:109
2297-#, c-format
2298-msgid ""
2299-"should mine resource %s, which does not exist in world; tribe is not "
2300-"compatible with world"
2301-msgstr ""
2302-
2303-#: ../../src/logic/worker.cc:214
2304-#, c-format
2305-msgid ""
2306-"should breed resource type %s, which does not exist in world; tribe is not "
2307-"compatible with world"
2308-msgstr ""
2309-
2310-#: ../../src/logic/worker.cc:605
2311-msgid "Out of "
2312-msgstr ""
2313-
2314-#: ../../src/logic/worker.cc:608
2315-msgid ""
2316-"The worker of this building cannot find any more resources of the following "
2317-"type: "
2318-msgstr ""
2319-
2320-#: ../../src/logic/worker.cc:956
2321-msgid "A geologist found resources."
2322-msgstr ""
2323-
2324-#: ../../src/logic/worker.cc:1867
2325-#, c-format
2326-msgid "Your %s can't find a way home and will likely die."
2327-msgstr ""
2328-
2329-#: ../../src/logic/worker.cc:1874
2330-msgid "Worker got lost!"
2331-msgstr ""
2332-
2333-#: ../../src/logic/worker.cc:3088
2334-#, c-format
2335-msgid "loading worker: %s"
2336-msgstr ""
2337-
2338-#: ../../src/logic/world.cc:628
2339-#, c-format
2340-msgid "%s: too many terrain types, can not be more than 16"
2341-msgstr ""
2342-
2343-#: ../../src/map_io/widelands_map_allowed_building_types_data_packet.cc:95
2344-#, c-format
2345-msgid "allowed buildings: %s"
2346-msgstr ""
2347-
2348-#: ../../src/map_io/widelands_map_allowed_worker_types_data_packet.cc:81
2349-#, c-format
2350-msgid "allowed worker types: %s"
2351+#: ../../src/game_io/game_game_class_data_packet.cc:46
2352+#, c-format
2353+msgid "game_class: %s"
2354+msgstr ""
2355+
2356+#: ../../src/game_io/game_player_economies_data_packet.cc:62
2357+msgid "there is no flag at the specified location"
2358+msgstr ""
2359+
2360+#: ../../src/game_io/game_player_economies_data_packet.cc:83
2361+#: ../../src/map_io/widelands_map_player_position_data_packet.cc:54
2362+#, c-format
2363+msgid "player %1$u: %2$s"
2364+msgstr ""
2365+
2366+#: ../../src/game_io/game_player_economies_data_packet.cc:89
2367+#, c-format
2368+msgid "economies: %s"
2369+msgstr ""
2370+
2371+#: ../../src/game_io/game_cmd_queue_data_packet.cc:86
2372+#, c-format
2373+msgid "command queue: %s"
2374+msgstr ""
2375+
2376+#: ../../src/game_io/game_interactive_player_data_packet.cc:57
2377+msgid "The game has no players!"
2378+msgstr ""
2379+
2380+#: ../../src/game_io/game_interactive_player_data_packet.cc:81
2381+#, c-format
2382+msgid "interactive player: %s"
2383+msgstr ""
2384+
2385+#: ../../src/map_io/widelands_map_terrain_data_packet.cc:79
2386+#, c-format
2387+msgid "terrain: %s"
2388 msgstr ""
2389
2390 #: ../../src/map_io/widelands_map_bob_data_packet.cc:47
2391@@ -1759,11 +549,160 @@
2392 msgid "tribe \"%s\" does not exist"
2393 msgstr ""
2394
2395-#: ../../src/map_io/widelands_map_bob_data_packet.cc:138
2396+#: ../../src/map_io/widelands_map_bob_data_packet.cc:137
2397 #, c-format
2398 msgid "bobs: %s"
2399 msgstr ""
2400
2401+#: ../../src/map_io/widelands_map_flagdata_data_packet.cc:84
2402+#, c-format
2403+msgid "wrong flag (%1$u) at given position (%2$i, %3$i)"
2404+msgstr ""
2405+
2406+#: ../../src/map_io/widelands_map_flagdata_data_packet.cc:89
2407+#, c-format
2408+msgid "no flag at given position (%1$i, %2$i)"
2409+msgstr ""
2410+
2411+#: ../../src/map_io/widelands_map_flagdata_data_packet.cc:109
2412+#, c-format
2413+msgid "has building %1$u at (%2$i, %3$i), which is not at the top left node"
2414+msgstr ""
2415+
2416+#: ../../src/map_io/widelands_map_flagdata_data_packet.cc:116
2417+#, c-format
2418+msgid "building (%1$u): %2$s"
2419+msgstr ""
2420+
2421+#: ../../src/map_io/widelands_map_flagdata_data_packet.cc:215
2422+#: ../../src/map_io/widelands_map_ware_data_packet.cc:68
2423+#, c-format
2424+msgid "%1$u: %2$s"
2425+msgstr ""
2426+
2427+#: ../../src/map_io/widelands_map_flagdata_data_packet.cc:222
2428+#, c-format
2429+msgid "flagdata: %s"
2430+msgstr ""
2431+
2432+#: ../../src/map_io/widelands_map_buildingdata_data_packet.cc:242
2433+#: ../../src/logic/playercommand.cc:501 ../../src/logic/playercommand.cc:575
2434+#: ../../src/logic/playercommand.cc:619 ../../src/logic/playercommand.cc:677
2435+#, c-format
2436+msgid "building %1$u: %2$s"
2437+msgstr ""
2438+
2439+#: ../../src/map_io/widelands_map_buildingdata_data_packet.cc:249
2440+#, c-format
2441+msgid "buildingdata: %s"
2442+msgstr ""
2443+
2444+#: ../../src/map_io/widelands_map_buildingdata_data_packet.cc:339
2445+#: ../../src/map_io/widelands_map_buildingdata_data_packet.cc:440
2446+#, c-format
2447+msgid "wares: %s"
2448+msgstr ""
2449+
2450+#: ../../src/map_io/widelands_map_buildingdata_data_packet.cc:350
2451+#, c-format
2452+msgid "partially_constructed_buildings: %s"
2453+msgstr ""
2454+
2455+#: ../../src/map_io/widelands_map_buildingdata_data_packet.cc:387
2456+#, c-format
2457+msgid "constructionsite: %s"
2458+msgstr ""
2459+
2460+#: ../../src/map_io/widelands_map_buildingdata_data_packet.cc:467
2461+#, c-format
2462+msgid "dismantlesite: %s"
2463+msgstr ""
2464+
2465+#: ../../src/map_io/widelands_map_buildingdata_data_packet.cc:651
2466+#, c-format
2467+msgid ""
2468+"%1$s %2$u has a next_spawn time for worker type \"%3$s\" set to %4$u, but it "
2469+"was previously set to %5$u\n"
2470+msgstr ""
2471+
2472+#: ../../src/map_io/widelands_map_buildingdata_data_packet.cc:736
2473+#, c-format
2474+msgid "warehouse: %s"
2475+msgstr ""
2476+
2477+#: ../../src/map_io/widelands_map_buildingdata_data_packet.cc:860
2478+#, c-format
2479+msgid "militarysite: %s"
2480+msgstr ""
2481+
2482+#: ../../src/map_io/widelands_map_buildingdata_data_packet.cc:1017
2483+#, c-format
2484+msgid "program %1$s was skipped at time %2$u, but time is only %3$u"
2485+msgstr ""
2486+
2487+#: ../../src/map_io/widelands_map_buildingdata_data_packet.cc:1235
2488+#, c-format
2489+msgid "trainingsite: %s"
2490+msgstr ""
2491+
2492+#: ../../src/map_io/widelands_map_objective_data_packet.cc:65
2493+#, c-format
2494+msgid "%1$s: %2$s"
2495+msgstr ""
2496+
2497+#: ../../src/map_io/widelands_map_objective_data_packet.cc:72
2498+#, c-format
2499+msgid "Objectives: %s"
2500+msgstr ""
2501+
2502+#: ../../src/map_io/widelands_map_player_position_data_packet.cc:60
2503+#, c-format
2504+msgid "player positions: %s"
2505+msgstr ""
2506+
2507+#: ../../src/map_io/widelands_map_players_messages_data_packet.cc:89
2508+#, c-format
2509+msgid ""
2510+"messages are not ordered: sent at %1$u but previous message sent at %2$u"
2511+msgstr ""
2512+
2513+#: ../../src/map_io/widelands_map_players_messages_data_packet.cc:95
2514+#, c-format
2515+msgid "message is sent in the future: sent at %1$u but gametime is only %2$u"
2516+msgstr ""
2517+
2518+#: ../../src/map_io/widelands_map_players_messages_data_packet.cc:104
2519+#, c-format
2520+msgid ""
2521+"the value %u is not allowed as duration; it is a special value meaning "
2522+"forever, which is the default; omit the duration key to make the message "
2523+"exist forever"
2524+msgstr ""
2525+
2526+#: ../../src/map_io/widelands_map_players_messages_data_packet.cc:112
2527+#, c-format
2528+msgid ""
2529+"duration %1$u is too large; causes numeric overflow when added to sent time "
2530+"%2$u"
2531+msgstr ""
2532+
2533+#: ../../src/map_io/widelands_map_players_messages_data_packet.cc:118
2534+#, c-format
2535+msgid ""
2536+"message should have expired at %1$u; sent at %2$u with duration %3$u but "
2537+"gametime is already %4$u"
2538+msgstr ""
2539+
2540+#: ../../src/map_io/widelands_map_players_messages_data_packet.cc:161
2541+#, c-format
2542+msgid "\"%1$s\": %2$s"
2543+msgstr ""
2544+
2545+#: ../../src/map_io/widelands_map_players_messages_data_packet.cc:166
2546+#, c-format
2547+msgid "messages for player %1$u: %2$s"
2548+msgstr ""
2549+
2550 #: ../../src/map_io/widelands_map_bobdata_data_packet.cc:227
2551 #, c-format
2552 msgid "unknown task type \"%s\""
2553@@ -1781,7 +720,7 @@
2554
2555 #: ../../src/map_io/widelands_map_bobdata_data_packet.cc:367
2556 #, c-format
2557-msgid "bob %u: %s"
2558+msgid "bob %1$u: %2$s"
2559 msgstr ""
2560
2561 #: ../../src/map_io/widelands_map_bobdata_data_packet.cc:374
2562@@ -1804,79 +743,43 @@
2563 msgid "carrier: %s"
2564 msgstr ""
2565
2566-#: ../../src/map_io/widelands_map_building_data_packet.cc:113
2567-#, c-format
2568-msgid "buildings: %s"
2569-msgstr ""
2570-
2571-#: ../../src/map_io/widelands_map_buildingdata_data_packet.cc:249
2572-#, c-format
2573-msgid "buildingdata: %s"
2574-msgstr ""
2575-
2576-#: ../../src/map_io/widelands_map_buildingdata_data_packet.cc:339
2577-#: ../../src/map_io/widelands_map_buildingdata_data_packet.cc:440
2578-#, c-format
2579-msgid "wares: %s"
2580-msgstr ""
2581-
2582-#: ../../src/map_io/widelands_map_buildingdata_data_packet.cc:350
2583-#, c-format
2584-msgid "partially_constructed_buildings: %s"
2585-msgstr ""
2586-
2587-#: ../../src/map_io/widelands_map_buildingdata_data_packet.cc:387
2588-#, c-format
2589-msgid "constructionsite: %s"
2590-msgstr ""
2591-
2592-#: ../../src/map_io/widelands_map_buildingdata_data_packet.cc:467
2593-#, c-format
2594-msgid "dismantlesite: %s"
2595-msgstr ""
2596-
2597-#: ../../src/map_io/widelands_map_buildingdata_data_packet.cc:651
2598-#, c-format
2599-msgid ""
2600-"%s %u has a next_spawn time for worker type \"%s\" set to %u, but it was "
2601-"previously set to %u\n"
2602-msgstr ""
2603-
2604-#: ../../src/map_io/widelands_map_buildingdata_data_packet.cc:765
2605-#, c-format
2606-msgid "warehouse: %s"
2607-msgstr ""
2608-
2609-#: ../../src/map_io/widelands_map_buildingdata_data_packet.cc:889
2610-#, c-format
2611-msgid "militarysite: %s"
2612-msgstr ""
2613-
2614-#: ../../src/map_io/widelands_map_buildingdata_data_packet.cc:1046
2615-#, c-format
2616-msgid "program %s was skipped at time %u, but time is only %u"
2617-msgstr ""
2618-
2619-#: ../../src/map_io/widelands_map_buildingdata_data_packet.cc:1264
2620-#, c-format
2621-msgid "trainingsite: %s"
2622-msgstr ""
2623-
2624-#: ../../src/map_io/widelands_map_elemental_data_packet.cc:70
2625-#, c-format
2626-msgid "elemental data: %s"
2627-msgstr ""
2628-
2629-#: ../../src/map_io/widelands_map_exploration_data_packet.cc:94
2630-#, c-format
2631-msgid "seen: %s"
2632-msgstr ""
2633-
2634-#: ../../src/map_io/widelands_map_extradata_data_packet.cc:101
2635+#: ../../src/map_io/widelands_map_extradata_data_packet.cc:100
2636 #, c-format
2637 msgid "extradata: %s"
2638 msgstr ""
2639
2640+#: ../../src/map_io/widelands_map_players_view_data_packet.cc:216
2641+#, c-format
2642+msgid "unseen immovable: %s"
2643+msgstr ""
2644+
2645+#: ../../src/map_io/widelands_map_allowed_worker_types_data_packet.cc:80
2646+#, c-format
2647+msgid "allowed worker types: %s"
2648+msgstr ""
2649+
2650+#: ../../src/map_io/widelands_map_heights_data_packet.cc:52
2651+#, c-format
2652+msgid "heights: %s"
2653+msgstr ""
2654+
2655+#: ../../src/map_io/widelands_map_port_spaces_data_packet.cc:63
2656+#, c-format
2657+msgid "port_spaces data: %s"
2658+msgstr ""
2659+
2660+#: ../../src/map_io/widelands_map_waredata_data_packet.cc:130
2661+#: ../../src/map_io/widelands_map_waredata_data_packet.cc:200
2662+#, c-format
2663+msgid "item %1$u: %2$s"
2664+msgstr ""
2665+
2666+#: ../../src/map_io/widelands_map_waredata_data_packet.cc:207
2667+#: ../../src/map_io/widelands_map_ware_data_packet.cc:75
2668+#, c-format
2669+msgid "ware data: %s"
2670+msgstr ""
2671+
2672 #: ../../src/map_io/widelands_map_flag_data_packet.cc:66
2673 #, c-format
2674 msgid "the node is owned by player %u"
2675@@ -1894,7 +797,7 @@
2676
2677 #: ../../src/map_io/widelands_map_flag_data_packet.cc:92
2678 #, c-format
2679-msgid "neighbour node (%i, %i): %s"
2680+msgid "neighbour node (%1$i, %2$i): %3$s"
2681 msgstr ""
2682
2683 #: ../../src/map_io/widelands_map_flag_data_packet.cc:120
2684@@ -1902,47 +805,21 @@
2685 msgid "flags: %s"
2686 msgstr ""
2687
2688-#: ../../src/map_io/widelands_map_flagdata_data_packet.cc:85
2689-#, c-format
2690-msgid "wrong flag (%u) at given position (%i, %i)"
2691-msgstr ""
2692-
2693-#: ../../src/map_io/widelands_map_flagdata_data_packet.cc:90
2694-#, c-format
2695-msgid "no flag at given position (%i, %i)"
2696-msgstr ""
2697-
2698-#: ../../src/map_io/widelands_map_flagdata_data_packet.cc:110
2699-#, c-format
2700-msgid "has building %u at (%i, %i), which is not at the top left node"
2701-msgstr ""
2702-
2703-#: ../../src/map_io/widelands_map_flagdata_data_packet.cc:117
2704-#, c-format
2705-msgid "building (%u): %s"
2706-msgstr ""
2707-
2708-#: ../../src/map_io/widelands_map_flagdata_data_packet.cc:216
2709-#: ../../src/map_io/widelands_map_ware_data_packet.cc:69
2710-#, c-format
2711-msgid "%u: %s"
2712-msgstr ""
2713-
2714-#: ../../src/map_io/widelands_map_flagdata_data_packet.cc:223
2715-#, c-format
2716-msgid "flagdata: %s"
2717-msgstr ""
2718-
2719-#: ../../src/map_io/widelands_map_heights_data_packet.cc:53
2720-#, c-format
2721-msgid "heights: %s"
2722-msgstr ""
2723-
2724-#: ../../src/map_io/widelands_map_loader.cc:85
2725+#: ../../src/map_io/widelands_map_allowed_building_types_data_packet.cc:94
2726+#, c-format
2727+msgid "allowed buildings: %s"
2728+msgstr ""
2729+
2730+#: ../../src/map_io/widelands_map_elemental_data_packet.cc:69
2731+#, c-format
2732+msgid "elemental data: %s"
2733+msgstr ""
2734+
2735+#: ../../src/map_io/widelands_map_loader.cc:86
2736 msgid "Invalid World"
2737 msgstr ""
2738
2739-#: ../../src/map_io/widelands_map_loader.cc:87
2740+#: ../../src/map_io/widelands_map_loader.cc:88
2741 #, c-format
2742 msgid "The world \"%s\" set by the map, does not exist on your filesystem."
2743 msgstr ""
2744@@ -1952,6 +829,26 @@
2745 msgid "ownership: %s"
2746 msgstr ""
2747
2748+#: ../../src/map_io/widelands_map_road_data_packet.cc:68
2749+#, c-format
2750+msgid "road: %s"
2751+msgstr ""
2752+
2753+#: ../../src/map_io/widelands_map_exploration_data_packet.cc:93
2754+#, c-format
2755+msgid "seen: %s"
2756+msgstr ""
2757+
2758+#: ../../src/map_io/widelands_map_player_names_and_tribes_data_packet.cc:80
2759+#, c-format
2760+msgid "player names and tribes: %s"
2761+msgstr ""
2762+
2763+#: ../../src/map_io/widelands_map_version_data_packet.cc:75
2764+#, c-format
2765+msgid "version: %s"
2766+msgstr ""
2767+
2768 #: ../../src/map_io/widelands_map_object_packet.cc:109
2769 #, c-format
2770 msgid "unknown object header %u"
2771@@ -1962,965 +859,293 @@
2772 msgid "map objects: %s"
2773 msgstr ""
2774
2775-#: ../../src/map_io/widelands_map_objective_data_packet.cc:66
2776-#, c-format
2777-msgid "%s: %s"
2778-msgstr ""
2779-
2780-#: ../../src/map_io/widelands_map_objective_data_packet.cc:73
2781-#, c-format
2782-msgid "Objectives: %s"
2783-msgstr ""
2784-
2785-#: ../../src/map_io/widelands_map_player_names_and_tribes_data_packet.cc:81
2786-#, c-format
2787-msgid "player names and tribes: %s"
2788-msgstr ""
2789-
2790-#: ../../src/map_io/widelands_map_player_position_data_packet.cc:61
2791-#, c-format
2792-msgid "player positions: %s"
2793-msgstr ""
2794-
2795-#: ../../src/map_io/widelands_map_players_messages_data_packet.cc:89
2796-#, c-format
2797-msgid "messages are not ordered: sent at %u but previous message sent at %u"
2798-msgstr ""
2799-
2800-#: ../../src/map_io/widelands_map_players_messages_data_packet.cc:95
2801-#, c-format
2802-msgid "message is sent in the future: sent at %u but gametime is only %u"
2803-msgstr ""
2804-
2805-#: ../../src/map_io/widelands_map_players_messages_data_packet.cc:104
2806-#, c-format
2807-msgid ""
2808-"the value %u is not allowed as duration; it is a special value meaning "
2809-"forever, which is the default; omit the duration key to make the message "
2810-"exist forever"
2811-msgstr ""
2812-
2813-#: ../../src/map_io/widelands_map_players_messages_data_packet.cc:112
2814-#, c-format
2815-msgid ""
2816-"duration %u is too large; causes numeric overflow when added to sent time %u"
2817-msgstr ""
2818-
2819-#: ../../src/map_io/widelands_map_players_messages_data_packet.cc:118
2820-#, c-format
2821-msgid ""
2822-"message should have expired at %u; sent at %u with duration %u but gametime "
2823-"is already %u"
2824-msgstr ""
2825-
2826-#: ../../src/map_io/widelands_map_players_messages_data_packet.cc:161
2827-#, c-format
2828-msgid "\"%s\": %s"
2829-msgstr ""
2830-
2831-#: ../../src/map_io/widelands_map_players_messages_data_packet.cc:166
2832-#, c-format
2833-msgid "messages for player %u: %s"
2834-msgstr ""
2835-
2836-#: ../../src/map_io/widelands_map_players_view_data_packet.cc:216
2837-#, c-format
2838-msgid "unseen immovable: %s"
2839-msgstr ""
2840-
2841-#: ../../src/map_io/widelands_map_port_spaces_data_packet.cc:63
2842-#, c-format
2843-msgid "port_spaces data: %s"
2844-msgstr ""
2845-
2846-#: ../../src/map_io/widelands_map_road_data_packet.cc:69
2847-#, c-format
2848-msgid "road: %s"
2849-msgstr ""
2850-
2851-#: ../../src/map_io/widelands_map_roaddata_data_packet.cc:129
2852+#: ../../src/map_io/widelands_map_building_data_packet.cc:104
2853+#: ../../src/logic/playercommand.cc:147
2854+#, c-format
2855+msgid "player %u does not exist"
2856+msgstr ""
2857+
2858+#: ../../src/map_io/widelands_map_building_data_packet.cc:112
2859+#, c-format
2860+msgid "buildings: %s"
2861+msgstr ""
2862+
2863+#: ../../src/map_io/widelands_map_roaddata_data_packet.cc:128
2864 msgid "no carrier slot"
2865 msgstr ""
2866
2867-#: ../../src/map_io/widelands_map_roaddata_data_packet.cc:133
2868+#: ../../src/map_io/widelands_map_roaddata_data_packet.cc:132
2869 #, c-format
2870 msgid ""
2871 "expected 1 but found %u carrier slots in road saved with packet version 2 "
2872 "(old)"
2873 msgstr ""
2874
2875-#: ../../src/map_io/widelands_map_roaddata_data_packet.cc:202
2876+#: ../../src/map_io/widelands_map_roaddata_data_packet.cc:201
2877 #, c-format
2878-msgid "road %u: %s"
2879+msgid "road %1$u: %2$s"
2880 msgstr ""
2881
2882-#: ../../src/map_io/widelands_map_roaddata_data_packet.cc:209
2883+#: ../../src/map_io/widelands_map_roaddata_data_packet.cc:208
2884 #, c-format
2885 msgid "roaddata: %s"
2886 msgstr ""
2887
2888-#: ../../src/map_io/widelands_map_terrain_data_packet.cc:80
2889-#, c-format
2890-msgid "terrain: %s"
2891-msgstr ""
2892-
2893-#: ../../src/map_io/widelands_map_version_data_packet.cc:76
2894-#, c-format
2895-msgid "version: %s"
2896-msgstr ""
2897-
2898-#: ../../src/map_io/widelands_map_ware_data_packet.cc:76
2899-#: ../../src/map_io/widelands_map_waredata_data_packet.cc:208
2900-#, c-format
2901-msgid "ware data: %s"
2902-msgstr ""
2903-
2904-#: ../../src/map_io/widelands_map_waredata_data_packet.cc:131
2905-#: ../../src/map_io/widelands_map_waredata_data_packet.cc:201
2906-#, c-format
2907-msgid "item %u: %s"
2908-msgstr ""
2909-
2910-#: ../../src/network/internet_gaming.cc:116
2911-#: ../../src/ui_fsmenu/internet_lobby.cc:409
2912-msgid "Connection problem"
2913-msgstr ""
2914-
2915-#: ../../src/network/internet_gaming.cc:116
2916-msgid "Widelands could not connect to the metaserver."
2917-msgstr ""
2918-
2919-#: ../../src/network/internet_gaming.cc:122 ../../src/network/netclient.cc:102
2920-msgid "Could not establish connection to host"
2921-msgstr ""
2922-
2923-#: ../../src/network/internet_gaming.cc:124
2924-msgid ""
2925-"Widelands could not establish a connection to the given address.\n"
2926-"Either there was no metaserver running at the supposed port or\n"
2927-"your network setup is broken."
2928-msgstr ""
2929-
2930-#: ../../src/network/internet_gaming.cc:171
2931-msgid "For hosting a game, please take a look at the notes at:"
2932-msgstr ""
2933-
2934-#: ../../src/network/internet_gaming.cc:302
2935-msgid "Something went wrong: "
2936-msgstr ""
2937-
2938-#: ../../src/network/internet_gaming.cc:392
2939-msgid "Successfully reconnected to the metaserver!"
2940-msgstr ""
2941-
2942-#: ../../src/network/internet_gaming.cc:399
2943-msgid "Mixed up"
2944-msgstr ""
2945-
2946-#: ../../src/network/internet_gaming.cc:399
2947-msgid "The metaserver sent a strange ERROR during connection"
2948-msgstr ""
2949-
2950-#: ../../src/network/internet_gaming.cc:410
2951-msgid "Unexpected packet"
2952-msgstr ""
2953-
2954-#: ../../src/network/internet_gaming.cc:412
2955-#, c-format
2956-msgid ""
2957-"Expected a LOGIN, RELOGIN or REJECTED packet from server, but received "
2958-"command %s. Maybe the metaserver is using a different protocol version ?"
2959-msgstr ""
2960-
2961-#: ../../src/network/internet_gaming.cc:425
2962-#, c-format
2963-msgid "WARNING: Received a %s command although we are not in CONNECTING state."
2964-msgstr ""
2965-
2966-#: ../../src/network/internet_gaming.cc:434
2967-#, c-format
2968-msgid "Server time offset is %i seconds."
2969-msgstr ""
2970-
2971-#: ../../src/network/internet_gaming.cc:454
2972-msgid "Invalid message type"
2973-msgstr ""
2974-
2975-#: ../../src/network/internet_gaming.cc:454
2976-#, c-format
2977-msgid "Invalid chat message type \"%s\"."
2978-msgstr ""
2979-
2980-#: ../../src/network/internet_gaming.cc:535
2981-msgid "ERROR: "
2982-msgstr ""
2983-
2984-#: ../../src/network/internet_gaming.cc:539
2985-msgid "Chat message could not be sent. "
2986-msgstr ""
2987-
2988-#: ../../src/network/internet_gaming.cc:560
2989-msgid "Received an unknown command from the metaserver: "
2990-msgstr ""
2991-
2992-#: ../../src/network/internet_gaming.cc:692
2993-msgid "Message could not be sent: You are not connected to the metaserver!"
2994-msgstr ""
2995-
2996-#: ../../src/network/internet_gaming.cc:704
2997-msgid "Message could not be sent: Was this supposed to be a private message?"
2998-msgstr ""
2999-
3000-#: ../../src/network/internet_gaming.cc:778
3001-msgid "Conversion error"
3002-msgstr ""
3003-
3004-#: ../../src/network/internet_gaming.cc:779
3005-#, c-format
3006-msgid "Conversion from std::string to bool failed. String was \"%s\""
3007-msgstr ""
3008-
3009-#: ../../src/network/internet_gaming_messages.cc:42
3010-#, c-format
3011-msgid "No user with the name %s is logged in!"
3012-msgstr ""
3013-
3014-#: ../../src/network/internet_gaming_messages.cc:43
3015-#: ../../src/network/nethost.cc:1260
3016-msgid "The sent password was incorrect!"
3017-msgstr ""
3018-
3019-#: ../../src/network/internet_gaming_messages.cc:44
3020-msgid "The protocol version you are using is not supported!"
3021-msgstr ""
3022-
3023-#: ../../src/network/internet_gaming_messages.cc:45
3024-msgid "You are already logged in!"
3025-msgstr ""
3026-
3027-#: ../../src/network/internet_gaming_messages.cc:48
3028-msgid ""
3029-"You got disconnected, as you sent a superuser command without superuser "
3030-"permission. This incident will be logged and reported to the administrator."
3031-msgstr ""
3032-
3033-#: ../../src/network/internet_gaming_messages.cc:50
3034-msgid "You got disconnected, as the metaserver is currently restarting."
3035-msgstr ""
3036-
3037-#: ../../src/network/internet_gaming_messages.cc:52
3038-msgid "Connection was closed by the client normally."
3039-msgstr ""
3040-
3041-#: ../../src/network/internet_gaming_messages.cc:53
3042-msgid "The connection to the metaserver was lost."
3043-msgstr ""
3044-
3045-#: ../../src/network/internet_gaming_messages.cc:54
3046-msgid "Metaserver did not answer"
3047-msgstr ""
3048-
3049-#: ../../src/network/internet_gaming_messages.cc:55
3050-msgid "Your game is not connectable from the internet"
3051-msgstr ""
3052-
3053-#: ../../src/network/internet_gaming_messages.cc:57
3054-msgid ""
3055-"You got disconnected from the metaserver, as you did not answer a PING "
3056-"request in time."
3057-msgstr ""
3058-
3059-#: ../../src/network/internet_gaming_messages.cc:60
3060-msgid ""
3061-"The metaserver was unable to connect to your game. Most likely it is not "
3062-"connectable from the internet! Please take a look at http://wl.widelands.org/"
3063-"wiki/InternetGaming for setting up your internet connection for hosting a "
3064-"game online."
3065-msgstr ""
3066-
3067-#: ../../src/network/internet_gaming_messages.cc:64
3068-msgid ""
3069-"You tried to relogin, but the server has no more knowledge of your previous "
3070-"state."
3071-msgstr ""
3072-
3073-#: ../../src/network/netclient.cc:104
3074-msgid ""
3075-"Widelands could not establish a connection to the given address.\n"
3076-"Either no Widelands server was running at the supposed port or\n"
3077-"the server shut down as you tried to connect."
3078-msgstr ""
3079-
3080-#: ../../src/network/netclient.cc:863
3081-msgid "/me 's file failed md5 checksumming."
3082-msgstr ""
3083-
3084-#: ../../src/network/netclient.cc:893
3085-msgid ""
3086-"/me checked the received file. Although md5 check summing succeeded, I can "
3087-"not handle the file."
3088-msgstr ""
3089-
3090-#: ../../src/network/netclient.cc:1108
3091-msgid " An automatic savegame will be created."
3092-msgstr ""
3093-
3094-#: ../../src/network/netclient.cc:1112
3095-msgid "Disconnected from Host"
3096-msgstr ""
3097-
3098-#: ../../src/network/nethost.cc:368
3099-msgid ""
3100-"<br>Available host commands are:<br>/help - Shows this help<br>/announce "
3101-"<msg> - Send a chatmessage as announcement (system chat)<br>/warn <name> "
3102-"<reason> - Warn the user <name> because of <reason><br>/kick <name> "
3103-"<reason> - Kick the user <name> because of <reason><br>/"
3104-"forcePause - Force the game to pause.<br>/endForcedPause "
3105-"- Puts game back to normal speed."
3106-msgstr ""
3107-
3108-#: ../../src/network/nethost.cc:382
3109-msgid "Wrong use, should be: /announce <message>"
3110-msgstr ""
3111-
3112-#: ../../src/network/nethost.cc:395
3113-msgid "Wrong use, should be: /warn <name> <reason>"
3114-msgstr ""
3115-
3116-#: ../../src/network/nethost.cc:403
3117-msgid "Why would you warn yourself?"
3118-msgstr ""
3119-
3120-#: ../../src/network/nethost.cc:405
3121-msgid "Why would you want to warn the dedicated server?"
3122-msgstr ""
3123-
3124-#: ../../src/network/nethost.cc:409 ../../src/network/nethost.cc:435
3125-#, c-format
3126-msgid "The client %s could not be found."
3127-msgstr ""
3128-
3129-#: ../../src/network/nethost.cc:420
3130-msgid "Wrong use, should be: /kick <name> <reason>"
3131-msgstr ""
3132-
3133-#: ../../src/network/nethost.cc:431
3134-msgid "You can not kick yourself!"
3135-msgstr ""
3136-
3137-#: ../../src/network/nethost.cc:433
3138-msgid "You can not kick the dedicated server"
3139-msgstr ""
3140-
3141-#: ../../src/network/nethost.cc:438
3142-#, c-format
3143-msgid "Are you sure you want to kick %s?<br>"
3144-msgstr ""
3145-
3146-#: ../../src/network/nethost.cc:439
3147-#, c-format
3148-msgid "The stated reason was: %s<br>"
3149-msgstr ""
3150-
3151-#: ../../src/network/nethost.cc:440
3152-#, c-format
3153-msgid "If yes, type: /ack_kick %s"
3154-msgstr ""
3155-
3156-#: ../../src/network/nethost.cc:451
3157-msgid "kick acknowledgement cancelled: No name given!"
3158-msgstr ""
3159-
3160-#: ../../src/network/nethost.cc:453
3161-msgid "Wrong use, should be: /ack_kick <name>"
3162-msgstr ""
3163-
3164-#: ../../src/network/nethost.cc:459
3165-msgid "kick acknowledgement cancelled: Wrong name given!"
3166-msgstr ""
3167-
3168-#: ../../src/network/nethost.cc:470
3169-msgid "Pause was already forced - game should be paused."
3170-msgstr ""
3171-
3172-#: ../../src/network/nethost.cc:482
3173-msgid "There is no forced pause - nothing to end."
3174-msgstr ""
3175-
3176-#: ../../src/network/nethost.cc:493
3177-msgid "Invalid command! Type /help for a list of commands."
3178-msgstr ""
3179-
3180-#: ../../src/network/nethost.cc:733
3181-#, c-format
3182-msgid ""
3183-"This is a dedicated server. Send \"@%s help\" to get a full list of "
3184-"available commands."
3185-msgstr ""
3186-
3187-#: ../../src/network/nethost.cc:1201
3188-msgid ""
3189-"<br>Available host commands are:<br>help - Shows this help<br>host $ - "
3190-"Tries to run the host command $<br>save $ - Saves the current game state as "
3191-"$.wgf"
3192-msgstr ""
3193-
3194-#: ../../src/network/nethost.cc:1208
3195-msgid ""
3196-"<br>Available host commands are:<br>help - Shows this "
3197-"help<br>host $ - Tries to run the host command $"
3198-msgstr ""
3199-
3200-#: ../../src/network/nethost.cc:1213
3201-msgid "pwd $ - Sends the password $ to the host"
3202-msgstr ""
3203-
3204-#: ../../src/network/nethost.cc:1220
3205-msgid ""
3206-"Access to host commands denied. To gain access, send the password with pwd "
3207-"command."
3208-msgstr ""
3209-
3210-#: ../../src/network/nethost.cc:1225
3211-#, c-format
3212-msgid "%s told me to run the command: \"%s\""
3213-msgstr ""
3214-
3215-#: ../../src/network/nethost.cc:1234
3216-msgid "Sorry! Saving was deactivated on this dedicated server!"
3217-msgstr ""
3218-
3219-#: ../../src/network/nethost.cc:1237
3220-msgid "Can not save, as long as no game is running!"
3221-msgstr ""
3222-
3223-#: ../../src/network/nethost.cc:1248
3224-msgid "Game successfully saved!"
3225-msgstr ""
3226-
3227-#: ../../src/network/nethost.cc:1250
3228-#, c-format
3229-msgid "Could not save the game to the file \"%s\"! (%s)"
3230-msgstr ""
3231-
3232-#: ../../src/network/nethost.cc:1257
3233-msgid "This server is not password protected!"
3234-msgstr ""
3235-
3236-#: ../../src/network/nethost.cc:1273
3237-msgid "The password was correct, access was granted!"
3238-msgstr ""
3239-
3240-#: ../../src/network/nethost.cc:1279
3241-#, c-format
3242-msgid "Unknown dedicated server command \"%s\"!"
3243-msgstr ""
3244-
3245-#: ../../src/network/nethost.cc:1984
3246-#, c-format
3247-msgid "Computer%u"
3248-msgstr ""
3249-
3250-#: ../../src/network/nethost.cc:2147
3251-#, c-format
3252-msgid ""
3253-"This server is password protected. You can send the password with: \"@%s pwd "
3254-"PASSWORD\""
3255-msgstr ""
3256-
3257-#: ../../src/network/network_gaming_messages.cc:122
3258-msgid "Client has left the game."
3259-msgstr ""
3260-
3261-#: ../../src/network/network_gaming_messages.cc:123
3262-msgid "Client crashed and performed an emergency save."
3263-msgstr ""
3264-
3265-#: ../../src/network/network_gaming_messages.cc:124
3266-msgid "Connection was lost."
3267-msgstr ""
3268-
3269-#: ../../src/network/network_gaming_messages.cc:125
3270-msgid "Server has left the game."
3271-msgstr ""
3272-
3273-#: ../../src/network/network_gaming_messages.cc:126
3274-msgid "The game has started just after you tried to connect."
3275-msgstr ""
3276-
3277-#: ../../src/network/network_gaming_messages.cc:127
3278-msgid "Server has crashed and performed an emergency save."
3279-msgstr ""
3280-
3281-#: ../../src/network/network_gaming_messages.cc:128
3282-msgid "Connection to client timeouted: no response for 10 minutes!"
3283-msgstr ""
3284-
3285-#: ../../src/network/network_gaming_messages.cc:129
3286-msgid "Client and host have become desynchronized."
3287-msgstr ""
3288-
3289-#: ../../src/network/network_gaming_messages.cc:130
3290-#, c-format
3291-msgid "Kicked by the host: %s"
3292-msgstr ""
3293-
3294-#: ../../src/network/network_gaming_messages.cc:131
3295-#, c-format
3296-msgid "Client sent malformed commands: %s"
3297-msgstr ""
3298-
3299-#: ../../src/network/network_gaming_messages.cc:132
3300-#, c-format
3301-msgid "Something went wrong: %s"
3302-msgstr ""
3303-
3304-#: ../../src/network/network_gaming_messages.cc:133
3305-#, c-format
3306-msgid "%s has left the game (%s)"
3307-msgstr ""
3308-
3309-#: ../../src/network/network_gaming_messages.cc:134
3310-#, c-format
3311-msgid "Unknown user has left the game (%s)"
3312-msgstr ""
3313-
3314-#: ../../src/network/network_gaming_messages.cc:135
3315-msgid "Server sent a SYNCREQUEST even though no game is running."
3316-msgstr ""
3317-
3318-#: ../../src/network/network_gaming_messages.cc:136
3319-msgid "Received a PLAYERCOMMAND even though no game is running."
3320-msgstr ""
3321-
3322-#: ../../src/network/network_gaming_messages.cc:137
3323-msgid "Unexpectedly received LAUNCH command from server."
3324-msgstr ""
3325-
3326-#: ../../src/network/network_gaming_messages.cc:138
3327-msgid "Server sent a player update for a player that does not exist."
3328-msgstr ""
3329-
3330-#: ../../src/network/network_gaming_messages.cc:139
3331-msgid "Server sent an user update for a user that does not exist."
3332-msgstr ""
3333-
3334-#: ../../src/network/network_gaming_messages.cc:140
3335-msgid "Server uses a different protocol version"
3336-msgstr ""
3337-
3338-#: ../../src/network/network_gaming_messages.cc:141
3339-#, c-format
3340-msgid "Received command number %s, that is disallowed in this state."
3341-msgstr ""
3342-
3343-#: ../../src/network/network_gaming_messages.cc:142
3344-msgid "Client reports time to host that is running backwards."
3345-msgstr ""
3346-
3347-#: ../../src/network/network_gaming_messages.cc:143
3348-msgid "Client simulates beyond the game time allowed by the host."
3349-msgstr ""
3350-
3351-#: ../../src/network/network_gaming_messages.cc:144
3352-msgid "Client did not submit sync report in time."
3353-msgstr ""
3354-
3355-#: ../../src/network/network_gaming_messages.cc:145
3356-msgid "The game has already started."
3357-msgstr ""
3358-
3359-#: ../../src/network/network_gaming_messages.cc:146
3360-msgid "Client has no access to other player's settings."
3361-msgstr ""
3362-
3363-#: ../../src/network/network_gaming_messages.cc:147
3364-msgid "Client has no access to server settings."
3365-msgstr ""
3366-
3367-#: ../../src/network/network_gaming_messages.cc:148
3368-msgid "Client sent start command, although server is not yet ready."
3369-msgstr ""
3370-
3371-#: ../../src/network/network_gaming_messages.cc:149
3372-msgid "Client sent TIME command even though game is not running."
3373-msgstr ""
3374-
3375-#: ../../src/network/network_gaming_messages.cc:150
3376-msgid "Client sent a playercommand for another player."
3377-msgstr ""
3378-
3379-#: ../../src/network/network_gaming_messages.cc:151
3380-msgid "Client sent unexpected synchronization report."
3381-msgstr ""
3382-
3383-#: ../../src/network/network_gaming_messages.cc:152
3384-msgid "Client requests file although none is available to send."
3385-msgstr ""
3386-
3387-#: ../../src/network/network_gaming_messages.cc:153
3388-msgid "Client requests file part that does not exist."
3389-msgstr ""
3390-
3391-#: ../../src/network/network_gaming_messages.cc:154
3392-#, c-format
3393-msgid "Host sent player %s to the lobby!"
3394-msgstr ""
3395-
3396-#: ../../src/network/network_gaming_messages.cc:155
3397-#, c-format
3398-msgid "WARNING: %s uses version: %s, while Host uses version: %s"
3399-msgstr ""
3400-
3401-#: ../../src/network/network_gaming_messages.cc:156
3402-#, c-format
3403-msgid "%s has joined the game"
3404-msgstr ""
3405-
3406-#: ../../src/network/network_gaming_messages.cc:157
3407-#, c-format
3408-msgid "Game was saved as %s."
3409-msgstr ""
3410-
3411-#: ../../src/network/network_gaming_messages.cc:158
3412-#, c-format
3413-msgid "Started to send file %s to %s!"
3414-msgstr ""
3415-
3416-#: ../../src/network/network_gaming_messages.cc:159
3417-#, c-format
3418-msgid "Completed transfer of file %s to %s"
3419-msgstr ""
3420-
3421-#: ../../src/network/network_gaming_messages.cc:160
3422-#, c-format
3423-msgid "Sending part %s of file %s to %s"
3424-msgstr ""
3425-
3426-#: ../../src/network/network_gaming_messages.cc:161
3427-#, c-format
3428-msgid "The player \"%s\" was defeated and became spectator."
3429-msgstr ""
3430-
3431-#: ../../src/network/network_gaming_messages.cc:162
3432-#, c-format
3433-msgid "Client %s did not answer for more than %s seconds."
3434-msgstr ""
3435-
3436-#: ../../src/network/network_gaming_messages.cc:164
3437-#, c-format
3438-msgid ""
3439-"Client %s will automatically be kicked, if no answer is received within %s "
3440-"seconds."
3441-msgstr ""
3442-
3443-#: ../../src/scripting/lua_game.cc:444 ../../src/ui_basic/helpwindow.cc:83
3444-#: ../../src/ui_basic/messagebox.cc:92
3445-#: ../../src/ui_fsmenu/campaign_select.cc:74
3446-#: ../../src/ui_fsmenu/campaign_select.cc:281
3447-#: ../../src/ui_fsmenu/editor_mapselect.cc:96
3448-#: ../../src/ui_fsmenu/loadgame.cc:67 ../../src/ui_fsmenu/loadreplay.cc:50
3449-#: ../../src/ui_fsmenu/mapselect.cc:110
3450-#: ../../src/wui/game_main_menu_save_game.cc:96
3451-#: ../../src/editor/ui_menus/editor_main_menu_load_map.cc:121
3452-#: ../../src/editor/ui_menus/editor_main_menu_save_map.cc:132
3453-#: ../../src/editor/ui_menus/editor_main_menu_save_map_make_directory.cc:57
3454-msgid "OK"
3455-msgstr ""
3456-
3457-#: ../../src/scripting/lua_game.cc:1088
3458-#, c-format
3459-msgid " (achieved %s)"
3460-msgstr ""
3461-
3462-#: ../../src/sound/sound_handler.cc:147
3463-#, c-format
3464-msgid "Sound_Handler closing times %i, freq %i, format %i, chan %i\n"
3465-msgstr ""
3466-
3467-#: ../../src/sound/sound_handler.cc:165
3468-msgid "PROBLEM: sound device opened multiple times, trying to close"
3469-msgstr ""
3470-
3471-#: ../../src/ui_basic/helpwindow.cc:47 ../../src/ui_basic/helpwindow.cc:191
3472-msgid "Help: "
3473-msgstr ""
3474-
3475-#: ../../src/ui_basic/progresswindow.cc:51
3476-msgid "Preparing..."
3477-msgstr ""
3478-
3479-#: ../../src/ui_basic/spinbox.cc:115
3480-msgid "Increase the value"
3481-msgstr ""
3482-
3483-#: ../../src/ui_basic/spinbox.cc:123
3484-msgid "Decrease the value"
3485-msgstr ""
3486-
3487-#: ../../src/ui_basic/spinbox.cc:134
3488-msgid "Increase the value by 10"
3489-msgstr ""
3490-
3491-#: ../../src/ui_basic/spinbox.cc:142
3492-msgid "Decrease the value by 10"
3493-msgstr ""
3494-
3495-#: ../../src/ui_fsmenu/campaign_select.cc:53
3496-msgid "Select a campaign"
3497-msgstr ""
3498-
3499-#: ../../src/ui_fsmenu/campaign_select.cc:55
3500-msgid "Campaign:"
3501-msgstr ""
3502-
3503-#: ../../src/ui_fsmenu/campaign_select.cc:59
3504-msgid "Difficulty:"
3505-msgstr ""
3506-
3507-#: ../../src/ui_fsmenu/campaign_select.cc:63
3508-#: ../../src/ui_fsmenu/campaign_select.cc:271
3509-msgid "Description:"
3510-msgstr ""
3511-
3512-#: ../../src/ui_fsmenu/campaign_select.cc:79
3513-#: ../../src/ui_fsmenu/campaign_select.cc:286 ../../src/ui_fsmenu/editor.cc:53
3514-#: ../../src/ui_fsmenu/editor_mapselect.cc:91
3515-#: ../../src/ui_fsmenu/internet_lobby.cc:91
3516-#: ../../src/ui_fsmenu/launchMPG.cc:131 ../../src/ui_fsmenu/launchSPG.cc:64
3517-#: ../../src/ui_fsmenu/loadgame.cc:62 ../../src/ui_fsmenu/loadreplay.cc:45
3518-#: ../../src/ui_fsmenu/mapselect.cc:105 ../../src/ui_fsmenu/multiplayer.cc:58
3519-#: ../../src/ui_fsmenu/netsetup_lan.cc:71
3520-#: ../../src/ui_fsmenu/singleplayer.cc:62
3521-msgid "Back"
3522-msgstr ""
3523-
3524-#: ../../src/ui_fsmenu/campaign_select.cc:164
3525-#: ../../src/ui_fsmenu/campaign_select.cc:166
3526-#: ../../src/ui_fsmenu/campaign_select.cc:168
3527-#: ../../src/ui_fsmenu/campaign_select.cc:227
3528-#: ../../src/ui_fsmenu/campaign_select.cc:420
3529-msgid "[No value found]"
3530-msgstr ""
3531-
3532-#: ../../src/ui_fsmenu/campaign_select.cc:171
3533-msgid "[Invalid entry]"
3534-msgstr ""
3535-
3536+#: ../../src/ui_fsmenu/mapselect.cc:54
3537+#: ../../src/ui_fsmenu/editor_mapselect.cc:52
3538 #: ../../src/ui_fsmenu/campaign_select.cc:265
3539-#: ../../src/ui_fsmenu/editor_mapselect.cc:52
3540-#: ../../src/ui_fsmenu/mapselect.cc:54
3541 msgid "Choose a map"
3542 msgstr ""
3543
3544+#: ../../src/ui_fsmenu/mapselect.cc:59
3545+msgid "Load Map as scenario: "
3546+msgstr ""
3547+
3548+#: ../../src/ui_fsmenu/mapselect.cc:64
3549+#: ../../src/ui_fsmenu/editor_mapselect.cc:56
3550 #: ../../src/ui_fsmenu/campaign_select.cc:267
3551-#: ../../src/ui_fsmenu/editor_mapselect.cc:56
3552-#: ../../src/ui_fsmenu/mapselect.cc:64
3553 msgid "Name:"
3554 msgstr ""
3555
3556+#: ../../src/ui_fsmenu/mapselect.cc:70
3557+#: ../../src/ui_fsmenu/editor_mapselect.cc:61
3558 #: ../../src/ui_fsmenu/campaign_select.cc:269
3559-#: ../../src/ui_fsmenu/editor_mapselect.cc:61
3560-#: ../../src/ui_fsmenu/mapselect.cc:70
3561 #: ../../src/editor/ui_menus/editor_main_menu_map_options.cc:80
3562 msgid "Author:"
3563 msgstr ""
3564
3565-#: ../../src/ui_fsmenu/campaign_select.cc:359
3566-#, c-format
3567-msgid "Invalid path to file in cconfig: %s"
3568-msgstr ""
3569-
3570-#: ../../src/ui_fsmenu/editor.cc:36 ../../src/ui_fsmenu/main.cc:60
3571-msgid "Editor"
3572-msgstr ""
3573-
3574-#: ../../src/ui_fsmenu/editor.cc:43
3575-#: ../../src/editor/ui_menus/editor_main_menu.cc:56
3576-#: ../../src/editor/ui_menus/editor_main_menu_new_map.cc:46
3577-msgid "New Map"
3578-msgstr ""
3579-
3580-#: ../../src/ui_fsmenu/editor.cc:48
3581-#: ../../src/editor/ui_menus/editor_main_menu.cc:66
3582-#: ../../src/editor/ui_menus/editor_main_menu_load_map.cc:52
3583-msgid "Load Map"
3584-msgstr ""
3585-
3586+#: ../../src/ui_fsmenu/mapselect.cc:76
3587 #: ../../src/ui_fsmenu/editor_mapselect.cc:66
3588-#: ../../src/ui_fsmenu/mapselect.cc:76
3589 #: ../../src/editor/ui_menus/editor_main_menu_map_options.cc:66
3590 msgid "Size:"
3591 msgstr ""
3592
3593+#: ../../src/ui_fsmenu/mapselect.cc:82
3594 #: ../../src/ui_fsmenu/editor_mapselect.cc:71
3595-#: ../../src/ui_fsmenu/mapselect.cc:82
3596 #: ../../src/editor/ui_menus/editor_main_menu_map_options.cc:75
3597 msgid "World:"
3598 msgstr ""
3599
3600+#: ../../src/ui_fsmenu/mapselect.cc:88 ../../src/ui_fsmenu/loadreplay.cc:82
3601 #: ../../src/ui_fsmenu/editor_mapselect.cc:76
3602-#: ../../src/ui_fsmenu/loadgame.cc:97 ../../src/ui_fsmenu/loadreplay.cc:81
3603-#: ../../src/ui_fsmenu/mapselect.cc:88
3604+#: ../../src/ui_fsmenu/loadgame.cc:98
3605 msgid "Players:"
3606 msgstr ""
3607
3608+#: ../../src/ui_fsmenu/mapselect.cc:94
3609 #: ../../src/ui_fsmenu/editor_mapselect.cc:81
3610-#: ../../src/ui_fsmenu/mapselect.cc:94
3611 msgid "Descr:"
3612 msgstr ""
3613
3614+#: ../../src/ui_fsmenu/mapselect.cc:105 ../../src/ui_fsmenu/loadreplay.cc:46
3615+#: ../../src/ui_fsmenu/launchMPG.cc:132
3616+#: ../../src/ui_fsmenu/editor_mapselect.cc:91
3617+#: ../../src/ui_fsmenu/launchSPG.cc:64
3618+#: ../../src/ui_fsmenu/internet_lobby.cc:91
3619+#: ../../src/ui_fsmenu/multiplayer.cc:58 ../../src/ui_fsmenu/editor.cc:53
3620+#: ../../src/ui_fsmenu/netsetup_lan.cc:71
3621+#: ../../src/ui_fsmenu/singleplayer.cc:62
3622+#: ../../src/ui_fsmenu/campaign_select.cc:79
3623+#: ../../src/ui_fsmenu/campaign_select.cc:286
3624+#: ../../src/ui_fsmenu/loadgame.cc:63
3625+msgid "Back"
3626+msgstr ""
3627+
3628+#: ../../src/ui_fsmenu/mapselect.cc:149
3629+msgid "#"
3630+msgstr ""
3631+
3632+#: ../../src/ui_fsmenu/mapselect.cc:151
3633+msgid "Map Name"
3634+msgstr ""
3635+
3636+#: ../../src/ui_fsmenu/mapselect.cc:166
3637+msgid "Show all maps"
3638+msgstr ""
3639+
3640+#: ../../src/ui_fsmenu/mapselect.cc:171
3641+msgid "Official Map"
3642+msgstr ""
3643+
3644+#: ../../src/ui_fsmenu/mapselect.cc:172
3645+msgid "Seafaring Map"
3646+msgstr ""
3647+
3648+#: ../../src/ui_fsmenu/mapselect.cc:175
3649+msgid "1v1"
3650+msgstr ""
3651+
3652+#: ../../src/ui_fsmenu/mapselect.cc:176
3653+msgid "Teams of 2"
3654+msgstr ""
3655+
3656+#: ../../src/ui_fsmenu/mapselect.cc:177
3657+msgid "Teams of 3"
3658+msgstr ""
3659+
3660+#: ../../src/ui_fsmenu/mapselect.cc:180
3661+msgid "Teams of 4"
3662+msgstr ""
3663+
3664+#: ../../src/ui_fsmenu/mapselect.cc:181
3665+msgid "Free for all"
3666+msgstr ""
3667+
3668+#: ../../src/ui_fsmenu/mapselect.cc:182
3669+msgid "Unbalanced"
3670+msgstr ""
3671+
3672+#: ../../src/ui_fsmenu/mapselect.cc:280
3673+msgid "(directory)"
3674+msgstr ""
3675+
3676+#: ../../src/ui_fsmenu/mapselect.cc:347
3677 #: ../../src/ui_fsmenu/editor_mapselect.cc:230
3678-#: ../../src/ui_fsmenu/mapselect.cc:347
3679+#: ../../src/editor/ui_menus/editor_main_menu_save_map.cc:297
3680 #: ../../src/editor/ui_menus/editor_main_menu_load_map.cc:224
3681-#: ../../src/editor/ui_menus/editor_main_menu_save_map.cc:297
3682 msgid "parent"
3683 msgstr ""
3684
3685+#: ../../src/ui_fsmenu/mapselect.cc:503 ../../src/ui_fsmenu/mapselect.cc:507
3686+#: ../../src/io/dedicated_log.cc:66 ../../src/network/internet_gaming.cc:797
3687+msgid "unknown"
3688+msgstr ""
3689+
3690+#: ../../src/ui_fsmenu/mapselect.cc:505
3691+msgid ""
3692+"This map file is not present on your filesystem. Data shown here was sent by "
3693+"the server."
3694+msgstr ""
3695+
3696 #: ../../src/ui_fsmenu/fileview.cc:72 ../../src/wui/watchwindow.cc:139
3697 msgid "Close"
3698 msgstr ""
3699
3700-#: ../../src/ui_fsmenu/internet_lobby.cc:52
3701-msgid "Metaserver Lobby"
3702-msgstr ""
3703-
3704-#: ../../src/ui_fsmenu/internet_lobby.cc:56
3705-msgid "Clients online:"
3706-msgstr ""
3707-
3708-#: ../../src/ui_fsmenu/internet_lobby.cc:60
3709-msgid "List of games:"
3710-msgstr ""
3711-
3712-#: ../../src/ui_fsmenu/internet_lobby.cc:64
3713-msgid "Name of your server:"
3714-msgstr ""
3715-
3716-#: ../../src/ui_fsmenu/internet_lobby.cc:68
3717-msgid "Maximum of players:"
3718-msgstr ""
3719-
3720-#: ../../src/ui_fsmenu/internet_lobby.cc:81
3721-#: ../../src/ui_fsmenu/netsetup_lan.cc:61
3722-msgid "Join this game"
3723-msgstr ""
3724-
3725-#: ../../src/ui_fsmenu/internet_lobby.cc:86
3726-msgid "Open a new game"
3727-msgstr ""
3728-
3729-#: ../../src/ui_fsmenu/internet_lobby.cc:156
3730-msgid "Points"
3731-msgstr ""
3732-
3733-#: ../../src/ui_fsmenu/internet_lobby.cc:157
3734-msgid "Game"
3735-msgstr ""
3736-
3737-#: ../../src/ui_fsmenu/internet_lobby.cc:379
3738-msgid "Connection timed out"
3739-msgstr ""
3740-
3741-#: ../../src/ui_fsmenu/internet_lobby.cc:382
3742-msgid ""
3743-"Widelands has not been able to get the IP address of the server in time.\n"
3744-"There seems to be a network problem, either on your side or on the side\n"
3745-"of the server.\n"
3746-msgstr ""
3747-
3748-#: ../../src/ui_fsmenu/internet_lobby.cc:410
3749-msgid "Widelands has not been able to connect to the host."
3750-msgstr ""
3751-
3752-#: ../../src/ui_fsmenu/intro.cc:32
3753-msgid "Press ESC or click to continue ..."
3754-msgstr ""
3755-
3756-#: ../../src/ui_fsmenu/launchMPG.cc:51
3757+#: ../../src/ui_fsmenu/loadreplay.cc:56 ../../src/ui_fsmenu/loadgame.cc:73
3758+#: ../../src/wui/game_main_menu_save_game.cc:114
3759+msgid "Delete"
3760+msgstr ""
3761+
3762+#: ../../src/ui_fsmenu/loadreplay.cc:68
3763+msgid "Choose a replay"
3764+msgstr ""
3765+
3766+#: ../../src/ui_fsmenu/loadreplay.cc:72 ../../src/ui_fsmenu/loadgame.cc:88
3767+#: ../../src/editor/ui_menus/editor_main_menu_map_options.cc:57
3768+msgid "Map Name:"
3769+msgstr ""
3770+
3771+#: ../../src/ui_fsmenu/loadreplay.cc:77 ../../src/ui_fsmenu/loadgame.cc:93
3772+msgid "Gametime:"
3773+msgstr ""
3774+
3775+#: ../../src/ui_fsmenu/loadreplay.cc:139 ../../src/ui_fsmenu/loadgame.cc:158
3776+msgid "Delete file"
3777+msgstr ""
3778+
3779+#: ../../src/ui_fsmenu/loadreplay.cc:140 ../../src/ui_fsmenu/loadgame.cc:159
3780+#, c-format
3781+msgid "Do you really want to delete %s?"
3782+msgstr ""
3783+
3784+#: ../../src/ui_fsmenu/loadreplay.cc:198
3785+#: ../../src/ui_fsmenu/netsetup_lan.cc:198 ../../src/ui_fsmenu/loadgame.cc:242
3786+#: ../../src/editor/editorinteractive.cc:599 ../../src/wui/game_summary.cc:171
3787+#: ../../src/editor/ui_menus/editor_main_menu_random_map.cc:487
3788+#: ../../src/editor/ui_menus/editor_main_menu_new_map.cc:180
3789+#: ../../src/logic/map.h:169
3790+msgid "Unknown"
3791+msgstr ""
3792+
3793+#: ../../src/ui_fsmenu/launchMPG.cc:52
3794 msgid "Please select"
3795 msgstr ""
3796
3797-#: ../../src/ui_fsmenu/launchMPG.cc:64 ../../src/ui_fsmenu/launchMPG.cc:164
3798-#: ../../src/ui_fsmenu/netsetup_lan.cc:126 ../../src/wui/minimap.cc:146
3799+#: ../../src/ui_fsmenu/launchMPG.cc:65 ../../src/ui_fsmenu/launchMPG.cc:165
3800+#: ../../src/ui_fsmenu/netsetup_lan.cc:126 ../../src/wui/minimap.cc:145
3801 msgid "Map"
3802 msgstr ""
3803
3804-#: ../../src/ui_fsmenu/launchMPG.cc:64
3805+#: ../../src/ui_fsmenu/launchMPG.cc:65
3806 msgid "Select a map"
3807 msgstr ""
3808
3809-#: ../../src/ui_fsmenu/launchMPG.cc:74
3810+#: ../../src/ui_fsmenu/launchMPG.cc:75
3811 msgid "Saved game"
3812 msgstr ""
3813
3814-#: ../../src/ui_fsmenu/launchMPG.cc:74
3815+#: ../../src/ui_fsmenu/launchMPG.cc:75
3816 msgid "Select a saved game"
3817 msgstr ""
3818
3819-#: ../../src/ui_fsmenu/launchMPG.cc:84 ../../src/ui_fsmenu/options.cc:56
3820+#: ../../src/ui_fsmenu/launchMPG.cc:85 ../../src/ui_fsmenu/options.cc:56
3821 #: ../../src/ui_fsmenu/options.cc:400
3822 #: ../../src/wui/game_main_menu_save_game.cc:106 ../../src/wui/login_box.cc:70
3823-#: ../../src/editor/ui_menus/editor_main_menu_load_map.cc:130
3824 #: ../../src/editor/ui_menus/editor_main_menu_save_map.cc:139
3825 #: ../../src/editor/ui_menus/editor_main_menu_save_map_make_directory.cc:67
3826+#: ../../src/editor/ui_menus/editor_main_menu_load_map.cc:130
3827 msgid "Cancel"
3828 msgstr ""
3829
3830-#: ../../src/ui_fsmenu/launchMPG.cc:84
3831+#: ../../src/ui_fsmenu/launchMPG.cc:85
3832 msgid "Cancel selection"
3833 msgstr ""
3834
3835-#: ../../src/ui_fsmenu/launchMPG.cc:121
3836+#: ../../src/ui_fsmenu/launchMPG.cc:122
3837 msgid "Change map or saved game"
3838 msgstr ""
3839
3840-#: ../../src/ui_fsmenu/launchMPG.cc:126 ../../src/ui_fsmenu/launchSPG.cc:69
3841+#: ../../src/ui_fsmenu/launchMPG.cc:127 ../../src/ui_fsmenu/launchSPG.cc:69
3842 msgid "Start game"
3843 msgstr ""
3844
3845-#: ../../src/ui_fsmenu/launchMPG.cc:142
3846+#: ../../src/ui_fsmenu/launchMPG.cc:143
3847 msgid "Show the help window"
3848 msgstr ""
3849
3850-#: ../../src/ui_fsmenu/launchMPG.cc:148 ../../src/ui_fsmenu/launchMPG.cc:666
3851+#: ../../src/ui_fsmenu/launchMPG.cc:149 ../../src/ui_fsmenu/launchMPG.cc:667
3852 msgid "Multiplayer Game Setup"
3853 msgstr ""
3854
3855-#: ../../src/ui_fsmenu/launchMPG.cc:156
3856+#: ../../src/ui_fsmenu/launchMPG.cc:157
3857 msgid "Clients"
3858 msgstr ""
3859
3860-#: ../../src/ui_fsmenu/launchMPG.cc:168 ../../src/ui_fsmenu/launchSPG.cc:103
3861+#: ../../src/ui_fsmenu/launchMPG.cc:161
3862+#: ../../src/editor/editorinteractive.cc:80
3863+msgid "Players"
3864+msgstr ""
3865+
3866+#: ../../src/ui_fsmenu/launchMPG.cc:169 ../../src/ui_fsmenu/launchSPG.cc:103
3867 msgid "Type of game"
3868 msgstr ""
3869
3870-#: ../../src/ui_fsmenu/launchMPG.cc:214 ../../src/ui_fsmenu/launchSPG.cc:284
3871+#: ../../src/ui_fsmenu/launchMPG.cc:215 ../../src/ui_fsmenu/launchSPG.cc:284
3872 msgid "(no map)"
3873 msgstr ""
3874
3875-#: ../../src/ui_fsmenu/launchMPG.cc:215
3876+#: ../../src/ui_fsmenu/launchMPG.cc:216
3877 msgid "The host has not yet selected a map or saved game."
3878 msgstr ""
3879
3880-#: ../../src/ui_fsmenu/launchMPG.cc:288 ../../src/ui_fsmenu/launchSPG.cc:232
3881+#: ../../src/ui_fsmenu/launchMPG.cc:289 ../../src/ui_fsmenu/launchSPG.cc:232
3882 msgid "Win condition is set through the scenario"
3883 msgstr ""
3884
3885-#: ../../src/ui_fsmenu/launchMPG.cc:290
3886+#: ../../src/ui_fsmenu/launchMPG.cc:291
3887 #: ../../src/wui/multiplayersetupgroup.cc:358
3888 msgid "Savegame"
3889 msgstr ""
3890
3891-#: ../../src/ui_fsmenu/launchMPG.cc:292
3892+#: ../../src/ui_fsmenu/launchMPG.cc:293
3893 msgid "The game is a saved game - the win condition was set before."
3894 msgstr ""
3895
3896-#: ../../src/ui_fsmenu/launchMPG.cc:393
3897+#: ../../src/ui_fsmenu/launchMPG.cc:394
3898 msgid "Saved game is directory"
3899 msgstr ""
3900
3901-#: ../../src/ui_fsmenu/launchMPG.cc:395
3902+#: ../../src/ui_fsmenu/launchMPG.cc:396
3903 msgid ""
3904 "WARNING:\n"
3905 "The saved game you selected is a directory. This happens, if you set the "
3906@@ -2929,11 +1154,11 @@
3907 "please select another saved game or zip the directories content."
3908 msgstr ""
3909
3910-#: ../../src/ui_fsmenu/launchMPG.cc:423 ../../src/ui_fsmenu/launchSPG.cc:258
3911+#: ../../src/ui_fsmenu/launchMPG.cc:424 ../../src/ui_fsmenu/launchSPG.cc:258
3912 msgid "File not found"
3913 msgstr ""
3914
3915-#: ../../src/ui_fsmenu/launchMPG.cc:425
3916+#: ../../src/ui_fsmenu/launchMPG.cc:426
3917 #, c-format
3918 msgid ""
3919 "Widelands tried to start a game with a file that could not be found at given "
3920@@ -2944,137 +1169,139 @@
3921 "transfer was not yet finished!?!"
3922 msgstr ""
3923
3924-#: ../../src/ui_fsmenu/launchMPG.cc:449
3925+#: ../../src/ui_fsmenu/launchMPG.cc:450
3926 msgid ""
3927 "The selected file can not be found. If it is not automatically transferred "
3928 "to you, please write the host about this problem."
3929 msgstr ""
3930
3931-#: ../../src/ui_fsmenu/launchMPG.cc:481
3932+#: ../../src/ui_fsmenu/launchMPG.cc:482
3933 #: ../../src/wui/multiplayersetupgroup.cc:120
3934 #: ../../src/wui/multiplayersetupgroup.cc:286
3935 #, c-format
3936 msgid "Player %i"
3937 msgstr ""
3938
3939-#: ../../src/ui_fsmenu/launchMPG.cc:483
3940+#: ../../src/ui_fsmenu/launchMPG.cc:484
3941 #: ../../src/wui/multiplayersetupgroup.cc:122
3942 #, c-format
3943 msgid "Spectator"
3944 msgstr ""
3945
3946-#: ../../src/ui_fsmenu/launchMPG.cc:484
3947+#: ../../src/ui_fsmenu/launchMPG.cc:485
3948 #, c-format
3949 msgid ""
3950 "At the moment you are %s\n"
3951 "\n"
3952 msgstr ""
3953
3954-#: ../../src/ui_fsmenu/launchMPG.cc:485
3955+#: ../../src/ui_fsmenu/launchMPG.cc:486
3956 msgid "Click on the \"?\" in the right top corner to get help."
3957 msgstr ""
3958
3959-#: ../../src/ui_fsmenu/launchMPG.cc:546
3960+#: ../../src/ui_fsmenu/launchMPG.cc:547
3961 msgid "Saved players are:"
3962 msgstr ""
3963
3964-#: ../../src/ui_fsmenu/launchMPG.cc:562
3965+#: ../../src/ui_fsmenu/launchMPG.cc:563
3966 #, c-format
3967 msgid "Player %u"
3968 msgstr ""
3969
3970-#: ../../src/ui_fsmenu/launchMPG.cc:566
3971+#: ../../src/ui_fsmenu/launchMPG.cc:567
3972 msgid "closed"
3973 msgstr ""
3974
3975-#: ../../src/ui_fsmenu/launchMPG.cc:630
3976+#: ../../src/ui_fsmenu/launchMPG.cc:631
3977 msgid "There was an error!"
3978 msgstr ""
3979
3980-#: ../../src/ui_fsmenu/launchMPG.cc:630
3981+#: ../../src/ui_fsmenu/launchMPG.cc:631
3982 msgid "The map file seems to be invalid!"
3983 msgstr ""
3984
3985-#: ../../src/ui_fsmenu/launchMPG.cc:647
3986+#: ../../src/ui_fsmenu/launchMPG.cc:648
3987 msgid "Map informations:\n"
3988 msgstr ""
3989
3990-#: ../../src/ui_fsmenu/launchMPG.cc:648
3991-#, c-format
3992-msgid "* Size: %ux%u\n"
3993-msgstr ""
3994-
3995 #: ../../src/ui_fsmenu/launchMPG.cc:649
3996 #, c-format
3997-msgid "* %i Players\n"
3998+msgid "* Size: %1$ux%2$u\n"
3999 msgstr ""
4000
4001 #: ../../src/ui_fsmenu/launchMPG.cc:650
4002 #, c-format
4003+msgid "* %u Player\n"
4004+msgid_plural "* %u Players\n"
4005+msgstr[0] ""
4006+msgstr[1] ""
4007+
4008+#: ../../src/ui_fsmenu/launchMPG.cc:651
4009+#, c-format
4010 msgid "* World type: %s\n"
4011 msgstr ""
4012
4013-#: ../../src/ui_fsmenu/launchMPG.cc:652
4014+#: ../../src/ui_fsmenu/launchMPG.cc:653
4015 msgid "* Scenario mode selected\n"
4016 msgstr ""
4017
4018-#: ../../src/ui_fsmenu/launchMPG.cc:667
4019+#: ../../src/ui_fsmenu/launchMPG.cc:668
4020 msgid "You are in the multiplayer launch game menu."
4021 msgstr ""
4022
4023-#: ../../src/ui_fsmenu/launchMPG.cc:668
4024+#: ../../src/ui_fsmenu/launchMPG.cc:669
4025 msgid "Client settings"
4026 msgstr ""
4027
4028-#: ../../src/ui_fsmenu/launchMPG.cc:671
4029+#: ../../src/ui_fsmenu/launchMPG.cc:672
4030 msgid ""
4031 "On the left side is a list of all clients including you. With the button in "
4032 "the rear of your nickname, you can set your role. Available roles are:"
4033 msgstr ""
4034
4035-#: ../../src/ui_fsmenu/launchMPG.cc:675
4036+#: ../../src/ui_fsmenu/launchMPG.cc:676
4037 msgid ""
4038 "The player with the color of the flag. If more than one client selected the "
4039 "same color, these share the control over the player (\"shared kingdom mode"
4040 "\")."
4041 msgstr ""
4042
4043-#: ../../src/ui_fsmenu/launchMPG.cc:679
4044+#: ../../src/ui_fsmenu/launchMPG.cc:680
4045 msgid ""
4046 "And spectator mode, meaning you can see everything, but can not control any "
4047 "player"
4048 msgstr ""
4049
4050-#: ../../src/ui_fsmenu/launchMPG.cc:681
4051+#: ../../src/ui_fsmenu/launchMPG.cc:682
4052 msgid "Player settings"
4053 msgstr ""
4054
4055-#: ../../src/ui_fsmenu/launchMPG.cc:684
4056+#: ../../src/ui_fsmenu/launchMPG.cc:685
4057 msgid ""
4058 "In the middle are the settings for the players. To start a game, each player "
4059 "must be one of the following:"
4060 msgstr ""
4061
4062-#: ../../src/ui_fsmenu/launchMPG.cc:687
4063+#: ../../src/ui_fsmenu/launchMPG.cc:688
4064 msgid "Connected to one or more clients (see \"Client settings\")."
4065 msgstr ""
4066
4067-#: ../../src/ui_fsmenu/launchMPG.cc:690
4068+#: ../../src/ui_fsmenu/launchMPG.cc:691
4069 msgid ""
4070 "Connected to a computer player (the face in the picture as well as the mouse "
4071 "hover texts indicates the strength of the currently selected computer "
4072 "player)."
4073 msgstr ""
4074
4075-#: ../../src/ui_fsmenu/launchMPG.cc:693
4076+#: ../../src/ui_fsmenu/launchMPG.cc:694
4077 msgid "Set as shared in starting position for another player."
4078 msgstr ""
4079
4080-#: ../../src/ui_fsmenu/launchMPG.cc:694
4081+#: ../../src/ui_fsmenu/launchMPG.cc:695
4082 msgid "Closed."
4083 msgstr ""
4084
4085-#: ../../src/ui_fsmenu/launchMPG.cc:697
4086+#: ../../src/ui_fsmenu/launchMPG.cc:698
4087 msgid ""
4088 "The later three are only settable by the hosting client by left clicking the "
4089 "\"type\" button of a player. Hosting players can further set the "
4090@@ -3082,17 +1309,17 @@
4091 "player starts with) and the tribe an team for computer players"
4092 msgstr ""
4093
4094-#: ../../src/ui_fsmenu/launchMPG.cc:702
4095+#: ../../src/ui_fsmenu/launchMPG.cc:703
4096 msgid ""
4097 "Every client connected to a player (the set \"role\" player) can set the "
4098 "tribe and the team for that player"
4099 msgstr ""
4100
4101-#: ../../src/ui_fsmenu/launchMPG.cc:704
4102+#: ../../src/ui_fsmenu/launchMPG.cc:705
4103 msgid "Map informations"
4104 msgstr ""
4105
4106-#: ../../src/ui_fsmenu/launchMPG.cc:707
4107+#: ../../src/ui_fsmenu/launchMPG.cc:708
4108 msgid ""
4109 "On the right side are informations about the selected map or savegame. A "
4110 "button right to the map name allows the host to change to a different one. "
4111@@ -3116,8 +1343,8 @@
4112 msgid "Player's type"
4113 msgstr ""
4114
4115-#: ../../src/ui_fsmenu/launchSPG.cc:91 ../../src/wui/game_summary.cc:91
4116-#: ../../src/wui/multiplayersetupgroup.cc:462
4117+#: ../../src/ui_fsmenu/launchSPG.cc:91
4118+#: ../../src/wui/multiplayersetupgroup.cc:462 ../../src/wui/game_summary.cc:91
4119 msgid "Team"
4120 msgstr ""
4121
4122@@ -3144,215 +1371,70 @@
4123 "but perhaps the transfer was not yet finished!?!"
4124 msgstr ""
4125
4126-#: ../../src/ui_fsmenu/loadgame.cc:72 ../../src/ui_fsmenu/loadreplay.cc:55
4127-#: ../../src/wui/game_main_menu_save_game.cc:114
4128-msgid "Delete"
4129-msgstr ""
4130-
4131-#: ../../src/ui_fsmenu/loadgame.cc:83
4132-msgid "Choose saved game"
4133-msgstr ""
4134-
4135-#: ../../src/ui_fsmenu/loadgame.cc:87 ../../src/ui_fsmenu/loadreplay.cc:71
4136-#: ../../src/editor/ui_menus/editor_main_menu_map_options.cc:57
4137-msgid "Map Name:"
4138-msgstr ""
4139-
4140-#: ../../src/ui_fsmenu/loadgame.cc:92 ../../src/ui_fsmenu/loadreplay.cc:76
4141-msgid "Gametime:"
4142-msgstr ""
4143-
4144-#: ../../src/ui_fsmenu/loadgame.cc:105
4145-msgid "Minimap:"
4146-msgstr ""
4147-
4148-#: ../../src/ui_fsmenu/loadgame.cc:157 ../../src/ui_fsmenu/loadreplay.cc:138
4149-msgid "Delete file"
4150-msgstr ""
4151-
4152-#: ../../src/ui_fsmenu/loadgame.cc:158 ../../src/ui_fsmenu/loadreplay.cc:139
4153-msgid "Do you really want to delete "
4154-msgstr ""
4155-
4156-#: ../../src/ui_fsmenu/loadgame.cc:215
4157-msgid "Savegame from dedicated server"
4158-msgstr ""
4159-
4160-#: ../../src/ui_fsmenu/loadgame.cc:216
4161-msgid "Unknown gametime"
4162-msgstr ""
4163-
4164-#: ../../src/ui_fsmenu/loadreplay.cc:67
4165-msgid "Choose a replay"
4166-msgstr ""
4167-
4168-#: ../../src/ui_fsmenu/main.cc:40
4169-msgid "Play Tutorial"
4170-msgstr ""
4171-
4172-#: ../../src/ui_fsmenu/main.cc:45
4173-msgid "Single Player"
4174-msgstr ""
4175-
4176-#: ../../src/ui_fsmenu/main.cc:50
4177-msgid "Multi Player"
4178-msgstr ""
4179-
4180-#: ../../src/ui_fsmenu/main.cc:55
4181-msgid "Watch Replay"
4182-msgstr ""
4183-
4184-#: ../../src/ui_fsmenu/main.cc:65 ../../src/wui/game_options_menu.cc:47
4185-#: ../../src/wui/interactive_player.cc:110
4186-#: ../../src/wui/interactive_spectator.cc:57
4187-msgid "Options"
4188-msgstr ""
4189-
4190-#: ../../src/ui_fsmenu/main.cc:70
4191-#: ../../src/editor/ui_menus/editor_main_menu.cc:81
4192-msgid "View Readme"
4193-msgstr ""
4194-
4195-#: ../../src/ui_fsmenu/main.cc:75 ../../src/wui/game_options_menu.cc:63
4196-msgid "License"
4197-msgstr ""
4198-
4199-#: ../../src/ui_fsmenu/main.cc:80 ../../src/wui/game_options_menu.cc:94
4200-msgid "Exit Game"
4201-msgstr ""
4202-
4203-#: ../../src/ui_fsmenu/main.cc:86
4204-msgid "Version "
4205-msgstr ""
4206-
4207-#: ../../src/ui_fsmenu/main.cc:91
4208-msgid "by the Widelands Development Team"
4209-msgstr ""
4210-
4211-#: ../../src/ui_fsmenu/main.cc:96
4212-msgid "Licensed under the GNU General Public License V2.0"
4213-msgstr ""
4214-
4215-#: ../../src/ui_fsmenu/mapselect.cc:59
4216-msgid "Load Map as scenario: "
4217-msgstr ""
4218-
4219-#: ../../src/ui_fsmenu/mapselect.cc:149
4220-msgid "#"
4221-msgstr ""
4222-
4223-#: ../../src/ui_fsmenu/mapselect.cc:151
4224-msgid "Map Name"
4225-msgstr ""
4226-
4227-#: ../../src/ui_fsmenu/mapselect.cc:166
4228-msgid "Show all maps"
4229-msgstr ""
4230-
4231-#: ../../src/ui_fsmenu/mapselect.cc:171
4232-msgid "Official Map"
4233-msgstr ""
4234-
4235-#: ../../src/ui_fsmenu/mapselect.cc:172
4236-msgid "Seafaring Map"
4237-msgstr ""
4238-
4239-#: ../../src/ui_fsmenu/mapselect.cc:175
4240-msgid "1v1"
4241-msgstr ""
4242-
4243-#: ../../src/ui_fsmenu/mapselect.cc:176
4244-msgid "Teams of 2"
4245-msgstr ""
4246-
4247-#: ../../src/ui_fsmenu/mapselect.cc:177
4248-msgid "Teams of 3"
4249-msgstr ""
4250-
4251-#: ../../src/ui_fsmenu/mapselect.cc:180
4252-msgid "Teams of 4"
4253-msgstr ""
4254-
4255-#: ../../src/ui_fsmenu/mapselect.cc:181
4256-msgid "Free for all"
4257-msgstr ""
4258-
4259-#: ../../src/ui_fsmenu/mapselect.cc:182
4260-msgid "Unbalanced"
4261-msgstr ""
4262-
4263-#: ../../src/ui_fsmenu/mapselect.cc:280
4264-msgid "(directory)"
4265-msgstr ""
4266-
4267-#: ../../src/ui_fsmenu/mapselect.cc:505
4268+#: ../../src/ui_fsmenu/intro.cc:32
4269+msgid "Press ESC or click to continue ..."
4270+msgstr ""
4271+
4272+#: ../../src/ui_fsmenu/internet_lobby.cc:52
4273+msgid "Metaserver Lobby"
4274+msgstr ""
4275+
4276+#: ../../src/ui_fsmenu/internet_lobby.cc:56
4277+msgid "Clients online:"
4278+msgstr ""
4279+
4280+#: ../../src/ui_fsmenu/internet_lobby.cc:60
4281+msgid "List of games:"
4282+msgstr ""
4283+
4284+#: ../../src/ui_fsmenu/internet_lobby.cc:64
4285+msgid "Name of your server:"
4286+msgstr ""
4287+
4288+#: ../../src/ui_fsmenu/internet_lobby.cc:68
4289+msgid "Maximum of players:"
4290+msgstr ""
4291+
4292+#: ../../src/ui_fsmenu/internet_lobby.cc:81
4293+#: ../../src/ui_fsmenu/netsetup_lan.cc:61
4294+msgid "Join this game"
4295+msgstr ""
4296+
4297+#: ../../src/ui_fsmenu/internet_lobby.cc:86
4298+msgid "Open a new game"
4299+msgstr ""
4300+
4301+#: ../../src/ui_fsmenu/internet_lobby.cc:155
4302+#: ../../src/wui/building_statistics_menu.cc:110
4303+msgid "Name"
4304+msgstr ""
4305+
4306+#: ../../src/ui_fsmenu/internet_lobby.cc:156
4307+msgid "Points"
4308+msgstr ""
4309+
4310+#: ../../src/ui_fsmenu/internet_lobby.cc:157
4311+msgid "Game"
4312+msgstr ""
4313+
4314+#: ../../src/ui_fsmenu/internet_lobby.cc:380
4315+msgid "Connection timed out"
4316+msgstr ""
4317+
4318+#: ../../src/ui_fsmenu/internet_lobby.cc:383
4319 msgid ""
4320-"This map file is not present on your filesystem. Data shown here was sent by "
4321-"the server."
4322-msgstr ""
4323-
4324-#: ../../src/ui_fsmenu/multiplayer.cc:41
4325-msgid "Choose game type"
4326-msgstr ""
4327-
4328-#: ../../src/ui_fsmenu/multiplayer.cc:48
4329-msgid "Internet game"
4330-msgstr ""
4331-
4332-#: ../../src/ui_fsmenu/multiplayer.cc:53
4333-msgid "LAN / Direct IP"
4334-msgstr ""
4335-
4336-#: ../../src/ui_fsmenu/multiplayer.cc:84
4337-msgid "Show login dialog"
4338-msgstr ""
4339-
4340-#: ../../src/ui_fsmenu/multiplayer.cc:115
4341-#: ../../src/ui_fsmenu/netsetup_lan.cc:120 ../../src/wui/login_box.cc:74
4342-msgid "nobody"
4343-msgstr ""
4344-
4345-#: ../../src/ui_fsmenu/netsetup_lan.cc:42
4346-msgid "Begin Network Game"
4347-msgstr ""
4348-
4349-#: ../../src/ui_fsmenu/netsetup_lan.cc:46
4350-msgid "List of games in your local network:"
4351-msgstr ""
4352-
4353-#: ../../src/ui_fsmenu/netsetup_lan.cc:50
4354-msgid "Your nickname:"
4355-msgstr ""
4356-
4357-#: ../../src/ui_fsmenu/netsetup_lan.cc:54
4358-msgid "Host to connect:"
4359-msgstr ""
4360-
4361-#: ../../src/ui_fsmenu/netsetup_lan.cc:66
4362-msgid "Host a new game"
4363-msgstr ""
4364-
4365-#: ../../src/ui_fsmenu/netsetup_lan.cc:77
4366-msgid "Load previous host"
4367-msgstr ""
4368-
4369-#: ../../src/ui_fsmenu/netsetup_lan.cc:125
4370-msgid "Host"
4371-msgstr ""
4372-
4373-#: ../../src/ui_fsmenu/netsetup_lan.cc:127
4374-msgid "State"
4375-msgstr ""
4376-
4377-#: ../../src/ui_fsmenu/netsetup_lan.cc:196
4378-#: ../../src/wui/multiplayersetupgroup.cc:270
4379-#: ../../src/wui/playerdescrgroup.cc:157
4380-msgid "Open"
4381-msgstr ""
4382-
4383-#: ../../src/ui_fsmenu/netsetup_lan.cc:197
4384-#: ../../src/wui/multiplayersetupgroup.cc:259
4385-msgid "Closed"
4386+"Widelands has not been able to get the IP address of the server in time.\n"
4387+"There seems to be a network problem, either on your side or on the side\n"
4388+"of the server.\n"
4389+msgstr ""
4390+
4391+#: ../../src/ui_fsmenu/internet_lobby.cc:410
4392+#: ../../src/network/internet_gaming.cc:116
4393+msgid "Connection problem"
4394+msgstr ""
4395+
4396+#: ../../src/ui_fsmenu/internet_lobby.cc:411
4397+msgid "Widelands has not been able to connect to the host."
4398 msgstr ""
4399
4400 #: ../../src/ui_fsmenu/options.cc:51 ../../src/ui_fsmenu/options.cc:429
4401@@ -3449,7 +1531,7 @@
4402
4403 #: ../../src/ui_fsmenu/options.cc:265
4404 #, c-format
4405-msgid "%ix%i %i bit"
4406+msgid "%1$ix%2$i %3$i bit"
4407 msgstr ""
4408
4409 #: ../../src/ui_fsmenu/options.cc:287
4410@@ -3508,6 +1590,133 @@
4411 msgid "DejaVuSerif (Default)"
4412 msgstr ""
4413
4414+#: ../../src/ui_fsmenu/main.cc:40
4415+msgid "Play Tutorial"
4416+msgstr ""
4417+
4418+#: ../../src/ui_fsmenu/main.cc:45
4419+msgid "Single Player"
4420+msgstr ""
4421+
4422+#: ../../src/ui_fsmenu/main.cc:50
4423+msgid "Multi Player"
4424+msgstr ""
4425+
4426+#: ../../src/ui_fsmenu/main.cc:55
4427+msgid "Watch Replay"
4428+msgstr ""
4429+
4430+#: ../../src/ui_fsmenu/main.cc:60 ../../src/ui_fsmenu/editor.cc:36
4431+msgid "Editor"
4432+msgstr ""
4433+
4434+#: ../../src/ui_fsmenu/main.cc:65 ../../src/wui/interactive_player.cc:110
4435+#: ../../src/wui/interactive_spectator.cc:57
4436+#: ../../src/wui/game_options_menu.cc:46
4437+msgid "Options"
4438+msgstr ""
4439+
4440+#: ../../src/ui_fsmenu/main.cc:70
4441+#: ../../src/editor/ui_menus/editor_main_menu.cc:81
4442+msgid "View Readme"
4443+msgstr ""
4444+
4445+#: ../../src/ui_fsmenu/main.cc:75 ../../src/wui/game_options_menu.cc:62
4446+msgid "License"
4447+msgstr ""
4448+
4449+#: ../../src/ui_fsmenu/main.cc:80 ../../src/wui/game_options_menu.cc:93
4450+msgid "Exit Game"
4451+msgstr ""
4452+
4453+#: ../../src/ui_fsmenu/main.cc:86
4454+msgid "Version "
4455+msgstr ""
4456+
4457+#: ../../src/ui_fsmenu/main.cc:91
4458+msgid "by the Widelands Development Team"
4459+msgstr ""
4460+
4461+#: ../../src/ui_fsmenu/main.cc:96
4462+msgid "Licensed under the GNU General Public License V2.0"
4463+msgstr ""
4464+
4465+#: ../../src/ui_fsmenu/multiplayer.cc:41
4466+msgid "Choose game type"
4467+msgstr ""
4468+
4469+#: ../../src/ui_fsmenu/multiplayer.cc:48
4470+msgid "Internet game"
4471+msgstr ""
4472+
4473+#: ../../src/ui_fsmenu/multiplayer.cc:53
4474+msgid "LAN / Direct IP"
4475+msgstr ""
4476+
4477+#: ../../src/ui_fsmenu/multiplayer.cc:84
4478+msgid "Show login dialog"
4479+msgstr ""
4480+
4481+#: ../../src/ui_fsmenu/multiplayer.cc:115
4482+#: ../../src/ui_fsmenu/netsetup_lan.cc:120 ../../src/wui/login_box.cc:74
4483+msgid "nobody"
4484+msgstr ""
4485+
4486+#: ../../src/ui_fsmenu/editor.cc:43
4487+#: ../../src/editor/ui_menus/editor_main_menu_new_map.cc:46
4488+#: ../../src/editor/ui_menus/editor_main_menu.cc:56
4489+msgid "New Map"
4490+msgstr ""
4491+
4492+#: ../../src/ui_fsmenu/editor.cc:48
4493+#: ../../src/editor/ui_menus/editor_main_menu_load_map.cc:52
4494+#: ../../src/editor/ui_menus/editor_main_menu.cc:66
4495+msgid "Load Map"
4496+msgstr ""
4497+
4498+#: ../../src/ui_fsmenu/netsetup_lan.cc:42
4499+msgid "Begin Network Game"
4500+msgstr ""
4501+
4502+#: ../../src/ui_fsmenu/netsetup_lan.cc:46
4503+msgid "List of games in your local network:"
4504+msgstr ""
4505+
4506+#: ../../src/ui_fsmenu/netsetup_lan.cc:50
4507+msgid "Your nickname:"
4508+msgstr ""
4509+
4510+#: ../../src/ui_fsmenu/netsetup_lan.cc:54
4511+msgid "Host to connect:"
4512+msgstr ""
4513+
4514+#: ../../src/ui_fsmenu/netsetup_lan.cc:66
4515+msgid "Host a new game"
4516+msgstr ""
4517+
4518+#: ../../src/ui_fsmenu/netsetup_lan.cc:77
4519+msgid "Load previous host"
4520+msgstr ""
4521+
4522+#: ../../src/ui_fsmenu/netsetup_lan.cc:125
4523+msgid "Host"
4524+msgstr ""
4525+
4526+#: ../../src/ui_fsmenu/netsetup_lan.cc:127
4527+msgid "State"
4528+msgstr ""
4529+
4530+#: ../../src/ui_fsmenu/netsetup_lan.cc:196
4531+#: ../../src/wui/multiplayersetupgroup.cc:270
4532+#: ../../src/wui/playerdescrgroup.cc:157
4533+msgid "Open"
4534+msgstr ""
4535+
4536+#: ../../src/ui_fsmenu/netsetup_lan.cc:197
4537+#: ../../src/wui/multiplayersetupgroup.cc:259
4538+msgid "Closed"
4539+msgstr ""
4540+
4541 #: ../../src/ui_fsmenu/singleplayer.cc:40
4542 msgid "Single Player Menu"
4543 msgstr ""
4544@@ -3524,43 +1733,1092 @@
4545 msgid "Load Game"
4546 msgstr ""
4547
4548-#: ../../src/wui/actionconfirm.cc:223
4549-msgid "Destroy building?"
4550-msgstr ""
4551-
4552-#: ../../src/wui/actionconfirm.cc:224
4553-#, c-format
4554-msgid "Do you really want to destroy this %s?"
4555-msgstr ""
4556-
4557-#: ../../src/wui/actionconfirm.cc:288
4558-msgid "Dismantle building?"
4559-msgstr ""
4560-
4561-#: ../../src/wui/actionconfirm.cc:289
4562-#, c-format
4563-msgid "Do you really want to dismantle this %s?"
4564-msgstr ""
4565-
4566-#: ../../src/wui/actionconfirm.cc:349
4567-msgid "Enhance building?"
4568-msgstr ""
4569-
4570-#: ../../src/wui/actionconfirm.cc:350
4571-#, c-format
4572-msgid "Do you really want to enhance this %s?"
4573-msgstr ""
4574-
4575-#: ../../src/wui/actionconfirm.cc:402 ../../src/wui/actionconfirm.cc:443
4576-msgid "Sink the ship?"
4577-msgstr ""
4578-
4579-#: ../../src/wui/actionconfirm.cc:402
4580-msgid "Do you really want to sink this ship?"
4581-msgstr ""
4582-
4583-#: ../../src/wui/actionconfirm.cc:443
4584-msgid "Do you really want to cancel the active expedition?"
4585+#: ../../src/ui_fsmenu/campaign_select.cc:53
4586+msgid "Select a campaign"
4587+msgstr ""
4588+
4589+#: ../../src/ui_fsmenu/campaign_select.cc:55
4590+msgid "Campaign:"
4591+msgstr ""
4592+
4593+#: ../../src/ui_fsmenu/campaign_select.cc:59
4594+msgid "Difficulty:"
4595+msgstr ""
4596+
4597+#: ../../src/ui_fsmenu/campaign_select.cc:63
4598+#: ../../src/ui_fsmenu/campaign_select.cc:271
4599+msgid "Description:"
4600+msgstr ""
4601+
4602+#: ../../src/ui_fsmenu/campaign_select.cc:164
4603+#: ../../src/ui_fsmenu/campaign_select.cc:166
4604+#: ../../src/ui_fsmenu/campaign_select.cc:168
4605+#: ../../src/ui_fsmenu/campaign_select.cc:227
4606+#: ../../src/ui_fsmenu/campaign_select.cc:420
4607+msgid "[No value found]"
4608+msgstr ""
4609+
4610+#: ../../src/ui_fsmenu/campaign_select.cc:171
4611+msgid "[Invalid entry]"
4612+msgstr ""
4613+
4614+#: ../../src/ui_fsmenu/campaign_select.cc:359
4615+#, c-format
4616+msgid "Invalid path to file in cconfig: %s"
4617+msgstr ""
4618+
4619+#: ../../src/ui_fsmenu/loadgame.cc:84
4620+msgid "Choose saved game"
4621+msgstr ""
4622+
4623+#: ../../src/ui_fsmenu/loadgame.cc:106
4624+msgid "Minimap:"
4625+msgstr ""
4626+
4627+#: ../../src/ui_fsmenu/loadgame.cc:216
4628+msgid "Savegame from dedicated server"
4629+msgstr ""
4630+
4631+#: ../../src/ui_fsmenu/loadgame.cc:217
4632+msgid "Unknown gametime"
4633+msgstr ""
4634+
4635+#: ../../src/logic/battle.cc:173
4636+#, c-format
4637+msgid "[battle] soldier %u lose battle\n"
4638+msgstr ""
4639+
4640+#: ../../src/logic/battle.cc:177
4641+#, c-format
4642+msgid "[battle] waking up winner %d\n"
4643+msgstr ""
4644+
4645+#: ../../src/logic/constructionsite.cc:91
4646+#, c-format
4647+msgid "%1$i%% built"
4648+msgstr ""
4649+
4650+#: ../../src/logic/cmd_luacoroutine.cc:77
4651+#, c-format
4652+msgid "lua function: %s"
4653+msgstr ""
4654+
4655+#: ../../src/logic/ship.cc:437
4656+msgid "Port space found"
4657+msgstr ""
4658+
4659+#: ../../src/logic/ship.cc:438
4660+msgid "An expedition ship found a new port build space."
4661+msgstr ""
4662+
4663+#: ../../src/logic/ship.cc:545
4664+msgid "Island surrounded"
4665+msgstr ""
4666+
4667+#: ../../src/logic/ship.cc:546
4668+msgid "An expedition ship surrounded its island without any events."
4669+msgstr ""
4670+
4671+#: ../../src/logic/ship.cc:598
4672+msgid "Coast reached"
4673+msgstr ""
4674+
4675+#: ../../src/logic/ship.cc:600
4676+msgid "An expedition ship reached a coast and is waiting for further commands."
4677+msgstr ""
4678+
4679+#: ../../src/logic/ship.cc:764
4680+msgid "Expedition ready"
4681+msgstr ""
4682+
4683+#: ../../src/logic/ship.cc:765
4684+msgid "An expedition ship is waiting for your commands."
4685+msgstr ""
4686+
4687+#: ../../src/logic/ship.cc:1047
4688+#, c-format
4689+msgid "loading ship: %s"
4690+msgstr ""
4691+
4692+#: ../../src/logic/worker.cc:110
4693+#, c-format
4694+msgid ""
4695+"should mine resource %s, which does not exist in world; tribe is not "
4696+"compatible with world"
4697+msgstr ""
4698+
4699+#: ../../src/logic/worker.cc:215
4700+#, c-format
4701+msgid ""
4702+"should breed resource type %s, which does not exist in world; tribe is not "
4703+"compatible with world"
4704+msgstr ""
4705+
4706+#: ../../src/logic/worker.cc:606
4707+#, c-format
4708+msgid "Out of %s"
4709+msgstr ""
4710+
4711+#: ../../src/logic/worker.cc:609
4712+msgid ""
4713+"The worker of this building cannot find any more resources of the following "
4714+"type: "
4715+msgstr ""
4716+
4717+#: ../../src/logic/worker.cc:957
4718+msgid "A geologist found resources."
4719+msgstr ""
4720+
4721+#: ../../src/logic/worker.cc:1871
4722+#, c-format
4723+msgid "Your %s can't find a way home and will likely die."
4724+msgstr ""
4725+
4726+#: ../../src/logic/worker.cc:1878
4727+msgid "Worker got lost!"
4728+msgstr ""
4729+
4730+#: ../../src/logic/worker.cc:3093
4731+#, c-format
4732+msgid "loading worker: %s"
4733+msgstr ""
4734+
4735+#: ../../src/logic/cmd_queue.cc:181
4736+#, c-format
4737+msgid "duetime (%1$i) < gametime (%2$i)"
4738+msgstr ""
4739+
4740+#: ../../src/logic/cmd_queue.cc:186
4741+#, c-format
4742+msgid "game logic: %s"
4743+msgstr ""
4744+
4745+#: ../../src/logic/editor_game_base.cc:276
4746+#: ../../src/editor/editorinteractive.cc:203
4747+msgid "Loading world data"
4748+msgstr ""
4749+
4750+#: ../../src/logic/editor_game_base.cc:283
4751+msgid "Loading tribes"
4752+msgstr ""
4753+
4754+#: ../../src/logic/world.cc:628
4755+#, c-format
4756+msgid "%s: too many terrain types, can not be more than 16"
4757+msgstr ""
4758+
4759+#: ../../src/logic/tribe.cc:133
4760+msgid "constructionsite type \"constructionsite\" is missing"
4761+msgstr ""
4762+
4763+#: ../../src/logic/tribe.cc:142
4764+msgid "dismantlesite type \"distmantlesite\" is missing"
4765+msgstr ""
4766+
4767+#: ../../src/logic/tribe.cc:259 ../../src/logic/tribe.cc:280
4768+#, c-format
4769+msgid "\"%s\" is duplicated"
4770+msgstr ""
4771+
4772+#: ../../src/logic/tribe.cc:268 ../../src/logic/tribe.cc:289
4773+msgid "none found"
4774+msgstr ""
4775+
4776+#: ../../src/logic/tribe.cc:270
4777+#, c-format
4778+msgid "frontier styles: %s"
4779+msgstr ""
4780+
4781+#: ../../src/logic/tribe.cc:291
4782+#, c-format
4783+msgid "flag styles: %s"
4784+msgstr ""
4785+
4786+#: ../../src/logic/tribe.cc:334
4787+#, c-format
4788+msgid "tribe %1$s: %2$s"
4789+msgstr ""
4790+
4791+#: ../../src/logic/building.cc:539
4792+msgid "mine"
4793+msgstr ""
4794+
4795+#: ../../src/logic/building.cc:540
4796+#: ../../src/editor/tools/editor_info_tool.cc:60
4797+msgid "small"
4798+msgstr ""
4799+
4800+#: ../../src/logic/building.cc:541
4801+#: ../../src/editor/tools/editor_info_tool.cc:61
4802+msgid "medium"
4803+msgstr ""
4804+
4805+#: ../../src/logic/building.cc:541
4806+#: ../../src/editor/tools/editor_info_tool.cc:62
4807+msgid "big"
4808+msgstr ""
4809+
4810+#: ../../src/logic/building.cc:544
4811+msgid "Mine"
4812+msgstr ""
4813+
4814+#: ../../src/logic/building.cc:545
4815+msgid "Small"
4816+msgstr ""
4817+
4818+#: ../../src/logic/building.cc:546
4819+#: ../../src/editor/ui_menus/editor_main_menu_random_map.cc:255
4820+msgid "Medium"
4821+msgstr ""
4822+
4823+#: ../../src/logic/building.cc:546
4824+msgid "Big"
4825+msgstr ""
4826+
4827+#: ../../src/logic/instances.cc:73
4828+#, c-format
4829+msgid "destroy map object: %s"
4830+msgstr ""
4831+
4832+#: ../../src/logic/instances.cc:122
4833+#, c-format
4834+msgid "object %1$u: %2$s"
4835+msgstr ""
4836+
4837+#: ../../src/logic/instances.cc:131
4838+#, c-format
4839+msgid "act: %s"
4840+msgstr ""
4841+
4842+#: ../../src/logic/military_data.cc:51 ../../src/logic/soldier.cc:70
4843+msgid "\"min-max\""
4844+msgstr ""
4845+
4846+#: ../../src/logic/military_data.cc:59
4847+msgid "positive integer <= 100"
4848+msgstr ""
4849+
4850+#: ../../src/logic/military_data.cc:63
4851+#, c-format
4852+msgid "expected positive integer >= %1$u <= 100 but found \"%2$s\""
4853+msgstr ""
4854+
4855+#: ../../src/logic/military_data.cc:75
4856+#, c-format
4857+msgid "expected positive integer >= %1$u <= %2$u but found \"%3$u\""
4858+msgstr ""
4859+
4860+#: ../../src/logic/game.cc:139
4861+msgid "Not set"
4862+msgstr ""
4863+
4864+#: ../../src/logic/game.cc:227
4865+msgid "Preloading a map"
4866+msgstr ""
4867+
4868+#: ../../src/logic/game.cc:234
4869+msgid "Loading a world"
4870+msgstr ""
4871+
4872+#: ../../src/logic/game.cc:240
4873+#, c-format
4874+msgid "Adding player %u"
4875+msgstr ""
4876+
4877+#: ../../src/logic/game.cc:254
4878+msgid "Loading a map"
4879+msgstr ""
4880+
4881+#: ../../src/logic/game.cc:283 ../../src/logic/game.cc:362
4882+#: ../../src/logic/game.cc:391
4883+msgid "Preloading map"
4884+msgstr ""
4885+
4886+#: ../../src/logic/game.cc:298
4887+msgid "Configuring players"
4888+msgstr ""
4889+
4890+#: ../../src/logic/game.cc:332
4891+msgid "Loading map"
4892+msgstr ""
4893+
4894+#: ../../src/logic/game.cc:478
4895+msgid "Creating player infrastructure"
4896+msgstr ""
4897+
4898+#: ../../src/logic/game.cc:491 ../../src/logic/player.cc:221
4899+msgid "Missing starting position"
4900+msgstr ""
4901+
4902+#: ../../src/logic/game.cc:493 ../../src/logic/player.cc:223
4903+#, c-format
4904+msgid ""
4905+"Widelands could not start the game, because player %u has no starting "
4906+"position.\n"
4907+"You can manually add a starting position with Widelands Editor, to fix this "
4908+"problem."
4909+msgstr ""
4910+
4911+#: ../../src/logic/cmd_luascript.cc:58
4912+#, c-format
4913+msgid "lua: %s"
4914+msgstr ""
4915+
4916+#: ../../src/logic/critter_bob.cc:389
4917+#, c-format
4918+msgid "loading critter: %s"
4919+msgstr ""
4920+
4921+#: ../../src/logic/map.cc:365
4922+msgid "Player 1"
4923+msgstr ""
4924+
4925+#: ../../src/logic/dismantlesite.cc:100
4926+#, c-format
4927+msgid "%u%% dismantled"
4928+msgstr ""
4929+
4930+#: ../../src/logic/requirements.cc:233
4931+#, c-format
4932+msgid ""
4933+"expected atrHP (%1$u), atrAttack (%2$u), atrDefense (%3$u), atrEvade (%4$u) "
4934+"or atrTotal (%5$u) but found unknown attribute value (%6$u)"
4935+msgstr ""
4936+
4937+#: ../../src/logic/immovable.cc:141 ../../src/logic/production_program.cc:1663
4938+#, c-format
4939+msgid "unknown command type \"%s\""
4940+msgstr ""
4941+
4942+#: ../../src/logic/immovable.cc:145
4943+msgid "no actions"
4944+msgstr ""
4945+
4946+#: ../../src/logic/immovable.cc:204 ../../src/logic/bob.cc:88
4947+#, c-format
4948+msgid "bad attribute \"%s\""
4949+msgstr ""
4950+
4951+#: ../../src/logic/immovable.cc:218
4952+msgid "this program has already been declared"
4953+msgstr ""
4954+
4955+#: ../../src/logic/immovable.cc:224
4956+#, c-format
4957+msgid "program %1$s: %2$s"
4958+msgstr ""
4959+
4960+#: ../../src/logic/immovable.cc:256 ../../src/logic/immovable.cc:271
4961+#, c-format
4962+msgid "expected 0 .. 255 but found %u"
4963+msgstr ""
4964+
4965+#: ../../src/logic/immovable.cc:258 ../../src/logic/immovable.cc:273
4966+msgid "duplicated"
4967+msgstr ""
4968+
4969+#: ../../src/logic/immovable.cc:276
4970+#, c-format
4971+msgid "[terrain affinity] \"%1$s\" (not in current world): %2$s"
4972+msgstr ""
4973+
4974+#: ../../src/logic/immovable.cc:312
4975+#, c-format
4976+msgid "immovable %1$s has no program \"%2$s\""
4977+msgstr ""
4978+
4979+#: ../../src/logic/immovable.cc:776
4980+#, c-format
4981+msgid "tribe %1$s does not define immovable type \"%2$s\""
4982+msgstr ""
4983+
4984+#: ../../src/logic/immovable.cc:779
4985+#, c-format
4986+msgid "unknown tribe %s"
4987+msgstr ""
4988+
4989+#: ../../src/logic/immovable.cc:785
4990+#, c-format
4991+msgid "world does not define immovable type \"%s\""
4992+msgstr ""
4993+
4994+#: ../../src/logic/immovable.cc:795
4995+#, c-format
4996+msgid "immovable type %s"
4997+msgstr ""
4998+
4999+#: ../../src/logic/immovable.cc:829 ../../src/logic/production_program.cc:673
5000+#: ../../src/logic/production_program.cc:747
The diff has been truncated for viewing.

Subscribers

People subscribed via source and target branches

to status/vote changes: