[Commits] [wesnoth/wesnoth] 6e0886: respect CMAKE_MODULE_PATH provided by user
GitHub
noreply at github.com
Tue May 3 16:01:31 UTC 2016
Branch: refs/heads/asio_wesnothd
Home: https://github.com/wesnoth/wesnoth
Commit: 6e0886434556975a4c51d04c1929f6823b835203
https://github.com/wesnoth/wesnoth/commit/6e0886434556975a4c51d04c1929f6823b835203
Author: Boris Nagaev <bnagaev at gmail.com>
Date: 2015-11-08 (Sun, 08 Nov 2015)
Changed paths:
M CMakeLists.txt
M doc/man/CMakeLists.txt
M doc/manual/CMakeLists.txt
Log Message:
-----------
respect CMAKE_MODULE_PATH provided by user
Cross-compiling to Windows with MXE [1] requires providing custom
CMAKE_MODULE_PATH variable for CMake:
$ cmake -DCMAKE_MODULE_PATH=/file/provided/by/mxe.cmake
As Wesnoth's CMakeLists.txt resets CMAKE_MODULE_PATH, the effect of
CMAKE_MODULE_PATH provided by MXE is disabled and the build fails
with linking errors [2].
This commit changes CMakeLists.txt to respect the value of
user provided CMAKE_MODULE_PATH, so both MXE and Wesnoth
customizations of CMake variables are applied.
[1] http://mxe.cc/
[2] https://gist.github.com/starius/abfb9033d92f21ef521d
Commit: a33414a79f3bc3f59019d9917ac2bcf2587c2185
https://github.com/wesnoth/wesnoth/commit/a33414a79f3bc3f59019d9917ac2bcf2587c2185
Author: Ryan Roden-Corrent <ryan at rcorre.net>
Date: 2016-04-05 (Tue, 05 Apr 2016)
Changed paths:
M src/controller_base.hpp
Log Message:
-----------
Correct doc reference to nonexistent function
is_keyboard_scroll_active no longer exists, scrolling_ seems to be the
equivalent.
Commit: fa756088735d67395fc7dbe04f89890172bcecf6
https://github.com/wesnoth/wesnoth/commit/fa756088735d67395fc7dbe04f89890172bcecf6
Author: Ryan Roden-Corrent <ryan at rcorre.net>
Date: 2016-04-05 (Tue, 05 Apr 2016)
Changed paths:
M src/controller_base.cpp
M src/hotkey/command_executor.cpp
M src/hotkey/command_executor.hpp
M src/hotkey/hotkey_command.hpp
M src/hotkey/hotkey_handler.cpp
M src/hotkey/hotkey_handler.hpp
Log Message:
-----------
Implement hotkey release handling.
Hotkeys are now triggered by a key/button release as well as a press.
This information is passed along as HOTKEY_EVENT_TYPE, which may be
HOTKEY_EVENT_PRESS, HOTKEY_EVENT_RELEASE, or HOTKEY_EVENT_REPEAT (for a
held key repeat).
Currently this should preserve the previous functionality. Existing
hotkeys respond to a press or repeat as they did before and ignore a
release.
Commit: 0a05828da38658a31d29be9d6196480a1cd95e96
https://github.com/wesnoth/wesnoth/commit/0a05828da38658a31d29be9d6196480a1cd95e96
Author: Ryan Roden-Corrent <ryan at rcorre.net>
Date: 2016-04-05 (Tue, 05 Apr 2016)
Changed paths:
M src/controller_base.cpp
M src/controller_base.hpp
M src/hotkey/command_executor.cpp
M src/hotkey/command_executor.hpp
M src/hotkey/hotkey_command.cpp
M src/hotkey/hotkey_command.hpp
M src/hotkey/hotkey_handler.cpp
M src/hotkey/hotkey_handler.hpp
Log Message:
-----------
Implement map scrolling with hotkeys.
This leverages the new hotkey release support to implement scrolling
with hotkeys rather than keyboard polling.
This allows users to rebind the scroll keys in the hotkey menu.
Previously they were fixed to the arrow keys.
Commit: f4d2b24a3f9346a02991728c8ba6a6f52a3d8eb0
https://github.com/wesnoth/wesnoth/commit/f4d2b24a3f9346a02991728c8ba6a6f52a3d8eb0
Author: Ryan Roden-Corrent <ryan at rcorre.net>
Date: 2016-04-05 (Tue, 05 Apr 2016)
Changed paths:
M src/controller_base.cpp
M src/hotkey/command_executor.cpp
Log Message:
-----------
Add braces to single-line ifs.
Code review feedback.
Commit: ae37341ab3b1a58840f4b80b05c2e4a1eb3c1a66
https://github.com/wesnoth/wesnoth/commit/ae37341ab3b1a58840f4b80b05c2e4a1eb3c1a66
Author: Ryan Roden-Corrent <ryan at rcorre.net>
Date: 2016-04-05 (Tue, 05 Apr 2016)
Changed paths:
M src/controller_base.cpp
M src/hotkey/command_executor.cpp
M src/hotkey/command_executor.hpp
M src/hotkey/hotkey_command.hpp
M src/hotkey/hotkey_handler.cpp
M src/hotkey/hotkey_handler.hpp
Log Message:
-----------
Remove specialized hotkey repeat handling.
Don't handle repeat events specially when triggering hotkeys.
Replace the HOTKEY_EVENT_TYPE enum with a bool indicating whether the
event was a press or a release.
Scrolling handles repeats by clamping the scroll between -1 and 1 so
repeat events don't accelerate the scroll speed.
Commit: 419bf799acfe65ef23585d623246b632ebd17592
https://github.com/wesnoth/wesnoth/commit/419bf799acfe65ef23585d623246b632ebd17592
Author: Ryan Roden-Corrent <ryan at rcorre.net>
Date: 2016-04-05 (Tue, 05 Apr 2016)
Changed paths:
M src/editor/controller/editor_controller.cpp
M src/editor/controller/editor_controller.hpp
Log Message:
-----------
Handle scrolling hotkeys in editor.
Commit: a58e595705248cb67e4a703d4cab8f72bf821fe4
https://github.com/wesnoth/wesnoth/commit/a58e595705248cb67e4a703d4cab8f72bf821fe4
Author: Ryan Roden-Corrent <ryan at rcorre.net>
Date: 2016-04-05 (Tue, 05 Apr 2016)
Changed paths:
M data/core/hotkeys.cfg
Log Message:
-----------
Add default hotkeys for map scrolling
Commit: 4e3d6163360f6ec532436e96e81d37b2c3c200cf
https://github.com/wesnoth/wesnoth/commit/4e3d6163360f6ec532436e96e81d37b2c3c200cf
Author: Ryan Roden-Corrent <ryan at rcorre.net>
Date: 2016-04-05 (Tue, 05 Apr 2016)
Changed paths:
M src/controller_base.cpp
M src/controller_base.hpp
M src/editor/controller/editor_controller.cpp
M src/hotkey/hotkey_handler.cpp
Log Message:
-----------
Rename controller_base::keyboard_scroll.
Rename to controller_base::apply_keyboard_scroll to avoid confusion
with hotkey_handler::keyboard_scroll.
keyboard_scroll handles the hotkey press and invokes
apply_keyboard_scroll on the controller.
Commit: 355b8ce1b81a84ad0d1a11aac3830f87b1f8381a
https://github.com/wesnoth/wesnoth/commit/355b8ce1b81a84ad0d1a11aac3830f87b1f8381a
Author: Ryan Roden-Corrent <ryan at rcorre.net>
Date: 2016-04-05 (Tue, 05 Apr 2016)
Changed paths:
M src/hotkey/command_executor.cpp
Log Message:
-----------
Restore cycle_units/cycle_back_units hotkeys.
These were accidentally removed while implementing scroll hotkeys.
Commit: 94e390c067a3535e0a7294e3de3335f16fa2b9f9
https://github.com/wesnoth/wesnoth/commit/94e390c067a3535e0a7294e3de3335f16fa2b9f9
Author: Ryan Roden-Corrent <ryan at rcorre.net>
Date: 2016-04-05 (Tue, 05 Apr 2016)
Changed paths:
M src/controller_base.cpp
M src/controller_base.hpp
M src/editor/controller/editor_controller.cpp
M src/editor/controller/editor_controller.hpp
M src/hotkey/command_executor.cpp
M src/hotkey/command_executor.hpp
M src/hotkey/hotkey_handler.cpp
M src/hotkey/hotkey_handler.hpp
Log Message:
-----------
Gracefully handle multiple scrolling hotkeys.
Track whether each scroll direction is enabled separately.
This avoids odd behavior when holding multiple hotkeys for the same
scroll direction.
For example, holding two hotkeys for right and releasing both will no
longer cause the map to begin scrolling left.
Commit: e066075a04f0330effef37c5629754c4271d4640
https://github.com/wesnoth/wesnoth/commit/e066075a04f0330effef37c5629754c4271d4640
Author: Ryan Roden-Corrent <ryan at rcorre.net>
Date: 2016-04-05 (Tue, 05 Apr 2016)
Changed paths:
M src/controller_base.cpp
Log Message:
-----------
Cleanup: Replace spaces with tabs
Commit: fd8dfd585349b0c488529723cbba2aa9bc20baa7
https://github.com/wesnoth/wesnoth/commit/fd8dfd585349b0c488529723cbba2aa9bc20baa7
Author: Ryan Roden-Corrent <ryan at rcorre.net>
Date: 2016-04-06 (Wed, 06 Apr 2016)
Changed paths:
M changelog
M players_changelog
Log Message:
-----------
Changelog: hotkey release and scroll key binding.
Commit: 5aecbdbe83344b6e79b62374a79374f54c724710
https://github.com/wesnoth/wesnoth/commit/5aecbdbe83344b6e79b62374a79374f54c724710
Author: Ryan Roden-Corrent <ryan at rcorre.net>
Date: 2016-04-06 (Wed, 06 Apr 2016)
Changed paths:
M data/core/about.cfg
Log Message:
-----------
Add self (rcorre) to contributors
Commit: 717a762493ac92d5457ccd7bec9aa14aaaabf6d9
https://github.com/wesnoth/wesnoth/commit/717a762493ac92d5457ccd7bec9aa14aaaabf6d9
Author: Wedge009 <wedge009 at wedge009.net>
Date: 2016-04-07 (Thu, 07 Apr 2016)
Changed paths:
M data/core/about.cfg
Log Message:
-----------
Add self to en_GB translators.
Commit: 2d0721185fa5722859dc24007731054fb3f35885
https://github.com/wesnoth/wesnoth/commit/2d0721185fa5722859dc24007731054fb3f35885
Author: Charles Dang <exodia339 at gmail.com>
Date: 2016-04-08 (Fri, 08 Apr 2016)
Changed paths:
M src/actions/undo_action.cpp
Log Message:
-----------
Assigned some initial variable values to silence some warnings
Commit: 2b6442abc21dadf0655112c8288f6088bedb1626
https://github.com/wesnoth/wesnoth/commit/2b6442abc21dadf0655112c8288f6088bedb1626
Author: gfgtdf <f492343 at rmqkr.net>
Date: 2016-04-08 (Fri, 08 Apr 2016)
Changed paths:
M src/ai/actions.cpp
M src/whiteboard/manager.cpp
Log Message:
-----------
attempt to fix whitboard crash during ai turn.
https://gna.org/bugs/?22527
Commit: dfefb83ffd208c4b7a19eb173499c93e184d311f
https://github.com/wesnoth/wesnoth/commit/dfefb83ffd208c4b7a19eb173499c93e184d311f
Author: Charles Dang <exodia339 at gmail.com>
Date: 2016-04-08 (Fri, 08 Apr 2016)
Changed paths:
M data/gui/window/campaign_dialog.cfg
Log Message:
-----------
tcampaign_dialog: fix campaign names not being centered
Commit: 547bf2f1df2585968996fd38fb26d3539dde1f48
https://github.com/wesnoth/wesnoth/commit/547bf2f1df2585968996fd38fb26d3539dde1f48
Author: Charles Dang <exodia339 at gmail.com>
Date: 2016-04-08 (Fri, 08 Apr 2016)
Changed paths:
M images/misc/loadscreen_decor.png
Log Message:
-----------
Slight improvement to loadscreen decor
Commit: 9cc4834070ef22d985873995c6695dd32ac37b17
https://github.com/wesnoth/wesnoth/commit/9cc4834070ef22d985873995c6695dd32ac37b17
Author: Charles Dang <exodia339 at gmail.com>
Date: 2016-04-09 (Sat, 09 Apr 2016)
Changed paths:
M data/gui/macros/horizontal_scrollbar.cfg
M data/gui/widget/horizontal_scrollbar_default.cfg
M images/buttons/scrollbars/scrollhorizontal-active.png
M images/buttons/scrollbars/scrollhorizontal-pressed.png
M images/buttons/scrollbars/scrollhorizontal.png
M images/buttons/scrollbars/scrollleft-active.png
M images/buttons/scrollbars/scrollleft-pressed.png
M images/buttons/scrollbars/scrollleft.png
M images/buttons/scrollbars/scrollright-active.png
M images/buttons/scrollbars/scrollright-pressed.png
M images/buttons/scrollbars/scrollright.png
Log Message:
-----------
GUI2: converted horizontal scrollbars to new style
Commit: 692502f441cd80b8df8424c4cedc1d5f813a5946
https://github.com/wesnoth/wesnoth/commit/692502f441cd80b8df8424c4cedc1d5f813a5946
Author: Charles Dang <exodia339 at gmail.com>
Date: 2016-04-09 (Sat, 09 Apr 2016)
Changed paths:
R images/buttons/scrollbars/scrollgroove-bottom-minimal.png
R images/buttons/scrollbars/scrollgroove-bottom.png
R images/buttons/scrollbars/scrollgroove-horizontal.png
R images/buttons/scrollbars/scrollgroove-left.png
R images/buttons/scrollbars/scrollgroove-mid-minimal.png
R images/buttons/scrollbars/scrollgroove-mid.png
R images/buttons/scrollbars/scrollgroove-right.png
R images/buttons/scrollbars/scrollgroove-top-minimal.png
R images/buttons/scrollbars/scrollgroove-top.png
A images/buttons/scrollbars_large/scrollbottom-active.png
A images/buttons/scrollbars_large/scrollbottom-pressed.png
A images/buttons/scrollbars_large/scrollbottom.png
A images/buttons/scrollbars_large/scrollgroove-bottom.png
A images/buttons/scrollbars_large/scrollgroove-horizontal.png
A images/buttons/scrollbars_large/scrollgroove-left.png
A images/buttons/scrollbars_large/scrollgroove-mid.png
A images/buttons/scrollbars_large/scrollgroove-right.png
A images/buttons/scrollbars_large/scrollgroove-top.png
A images/buttons/scrollbars_large/scrollhorizontal-active.png
A images/buttons/scrollbars_large/scrollhorizontal-pressed.png
A images/buttons/scrollbars_large/scrollhorizontal.png
A images/buttons/scrollbars_large/scrollleft-active.png
A images/buttons/scrollbars_large/scrollleft-pressed.png
A images/buttons/scrollbars_large/scrollleft.png
A images/buttons/scrollbars_large/scrollmid-active.png
A images/buttons/scrollbars_large/scrollmid-pressed.png
A images/buttons/scrollbars_large/scrollmid.png
A images/buttons/scrollbars_large/scrollright-active.png
A images/buttons/scrollbars_large/scrollright-pressed.png
A images/buttons/scrollbars_large/scrollright.png
A images/buttons/scrollbars_large/scrolltop-active.png
A images/buttons/scrollbars_large/scrolltop-pressed.png
A images/buttons/scrollbars_large/scrolltop.png
M src/widgets/scrollbar.cpp
Log Message:
-----------
GUI1: fixed scrollbar layout
Re-adding the pre-GUI2 redesign scrollbar images so GUI1's scrollbars show correctly.
Commit: 57c6b11fc33deaa2b0234219cec8d9bd5b4f4551
https://github.com/wesnoth/wesnoth/commit/57c6b11fc33deaa2b0234219cec8d9bd5b4f4551
Author: Charles Dang <exodia339 at gmail.com>
Date: 2016-04-09 (Sat, 09 Apr 2016)
Changed paths:
M changelog
Log Message:
-----------
Updated changelog
Commit: 016861e6b539ba3c5852f7b68ebbbdc5b1c092f6
https://github.com/wesnoth/wesnoth/commit/016861e6b539ba3c5852f7b68ebbbdc5b1c092f6
Author: Charles Dang <exodia339 at gmail.com>
Date: 2016-04-09 (Sat, 09 Apr 2016)
Changed paths:
M changelog
Log Message:
-----------
Mentioned new Loadscreen
Commit: f507a42188122f6f2cc31c59a0693a269fee741f
https://github.com/wesnoth/wesnoth/commit/f507a42188122f6f2cc31c59a0693a269fee741f
Author: Charles Dang <exodia339 at gmail.com>
Date: 2016-04-09 (Sat, 09 Apr 2016)
Changed paths:
A images/icons/action/trash_25-active.png
A images/icons/action/trash_25-pressed.png
A images/icons/action/trash_25.png
Log Message:
-----------
Added Jetrel's trashcan icon set
Commit: 1702f10360d245d21443ab02c6c3a1efab9235b5
https://github.com/wesnoth/wesnoth/commit/1702f10360d245d21443ab02c6c3a1efab9235b5
Author: Charles Dang <exodia339 at gmail.com>
Date: 2016-04-10 (Sun, 10 Apr 2016)
Changed paths:
M data/gui/widget/button_default.cfg
Log Message:
-----------
tbutton: fix borders of disabled state buttons not being gray
Commit: 47bb358003efa3d19571ecd0970c1adfa3866d95
https://github.com/wesnoth/wesnoth/commit/47bb358003efa3d19571ecd0970c1adfa3866d95
Author: Charles Dang <exodia339 at gmail.com>
Date: 2016-04-10 (Sun, 10 Apr 2016)
Changed paths:
M data/gui/macros/_initial.cfg
Log Message:
-----------
GUI2: removed extra + 2 offset from GUI__TEXT_VERTICALLY_CENTRED
Commit: 25e8d4f07c0cb3e15e60d5570f01e6eddc62cd25
https://github.com/wesnoth/wesnoth/commit/25e8d4f07c0cb3e15e60d5570f01e6eddc62cd25
Author: Charles Dang <exodia339 at gmail.com>
Date: 2016-04-10 (Sun, 10 Apr 2016)
Changed paths:
M data/gui/window/lobby_main.cfg
Log Message:
-----------
tlobby_main: use large buttons for main controls
Commit: 344955e4c11a17dcb7237b0ecc4490cf97c2c3e4
https://github.com/wesnoth/wesnoth/commit/344955e4c11a17dcb7237b0ecc4490cf97c2c3e4
Author: Charles Dang <exodia339 at gmail.com>
Date: 2016-04-10 (Sun, 10 Apr 2016)
Changed paths:
M data/gui/macros/_initial.cfg
M data/gui/window/unit_attack.cfg
Log Message:
-----------
GUI2: added macro for vertical spacer line
Commit: 3bfc17a9e9bdb8f42f4b96ac948e191bf2589afc
https://github.com/wesnoth/wesnoth/commit/3bfc17a9e9bdb8f42f4b96ac948e191bf2589afc
Author: Charles Dang <exodia339 at gmail.com>
Date: 2016-04-10 (Sun, 10 Apr 2016)
Changed paths:
M data/gui/window/lobby_main.cfg
Log Message:
-----------
tlobby_main: fix misalignment of game listbox borders
Commit: f77b3d7a6fde05cceb3ac123d2eef38edb364b05
https://github.com/wesnoth/wesnoth/commit/f77b3d7a6fde05cceb3ac123d2eef38edb364b05
Author: Charles Dang <exodia339 at gmail.com>
Date: 2016-04-10 (Sun, 10 Apr 2016)
Changed paths:
M data/gui/window/lobby_main.cfg
Log Message:
-----------
tlobby_main: improved formula for game listbox min height
Commit: 94fc73fcde2f5138e814789b0408fc105186dd12
https://github.com/wesnoth/wesnoth/commit/94fc73fcde2f5138e814789b0408fc105186dd12
Author: Andreas <andreas at alternating.net>
Date: 2016-04-10 (Sun, 10 Apr 2016)
Changed paths:
M CMakeLists.txt
M doc/man/CMakeLists.txt
M doc/manual/CMakeLists.txt
Log Message:
-----------
Merge pull request #551 from starius/respect-user-cmake-module-path
respect CMAKE_MODULE_PATH provided by user
Commit: 53f1b5a170851a18ef8d7023324f05814ab65371
https://github.com/wesnoth/wesnoth/commit/53f1b5a170851a18ef8d7023324f05814ab65371
Author: Charles Dang <exodia339 at gmail.com>
Date: 2016-04-11 (Mon, 11 Apr 2016)
Changed paths:
M changelog
M images/cursors/attack.png
M images/cursors/attack_drag.png
M images/cursors/move.png
M images/cursors/move_drag.png
M images/cursors/normal.png
M images/cursors/select-illegal.png
M images/cursors/select-location.png
M images/cursors/select.png
M images/cursors/wait.png
Log Message:
-----------
New Color cursor graphics by LordBob
Commit: cdf6f4a6f881a4c9ad2a913859d57dfbdc116369
https://github.com/wesnoth/wesnoth/commit/cdf6f4a6f881a4c9ad2a913859d57dfbdc116369
Author: Celtic Minstrel <CelticMinstrel at users.noreply.github.com>
Date: 2016-04-11 (Mon, 11 Apr 2016)
Changed paths:
M changelog
M data/core/about.cfg
M data/core/hotkeys.cfg
M players_changelog
M src/controller_base.cpp
M src/controller_base.hpp
M src/editor/controller/editor_controller.cpp
M src/editor/controller/editor_controller.hpp
M src/hotkey/command_executor.cpp
M src/hotkey/command_executor.hpp
M src/hotkey/hotkey_command.cpp
M src/hotkey/hotkey_command.hpp
M src/hotkey/hotkey_handler.cpp
M src/hotkey/hotkey_handler.hpp
Log Message:
-----------
Merge pull request #631 from rcorre/wasd_scrolling
Add preference for WASD scrolling.
Commit: 37deb40b9b32d5f41d4825ed511ac55095caf676
https://github.com/wesnoth/wesnoth/commit/37deb40b9b32d5f41d4825ed511ac55095caf676
Author: ln-zookeeper <lari.nieminen at iki.fi>
Date: 2016-04-11 (Mon, 11 Apr 2016)
Changed paths:
M src/server/server.cpp
Log Message:
-----------
Server-side fix to /adminmsg not working right
Commit: f84e8f4795c66d07e350f8211429a40d5ebf932b
https://github.com/wesnoth/wesnoth/commit/f84e8f4795c66d07e350f8211429a40d5ebf932b
Author: Dugy <jan.dugacek at gmail.com>
Date: 2016-04-11 (Mon, 11 Apr 2016)
Changed paths:
M data/core/macros/names.cfg
M src/CMakeLists.txt
M src/SConscript
M src/race.cpp
M src/race.hpp
A src/utils/context_free_grammar_generator.cpp
A src/utils/context_free_grammar_generator.hpp
Log Message:
-----------
Added a new way to generate unit names, using rules of a context-free grammar.
Commit: 9e35e4d83ee8cb80225f49f7b2518fc0b04049f6
https://github.com/wesnoth/wesnoth/commit/9e35e4d83ee8cb80225f49f7b2518fc0b04049f6
Author: Dugy <jan.dugacek at gmail.com>
Date: 2016-04-11 (Mon, 11 Apr 2016)
Changed paths:
M changelog
M data/core/about.cfg
Log Message:
-----------
Added credit and described the change in changelog
Commit: a9dbbe9c05165cffe8dac8f424392ecc5aab3049
https://github.com/wesnoth/wesnoth/commit/a9dbbe9c05165cffe8dac8f424392ecc5aab3049
Author: Celtic Minstrel <CelticMinstrel at users.noreply.github.com>
Date: 2016-04-11 (Mon, 11 Apr 2016)
Changed paths:
M changelog
M data/core/about.cfg
M data/core/macros/names.cfg
M src/CMakeLists.txt
M src/SConscript
M src/race.cpp
M src/race.hpp
A src/utils/context_free_grammar_generator.cpp
A src/utils/context_free_grammar_generator.hpp
Log Message:
-----------
Merge pull request #644 from Dugy/master
Unit name generator using context-free grammar
Commit: 7e5e3acc57241a5a53d2f215a22023f187b0fd24
https://github.com/wesnoth/wesnoth/commit/7e5e3acc57241a5a53d2f215a22023f187b0fd24
Author: sigurdfdragon <jjwcoat at gmail.com>
Date: 2016-04-13 (Wed, 13 Apr 2016)
Changed paths:
M data/campaigns/Heir_To_The_Throne/scenarios/10_Gryphon_Mountain.cfg
Log Message:
-----------
HttT S10: Clarify objectives.
Commit: 868084f6e7d40ee0c1fe4197805bc02d6ab3f805
https://github.com/wesnoth/wesnoth/commit/868084f6e7d40ee0c1fe4197805bc02d6ab3f805
Author: sigurdfdragon <jjwcoat at gmail.com>
Date: 2016-04-13 (Wed, 13 Apr 2016)
Changed paths:
M data/campaigns/Heir_To_The_Throne/scenarios/10_Gryphon_Mountain.cfg
Log Message:
-----------
HttT S10: Change image when eggs are captured.
Commit: 0b316b39a94fe786408b8d0ba7d30ffca0d2de0f
https://github.com/wesnoth/wesnoth/commit/0b316b39a94fe786408b8d0ba7d30ffca0d2de0f
Author: sigurdfdragon <jjwcoat at gmail.com>
Date: 2016-04-13 (Wed, 13 Apr 2016)
Changed paths:
M data/campaigns/Heir_To_The_Throne/scenarios/10_Gryphon_Mountain.cfg
Log Message:
-----------
HttT S10: Clean up side 3 status table entry.
Commit: d33e1f339d820c3031e02c986c36cde22d10580c
https://github.com/wesnoth/wesnoth/commit/d33e1f339d820c3031e02c986c36cde22d10580c
Author: Lari Nieminen <lari.nieminen at iki.fi>
Date: 2016-04-14 (Thu, 14 Apr 2016)
Changed paths:
M data/campaigns/Heir_To_The_Throne/scenarios/10_Gryphon_Mountain.cfg
Log Message:
-----------
Merge pull request #648 from sigurdfdragon/HttT_S10_Fixes
HttT s10 fixes
Commit: 3ad092aa2bcedf5d09449a66bbb647efa337ffcb
https://github.com/wesnoth/wesnoth/commit/3ad092aa2bcedf5d09449a66bbb647efa337ffcb
Author: Charles Dang <exodia339 at gmail.com>
Date: 2016-04-15 (Fri, 15 Apr 2016)
Changed paths:
A images/cursors/attack at 2x.png
A images/cursors/attack_drag at 2x.png
A images/cursors/move at 2x.png
A images/cursors/move_drag at 2x.png
A images/cursors/normal at 2x.png
A images/cursors/select-illegal at 2x.png
A images/cursors/select-location at 2x.png
A images/cursors/select at 2x.png
A images/cursors/wait at 2x.png
Log Message:
-----------
Hi-res colored cursors by LordBob
Commit: cdd1370276278fa6d89e03fce921de577db03765
https://github.com/wesnoth/wesnoth/commit/cdd1370276278fa6d89e03fce921de577db03765
Author: Charles Dang <exodia339 at gmail.com>
Date: 2016-04-15 (Fri, 15 Apr 2016)
Changed paths:
M projectfiles/CodeBlocks/wesnoth.cbp
Log Message:
-----------
Updated CB projectfile
Commit: 1649930113480c0fdf8e1e949445d4c9a9022265
https://github.com/wesnoth/wesnoth/commit/1649930113480c0fdf8e1e949445d4c9a9022265
Author: Celtic Minstrel <celtic.minstrel.ca at some.place>
Date: 2016-04-15 (Fri, 15 Apr 2016)
Changed paths:
M changelog
M projectfiles/Xcode/Wesnoth.xcodeproj/project.pbxproj
M src/CMakeLists.txt
M src/SConscript
M src/generators/default_map_generator_job.cpp
M src/generators/default_map_generator_job.hpp
M src/gui/dialogs/unit_create.hpp
M src/help/help_impl.cpp
M src/help/help_topic_generators.cpp
R src/race.cpp
R src/race.hpp
M src/scripting/game_lua_kernel.cpp
M src/scripting/lua_race.cpp
A src/units/race.cpp
A src/units/race.hpp
M src/units/types.hpp
M src/utils/context_free_grammar_generator.cpp
M src/utils/context_free_grammar_generator.hpp
A src/utils/markov_generator.cpp
A src/utils/markov_generator.hpp
A src/utils/name_generator.hpp
Log Message:
-----------
Lua API for the name generators
Commit: afb85a2000652e0bc16e8a825172c84bfc586d42
https://github.com/wesnoth/wesnoth/commit/afb85a2000652e0bc16e8a825172c84bfc586d42
Author: Celtic Minstrel <celtic.minstrel.ca at some.place>
Date: 2016-04-15 (Fri, 15 Apr 2016)
Changed paths:
M src/utils/context_free_grammar_generator.cpp
Log Message:
-----------
Context-free generator: Strip whitespace in nonterminals
This means that whitespace in the following positions is now ignored:
- At the beginning of a line
- Preceding the = or } character
- Following the { character
All other whitespace is still significant.
Commit: c50e941af76fef4869803f69e24348f4e64354bd
https://github.com/wesnoth/wesnoth/commit/c50e941af76fef4869803f69e24348f4e64354bd
Author: Celtic Minstrel <celtic.minstrel.ca at some.place>
Date: 2016-04-15 (Fri, 15 Apr 2016)
Changed paths:
M src/utils/context_free_grammar_generator.cpp
M src/utils/context_free_grammar_generator.hpp
Log Message:
-----------
Use a mutable field instead of const_cast
Commit: 6b8b83c90daf991421ff96021aa5709ecb39cbf0
https://github.com/wesnoth/wesnoth/commit/6b8b83c90daf991421ff96021aa5709ecb39cbf0
Author: Celtic Minstrel <celtic.minstrel.ca at some.place>
Date: 2016-04-15 (Fri, 15 Apr 2016)
Changed paths:
M data/core/macros/names.cfg
Log Message:
-----------
Female names grammar for the Khalifate
(Loosely based on a list of female Arabic names from behindthename.com)
Commit: 69feb7f3f49d4979aae06fd0ea31f81f5cc73d19
https://github.com/wesnoth/wesnoth/commit/69feb7f3f49d4979aae06fd0ea31f81f5cc73d19
Author: Celtic Minstrel <CelticMinstrel at users.noreply.github.com>
Date: 2016-04-15 (Fri, 15 Apr 2016)
Changed paths:
M changelog
M data/core/macros/names.cfg
M projectfiles/Xcode/Wesnoth.xcodeproj/project.pbxproj
M src/CMakeLists.txt
M src/SConscript
M src/generators/default_map_generator_job.cpp
M src/generators/default_map_generator_job.hpp
M src/gui/dialogs/unit_create.hpp
M src/help/help_impl.cpp
M src/help/help_topic_generators.cpp
R src/race.cpp
R src/race.hpp
M src/scripting/game_lua_kernel.cpp
M src/scripting/lua_race.cpp
A src/units/race.cpp
A src/units/race.hpp
M src/units/types.hpp
M src/utils/context_free_grammar_generator.cpp
M src/utils/context_free_grammar_generator.hpp
A src/utils/markov_generator.cpp
A src/utils/markov_generator.hpp
A src/utils/name_generator.hpp
Log Message:
-----------
Merge pull request #649 from CelticMinstrel/master
Name generator tweaks + Lua API
Commit: 7bcb4a587327876007b74fa0111e7ab52d652f96
https://github.com/wesnoth/wesnoth/commit/7bcb4a587327876007b74fa0111e7ab52d652f96
Author: ln-zookeeper <lari.nieminen at iki.fi>
Date: 2016-04-16 (Sat, 16 Apr 2016)
Changed paths:
M changelog
M data/core/images/portraits/ARTISTS
M data/core/images/portraits/merfolk/initiate.png
Log Message:
-----------
Updated generic portrait of Mermaid Initiate
By Tet and eyerouge, from https://forums.wesnoth.org/viewtopic.php?f=23&t=29715
Commit: 8e78bebb02081cee8b91bb701a56a44cdf02d8a3
https://github.com/wesnoth/wesnoth/commit/8e78bebb02081cee8b91bb701a56a44cdf02d8a3
Author: mattsc <mattsc000 at gmail.com>
Date: 2016-04-17 (Sun, 17 Apr 2016)
Changed paths:
M changelog
M src/ai/default/ca_move_to_targets.cpp
Log Message:
-----------
Fix the AI's move-to-targets CA ignoring tunnels
Commit: 6bc34aea7c1d367bd208cf733dafbded75ff14fd
https://github.com/wesnoth/wesnoth/commit/6bc34aea7c1d367bd208cf733dafbded75ff14fd
Author: ln-zookeeper <lari.nieminen at iki.fi>
Date: 2016-04-18 (Mon, 18 Apr 2016)
Changed paths:
A data/campaigns/Under_the_Burning_Suns/images/units/nagas/hunter-attack-melee-1.png
A data/campaigns/Under_the_Burning_Suns/images/units/nagas/hunter-attack-melee-2.png
A data/campaigns/Under_the_Burning_Suns/images/units/nagas/hunter-attack-melee-3.png
A data/campaigns/Under_the_Burning_Suns/images/units/nagas/hunter-attack-melee-4.png
A data/campaigns/Under_the_Burning_Suns/images/units/nagas/hunter-defend.png
A data/campaigns/Under_the_Burning_Suns/images/units/nagas/hunter-melee-defend.png
M data/campaigns/Under_the_Burning_Suns/units/nagas/Naga_Hunter.cfg
Log Message:
-----------
Added melee and defend animations for Naga Hunter
Commit: 20f67bf4a0c5a3849d6fe862fb13a5e48e6a998c
https://github.com/wesnoth/wesnoth/commit/20f67bf4a0c5a3849d6fe862fb13a5e48e6a998c
Author: Ignacio R. Morelle <shadowm at wesnoth.org>
Date: 2016-04-18 (Mon, 18 Apr 2016)
Changed paths:
M src/CMakeLists.txt
Log Message:
-----------
cmake: Disable -Wno-old-style-cast on Lua unit tests
Otherwise strict compilation fails due to code using macros such as
lua_number2int() which contain C-style casts.
Commit: 8d290fc5b7c661a0d414e9225e92cc52ad567946
https://github.com/wesnoth/wesnoth/commit/8d290fc5b7c661a0d414e9225e92cc52ad567946
Author: Ignacio R. Morelle <shadowm at wesnoth.org>
Date: 2016-04-18 (Mon, 18 Apr 2016)
Changed paths:
M src/CMakeLists.txt
Log Message:
-----------
cmake: Fix linking issues with wesnoth and test targets
The GUI2 combobox widget code is linked into a separate .a library that
does not include one of its dependencies, gui2::tdrop_down_list. This
causes link order issues and renders the wesnoth and test targets
unlinkable with GCC 5.3.1 and binutils 2.26 at least.
Commit: 9b931a574c09c9f5ebd6c63d6b5c9ac83beea280
https://github.com/wesnoth/wesnoth/commit/9b931a574c09c9f5ebd6c63d6b5c9ac83beea280
Author: ln-zookeeper <lari.nieminen at iki.fi>
Date: 2016-04-20 (Wed, 20 Apr 2016)
Changed paths:
M data/campaigns/Heir_To_The_Throne/scenarios/19c_Cliffs_of_Thoria.cfg
Log Message:
-----------
Removed the red tents from top of drake villages
Commit: 9d95682b82552cb51780dd2790b301bae246b6be
https://github.com/wesnoth/wesnoth/commit/9d95682b82552cb51780dd2790b301bae246b6be
Author: ln-zookeeper <lari.nieminen at iki.fi>
Date: 2016-04-20 (Wed, 20 Apr 2016)
Changed paths:
M data/campaigns/Eastern_Invasion/scenarios/11_Captured.cfg
Log Message:
-----------
Made the scenario able to cope with lack of potential escapees
Commit: a58dee4daf91d82bdcf9b8f3297943b657bf2f57
https://github.com/wesnoth/wesnoth/commit/a58dee4daf91d82bdcf9b8f3297943b657bf2f57
Author: aquileia <sk.aquileia at gmail.com>
Date: 2016-04-20 (Wed, 20 Apr 2016)
Changed paths:
M .travis.yml
Log Message:
-----------
travis: Reorder before_install instructions
Commit: 23abf97f362cee0774700d8b3e256e2c6ff7bcc2
https://github.com/wesnoth/wesnoth/commit/23abf97f362cee0774700d8b3e256e2c6ff7bcc2
Author: aquileia <sk.aquileia at gmail.com>
Date: 2016-04-20 (Wed, 20 Apr 2016)
Changed paths:
M .travis.yml
Log Message:
-----------
travis: Add C++14 build with g++-5
For now, C++14 builds are allowed to fail.
Commit: 329fa031d922581b0706d31f28d759e76e9af90a
https://github.com/wesnoth/wesnoth/commit/329fa031d922581b0706d31f28d759e76e9af90a
Author: ln-zookeeper <lari.nieminen at iki.fi>
Date: 2016-04-20 (Wed, 20 Apr 2016)
Changed paths:
M data/campaigns/Son_Of_The_Black_Eye/scenarios/04_The_Siege_of_Barag_Gor.cfg
Log Message:
-----------
Scroll to show the city in the intro
Commit: 799695a04b1f5e88467d9475f9f4511c9a03aa85
https://github.com/wesnoth/wesnoth/commit/799695a04b1f5e88467d9475f9f4511c9a03aa85
Author: ln-zookeeper <lari.nieminen at iki.fi>
Date: 2016-04-20 (Wed, 20 Apr 2016)
Changed paths:
M data/campaigns/Son_Of_The_Black_Eye/scenarios/04_The_Siege_of_Barag_Gor.cfg
Log Message:
-----------
Allow side 3 to release Jetto
Commit: 1a542971e50040dea430fd1340f8d75781020768
https://github.com/wesnoth/wesnoth/commit/1a542971e50040dea430fd1340f8d75781020768
Author: gfgtdf <f492343 at rmqkr.net>
Date: 2016-04-21 (Thu, 21 Apr 2016)
Changed paths:
M src/gui/dialogs/loadscreen.cpp
M src/gui/dialogs/loadscreen.hpp
Log Message:
-----------
attempt to fix crashes during loadingscreen
currently it can happen that the game crashes during loadingscreen. The
reason is that loading scenn uses multiple threads, but t_string has a a
thread unsafe implementation that can cause crashes even when 2 threads
create 2 completeleey unrelated t_string objects.
This commit tries to fix this problem by removing all constructions of
t_string objects in the loadingscreen class to its constructor. Copy
constructors of t_string are still called, but afaik these doesn't cause
crashes liek this because they don't add new values in the t_string
hash_index registry,
Commit: 46b4faa44bb3c18bb24ea4870b2a92e326ca2a31
https://github.com/wesnoth/wesnoth/commit/46b4faa44bb3c18bb24ea4870b2a92e326ca2a31
Author: gfgtdf <f492343 at rmqkr.net>
Date: 2016-04-21 (Thu, 21 Apr 2016)
Changed paths:
M src/units/unit.cpp
M src/util.hpp
Log Message:
-----------
some code cleanups.
Commit: 3359961b0091c81592a891ef716d127f132b90d2
https://github.com/wesnoth/wesnoth/commit/3359961b0091c81592a891ef716d127f132b90d2
Author: Charles Dang <exodia339 at gmail.com>
Date: 2016-04-23 (Sat, 23 Apr 2016)
Changed paths:
M data/gui/widget/button_25x25.cfg
A images/icons/action/help_30-active.png
A images/icons/action/help_30-pressed.png
A images/icons/action/help_30.png
A images/icons/action/settings-active.png
A images/icons/action/settings-pressed.png
A images/icons/action/settings.png
A images/icons/addons/addon_install-active.png
A images/icons/addons/addon_install-pressed.png
A images/icons/addons/addon_install.png
A images/icons/addons/addon_uninstall-active.png
A images/icons/addons/addon_uninstall-pressed.png
A images/icons/addons/addon_uninstall.png
A images/icons/addons/addon_update-active.png
A images/icons/addons/addon_update-pressed.png
A images/icons/addons/addon_update.png
A images/icons/addons/install-active.png
A images/icons/addons/install-pressed.png
A images/icons/addons/install.png
A images/icons/addons/install2-active.png
A images/icons/addons/install2-pressed.png
A images/icons/addons/install2.png
A images/icons/addons/uninstall-active.png
A images/icons/addons/uninstall-pressed.png
A images/icons/addons/uninstall.png
A images/icons/addons/uninstall2-active.png
A images/icons/addons/uninstall2-pressed.png
A images/icons/addons/uninstall2.png
A images/icons/addons/update-active.png
A images/icons/addons/update-pressed.png
A images/icons/addons/update.png
A images/icons/addons/update2-active.png
A images/icons/addons/update2-pressed.png
A images/icons/addons/update2.png
Log Message:
-----------
Various new icon graphics by LordBob and button definitions using them
The 'help_30' icon is a Ariel question mark generated with the text tool
in Gimp and not drawn by LB.
Commit: a60d8d8daf0923deb652af7ffa741fe2b782c652
https://github.com/wesnoth/wesnoth/commit/a60d8d8daf0923deb652af7ffa741fe2b782c652
Author: Charles Dang <exodia339 at gmail.com>
Date: 2016-04-23 (Sat, 23 Apr 2016)
Changed paths:
M data/gui/window/addon_list.cfg
M src/gui/dialogs/addon/list.cpp
M src/gui/dialogs/addon/list.hpp
Log Message:
-----------
taddon_list: updated GUI2 addons manager layout
Commit: 0ffccf6f118c0da70e2ae21fabdb82cd4d2ae23e
https://github.com/wesnoth/wesnoth/commit/0ffccf6f118c0da70e2ae21fabdb82cd4d2ae23e
Author: Charles Dang <exodia339 at gmail.com>
Date: 2016-04-23 (Sat, 23 Apr 2016)
Changed paths:
M projectfiles/CodeBlocks/wesnoth.cbp
Log Message:
-----------
Updated CB projectfile
Commit: b681fa576ab151ea758b4ec91bd933f4f9106c43
https://github.com/wesnoth/wesnoth/commit/b681fa576ab151ea758b4ec91bd933f4f9106c43
Author: gfgtdf <f492343 at rmqkr.net>
Date: 2016-04-23 (Sat, 23 Apr 2016)
Changed paths:
M src/storyscreen/controller.cpp
M src/storyscreen/part.cpp
Log Message:
-----------
fix in_chat=yes/no in [wml_message]
Commit: 1cfa62ff56a1935030bec716568712a5b806dffd
https://github.com/wesnoth/wesnoth/commit/1cfa62ff56a1935030bec716568712a5b806dffd
Author: gfgtdf <f492343 at rmqkr.net>
Date: 2016-04-23 (Sat, 23 Apr 2016)
Changed paths:
M src/tstring.cpp
Log Message:
-----------
Attempt to fix crashes realted to multithreading and std::string
Currently t_string isn't threadsafe, of one thread executes a 't_string
a("a")' and another threads does 't_string b("b")' the progamm might
crash even of those object are completeley unrelated at first glance.
This commit tried to fix this by wrapping the acces to the shared
hash_map object in mutex locks, another attempt to fix this problem
might be to remove the shared hash_map implementation of t_string
completeley. Unfortunateley i don't know why it was implemented this
way in the first place so i don't know which disadvantages removing it
would have.
Commit: 0a809fde2c60f0818de3363da0260e1f0cf74c97
https://github.com/wesnoth/wesnoth/commit/0a809fde2c60f0818de3363da0260e1f0cf74c97
Author: Celtic Minstrel <CelticMinstrel at users.noreply.github.com>
Date: 2016-04-23 (Sat, 23 Apr 2016)
Changed paths:
M src/gui/dialogs/addon/list.cpp
Log Message:
-----------
Fix some Travis compile errors
Commit: dba586ce53dd744bf4fbe2ae8a8847bb5c1c2849
https://github.com/wesnoth/wesnoth/commit/dba586ce53dd744bf4fbe2ae8a8847bb5c1c2849
Author: ln-zookeeper <lari.nieminen at iki.fi>
Date: 2016-04-23 (Sat, 23 Apr 2016)
Changed paths:
M data/core/macros/abilities.cfg
Log Message:
-----------
Rewrote feeding's code to give units only one object, not one per kill
Commit: c4d2e72a12880366613c426c6415f5d6b5242831
https://github.com/wesnoth/wesnoth/commit/c4d2e72a12880366613c426c6415f5d6b5242831
Author: ln-zookeeper <lari.nieminen at iki.fi>
Date: 2016-04-24 (Sun, 24 Apr 2016)
Changed paths:
M data/core/units/monsters/Giant_Mudcrawler.cfg
M data/core/units/monsters/Giant_Rat.cfg
M data/core/units/monsters/Mudcrawler.cfg
M data/core/units/monsters/Sea_Serpent.cfg
M data/core/units/monsters/Tentacle.cfg
M data/core/units/monsters/Yeti.cfg
Log Message:
-----------
Updates to monster unit descriptions
>From https://forums.wesnoth.org/viewtopic.php?f=32&t=43721
Commit: 694fb9d36ecd5ff472797430238313843de1661f
https://github.com/wesnoth/wesnoth/commit/694fb9d36ecd5ff472797430238313843de1661f
Author: ln-zookeeper <lari.nieminen at iki.fi>
Date: 2016-04-25 (Mon, 25 Apr 2016)
Changed paths:
M data/core/units/monsters/Sea_Serpent.cfg
Log Message:
-----------
Fixed issues with Sea Serpent description pointed out by beetlenaut
Commit: 067b2a872f4f3dd046058ade04646fe01606d9e9
https://github.com/wesnoth/wesnoth/commit/067b2a872f4f3dd046058ade04646fe01606d9e9
Author: gfgtdf <tischpapier at gmail.com>
Date: 2016-04-25 (Mon, 25 Apr 2016)
Changed paths:
M src/units/unit.cpp
Log Message:
-----------
fix apply_to=variation/type
apply_to=variation/type should have no effect when object were reapplied for example at unit creation. This is also the 1.12 behaviour. This also prevents infinite recursion.
Commit: c876280a9515406528596de132d3b9626e22a0ba
https://github.com/wesnoth/wesnoth/commit/c876280a9515406528596de132d3b9626e22a0ba
Author: ln-zookeeper <lari.nieminen at iki.fi>
Date: 2016-04-27 (Wed, 27 Apr 2016)
Changed paths:
M data/core/units/monsters/Mudcrawler.cfg
M data/core/units/monsters/Yeti.cfg
Log Message:
-----------
Special character fixes
Commit: f4d714d690973479d8d508d3a51ecac341075d8f
https://github.com/wesnoth/wesnoth/commit/f4d714d690973479d8d508d3a51ecac341075d8f
Author: gfgtdf <daniel.gfgtdf at gmail.com>
Date: 2016-04-27 (Wed, 27 Apr 2016)
Changed paths:
R src/array.hpp
M src/attack_prediction.cpp
Log Message:
-----------
remove util::array
std::array or boost::array can be used instead.
Commit: 6c9cd2998e7fe5a11ab4fd461b0548d1767f29c6
https://github.com/wesnoth/wesnoth/commit/6c9cd2998e7fe5a11ab4fd461b0548d1767f29c6
Author: Celtic Minstrel <celtic.minstrel.ca at gmail.com>
Date: 2016-04-30 (Sat, 30 Apr 2016)
Changed paths:
M .gitignore
A projectfiles/VC12/README.md
A projectfiles/VC12/WML_tests.cmd
A projectfiles/VC12/WindowsTimeout.cpp
A projectfiles/VC12/WindowsTimeout.vcxproj
A projectfiles/VC12/files_with_deactivated_warnings.txt
A projectfiles/VC12/liblua.vcxproj
A projectfiles/VC12/liblua.vcxproj.filters
A projectfiles/VC12/schema_generator.vcxproj
A projectfiles/VC12/schema_generator.vcxproj.filters
A projectfiles/VC12/wesnoth.sln
A projectfiles/VC12/wesnoth.vcxproj
A projectfiles/VC12/wesnoth.vcxproj.filters
A projectfiles/VC12/wesnothd.vcxproj
A projectfiles/VC12/wesnothd.vcxproj.filters
A projectfiles/VC12/wesnothlib.vcxproj
A projectfiles/VC12/wesnothlib.vcxproj.filters
R projectfiles/VC9/README.md
R projectfiles/VC9/WML_tests.cmd
R projectfiles/VC9/WindowsTimeout.cpp
R projectfiles/VC9/WindowsTimeout.vcproj
R projectfiles/VC9/files_with_deactivated_warnings.txt
R projectfiles/VC9/liblua.vcproj
R projectfiles/VC9/schema_generator.vcproj
R projectfiles/VC9/wesnoth.sln
R projectfiles/VC9/wesnoth.vcproj
R projectfiles/VC9/wesnothd.vcproj
R projectfiles/VC9/wesnothlib.vcproj
Log Message:
-----------
Update MSVC project files to VC12 (2013)
Commit: 222eec7520bd9c863166b16b9208ccc06f8d7f11
https://github.com/wesnoth/wesnoth/commit/222eec7520bd9c863166b16b9208ccc06f8d7f11
Author: Nils Kneuper <crazy-ivanovic at gmx.net>
Date: 2016-04-30 (Sat, 30 Apr 2016)
Changed paths:
M changelog
M players_changelog
M po/wesnoth-ai/ja.po
M po/wesnoth-anl/ja.po
M po/wesnoth-aoi/ja.po
M po/wesnoth-did/ja.po
M po/wesnoth-dm/ja.po
M po/wesnoth-dw/ja.po
M po/wesnoth-editor/ja.po
M po/wesnoth-ei/ja.po
M po/wesnoth-help/ja.po
M po/wesnoth-httt/ja.po
M po/wesnoth-l/ja.po
M po/wesnoth-lib/ja.po
M po/wesnoth-low/ja.po
M po/wesnoth-manpages/ja.po
M po/wesnoth-manual/ja.po
M po/wesnoth-multiplayer/ja.po
M po/wesnoth-nr/ja.po
M po/wesnoth-sof/ja.po
M po/wesnoth-sotbe/ja.po
M po/wesnoth-tb/ja.po
M po/wesnoth-test/ja.po
M po/wesnoth-thot/ja.po
M po/wesnoth-trow/ja.po
M po/wesnoth-tsg/ja.po
M po/wesnoth-tutorial/ja.po
M po/wesnoth-units/ja.po
M po/wesnoth-utbs/ja.po
M po/wesnoth/ja.po
Log Message:
-----------
updated Japanese translation
Commit: 0ee7451a0001ecec8c55cb96fcf310e328e43d2f
https://github.com/wesnoth/wesnoth/commit/0ee7451a0001ecec8c55cb96fcf310e328e43d2f
Author: gfgtdf <daniel.gfgtdf at gmail.com>
Date: 2016-04-30 (Sat, 30 Apr 2016)
Changed paths:
M .gitignore
Log Message:
-----------
ignore all other msvc projectfiles than for vc12
Commit: 3c960aed0613d0e7852498ad7eb768f81abe67cd
https://github.com/wesnoth/wesnoth/commit/3c960aed0613d0e7852498ad7eb768f81abe67cd
Author: Wedge009 <wedge009 at wedge009.net>
Date: 2016-04-30 (Sat, 30 Apr 2016)
Changed paths:
M projectfiles/VC12/liblua.vcxproj
M projectfiles/VC12/liblua.vcxproj.filters
M projectfiles/VC12/wesnoth.vcxproj
M projectfiles/VC12/wesnoth.vcxproj.filters
Log Message:
-----------
Corrections to MSVC project files.
Commit: 149977e9e41da151c74dc333b117bbc8cdee2875
https://github.com/wesnoth/wesnoth/commit/149977e9e41da151c74dc333b117bbc8cdee2875
Author: loonycyborg <loonycyborg at gmail.com>
Date: 2016-04-30 (Sat, 30 Apr 2016)
Changed paths:
R doc/man/cs/wesnoth.6
R doc/man/en_GB/wesnoth.6
R doc/man/es/wesnoth.6
R doc/man/fr/wesnoth.6
R doc/man/gl/wesnoth.6
R doc/man/it/wesnoth.6
M doc/man/ja/wesnothd.6
R doc/man/pt/wesnoth.6
R doc/man/ru/wesnoth.6
R doc/man/sk/wesnoth.6
R doc/man/uk/wesnoth.6
R doc/man/vi/wesnoth.6
R doc/man/zh_CN/wesnoth.6
M doc/manual/manual.cs.html
M doc/manual/manual.de.html
M doc/manual/manual.en.html
M doc/manual/manual.en_GB.html
M doc/manual/manual.es.html
M doc/manual/manual.et.html
M doc/manual/manual.fi.html
M doc/manual/manual.fr.html
M doc/manual/manual.gl.html
M doc/manual/manual.hu.html
M doc/manual/manual.id.html
M doc/manual/manual.it.html
M doc/manual/manual.ja.html
M doc/manual/manual.pl.html
M doc/manual/manual.pt.html
M doc/manual/manual.pt_BR.html
M doc/manual/manual.ru.html
M doc/manual/manual.sk.html
M doc/manual/manual.sr.html
M doc/manual/manual.sr at ijekavian.html
M doc/manual/manual.sr at ijekavianlatin.html
M doc/manual/manual.sr at latin.html
M doc/manual/manual.uk.html
M doc/manual/manual.vi.html
M doc/manual/manual.zh_CN.html
M doc/manual/manual.zh_TW.html
M po/wesnoth-ai/af.po
M po/wesnoth-ai/ang.po
M po/wesnoth-ai/ang at latin.po
M po/wesnoth-ai/ar.po
M po/wesnoth-ai/ast.po
M po/wesnoth-ai/bg.po
M po/wesnoth-ai/ca.po
M po/wesnoth-ai/ca_ES at valencia.po
M po/wesnoth-ai/cs.po
M po/wesnoth-ai/da.po
M po/wesnoth-ai/de.po
M po/wesnoth-ai/el.po
M po/wesnoth-ai/en at shaw.po
M po/wesnoth-ai/en_GB.po
M po/wesnoth-ai/eo.po
M po/wesnoth-ai/es.po
M po/wesnoth-ai/et.po
M po/wesnoth-ai/eu.po
M po/wesnoth-ai/fi.po
M po/wesnoth-ai/fr.po
M po/wesnoth-ai/fur_IT.po
M po/wesnoth-ai/ga.po
M po/wesnoth-ai/gd.po
M po/wesnoth-ai/gl.po
M po/wesnoth-ai/he.po
M po/wesnoth-ai/hr.po
M po/wesnoth-ai/hu.po
M po/wesnoth-ai/id.po
M po/wesnoth-ai/is.po
M po/wesnoth-ai/it.po
M po/wesnoth-ai/ja.po
M po/wesnoth-ai/ko.po
M po/wesnoth-ai/la.po
M po/wesnoth-ai/lt.po
M po/wesnoth-ai/lv.po
M po/wesnoth-ai/mk.po
M po/wesnoth-ai/mr.po
M po/wesnoth-ai/nb_NO.po
M po/wesnoth-ai/nl.po
M po/wesnoth-ai/pl.po
M po/wesnoth-ai/pt.po
M po/wesnoth-ai/pt_BR.po
M po/wesnoth-ai/racv.po
M po/wesnoth-ai/ro.po
M po/wesnoth-ai/ru.po
M po/wesnoth-ai/sk.po
M po/wesnoth-ai/sl.po
M po/wesnoth-ai/sr.po
M po/wesnoth-ai/sr at ijekavian.po
M po/wesnoth-ai/sr at ijekavianlatin.po
M po/wesnoth-ai/sr at latin.po
M po/wesnoth-ai/sv.po
M po/wesnoth-ai/tl.po
M po/wesnoth-ai/tr.po
M po/wesnoth-ai/uk.po
M po/wesnoth-ai/vi.po
M po/wesnoth-ai/wesnoth-ai.pot
M po/wesnoth-ai/zh_CN.po
M po/wesnoth-ai/zh_TW.po
M po/wesnoth-anl/wesnoth-anl.pot
M po/wesnoth-aoi/af.po
M po/wesnoth-aoi/ang.po
M po/wesnoth-aoi/ang at latin.po
M po/wesnoth-aoi/ar.po
M po/wesnoth-aoi/ast.po
M po/wesnoth-aoi/bg.po
M po/wesnoth-aoi/ca.po
M po/wesnoth-aoi/ca_ES at valencia.po
M po/wesnoth-aoi/cs.po
M po/wesnoth-aoi/da.po
M po/wesnoth-aoi/de.po
M po/wesnoth-aoi/el.po
M po/wesnoth-aoi/en at shaw.po
M po/wesnoth-aoi/en_GB.po
M po/wesnoth-aoi/eo.po
M po/wesnoth-aoi/es.po
M po/wesnoth-aoi/et.po
M po/wesnoth-aoi/eu.po
M po/wesnoth-aoi/fi.po
M po/wesnoth-aoi/fr.po
M po/wesnoth-aoi/fur_IT.po
M po/wesnoth-aoi/ga.po
M po/wesnoth-aoi/gd.po
M po/wesnoth-aoi/gl.po
M po/wesnoth-aoi/he.po
M po/wesnoth-aoi/hr.po
M po/wesnoth-aoi/hu.po
M po/wesnoth-aoi/id.po
M po/wesnoth-aoi/is.po
M po/wesnoth-aoi/it.po
M po/wesnoth-aoi/ja.po
M po/wesnoth-aoi/ko.po
M po/wesnoth-aoi/la.po
M po/wesnoth-aoi/lt.po
M po/wesnoth-aoi/lv.po
M po/wesnoth-aoi/mk.po
M po/wesnoth-aoi/mr.po
M po/wesnoth-aoi/nb_NO.po
M po/wesnoth-aoi/nl.po
M po/wesnoth-aoi/pl.po
M po/wesnoth-aoi/pt.po
M po/wesnoth-aoi/pt_BR.po
M po/wesnoth-aoi/racv.po
M po/wesnoth-aoi/ro.po
M po/wesnoth-aoi/ru.po
M po/wesnoth-aoi/sk.po
M po/wesnoth-aoi/sl.po
M po/wesnoth-aoi/sr.po
M po/wesnoth-aoi/sr at ijekavian.po
M po/wesnoth-aoi/sr at ijekavianlatin.po
M po/wesnoth-aoi/sr at latin.po
M po/wesnoth-aoi/sv.po
M po/wesnoth-aoi/tl.po
M po/wesnoth-aoi/tr.po
M po/wesnoth-aoi/uk.po
M po/wesnoth-aoi/vi.po
M po/wesnoth-aoi/wesnoth-aoi.pot
M po/wesnoth-aoi/zh_CN.po
M po/wesnoth-aoi/zh_TW.po
M po/wesnoth-did/af.po
M po/wesnoth-did/ang.po
M po/wesnoth-did/ang at latin.po
M po/wesnoth-did/ar.po
M po/wesnoth-did/ast.po
M po/wesnoth-did/bg.po
M po/wesnoth-did/ca.po
M po/wesnoth-did/ca_ES at valencia.po
M po/wesnoth-did/cs.po
M po/wesnoth-did/da.po
M po/wesnoth-did/de.po
M po/wesnoth-did/el.po
M po/wesnoth-did/en at shaw.po
M po/wesnoth-did/en_GB.po
M po/wesnoth-did/eo.po
M po/wesnoth-did/es.po
M po/wesnoth-did/et.po
M po/wesnoth-did/eu.po
M po/wesnoth-did/fi.po
M po/wesnoth-did/fr.po
M po/wesnoth-did/fur_IT.po
M po/wesnoth-did/ga.po
M po/wesnoth-did/gd.po
M po/wesnoth-did/gl.po
M po/wesnoth-did/he.po
M po/wesnoth-did/hr.po
M po/wesnoth-did/hu.po
M po/wesnoth-did/id.po
M po/wesnoth-did/is.po
M po/wesnoth-did/it.po
M po/wesnoth-did/ja.po
M po/wesnoth-did/ko.po
M po/wesnoth-did/la.po
M po/wesnoth-did/lt.po
M po/wesnoth-did/lv.po
M po/wesnoth-did/mk.po
M po/wesnoth-did/mr.po
M po/wesnoth-did/nb_NO.po
M po/wesnoth-did/nl.po
M po/wesnoth-did/pl.po
M po/wesnoth-did/pt.po
M po/wesnoth-did/pt_BR.po
M po/wesnoth-did/racv.po
M po/wesnoth-did/ro.po
M po/wesnoth-did/ru.po
M po/wesnoth-did/sk.po
M po/wesnoth-did/sl.po
M po/wesnoth-did/sr.po
M po/wesnoth-did/sr at ijekavian.po
M po/wesnoth-did/sr at ijekavianlatin.po
M po/wesnoth-did/sr at latin.po
M po/wesnoth-did/sv.po
M po/wesnoth-did/tl.po
M po/wesnoth-did/tr.po
M po/wesnoth-did/uk.po
M po/wesnoth-did/vi.po
M po/wesnoth-did/wesnoth-did.pot
M po/wesnoth-did/zh_CN.po
M po/wesnoth-did/zh_TW.po
M po/wesnoth-dm/af.po
M po/wesnoth-dm/ang.po
M po/wesnoth-dm/ang at latin.po
M po/wesnoth-dm/ar.po
M po/wesnoth-dm/ast.po
M po/wesnoth-dm/bg.po
M po/wesnoth-dm/ca.po
M po/wesnoth-dm/ca_ES at valencia.po
M po/wesnoth-dm/cs.po
M po/wesnoth-dm/da.po
M po/wesnoth-dm/de.po
M po/wesnoth-dm/el.po
M po/wesnoth-dm/en at shaw.po
M po/wesnoth-dm/en_GB.po
M po/wesnoth-dm/eo.po
M po/wesnoth-dm/es.po
M po/wesnoth-dm/et.po
M po/wesnoth-dm/eu.po
M po/wesnoth-dm/fi.po
M po/wesnoth-dm/fr.po
M po/wesnoth-dm/fur_IT.po
M po/wesnoth-dm/ga.po
M po/wesnoth-dm/gd.po
M po/wesnoth-dm/gl.po
M po/wesnoth-dm/he.po
M po/wesnoth-dm/hr.po
M po/wesnoth-dm/hu.po
M po/wesnoth-dm/id.po
M po/wesnoth-dm/is.po
M po/wesnoth-dm/it.po
M po/wesnoth-dm/ja.po
M po/wesnoth-dm/ko.po
M po/wesnoth-dm/la.po
M po/wesnoth-dm/lt.po
M po/wesnoth-dm/lv.po
M po/wesnoth-dm/mk.po
M po/wesnoth-dm/mr.po
M po/wesnoth-dm/nb_NO.po
M po/wesnoth-dm/nl.po
M po/wesnoth-dm/pl.po
M po/wesnoth-dm/pt.po
M po/wesnoth-dm/pt_BR.po
M po/wesnoth-dm/racv.po
M po/wesnoth-dm/ro.po
M po/wesnoth-dm/ru.po
M po/wesnoth-dm/sk.po
M po/wesnoth-dm/sl.po
M po/wesnoth-dm/sr.po
M po/wesnoth-dm/sr at ijekavian.po
M po/wesnoth-dm/sr at ijekavianlatin.po
M po/wesnoth-dm/sr at latin.po
M po/wesnoth-dm/sv.po
M po/wesnoth-dm/tl.po
M po/wesnoth-dm/tr.po
M po/wesnoth-dm/uk.po
M po/wesnoth-dm/vi.po
M po/wesnoth-dm/wesnoth-dm.pot
M po/wesnoth-dm/zh_CN.po
M po/wesnoth-dm/zh_TW.po
M po/wesnoth-dw/af.po
M po/wesnoth-dw/ang.po
M po/wesnoth-dw/ang at latin.po
M po/wesnoth-dw/ar.po
M po/wesnoth-dw/ast.po
M po/wesnoth-dw/bg.po
M po/wesnoth-dw/ca.po
M po/wesnoth-dw/ca_ES at valencia.po
M po/wesnoth-dw/cs.po
M po/wesnoth-dw/da.po
M po/wesnoth-dw/de.po
M po/wesnoth-dw/el.po
M po/wesnoth-dw/en at shaw.po
M po/wesnoth-dw/en_GB.po
M po/wesnoth-dw/eo.po
M po/wesnoth-dw/es.po
M po/wesnoth-dw/et.po
M po/wesnoth-dw/eu.po
M po/wesnoth-dw/fi.po
M po/wesnoth-dw/fr.po
M po/wesnoth-dw/fur_IT.po
M po/wesnoth-dw/ga.po
M po/wesnoth-dw/gd.po
M po/wesnoth-dw/gl.po
M po/wesnoth-dw/he.po
M po/wesnoth-dw/hr.po
M po/wesnoth-dw/hu.po
M po/wesnoth-dw/id.po
M po/wesnoth-dw/is.po
M po/wesnoth-dw/it.po
M po/wesnoth-dw/ja.po
M po/wesnoth-dw/ko.po
M po/wesnoth-dw/la.po
M po/wesnoth-dw/lt.po
M po/wesnoth-dw/lv.po
M po/wesnoth-dw/mk.po
M po/wesnoth-dw/mr.po
M po/wesnoth-dw/nb_NO.po
M po/wesnoth-dw/nl.po
M po/wesnoth-dw/pl.po
M po/wesnoth-dw/pt.po
M po/wesnoth-dw/pt_BR.po
M po/wesnoth-dw/racv.po
M po/wesnoth-dw/ro.po
M po/wesnoth-dw/ru.po
M po/wesnoth-dw/sk.po
M po/wesnoth-dw/sl.po
M po/wesnoth-dw/sr.po
M po/wesnoth-dw/sr at ijekavian.po
M po/wesnoth-dw/sr at ijekavianlatin.po
M po/wesnoth-dw/sr at latin.po
M po/wesnoth-dw/sv.po
M po/wesnoth-dw/tl.po
M po/wesnoth-dw/tr.po
M po/wesnoth-dw/uk.po
M po/wesnoth-dw/vi.po
M po/wesnoth-dw/wesnoth-dw.pot
M po/wesnoth-dw/zh_CN.po
M po/wesnoth-dw/zh_TW.po
M po/wesnoth-editor/af.po
M po/wesnoth-editor/ang.po
M po/wesnoth-editor/ang at latin.po
M po/wesnoth-editor/ar.po
M po/wesnoth-editor/ast.po
M po/wesnoth-editor/bg.po
M po/wesnoth-editor/ca.po
M po/wesnoth-editor/ca_ES at valencia.po
M po/wesnoth-editor/cs.po
M po/wesnoth-editor/da.po
M po/wesnoth-editor/de.po
M po/wesnoth-editor/el.po
M po/wesnoth-editor/en at shaw.po
M po/wesnoth-editor/en_GB.po
M po/wesnoth-editor/eo.po
M po/wesnoth-editor/es.po
M po/wesnoth-editor/et.po
M po/wesnoth-editor/eu.po
M po/wesnoth-editor/fi.po
M po/wesnoth-editor/fr.po
M po/wesnoth-editor/fur_IT.po
M po/wesnoth-editor/ga.po
M po/wesnoth-editor/gd.po
M po/wesnoth-editor/gl.po
M po/wesnoth-editor/he.po
M po/wesnoth-editor/hr.po
M po/wesnoth-editor/hu.po
M po/wesnoth-editor/id.po
M po/wesnoth-editor/is.po
M po/wesnoth-editor/it.po
M po/wesnoth-editor/ja.po
M po/wesnoth-editor/ko.po
M po/wesnoth-editor/la.po
M po/wesnoth-editor/lt.po
M po/wesnoth-editor/lv.po
M po/wesnoth-editor/mk.po
M po/wesnoth-editor/mr.po
M po/wesnoth-editor/nb_NO.po
M po/wesnoth-editor/nl.po
M po/wesnoth-editor/pl.po
M po/wesnoth-editor/pt.po
M po/wesnoth-editor/pt_BR.po
M po/wesnoth-editor/racv.po
M po/wesnoth-editor/ro.po
M po/wesnoth-editor/ru.po
M po/wesnoth-editor/sk.po
M po/wesnoth-editor/sl.po
M po/wesnoth-editor/sr.po
M po/wesnoth-editor/sr at ijekavian.po
M po/wesnoth-editor/sr at ijekavianlatin.po
M po/wesnoth-editor/sr at latin.po
M po/wesnoth-editor/sv.po
M po/wesnoth-editor/tl.po
M po/wesnoth-editor/tr.po
M po/wesnoth-editor/uk.po
M po/wesnoth-editor/vi.po
M po/wesnoth-editor/wesnoth-editor.pot
M po/wesnoth-editor/zh_CN.po
M po/wesnoth-editor/zh_TW.po
M po/wesnoth-ei/af.po
M po/wesnoth-ei/ang.po
M po/wesnoth-ei/ang at latin.po
M po/wesnoth-ei/ar.po
M po/wesnoth-ei/ast.po
M po/wesnoth-ei/bg.po
M po/wesnoth-ei/ca.po
M po/wesnoth-ei/ca_ES at valencia.po
M po/wesnoth-ei/cs.po
M po/wesnoth-ei/da.po
M po/wesnoth-ei/de.po
M po/wesnoth-ei/el.po
M po/wesnoth-ei/en at shaw.po
M po/wesnoth-ei/en_GB.po
M po/wesnoth-ei/eo.po
M po/wesnoth-ei/es.po
M po/wesnoth-ei/et.po
M po/wesnoth-ei/eu.po
M po/wesnoth-ei/fi.po
M po/wesnoth-ei/fr.po
M po/wesnoth-ei/fur_IT.po
M po/wesnoth-ei/ga.po
M po/wesnoth-ei/gd.po
M po/wesnoth-ei/gl.po
M po/wesnoth-ei/he.po
M po/wesnoth-ei/hr.po
M po/wesnoth-ei/hu.po
M po/wesnoth-ei/id.po
M po/wesnoth-ei/is.po
M po/wesnoth-ei/it.po
M po/wesnoth-ei/ja.po
M po/wesnoth-ei/ko.po
M po/wesnoth-ei/la.po
M po/wesnoth-ei/lt.po
M po/wesnoth-ei/lv.po
M po/wesnoth-ei/mk.po
M po/wesnoth-ei/mr.po
M po/wesnoth-ei/nb_NO.po
M po/wesnoth-ei/nl.po
M po/wesnoth-ei/pl.po
M po/wesnoth-ei/pt.po
M po/wesnoth-ei/pt_BR.po
M po/wesnoth-ei/racv.po
M po/wesnoth-ei/ro.po
M po/wesnoth-ei/ru.po
M po/wesnoth-ei/sk.po
M po/wesnoth-ei/sl.po
M po/wesnoth-ei/sr.po
M po/wesnoth-ei/sr at ijekavian.po
M po/wesnoth-ei/sr at ijekavianlatin.po
M po/wesnoth-ei/sr at latin.po
M po/wesnoth-ei/sv.po
M po/wesnoth-ei/tl.po
M po/wesnoth-ei/tr.po
M po/wesnoth-ei/uk.po
M po/wesnoth-ei/vi.po
M po/wesnoth-ei/wesnoth-ei.pot
M po/wesnoth-ei/zh_CN.po
M po/wesnoth-ei/zh_TW.po
M po/wesnoth-help/af.po
M po/wesnoth-help/ang.po
M po/wesnoth-help/ang at latin.po
M po/wesnoth-help/ar.po
M po/wesnoth-help/ast.po
M po/wesnoth-help/bg.po
M po/wesnoth-help/ca.po
M po/wesnoth-help/ca_ES at valencia.po
M po/wesnoth-help/cs.po
M po/wesnoth-help/da.po
M po/wesnoth-help/de.po
M po/wesnoth-help/el.po
M po/wesnoth-help/en at shaw.po
M po/wesnoth-help/en_GB.po
M po/wesnoth-help/eo.po
M po/wesnoth-help/es.po
M po/wesnoth-help/et.po
M po/wesnoth-help/eu.po
M po/wesnoth-help/fi.po
M po/wesnoth-help/fr.po
M po/wesnoth-help/fur_IT.po
M po/wesnoth-help/ga.po
M po/wesnoth-help/gd.po
M po/wesnoth-help/gl.po
M po/wesnoth-help/he.po
M po/wesnoth-help/hr.po
M po/wesnoth-help/hu.po
M po/wesnoth-help/id.po
M po/wesnoth-help/is.po
M po/wesnoth-help/it.po
M po/wesnoth-help/ja.po
M po/wesnoth-help/ko.po
M po/wesnoth-help/la.po
M po/wesnoth-help/lt.po
M po/wesnoth-help/lv.po
M po/wesnoth-help/mk.po
M po/wesnoth-help/mr.po
M po/wesnoth-help/nb_NO.po
M po/wesnoth-help/nl.po
M po/wesnoth-help/pl.po
M po/wesnoth-help/pt.po
M po/wesnoth-help/pt_BR.po
M po/wesnoth-help/racv.po
M po/wesnoth-help/ro.po
M po/wesnoth-help/ru.po
M po/wesnoth-help/sk.po
M po/wesnoth-help/sl.po
M po/wesnoth-help/sr.po
M po/wesnoth-help/sr at ijekavian.po
M po/wesnoth-help/sr at ijekavianlatin.po
M po/wesnoth-help/sr at latin.po
M po/wesnoth-help/sv.po
M po/wesnoth-help/tl.po
M po/wesnoth-help/tr.po
M po/wesnoth-help/uk.po
M po/wesnoth-help/vi.po
M po/wesnoth-help/wesnoth-help.pot
M po/wesnoth-help/zh_CN.po
M po/wesnoth-help/zh_TW.po
M po/wesnoth-httt/af.po
M po/wesnoth-httt/ang.po
M po/wesnoth-httt/ang at latin.po
M po/wesnoth-httt/ar.po
M po/wesnoth-httt/ast.po
M po/wesnoth-httt/bg.po
M po/wesnoth-httt/ca.po
M po/wesnoth-httt/ca_ES at valencia.po
M po/wesnoth-httt/cs.po
M po/wesnoth-httt/da.po
M po/wesnoth-httt/de.po
M po/wesnoth-httt/el.po
M po/wesnoth-httt/en at shaw.po
M po/wesnoth-httt/en_GB.po
M po/wesnoth-httt/eo.po
M po/wesnoth-httt/es.po
M po/wesnoth-httt/et.po
M po/wesnoth-httt/eu.po
M po/wesnoth-httt/fi.po
M po/wesnoth-httt/fr.po
M po/wesnoth-httt/fur_IT.po
M po/wesnoth-httt/ga.po
M po/wesnoth-httt/gd.po
M po/wesnoth-httt/gl.po
M po/wesnoth-httt/he.po
M po/wesnoth-httt/hr.po
M po/wesnoth-httt/hu.po
M po/wesnoth-httt/id.po
M po/wesnoth-httt/is.po
M po/wesnoth-httt/it.po
M po/wesnoth-httt/ja.po
M po/wesnoth-httt/ko.po
M po/wesnoth-httt/la.po
M po/wesnoth-httt/lt.po
M po/wesnoth-httt/lv.po
M po/wesnoth-httt/mk.po
M po/wesnoth-httt/mr.po
M po/wesnoth-httt/nb_NO.po
M po/wesnoth-httt/nl.po
M po/wesnoth-httt/pl.po
M po/wesnoth-httt/pt.po
M po/wesnoth-httt/pt_BR.po
M po/wesnoth-httt/racv.po
M po/wesnoth-httt/ro.po
M po/wesnoth-httt/ru.po
M po/wesnoth-httt/sk.po
M po/wesnoth-httt/sl.po
M po/wesnoth-httt/sr.po
M po/wesnoth-httt/sr at ijekavian.po
M po/wesnoth-httt/sr at ijekavianlatin.po
M po/wesnoth-httt/sr at latin.po
M po/wesnoth-httt/sv.po
M po/wesnoth-httt/tl.po
M po/wesnoth-httt/tr.po
M po/wesnoth-httt/uk.po
M po/wesnoth-httt/vi.po
M po/wesnoth-httt/wesnoth-httt.pot
M po/wesnoth-httt/zh_CN.po
M po/wesnoth-httt/zh_TW.po
M po/wesnoth-l/wesnoth-l.pot
M po/wesnoth-lib/af.po
M po/wesnoth-lib/ang.po
M po/wesnoth-lib/ang at latin.po
M po/wesnoth-lib/ar.po
M po/wesnoth-lib/ast.po
M po/wesnoth-lib/bg.po
M po/wesnoth-lib/ca.po
M po/wesnoth-lib/ca_ES at valencia.po
M po/wesnoth-lib/cs.po
M po/wesnoth-lib/da.po
M po/wesnoth-lib/de.po
M po/wesnoth-lib/el.po
M po/wesnoth-lib/en at shaw.po
M po/wesnoth-lib/en_GB.po
M po/wesnoth-lib/eo.po
M po/wesnoth-lib/es.po
M po/wesnoth-lib/et.po
M po/wesnoth-lib/eu.po
M po/wesnoth-lib/fi.po
M po/wesnoth-lib/fr.po
M po/wesnoth-lib/fur_IT.po
M po/wesnoth-lib/ga.po
M po/wesnoth-lib/gd.po
M po/wesnoth-lib/gl.po
M po/wesnoth-lib/he.po
M po/wesnoth-lib/hr.po
M po/wesnoth-lib/hu.po
M po/wesnoth-lib/id.po
M po/wesnoth-lib/is.po
M po/wesnoth-lib/it.po
M po/wesnoth-lib/ja.po
M po/wesnoth-lib/ko.po
M po/wesnoth-lib/la.po
M po/wesnoth-lib/lt.po
M po/wesnoth-lib/lv.po
M po/wesnoth-lib/mk.po
M po/wesnoth-lib/mr.po
M po/wesnoth-lib/nb_NO.po
M po/wesnoth-lib/nl.po
M po/wesnoth-lib/pl.po
M po/wesnoth-lib/pt.po
M po/wesnoth-lib/pt_BR.po
M po/wesnoth-lib/racv.po
M po/wesnoth-lib/ro.po
M po/wesnoth-lib/ru.po
M po/wesnoth-lib/sk.po
M po/wesnoth-lib/sl.po
M po/wesnoth-lib/sr.po
M po/wesnoth-lib/sr at ijekavian.po
M po/wesnoth-lib/sr at ijekavianlatin.po
M po/wesnoth-lib/sr at latin.po
M po/wesnoth-lib/sv.po
M po/wesnoth-lib/tl.po
M po/wesnoth-lib/tr.po
M po/wesnoth-lib/uk.po
M po/wesnoth-lib/vi.po
M po/wesnoth-lib/wesnoth-lib.pot
M po/wesnoth-lib/zh_CN.po
M po/wesnoth-lib/zh_TW.po
M po/wesnoth-low/af.po
M po/wesnoth-low/ang.po
M po/wesnoth-low/ang at latin.po
M po/wesnoth-low/ar.po
M po/wesnoth-low/ast.po
M po/wesnoth-low/bg.po
M po/wesnoth-low/ca.po
M po/wesnoth-low/ca_ES at valencia.po
M po/wesnoth-low/cs.po
M po/wesnoth-low/da.po
M po/wesnoth-low/de.po
M po/wesnoth-low/el.po
M po/wesnoth-low/en at shaw.po
M po/wesnoth-low/en_GB.po
M po/wesnoth-low/eo.po
M po/wesnoth-low/es.po
M po/wesnoth-low/et.po
M po/wesnoth-low/eu.po
M po/wesnoth-low/fi.po
M po/wesnoth-low/fr.po
M po/wesnoth-low/fur_IT.po
M po/wesnoth-low/ga.po
M po/wesnoth-low/gd.po
M po/wesnoth-low/gl.po
M po/wesnoth-low/he.po
M po/wesnoth-low/hr.po
M po/wesnoth-low/hu.po
M po/wesnoth-low/id.po
M po/wesnoth-low/is.po
M po/wesnoth-low/it.po
M po/wesnoth-low/ja.po
M po/wesnoth-low/ko.po
M po/wesnoth-low/la.po
M po/wesnoth-low/lt.po
M po/wesnoth-low/lv.po
M po/wesnoth-low/mk.po
M po/wesnoth-low/mr.po
M po/wesnoth-low/nb_NO.po
M po/wesnoth-low/nl.po
M po/wesnoth-low/pl.po
M po/wesnoth-low/pt.po
M po/wesnoth-low/pt_BR.po
M po/wesnoth-low/racv.po
M po/wesnoth-low/ro.po
M po/wesnoth-low/ru.po
M po/wesnoth-low/sk.po
M po/wesnoth-low/sl.po
M po/wesnoth-low/sr.po
M po/wesnoth-low/sr at ijekavian.po
M po/wesnoth-low/sr at ijekavianlatin.po
M po/wesnoth-low/sr at latin.po
M po/wesnoth-low/sv.po
M po/wesnoth-low/tl.po
M po/wesnoth-low/tr.po
M po/wesnoth-low/uk.po
M po/wesnoth-low/vi.po
M po/wesnoth-low/wesnoth-low.pot
M po/wesnoth-low/zh_CN.po
M po/wesnoth-low/zh_TW.po
M po/wesnoth-manpages/af.po
M po/wesnoth-manpages/ang.po
M po/wesnoth-manpages/ang at latin.po
M po/wesnoth-manpages/ar.po
M po/wesnoth-manpages/ast.po
M po/wesnoth-manpages/bg.po
M po/wesnoth-manpages/ca.po
M po/wesnoth-manpages/ca_ES at valencia.po
M po/wesnoth-manpages/cs.po
M po/wesnoth-manpages/da.po
M po/wesnoth-manpages/de.po
M po/wesnoth-manpages/el.po
M po/wesnoth-manpages/en at shaw.po
M po/wesnoth-manpages/en_GB.po
M po/wesnoth-manpages/eo.po
M po/wesnoth-manpages/es.po
M po/wesnoth-manpages/et.po
M po/wesnoth-manpages/eu.po
M po/wesnoth-manpages/fi.po
M po/wesnoth-manpages/fr.po
M po/wesnoth-manpages/fur_IT.po
M po/wesnoth-manpages/ga.po
M po/wesnoth-manpages/gd.po
M po/wesnoth-manpages/gl.po
M po/wesnoth-manpages/he.po
M po/wesnoth-manpages/hr.po
M po/wesnoth-manpages/hu.po
M po/wesnoth-manpages/id.po
M po/wesnoth-manpages/is.po
M po/wesnoth-manpages/it.po
M po/wesnoth-manpages/ja.po
M po/wesnoth-manpages/ko.po
M po/wesnoth-manpages/la.po
M po/wesnoth-manpages/lt.po
M po/wesnoth-manpages/lv.po
M po/wesnoth-manpages/mk.po
M po/wesnoth-manpages/mr.po
M po/wesnoth-manpages/nb_NO.po
M po/wesnoth-manpages/nl.po
M po/wesnoth-manpages/pl.po
M po/wesnoth-manpages/pt.po
M po/wesnoth-manpages/pt_BR.po
M po/wesnoth-manpages/racv.po
M po/wesnoth-manpages/ro.po
M po/wesnoth-manpages/ru.po
M po/wesnoth-manpages/sk.po
M po/wesnoth-manpages/sl.po
M po/wesnoth-manpages/sr.po
M po/wesnoth-manpages/sr at ijekavian.po
M po/wesnoth-manpages/sr at ijekavianlatin.po
M po/wesnoth-manpages/sr at latin.po
M po/wesnoth-manpages/sv.po
M po/wesnoth-manpages/tl.po
M po/wesnoth-manpages/tr.po
M po/wesnoth-manpages/uk.po
M po/wesnoth-manpages/vi.po
M po/wesnoth-manpages/wesnoth-manpages.pot
M po/wesnoth-manpages/zh_CN.po
M po/wesnoth-manpages/zh_TW.po
M po/wesnoth-manual/af.po
M po/wesnoth-manual/ang.po
M po/wesnoth-manual/ang at latin.po
M po/wesnoth-manual/ar.po
M po/wesnoth-manual/ast.po
M po/wesnoth-manual/bg.po
M po/wesnoth-manual/ca.po
M po/wesnoth-manual/ca_ES at valencia.po
M po/wesnoth-manual/cs.po
M po/wesnoth-manual/da.po
M po/wesnoth-manual/de.po
M po/wesnoth-manual/el.po
M po/wesnoth-manual/en at shaw.po
M po/wesnoth-manual/en_GB.po
M po/wesnoth-manual/eo.po
M po/wesnoth-manual/es.po
M po/wesnoth-manual/et.po
M po/wesnoth-manual/eu.po
M po/wesnoth-manual/fi.po
M po/wesnoth-manual/fr.po
M po/wesnoth-manual/fur_IT.po
M po/wesnoth-manual/ga.po
M po/wesnoth-manual/gd.po
M po/wesnoth-manual/gl.po
M po/wesnoth-manual/he.po
M po/wesnoth-manual/hr.po
M po/wesnoth-manual/hu.po
M po/wesnoth-manual/id.po
M po/wesnoth-manual/is.po
M po/wesnoth-manual/it.po
M po/wesnoth-manual/ja.po
M po/wesnoth-manual/ko.po
M po/wesnoth-manual/la.po
M po/wesnoth-manual/lt.po
M po/wesnoth-manual/lv.po
M po/wesnoth-manual/mk.po
M po/wesnoth-manual/mr.po
M po/wesnoth-manual/nb_NO.po
M po/wesnoth-manual/nl.po
M po/wesnoth-manual/pl.po
M po/wesnoth-manual/pt.po
M po/wesnoth-manual/pt_BR.po
M po/wesnoth-manual/racv.po
M po/wesnoth-manual/ro.po
M po/wesnoth-manual/ru.po
M po/wesnoth-manual/sk.po
M po/wesnoth-manual/sl.po
M po/wesnoth-manual/sr.po
M po/wesnoth-manual/sr at ijekavian.po
M po/wesnoth-manual/sr at ijekavianlatin.po
M po/wesnoth-manual/sr at latin.po
M po/wesnoth-manual/sv.po
M po/wesnoth-manual/tl.po
M po/wesnoth-manual/tr.po
M po/wesnoth-manual/uk.po
M po/wesnoth-manual/vi.po
M po/wesnoth-manual/wesnoth-manual.pot
M po/wesnoth-manual/zh_CN.po
M po/wesnoth-manual/zh_TW.po
M po/wesnoth-multiplayer/af.po
M po/wesnoth-multiplayer/ang.po
M po/wesnoth-multiplayer/ang at latin.po
M po/wesnoth-multiplayer/ar.po
M po/wesnoth-multiplayer/ast.po
M po/wesnoth-multiplayer/bg.po
M po/wesnoth-multiplayer/ca.po
M po/wesnoth-multiplayer/ca_ES at valencia.po
M po/wesnoth-multiplayer/cs.po
M po/wesnoth-multiplayer/da.po
M po/wesnoth-multiplayer/de.po
M po/wesnoth-multiplayer/el.po
M po/wesnoth-multiplayer/en at shaw.po
M po/wesnoth-multiplayer/en_GB.po
M po/wesnoth-multiplayer/eo.po
M po/wesnoth-multiplayer/es.po
M po/wesnoth-multiplayer/et.po
M po/wesnoth-multiplayer/eu.po
M po/wesnoth-multiplayer/fi.po
M po/wesnoth-multiplayer/fr.po
M po/wesnoth-multiplayer/fur_IT.po
M po/wesnoth-multiplayer/ga.po
M po/wesnoth-multiplayer/gd.po
M po/wesnoth-multiplayer/gl.po
M po/wesnoth-multiplayer/he.po
M po/wesnoth-multiplayer/hr.po
M po/wesnoth-multiplayer/hu.po
M po/wesnoth-multiplayer/id.po
M po/wesnoth-multiplayer/is.po
M po/wesnoth-multiplayer/it.po
M po/wesnoth-multiplayer/ja.po
M po/wesnoth-multiplayer/ko.po
M po/wesnoth-multiplayer/la.po
M po/wesnoth-multiplayer/lt.po
M po/wesnoth-multiplayer/lv.po
M po/wesnoth-multiplayer/mk.po
M po/wesnoth-multiplayer/mr.po
M po/wesnoth-multiplayer/nb_NO.po
M po/wesnoth-multiplayer/nl.po
M po/wesnoth-multiplayer/pl.po
M po/wesnoth-multiplayer/pt.po
M po/wesnoth-multiplayer/pt_BR.po
M po/wesnoth-multiplayer/racv.po
M po/wesnoth-multiplayer/ro.po
M po/wesnoth-multiplayer/ru.po
M po/wesnoth-multiplayer/sk.po
M po/wesnoth-multiplayer/sl.po
M po/wesnoth-multiplayer/sr.po
M po/wesnoth-multiplayer/sr at ijekavian.po
M po/wesnoth-multiplayer/sr at ijekavianlatin.po
M po/wesnoth-multiplayer/sr at latin.po
M po/wesnoth-multiplayer/sv.po
M po/wesnoth-multiplayer/tl.po
M po/wesnoth-multiplayer/tr.po
M po/wesnoth-multiplayer/uk.po
M po/wesnoth-multiplayer/vi.po
M po/wesnoth-multiplayer/wesnoth-multiplayer.pot
M po/wesnoth-multiplayer/zh_CN.po
M po/wesnoth-multiplayer/zh_TW.po
M po/wesnoth-nr/af.po
M po/wesnoth-nr/ang.po
M po/wesnoth-nr/ang at latin.po
M po/wesnoth-nr/ar.po
M po/wesnoth-nr/ast.po
M po/wesnoth-nr/bg.po
M po/wesnoth-nr/ca.po
M po/wesnoth-nr/ca_ES at valencia.po
M po/wesnoth-nr/cs.po
M po/wesnoth-nr/da.po
M po/wesnoth-nr/de.po
M po/wesnoth-nr/el.po
M po/wesnoth-nr/en at shaw.po
M po/wesnoth-nr/en_GB.po
M po/wesnoth-nr/eo.po
M po/wesnoth-nr/es.po
M po/wesnoth-nr/et.po
M po/wesnoth-nr/eu.po
M po/wesnoth-nr/fi.po
M po/wesnoth-nr/fr.po
M po/wesnoth-nr/fur_IT.po
M po/wesnoth-nr/ga.po
M po/wesnoth-nr/gd.po
M po/wesnoth-nr/gl.po
M po/wesnoth-nr/he.po
M po/wesnoth-nr/hr.po
M po/wesnoth-nr/hu.po
M po/wesnoth-nr/id.po
M po/wesnoth-nr/is.po
M po/wesnoth-nr/it.po
M po/wesnoth-nr/ja.po
M po/wesnoth-nr/ko.po
M po/wesnoth-nr/la.po
M po/wesnoth-nr/lt.po
M po/wesnoth-nr/lv.po
M po/wesnoth-nr/mk.po
M po/wesnoth-nr/mr.po
M po/wesnoth-nr/nb_NO.po
M po/wesnoth-nr/nl.po
M po/wesnoth-nr/pl.po
M po/wesnoth-nr/pt.po
M po/wesnoth-nr/pt_BR.po
M po/wesnoth-nr/racv.po
M po/wesnoth-nr/ro.po
M po/wesnoth-nr/ru.po
M po/wesnoth-nr/sk.po
M po/wesnoth-nr/sl.po
M po/wesnoth-nr/sr.po
M po/wesnoth-nr/sr at ijekavian.po
M po/wesnoth-nr/sr at ijekavianlatin.po
M po/wesnoth-nr/sr at latin.po
M po/wesnoth-nr/sv.po
M po/wesnoth-nr/tl.po
M po/wesnoth-nr/tr.po
M po/wesnoth-nr/uk.po
M po/wesnoth-nr/vi.po
M po/wesnoth-nr/wesnoth-nr.pot
M po/wesnoth-nr/zh_CN.po
M po/wesnoth-nr/zh_TW.po
M po/wesnoth-sof/af.po
M po/wesnoth-sof/ang.po
M po/wesnoth-sof/ang at latin.po
M po/wesnoth-sof/ar.po
M po/wesnoth-sof/ast.po
M po/wesnoth-sof/bg.po
M po/wesnoth-sof/ca.po
M po/wesnoth-sof/ca_ES at valencia.po
M po/wesnoth-sof/cs.po
M po/wesnoth-sof/da.po
M po/wesnoth-sof/de.po
M po/wesnoth-sof/el.po
M po/wesnoth-sof/en at shaw.po
M po/wesnoth-sof/en_GB.po
M po/wesnoth-sof/eo.po
M po/wesnoth-sof/es.po
M po/wesnoth-sof/et.po
M po/wesnoth-sof/eu.po
M po/wesnoth-sof/fi.po
M po/wesnoth-sof/fr.po
M po/wesnoth-sof/fur_IT.po
M po/wesnoth-sof/ga.po
M po/wesnoth-sof/gd.po
M po/wesnoth-sof/gl.po
M po/wesnoth-sof/he.po
M po/wesnoth-sof/hr.po
M po/wesnoth-sof/hu.po
M po/wesnoth-sof/id.po
M po/wesnoth-sof/is.po
M po/wesnoth-sof/it.po
M po/wesnoth-sof/ja.po
M po/wesnoth-sof/ko.po
M po/wesnoth-sof/la.po
M po/wesnoth-sof/lt.po
M po/wesnoth-sof/lv.po
M po/wesnoth-sof/mk.po
M po/wesnoth-sof/mr.po
M po/wesnoth-sof/nb_NO.po
M po/wesnoth-sof/nl.po
M po/wesnoth-sof/pl.po
M po/wesnoth-sof/pt.po
M po/wesnoth-sof/pt_BR.po
M po/wesnoth-sof/racv.po
M po/wesnoth-sof/ro.po
M po/wesnoth-sof/ru.po
M po/wesnoth-sof/sk.po
M po/wesnoth-sof/sl.po
M po/wesnoth-sof/sr.po
M po/wesnoth-sof/sr at ijekavian.po
M po/wesnoth-sof/sr at ijekavianlatin.po
M po/wesnoth-sof/sr at latin.po
M po/wesnoth-sof/sv.po
M po/wesnoth-sof/tl.po
M po/wesnoth-sof/tr.po
M po/wesnoth-sof/uk.po
M po/wesnoth-sof/vi.po
M po/wesnoth-sof/wesnoth-sof.pot
M po/wesnoth-sof/zh_CN.po
M po/wesnoth-sof/zh_TW.po
M po/wesnoth-sotbe/af.po
M po/wesnoth-sotbe/ang.po
M po/wesnoth-sotbe/ang at latin.po
M po/wesnoth-sotbe/ar.po
M po/wesnoth-sotbe/ast.po
M po/wesnoth-sotbe/bg.po
M po/wesnoth-sotbe/ca.po
M po/wesnoth-sotbe/ca_ES at valencia.po
M po/wesnoth-sotbe/cs.po
M po/wesnoth-sotbe/da.po
M po/wesnoth-sotbe/de.po
M po/wesnoth-sotbe/el.po
M po/wesnoth-sotbe/en at shaw.po
M po/wesnoth-sotbe/en_GB.po
M po/wesnoth-sotbe/eo.po
M po/wesnoth-sotbe/es.po
M po/wesnoth-sotbe/et.po
M po/wesnoth-sotbe/eu.po
M po/wesnoth-sotbe/fi.po
M po/wesnoth-sotbe/fr.po
M po/wesnoth-sotbe/fur_IT.po
M po/wesnoth-sotbe/ga.po
M po/wesnoth-sotbe/gd.po
M po/wesnoth-sotbe/gl.po
M po/wesnoth-sotbe/he.po
M po/wesnoth-sotbe/hr.po
M po/wesnoth-sotbe/hu.po
M po/wesnoth-sotbe/id.po
M po/wesnoth-sotbe/is.po
M po/wesnoth-sotbe/it.po
M po/wesnoth-sotbe/ja.po
M po/wesnoth-sotbe/ko.po
M po/wesnoth-sotbe/la.po
M po/wesnoth-sotbe/lt.po
M po/wesnoth-sotbe/lv.po
M po/wesnoth-sotbe/mk.po
M po/wesnoth-sotbe/mr.po
M po/wesnoth-sotbe/nb_NO.po
M po/wesnoth-sotbe/nl.po
M po/wesnoth-sotbe/pl.po
M po/wesnoth-sotbe/pt.po
M po/wesnoth-sotbe/pt_BR.po
M po/wesnoth-sotbe/racv.po
M po/wesnoth-sotbe/ro.po
M po/wesnoth-sotbe/ru.po
M po/wesnoth-sotbe/sk.po
M po/wesnoth-sotbe/sl.po
M po/wesnoth-sotbe/sr.po
M po/wesnoth-sotbe/sr at ijekavian.po
M po/wesnoth-sotbe/sr at ijekavianlatin.po
M po/wesnoth-sotbe/sr at latin.po
M po/wesnoth-sotbe/sv.po
M po/wesnoth-sotbe/tl.po
M po/wesnoth-sotbe/tr.po
M po/wesnoth-sotbe/uk.po
M po/wesnoth-sotbe/vi.po
M po/wesnoth-sotbe/wesnoth-sotbe.pot
M po/wesnoth-sotbe/zh_CN.po
M po/wesnoth-sotbe/zh_TW.po
M po/wesnoth-tb/af.po
M po/wesnoth-tb/ang.po
M po/wesnoth-tb/ang at latin.po
M po/wesnoth-tb/ar.po
M po/wesnoth-tb/ast.po
M po/wesnoth-tb/bg.po
M po/wesnoth-tb/ca.po
M po/wesnoth-tb/ca_ES at valencia.po
M po/wesnoth-tb/cs.po
M po/wesnoth-tb/da.po
M po/wesnoth-tb/de.po
M po/wesnoth-tb/el.po
M po/wesnoth-tb/en at shaw.po
M po/wesnoth-tb/en_GB.po
M po/wesnoth-tb/eo.po
M po/wesnoth-tb/es.po
M po/wesnoth-tb/et.po
M po/wesnoth-tb/eu.po
M po/wesnoth-tb/fi.po
M po/wesnoth-tb/fr.po
M po/wesnoth-tb/fur_IT.po
M po/wesnoth-tb/ga.po
M po/wesnoth-tb/gd.po
M po/wesnoth-tb/gl.po
M po/wesnoth-tb/he.po
M po/wesnoth-tb/hr.po
M po/wesnoth-tb/hu.po
M po/wesnoth-tb/id.po
M po/wesnoth-tb/is.po
M po/wesnoth-tb/it.po
M po/wesnoth-tb/ja.po
M po/wesnoth-tb/ko.po
M po/wesnoth-tb/la.po
M po/wesnoth-tb/lt.po
M po/wesnoth-tb/lv.po
M po/wesnoth-tb/mk.po
M po/wesnoth-tb/mr.po
M po/wesnoth-tb/nb_NO.po
M po/wesnoth-tb/nl.po
M po/wesnoth-tb/pl.po
M po/wesnoth-tb/pt.po
M po/wesnoth-tb/pt_BR.po
M po/wesnoth-tb/racv.po
M po/wesnoth-tb/ro.po
M po/wesnoth-tb/ru.po
M po/wesnoth-tb/sk.po
M po/wesnoth-tb/sl.po
M po/wesnoth-tb/sr.po
M po/wesnoth-tb/sr at ijekavian.po
M po/wesnoth-tb/sr at ijekavianlatin.po
M po/wesnoth-tb/sr at latin.po
M po/wesnoth-tb/sv.po
M po/wesnoth-tb/tl.po
M po/wesnoth-tb/tr.po
M po/wesnoth-tb/uk.po
M po/wesnoth-tb/vi.po
M po/wesnoth-tb/wesnoth-tb.pot
M po/wesnoth-tb/zh_CN.po
M po/wesnoth-tb/zh_TW.po
M po/wesnoth-thot/af.po
M po/wesnoth-thot/ang.po
M po/wesnoth-thot/ang at latin.po
M po/wesnoth-thot/ar.po
M po/wesnoth-thot/ast.po
M po/wesnoth-thot/bg.po
M po/wesnoth-thot/ca.po
M po/wesnoth-thot/ca_ES at valencia.po
M po/wesnoth-thot/cs.po
M po/wesnoth-thot/da.po
M po/wesnoth-thot/de.po
M po/wesnoth-thot/el.po
M po/wesnoth-thot/en at shaw.po
M po/wesnoth-thot/en_GB.po
M po/wesnoth-thot/eo.po
M po/wesnoth-thot/es.po
M po/wesnoth-thot/et.po
M po/wesnoth-thot/eu.po
M po/wesnoth-thot/fi.po
M po/wesnoth-thot/fr.po
M po/wesnoth-thot/fur_IT.po
M po/wesnoth-thot/ga.po
M po/wesnoth-thot/gd.po
M po/wesnoth-thot/gl.po
M po/wesnoth-thot/he.po
M po/wesnoth-thot/hr.po
M po/wesnoth-thot/hu.po
M po/wesnoth-thot/id.po
M po/wesnoth-thot/is.po
M po/wesnoth-thot/it.po
M po/wesnoth-thot/ja.po
M po/wesnoth-thot/ko.po
M po/wesnoth-thot/la.po
M po/wesnoth-thot/lt.po
M po/wesnoth-thot/lv.po
M po/wesnoth-thot/mk.po
M po/wesnoth-thot/mr.po
M po/wesnoth-thot/nb_NO.po
M po/wesnoth-thot/nl.po
M po/wesnoth-thot/pl.po
M po/wesnoth-thot/pt.po
M po/wesnoth-thot/pt_BR.po
M po/wesnoth-thot/racv.po
M po/wesnoth-thot/ro.po
M po/wesnoth-thot/ru.po
M po/wesnoth-thot/sk.po
M po/wesnoth-thot/sl.po
M po/wesnoth-thot/sr.po
M po/wesnoth-thot/sr at ijekavian.po
M po/wesnoth-thot/sr at ijekavianlatin.po
M po/wesnoth-thot/sr at latin.po
M po/wesnoth-thot/sv.po
M po/wesnoth-thot/tl.po
M po/wesnoth-thot/tr.po
M po/wesnoth-thot/uk.po
M po/wesnoth-thot/vi.po
M po/wesnoth-thot/wesnoth-thot.pot
M po/wesnoth-thot/zh_CN.po
M po/wesnoth-thot/zh_TW.po
M po/wesnoth-trow/af.po
M po/wesnoth-trow/ang.po
M po/wesnoth-trow/ang at latin.po
M po/wesnoth-trow/ar.po
M po/wesnoth-trow/ast.po
M po/wesnoth-trow/bg.po
M po/wesnoth-trow/ca.po
M po/wesnoth-trow/ca_ES at valencia.po
M po/wesnoth-trow/cs.po
M po/wesnoth-trow/da.po
M po/wesnoth-trow/de.po
M po/wesnoth-trow/el.po
M po/wesnoth-trow/en at shaw.po
M po/wesnoth-trow/en_GB.po
M po/wesnoth-trow/eo.po
M po/wesnoth-trow/es.po
M po/wesnoth-trow/et.po
M po/wesnoth-trow/eu.po
M po/wesnoth-trow/fi.po
M po/wesnoth-trow/fr.po
M po/wesnoth-trow/fur_IT.po
M po/wesnoth-trow/ga.po
M po/wesnoth-trow/gd.po
M po/wesnoth-trow/gl.po
M po/wesnoth-trow/he.po
M po/wesnoth-trow/hr.po
M po/wesnoth-trow/hu.po
M po/wesnoth-trow/id.po
M po/wesnoth-trow/is.po
M po/wesnoth-trow/it.po
M po/wesnoth-trow/ja.po
M po/wesnoth-trow/ko.po
M po/wesnoth-trow/la.po
M po/wesnoth-trow/lt.po
M po/wesnoth-trow/lv.po
M po/wesnoth-trow/mk.po
M po/wesnoth-trow/mr.po
M po/wesnoth-trow/nb_NO.po
M po/wesnoth-trow/nl.po
M po/wesnoth-trow/pl.po
M po/wesnoth-trow/pt.po
M po/wesnoth-trow/pt_BR.po
M po/wesnoth-trow/racv.po
M po/wesnoth-trow/ro.po
M po/wesnoth-trow/ru.po
M po/wesnoth-trow/sk.po
M po/wesnoth-trow/sl.po
M po/wesnoth-trow/sr.po
M po/wesnoth-trow/sr at ijekavian.po
M po/wesnoth-trow/sr at ijekavianlatin.po
M po/wesnoth-trow/sr at latin.po
M po/wesnoth-trow/sv.po
M po/wesnoth-trow/tl.po
M po/wesnoth-trow/tr.po
M po/wesnoth-trow/uk.po
M po/wesnoth-trow/vi.po
M po/wesnoth-trow/wesnoth-trow.pot
M po/wesnoth-trow/zh_CN.po
M po/wesnoth-trow/zh_TW.po
M po/wesnoth-tsg/af.po
M po/wesnoth-tsg/ang.po
M po/wesnoth-tsg/ang at latin.po
M po/wesnoth-tsg/ar.po
M po/wesnoth-tsg/ast.po
M po/wesnoth-tsg/bg.po
M po/wesnoth-tsg/ca.po
M po/wesnoth-tsg/ca_ES at valencia.po
M po/wesnoth-tsg/cs.po
M po/wesnoth-tsg/da.po
M po/wesnoth-tsg/de.po
M po/wesnoth-tsg/el.po
M po/wesnoth-tsg/en at shaw.po
M po/wesnoth-tsg/en_GB.po
M po/wesnoth-tsg/eo.po
M po/wesnoth-tsg/es.po
M po/wesnoth-tsg/et.po
M po/wesnoth-tsg/eu.po
M po/wesnoth-tsg/fi.po
M po/wesnoth-tsg/fr.po
M po/wesnoth-tsg/fur_IT.po
M po/wesnoth-tsg/ga.po
M po/wesnoth-tsg/gd.po
M po/wesnoth-tsg/gl.po
M po/wesnoth-tsg/he.po
M po/wesnoth-tsg/hr.po
M po/wesnoth-tsg/hu.po
M po/wesnoth-tsg/id.po
M po/wesnoth-tsg/is.po
M po/wesnoth-tsg/it.po
M po/wesnoth-tsg/ja.po
M po/wesnoth-tsg/ko.po
M po/wesnoth-tsg/la.po
M po/wesnoth-tsg/lt.po
M po/wesnoth-tsg/lv.po
M po/wesnoth-tsg/mk.po
M po/wesnoth-tsg/mr.po
M po/wesnoth-tsg/nb_NO.po
M po/wesnoth-tsg/nl.po
M po/wesnoth-tsg/pl.po
M po/wesnoth-tsg/pt.po
M po/wesnoth-tsg/pt_BR.po
M po/wesnoth-tsg/racv.po
M po/wesnoth-tsg/ro.po
M po/wesnoth-tsg/ru.po
M po/wesnoth-tsg/sk.po
M po/wesnoth-tsg/sl.po
M po/wesnoth-tsg/sr.po
M po/wesnoth-tsg/sr at ijekavian.po
M po/wesnoth-tsg/sr at ijekavianlatin.po
M po/wesnoth-tsg/sr at latin.po
M po/wesnoth-tsg/sv.po
M po/wesnoth-tsg/tl.po
M po/wesnoth-tsg/tr.po
M po/wesnoth-tsg/uk.po
M po/wesnoth-tsg/vi.po
M po/wesnoth-tsg/wesnoth-tsg.pot
M po/wesnoth-tsg/zh_CN.po
M po/wesnoth-tsg/zh_TW.po
M po/wesnoth-tutorial/af.po
M po/wesnoth-tutorial/ang.po
M po/wesnoth-tutorial/ang at latin.po
M po/wesnoth-tutorial/ar.po
M po/wesnoth-tutorial/ast.po
M po/wesnoth-tutorial/bg.po
M po/wesnoth-tutorial/ca.po
M po/wesnoth-tutorial/ca_ES at valencia.po
M po/wesnoth-tutorial/cs.po
M po/wesnoth-tutorial/da.po
M po/wesnoth-tutorial/de.po
M po/wesnoth-tutorial/el.po
M po/wesnoth-tutorial/en at shaw.po
M po/wesnoth-tutorial/en_GB.po
M po/wesnoth-tutorial/eo.po
M po/wesnoth-tutorial/es.po
M po/wesnoth-tutorial/et.po
M po/wesnoth-tutorial/eu.po
M po/wesnoth-tutorial/fi.po
M po/wesnoth-tutorial/fr.po
M po/wesnoth-tutorial/fur_IT.po
M po/wesnoth-tutorial/ga.po
M po/wesnoth-tutorial/gd.po
M po/wesnoth-tutorial/gl.po
M po/wesnoth-tutorial/he.po
M po/wesnoth-tutorial/hr.po
M po/wesnoth-tutorial/hu.po
M po/wesnoth-tutorial/id.po
M po/wesnoth-tutorial/is.po
M po/wesnoth-tutorial/it.po
M po/wesnoth-tutorial/ja.po
M po/wesnoth-tutorial/ko.po
M po/wesnoth-tutorial/la.po
M po/wesnoth-tutorial/lt.po
M po/wesnoth-tutorial/lv.po
M po/wesnoth-tutorial/mk.po
M po/wesnoth-tutorial/mr.po
M po/wesnoth-tutorial/nb_NO.po
M po/wesnoth-tutorial/nl.po
M po/wesnoth-tutorial/pl.po
M po/wesnoth-tutorial/pt.po
M po/wesnoth-tutorial/pt_BR.po
M po/wesnoth-tutorial/racv.po
M po/wesnoth-tutorial/ro.po
M po/wesnoth-tutorial/ru.po
M po/wesnoth-tutorial/sk.po
M po/wesnoth-tutorial/sl.po
M po/wesnoth-tutorial/sr.po
M po/wesnoth-tutorial/sr at ijekavian.po
M po/wesnoth-tutorial/sr at ijekavianlatin.po
M po/wesnoth-tutorial/sr at latin.po
M po/wesnoth-tutorial/sv.po
M po/wesnoth-tutorial/tl.po
M po/wesnoth-tutorial/tr.po
M po/wesnoth-tutorial/uk.po
M po/wesnoth-tutorial/vi.po
M po/wesnoth-tutorial/wesnoth-tutorial.pot
M po/wesnoth-tutorial/zh_CN.po
M po/wesnoth-tutorial/zh_TW.po
M po/wesnoth-units/af.po
M po/wesnoth-units/ang.po
M po/wesnoth-units/ang at latin.po
M po/wesnoth-units/ar.po
M po/wesnoth-units/ast.po
M po/wesnoth-units/bg.po
M po/wesnoth-units/ca.po
M po/wesnoth-units/ca_ES at valencia.po
M po/wesnoth-units/cs.po
M po/wesnoth-units/da.po
M po/wesnoth-units/de.po
M po/wesnoth-units/el.po
M po/wesnoth-units/en at shaw.po
M po/wesnoth-units/en_GB.po
M po/wesnoth-units/eo.po
M po/wesnoth-units/es.po
M po/wesnoth-units/et.po
M po/wesnoth-units/eu.po
M po/wesnoth-units/fi.po
M po/wesnoth-units/fr.po
M po/wesnoth-units/fur_IT.po
M po/wesnoth-units/ga.po
M po/wesnoth-units/gd.po
M po/wesnoth-units/gl.po
M po/wesnoth-units/he.po
M po/wesnoth-units/hr.po
M po/wesnoth-units/hu.po
M po/wesnoth-units/id.po
M po/wesnoth-units/is.po
M po/wesnoth-units/it.po
M po/wesnoth-units/ja.po
M po/wesnoth-units/ko.po
M po/wesnoth-units/la.po
M po/wesnoth-units/lt.po
M po/wesnoth-units/lv.po
M po/wesnoth-units/mk.po
M po/wesnoth-units/mr.po
M po/wesnoth-units/nb_NO.po
M po/wesnoth-units/nl.po
M po/wesnoth-units/pl.po
M po/wesnoth-units/pt.po
M po/wesnoth-units/pt_BR.po
M po/wesnoth-units/racv.po
M po/wesnoth-units/ro.po
M po/wesnoth-units/ru.po
M po/wesnoth-units/sk.po
M po/wesnoth-units/sl.po
M po/wesnoth-units/sr.po
M po/wesnoth-units/sr at ijekavian.po
M po/wesnoth-units/sr at ijekavianlatin.po
M po/wesnoth-units/sr at latin.po
M po/wesnoth-units/sv.po
M po/wesnoth-units/tl.po
M po/wesnoth-units/tr.po
M po/wesnoth-units/uk.po
M po/wesnoth-units/vi.po
M po/wesnoth-units/wesnoth-units.pot
M po/wesnoth-units/zh_CN.po
M po/wesnoth-units/zh_TW.po
M po/wesnoth-utbs/af.po
M po/wesnoth-utbs/ang.po
M po/wesnoth-utbs/ang at latin.po
M po/wesnoth-utbs/ar.po
M po/wesnoth-utbs/ast.po
M po/wesnoth-utbs/bg.po
M po/wesnoth-utbs/ca.po
M po/wesnoth-utbs/ca_ES at valencia.po
M po/wesnoth-utbs/cs.po
M po/wesnoth-utbs/da.po
M po/wesnoth-utbs/de.po
M po/wesnoth-utbs/el.po
M po/wesnoth-utbs/en at shaw.po
M po/wesnoth-utbs/en_GB.po
M po/wesnoth-utbs/eo.po
M po/wesnoth-utbs/es.po
M po/wesnoth-utbs/et.po
M po/wesnoth-utbs/eu.po
M po/wesnoth-utbs/fi.po
M po/wesnoth-utbs/fr.po
M po/wesnoth-utbs/fur_IT.po
M po/wesnoth-utbs/ga.po
M po/wesnoth-utbs/gd.po
M po/wesnoth-utbs/gl.po
M po/wesnoth-utbs/he.po
M po/wesnoth-utbs/hr.po
M po/wesnoth-utbs/hu.po
M po/wesnoth-utbs/id.po
M po/wesnoth-utbs/is.po
M po/wesnoth-utbs/it.po
M po/wesnoth-utbs/ja.po
M po/wesnoth-utbs/ko.po
M po/wesnoth-utbs/la.po
M po/wesnoth-utbs/lt.po
M po/wesnoth-utbs/lv.po
M po/wesnoth-utbs/mk.po
M po/wesnoth-utbs/mr.po
M po/wesnoth-utbs/nb_NO.po
M po/wesnoth-utbs/nl.po
M po/wesnoth-utbs/pl.po
M po/wesnoth-utbs/pt.po
M po/wesnoth-utbs/pt_BR.po
M po/wesnoth-utbs/racv.po
M po/wesnoth-utbs/ro.po
M po/wesnoth-utbs/ru.po
M po/wesnoth-utbs/sk.po
M po/wesnoth-utbs/sl.po
M po/wesnoth-utbs/sr.po
M po/wesnoth-utbs/sr at ijekavian.po
M po/wesnoth-utbs/sr at ijekavianlatin.po
M po/wesnoth-utbs/sr at latin.po
M po/wesnoth-utbs/sv.po
M po/wesnoth-utbs/tl.po
M po/wesnoth-utbs/tr.po
M po/wesnoth-utbs/uk.po
M po/wesnoth-utbs/vi.po
M po/wesnoth-utbs/wesnoth-utbs.pot
M po/wesnoth-utbs/zh_CN.po
M po/wesnoth-utbs/zh_TW.po
M po/wesnoth/af.po
M po/wesnoth/ang.po
M po/wesnoth/ang at latin.po
M po/wesnoth/ar.po
M po/wesnoth/ast.po
M po/wesnoth/bg.po
M po/wesnoth/ca.po
M po/wesnoth/ca_ES at valencia.po
M po/wesnoth/cs.po
M po/wesnoth/da.po
M po/wesnoth/de.po
M po/wesnoth/el.po
M po/wesnoth/en at shaw.po
M po/wesnoth/en_GB.po
M po/wesnoth/eo.po
M po/wesnoth/es.po
M po/wesnoth/et.po
M po/wesnoth/eu.po
M po/wesnoth/fi.po
M po/wesnoth/fr.po
M po/wesnoth/fur_IT.po
M po/wesnoth/ga.po
M po/wesnoth/gd.po
M po/wesnoth/gl.po
M po/wesnoth/he.po
M po/wesnoth/hr.po
M po/wesnoth/hu.po
M po/wesnoth/id.po
M po/wesnoth/is.po
M po/wesnoth/it.po
M po/wesnoth/ja.po
M po/wesnoth/ko.po
M po/wesnoth/la.po
M po/wesnoth/lt.po
M po/wesnoth/lv.po
M po/wesnoth/mk.po
M po/wesnoth/mr.po
M po/wesnoth/nb_NO.po
M po/wesnoth/nl.po
M po/wesnoth/pl.po
M po/wesnoth/pt.po
M po/wesnoth/pt_BR.po
M po/wesnoth/racv.po
M po/wesnoth/ro.po
M po/wesnoth/ru.po
M po/wesnoth/sk.po
M po/wesnoth/sl.po
M po/wesnoth/sr.po
M po/wesnoth/sr at ijekavian.po
M po/wesnoth/sr at ijekavianlatin.po
M po/wesnoth/sr at latin.po
M po/wesnoth/sv.po
M po/wesnoth/tl.po
M po/wesnoth/tr.po
M po/wesnoth/uk.po
M po/wesnoth/vi.po
M po/wesnoth/wesnoth.pot
M po/wesnoth/zh_CN.po
M po/wesnoth/zh_TW.po
Log Message:
-----------
Pot-update and regenerate doc files using scons
Commit: c66572ef622d1a11acdcbe24b0340bd4a60fb87a
https://github.com/wesnoth/wesnoth/commit/c66572ef622d1a11acdcbe24b0340bd4a60fb87a
Author: loonycyborg <loonycyborg at gmail.com>
Date: 2016-04-30 (Sat, 30 Apr 2016)
Changed paths:
M po/SConscript
A utils/pywmlx/__init__.py
A utils/pywmlx/autof.py
A utils/pywmlx/nodemanip.py
A utils/pywmlx/postring.py
A utils/pywmlx/state/__init__.py
A utils/pywmlx/state/lua_states.py
A utils/pywmlx/state/machine.py
A utils/pywmlx/state/state.py
A utils/pywmlx/state/wml_states.py
A utils/pywmlx/wmlerr.py
M utils/wmlxgettext
A utils/wmlxgettext_perl
Log Message:
-----------
Commit wmlxgettext2, Nobun's python3 reimplementation of wmlxgettext
Commit: 6e1cbe92345c7235a7165fd6e1c5a9a6c00345a2
https://github.com/wesnoth/wesnoth/commit/6e1cbe92345c7235a7165fd6e1c5a9a6c00345a2
Author: loonycyborg <loonycyborg at gmail.com>
Date: 2016-04-30 (Sat, 30 Apr 2016)
Changed paths:
M data/campaigns/Sceptre_of_Fire/scenarios/8_The_Dragon.cfg
M data/campaigns/The_South_Guard/scenarios/06a_Tidings_Good_and_Ill.cfg
Log Message:
-----------
Move #po comments to right before the message they apply to
to ensure that wmlxgettext2 finds them
Commit: a592ab3ad2bc5e1835ad752617380aa199c7fb4f
https://github.com/wesnoth/wesnoth/commit/a592ab3ad2bc5e1835ad752617380aa199c7fb4f
Author: loonycyborg <loonycyborg at gmail.com>
Date: 2016-04-30 (Sat, 30 Apr 2016)
Changed paths:
M po/wesnoth-ai/af.po
M po/wesnoth-ai/ang.po
M po/wesnoth-ai/ang at latin.po
M po/wesnoth-ai/ar.po
M po/wesnoth-ai/ast.po
M po/wesnoth-ai/bg.po
M po/wesnoth-ai/ca.po
M po/wesnoth-ai/ca_ES at valencia.po
M po/wesnoth-ai/cs.po
M po/wesnoth-ai/da.po
M po/wesnoth-ai/de.po
M po/wesnoth-ai/el.po
M po/wesnoth-ai/en at shaw.po
M po/wesnoth-ai/en_GB.po
M po/wesnoth-ai/eo.po
M po/wesnoth-ai/es.po
M po/wesnoth-ai/et.po
M po/wesnoth-ai/eu.po
M po/wesnoth-ai/fi.po
M po/wesnoth-ai/fr.po
M po/wesnoth-ai/fur_IT.po
M po/wesnoth-ai/ga.po
M po/wesnoth-ai/gd.po
M po/wesnoth-ai/gl.po
M po/wesnoth-ai/he.po
M po/wesnoth-ai/hr.po
M po/wesnoth-ai/hu.po
M po/wesnoth-ai/id.po
M po/wesnoth-ai/is.po
M po/wesnoth-ai/it.po
M po/wesnoth-ai/ja.po
M po/wesnoth-ai/ko.po
M po/wesnoth-ai/la.po
M po/wesnoth-ai/lt.po
M po/wesnoth-ai/lv.po
M po/wesnoth-ai/mk.po
M po/wesnoth-ai/mr.po
M po/wesnoth-ai/nb_NO.po
M po/wesnoth-ai/nl.po
M po/wesnoth-ai/pl.po
M po/wesnoth-ai/pt.po
M po/wesnoth-ai/pt_BR.po
M po/wesnoth-ai/racv.po
M po/wesnoth-ai/ro.po
M po/wesnoth-ai/ru.po
M po/wesnoth-ai/sk.po
M po/wesnoth-ai/sl.po
M po/wesnoth-ai/sr.po
M po/wesnoth-ai/sr at ijekavian.po
M po/wesnoth-ai/sr at ijekavianlatin.po
M po/wesnoth-ai/sr at latin.po
M po/wesnoth-ai/sv.po
M po/wesnoth-ai/tl.po
M po/wesnoth-ai/tr.po
M po/wesnoth-ai/uk.po
M po/wesnoth-ai/vi.po
M po/wesnoth-ai/wesnoth-ai.pot
M po/wesnoth-ai/zh_CN.po
M po/wesnoth-ai/zh_TW.po
M po/wesnoth-anl/af.po
M po/wesnoth-anl/ang.po
M po/wesnoth-anl/ang at latin.po
M po/wesnoth-anl/ar.po
M po/wesnoth-anl/ast.po
M po/wesnoth-anl/bg.po
M po/wesnoth-anl/ca.po
M po/wesnoth-anl/ca_ES at valencia.po
M po/wesnoth-anl/cs.po
M po/wesnoth-anl/da.po
M po/wesnoth-anl/de.po
M po/wesnoth-anl/el.po
M po/wesnoth-anl/en at shaw.po
M po/wesnoth-anl/en_GB.po
M po/wesnoth-anl/eo.po
M po/wesnoth-anl/es.po
M po/wesnoth-anl/et.po
M po/wesnoth-anl/eu.po
M po/wesnoth-anl/fi.po
M po/wesnoth-anl/fr.po
M po/wesnoth-anl/fur_IT.po
M po/wesnoth-anl/ga.po
M po/wesnoth-anl/gd.po
M po/wesnoth-anl/gl.po
M po/wesnoth-anl/he.po
M po/wesnoth-anl/hr.po
M po/wesnoth-anl/hu.po
M po/wesnoth-anl/id.po
M po/wesnoth-anl/is.po
M po/wesnoth-anl/it.po
M po/wesnoth-anl/ja.po
M po/wesnoth-anl/ko.po
M po/wesnoth-anl/la.po
M po/wesnoth-anl/lt.po
M po/wesnoth-anl/lv.po
M po/wesnoth-anl/mk.po
M po/wesnoth-anl/mr.po
M po/wesnoth-anl/nb_NO.po
M po/wesnoth-anl/nl.po
M po/wesnoth-anl/pl.po
M po/wesnoth-anl/pt.po
M po/wesnoth-anl/pt_BR.po
M po/wesnoth-anl/racv.po
M po/wesnoth-anl/ro.po
M po/wesnoth-anl/ru.po
M po/wesnoth-anl/sk.po
M po/wesnoth-anl/sl.po
M po/wesnoth-anl/sr.po
M po/wesnoth-anl/sr at ijekavian.po
M po/wesnoth-anl/sr at ijekavianlatin.po
M po/wesnoth-anl/sr at latin.po
M po/wesnoth-anl/sv.po
M po/wesnoth-anl/tl.po
M po/wesnoth-anl/tr.po
M po/wesnoth-anl/uk.po
M po/wesnoth-anl/vi.po
M po/wesnoth-anl/wesnoth-anl.pot
M po/wesnoth-anl/zh_CN.po
M po/wesnoth-anl/zh_TW.po
M po/wesnoth-aoi/af.po
M po/wesnoth-aoi/ang.po
M po/wesnoth-aoi/ang at latin.po
M po/wesnoth-aoi/ar.po
M po/wesnoth-aoi/ast.po
M po/wesnoth-aoi/bg.po
M po/wesnoth-aoi/ca.po
M po/wesnoth-aoi/ca_ES at valencia.po
M po/wesnoth-aoi/cs.po
M po/wesnoth-aoi/da.po
M po/wesnoth-aoi/de.po
M po/wesnoth-aoi/el.po
M po/wesnoth-aoi/en at shaw.po
M po/wesnoth-aoi/en_GB.po
M po/wesnoth-aoi/eo.po
M po/wesnoth-aoi/es.po
M po/wesnoth-aoi/et.po
M po/wesnoth-aoi/eu.po
M po/wesnoth-aoi/fi.po
M po/wesnoth-aoi/fr.po
M po/wesnoth-aoi/fur_IT.po
M po/wesnoth-aoi/ga.po
M po/wesnoth-aoi/gd.po
M po/wesnoth-aoi/gl.po
M po/wesnoth-aoi/he.po
M po/wesnoth-aoi/hr.po
M po/wesnoth-aoi/hu.po
M po/wesnoth-aoi/id.po
M po/wesnoth-aoi/is.po
M po/wesnoth-aoi/it.po
M po/wesnoth-aoi/ja.po
M po/wesnoth-aoi/ko.po
M po/wesnoth-aoi/la.po
M po/wesnoth-aoi/lt.po
M po/wesnoth-aoi/lv.po
M po/wesnoth-aoi/mk.po
M po/wesnoth-aoi/mr.po
M po/wesnoth-aoi/nb_NO.po
M po/wesnoth-aoi/nl.po
M po/wesnoth-aoi/pl.po
M po/wesnoth-aoi/pt.po
M po/wesnoth-aoi/pt_BR.po
M po/wesnoth-aoi/racv.po
M po/wesnoth-aoi/ro.po
M po/wesnoth-aoi/ru.po
M po/wesnoth-aoi/sk.po
M po/wesnoth-aoi/sl.po
M po/wesnoth-aoi/sr.po
M po/wesnoth-aoi/sr at ijekavian.po
M po/wesnoth-aoi/sr at ijekavianlatin.po
M po/wesnoth-aoi/sr at latin.po
M po/wesnoth-aoi/sv.po
M po/wesnoth-aoi/tl.po
M po/wesnoth-aoi/tr.po
M po/wesnoth-aoi/uk.po
M po/wesnoth-aoi/vi.po
M po/wesnoth-aoi/wesnoth-aoi.pot
M po/wesnoth-aoi/zh_CN.po
M po/wesnoth-aoi/zh_TW.po
M po/wesnoth-did/af.po
M po/wesnoth-did/ang.po
M po/wesnoth-did/ang at latin.po
M po/wesnoth-did/ar.po
M po/wesnoth-did/ast.po
M po/wesnoth-did/bg.po
M po/wesnoth-did/ca.po
M po/wesnoth-did/ca_ES at valencia.po
M po/wesnoth-did/cs.po
M po/wesnoth-did/da.po
M po/wesnoth-did/de.po
M po/wesnoth-did/el.po
M po/wesnoth-did/en at shaw.po
M po/wesnoth-did/en_GB.po
M po/wesnoth-did/eo.po
M po/wesnoth-did/es.po
M po/wesnoth-did/et.po
M po/wesnoth-did/eu.po
M po/wesnoth-did/fi.po
M po/wesnoth-did/fr.po
M po/wesnoth-did/fur_IT.po
M po/wesnoth-did/ga.po
M po/wesnoth-did/gd.po
M po/wesnoth-did/gl.po
M po/wesnoth-did/he.po
M po/wesnoth-did/hr.po
M po/wesnoth-did/hu.po
M po/wesnoth-did/id.po
M po/wesnoth-did/is.po
M po/wesnoth-did/it.po
M po/wesnoth-did/ja.po
M po/wesnoth-did/ko.po
M po/wesnoth-did/la.po
M po/wesnoth-did/lt.po
M po/wesnoth-did/lv.po
M po/wesnoth-did/mk.po
M po/wesnoth-did/mr.po
M po/wesnoth-did/nb_NO.po
M po/wesnoth-did/nl.po
M po/wesnoth-did/pl.po
M po/wesnoth-did/pt.po
M po/wesnoth-did/pt_BR.po
M po/wesnoth-did/racv.po
M po/wesnoth-did/ro.po
M po/wesnoth-did/ru.po
M po/wesnoth-did/sk.po
M po/wesnoth-did/sl.po
M po/wesnoth-did/sr.po
M po/wesnoth-did/sr at ijekavian.po
M po/wesnoth-did/sr at ijekavianlatin.po
M po/wesnoth-did/sr at latin.po
M po/wesnoth-did/sv.po
M po/wesnoth-did/tl.po
M po/wesnoth-did/tr.po
M po/wesnoth-did/uk.po
M po/wesnoth-did/vi.po
M po/wesnoth-did/wesnoth-did.pot
M po/wesnoth-did/zh_CN.po
M po/wesnoth-did/zh_TW.po
M po/wesnoth-dm/af.po
M po/wesnoth-dm/ang.po
M po/wesnoth-dm/ang at latin.po
M po/wesnoth-dm/ar.po
M po/wesnoth-dm/ast.po
M po/wesnoth-dm/bg.po
M po/wesnoth-dm/ca.po
M po/wesnoth-dm/ca_ES at valencia.po
M po/wesnoth-dm/cs.po
M po/wesnoth-dm/da.po
M po/wesnoth-dm/de.po
M po/wesnoth-dm/el.po
M po/wesnoth-dm/en at shaw.po
M po/wesnoth-dm/en_GB.po
M po/wesnoth-dm/eo.po
M po/wesnoth-dm/es.po
M po/wesnoth-dm/et.po
M po/wesnoth-dm/eu.po
M po/wesnoth-dm/fi.po
M po/wesnoth-dm/fr.po
M po/wesnoth-dm/fur_IT.po
M po/wesnoth-dm/ga.po
M po/wesnoth-dm/gd.po
M po/wesnoth-dm/gl.po
M po/wesnoth-dm/he.po
M po/wesnoth-dm/hr.po
M po/wesnoth-dm/hu.po
M po/wesnoth-dm/id.po
M po/wesnoth-dm/is.po
M po/wesnoth-dm/it.po
M po/wesnoth-dm/ja.po
M po/wesnoth-dm/ko.po
M po/wesnoth-dm/la.po
M po/wesnoth-dm/lt.po
M po/wesnoth-dm/lv.po
M po/wesnoth-dm/mk.po
M po/wesnoth-dm/mr.po
M po/wesnoth-dm/nb_NO.po
M po/wesnoth-dm/nl.po
M po/wesnoth-dm/pl.po
M po/wesnoth-dm/pt.po
M po/wesnoth-dm/pt_BR.po
M po/wesnoth-dm/racv.po
M po/wesnoth-dm/ro.po
M po/wesnoth-dm/ru.po
M po/wesnoth-dm/sk.po
M po/wesnoth-dm/sl.po
M po/wesnoth-dm/sr.po
M po/wesnoth-dm/sr at ijekavian.po
M po/wesnoth-dm/sr at ijekavianlatin.po
M po/wesnoth-dm/sr at latin.po
M po/wesnoth-dm/sv.po
M po/wesnoth-dm/tl.po
M po/wesnoth-dm/tr.po
M po/wesnoth-dm/uk.po
M po/wesnoth-dm/vi.po
M po/wesnoth-dm/wesnoth-dm.pot
M po/wesnoth-dm/zh_CN.po
M po/wesnoth-dm/zh_TW.po
M po/wesnoth-dw/af.po
M po/wesnoth-dw/ang.po
M po/wesnoth-dw/ang at latin.po
M po/wesnoth-dw/ar.po
M po/wesnoth-dw/ast.po
M po/wesnoth-dw/bg.po
M po/wesnoth-dw/ca.po
M po/wesnoth-dw/ca_ES at valencia.po
M po/wesnoth-dw/cs.po
M po/wesnoth-dw/da.po
M po/wesnoth-dw/de.po
M po/wesnoth-dw/el.po
M po/wesnoth-dw/en at shaw.po
M po/wesnoth-dw/en_GB.po
M po/wesnoth-dw/eo.po
M po/wesnoth-dw/es.po
M po/wesnoth-dw/et.po
M po/wesnoth-dw/eu.po
M po/wesnoth-dw/fi.po
M po/wesnoth-dw/fr.po
M po/wesnoth-dw/fur_IT.po
M po/wesnoth-dw/ga.po
M po/wesnoth-dw/gd.po
M po/wesnoth-dw/gl.po
M po/wesnoth-dw/he.po
M po/wesnoth-dw/hr.po
M po/wesnoth-dw/hu.po
M po/wesnoth-dw/id.po
M po/wesnoth-dw/is.po
M po/wesnoth-dw/it.po
M po/wesnoth-dw/ja.po
M po/wesnoth-dw/ko.po
M po/wesnoth-dw/la.po
M po/wesnoth-dw/lt.po
M po/wesnoth-dw/lv.po
M po/wesnoth-dw/mk.po
M po/wesnoth-dw/mr.po
M po/wesnoth-dw/nb_NO.po
M po/wesnoth-dw/nl.po
M po/wesnoth-dw/pl.po
M po/wesnoth-dw/pt.po
M po/wesnoth-dw/pt_BR.po
M po/wesnoth-dw/racv.po
M po/wesnoth-dw/ro.po
M po/wesnoth-dw/ru.po
M po/wesnoth-dw/sk.po
M po/wesnoth-dw/sl.po
M po/wesnoth-dw/sr.po
M po/wesnoth-dw/sr at ijekavian.po
M po/wesnoth-dw/sr at ijekavianlatin.po
M po/wesnoth-dw/sr at latin.po
M po/wesnoth-dw/sv.po
M po/wesnoth-dw/tl.po
M po/wesnoth-dw/tr.po
M po/wesnoth-dw/uk.po
M po/wesnoth-dw/vi.po
M po/wesnoth-dw/wesnoth-dw.pot
M po/wesnoth-dw/zh_CN.po
M po/wesnoth-dw/zh_TW.po
M po/wesnoth-ei/af.po
M po/wesnoth-ei/ang.po
M po/wesnoth-ei/ang at latin.po
M po/wesnoth-ei/ar.po
M po/wesnoth-ei/ast.po
M po/wesnoth-ei/bg.po
M po/wesnoth-ei/ca.po
M po/wesnoth-ei/ca_ES at valencia.po
M po/wesnoth-ei/cs.po
M po/wesnoth-ei/da.po
M po/wesnoth-ei/de.po
M po/wesnoth-ei/el.po
M po/wesnoth-ei/en at shaw.po
M po/wesnoth-ei/en_GB.po
M po/wesnoth-ei/eo.po
M po/wesnoth-ei/es.po
M po/wesnoth-ei/et.po
M po/wesnoth-ei/eu.po
M po/wesnoth-ei/fi.po
M po/wesnoth-ei/fr.po
M po/wesnoth-ei/fur_IT.po
M po/wesnoth-ei/ga.po
M po/wesnoth-ei/gd.po
M po/wesnoth-ei/gl.po
M po/wesnoth-ei/he.po
M po/wesnoth-ei/hr.po
M po/wesnoth-ei/hu.po
M po/wesnoth-ei/id.po
M po/wesnoth-ei/is.po
M po/wesnoth-ei/it.po
M po/wesnoth-ei/ja.po
M po/wesnoth-ei/ko.po
M po/wesnoth-ei/la.po
M po/wesnoth-ei/lt.po
M po/wesnoth-ei/lv.po
M po/wesnoth-ei/mk.po
M po/wesnoth-ei/mr.po
M po/wesnoth-ei/nb_NO.po
M po/wesnoth-ei/nl.po
M po/wesnoth-ei/pl.po
M po/wesnoth-ei/pt.po
M po/wesnoth-ei/pt_BR.po
M po/wesnoth-ei/racv.po
M po/wesnoth-ei/ro.po
M po/wesnoth-ei/ru.po
M po/wesnoth-ei/sk.po
M po/wesnoth-ei/sl.po
M po/wesnoth-ei/sr.po
M po/wesnoth-ei/sr at ijekavian.po
M po/wesnoth-ei/sr at ijekavianlatin.po
M po/wesnoth-ei/sr at latin.po
M po/wesnoth-ei/sv.po
M po/wesnoth-ei/tl.po
M po/wesnoth-ei/tr.po
M po/wesnoth-ei/uk.po
M po/wesnoth-ei/vi.po
M po/wesnoth-ei/wesnoth-ei.pot
M po/wesnoth-ei/zh_CN.po
M po/wesnoth-ei/zh_TW.po
M po/wesnoth-help/af.po
M po/wesnoth-help/ang.po
M po/wesnoth-help/ang at latin.po
M po/wesnoth-help/ar.po
M po/wesnoth-help/ast.po
M po/wesnoth-help/bg.po
M po/wesnoth-help/ca.po
M po/wesnoth-help/ca_ES at valencia.po
M po/wesnoth-help/cs.po
M po/wesnoth-help/da.po
M po/wesnoth-help/de.po
M po/wesnoth-help/el.po
M po/wesnoth-help/en at shaw.po
M po/wesnoth-help/en_GB.po
M po/wesnoth-help/eo.po
M po/wesnoth-help/es.po
M po/wesnoth-help/et.po
M po/wesnoth-help/eu.po
M po/wesnoth-help/fi.po
M po/wesnoth-help/fr.po
M po/wesnoth-help/fur_IT.po
M po/wesnoth-help/ga.po
M po/wesnoth-help/gd.po
M po/wesnoth-help/gl.po
M po/wesnoth-help/he.po
M po/wesnoth-help/hr.po
M po/wesnoth-help/hu.po
M po/wesnoth-help/id.po
M po/wesnoth-help/is.po
M po/wesnoth-help/it.po
M po/wesnoth-help/ja.po
M po/wesnoth-help/ko.po
M po/wesnoth-help/la.po
M po/wesnoth-help/lt.po
M po/wesnoth-help/lv.po
M po/wesnoth-help/mk.po
M po/wesnoth-help/mr.po
M po/wesnoth-help/nb_NO.po
M po/wesnoth-help/nl.po
M po/wesnoth-help/pl.po
M po/wesnoth-help/pt.po
M po/wesnoth-help/pt_BR.po
M po/wesnoth-help/racv.po
M po/wesnoth-help/ro.po
M po/wesnoth-help/ru.po
M po/wesnoth-help/sk.po
M po/wesnoth-help/sl.po
M po/wesnoth-help/sr.po
M po/wesnoth-help/sr at ijekavian.po
M po/wesnoth-help/sr at ijekavianlatin.po
M po/wesnoth-help/sr at latin.po
M po/wesnoth-help/sv.po
M po/wesnoth-help/tl.po
M po/wesnoth-help/tr.po
M po/wesnoth-help/uk.po
M po/wesnoth-help/vi.po
M po/wesnoth-help/wesnoth-help.pot
M po/wesnoth-help/zh_CN.po
M po/wesnoth-help/zh_TW.po
M po/wesnoth-httt/af.po
M po/wesnoth-httt/ang.po
M po/wesnoth-httt/ang at latin.po
M po/wesnoth-httt/ar.po
M po/wesnoth-httt/ast.po
M po/wesnoth-httt/bg.po
M po/wesnoth-httt/ca.po
M po/wesnoth-httt/ca_ES at valencia.po
M po/wesnoth-httt/cs.po
M po/wesnoth-httt/da.po
M po/wesnoth-httt/de.po
M po/wesnoth-httt/el.po
M po/wesnoth-httt/en at shaw.po
M po/wesnoth-httt/en_GB.po
M po/wesnoth-httt/eo.po
M po/wesnoth-httt/es.po
M po/wesnoth-httt/et.po
M po/wesnoth-httt/eu.po
M po/wesnoth-httt/fi.po
M po/wesnoth-httt/fr.po
M po/wesnoth-httt/fur_IT.po
M po/wesnoth-httt/ga.po
M po/wesnoth-httt/gd.po
M po/wesnoth-httt/gl.po
M po/wesnoth-httt/he.po
M po/wesnoth-httt/hr.po
M po/wesnoth-httt/hu.po
M po/wesnoth-httt/id.po
M po/wesnoth-httt/is.po
M po/wesnoth-httt/it.po
M po/wesnoth-httt/ja.po
M po/wesnoth-httt/ko.po
M po/wesnoth-httt/la.po
M po/wesnoth-httt/lt.po
M po/wesnoth-httt/lv.po
M po/wesnoth-httt/mk.po
M po/wesnoth-httt/mr.po
M po/wesnoth-httt/nb_NO.po
M po/wesnoth-httt/nl.po
M po/wesnoth-httt/pl.po
M po/wesnoth-httt/pt.po
M po/wesnoth-httt/pt_BR.po
M po/wesnoth-httt/racv.po
M po/wesnoth-httt/ro.po
M po/wesnoth-httt/ru.po
M po/wesnoth-httt/sk.po
M po/wesnoth-httt/sl.po
M po/wesnoth-httt/sr.po
M po/wesnoth-httt/sr at ijekavian.po
M po/wesnoth-httt/sr at ijekavianlatin.po
M po/wesnoth-httt/sr at latin.po
M po/wesnoth-httt/sv.po
M po/wesnoth-httt/tl.po
M po/wesnoth-httt/tr.po
M po/wesnoth-httt/uk.po
M po/wesnoth-httt/vi.po
M po/wesnoth-httt/wesnoth-httt.pot
M po/wesnoth-httt/zh_CN.po
M po/wesnoth-httt/zh_TW.po
M po/wesnoth-l/af.po
M po/wesnoth-l/ang.po
M po/wesnoth-l/ang at latin.po
M po/wesnoth-l/ar.po
M po/wesnoth-l/ast.po
M po/wesnoth-l/bg.po
M po/wesnoth-l/ca.po
M po/wesnoth-l/ca_ES at valencia.po
M po/wesnoth-l/cs.po
M po/wesnoth-l/da.po
M po/wesnoth-l/de.po
M po/wesnoth-l/el.po
M po/wesnoth-l/en at shaw.po
M po/wesnoth-l/en_GB.po
M po/wesnoth-l/eo.po
M po/wesnoth-l/es.po
M po/wesnoth-l/et.po
M po/wesnoth-l/eu.po
M po/wesnoth-l/fi.po
M po/wesnoth-l/fr.po
M po/wesnoth-l/fur_IT.po
M po/wesnoth-l/ga.po
M po/wesnoth-l/gd.po
M po/wesnoth-l/gl.po
M po/wesnoth-l/he.po
M po/wesnoth-l/hr.po
M po/wesnoth-l/hu.po
M po/wesnoth-l/id.po
M po/wesnoth-l/is.po
M po/wesnoth-l/it.po
M po/wesnoth-l/ja.po
M po/wesnoth-l/ko.po
M po/wesnoth-l/la.po
M po/wesnoth-l/lt.po
M po/wesnoth-l/lv.po
M po/wesnoth-l/mk.po
M po/wesnoth-l/mr.po
M po/wesnoth-l/nb_NO.po
M po/wesnoth-l/nl.po
M po/wesnoth-l/pl.po
M po/wesnoth-l/pt.po
M po/wesnoth-l/pt_BR.po
M po/wesnoth-l/racv.po
M po/wesnoth-l/ro.po
M po/wesnoth-l/ru.po
M po/wesnoth-l/sk.po
M po/wesnoth-l/sl.po
M po/wesnoth-l/sr.po
M po/wesnoth-l/sr at ijekavian.po
M po/wesnoth-l/sr at ijekavianlatin.po
M po/wesnoth-l/sr at latin.po
M po/wesnoth-l/sv.po
M po/wesnoth-l/tl.po
M po/wesnoth-l/tr.po
M po/wesnoth-l/uk.po
M po/wesnoth-l/vi.po
M po/wesnoth-l/wesnoth-l.pot
M po/wesnoth-l/zh_CN.po
M po/wesnoth-l/zh_TW.po
M po/wesnoth-lib/af.po
M po/wesnoth-lib/ang.po
M po/wesnoth-lib/ang at latin.po
M po/wesnoth-lib/ar.po
M po/wesnoth-lib/ast.po
M po/wesnoth-lib/bg.po
M po/wesnoth-lib/ca.po
M po/wesnoth-lib/ca_ES at valencia.po
M po/wesnoth-lib/cs.po
M po/wesnoth-lib/da.po
M po/wesnoth-lib/de.po
M po/wesnoth-lib/el.po
M po/wesnoth-lib/en at shaw.po
M po/wesnoth-lib/en_GB.po
M po/wesnoth-lib/eo.po
M po/wesnoth-lib/es.po
M po/wesnoth-lib/et.po
M po/wesnoth-lib/eu.po
M po/wesnoth-lib/fi.po
M po/wesnoth-lib/fr.po
M po/wesnoth-lib/fur_IT.po
M po/wesnoth-lib/ga.po
M po/wesnoth-lib/gd.po
M po/wesnoth-lib/gl.po
M po/wesnoth-lib/he.po
M po/wesnoth-lib/hr.po
M po/wesnoth-lib/hu.po
M po/wesnoth-lib/id.po
M po/wesnoth-lib/is.po
M po/wesnoth-lib/it.po
M po/wesnoth-lib/ja.po
M po/wesnoth-lib/ko.po
M po/wesnoth-lib/la.po
M po/wesnoth-lib/lt.po
M po/wesnoth-lib/lv.po
M po/wesnoth-lib/mk.po
M po/wesnoth-lib/mr.po
M po/wesnoth-lib/nb_NO.po
M po/wesnoth-lib/nl.po
M po/wesnoth-lib/pl.po
M po/wesnoth-lib/pt.po
M po/wesnoth-lib/pt_BR.po
M po/wesnoth-lib/racv.po
M po/wesnoth-lib/ro.po
M po/wesnoth-lib/ru.po
M po/wesnoth-lib/sk.po
M po/wesnoth-lib/sl.po
M po/wesnoth-lib/sr.po
M po/wesnoth-lib/sr at ijekavian.po
M po/wesnoth-lib/sr at ijekavianlatin.po
M po/wesnoth-lib/sr at latin.po
M po/wesnoth-lib/sv.po
M po/wesnoth-lib/tl.po
M po/wesnoth-lib/tr.po
M po/wesnoth-lib/uk.po
M po/wesnoth-lib/vi.po
M po/wesnoth-lib/wesnoth-lib.pot
M po/wesnoth-lib/zh_CN.po
M po/wesnoth-lib/zh_TW.po
M po/wesnoth-low/af.po
M po/wesnoth-low/ang.po
M po/wesnoth-low/ang at latin.po
M po/wesnoth-low/ar.po
M po/wesnoth-low/ast.po
M po/wesnoth-low/bg.po
M po/wesnoth-low/ca.po
M po/wesnoth-low/ca_ES at valencia.po
M po/wesnoth-low/cs.po
M po/wesnoth-low/da.po
M po/wesnoth-low/de.po
M po/wesnoth-low/el.po
M po/wesnoth-low/en at shaw.po
M po/wesnoth-low/en_GB.po
M po/wesnoth-low/eo.po
M po/wesnoth-low/es.po
M po/wesnoth-low/et.po
M po/wesnoth-low/eu.po
M po/wesnoth-low/fi.po
M po/wesnoth-low/fr.po
M po/wesnoth-low/fur_IT.po
M po/wesnoth-low/ga.po
M po/wesnoth-low/gd.po
M po/wesnoth-low/gl.po
M po/wesnoth-low/he.po
M po/wesnoth-low/hr.po
M po/wesnoth-low/hu.po
M po/wesnoth-low/id.po
M po/wesnoth-low/is.po
M po/wesnoth-low/it.po
M po/wesnoth-low/ja.po
M po/wesnoth-low/ko.po
M po/wesnoth-low/la.po
M po/wesnoth-low/lt.po
M po/wesnoth-low/lv.po
M po/wesnoth-low/mk.po
M po/wesnoth-low/mr.po
M po/wesnoth-low/nb_NO.po
M po/wesnoth-low/nl.po
M po/wesnoth-low/pl.po
M po/wesnoth-low/pt.po
M po/wesnoth-low/pt_BR.po
M po/wesnoth-low/racv.po
M po/wesnoth-low/ro.po
M po/wesnoth-low/ru.po
M po/wesnoth-low/sk.po
M po/wesnoth-low/sl.po
M po/wesnoth-low/sr.po
M po/wesnoth-low/sr at ijekavian.po
M po/wesnoth-low/sr at ijekavianlatin.po
M po/wesnoth-low/sr at latin.po
M po/wesnoth-low/sv.po
M po/wesnoth-low/tl.po
M po/wesnoth-low/tr.po
M po/wesnoth-low/uk.po
M po/wesnoth-low/vi.po
M po/wesnoth-low/wesnoth-low.pot
M po/wesnoth-low/zh_CN.po
M po/wesnoth-low/zh_TW.po
M po/wesnoth-manpages/wesnoth-manpages.pot
M po/wesnoth-manual/wesnoth-manual.pot
M po/wesnoth-multiplayer/af.po
M po/wesnoth-multiplayer/ang.po
M po/wesnoth-multiplayer/ang at latin.po
M po/wesnoth-multiplayer/ar.po
M po/wesnoth-multiplayer/ast.po
M po/wesnoth-multiplayer/bg.po
M po/wesnoth-multiplayer/ca.po
M po/wesnoth-multiplayer/ca_ES at valencia.po
M po/wesnoth-multiplayer/cs.po
M po/wesnoth-multiplayer/da.po
M po/wesnoth-multiplayer/de.po
M po/wesnoth-multiplayer/el.po
M po/wesnoth-multiplayer/en at shaw.po
M po/wesnoth-multiplayer/en_GB.po
M po/wesnoth-multiplayer/eo.po
M po/wesnoth-multiplayer/es.po
M po/wesnoth-multiplayer/et.po
M po/wesnoth-multiplayer/eu.po
M po/wesnoth-multiplayer/fi.po
M po/wesnoth-multiplayer/fr.po
M po/wesnoth-multiplayer/fur_IT.po
M po/wesnoth-multiplayer/ga.po
M po/wesnoth-multiplayer/gd.po
M po/wesnoth-multiplayer/gl.po
M po/wesnoth-multiplayer/he.po
M po/wesnoth-multiplayer/hr.po
M po/wesnoth-multiplayer/hu.po
M po/wesnoth-multiplayer/id.po
M po/wesnoth-multiplayer/is.po
M po/wesnoth-multiplayer/it.po
M po/wesnoth-multiplayer/ja.po
M po/wesnoth-multiplayer/ko.po
M po/wesnoth-multiplayer/la.po
M po/wesnoth-multiplayer/lt.po
M po/wesnoth-multiplayer/lv.po
M po/wesnoth-multiplayer/mk.po
M po/wesnoth-multiplayer/mr.po
M po/wesnoth-multiplayer/nb_NO.po
M po/wesnoth-multiplayer/nl.po
M po/wesnoth-multiplayer/pl.po
M po/wesnoth-multiplayer/pt.po
M po/wesnoth-multiplayer/pt_BR.po
M po/wesnoth-multiplayer/racv.po
M po/wesnoth-multiplayer/ro.po
M po/wesnoth-multiplayer/ru.po
M po/wesnoth-multiplayer/sk.po
M po/wesnoth-multiplayer/sl.po
M po/wesnoth-multiplayer/sr.po
M po/wesnoth-multiplayer/sr at ijekavian.po
M po/wesnoth-multiplayer/sr at ijekavianlatin.po
M po/wesnoth-multiplayer/sr at latin.po
M po/wesnoth-multiplayer/sv.po
M po/wesnoth-multiplayer/tl.po
M po/wesnoth-multiplayer/tr.po
M po/wesnoth-multiplayer/uk.po
M po/wesnoth-multiplayer/vi.po
M po/wesnoth-multiplayer/wesnoth-multiplayer.pot
M po/wesnoth-multiplayer/zh_CN.po
M po/wesnoth-multiplayer/zh_TW.po
M po/wesnoth-nr/af.po
M po/wesnoth-nr/ang.po
M po/wesnoth-nr/ang at latin.po
M po/wesnoth-nr/ar.po
M po/wesnoth-nr/ast.po
M po/wesnoth-nr/bg.po
M po/wesnoth-nr/ca.po
M po/wesnoth-nr/ca_ES at valencia.po
M po/wesnoth-nr/cs.po
M po/wesnoth-nr/da.po
M po/wesnoth-nr/de.po
M po/wesnoth-nr/el.po
M po/wesnoth-nr/en at shaw.po
M po/wesnoth-nr/en_GB.po
M po/wesnoth-nr/eo.po
M po/wesnoth-nr/es.po
M po/wesnoth-nr/et.po
M po/wesnoth-nr/eu.po
M po/wesnoth-nr/fi.po
M po/wesnoth-nr/fr.po
M po/wesnoth-nr/fur_IT.po
M po/wesnoth-nr/ga.po
M po/wesnoth-nr/gd.po
M po/wesnoth-nr/gl.po
M po/wesnoth-nr/he.po
M po/wesnoth-nr/hr.po
M po/wesnoth-nr/hu.po
M po/wesnoth-nr/id.po
M po/wesnoth-nr/is.po
M po/wesnoth-nr/it.po
M po/wesnoth-nr/ja.po
M po/wesnoth-nr/ko.po
M po/wesnoth-nr/la.po
M po/wesnoth-nr/lt.po
M po/wesnoth-nr/lv.po
M po/wesnoth-nr/mk.po
M po/wesnoth-nr/mr.po
M po/wesnoth-nr/nb_NO.po
M po/wesnoth-nr/nl.po
M po/wesnoth-nr/pl.po
M po/wesnoth-nr/pt.po
M po/wesnoth-nr/pt_BR.po
M po/wesnoth-nr/racv.po
M po/wesnoth-nr/ro.po
M po/wesnoth-nr/ru.po
M po/wesnoth-nr/sk.po
M po/wesnoth-nr/sl.po
M po/wesnoth-nr/sr.po
M po/wesnoth-nr/sr at ijekavian.po
M po/wesnoth-nr/sr at ijekavianlatin.po
M po/wesnoth-nr/sr at latin.po
M po/wesnoth-nr/sv.po
M po/wesnoth-nr/tl.po
M po/wesnoth-nr/tr.po
M po/wesnoth-nr/uk.po
M po/wesnoth-nr/vi.po
M po/wesnoth-nr/wesnoth-nr.pot
M po/wesnoth-nr/zh_CN.po
M po/wesnoth-nr/zh_TW.po
M po/wesnoth-sof/af.po
M po/wesnoth-sof/ang.po
M po/wesnoth-sof/ang at latin.po
M po/wesnoth-sof/ar.po
M po/wesnoth-sof/ast.po
M po/wesnoth-sof/bg.po
M po/wesnoth-sof/ca.po
M po/wesnoth-sof/ca_ES at valencia.po
M po/wesnoth-sof/cs.po
M po/wesnoth-sof/da.po
M po/wesnoth-sof/de.po
M po/wesnoth-sof/el.po
M po/wesnoth-sof/en at shaw.po
M po/wesnoth-sof/en_GB.po
M po/wesnoth-sof/eo.po
M po/wesnoth-sof/es.po
M po/wesnoth-sof/et.po
M po/wesnoth-sof/eu.po
M po/wesnoth-sof/fi.po
M po/wesnoth-sof/fr.po
M po/wesnoth-sof/fur_IT.po
M po/wesnoth-sof/ga.po
M po/wesnoth-sof/gd.po
M po/wesnoth-sof/gl.po
M po/wesnoth-sof/he.po
M po/wesnoth-sof/hr.po
M po/wesnoth-sof/hu.po
M po/wesnoth-sof/id.po
M po/wesnoth-sof/is.po
M po/wesnoth-sof/it.po
M po/wesnoth-sof/ja.po
M po/wesnoth-sof/ko.po
M po/wesnoth-sof/la.po
M po/wesnoth-sof/lt.po
M po/wesnoth-sof/lv.po
M po/wesnoth-sof/mk.po
M po/wesnoth-sof/mr.po
M po/wesnoth-sof/nb_NO.po
M po/wesnoth-sof/nl.po
M po/wesnoth-sof/pl.po
M po/wesnoth-sof/pt.po
M po/wesnoth-sof/pt_BR.po
M po/wesnoth-sof/racv.po
M po/wesnoth-sof/ro.po
M po/wesnoth-sof/ru.po
M po/wesnoth-sof/sk.po
M po/wesnoth-sof/sl.po
M po/wesnoth-sof/sr.po
M po/wesnoth-sof/sr at ijekavian.po
M po/wesnoth-sof/sr at ijekavianlatin.po
M po/wesnoth-sof/sr at latin.po
M po/wesnoth-sof/sv.po
M po/wesnoth-sof/tl.po
M po/wesnoth-sof/tr.po
M po/wesnoth-sof/uk.po
M po/wesnoth-sof/vi.po
M po/wesnoth-sof/wesnoth-sof.pot
M po/wesnoth-sof/zh_CN.po
M po/wesnoth-sof/zh_TW.po
M po/wesnoth-sotbe/af.po
M po/wesnoth-sotbe/ang.po
M po/wesnoth-sotbe/ang at latin.po
M po/wesnoth-sotbe/ar.po
M po/wesnoth-sotbe/ast.po
M po/wesnoth-sotbe/bg.po
M po/wesnoth-sotbe/ca.po
M po/wesnoth-sotbe/ca_ES at valencia.po
M po/wesnoth-sotbe/cs.po
M po/wesnoth-sotbe/da.po
M po/wesnoth-sotbe/de.po
M po/wesnoth-sotbe/el.po
M po/wesnoth-sotbe/en at shaw.po
M po/wesnoth-sotbe/en_GB.po
M po/wesnoth-sotbe/eo.po
M po/wesnoth-sotbe/es.po
M po/wesnoth-sotbe/et.po
M po/wesnoth-sotbe/eu.po
M po/wesnoth-sotbe/fi.po
M po/wesnoth-sotbe/fr.po
M po/wesnoth-sotbe/fur_IT.po
M po/wesnoth-sotbe/ga.po
M po/wesnoth-sotbe/gd.po
M po/wesnoth-sotbe/gl.po
M po/wesnoth-sotbe/he.po
M po/wesnoth-sotbe/hr.po
M po/wesnoth-sotbe/hu.po
M po/wesnoth-sotbe/id.po
M po/wesnoth-sotbe/is.po
M po/wesnoth-sotbe/it.po
M po/wesnoth-sotbe/ja.po
M po/wesnoth-sotbe/ko.po
M po/wesnoth-sotbe/la.po
M po/wesnoth-sotbe/lt.po
M po/wesnoth-sotbe/lv.po
M po/wesnoth-sotbe/mk.po
M po/wesnoth-sotbe/mr.po
M po/wesnoth-sotbe/nb_NO.po
M po/wesnoth-sotbe/nl.po
M po/wesnoth-sotbe/pl.po
M po/wesnoth-sotbe/pt.po
M po/wesnoth-sotbe/pt_BR.po
M po/wesnoth-sotbe/racv.po
M po/wesnoth-sotbe/ro.po
M po/wesnoth-sotbe/ru.po
M po/wesnoth-sotbe/sk.po
M po/wesnoth-sotbe/sl.po
M po/wesnoth-sotbe/sr.po
M po/wesnoth-sotbe/sr at ijekavian.po
M po/wesnoth-sotbe/sr at ijekavianlatin.po
M po/wesnoth-sotbe/sr at latin.po
M po/wesnoth-sotbe/sv.po
M po/wesnoth-sotbe/tl.po
M po/wesnoth-sotbe/tr.po
M po/wesnoth-sotbe/uk.po
M po/wesnoth-sotbe/vi.po
M po/wesnoth-sotbe/wesnoth-sotbe.pot
M po/wesnoth-sotbe/zh_CN.po
M po/wesnoth-sotbe/zh_TW.po
M po/wesnoth-tb/af.po
M po/wesnoth-tb/ang.po
M po/wesnoth-tb/ang at latin.po
M po/wesnoth-tb/ar.po
M po/wesnoth-tb/ast.po
M po/wesnoth-tb/bg.po
M po/wesnoth-tb/ca.po
M po/wesnoth-tb/ca_ES at valencia.po
M po/wesnoth-tb/cs.po
M po/wesnoth-tb/da.po
M po/wesnoth-tb/de.po
M po/wesnoth-tb/el.po
M po/wesnoth-tb/en at shaw.po
M po/wesnoth-tb/en_GB.po
M po/wesnoth-tb/eo.po
M po/wesnoth-tb/es.po
M po/wesnoth-tb/et.po
M po/wesnoth-tb/eu.po
M po/wesnoth-tb/fi.po
M po/wesnoth-tb/fr.po
M po/wesnoth-tb/fur_IT.po
M po/wesnoth-tb/ga.po
M po/wesnoth-tb/gd.po
M po/wesnoth-tb/gl.po
M po/wesnoth-tb/he.po
M po/wesnoth-tb/hr.po
M po/wesnoth-tb/hu.po
M po/wesnoth-tb/id.po
M po/wesnoth-tb/is.po
M po/wesnoth-tb/it.po
M po/wesnoth-tb/ja.po
M po/wesnoth-tb/ko.po
M po/wesnoth-tb/la.po
M po/wesnoth-tb/lt.po
M po/wesnoth-tb/lv.po
M po/wesnoth-tb/mk.po
M po/wesnoth-tb/mr.po
M po/wesnoth-tb/nb_NO.po
M po/wesnoth-tb/nl.po
M po/wesnoth-tb/pl.po
M po/wesnoth-tb/pt.po
M po/wesnoth-tb/pt_BR.po
M po/wesnoth-tb/racv.po
M po/wesnoth-tb/ro.po
M po/wesnoth-tb/ru.po
M po/wesnoth-tb/sk.po
M po/wesnoth-tb/sl.po
M po/wesnoth-tb/sr.po
M po/wesnoth-tb/sr at ijekavian.po
M po/wesnoth-tb/sr at ijekavianlatin.po
M po/wesnoth-tb/sr at latin.po
M po/wesnoth-tb/sv.po
M po/wesnoth-tb/tl.po
M po/wesnoth-tb/tr.po
M po/wesnoth-tb/uk.po
M po/wesnoth-tb/vi.po
M po/wesnoth-tb/wesnoth-tb.pot
M po/wesnoth-tb/zh_CN.po
M po/wesnoth-tb/zh_TW.po
M po/wesnoth-thot/af.po
M po/wesnoth-thot/ang.po
M po/wesnoth-thot/ang at latin.po
M po/wesnoth-thot/ar.po
M po/wesnoth-thot/ast.po
M po/wesnoth-thot/bg.po
M po/wesnoth-thot/ca.po
M po/wesnoth-thot/ca_ES at valencia.po
M po/wesnoth-thot/cs.po
M po/wesnoth-thot/da.po
M po/wesnoth-thot/de.po
M po/wesnoth-thot/el.po
M po/wesnoth-thot/en at shaw.po
M po/wesnoth-thot/en_GB.po
M po/wesnoth-thot/eo.po
M po/wesnoth-thot/es.po
M po/wesnoth-thot/et.po
M po/wesnoth-thot/eu.po
M po/wesnoth-thot/fi.po
M po/wesnoth-thot/fr.po
M po/wesnoth-thot/fur_IT.po
M po/wesnoth-thot/ga.po
M po/wesnoth-thot/gd.po
M po/wesnoth-thot/gl.po
M po/wesnoth-thot/he.po
M po/wesnoth-thot/hr.po
M po/wesnoth-thot/hu.po
M po/wesnoth-thot/id.po
M po/wesnoth-thot/is.po
M po/wesnoth-thot/it.po
M po/wesnoth-thot/ja.po
M po/wesnoth-thot/ko.po
M po/wesnoth-thot/la.po
M po/wesnoth-thot/lt.po
M po/wesnoth-thot/lv.po
M po/wesnoth-thot/mk.po
M po/wesnoth-thot/mr.po
M po/wesnoth-thot/nb_NO.po
M po/wesnoth-thot/nl.po
M po/wesnoth-thot/pl.po
M po/wesnoth-thot/pt.po
M po/wesnoth-thot/pt_BR.po
M po/wesnoth-thot/racv.po
M po/wesnoth-thot/ro.po
M po/wesnoth-thot/ru.po
M po/wesnoth-thot/sk.po
M po/wesnoth-thot/sl.po
M po/wesnoth-thot/sr.po
M po/wesnoth-thot/sr at ijekavian.po
M po/wesnoth-thot/sr at ijekavianlatin.po
M po/wesnoth-thot/sr at latin.po
M po/wesnoth-thot/sv.po
M po/wesnoth-thot/tl.po
M po/wesnoth-thot/tr.po
M po/wesnoth-thot/uk.po
M po/wesnoth-thot/vi.po
M po/wesnoth-thot/wesnoth-thot.pot
M po/wesnoth-thot/zh_CN.po
M po/wesnoth-thot/zh_TW.po
M po/wesnoth-trow/af.po
M po/wesnoth-trow/ang.po
M po/wesnoth-trow/ang at latin.po
M po/wesnoth-trow/ar.po
M po/wesnoth-trow/ast.po
M po/wesnoth-trow/bg.po
M po/wesnoth-trow/ca.po
M po/wesnoth-trow/ca_ES at valencia.po
M po/wesnoth-trow/cs.po
M po/wesnoth-trow/da.po
M po/wesnoth-trow/de.po
M po/wesnoth-trow/el.po
M po/wesnoth-trow/en at shaw.po
M po/wesnoth-trow/en_GB.po
M po/wesnoth-trow/eo.po
M po/wesnoth-trow/es.po
M po/wesnoth-trow/et.po
M po/wesnoth-trow/eu.po
M po/wesnoth-trow/fi.po
M po/wesnoth-trow/fr.po
M po/wesnoth-trow/fur_IT.po
M po/wesnoth-trow/ga.po
M po/wesnoth-trow/gd.po
M po/wesnoth-trow/gl.po
M po/wesnoth-trow/he.po
M po/wesnoth-trow/hr.po
M po/wesnoth-trow/hu.po
M po/wesnoth-trow/id.po
M po/wesnoth-trow/is.po
M po/wesnoth-trow/it.po
M po/wesnoth-trow/ja.po
M po/wesnoth-trow/ko.po
M po/wesnoth-trow/la.po
M po/wesnoth-trow/lt.po
M po/wesnoth-trow/lv.po
M po/wesnoth-trow/mk.po
M po/wesnoth-trow/mr.po
M po/wesnoth-trow/nb_NO.po
M po/wesnoth-trow/nl.po
M po/wesnoth-trow/pl.po
M po/wesnoth-trow/pt.po
M po/wesnoth-trow/pt_BR.po
M po/wesnoth-trow/racv.po
M po/wesnoth-trow/ro.po
M po/wesnoth-trow/ru.po
M po/wesnoth-trow/sk.po
M po/wesnoth-trow/sl.po
M po/wesnoth-trow/sr.po
M po/wesnoth-trow/sr at ijekavian.po
M po/wesnoth-trow/sr at ijekavianlatin.po
M po/wesnoth-trow/sr at latin.po
M po/wesnoth-trow/sv.po
M po/wesnoth-trow/tl.po
M po/wesnoth-trow/tr.po
M po/wesnoth-trow/uk.po
M po/wesnoth-trow/vi.po
M po/wesnoth-trow/wesnoth-trow.pot
M po/wesnoth-trow/zh_CN.po
M po/wesnoth-trow/zh_TW.po
M po/wesnoth-tsg/af.po
M po/wesnoth-tsg/ang.po
M po/wesnoth-tsg/ang at latin.po
M po/wesnoth-tsg/ar.po
M po/wesnoth-tsg/ast.po
M po/wesnoth-tsg/bg.po
M po/wesnoth-tsg/ca.po
M po/wesnoth-tsg/ca_ES at valencia.po
M po/wesnoth-tsg/cs.po
M po/wesnoth-tsg/da.po
M po/wesnoth-tsg/de.po
M po/wesnoth-tsg/el.po
M po/wesnoth-tsg/en at shaw.po
M po/wesnoth-tsg/en_GB.po
M po/wesnoth-tsg/eo.po
M po/wesnoth-tsg/es.po
M po/wesnoth-tsg/et.po
M po/wesnoth-tsg/eu.po
M po/wesnoth-tsg/fi.po
M po/wesnoth-tsg/fr.po
M po/wesnoth-tsg/fur_IT.po
M po/wesnoth-tsg/ga.po
M po/wesnoth-tsg/gd.po
M po/wesnoth-tsg/gl.po
M po/wesnoth-tsg/he.po
M po/wesnoth-tsg/hr.po
M po/wesnoth-tsg/hu.po
M po/wesnoth-tsg/id.po
M po/wesnoth-tsg/is.po
M po/wesnoth-tsg/it.po
M po/wesnoth-tsg/ja.po
M po/wesnoth-tsg/ko.po
M po/wesnoth-tsg/la.po
M po/wesnoth-tsg/lt.po
M po/wesnoth-tsg/lv.po
M po/wesnoth-tsg/mk.po
M po/wesnoth-tsg/mr.po
M po/wesnoth-tsg/nb_NO.po
M po/wesnoth-tsg/nl.po
M po/wesnoth-tsg/pl.po
M po/wesnoth-tsg/pt.po
M po/wesnoth-tsg/pt_BR.po
M po/wesnoth-tsg/racv.po
M po/wesnoth-tsg/ro.po
M po/wesnoth-tsg/ru.po
M po/wesnoth-tsg/sk.po
M po/wesnoth-tsg/sl.po
M po/wesnoth-tsg/sr.po
M po/wesnoth-tsg/sr at ijekavian.po
M po/wesnoth-tsg/sr at ijekavianlatin.po
M po/wesnoth-tsg/sr at latin.po
M po/wesnoth-tsg/sv.po
M po/wesnoth-tsg/tl.po
M po/wesnoth-tsg/tr.po
M po/wesnoth-tsg/uk.po
M po/wesnoth-tsg/vi.po
M po/wesnoth-tsg/wesnoth-tsg.pot
M po/wesnoth-tsg/zh_CN.po
M po/wesnoth-tsg/zh_TW.po
M po/wesnoth-tutorial/af.po
M po/wesnoth-tutorial/ang.po
M po/wesnoth-tutorial/ang at latin.po
M po/wesnoth-tutorial/ar.po
M po/wesnoth-tutorial/ast.po
M po/wesnoth-tutorial/bg.po
M po/wesnoth-tutorial/ca.po
M po/wesnoth-tutorial/ca_ES at valencia.po
M po/wesnoth-tutorial/cs.po
M po/wesnoth-tutorial/da.po
M po/wesnoth-tutorial/de.po
M po/wesnoth-tutorial/el.po
M po/wesnoth-tutorial/en at shaw.po
M po/wesnoth-tutorial/en_GB.po
M po/wesnoth-tutorial/eo.po
M po/wesnoth-tutorial/es.po
M po/wesnoth-tutorial/et.po
M po/wesnoth-tutorial/eu.po
M po/wesnoth-tutorial/fi.po
M po/wesnoth-tutorial/fr.po
M po/wesnoth-tutorial/fur_IT.po
M po/wesnoth-tutorial/ga.po
M po/wesnoth-tutorial/gd.po
M po/wesnoth-tutorial/gl.po
M po/wesnoth-tutorial/he.po
M po/wesnoth-tutorial/hr.po
M po/wesnoth-tutorial/hu.po
M po/wesnoth-tutorial/id.po
M po/wesnoth-tutorial/is.po
M po/wesnoth-tutorial/it.po
M po/wesnoth-tutorial/ja.po
M po/wesnoth-tutorial/ko.po
M po/wesnoth-tutorial/la.po
M po/wesnoth-tutorial/lt.po
M po/wesnoth-tutorial/lv.po
M po/wesnoth-tutorial/mk.po
M po/wesnoth-tutorial/mr.po
M po/wesnoth-tutorial/nb_NO.po
M po/wesnoth-tutorial/nl.po
M po/wesnoth-tutorial/pl.po
M po/wesnoth-tutorial/pt.po
M po/wesnoth-tutorial/pt_BR.po
M po/wesnoth-tutorial/racv.po
M po/wesnoth-tutorial/ro.po
M po/wesnoth-tutorial/ru.po
M po/wesnoth-tutorial/sk.po
M po/wesnoth-tutorial/sl.po
M po/wesnoth-tutorial/sr.po
M po/wesnoth-tutorial/sr at ijekavian.po
M po/wesnoth-tutorial/sr at ijekavianlatin.po
M po/wesnoth-tutorial/sr at latin.po
M po/wesnoth-tutorial/sv.po
M po/wesnoth-tutorial/tl.po
M po/wesnoth-tutorial/tr.po
M po/wesnoth-tutorial/uk.po
M po/wesnoth-tutorial/vi.po
M po/wesnoth-tutorial/wesnoth-tutorial.pot
M po/wesnoth-tutorial/zh_CN.po
M po/wesnoth-tutorial/zh_TW.po
M po/wesnoth-units/af.po
M po/wesnoth-units/ang.po
M po/wesnoth-units/ang at latin.po
M po/wesnoth-units/ar.po
M po/wesnoth-units/ast.po
M po/wesnoth-units/bg.po
M po/wesnoth-units/ca.po
M po/wesnoth-units/ca_ES at valencia.po
M po/wesnoth-units/cs.po
M po/wesnoth-units/da.po
M po/wesnoth-units/de.po
M po/wesnoth-units/el.po
M po/wesnoth-units/en at shaw.po
M po/wesnoth-units/en_GB.po
M po/wesnoth-units/eo.po
M po/wesnoth-units/es.po
M po/wesnoth-units/et.po
M po/wesnoth-units/eu.po
M po/wesnoth-units/fi.po
M po/wesnoth-units/fr.po
M po/wesnoth-units/fur_IT.po
M po/wesnoth-units/ga.po
M po/wesnoth-units/gd.po
M po/wesnoth-units/gl.po
M po/wesnoth-units/he.po
M po/wesnoth-units/hr.po
M po/wesnoth-units/hu.po
M po/wesnoth-units/id.po
M po/wesnoth-units/is.po
M po/wesnoth-units/it.po
M po/wesnoth-units/ja.po
M po/wesnoth-units/ko.po
M po/wesnoth-units/la.po
M po/wesnoth-units/lt.po
M po/wesnoth-units/lv.po
M po/wesnoth-units/mk.po
M po/wesnoth-units/mr.po
M po/wesnoth-units/nb_NO.po
M po/wesnoth-units/nl.po
M po/wesnoth-units/pl.po
M po/wesnoth-units/pt.po
M po/wesnoth-units/pt_BR.po
M po/wesnoth-units/racv.po
M po/wesnoth-units/ro.po
M po/wesnoth-units/ru.po
M po/wesnoth-units/sk.po
M po/wesnoth-units/sl.po
M po/wesnoth-units/sr.po
M po/wesnoth-units/sr at ijekavian.po
M po/wesnoth-units/sr at ijekavianlatin.po
M po/wesnoth-units/sr at latin.po
M po/wesnoth-units/sv.po
M po/wesnoth-units/tl.po
M po/wesnoth-units/tr.po
M po/wesnoth-units/uk.po
M po/wesnoth-units/vi.po
M po/wesnoth-units/wesnoth-units.pot
M po/wesnoth-units/zh_CN.po
M po/wesnoth-units/zh_TW.po
M po/wesnoth-utbs/af.po
M po/wesnoth-utbs/ang.po
M po/wesnoth-utbs/ang at latin.po
M po/wesnoth-utbs/ar.po
M po/wesnoth-utbs/ast.po
M po/wesnoth-utbs/bg.po
M po/wesnoth-utbs/ca.po
M po/wesnoth-utbs/ca_ES at valencia.po
M po/wesnoth-utbs/cs.po
M po/wesnoth-utbs/da.po
M po/wesnoth-utbs/de.po
M po/wesnoth-utbs/el.po
M po/wesnoth-utbs/en at shaw.po
M po/wesnoth-utbs/en_GB.po
M po/wesnoth-utbs/eo.po
M po/wesnoth-utbs/es.po
M po/wesnoth-utbs/et.po
M po/wesnoth-utbs/eu.po
M po/wesnoth-utbs/fi.po
M po/wesnoth-utbs/fr.po
M po/wesnoth-utbs/fur_IT.po
M po/wesnoth-utbs/ga.po
M po/wesnoth-utbs/gd.po
M po/wesnoth-utbs/gl.po
M po/wesnoth-utbs/he.po
M po/wesnoth-utbs/hr.po
M po/wesnoth-utbs/hu.po
M po/wesnoth-utbs/id.po
M po/wesnoth-utbs/is.po
M po/wesnoth-utbs/it.po
M po/wesnoth-utbs/ja.po
M po/wesnoth-utbs/ko.po
M po/wesnoth-utbs/la.po
M po/wesnoth-utbs/lt.po
M po/wesnoth-utbs/lv.po
M po/wesnoth-utbs/mk.po
M po/wesnoth-utbs/mr.po
M po/wesnoth-utbs/nb_NO.po
M po/wesnoth-utbs/nl.po
M po/wesnoth-utbs/pl.po
M po/wesnoth-utbs/pt.po
M po/wesnoth-utbs/pt_BR.po
M po/wesnoth-utbs/racv.po
M po/wesnoth-utbs/ro.po
M po/wesnoth-utbs/ru.po
M po/wesnoth-utbs/sk.po
M po/wesnoth-utbs/sl.po
M po/wesnoth-utbs/sr.po
M po/wesnoth-utbs/sr at ijekavian.po
M po/wesnoth-utbs/sr at ijekavianlatin.po
M po/wesnoth-utbs/sr at latin.po
M po/wesnoth-utbs/sv.po
M po/wesnoth-utbs/tl.po
M po/wesnoth-utbs/tr.po
M po/wesnoth-utbs/uk.po
M po/wesnoth-utbs/vi.po
M po/wesnoth-utbs/wesnoth-utbs.pot
M po/wesnoth-utbs/zh_CN.po
M po/wesnoth-utbs/zh_TW.po
M po/wesnoth/af.po
M po/wesnoth/ang.po
M po/wesnoth/ang at latin.po
M po/wesnoth/ar.po
M po/wesnoth/ast.po
M po/wesnoth/bg.po
M po/wesnoth/ca.po
M po/wesnoth/ca_ES at valencia.po
M po/wesnoth/cs.po
M po/wesnoth/da.po
M po/wesnoth/de.po
M po/wesnoth/el.po
M po/wesnoth/en at shaw.po
M po/wesnoth/en_GB.po
M po/wesnoth/eo.po
M po/wesnoth/es.po
M po/wesnoth/et.po
M po/wesnoth/eu.po
M po/wesnoth/fi.po
M po/wesnoth/fr.po
M po/wesnoth/fur_IT.po
M po/wesnoth/ga.po
M po/wesnoth/gd.po
M po/wesnoth/gl.po
M po/wesnoth/he.po
M po/wesnoth/hr.po
M po/wesnoth/hu.po
M po/wesnoth/id.po
M po/wesnoth/is.po
M po/wesnoth/it.po
M po/wesnoth/ja.po
M po/wesnoth/ko.po
M po/wesnoth/la.po
M po/wesnoth/lt.po
M po/wesnoth/lv.po
M po/wesnoth/mk.po
M po/wesnoth/mr.po
M po/wesnoth/nb_NO.po
M po/wesnoth/nl.po
M po/wesnoth/pl.po
M po/wesnoth/pt.po
M po/wesnoth/pt_BR.po
M po/wesnoth/racv.po
M po/wesnoth/ro.po
M po/wesnoth/ru.po
M po/wesnoth/sk.po
M po/wesnoth/sl.po
M po/wesnoth/sr.po
M po/wesnoth/sr at ijekavian.po
M po/wesnoth/sr at ijekavianlatin.po
M po/wesnoth/sr at latin.po
M po/wesnoth/sv.po
M po/wesnoth/tl.po
M po/wesnoth/tr.po
M po/wesnoth/uk.po
M po/wesnoth/vi.po
M po/wesnoth/wesnoth.pot
M po/wesnoth/zh_CN.po
M po/wesnoth/zh_TW.po
Log Message:
-----------
Pot-update using wmlxgettext2
Commit: d86ce00d892f993fc979f12068e2d9615e43a5ef
https://github.com/wesnoth/wesnoth/commit/d86ce00d892f993fc979f12068e2d9615e43a5ef
Author: loonycyborg <loonycyborg at gmail.com>
Date: 2016-05-01 (Sun, 01 May 2016)
Changed paths:
M changelog
M data/core/about.cfg
Log Message:
-----------
Update changelog and about.cfg
Commit: 0c3154044c885afefdc409ba9ae33fc3436a523c
https://github.com/wesnoth/wesnoth/commit/0c3154044c885afefdc409ba9ae33fc3436a523c
Author: loonycyborg <loonycyborg at gmail.com>
Date: 2016-05-03 (Tue, 03 May 2016)
Changed paths:
M src/server/server.hpp
Log Message:
-----------
Clean up some more obsolete commented code
Commit: 39f14b9b4b99b0b7446a0325f44e46919cab4b90
https://github.com/wesnoth/wesnoth/commit/39f14b9b4b99b0b7446a0325f44e46919cab4b90
Author: loonycyborg <loonycyborg at gmail.com>
Date: 2016-05-03 (Tue, 03 May 2016)
Changed paths:
M .gitignore
M .travis.yml
M CMakeLists.txt
M changelog
M data/campaigns/Eastern_Invasion/scenarios/11_Captured.cfg
M data/campaigns/Heir_To_The_Throne/scenarios/10_Gryphon_Mountain.cfg
M data/campaigns/Heir_To_The_Throne/scenarios/19c_Cliffs_of_Thoria.cfg
M data/campaigns/Sceptre_of_Fire/scenarios/8_The_Dragon.cfg
M data/campaigns/Son_Of_The_Black_Eye/scenarios/04_The_Siege_of_Barag_Gor.cfg
M data/campaigns/The_South_Guard/scenarios/06a_Tidings_Good_and_Ill.cfg
A data/campaigns/Under_the_Burning_Suns/images/units/nagas/hunter-attack-melee-1.png
A data/campaigns/Under_the_Burning_Suns/images/units/nagas/hunter-attack-melee-2.png
A data/campaigns/Under_the_Burning_Suns/images/units/nagas/hunter-attack-melee-3.png
A data/campaigns/Under_the_Burning_Suns/images/units/nagas/hunter-attack-melee-4.png
A data/campaigns/Under_the_Burning_Suns/images/units/nagas/hunter-defend.png
A data/campaigns/Under_the_Burning_Suns/images/units/nagas/hunter-melee-defend.png
M data/campaigns/Under_the_Burning_Suns/units/nagas/Naga_Hunter.cfg
M data/core/about.cfg
M data/core/hotkeys.cfg
M data/core/images/portraits/ARTISTS
M data/core/images/portraits/merfolk/initiate.png
M data/core/macros/abilities.cfg
M data/core/macros/names.cfg
M data/core/units/monsters/Giant_Mudcrawler.cfg
M data/core/units/monsters/Giant_Rat.cfg
M data/core/units/monsters/Mudcrawler.cfg
M data/core/units/monsters/Sea_Serpent.cfg
M data/core/units/monsters/Tentacle.cfg
M data/core/units/monsters/Yeti.cfg
M data/gui/macros/_initial.cfg
M data/gui/macros/horizontal_scrollbar.cfg
M data/gui/widget/button_25x25.cfg
M data/gui/widget/button_default.cfg
M data/gui/widget/horizontal_scrollbar_default.cfg
M data/gui/window/addon_list.cfg
M data/gui/window/campaign_dialog.cfg
M data/gui/window/lobby_main.cfg
M data/gui/window/unit_attack.cfg
M doc/man/CMakeLists.txt
R doc/man/cs/wesnoth.6
R doc/man/en_GB/wesnoth.6
R doc/man/es/wesnoth.6
R doc/man/fr/wesnoth.6
R doc/man/gl/wesnoth.6
R doc/man/it/wesnoth.6
M doc/man/ja/wesnothd.6
R doc/man/pt/wesnoth.6
R doc/man/ru/wesnoth.6
R doc/man/sk/wesnoth.6
R doc/man/uk/wesnoth.6
R doc/man/vi/wesnoth.6
R doc/man/zh_CN/wesnoth.6
M doc/manual/CMakeLists.txt
M doc/manual/manual.cs.html
M doc/manual/manual.de.html
M doc/manual/manual.en.html
M doc/manual/manual.en_GB.html
M doc/manual/manual.es.html
M doc/manual/manual.et.html
M doc/manual/manual.fi.html
M doc/manual/manual.fr.html
M doc/manual/manual.gl.html
M doc/manual/manual.hu.html
M doc/manual/manual.id.html
M doc/manual/manual.it.html
M doc/manual/manual.ja.html
M doc/manual/manual.pl.html
M doc/manual/manual.pt.html
M doc/manual/manual.pt_BR.html
M doc/manual/manual.ru.html
M doc/manual/manual.sk.html
M doc/manual/manual.sr.html
M doc/manual/manual.sr at ijekavian.html
M doc/manual/manual.sr at ijekavianlatin.html
M doc/manual/manual.sr at latin.html
M doc/manual/manual.uk.html
M doc/manual/manual.vi.html
M doc/manual/manual.zh_CN.html
M doc/manual/manual.zh_TW.html
R images/buttons/scrollbars/scrollgroove-bottom-minimal.png
R images/buttons/scrollbars/scrollgroove-bottom.png
R images/buttons/scrollbars/scrollgroove-horizontal.png
R images/buttons/scrollbars/scrollgroove-left.png
R images/buttons/scrollbars/scrollgroove-mid-minimal.png
R images/buttons/scrollbars/scrollgroove-mid.png
R images/buttons/scrollbars/scrollgroove-right.png
R images/buttons/scrollbars/scrollgroove-top-minimal.png
R images/buttons/scrollbars/scrollgroove-top.png
M images/buttons/scrollbars/scrollhorizontal-active.png
M images/buttons/scrollbars/scrollhorizontal-pressed.png
M images/buttons/scrollbars/scrollhorizontal.png
M images/buttons/scrollbars/scrollleft-active.png
M images/buttons/scrollbars/scrollleft-pressed.png
M images/buttons/scrollbars/scrollleft.png
M images/buttons/scrollbars/scrollright-active.png
M images/buttons/scrollbars/scrollright-pressed.png
M images/buttons/scrollbars/scrollright.png
A images/buttons/scrollbars_large/scrollbottom-active.png
A images/buttons/scrollbars_large/scrollbottom-pressed.png
A images/buttons/scrollbars_large/scrollbottom.png
A images/buttons/scrollbars_large/scrollgroove-bottom.png
A images/buttons/scrollbars_large/scrollgroove-horizontal.png
A images/buttons/scrollbars_large/scrollgroove-left.png
A images/buttons/scrollbars_large/scrollgroove-mid.png
A images/buttons/scrollbars_large/scrollgroove-right.png
A images/buttons/scrollbars_large/scrollgroove-top.png
A images/buttons/scrollbars_large/scrollhorizontal-active.png
A images/buttons/scrollbars_large/scrollhorizontal-pressed.png
A images/buttons/scrollbars_large/scrollhorizontal.png
A images/buttons/scrollbars_large/scrollleft-active.png
A images/buttons/scrollbars_large/scrollleft-pressed.png
A images/buttons/scrollbars_large/scrollleft.png
A images/buttons/scrollbars_large/scrollmid-active.png
A images/buttons/scrollbars_large/scrollmid-pressed.png
A images/buttons/scrollbars_large/scrollmid.png
A images/buttons/scrollbars_large/scrollright-active.png
A images/buttons/scrollbars_large/scrollright-pressed.png
A images/buttons/scrollbars_large/scrollright.png
A images/buttons/scrollbars_large/scrolltop-active.png
A images/buttons/scrollbars_large/scrolltop-pressed.png
A images/buttons/scrollbars_large/scrolltop.png
M images/cursors/attack.png
A images/cursors/attack at 2x.png
M images/cursors/attack_drag.png
A images/cursors/attack_drag at 2x.png
M images/cursors/move.png
A images/cursors/move at 2x.png
M images/cursors/move_drag.png
A images/cursors/move_drag at 2x.png
M images/cursors/normal.png
A images/cursors/normal at 2x.png
M images/cursors/select-illegal.png
A images/cursors/select-illegal at 2x.png
M images/cursors/select-location.png
A images/cursors/select-location at 2x.png
M images/cursors/select.png
A images/cursors/select at 2x.png
M images/cursors/wait.png
A images/cursors/wait at 2x.png
A images/icons/action/help_30-active.png
A images/icons/action/help_30-pressed.png
A images/icons/action/help_30.png
A images/icons/action/settings-active.png
A images/icons/action/settings-pressed.png
A images/icons/action/settings.png
A images/icons/action/trash_25-active.png
A images/icons/action/trash_25-pressed.png
A images/icons/action/trash_25.png
A images/icons/addons/addon_install-active.png
A images/icons/addons/addon_install-pressed.png
A images/icons/addons/addon_install.png
A images/icons/addons/addon_uninstall-active.png
A images/icons/addons/addon_uninstall-pressed.png
A images/icons/addons/addon_uninstall.png
A images/icons/addons/addon_update-active.png
A images/icons/addons/addon_update-pressed.png
A images/icons/addons/addon_update.png
A images/icons/addons/install-active.png
A images/icons/addons/install-pressed.png
A images/icons/addons/install.png
A images/icons/addons/install2-active.png
A images/icons/addons/install2-pressed.png
A images/icons/addons/install2.png
A images/icons/addons/uninstall-active.png
A images/icons/addons/uninstall-pressed.png
A images/icons/addons/uninstall.png
A images/icons/addons/uninstall2-active.png
A images/icons/addons/uninstall2-pressed.png
A images/icons/addons/uninstall2.png
A images/icons/addons/update-active.png
A images/icons/addons/update-pressed.png
A images/icons/addons/update.png
A images/icons/addons/update2-active.png
A images/icons/addons/update2-pressed.png
A images/icons/addons/update2.png
M images/misc/loadscreen_decor.png
M players_changelog
M po/SConscript
M po/wesnoth-ai/af.po
M po/wesnoth-ai/ang.po
M po/wesnoth-ai/ang at latin.po
M po/wesnoth-ai/ar.po
M po/wesnoth-ai/ast.po
M po/wesnoth-ai/bg.po
M po/wesnoth-ai/ca.po
M po/wesnoth-ai/ca_ES at valencia.po
M po/wesnoth-ai/cs.po
M po/wesnoth-ai/da.po
M po/wesnoth-ai/de.po
M po/wesnoth-ai/el.po
M po/wesnoth-ai/en at shaw.po
M po/wesnoth-ai/en_GB.po
M po/wesnoth-ai/eo.po
M po/wesnoth-ai/es.po
M po/wesnoth-ai/et.po
M po/wesnoth-ai/eu.po
M po/wesnoth-ai/fi.po
M po/wesnoth-ai/fr.po
M po/wesnoth-ai/fur_IT.po
M po/wesnoth-ai/ga.po
M po/wesnoth-ai/gd.po
M po/wesnoth-ai/gl.po
M po/wesnoth-ai/he.po
M po/wesnoth-ai/hr.po
M po/wesnoth-ai/hu.po
M po/wesnoth-ai/id.po
M po/wesnoth-ai/is.po
M po/wesnoth-ai/it.po
M po/wesnoth-ai/ja.po
M po/wesnoth-ai/ko.po
M po/wesnoth-ai/la.po
M po/wesnoth-ai/lt.po
M po/wesnoth-ai/lv.po
M po/wesnoth-ai/mk.po
M po/wesnoth-ai/mr.po
M po/wesnoth-ai/nb_NO.po
M po/wesnoth-ai/nl.po
M po/wesnoth-ai/pl.po
M po/wesnoth-ai/pt.po
M po/wesnoth-ai/pt_BR.po
M po/wesnoth-ai/racv.po
M po/wesnoth-ai/ro.po
M po/wesnoth-ai/ru.po
M po/wesnoth-ai/sk.po
M po/wesnoth-ai/sl.po
M po/wesnoth-ai/sr.po
M po/wesnoth-ai/sr at ijekavian.po
M po/wesnoth-ai/sr at ijekavianlatin.po
M po/wesnoth-ai/sr at latin.po
M po/wesnoth-ai/sv.po
M po/wesnoth-ai/tl.po
M po/wesnoth-ai/tr.po
M po/wesnoth-ai/uk.po
M po/wesnoth-ai/vi.po
M po/wesnoth-ai/wesnoth-ai.pot
M po/wesnoth-ai/zh_CN.po
M po/wesnoth-ai/zh_TW.po
M po/wesnoth-anl/af.po
M po/wesnoth-anl/ang.po
M po/wesnoth-anl/ang at latin.po
M po/wesnoth-anl/ar.po
M po/wesnoth-anl/ast.po
M po/wesnoth-anl/bg.po
M po/wesnoth-anl/ca.po
M po/wesnoth-anl/ca_ES at valencia.po
M po/wesnoth-anl/cs.po
M po/wesnoth-anl/da.po
M po/wesnoth-anl/de.po
M po/wesnoth-anl/el.po
M po/wesnoth-anl/en at shaw.po
M po/wesnoth-anl/en_GB.po
M po/wesnoth-anl/eo.po
M po/wesnoth-anl/es.po
M po/wesnoth-anl/et.po
M po/wesnoth-anl/eu.po
M po/wesnoth-anl/fi.po
M po/wesnoth-anl/fr.po
M po/wesnoth-anl/fur_IT.po
M po/wesnoth-anl/ga.po
M po/wesnoth-anl/gd.po
M po/wesnoth-anl/gl.po
M po/wesnoth-anl/he.po
M po/wesnoth-anl/hr.po
M po/wesnoth-anl/hu.po
M po/wesnoth-anl/id.po
M po/wesnoth-anl/is.po
M po/wesnoth-anl/it.po
M po/wesnoth-anl/ja.po
M po/wesnoth-anl/ko.po
M po/wesnoth-anl/la.po
M po/wesnoth-anl/lt.po
M po/wesnoth-anl/lv.po
M po/wesnoth-anl/mk.po
M po/wesnoth-anl/mr.po
M po/wesnoth-anl/nb_NO.po
M po/wesnoth-anl/nl.po
M po/wesnoth-anl/pl.po
M po/wesnoth-anl/pt.po
M po/wesnoth-anl/pt_BR.po
M po/wesnoth-anl/racv.po
M po/wesnoth-anl/ro.po
M po/wesnoth-anl/ru.po
M po/wesnoth-anl/sk.po
M po/wesnoth-anl/sl.po
M po/wesnoth-anl/sr.po
M po/wesnoth-anl/sr at ijekavian.po
M po/wesnoth-anl/sr at ijekavianlatin.po
M po/wesnoth-anl/sr at latin.po
M po/wesnoth-anl/sv.po
M po/wesnoth-anl/tl.po
M po/wesnoth-anl/tr.po
M po/wesnoth-anl/uk.po
M po/wesnoth-anl/vi.po
M po/wesnoth-anl/wesnoth-anl.pot
M po/wesnoth-anl/zh_CN.po
M po/wesnoth-anl/zh_TW.po
M po/wesnoth-aoi/af.po
M po/wesnoth-aoi/ang.po
M po/wesnoth-aoi/ang at latin.po
M po/wesnoth-aoi/ar.po
M po/wesnoth-aoi/ast.po
M po/wesnoth-aoi/bg.po
M po/wesnoth-aoi/ca.po
M po/wesnoth-aoi/ca_ES at valencia.po
M po/wesnoth-aoi/cs.po
M po/wesnoth-aoi/da.po
M po/wesnoth-aoi/de.po
M po/wesnoth-aoi/el.po
M po/wesnoth-aoi/en at shaw.po
M po/wesnoth-aoi/en_GB.po
M po/wesnoth-aoi/eo.po
M po/wesnoth-aoi/es.po
M po/wesnoth-aoi/et.po
M po/wesnoth-aoi/eu.po
M po/wesnoth-aoi/fi.po
M po/wesnoth-aoi/fr.po
M po/wesnoth-aoi/fur_IT.po
M po/wesnoth-aoi/ga.po
M po/wesnoth-aoi/gd.po
M po/wesnoth-aoi/gl.po
M po/wesnoth-aoi/he.po
M po/wesnoth-aoi/hr.po
M po/wesnoth-aoi/hu.po
M po/wesnoth-aoi/id.po
M po/wesnoth-aoi/is.po
M po/wesnoth-aoi/it.po
M po/wesnoth-aoi/ja.po
M po/wesnoth-aoi/ko.po
M po/wesnoth-aoi/la.po
M po/wesnoth-aoi/lt.po
M po/wesnoth-aoi/lv.po
M po/wesnoth-aoi/mk.po
M po/wesnoth-aoi/mr.po
M po/wesnoth-aoi/nb_NO.po
M po/wesnoth-aoi/nl.po
M po/wesnoth-aoi/pl.po
M po/wesnoth-aoi/pt.po
M po/wesnoth-aoi/pt_BR.po
M po/wesnoth-aoi/racv.po
M po/wesnoth-aoi/ro.po
M po/wesnoth-aoi/ru.po
M po/wesnoth-aoi/sk.po
M po/wesnoth-aoi/sl.po
M po/wesnoth-aoi/sr.po
M po/wesnoth-aoi/sr at ijekavian.po
M po/wesnoth-aoi/sr at ijekavianlatin.po
M po/wesnoth-aoi/sr at latin.po
M po/wesnoth-aoi/sv.po
M po/wesnoth-aoi/tl.po
M po/wesnoth-aoi/tr.po
M po/wesnoth-aoi/uk.po
M po/wesnoth-aoi/vi.po
M po/wesnoth-aoi/wesnoth-aoi.pot
M po/wesnoth-aoi/zh_CN.po
M po/wesnoth-aoi/zh_TW.po
M po/wesnoth-did/af.po
M po/wesnoth-did/ang.po
M po/wesnoth-did/ang at latin.po
M po/wesnoth-did/ar.po
M po/wesnoth-did/ast.po
M po/wesnoth-did/bg.po
M po/wesnoth-did/ca.po
M po/wesnoth-did/ca_ES at valencia.po
M po/wesnoth-did/cs.po
M po/wesnoth-did/da.po
M po/wesnoth-did/de.po
M po/wesnoth-did/el.po
M po/wesnoth-did/en at shaw.po
M po/wesnoth-did/en_GB.po
M po/wesnoth-did/eo.po
M po/wesnoth-did/es.po
M po/wesnoth-did/et.po
M po/wesnoth-did/eu.po
M po/wesnoth-did/fi.po
M po/wesnoth-did/fr.po
M po/wesnoth-did/fur_IT.po
M po/wesnoth-did/ga.po
M po/wesnoth-did/gd.po
M po/wesnoth-did/gl.po
M po/wesnoth-did/he.po
M po/wesnoth-did/hr.po
M po/wesnoth-did/hu.po
M po/wesnoth-did/id.po
M po/wesnoth-did/is.po
M po/wesnoth-did/it.po
M po/wesnoth-did/ja.po
M po/wesnoth-did/ko.po
M po/wesnoth-did/la.po
M po/wesnoth-did/lt.po
M po/wesnoth-did/lv.po
M po/wesnoth-did/mk.po
M po/wesnoth-did/mr.po
M po/wesnoth-did/nb_NO.po
M po/wesnoth-did/nl.po
M po/wesnoth-did/pl.po
M po/wesnoth-did/pt.po
M po/wesnoth-did/pt_BR.po
M po/wesnoth-did/racv.po
M po/wesnoth-did/ro.po
M po/wesnoth-did/ru.po
M po/wesnoth-did/sk.po
M po/wesnoth-did/sl.po
M po/wesnoth-did/sr.po
M po/wesnoth-did/sr at ijekavian.po
M po/wesnoth-did/sr at ijekavianlatin.po
M po/wesnoth-did/sr at latin.po
M po/wesnoth-did/sv.po
M po/wesnoth-did/tl.po
M po/wesnoth-did/tr.po
M po/wesnoth-did/uk.po
M po/wesnoth-did/vi.po
M po/wesnoth-did/wesnoth-did.pot
M po/wesnoth-did/zh_CN.po
M po/wesnoth-did/zh_TW.po
M po/wesnoth-dm/af.po
M po/wesnoth-dm/ang.po
M po/wesnoth-dm/ang at latin.po
M po/wesnoth-dm/ar.po
M po/wesnoth-dm/ast.po
M po/wesnoth-dm/bg.po
M po/wesnoth-dm/ca.po
M po/wesnoth-dm/ca_ES at valencia.po
M po/wesnoth-dm/cs.po
M po/wesnoth-dm/da.po
M po/wesnoth-dm/de.po
M po/wesnoth-dm/el.po
M po/wesnoth-dm/en at shaw.po
M po/wesnoth-dm/en_GB.po
M po/wesnoth-dm/eo.po
M po/wesnoth-dm/es.po
M po/wesnoth-dm/et.po
M po/wesnoth-dm/eu.po
M po/wesnoth-dm/fi.po
M po/wesnoth-dm/fr.po
M po/wesnoth-dm/fur_IT.po
M po/wesnoth-dm/ga.po
M po/wesnoth-dm/gd.po
M po/wesnoth-dm/gl.po
M po/wesnoth-dm/he.po
M po/wesnoth-dm/hr.po
M po/wesnoth-dm/hu.po
M po/wesnoth-dm/id.po
M po/wesnoth-dm/is.po
M po/wesnoth-dm/it.po
M po/wesnoth-dm/ja.po
M po/wesnoth-dm/ko.po
M po/wesnoth-dm/la.po
M po/wesnoth-dm/lt.po
M po/wesnoth-dm/lv.po
M po/wesnoth-dm/mk.po
M po/wesnoth-dm/mr.po
M po/wesnoth-dm/nb_NO.po
M po/wesnoth-dm/nl.po
M po/wesnoth-dm/pl.po
M po/wesnoth-dm/pt.po
M po/wesnoth-dm/pt_BR.po
M po/wesnoth-dm/racv.po
M po/wesnoth-dm/ro.po
M po/wesnoth-dm/ru.po
M po/wesnoth-dm/sk.po
M po/wesnoth-dm/sl.po
M po/wesnoth-dm/sr.po
M po/wesnoth-dm/sr at ijekavian.po
M po/wesnoth-dm/sr at ijekavianlatin.po
M po/wesnoth-dm/sr at latin.po
M po/wesnoth-dm/sv.po
M po/wesnoth-dm/tl.po
M po/wesnoth-dm/tr.po
M po/wesnoth-dm/uk.po
M po/wesnoth-dm/vi.po
M po/wesnoth-dm/wesnoth-dm.pot
M po/wesnoth-dm/zh_CN.po
M po/wesnoth-dm/zh_TW.po
M po/wesnoth-dw/af.po
M po/wesnoth-dw/ang.po
M po/wesnoth-dw/ang at latin.po
M po/wesnoth-dw/ar.po
M po/wesnoth-dw/ast.po
M po/wesnoth-dw/bg.po
M po/wesnoth-dw/ca.po
M po/wesnoth-dw/ca_ES at valencia.po
M po/wesnoth-dw/cs.po
M po/wesnoth-dw/da.po
M po/wesnoth-dw/de.po
M po/wesnoth-dw/el.po
M po/wesnoth-dw/en at shaw.po
M po/wesnoth-dw/en_GB.po
M po/wesnoth-dw/eo.po
M po/wesnoth-dw/es.po
M po/wesnoth-dw/et.po
M po/wesnoth-dw/eu.po
M po/wesnoth-dw/fi.po
M po/wesnoth-dw/fr.po
M po/wesnoth-dw/fur_IT.po
M po/wesnoth-dw/ga.po
M po/wesnoth-dw/gd.po
M po/wesnoth-dw/gl.po
M po/wesnoth-dw/he.po
M po/wesnoth-dw/hr.po
M po/wesnoth-dw/hu.po
M po/wesnoth-dw/id.po
M po/wesnoth-dw/is.po
M po/wesnoth-dw/it.po
M po/wesnoth-dw/ja.po
M po/wesnoth-dw/ko.po
M po/wesnoth-dw/la.po
M po/wesnoth-dw/lt.po
M po/wesnoth-dw/lv.po
M po/wesnoth-dw/mk.po
M po/wesnoth-dw/mr.po
M po/wesnoth-dw/nb_NO.po
M po/wesnoth-dw/nl.po
M po/wesnoth-dw/pl.po
M po/wesnoth-dw/pt.po
M po/wesnoth-dw/pt_BR.po
M po/wesnoth-dw/racv.po
M po/wesnoth-dw/ro.po
M po/wesnoth-dw/ru.po
M po/wesnoth-dw/sk.po
M po/wesnoth-dw/sl.po
M po/wesnoth-dw/sr.po
M po/wesnoth-dw/sr at ijekavian.po
M po/wesnoth-dw/sr at ijekavianlatin.po
M po/wesnoth-dw/sr at latin.po
M po/wesnoth-dw/sv.po
M po/wesnoth-dw/tl.po
M po/wesnoth-dw/tr.po
M po/wesnoth-dw/uk.po
M po/wesnoth-dw/vi.po
M po/wesnoth-dw/wesnoth-dw.pot
M po/wesnoth-dw/zh_CN.po
M po/wesnoth-dw/zh_TW.po
M po/wesnoth-editor/af.po
M po/wesnoth-editor/ang.po
M po/wesnoth-editor/ang at latin.po
M po/wesnoth-editor/ar.po
M po/wesnoth-editor/ast.po
M po/wesnoth-editor/bg.po
M po/wesnoth-editor/ca.po
M po/wesnoth-editor/ca_ES at valencia.po
M po/wesnoth-editor/cs.po
M po/wesnoth-editor/da.po
M po/wesnoth-editor/de.po
M po/wesnoth-editor/el.po
M po/wesnoth-editor/en at shaw.po
M po/wesnoth-editor/en_GB.po
M po/wesnoth-editor/eo.po
M po/wesnoth-editor/es.po
M po/wesnoth-editor/et.po
M po/wesnoth-editor/eu.po
M po/wesnoth-editor/fi.po
M po/wesnoth-editor/fr.po
M po/wesnoth-editor/fur_IT.po
M po/wesnoth-editor/ga.po
M po/wesnoth-editor/gd.po
M po/wesnoth-editor/gl.po
M po/wesnoth-editor/he.po
M po/wesnoth-editor/hr.po
M po/wesnoth-editor/hu.po
M po/wesnoth-editor/id.po
M po/wesnoth-editor/is.po
M po/wesnoth-editor/it.po
M po/wesnoth-editor/ja.po
M po/wesnoth-editor/ko.po
M po/wesnoth-editor/la.po
M po/wesnoth-editor/lt.po
M po/wesnoth-editor/lv.po
M po/wesnoth-editor/mk.po
M po/wesnoth-editor/mr.po
M po/wesnoth-editor/nb_NO.po
M po/wesnoth-editor/nl.po
M po/wesnoth-editor/pl.po
M po/wesnoth-editor/pt.po
M po/wesnoth-editor/pt_BR.po
M po/wesnoth-editor/racv.po
M po/wesnoth-editor/ro.po
M po/wesnoth-editor/ru.po
M po/wesnoth-editor/sk.po
M po/wesnoth-editor/sl.po
M po/wesnoth-editor/sr.po
M po/wesnoth-editor/sr at ijekavian.po
M po/wesnoth-editor/sr at ijekavianlatin.po
M po/wesnoth-editor/sr at latin.po
M po/wesnoth-editor/sv.po
M po/wesnoth-editor/tl.po
M po/wesnoth-editor/tr.po
M po/wesnoth-editor/uk.po
M po/wesnoth-editor/vi.po
M po/wesnoth-editor/wesnoth-editor.pot
M po/wesnoth-editor/zh_CN.po
M po/wesnoth-editor/zh_TW.po
M po/wesnoth-ei/af.po
M po/wesnoth-ei/ang.po
M po/wesnoth-ei/ang at latin.po
M po/wesnoth-ei/ar.po
M po/wesnoth-ei/ast.po
M po/wesnoth-ei/bg.po
M po/wesnoth-ei/ca.po
M po/wesnoth-ei/ca_ES at valencia.po
M po/wesnoth-ei/cs.po
M po/wesnoth-ei/da.po
M po/wesnoth-ei/de.po
M po/wesnoth-ei/el.po
M po/wesnoth-ei/en at shaw.po
M po/wesnoth-ei/en_GB.po
M po/wesnoth-ei/eo.po
M po/wesnoth-ei/es.po
M po/wesnoth-ei/et.po
M po/wesnoth-ei/eu.po
M po/wesnoth-ei/fi.po
M po/wesnoth-ei/fr.po
M po/wesnoth-ei/fur_IT.po
M po/wesnoth-ei/ga.po
M po/wesnoth-ei/gd.po
M po/wesnoth-ei/gl.po
M po/wesnoth-ei/he.po
M po/wesnoth-ei/hr.po
M po/wesnoth-ei/hu.po
M po/wesnoth-ei/id.po
M po/wesnoth-ei/is.po
M po/wesnoth-ei/it.po
M po/wesnoth-ei/ja.po
M po/wesnoth-ei/ko.po
M po/wesnoth-ei/la.po
M po/wesnoth-ei/lt.po
M po/wesnoth-ei/lv.po
M po/wesnoth-ei/mk.po
M po/wesnoth-ei/mr.po
M po/wesnoth-ei/nb_NO.po
M po/wesnoth-ei/nl.po
M po/wesnoth-ei/pl.po
M po/wesnoth-ei/pt.po
M po/wesnoth-ei/pt_BR.po
M po/wesnoth-ei/racv.po
M po/wesnoth-ei/ro.po
M po/wesnoth-ei/ru.po
M po/wesnoth-ei/sk.po
M po/wesnoth-ei/sl.po
M po/wesnoth-ei/sr.po
M po/wesnoth-ei/sr at ijekavian.po
M po/wesnoth-ei/sr at ijekavianlatin.po
M po/wesnoth-ei/sr at latin.po
M po/wesnoth-ei/sv.po
M po/wesnoth-ei/tl.po
M po/wesnoth-ei/tr.po
M po/wesnoth-ei/uk.po
M po/wesnoth-ei/vi.po
M po/wesnoth-ei/wesnoth-ei.pot
M po/wesnoth-ei/zh_CN.po
M po/wesnoth-ei/zh_TW.po
M po/wesnoth-help/af.po
M po/wesnoth-help/ang.po
M po/wesnoth-help/ang at latin.po
M po/wesnoth-help/ar.po
M po/wesnoth-help/ast.po
M po/wesnoth-help/bg.po
M po/wesnoth-help/ca.po
M po/wesnoth-help/ca_ES at valencia.po
M po/wesnoth-help/cs.po
M po/wesnoth-help/da.po
M po/wesnoth-help/de.po
M po/wesnoth-help/el.po
M po/wesnoth-help/en at shaw.po
M po/wesnoth-help/en_GB.po
M po/wesnoth-help/eo.po
M po/wesnoth-help/es.po
M po/wesnoth-help/et.po
M po/wesnoth-help/eu.po
M po/wesnoth-help/fi.po
M po/wesnoth-help/fr.po
M po/wesnoth-help/fur_IT.po
M po/wesnoth-help/ga.po
M po/wesnoth-help/gd.po
M po/wesnoth-help/gl.po
M po/wesnoth-help/he.po
M po/wesnoth-help/hr.po
M po/wesnoth-help/hu.po
M po/wesnoth-help/id.po
M po/wesnoth-help/is.po
M po/wesnoth-help/it.po
M po/wesnoth-help/ja.po
M po/wesnoth-help/ko.po
M po/wesnoth-help/la.po
M po/wesnoth-help/lt.po
M po/wesnoth-help/lv.po
M po/wesnoth-help/mk.po
M po/wesnoth-help/mr.po
M po/wesnoth-help/nb_NO.po
M po/wesnoth-help/nl.po
M po/wesnoth-help/pl.po
M po/wesnoth-help/pt.po
M po/wesnoth-help/pt_BR.po
M po/wesnoth-help/racv.po
M po/wesnoth-help/ro.po
M po/wesnoth-help/ru.po
M po/wesnoth-help/sk.po
M po/wesnoth-help/sl.po
M po/wesnoth-help/sr.po
M po/wesnoth-help/sr at ijekavian.po
M po/wesnoth-help/sr at ijekavianlatin.po
M po/wesnoth-help/sr at latin.po
M po/wesnoth-help/sv.po
M po/wesnoth-help/tl.po
M po/wesnoth-help/tr.po
M po/wesnoth-help/uk.po
M po/wesnoth-help/vi.po
M po/wesnoth-help/wesnoth-help.pot
M po/wesnoth-help/zh_CN.po
M po/wesnoth-help/zh_TW.po
M po/wesnoth-httt/af.po
M po/wesnoth-httt/ang.po
M po/wesnoth-httt/ang at latin.po
M po/wesnoth-httt/ar.po
M po/wesnoth-httt/ast.po
M po/wesnoth-httt/bg.po
M po/wesnoth-httt/ca.po
M po/wesnoth-httt/ca_ES at valencia.po
M po/wesnoth-httt/cs.po
M po/wesnoth-httt/da.po
M po/wesnoth-httt/de.po
M po/wesnoth-httt/el.po
M po/wesnoth-httt/en at shaw.po
M po/wesnoth-httt/en_GB.po
M po/wesnoth-httt/eo.po
M po/wesnoth-httt/es.po
M po/wesnoth-httt/et.po
M po/wesnoth-httt/eu.po
M po/wesnoth-httt/fi.po
M po/wesnoth-httt/fr.po
M po/wesnoth-httt/fur_IT.po
M po/wesnoth-httt/ga.po
M po/wesnoth-httt/gd.po
M po/wesnoth-httt/gl.po
M po/wesnoth-httt/he.po
M po/wesnoth-httt/hr.po
M po/wesnoth-httt/hu.po
M po/wesnoth-httt/id.po
M po/wesnoth-httt/is.po
M po/wesnoth-httt/it.po
M po/wesnoth-httt/ja.po
M po/wesnoth-httt/ko.po
M po/wesnoth-httt/la.po
M po/wesnoth-httt/lt.po
M po/wesnoth-httt/lv.po
M po/wesnoth-httt/mk.po
M po/wesnoth-httt/mr.po
M po/wesnoth-httt/nb_NO.po
M po/wesnoth-httt/nl.po
M po/wesnoth-httt/pl.po
M po/wesnoth-httt/pt.po
M po/wesnoth-httt/pt_BR.po
M po/wesnoth-httt/racv.po
M po/wesnoth-httt/ro.po
M po/wesnoth-httt/ru.po
M po/wesnoth-httt/sk.po
M po/wesnoth-httt/sl.po
M po/wesnoth-httt/sr.po
M po/wesnoth-httt/sr at ijekavian.po
M po/wesnoth-httt/sr at ijekavianlatin.po
M po/wesnoth-httt/sr at latin.po
M po/wesnoth-httt/sv.po
M po/wesnoth-httt/tl.po
M po/wesnoth-httt/tr.po
M po/wesnoth-httt/uk.po
M po/wesnoth-httt/vi.po
M po/wesnoth-httt/wesnoth-httt.pot
M po/wesnoth-httt/zh_CN.po
M po/wesnoth-httt/zh_TW.po
M po/wesnoth-l/af.po
M po/wesnoth-l/ang.po
M po/wesnoth-l/ang at latin.po
M po/wesnoth-l/ar.po
M po/wesnoth-l/ast.po
M po/wesnoth-l/bg.po
M po/wesnoth-l/ca.po
M po/wesnoth-l/ca_ES at valencia.po
M po/wesnoth-l/cs.po
M po/wesnoth-l/da.po
M po/wesnoth-l/de.po
M po/wesnoth-l/el.po
M po/wesnoth-l/en at shaw.po
M po/wesnoth-l/en_GB.po
M po/wesnoth-l/eo.po
M po/wesnoth-l/es.po
M po/wesnoth-l/et.po
M po/wesnoth-l/eu.po
M po/wesnoth-l/fi.po
M po/wesnoth-l/fr.po
M po/wesnoth-l/fur_IT.po
M po/wesnoth-l/ga.po
M po/wesnoth-l/gd.po
M po/wesnoth-l/gl.po
M po/wesnoth-l/he.po
M po/wesnoth-l/hr.po
M po/wesnoth-l/hu.po
M po/wesnoth-l/id.po
M po/wesnoth-l/is.po
M po/wesnoth-l/it.po
M po/wesnoth-l/ja.po
M po/wesnoth-l/ko.po
M po/wesnoth-l/la.po
M po/wesnoth-l/lt.po
M po/wesnoth-l/lv.po
M po/wesnoth-l/mk.po
M po/wesnoth-l/mr.po
M po/wesnoth-l/nb_NO.po
M po/wesnoth-l/nl.po
M po/wesnoth-l/pl.po
M po/wesnoth-l/pt.po
M po/wesnoth-l/pt_BR.po
M po/wesnoth-l/racv.po
M po/wesnoth-l/ro.po
M po/wesnoth-l/ru.po
M po/wesnoth-l/sk.po
M po/wesnoth-l/sl.po
M po/wesnoth-l/sr.po
M po/wesnoth-l/sr at ijekavian.po
M po/wesnoth-l/sr at ijekavianlatin.po
M po/wesnoth-l/sr at latin.po
M po/wesnoth-l/sv.po
M po/wesnoth-l/tl.po
M po/wesnoth-l/tr.po
M po/wesnoth-l/uk.po
M po/wesnoth-l/vi.po
M po/wesnoth-l/wesnoth-l.pot
M po/wesnoth-l/zh_CN.po
M po/wesnoth-l/zh_TW.po
M po/wesnoth-lib/af.po
M po/wesnoth-lib/ang.po
M po/wesnoth-lib/ang at latin.po
M po/wesnoth-lib/ar.po
M po/wesnoth-lib/ast.po
M po/wesnoth-lib/bg.po
M po/wesnoth-lib/ca.po
M po/wesnoth-lib/ca_ES at valencia.po
M po/wesnoth-lib/cs.po
M po/wesnoth-lib/da.po
M po/wesnoth-lib/de.po
M po/wesnoth-lib/el.po
M po/wesnoth-lib/en at shaw.po
M po/wesnoth-lib/en_GB.po
M po/wesnoth-lib/eo.po
M po/wesnoth-lib/es.po
M po/wesnoth-lib/et.po
M po/wesnoth-lib/eu.po
M po/wesnoth-lib/fi.po
M po/wesnoth-lib/fr.po
M po/wesnoth-lib/fur_IT.po
M po/wesnoth-lib/ga.po
M po/wesnoth-lib/gd.po
M po/wesnoth-lib/gl.po
M po/wesnoth-lib/he.po
M po/wesnoth-lib/hr.po
M po/wesnoth-lib/hu.po
M po/wesnoth-lib/id.po
M po/wesnoth-lib/is.po
M po/wesnoth-lib/it.po
M po/wesnoth-lib/ja.po
M po/wesnoth-lib/ko.po
M po/wesnoth-lib/la.po
M po/wesnoth-lib/lt.po
M po/wesnoth-lib/lv.po
M po/wesnoth-lib/mk.po
M po/wesnoth-lib/mr.po
M po/wesnoth-lib/nb_NO.po
M po/wesnoth-lib/nl.po
M po/wesnoth-lib/pl.po
M po/wesnoth-lib/pt.po
M po/wesnoth-lib/pt_BR.po
M po/wesnoth-lib/racv.po
M po/wesnoth-lib/ro.po
M po/wesnoth-lib/ru.po
M po/wesnoth-lib/sk.po
M po/wesnoth-lib/sl.po
M po/wesnoth-lib/sr.po
M po/wesnoth-lib/sr at ijekavian.po
M po/wesnoth-lib/sr at ijekavianlatin.po
M po/wesnoth-lib/sr at latin.po
M po/wesnoth-lib/sv.po
M po/wesnoth-lib/tl.po
M po/wesnoth-lib/tr.po
M po/wesnoth-lib/uk.po
M po/wesnoth-lib/vi.po
M po/wesnoth-lib/wesnoth-lib.pot
M po/wesnoth-lib/zh_CN.po
M po/wesnoth-lib/zh_TW.po
M po/wesnoth-low/af.po
M po/wesnoth-low/ang.po
M po/wesnoth-low/ang at latin.po
M po/wesnoth-low/ar.po
M po/wesnoth-low/ast.po
M po/wesnoth-low/bg.po
M po/wesnoth-low/ca.po
M po/wesnoth-low/ca_ES at valencia.po
M po/wesnoth-low/cs.po
M po/wesnoth-low/da.po
M po/wesnoth-low/de.po
M po/wesnoth-low/el.po
M po/wesnoth-low/en at shaw.po
M po/wesnoth-low/en_GB.po
M po/wesnoth-low/eo.po
M po/wesnoth-low/es.po
M po/wesnoth-low/et.po
M po/wesnoth-low/eu.po
M po/wesnoth-low/fi.po
M po/wesnoth-low/fr.po
M po/wesnoth-low/fur_IT.po
M po/wesnoth-low/ga.po
M po/wesnoth-low/gd.po
M po/wesnoth-low/gl.po
M po/wesnoth-low/he.po
M po/wesnoth-low/hr.po
M po/wesnoth-low/hu.po
M po/wesnoth-low/id.po
M po/wesnoth-low/is.po
M po/wesnoth-low/it.po
M po/wesnoth-low/ja.po
M po/wesnoth-low/ko.po
M po/wesnoth-low/la.po
M po/wesnoth-low/lt.po
M po/wesnoth-low/lv.po
M po/wesnoth-low/mk.po
M po/wesnoth-low/mr.po
M po/wesnoth-low/nb_NO.po
M po/wesnoth-low/nl.po
M po/wesnoth-low/pl.po
M po/wesnoth-low/pt.po
M po/wesnoth-low/pt_BR.po
M po/wesnoth-low/racv.po
M po/wesnoth-low/ro.po
M po/wesnoth-low/ru.po
M po/wesnoth-low/sk.po
M po/wesnoth-low/sl.po
M po/wesnoth-low/sr.po
M po/wesnoth-low/sr at ijekavian.po
M po/wesnoth-low/sr at ijekavianlatin.po
M po/wesnoth-low/sr at latin.po
M po/wesnoth-low/sv.po
M po/wesnoth-low/tl.po
M po/wesnoth-low/tr.po
M po/wesnoth-low/uk.po
M po/wesnoth-low/vi.po
M po/wesnoth-low/wesnoth-low.pot
M po/wesnoth-low/zh_CN.po
M po/wesnoth-low/zh_TW.po
M po/wesnoth-manpages/af.po
M po/wesnoth-manpages/ang.po
M po/wesnoth-manpages/ang at latin.po
M po/wesnoth-manpages/ar.po
M po/wesnoth-manpages/ast.po
M po/wesnoth-manpages/bg.po
M po/wesnoth-manpages/ca.po
M po/wesnoth-manpages/ca_ES at valencia.po
M po/wesnoth-manpages/cs.po
M po/wesnoth-manpages/da.po
M po/wesnoth-manpages/de.po
M po/wesnoth-manpages/el.po
M po/wesnoth-manpages/en at shaw.po
M po/wesnoth-manpages/en_GB.po
M po/wesnoth-manpages/eo.po
M po/wesnoth-manpages/es.po
M po/wesnoth-manpages/et.po
M po/wesnoth-manpages/eu.po
M po/wesnoth-manpages/fi.po
M po/wesnoth-manpages/fr.po
M po/wesnoth-manpages/fur_IT.po
M po/wesnoth-manpages/ga.po
M po/wesnoth-manpages/gd.po
M po/wesnoth-manpages/gl.po
M po/wesnoth-manpages/he.po
M po/wesnoth-manpages/hr.po
M po/wesnoth-manpages/hu.po
M po/wesnoth-manpages/id.po
M po/wesnoth-manpages/is.po
M po/wesnoth-manpages/it.po
M po/wesnoth-manpages/ja.po
M po/wesnoth-manpages/ko.po
M po/wesnoth-manpages/la.po
M po/wesnoth-manpages/lt.po
M po/wesnoth-manpages/lv.po
M po/wesnoth-manpages/mk.po
M po/wesnoth-manpages/mr.po
M po/wesnoth-manpages/nb_NO.po
M po/wesnoth-manpages/nl.po
M po/wesnoth-manpages/pl.po
M po/wesnoth-manpages/pt.po
M po/wesnoth-manpages/pt_BR.po
M po/wesnoth-manpages/racv.po
M po/wesnoth-manpages/ro.po
M po/wesnoth-manpages/ru.po
M po/wesnoth-manpages/sk.po
M po/wesnoth-manpages/sl.po
M po/wesnoth-manpages/sr.po
M po/wesnoth-manpages/sr at ijekavian.po
M po/wesnoth-manpages/sr at ijekavianlatin.po
M po/wesnoth-manpages/sr at latin.po
M po/wesnoth-manpages/sv.po
M po/wesnoth-manpages/tl.po
M po/wesnoth-manpages/tr.po
M po/wesnoth-manpages/uk.po
M po/wesnoth-manpages/vi.po
M po/wesnoth-manpages/wesnoth-manpages.pot
M po/wesnoth-manpages/zh_CN.po
M po/wesnoth-manpages/zh_TW.po
M po/wesnoth-manual/af.po
M po/wesnoth-manual/ang.po
M po/wesnoth-manual/ang at latin.po
M po/wesnoth-manual/ar.po
M po/wesnoth-manual/ast.po
M po/wesnoth-manual/bg.po
M po/wesnoth-manual/ca.po
M po/wesnoth-manual/ca_ES at valencia.po
M po/wesnoth-manual/cs.po
M po/wesnoth-manual/da.po
M po/wesnoth-manual/de.po
M po/wesnoth-manual/el.po
M po/wesnoth-manual/en at shaw.po
M po/wesnoth-manual/en_GB.po
M po/wesnoth-manual/eo.po
M po/wesnoth-manual/es.po
M po/wesnoth-manual/et.po
M po/wesnoth-manual/eu.po
M po/wesnoth-manual/fi.po
M po/wesnoth-manual/fr.po
M po/wesnoth-manual/fur_IT.po
M po/wesnoth-manual/ga.po
M po/wesnoth-manual/gd.po
M po/wesnoth-manual/gl.po
M po/wesnoth-manual/he.po
M po/wesnoth-manual/hr.po
M po/wesnoth-manual/hu.po
M po/wesnoth-manual/id.po
M po/wesnoth-manual/is.po
M po/wesnoth-manual/it.po
M po/wesnoth-manual/ja.po
M po/wesnoth-manual/ko.po
M po/wesnoth-manual/la.po
M po/wesnoth-manual/lt.po
M po/wesnoth-manual/lv.po
M po/wesnoth-manual/mk.po
M po/wesnoth-manual/mr.po
M po/wesnoth-manual/nb_NO.po
M po/wesnoth-manual/nl.po
M po/wesnoth-manual/pl.po
M po/wesnoth-manual/pt.po
M po/wesnoth-manual/pt_BR.po
M po/wesnoth-manual/racv.po
M po/wesnoth-manual/ro.po
M po/wesnoth-manual/ru.po
M po/wesnoth-manual/sk.po
M po/wesnoth-manual/sl.po
M po/wesnoth-manual/sr.po
M po/wesnoth-manual/sr at ijekavian.po
M po/wesnoth-manual/sr at ijekavianlatin.po
M po/wesnoth-manual/sr at latin.po
M po/wesnoth-manual/sv.po
M po/wesnoth-manual/tl.po
M po/wesnoth-manual/tr.po
M po/wesnoth-manual/uk.po
M po/wesnoth-manual/vi.po
M po/wesnoth-manual/wesnoth-manual.pot
M po/wesnoth-manual/zh_CN.po
M po/wesnoth-manual/zh_TW.po
M po/wesnoth-multiplayer/af.po
M po/wesnoth-multiplayer/ang.po
M po/wesnoth-multiplayer/ang at latin.po
M po/wesnoth-multiplayer/ar.po
M po/wesnoth-multiplayer/ast.po
M po/wesnoth-multiplayer/bg.po
M po/wesnoth-multiplayer/ca.po
M po/wesnoth-multiplayer/ca_ES at valencia.po
M po/wesnoth-multiplayer/cs.po
M po/wesnoth-multiplayer/da.po
M po/wesnoth-multiplayer/de.po
M po/wesnoth-multiplayer/el.po
M po/wesnoth-multiplayer/en at shaw.po
M po/wesnoth-multiplayer/en_GB.po
M po/wesnoth-multiplayer/eo.po
M po/wesnoth-multiplayer/es.po
M po/wesnoth-multiplayer/et.po
M po/wesnoth-multiplayer/eu.po
M po/wesnoth-multiplayer/fi.po
M po/wesnoth-multiplayer/fr.po
M po/wesnoth-multiplayer/fur_IT.po
M po/wesnoth-multiplayer/ga.po
M po/wesnoth-multiplayer/gd.po
M po/wesnoth-multiplayer/gl.po
M po/wesnoth-multiplayer/he.po
M po/wesnoth-multiplayer/hr.po
M po/wesnoth-multiplayer/hu.po
M po/wesnoth-multiplayer/id.po
M po/wesnoth-multiplayer/is.po
M po/wesnoth-multiplayer/it.po
M po/wesnoth-multiplayer/ja.po
M po/wesnoth-multiplayer/ko.po
M po/wesnoth-multiplayer/la.po
M po/wesnoth-multiplayer/lt.po
M po/wesnoth-multiplayer/lv.po
M po/wesnoth-multiplayer/mk.po
M po/wesnoth-multiplayer/mr.po
M po/wesnoth-multiplayer/nb_NO.po
M po/wesnoth-multiplayer/nl.po
M po/wesnoth-multiplayer/pl.po
M po/wesnoth-multiplayer/pt.po
M po/wesnoth-multiplayer/pt_BR.po
M po/wesnoth-multiplayer/racv.po
M po/wesnoth-multiplayer/ro.po
M po/wesnoth-multiplayer/ru.po
M po/wesnoth-multiplayer/sk.po
M po/wesnoth-multiplayer/sl.po
M po/wesnoth-multiplayer/sr.po
M po/wesnoth-multiplayer/sr at ijekavian.po
M po/wesnoth-multiplayer/sr at ijekavianlatin.po
M po/wesnoth-multiplayer/sr at latin.po
M po/wesnoth-multiplayer/sv.po
M po/wesnoth-multiplayer/tl.po
M po/wesnoth-multiplayer/tr.po
M po/wesnoth-multiplayer/uk.po
M po/wesnoth-multiplayer/vi.po
M po/wesnoth-multiplayer/wesnoth-multiplayer.pot
M po/wesnoth-multiplayer/zh_CN.po
M po/wesnoth-multiplayer/zh_TW.po
M po/wesnoth-nr/af.po
M po/wesnoth-nr/ang.po
M po/wesnoth-nr/ang at latin.po
M po/wesnoth-nr/ar.po
M po/wesnoth-nr/ast.po
M po/wesnoth-nr/bg.po
M po/wesnoth-nr/ca.po
M po/wesnoth-nr/ca_ES at valencia.po
M po/wesnoth-nr/cs.po
M po/wesnoth-nr/da.po
M po/wesnoth-nr/de.po
M po/wesnoth-nr/el.po
M po/wesnoth-nr/en at shaw.po
M po/wesnoth-nr/en_GB.po
M po/wesnoth-nr/eo.po
M po/wesnoth-nr/es.po
M po/wesnoth-nr/et.po
M po/wesnoth-nr/eu.po
M po/wesnoth-nr/fi.po
M po/wesnoth-nr/fr.po
M po/wesnoth-nr/fur_IT.po
M po/wesnoth-nr/ga.po
M po/wesnoth-nr/gd.po
M po/wesnoth-nr/gl.po
M po/wesnoth-nr/he.po
M po/wesnoth-nr/hr.po
M po/wesnoth-nr/hu.po
M po/wesnoth-nr/id.po
M po/wesnoth-nr/is.po
M po/wesnoth-nr/it.po
M po/wesnoth-nr/ja.po
M po/wesnoth-nr/ko.po
M po/wesnoth-nr/la.po
M po/wesnoth-nr/lt.po
M po/wesnoth-nr/lv.po
M po/wesnoth-nr/mk.po
M po/wesnoth-nr/mr.po
M po/wesnoth-nr/nb_NO.po
M po/wesnoth-nr/nl.po
M po/wesnoth-nr/pl.po
M po/wesnoth-nr/pt.po
M po/wesnoth-nr/pt_BR.po
M po/wesnoth-nr/racv.po
M po/wesnoth-nr/ro.po
M po/wesnoth-nr/ru.po
M po/wesnoth-nr/sk.po
M po/wesnoth-nr/sl.po
M po/wesnoth-nr/sr.po
M po/wesnoth-nr/sr at ijekavian.po
M po/wesnoth-nr/sr at ijekavianlatin.po
M po/wesnoth-nr/sr at latin.po
M po/wesnoth-nr/sv.po
M po/wesnoth-nr/tl.po
M po/wesnoth-nr/tr.po
M po/wesnoth-nr/uk.po
M po/wesnoth-nr/vi.po
M po/wesnoth-nr/wesnoth-nr.pot
M po/wesnoth-nr/zh_CN.po
M po/wesnoth-nr/zh_TW.po
M po/wesnoth-sof/af.po
M po/wesnoth-sof/ang.po
M po/wesnoth-sof/ang at latin.po
M po/wesnoth-sof/ar.po
M po/wesnoth-sof/ast.po
M po/wesnoth-sof/bg.po
M po/wesnoth-sof/ca.po
M po/wesnoth-sof/ca_ES at valencia.po
M po/wesnoth-sof/cs.po
M po/wesnoth-sof/da.po
M po/wesnoth-sof/de.po
M po/wesnoth-sof/el.po
M po/wesnoth-sof/en at shaw.po
M po/wesnoth-sof/en_GB.po
M po/wesnoth-sof/eo.po
M po/wesnoth-sof/es.po
M po/wesnoth-sof/et.po
M po/wesnoth-sof/eu.po
M po/wesnoth-sof/fi.po
M po/wesnoth-sof/fr.po
M po/wesnoth-sof/fur_IT.po
M po/wesnoth-sof/ga.po
M po/wesnoth-sof/gd.po
M po/wesnoth-sof/gl.po
M po/wesnoth-sof/he.po
M po/wesnoth-sof/hr.po
M po/wesnoth-sof/hu.po
M po/wesnoth-sof/id.po
M po/wesnoth-sof/is.po
M po/wesnoth-sof/it.po
M po/wesnoth-sof/ja.po
M po/wesnoth-sof/ko.po
M po/wesnoth-sof/la.po
M po/wesnoth-sof/lt.po
M po/wesnoth-sof/lv.po
M po/wesnoth-sof/mk.po
M po/wesnoth-sof/mr.po
M po/wesnoth-sof/nb_NO.po
M po/wesnoth-sof/nl.po
M po/wesnoth-sof/pl.po
M po/wesnoth-sof/pt.po
M po/wesnoth-sof/pt_BR.po
M po/wesnoth-sof/racv.po
M po/wesnoth-sof/ro.po
M po/wesnoth-sof/ru.po
M po/wesnoth-sof/sk.po
M po/wesnoth-sof/sl.po
M po/wesnoth-sof/sr.po
M po/wesnoth-sof/sr at ijekavian.po
M po/wesnoth-sof/sr at ijekavianlatin.po
M po/wesnoth-sof/sr at latin.po
M po/wesnoth-sof/sv.po
M po/wesnoth-sof/tl.po
M po/wesnoth-sof/tr.po
M po/wesnoth-sof/uk.po
M po/wesnoth-sof/vi.po
M po/wesnoth-sof/wesnoth-sof.pot
M po/wesnoth-sof/zh_CN.po
M po/wesnoth-sof/zh_TW.po
M po/wesnoth-sotbe/af.po
M po/wesnoth-sotbe/ang.po
M po/wesnoth-sotbe/ang at latin.po
M po/wesnoth-sotbe/ar.po
M po/wesnoth-sotbe/ast.po
M po/wesnoth-sotbe/bg.po
M po/wesnoth-sotbe/ca.po
M po/wesnoth-sotbe/ca_ES at valencia.po
M po/wesnoth-sotbe/cs.po
M po/wesnoth-sotbe/da.po
M po/wesnoth-sotbe/de.po
M po/wesnoth-sotbe/el.po
M po/wesnoth-sotbe/en at shaw.po
M po/wesnoth-sotbe/en_GB.po
M po/wesnoth-sotbe/eo.po
M po/wesnoth-sotbe/es.po
M po/wesnoth-sotbe/et.po
M po/wesnoth-sotbe/eu.po
M po/wesnoth-sotbe/fi.po
M po/wesnoth-sotbe/fr.po
M po/wesnoth-sotbe/fur_IT.po
M po/wesnoth-sotbe/ga.po
M po/wesnoth-sotbe/gd.po
M po/wesnoth-sotbe/gl.po
M po/wesnoth-sotbe/he.po
M po/wesnoth-sotbe/hr.po
M po/wesnoth-sotbe/hu.po
M po/wesnoth-sotbe/id.po
M po/wesnoth-sotbe/is.po
M po/wesnoth-sotbe/it.po
M po/wesnoth-sotbe/ja.po
M po/wesnoth-sotbe/ko.po
M po/wesnoth-sotbe/la.po
M po/wesnoth-sotbe/lt.po
M po/wesnoth-sotbe/lv.po
M po/wesnoth-sotbe/mk.po
M po/wesnoth-sotbe/mr.po
M po/wesnoth-sotbe/nb_NO.po
M po/wesnoth-sotbe/nl.po
M po/wesnoth-sotbe/pl.po
M po/wesnoth-sotbe/pt.po
M po/wesnoth-sotbe/pt_BR.po
M po/wesnoth-sotbe/racv.po
M po/wesnoth-sotbe/ro.po
M po/wesnoth-sotbe/ru.po
M po/wesnoth-sotbe/sk.po
M po/wesnoth-sotbe/sl.po
M po/wesnoth-sotbe/sr.po
M po/wesnoth-sotbe/sr at ijekavian.po
M po/wesnoth-sotbe/sr at ijekavianlatin.po
M po/wesnoth-sotbe/sr at latin.po
M po/wesnoth-sotbe/sv.po
M po/wesnoth-sotbe/tl.po
M po/wesnoth-sotbe/tr.po
M po/wesnoth-sotbe/uk.po
M po/wesnoth-sotbe/vi.po
M po/wesnoth-sotbe/wesnoth-sotbe.pot
M po/wesnoth-sotbe/zh_CN.po
M po/wesnoth-sotbe/zh_TW.po
M po/wesnoth-tb/af.po
M po/wesnoth-tb/ang.po
M po/wesnoth-tb/ang at latin.po
M po/wesnoth-tb/ar.po
M po/wesnoth-tb/ast.po
M po/wesnoth-tb/bg.po
M po/wesnoth-tb/ca.po
M po/wesnoth-tb/ca_ES at valencia.po
M po/wesnoth-tb/cs.po
M po/wesnoth-tb/da.po
M po/wesnoth-tb/de.po
M po/wesnoth-tb/el.po
M po/wesnoth-tb/en at shaw.po
M po/wesnoth-tb/en_GB.po
M po/wesnoth-tb/eo.po
M po/wesnoth-tb/es.po
M po/wesnoth-tb/et.po
M po/wesnoth-tb/eu.po
M po/wesnoth-tb/fi.po
M po/wesnoth-tb/fr.po
M po/wesnoth-tb/fur_IT.po
M po/wesnoth-tb/ga.po
M po/wesnoth-tb/gd.po
M po/wesnoth-tb/gl.po
M po/wesnoth-tb/he.po
M po/wesnoth-tb/hr.po
M po/wesnoth-tb/hu.po
M po/wesnoth-tb/id.po
M po/wesnoth-tb/is.po
M po/wesnoth-tb/it.po
M po/wesnoth-tb/ja.po
M po/wesnoth-tb/ko.po
M po/wesnoth-tb/la.po
M po/wesnoth-tb/lt.po
M po/wesnoth-tb/lv.po
M po/wesnoth-tb/mk.po
M po/wesnoth-tb/mr.po
M po/wesnoth-tb/nb_NO.po
M po/wesnoth-tb/nl.po
M po/wesnoth-tb/pl.po
M po/wesnoth-tb/pt.po
M po/wesnoth-tb/pt_BR.po
M po/wesnoth-tb/racv.po
M po/wesnoth-tb/ro.po
M po/wesnoth-tb/ru.po
M po/wesnoth-tb/sk.po
M po/wesnoth-tb/sl.po
M po/wesnoth-tb/sr.po
M po/wesnoth-tb/sr at ijekavian.po
M po/wesnoth-tb/sr at ijekavianlatin.po
M po/wesnoth-tb/sr at latin.po
M po/wesnoth-tb/sv.po
M po/wesnoth-tb/tl.po
M po/wesnoth-tb/tr.po
M po/wesnoth-tb/uk.po
M po/wesnoth-tb/vi.po
M po/wesnoth-tb/wesnoth-tb.pot
M po/wesnoth-tb/zh_CN.po
M po/wesnoth-tb/zh_TW.po
M po/wesnoth-test/ja.po
M po/wesnoth-thot/af.po
M po/wesnoth-thot/ang.po
M po/wesnoth-thot/ang at latin.po
M po/wesnoth-thot/ar.po
M po/wesnoth-thot/ast.po
M po/wesnoth-thot/bg.po
M po/wesnoth-thot/ca.po
M po/wesnoth-thot/ca_ES at valencia.po
M po/wesnoth-thot/cs.po
M po/wesnoth-thot/da.po
M po/wesnoth-thot/de.po
M po/wesnoth-thot/el.po
M po/wesnoth-thot/en at shaw.po
M po/wesnoth-thot/en_GB.po
M po/wesnoth-thot/eo.po
M po/wesnoth-thot/es.po
M po/wesnoth-thot/et.po
M po/wesnoth-thot/eu.po
M po/wesnoth-thot/fi.po
M po/wesnoth-thot/fr.po
M po/wesnoth-thot/fur_IT.po
M po/wesnoth-thot/ga.po
M po/wesnoth-thot/gd.po
M po/wesnoth-thot/gl.po
M po/wesnoth-thot/he.po
M po/wesnoth-thot/hr.po
M po/wesnoth-thot/hu.po
M po/wesnoth-thot/id.po
M po/wesnoth-thot/is.po
M po/wesnoth-thot/it.po
M po/wesnoth-thot/ja.po
M po/wesnoth-thot/ko.po
M po/wesnoth-thot/la.po
M po/wesnoth-thot/lt.po
M po/wesnoth-thot/lv.po
M po/wesnoth-thot/mk.po
M po/wesnoth-thot/mr.po
M po/wesnoth-thot/nb_NO.po
M po/wesnoth-thot/nl.po
M po/wesnoth-thot/pl.po
M po/wesnoth-thot/pt.po
M po/wesnoth-thot/pt_BR.po
M po/wesnoth-thot/racv.po
M po/wesnoth-thot/ro.po
M po/wesnoth-thot/ru.po
M po/wesnoth-thot/sk.po
M po/wesnoth-thot/sl.po
M po/wesnoth-thot/sr.po
M po/wesnoth-thot/sr at ijekavian.po
M po/wesnoth-thot/sr at ijekavianlatin.po
M po/wesnoth-thot/sr at latin.po
M po/wesnoth-thot/sv.po
M po/wesnoth-thot/tl.po
M po/wesnoth-thot/tr.po
M po/wesnoth-thot/uk.po
M po/wesnoth-thot/vi.po
M po/wesnoth-thot/wesnoth-thot.pot
M po/wesnoth-thot/zh_CN.po
M po/wesnoth-thot/zh_TW.po
M po/wesnoth-trow/af.po
M po/wesnoth-trow/ang.po
M po/wesnoth-trow/ang at latin.po
M po/wesnoth-trow/ar.po
M po/wesnoth-trow/ast.po
M po/wesnoth-trow/bg.po
M po/wesnoth-trow/ca.po
M po/wesnoth-trow/ca_ES at valencia.po
M po/wesnoth-trow/cs.po
M po/wesnoth-trow/da.po
M po/wesnoth-trow/de.po
M po/wesnoth-trow/el.po
M po/wesnoth-trow/en at shaw.po
M po/wesnoth-trow/en_GB.po
M po/wesnoth-trow/eo.po
M po/wesnoth-trow/es.po
M po/wesnoth-trow/et.po
M po/wesnoth-trow/eu.po
M po/wesnoth-trow/fi.po
M po/wesnoth-trow/fr.po
M po/wesnoth-trow/fur_IT.po
M po/wesnoth-trow/ga.po
M po/wesnoth-trow/gd.po
M po/wesnoth-trow/gl.po
M po/wesnoth-trow/he.po
M po/wesnoth-trow/hr.po
M po/wesnoth-trow/hu.po
M po/wesnoth-trow/id.po
M po/wesnoth-trow/is.po
M po/wesnoth-trow/it.po
M po/wesnoth-trow/ja.po
M po/wesnoth-trow/ko.po
M po/wesnoth-trow/la.po
M po/wesnoth-trow/lt.po
M po/wesnoth-trow/lv.po
M po/wesnoth-trow/mk.po
M po/wesnoth-trow/mr.po
M po/wesnoth-trow/nb_NO.po
M po/wesnoth-trow/nl.po
M po/wesnoth-trow/pl.po
M po/wesnoth-trow/pt.po
M po/wesnoth-trow/pt_BR.po
M po/wesnoth-trow/racv.po
M po/wesnoth-trow/ro.po
M po/wesnoth-trow/ru.po
M po/wesnoth-trow/sk.po
M po/wesnoth-trow/sl.po
M po/wesnoth-trow/sr.po
M po/wesnoth-trow/sr at ijekavian.po
M po/wesnoth-trow/sr at ijekavianlatin.po
M po/wesnoth-trow/sr at latin.po
M po/wesnoth-trow/sv.po
M po/wesnoth-trow/tl.po
M po/wesnoth-trow/tr.po
M po/wesnoth-trow/uk.po
M po/wesnoth-trow/vi.po
M po/wesnoth-trow/wesnoth-trow.pot
M po/wesnoth-trow/zh_CN.po
M po/wesnoth-trow/zh_TW.po
M po/wesnoth-tsg/af.po
M po/wesnoth-tsg/ang.po
M po/wesnoth-tsg/ang at latin.po
M po/wesnoth-tsg/ar.po
M po/wesnoth-tsg/ast.po
M po/wesnoth-tsg/bg.po
M po/wesnoth-tsg/ca.po
M po/wesnoth-tsg/ca_ES at valencia.po
M po/wesnoth-tsg/cs.po
M po/wesnoth-tsg/da.po
M po/wesnoth-tsg/de.po
M po/wesnoth-tsg/el.po
M po/wesnoth-tsg/en at shaw.po
M po/wesnoth-tsg/en_GB.po
M po/wesnoth-tsg/eo.po
M po/wesnoth-tsg/es.po
M po/wesnoth-tsg/et.po
M po/wesnoth-tsg/eu.po
M po/wesnoth-tsg/fi.po
M po/wesnoth-tsg/fr.po
M po/wesnoth-tsg/fur_IT.po
M po/wesnoth-tsg/ga.po
M po/wesnoth-tsg/gd.po
M po/wesnoth-tsg/gl.po
M po/wesnoth-tsg/he.po
M po/wesnoth-tsg/hr.po
M po/wesnoth-tsg/hu.po
M po/wesnoth-tsg/id.po
M po/wesnoth-tsg/is.po
M po/wesnoth-tsg/it.po
M po/wesnoth-tsg/ja.po
M po/wesnoth-tsg/ko.po
M po/wesnoth-tsg/la.po
M po/wesnoth-tsg/lt.po
M po/wesnoth-tsg/lv.po
M po/wesnoth-tsg/mk.po
M po/wesnoth-tsg/mr.po
M po/wesnoth-tsg/nb_NO.po
M po/wesnoth-tsg/nl.po
M po/wesnoth-tsg/pl.po
M po/wesnoth-tsg/pt.po
M po/wesnoth-tsg/pt_BR.po
M po/wesnoth-tsg/racv.po
M po/wesnoth-tsg/ro.po
M po/wesnoth-tsg/ru.po
M po/wesnoth-tsg/sk.po
M po/wesnoth-tsg/sl.po
M po/wesnoth-tsg/sr.po
M po/wesnoth-tsg/sr at ijekavian.po
M po/wesnoth-tsg/sr at ijekavianlatin.po
M po/wesnoth-tsg/sr at latin.po
M po/wesnoth-tsg/sv.po
M po/wesnoth-tsg/tl.po
M po/wesnoth-tsg/tr.po
M po/wesnoth-tsg/uk.po
M po/wesnoth-tsg/vi.po
M po/wesnoth-tsg/wesnoth-tsg.pot
M po/wesnoth-tsg/zh_CN.po
M po/wesnoth-tsg/zh_TW.po
M po/wesnoth-tutorial/af.po
M po/wesnoth-tutorial/ang.po
M po/wesnoth-tutorial/ang at latin.po
M po/wesnoth-tutorial/ar.po
M po/wesnoth-tutorial/ast.po
M po/wesnoth-tutorial/bg.po
M po/wesnoth-tutorial/ca.po
M po/wesnoth-tutorial/ca_ES at valencia.po
M po/wesnoth-tutorial/cs.po
M po/wesnoth-tutorial/da.po
M po/wesnoth-tutorial/de.po
M po/wesnoth-tutorial/el.po
M po/wesnoth-tutorial/en at shaw.po
M po/wesnoth-tutorial/en_GB.po
M po/wesnoth-tutorial/eo.po
M po/wesnoth-tutorial/es.po
M po/wesnoth-tutorial/et.po
M po/wesnoth-tutorial/eu.po
M po/wesnoth-tutorial/fi.po
M po/wesnoth-tutorial/fr.po
M po/wesnoth-tutorial/fur_IT.po
M po/wesnoth-tutorial/ga.po
M po/wesnoth-tutorial/gd.po
M po/wesnoth-tutorial/gl.po
M po/wesnoth-tutorial/he.po
M po/wesnoth-tutorial/hr.po
M po/wesnoth-tutorial/hu.po
M po/wesnoth-tutorial/id.po
M po/wesnoth-tutorial/is.po
M po/wesnoth-tutorial/it.po
M po/wesnoth-tutorial/ja.po
M po/wesnoth-tutorial/ko.po
M po/wesnoth-tutorial/la.po
M po/wesnoth-tutorial/lt.po
M po/wesnoth-tutorial/lv.po
M po/wesnoth-tutorial/mk.po
M po/wesnoth-tutorial/mr.po
M po/wesnoth-tutorial/nb_NO.po
M po/wesnoth-tutorial/nl.po
M po/wesnoth-tutorial/pl.po
M po/wesnoth-tutorial/pt.po
M po/wesnoth-tutorial/pt_BR.po
M po/wesnoth-tutorial/racv.po
M po/wesnoth-tutorial/ro.po
M po/wesnoth-tutorial/ru.po
M po/wesnoth-tutorial/sk.po
M po/wesnoth-tutorial/sl.po
M po/wesnoth-tutorial/sr.po
M po/wesnoth-tutorial/sr at ijekavian.po
M po/wesnoth-tutorial/sr at ijekavianlatin.po
M po/wesnoth-tutorial/sr at latin.po
M po/wesnoth-tutorial/sv.po
M po/wesnoth-tutorial/tl.po
M po/wesnoth-tutorial/tr.po
M po/wesnoth-tutorial/uk.po
M po/wesnoth-tutorial/vi.po
M po/wesnoth-tutorial/wesnoth-tutorial.pot
M po/wesnoth-tutorial/zh_CN.po
M po/wesnoth-tutorial/zh_TW.po
M po/wesnoth-units/af.po
M po/wesnoth-units/ang.po
M po/wesnoth-units/ang at latin.po
M po/wesnoth-units/ar.po
M po/wesnoth-units/ast.po
M po/wesnoth-units/bg.po
M po/wesnoth-units/ca.po
M po/wesnoth-units/ca_ES at valencia.po
M po/wesnoth-units/cs.po
M po/wesnoth-units/da.po
M po/wesnoth-units/de.po
M po/wesnoth-units/el.po
M po/wesnoth-units/en at shaw.po
M po/wesnoth-units/en_GB.po
M po/wesnoth-units/eo.po
M po/wesnoth-units/es.po
M po/wesnoth-units/et.po
M po/wesnoth-units/eu.po
M po/wesnoth-units/fi.po
M po/wesnoth-units/fr.po
M po/wesnoth-units/fur_IT.po
M po/wesnoth-units/ga.po
M po/wesnoth-units/gd.po
M po/wesnoth-units/gl.po
M po/wesnoth-units/he.po
M po/wesnoth-units/hr.po
M po/wesnoth-units/hu.po
M po/wesnoth-units/id.po
M po/wesnoth-units/is.po
M po/wesnoth-units/it.po
M po/wesnoth-units/ja.po
M po/wesnoth-units/ko.po
M po/wesnoth-units/la.po
M po/wesnoth-units/lt.po
M po/wesnoth-units/lv.po
M po/wesnoth-units/mk.po
M po/wesnoth-units/mr.po
M po/wesnoth-units/nb_NO.po
M po/wesnoth-units/nl.po
M po/wesnoth-units/pl.po
M po/wesnoth-units/pt.po
M po/wesnoth-units/pt_BR.po
M po/wesnoth-units/racv.po
M po/wesnoth-units/ro.po
M po/wesnoth-units/ru.po
M po/wesnoth-units/sk.po
M po/wesnoth-units/sl.po
M po/wesnoth-units/sr.po
M po/wesnoth-units/sr at ijekavian.po
M po/wesnoth-units/sr at ijekavianlatin.po
M po/wesnoth-units/sr at latin.po
M po/wesnoth-units/sv.po
M po/wesnoth-units/tl.po
M po/wesnoth-units/tr.po
M po/wesnoth-units/uk.po
M po/wesnoth-units/vi.po
M po/wesnoth-units/wesnoth-units.pot
M po/wesnoth-units/zh_CN.po
M po/wesnoth-units/zh_TW.po
M po/wesnoth-utbs/af.po
M po/wesnoth-utbs/ang.po
M po/wesnoth-utbs/ang at latin.po
M po/wesnoth-utbs/ar.po
M po/wesnoth-utbs/ast.po
M po/wesnoth-utbs/bg.po
M po/wesnoth-utbs/ca.po
M po/wesnoth-utbs/ca_ES at valencia.po
M po/wesnoth-utbs/cs.po
M po/wesnoth-utbs/da.po
M po/wesnoth-utbs/de.po
M po/wesnoth-utbs/el.po
M po/wesnoth-utbs/en at shaw.po
M po/wesnoth-utbs/en_GB.po
M po/wesnoth-utbs/eo.po
M po/wesnoth-utbs/es.po
M po/wesnoth-utbs/et.po
M po/wesnoth-utbs/eu.po
M po/wesnoth-utbs/fi.po
M po/wesnoth-utbs/fr.po
M po/wesnoth-utbs/fur_IT.po
M po/wesnoth-utbs/ga.po
M po/wesnoth-utbs/gd.po
M po/wesnoth-utbs/gl.po
M po/wesnoth-utbs/he.po
M po/wesnoth-utbs/hr.po
M po/wesnoth-utbs/hu.po
M po/wesnoth-utbs/id.po
M po/wesnoth-utbs/is.po
M po/wesnoth-utbs/it.po
M po/wesnoth-utbs/ja.po
M po/wesnoth-utbs/ko.po
M po/wesnoth-utbs/la.po
M po/wesnoth-utbs/lt.po
M po/wesnoth-utbs/lv.po
M po/wesnoth-utbs/mk.po
M po/wesnoth-utbs/mr.po
M po/wesnoth-utbs/nb_NO.po
M po/wesnoth-utbs/nl.po
M po/wesnoth-utbs/pl.po
M po/wesnoth-utbs/pt.po
M po/wesnoth-utbs/pt_BR.po
M po/wesnoth-utbs/racv.po
M po/wesnoth-utbs/ro.po
M po/wesnoth-utbs/ru.po
M po/wesnoth-utbs/sk.po
M po/wesnoth-utbs/sl.po
M po/wesnoth-utbs/sr.po
M po/wesnoth-utbs/sr at ijekavian.po
M po/wesnoth-utbs/sr at ijekavianlatin.po
M po/wesnoth-utbs/sr at latin.po
M po/wesnoth-utbs/sv.po
M po/wesnoth-utbs/tl.po
M po/wesnoth-utbs/tr.po
M po/wesnoth-utbs/uk.po
M po/wesnoth-utbs/vi.po
M po/wesnoth-utbs/wesnoth-utbs.pot
M po/wesnoth-utbs/zh_CN.po
M po/wesnoth-utbs/zh_TW.po
M po/wesnoth/af.po
M po/wesnoth/ang.po
M po/wesnoth/ang at latin.po
M po/wesnoth/ar.po
M po/wesnoth/ast.po
M po/wesnoth/bg.po
M po/wesnoth/ca.po
M po/wesnoth/ca_ES at valencia.po
M po/wesnoth/cs.po
M po/wesnoth/da.po
M po/wesnoth/de.po
M po/wesnoth/el.po
M po/wesnoth/en at shaw.po
M po/wesnoth/en_GB.po
M po/wesnoth/eo.po
M po/wesnoth/es.po
M po/wesnoth/et.po
M po/wesnoth/eu.po
M po/wesnoth/fi.po
M po/wesnoth/fr.po
M po/wesnoth/fur_IT.po
M po/wesnoth/ga.po
M po/wesnoth/gd.po
M po/wesnoth/gl.po
M po/wesnoth/he.po
M po/wesnoth/hr.po
M po/wesnoth/hu.po
M po/wesnoth/id.po
M po/wesnoth/is.po
M po/wesnoth/it.po
M po/wesnoth/ja.po
M po/wesnoth/ko.po
M po/wesnoth/la.po
M po/wesnoth/lt.po
M po/wesnoth/lv.po
M po/wesnoth/mk.po
M po/wesnoth/mr.po
M po/wesnoth/nb_NO.po
M po/wesnoth/nl.po
M po/wesnoth/pl.po
M po/wesnoth/pt.po
M po/wesnoth/pt_BR.po
M po/wesnoth/racv.po
M po/wesnoth/ro.po
M po/wesnoth/ru.po
M po/wesnoth/sk.po
M po/wesnoth/sl.po
M po/wesnoth/sr.po
M po/wesnoth/sr at ijekavian.po
M po/wesnoth/sr at ijekavianlatin.po
M po/wesnoth/sr at latin.po
M po/wesnoth/sv.po
M po/wesnoth/tl.po
M po/wesnoth/tr.po
M po/wesnoth/uk.po
M po/wesnoth/vi.po
M po/wesnoth/wesnoth.pot
M po/wesnoth/zh_CN.po
M po/wesnoth/zh_TW.po
M projectfiles/CodeBlocks/wesnoth.cbp
A projectfiles/VC12/README.md
A projectfiles/VC12/WML_tests.cmd
A projectfiles/VC12/WindowsTimeout.cpp
A projectfiles/VC12/WindowsTimeout.vcxproj
A projectfiles/VC12/files_with_deactivated_warnings.txt
A projectfiles/VC12/liblua.vcxproj
A projectfiles/VC12/liblua.vcxproj.filters
A projectfiles/VC12/schema_generator.vcxproj
A projectfiles/VC12/schema_generator.vcxproj.filters
A projectfiles/VC12/wesnoth.sln
A projectfiles/VC12/wesnoth.vcxproj
A projectfiles/VC12/wesnoth.vcxproj.filters
A projectfiles/VC12/wesnothd.vcxproj
A projectfiles/VC12/wesnothd.vcxproj.filters
A projectfiles/VC12/wesnothlib.vcxproj
A projectfiles/VC12/wesnothlib.vcxproj.filters
R projectfiles/VC9/README.md
R projectfiles/VC9/WML_tests.cmd
R projectfiles/VC9/WindowsTimeout.cpp
R projectfiles/VC9/WindowsTimeout.vcproj
R projectfiles/VC9/files_with_deactivated_warnings.txt
R projectfiles/VC9/liblua.vcproj
R projectfiles/VC9/schema_generator.vcproj
R projectfiles/VC9/wesnoth.sln
R projectfiles/VC9/wesnoth.vcproj
R projectfiles/VC9/wesnothd.vcproj
R projectfiles/VC9/wesnothlib.vcproj
M projectfiles/Xcode/Wesnoth.xcodeproj/project.pbxproj
M src/CMakeLists.txt
M src/SConscript
M src/actions/undo_action.cpp
M src/ai/actions.cpp
M src/ai/default/ca_move_to_targets.cpp
R src/array.hpp
M src/attack_prediction.cpp
M src/controller_base.cpp
M src/controller_base.hpp
M src/editor/controller/editor_controller.cpp
M src/editor/controller/editor_controller.hpp
M src/generators/default_map_generator_job.cpp
M src/generators/default_map_generator_job.hpp
M src/gui/dialogs/addon/list.cpp
M src/gui/dialogs/addon/list.hpp
M src/gui/dialogs/loadscreen.cpp
M src/gui/dialogs/loadscreen.hpp
M src/gui/dialogs/unit_create.hpp
M src/help/help_impl.cpp
M src/help/help_topic_generators.cpp
M src/hotkey/command_executor.cpp
M src/hotkey/command_executor.hpp
M src/hotkey/hotkey_command.cpp
M src/hotkey/hotkey_command.hpp
M src/hotkey/hotkey_handler.cpp
M src/hotkey/hotkey_handler.hpp
R src/race.cpp
R src/race.hpp
M src/scripting/game_lua_kernel.cpp
M src/scripting/lua_race.cpp
M src/server/server.cpp
M src/storyscreen/controller.cpp
M src/storyscreen/part.cpp
M src/tstring.cpp
A src/units/race.cpp
A src/units/race.hpp
M src/units/types.hpp
M src/units/unit.cpp
M src/util.hpp
A src/utils/context_free_grammar_generator.cpp
A src/utils/context_free_grammar_generator.hpp
A src/utils/markov_generator.cpp
A src/utils/markov_generator.hpp
A src/utils/name_generator.hpp
M src/whiteboard/manager.cpp
M src/widgets/scrollbar.cpp
A utils/pywmlx/__init__.py
A utils/pywmlx/autof.py
A utils/pywmlx/nodemanip.py
A utils/pywmlx/postring.py
A utils/pywmlx/state/__init__.py
A utils/pywmlx/state/lua_states.py
A utils/pywmlx/state/machine.py
A utils/pywmlx/state/state.py
A utils/pywmlx/state/wml_states.py
A utils/pywmlx/wmlerr.py
M utils/wmlxgettext
A utils/wmlxgettext_perl
Log Message:
-----------
Merge branch 'master' into asio_wesnothd
Compare: https://github.com/wesnoth/wesnoth/compare/bb61420394c8...39f14b9b4b99
More information about the Commits
mailing list