diff options
author | Alex Kozlov <ak@FreeBSD.org> | 2012-06-13 11:57:21 +0000 |
---|---|---|
committer | Alex Kozlov <ak@FreeBSD.org> | 2012-06-13 11:57:21 +0000 |
commit | 59411e580ecc9377d6dd4bf494587f9fba6cdde7 (patch) | |
tree | 71cd159d5add1934e0578f4d9d83635b0c092088 /games | |
parent | 7fb2b1acb3274dbd6fe3a14704bda86119a82240 (diff) | |
download | ports-59411e580ecc9377d6dd4bf494587f9fba6cdde7.tar.gz ports-59411e580ecc9377d6dd4bf494587f9fba6cdde7.zip |
Notes
Diffstat (limited to 'games')
-rw-r--r-- | games/Makefile | 1 | ||||
-rw-r--r-- | games/wesnoth-devel/Makefile | 177 | ||||
-rw-r--r-- | games/wesnoth-devel/distinfo | 2 | ||||
-rw-r--r-- | games/wesnoth-devel/files/patch-CMakeLists.txt | 74 | ||||
-rw-r--r-- | games/wesnoth-devel/files/patch-doc-CMakeLists.txt | 7 | ||||
-rw-r--r-- | games/wesnoth-devel/files/patch-po-CMakeLists.txt | 24 | ||||
-rw-r--r-- | games/wesnoth-devel/files/patch-src-CMakeLists.txt | 22 | ||||
-rw-r--r-- | games/wesnoth-devel/files/patch-src-ana-src-CMakeLists.txt | 34 | ||||
-rw-r--r-- | games/wesnoth-devel/files/patch-src-gettext.cpp | 15 | ||||
-rw-r--r-- | games/wesnoth-devel/files/patch-src-gettext.hpp | 25 | ||||
-rw-r--r-- | games/wesnoth-devel/pkg-descr | 7 | ||||
-rw-r--r-- | games/wesnoth-devel/pkg-plist | 1552 |
12 files changed, 0 insertions, 1940 deletions
diff --git a/games/Makefile b/games/Makefile index 983ab3a5a327..91e55aca83d4 100644 --- a/games/Makefile +++ b/games/Makefile @@ -959,7 +959,6 @@ SUBDIR += warsow-data SUBDIR += warzone2100 SUBDIR += wesnoth - SUBDIR += wesnoth-devel SUBDIR += whichwayisup SUBDIR += widelands SUBDIR += windstille diff --git a/games/wesnoth-devel/Makefile b/games/wesnoth-devel/Makefile deleted file mode 100644 index 6eb234d32898..000000000000 --- a/games/wesnoth-devel/Makefile +++ /dev/null @@ -1,177 +0,0 @@ -# New ports collection makefile for: wesnoth-devel -# Date created: 7 September 2008 -# Whom: Philip Paeps <philip@FreeBSD.org> -# -# $FreeBSD$ -# - -PORTNAME= wesnoth -PORTVERSION= 1.9.7 -PORTREVISION= 1 -CATEGORIES= games -MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTNAME}-${PORTVERSION} \ - http://files.wesnoth.org/ -PKGNAMESUFFIX= -devel - -MAINTAINER= philip@FreeBSD.org -COMMENT= A fantasy turn-based strategy game - -LIB_DEPENDS= boost_thread.4:${PORTSDIR}/devel/boost-libs -RUN_DEPENDS= ${NONEXISTENT}:${PORTSDIR}/x11-fonts/junicode:extract - -DEPRECATED= BROKEN for more than 6 month -EXPIRATION_DATE= 2012-05-10 - -BROKEN= incomplete plist - -LICENSE= GPLv2 GPLv3 -LICENSE_COMB= dual -LICENSE_FILE= ${WRKSRC}/COPYING - -CONFLICTS= wesnoth-[0-9]* - -USE_SDL= image mixer net ttf -USE_GNOME= pango -MAKE_JOBS_SAFE= yes -USE_BZIP2= yes -USE_CMAKE= yes - -MAN6= wesnoth.6 - -PORTDOCS= * -PORTDATA= * - -OPTIONS= ANA "Enable Asynchronous Network API (WIP)" On \ - CAMPAIGN "Enable campaign server" On \ - FRIBIDI "Enable bidirectional support" On \ - LOWMEM "Reduce memory usage (disables animations)" Off \ - NOTIFY "Enable desktop notifications" On \ - OPENMP "Enable OpenMP support" Off \ - POOLALLOC "Use wesnoth own memory allocator" Off \ - PYTHON "Enable python developer tools" Off \ - RAWSOCKETS "Use raw receiving sockets in multiplayer" Off \ - SERVER "Enable server" On \ - TESTS "Enable unit tests" Off \ - TOOLS "Enable extra tools for artists and translators" On - -.include <bsd.port.options.mk> - -# XXX: breaks compilation because of -Werror -.if !defined(WITH_STRICT) -CMAKE_ARGS+= -DENABLE_STRICT_COMPILATION=off -.endif - -.if defined(WITHOUT_ANA) -CMAKE_ARGS+= -DUSE_ANA_NETWORK=off -.else -CMAKE_ARGS+= -DUSE_ANA_NETWORK=on -.endif - -.if defined(WITHOUT_CAMPAIGN) -CMAKE_ARGS+= -DENABLE_CAMPAIGN_SERVER=off -PLIST_SUB+= CAMPAIGN="@comment " -.else -CMAKE_ARGS+= -DENABLE_CAMPAIGN_SERVER=on -PLIST_SUB+= CAMPAIGN="" -.endif - -.if defined(WITHOUT_FRIBIDI) -CMAKE_ARGS+= -DENABLE_FRIBIDI=off -.else -CMAKE_ARGS+= -DENABLE_FRIBIDI=on -LIB_DEPENDS+= fribidi.3:${PORTSDIR}/converters/fribidi -.endif - -.if defined(WITHOUT_LOWMEM) -CMAKE_ARGS+= -DENABLE_LOW_MEM=off -.else -CMAKE_ARGS+= -DENABLE_LOW_MEM=off -.endif - -.if defined(WITHOUT_NOTIFY) -CMAKE_ARGS+= -DENABLE_NOTIFICATIONS=off -.else -CMAKE_ARGS+= -DENABLE_NOTIFICATIONS=on -LIB_DEPENDS+= dbus-1.3:${PORTSDIR}/devel/dbus -.endif - -.if defined(WITHOUT_NLS) -CMAKE_ARGS+= -DENABLE_NLS=off -PLIST_SUB+= NLS="@comment " -.else -CMAKE_ARGS+= -DENABLE_NLS=on -DLOCALEDIR=${PREFIX}/share/locale -USE_GETTEXT= yes -MANLANG= "" cs de en_GB et fi fr gl hu id it ja lt pl pt_BR sk \ - sr sr@ijekavian sr@ijekavianlatin sr@latin zh_CN zh_TW -_MANPAGES+= ${PREFIX}/man/es/man6/wesnothd.6 \ - ${PREFIX}/man/tr/man6/wesnothd.6 -PLIST_SUB+= NLS="" -.endif - -.if defined(WITHOUT_OPENMP) -CMAKE_ARGS+= -DENABLE_OMP=off -.else -CMAKE_ARGS+= -DENABLE_OMP=on -.endif - -.if defined(WITHOUT_POOLALLOC) -CMAKE_ARGS+= -DENABLE_POOL_ALLOC=off -.else -CMAKE_ARGS+= -DENABLE_POOL_ALLOC=on -.endif - -.if defined(WITHOUT_PYTHON) -PLIST_SUB+= PYTHON="@comment " -.else -BROKEN= cmake build doesn\'t support installing python tools -USE_PYTHON= yes -CONFIGURE_ENV+= PYTHON_PREFIX=${PREFIX} \ - PYTHON_VERSION=${PYTHON_VERSION:S/python//} -CONFIGURE_ARGS+=--enable-python-install -PLIST_SUB+= PYTHON="" -.endif - -.if !defined(WITHOUT_RAWSOCKETS) -CFLAGS+= -DNETWORK_USE_RAW_SOCKETS -.endif - -.if defined(WITHOUT_SERVER) -CMAKE_ARGS+= -DENABLE_SERVER=off -PLIST_SUB+= SERVER="@comment " -.else -CMAKE_ARGS+= -DENABLE_SERVER=on -MAN6+= wesnothd.6 -PLIST_SUB+= SERVER="" -.endif - -.if defined(WITHOUT_TESTS) -CMAKE_ARGS+= -DENABLE_TESTS=off -PLIST_SUB+= TESTS="@comment " -.else -CMAKE_ARGS+= -DENABLE_TESTS=on -PLIST_SUB+= TESTS="" -.endif - -.if defined(WITHOUT_TOOLS) -CMAKE_ARGS+= -DENABLE_TOOLS=off -PLIST_SUB+= TOOLS="@comment " -.else -CMAKE_ARGS+= -DENABLE_TOOLS=on -PLIST_SUB+= TOOLS="" -.endif - -.if defined(NOPORTDOCS) -CMAKE_ARGS+= -DDOCDIR=none -.endif - -.if defined(NOPORTDATA) -IGNORE= game data is required, undefine NOPORTDATA -.endif - -post-install: - ${INSTALL_DATA} $$(${MAKE} -V WRKSRC \ - -C ${PORTSDIR}/x11-fonts/junicode)/fonts/Junicode-Regular.ttf \ - ${DATADIR}/fonts - -update-desktop-database ${PREFIX}/share/applications - -.include <bsd.port.mk> diff --git a/games/wesnoth-devel/distinfo b/games/wesnoth-devel/distinfo deleted file mode 100644 index 53227ce03198..000000000000 --- a/games/wesnoth-devel/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -SHA256 (wesnoth-1.9.7.tar.bz2) = ced4a5f88d650a97e547dfec153c89da04c565b2d705ef0920dbc000338f4492 -SIZE (wesnoth-1.9.7.tar.bz2) = 338021134 diff --git a/games/wesnoth-devel/files/patch-CMakeLists.txt b/games/wesnoth-devel/files/patch-CMakeLists.txt deleted file mode 100644 index bbb516500ec1..000000000000 --- a/games/wesnoth-devel/files/patch-CMakeLists.txt +++ /dev/null @@ -1,74 +0,0 @@ ---- CMakeLists.txt~ -+++ CMakeLists.txt -@@ -21,11 +21,10 @@ set(CMAKE_MODULE_PATH ${CMAKE_SOURCE_DIR - find_package(SDL 1.2.7 REQUIRED) - find_package(Boost 1.35 REQUIRED COMPONENTS iostreams regex) - --# no, gettext executables are not required when NLS is deactivated -+if(ENABLE_NLS) - find_package(Gettext) --# yes, libintl is *required* even when NLS is deactivated (this is to compile --# src/gettext.cpp since it includes libintl.h) - find_package(Libintl REQUIRED) -+endif(ENABLE_NLS) - - find_package(X11) - -@@ -68,7 +67,7 @@ option(ENABLE_GAME "Enable compilation o - option(ENABLE_GAME "Enable compilation of the game" ON) - option(ENABLE_CAMPAIGN_SERVER "Enable compilation of campaign server") - option(ENABLE_SERVER "Enable compilation of server" ON) --option(ENABLE_TOOLS "Enable building and installation of tools for artists and WML maintainers") -+option(ENABLE_TOOLS "Enable building and installation of tools for artists and WML maintainers" OFF) - option(ENABLE_TESTS "Build unit tests") - option(ENABLE_NLS "Enable building of translations" ON) - option(ENABLE_POOL_ALLOC "Enable custom pool malloc" OFF) -@@ -114,18 +113,18 @@ if(CMAKE_COMPILER_IS_GNUCXX) - endif(ENABLE_STRICT_COMPILATION) - - # Strict compilation for C files is disabled until somebody wants to clean them. -- set(CMAKE_C_FLAGS "-O2 -W -Wall -ansi $ENV{CFLAGS}" -+ set(CMAKE_C_FLAGS "-W -Wall -ansi $ENV{CFLAGS}" - CACHE STRING "Flags used by the C compiler during normal builds." FORCE) -- set(CMAKE_C_FLAGS_DEBUG "-O0 -DDEBUG -ggdb3 -W -Wall -ansi $ENV{CFLAGS}" -+ set(CMAKE_C_FLAGS_DEBUG "-DDEBUG -W -Wall -ansi $ENV{CFLAGS}" - CACHE STRING "Flags used by the C compiler during debug builds." FORCE) -- set(CMAKE_C_FLAGS_RELEASE "-O3 -DNDEBUG -W -Wall -ansi $ENV{CFLAGS} -Wno-unused" -+ set(CMAKE_C_FLAGS_RELEASE "-DNDEBUG -W -Wall -ansi $ENV{CFLAGS} -Wno-unused" - CACHE STRING "Flags used by the C compiler during release builds." FORCE) - -- set(CMAKE_CXX_FLAGS "-O2 -W -Wall -std=c++98 ${STRICT_FLAGS} $ENV{CXXFLAGS}" -+ set(CMAKE_CXX_FLAGS "-W -Wall -std=c++98 ${STRICT_FLAGS} $ENV{CXXFLAGS}" - CACHE STRING "Flags used by the CXX compiler during normal builds." FORCE) -- set(CMAKE_CXX_FLAGS_DEBUG "-O0 -DDEBUG -ggdb3 -W -Wall -std=c++98 ${STRICT_FLAGS} $ENV{CXXFLAGS}" -+ set(CMAKE_CXX_FLAGS_DEBUG "-DDEBUG -W -Wall -std=c++98 ${STRICT_FLAGS} $ENV{CXXFLAGS}" - CACHE STRING "Flags used by the CXX compiler during debug builds." FORCE) -- set(CMAKE_CXX_FLAGS_RELEASE "-O3 -DNDEBUG -W -Wall -std=c++98 ${STRICT_FLAGS} $ENV{CXXFLAGS} -Wno-unused" -+ set(CMAKE_CXX_FLAGS_RELEASE "-DNDEBUG -W -Wall -std=c++98 ${STRICT_FLAGS} $ENV{CXXFLAGS} -Wno-unused" - CACHE STRING "Flags used by the CXX compiler during release builds." FORCE) - - endif(NOT CONFIGURED) -@@ -154,6 +153,7 @@ add_definitions(-DLOCALEDIR=\\\"${LOCALE - if(LOCALEDIR MATCHES "^/") - add_definitions(-DHAS_RELATIVE_LOCALEDIR=0) - set(LOCALE_INSTALL ${LOCALEDIR}) -+ set(LOCALEDIR "translations") - else(LOCALEDIR MATCHES "^/") - add_definitions(-DHAS_RELATIVE_LOCALEDIR=1) - set(LOCALE_INSTALL ${DATADIR}/${LOCALEDIR}) -@@ -213,10 +213,14 @@ if(ENABLE_TESTS) - find_package( Boost 1.35 REQUIRED COMPONENTS unit_test_framework ) - endif(ENABLE_TESTS) - if(ENABLE_GAME) -- find_package( FriBiDi ) -+ pkg_check_modules( FRIBIDI fribidi>=0.19.0 ) - if(ENABLE_FRIBIDI AND FRIBIDI_LIBRARIES) - add_definitions(-DHAVE_FRIBIDI) - elseif(ENABLE_FRIBIDI AND NOT FRIBIDI_LIBRARIES) -+ pkg_check_modules( FRIBIDI fribidi ) -+ if(FRIBIDI_LIBRARIES) -+ add_definitions(-DOLD_FRIBIDI) -+ endif(FRIBIDI_LIBRARIES) - message("Could not find FriBiDi. Disabling FriBiDi support.") - endif() - diff --git a/games/wesnoth-devel/files/patch-doc-CMakeLists.txt b/games/wesnoth-devel/files/patch-doc-CMakeLists.txt deleted file mode 100644 index bc55227f2e0a..000000000000 --- a/games/wesnoth-devel/files/patch-doc-CMakeLists.txt +++ /dev/null @@ -1,7 +0,0 @@ ---- doc/CMakeLists.txt~ -+++ doc/CMakeLists.txt -@@ -1,2 +1,4 @@ - add_subdirectory(man) -+if(NOT DOCDIR STREQUAL "none") - add_subdirectory(manual) -+endif(NOT DOCDIR STREQUAL "none") diff --git a/games/wesnoth-devel/files/patch-po-CMakeLists.txt b/games/wesnoth-devel/files/patch-po-CMakeLists.txt deleted file mode 100644 index 39c9275a49eb..000000000000 --- a/games/wesnoth-devel/files/patch-po-CMakeLists.txt +++ /dev/null @@ -1,24 +0,0 @@ ---- po/CMakeLists.txt~ -+++ po/CMakeLists.txt -@@ -273,9 +273,6 @@ if(ENABLE_NLS) - COMMENT "mo-update [${DOMAIN}-${LINGUA}]: Creating mo file." - ) - -- install(FILES ${CMAKE_SOURCE_DIR}/${LOCALEDIR}/${LINGUA}/LC_MESSAGES/${DOMAIN}.mo -- DESTINATION ${LOCALE_INSTALL}/${LINGUA}/LC_MESSAGES) -- - set(mo-update-SRC ${mo-update-SRC} - ${CMAKE_SOURCE_DIR}/${LOCALEDIR}/${LINGUA}/LC_MESSAGES/${DOMAIN}.mo - ) -@@ -285,6 +282,11 @@ if(ENABLE_NLS) - - endforeach(DOMAIN ${DOMAINS}) - -+ foreach(DOMAIN ${NORMAL_DOMAINS}) -+ install(FILES ${CMAKE_SOURCE_DIR}/${LOCALEDIR}/${LINGUA}/LC_MESSAGES/${DOMAIN}.mo -+ DESTINATION ${LOCALE_INSTALL}/${LINGUA}/LC_MESSAGES) -+ endforeach(DOMAIN ${NORMAL_DOMAINS}) -+ - if(ENABLE_POT_UPDATE_TARGET) - add_custom_target(mo-update-${LINGUA} - COMMENT "mo-update ${LINGUA}: Done." diff --git a/games/wesnoth-devel/files/patch-src-CMakeLists.txt b/games/wesnoth-devel/files/patch-src-CMakeLists.txt deleted file mode 100644 index cb9098175a15..000000000000 --- a/games/wesnoth-devel/files/patch-src-CMakeLists.txt +++ /dev/null @@ -1,22 +0,0 @@ ---- src/CMakeLists.txt~ -+++ src/CMakeLists.txt -@@ -123,7 +123,7 @@ set(tools-external-libs - ) - - if(ENABLE_FRIBIDI AND FRIBIDI_LIBRARIES) -- include_directories( ${FRIBIDI_INCLUDE_DIR} ) -+ include_directories( ${FRIBIDI_INCLUDE_DIRS} ) - set(game-external-libs ${game-external-libs} ${FRIBIDI_LIBRARIES}) - endif(ENABLE_FRIBIDI AND FRIBIDI_LIBRARIES) - -@@ -826,7 +833,9 @@ if(ENABLE_TESTS) - boost_unit_test_framework - ) - set_target_properties(test -- PROPERTIES OUTPUT_NAME ${BINARY_PREFIX}test${BINARY_SUFFIX} -+ PROPERTIES OUTPUT_NAME ${BINARY_PREFIX}wesnoth_test${BINARY_SUFFIX} - ) -+ -+ install(TARGETS test DESTINATION ${BINDIR}) - endif(ENABLE_TESTS) - diff --git a/games/wesnoth-devel/files/patch-src-ana-src-CMakeLists.txt b/games/wesnoth-devel/files/patch-src-ana-src-CMakeLists.txt deleted file mode 100644 index 1adeae22f520..000000000000 --- a/games/wesnoth-devel/files/patch-src-ana-src-CMakeLists.txt +++ /dev/null @@ -1,34 +0,0 @@ ---- src/ana/src/CMakeLists.txt~ -+++ src/ana/src/CMakeLists.txt -@@ -4,7 +4,7 @@ include_directories(../api) - - find_package(Boost 1.35 REQUIRED COMPONENTS thread system) - --set(CMAKE_CXX_FLAGS_DEBUG "${CMAKE_CXX_FLAGS_DEBUG} -ggdb3") -+set(CMAKE_CXX_FLAGS_DEBUG "${CMAKE_CXX_FLAGS_DEBUG}") - - set(common_srcs asio_listener.cpp asio_sender.cpp asio_timers.cpp) - -@@ -20,11 +20,11 @@ target_link_libraries( ana-static ${Boos - - set(CMAKE_INSTALL_PREFIX /usr/local) - --if(NOT MSVC) -+if(FALSE) - set(CMAKE_INSTALL_PREFIX /usr/local) - install(TARGETS ana LIBRARY DESTINATION lib) - install(TARGETS ana-static ARCHIVE DESTINATION lib) --endif(NOT MSVC) -+endif(FALSE) - - set(ana_headers - ../api/ana.hpp -@@ -35,6 +35,6 @@ set(ana_headers - ../api/binary_streams.hpp - ) - --if(NOT MSVC) -+if(FALSE) - install(FILES ${ana_headers} DESTINATION include/ana) --endif(NOT MSVC) -+endif(FALSE) diff --git a/games/wesnoth-devel/files/patch-src-gettext.cpp b/games/wesnoth-devel/files/patch-src-gettext.cpp deleted file mode 100644 index 5efa34c5afe9..000000000000 --- a/games/wesnoth-devel/files/patch-src-gettext.cpp +++ /dev/null @@ -1,15 +0,0 @@ ---- src/gettext.cpp~ -+++ src/gettext.cpp -@@ -18,6 +18,12 @@ - - #include <cstring> - -+#ifndef ENABLE_NLS -+char *textdomain (const char *domainname) { -+ return "dummy"; -+} -+#endif -+ - char const *egettext(char const *msgid) - { - return msgid[0] == '\0' ? msgid : gettext(msgid); diff --git a/games/wesnoth-devel/files/patch-src-gettext.hpp b/games/wesnoth-devel/files/patch-src-gettext.hpp deleted file mode 100644 index 887c18dbcc51..000000000000 --- a/games/wesnoth-devel/files/patch-src-gettext.hpp +++ /dev/null @@ -1,25 +0,0 @@ ---- src/gettext.hpp~ -+++ src/gettext.hpp -@@ -35,7 +35,21 @@ - - // gettext-related declarations - --#include <libintl.h> -+#include "wesconfig.h" -+ -+#ifdef ENABLE_NLS -+# include <libintl.h> -+#else -+# define bind_textdomain_codeset(Domain, Codeset) "C" -+# define bindtextdomain(Domain, Directory) "/nonexistent" -+# define gettext(String) gettext_noop(String) -+# define ngettext(Singular, Plural, Number) gettext_noop(Number == 1 ? Singular : Plural) -+# define dgettext(Domain, String) gettext_noop(String) -+# define dngettext(Domain, Singular, Plural, Number) gettext_noop(Number == 1 ? Singular : Plural) -+# define dcgettext(Domain, String, Category) gettext_noop(String) -+# define dcngettext(Domain, Singular, Plural, Number, Category) gettext_noop(Number == 1 ? Singular : Plural) -+char *textdomain (const char *domainname); -+#endif - - const char* egettext(const char*); - const char* sgettext(const char*); diff --git a/games/wesnoth-devel/pkg-descr b/games/wesnoth-devel/pkg-descr deleted file mode 100644 index 18c50cb64d6a..000000000000 --- a/games/wesnoth-devel/pkg-descr +++ /dev/null @@ -1,7 +0,0 @@ -Battle for Wesnoth is a fantasy turn-based strategy game. Battle for control of -villages, using variety of units which have advantages and disadvantages in -different types of terrains and against different types of attacks. Units gain -experience and advance levels, and are carried over from one scenario to the -next campaign. - -WWW: http://www.wesnoth.org/ diff --git a/games/wesnoth-devel/pkg-plist b/games/wesnoth-devel/pkg-plist deleted file mode 100644 index 131022315e2f..000000000000 --- a/games/wesnoth-devel/pkg-plist +++ /dev/null @@ -1,1552 +0,0 @@ -%%CAMPAIGN%%bin/campaignd -%%TOOLS%%bin/cutter -%%TOOLS%%bin/exploder -bin/wesnoth -%%PYTHON%%%%TOOLS%%bin/wesnoth_addon_manager -%%TESTS%%bin/wesnoth_test -%%SERVER%%bin/wesnothd -%%PYTHON%%%%TOOLS%%bin/wmlindent -%%PYTHON%%%%TOOLS%%bin/wmllint -%%PYTHON%%%%TOOLS%%bin/wmlscope -%%PYTHON%%%%PYTHON_SITELIBDIR%%/wesnoth/__init__.py -%%PYTHON%%%%PYTHON_SITELIBDIR%%/wesnoth/__init__.pyc -%%PYTHON%%%%PYTHON_SITELIBDIR%%/wesnoth/__init__.pyo -%%PYTHON%%%%PYTHON_SITELIBDIR%%/wesnoth/campaignserver_client.py -%%PYTHON%%%%PYTHON_SITELIBDIR%%/wesnoth/campaignserver_client.pyc -%%PYTHON%%%%PYTHON_SITELIBDIR%%/wesnoth/campaignserver_client.pyo -%%PYTHON%%%%PYTHON_SITELIBDIR%%/wesnoth/libsvn.py -%%PYTHON%%%%PYTHON_SITELIBDIR%%/wesnoth/libsvn.pyc -%%PYTHON%%%%PYTHON_SITELIBDIR%%/wesnoth/libsvn.pyo -%%PYTHON%%%%PYTHON_SITELIBDIR%%/wesnoth/wescamp.py -%%PYTHON%%%%PYTHON_SITELIBDIR%%/wesnoth/wescamp.pyc -%%PYTHON%%%%PYTHON_SITELIBDIR%%/wesnoth/wescamp.pyo -%%PYTHON%%%%PYTHON_SITELIBDIR%%/wesnoth/wmldata.py -%%PYTHON%%%%PYTHON_SITELIBDIR%%/wesnoth/wmldata.pyc -%%PYTHON%%%%PYTHON_SITELIBDIR%%/wesnoth/wmldata.pyo -%%PYTHON%%%%PYTHON_SITELIBDIR%%/wesnoth/wmliterator.py -%%PYTHON%%%%PYTHON_SITELIBDIR%%/wesnoth/wmliterator.pyc -%%PYTHON%%%%PYTHON_SITELIBDIR%%/wesnoth/wmliterator.pyo -%%PYTHON%%%%PYTHON_SITELIBDIR%%/wesnoth/wmlparser.py -%%PYTHON%%%%PYTHON_SITELIBDIR%%/wesnoth/wmlparser.pyc -%%PYTHON%%%%PYTHON_SITELIBDIR%%/wesnoth/wmlparser.pyo -%%PYTHON%%%%PYTHON_SITELIBDIR%%/wesnoth/wmltools.py -%%PYTHON%%%%PYTHON_SITELIBDIR%%/wesnoth/wmltools.pyc -%%PYTHON%%%%PYTHON_SITELIBDIR%%/wesnoth/wmltools.pyo -share/applications/wesnoth.desktop -share/applications/wesnoth_editor.desktop -%%NLS%%share/locale/af/LC_MESSAGES/wesnoth-anl.mo -%%NLS%%share/locale/af/LC_MESSAGES/wesnoth-aoi.mo -%%NLS%%share/locale/af/LC_MESSAGES/wesnoth-did.mo -%%NLS%%share/locale/af/LC_MESSAGES/wesnoth-dm.mo -%%NLS%%share/locale/af/LC_MESSAGES/wesnoth-dw.mo -%%NLS%%share/locale/af/LC_MESSAGES/wesnoth-editor.mo -%%NLS%%share/locale/af/LC_MESSAGES/wesnoth-ei.mo -%%NLS%%share/locale/af/LC_MESSAGES/wesnoth-help.mo -%%NLS%%share/locale/af/LC_MESSAGES/wesnoth-httt.mo -%%NLS%%share/locale/af/LC_MESSAGES/wesnoth-l.mo -%%NLS%%share/locale/af/LC_MESSAGES/wesnoth-lib.mo -%%NLS%%share/locale/af/LC_MESSAGES/wesnoth-low.mo -%%NLS%%share/locale/af/LC_MESSAGES/wesnoth-multiplayer.mo -%%NLS%%share/locale/af/LC_MESSAGES/wesnoth-nr.mo -%%NLS%%share/locale/af/LC_MESSAGES/wesnoth-sof.mo -%%NLS%%share/locale/af/LC_MESSAGES/wesnoth-sotbe.mo -%%NLS%%share/locale/af/LC_MESSAGES/wesnoth-tb.mo -%%NLS%%share/locale/af/LC_MESSAGES/wesnoth-test.mo -%%NLS%%share/locale/af/LC_MESSAGES/wesnoth-thot.mo -%%NLS%%share/locale/af/LC_MESSAGES/wesnoth-trow.mo -%%NLS%%share/locale/af/LC_MESSAGES/wesnoth-tsg.mo -%%NLS%%share/locale/af/LC_MESSAGES/wesnoth-tutorial.mo -%%NLS%%share/locale/af/LC_MESSAGES/wesnoth-units.mo -%%NLS%%share/locale/af/LC_MESSAGES/wesnoth-utbs.mo -%%NLS%%share/locale/af/LC_MESSAGES/wesnoth.mo -%%NLS%%share/locale/ang/LC_MESSAGES/wesnoth-anl.mo -%%NLS%%share/locale/ang/LC_MESSAGES/wesnoth-aoi.mo -%%NLS%%share/locale/ang/LC_MESSAGES/wesnoth-did.mo -%%NLS%%share/locale/ang/LC_MESSAGES/wesnoth-dm.mo -%%NLS%%share/locale/ang/LC_MESSAGES/wesnoth-dw.mo -%%NLS%%share/locale/ang/LC_MESSAGES/wesnoth-editor.mo -%%NLS%%share/locale/ang/LC_MESSAGES/wesnoth-ei.mo -%%NLS%%share/locale/ang/LC_MESSAGES/wesnoth-help.mo -%%NLS%%share/locale/ang/LC_MESSAGES/wesnoth-httt.mo -%%NLS%%share/locale/ang/LC_MESSAGES/wesnoth-l.mo -%%NLS%%share/locale/ang/LC_MESSAGES/wesnoth-lib.mo -%%NLS%%share/locale/ang/LC_MESSAGES/wesnoth-low.mo -%%NLS%%share/locale/ang/LC_MESSAGES/wesnoth-multiplayer.mo -%%NLS%%share/locale/ang/LC_MESSAGES/wesnoth-nr.mo -%%NLS%%share/locale/ang/LC_MESSAGES/wesnoth-sof.mo -%%NLS%%share/locale/ang/LC_MESSAGES/wesnoth-sotbe.mo -%%NLS%%share/locale/ang/LC_MESSAGES/wesnoth-tb.mo -%%NLS%%share/locale/ang/LC_MESSAGES/wesnoth-test.mo -%%NLS%%share/locale/ang/LC_MESSAGES/wesnoth-thot.mo -%%NLS%%share/locale/ang/LC_MESSAGES/wesnoth-trow.mo -%%NLS%%share/locale/ang/LC_MESSAGES/wesnoth-tsg.mo -%%NLS%%share/locale/ang/LC_MESSAGES/wesnoth-tutorial.mo -%%NLS%%share/locale/ang/LC_MESSAGES/wesnoth-units.mo -%%NLS%%share/locale/ang/LC_MESSAGES/wesnoth-utbs.mo -%%NLS%%share/locale/ang/LC_MESSAGES/wesnoth.mo -%%NLS%%share/locale/ang@latin/LC_MESSAGES/wesnoth-anl.mo -%%NLS%%share/locale/ang@latin/LC_MESSAGES/wesnoth-aoi.mo -%%NLS%%share/locale/ang@latin/LC_MESSAGES/wesnoth-did.mo -%%NLS%%share/locale/ang@latin/LC_MESSAGES/wesnoth-dm.mo -%%NLS%%share/locale/ang@latin/LC_MESSAGES/wesnoth-dw.mo -%%NLS%%share/locale/ang@latin/LC_MESSAGES/wesnoth-editor.mo -%%NLS%%share/locale/ang@latin/LC_MESSAGES/wesnoth-ei.mo -%%NLS%%share/locale/ang@latin/LC_MESSAGES/wesnoth-help.mo -%%NLS%%share/locale/ang@latin/LC_MESSAGES/wesnoth-httt.mo -%%NLS%%share/locale/ang@latin/LC_MESSAGES/wesnoth-l.mo -%%NLS%%share/locale/ang@latin/LC_MESSAGES/wesnoth-lib.mo -%%NLS%%share/locale/ang@latin/LC_MESSAGES/wesnoth-low.mo -%%NLS%%share/locale/ang@latin/LC_MESSAGES/wesnoth-multiplayer.mo -%%NLS%%share/locale/ang@latin/LC_MESSAGES/wesnoth-nr.mo -%%NLS%%share/locale/ang@latin/LC_MESSAGES/wesnoth-sof.mo -%%NLS%%share/locale/ang@latin/LC_MESSAGES/wesnoth-sotbe.mo -%%NLS%%share/locale/ang@latin/LC_MESSAGES/wesnoth-tb.mo -%%NLS%%share/locale/ang@latin/LC_MESSAGES/wesnoth-test.mo -%%NLS%%share/locale/ang@latin/LC_MESSAGES/wesnoth-thot.mo -%%NLS%%share/locale/ang@latin/LC_MESSAGES/wesnoth-trow.mo -%%NLS%%share/locale/ang@latin/LC_MESSAGES/wesnoth-tsg.mo -%%NLS%%share/locale/ang@latin/LC_MESSAGES/wesnoth-tutorial.mo -%%NLS%%share/locale/ang@latin/LC_MESSAGES/wesnoth-units.mo -%%NLS%%share/locale/ang@latin/LC_MESSAGES/wesnoth-utbs.mo -%%NLS%%share/locale/ang@latin/LC_MESSAGES/wesnoth.mo -%%NLS%%share/locale/ar/LC_MESSAGES/wesnoth-anl.mo -%%NLS%%share/locale/ar/LC_MESSAGES/wesnoth-aoi.mo -%%NLS%%share/locale/ar/LC_MESSAGES/wesnoth-did.mo -%%NLS%%share/locale/ar/LC_MESSAGES/wesnoth-dm.mo -%%NLS%%share/locale/ar/LC_MESSAGES/wesnoth-dw.mo -%%NLS%%share/locale/ar/LC_MESSAGES/wesnoth-editor.mo -%%NLS%%share/locale/ar/LC_MESSAGES/wesnoth-ei.mo -%%NLS%%share/locale/ar/LC_MESSAGES/wesnoth-help.mo -%%NLS%%share/locale/ar/LC_MESSAGES/wesnoth-httt.mo -%%NLS%%share/locale/ar/LC_MESSAGES/wesnoth-l.mo -%%NLS%%share/locale/ar/LC_MESSAGES/wesnoth-lib.mo -%%NLS%%share/locale/ar/LC_MESSAGES/wesnoth-low.mo -%%NLS%%share/locale/ar/LC_MESSAGES/wesnoth-multiplayer.mo -%%NLS%%share/locale/ar/LC_MESSAGES/wesnoth-nr.mo -%%NLS%%share/locale/ar/LC_MESSAGES/wesnoth-sof.mo -%%NLS%%share/locale/ar/LC_MESSAGES/wesnoth-sotbe.mo -%%NLS%%share/locale/ar/LC_MESSAGES/wesnoth-tb.mo -%%NLS%%share/locale/ar/LC_MESSAGES/wesnoth-test.mo -%%NLS%%share/locale/ar/LC_MESSAGES/wesnoth-thot.mo -%%NLS%%share/locale/ar/LC_MESSAGES/wesnoth-trow.mo -%%NLS%%share/locale/ar/LC_MESSAGES/wesnoth-tsg.mo -%%NLS%%share/locale/ar/LC_MESSAGES/wesnoth-tutorial.mo -%%NLS%%share/locale/ar/LC_MESSAGES/wesnoth-units.mo -%%NLS%%share/locale/ar/LC_MESSAGES/wesnoth-utbs.mo -%%NLS%%share/locale/ar/LC_MESSAGES/wesnoth.mo -%%NLS%%share/locale/bg/LC_MESSAGES/wesnoth-anl.mo -%%NLS%%share/locale/bg/LC_MESSAGES/wesnoth-aoi.mo -%%NLS%%share/locale/bg/LC_MESSAGES/wesnoth-did.mo -%%NLS%%share/locale/bg/LC_MESSAGES/wesnoth-dm.mo -%%NLS%%share/locale/bg/LC_MESSAGES/wesnoth-dw.mo -%%NLS%%share/locale/bg/LC_MESSAGES/wesnoth-editor.mo -%%NLS%%share/locale/bg/LC_MESSAGES/wesnoth-ei.mo -%%NLS%%share/locale/bg/LC_MESSAGES/wesnoth-help.mo -%%NLS%%share/locale/bg/LC_MESSAGES/wesnoth-httt.mo -%%NLS%%share/locale/bg/LC_MESSAGES/wesnoth-l.mo -%%NLS%%share/locale/bg/LC_MESSAGES/wesnoth-lib.mo -%%NLS%%share/locale/bg/LC_MESSAGES/wesnoth-low.mo -%%NLS%%share/locale/bg/LC_MESSAGES/wesnoth-multiplayer.mo -%%NLS%%share/locale/bg/LC_MESSAGES/wesnoth-nr.mo -%%NLS%%share/locale/bg/LC_MESSAGES/wesnoth-sof.mo -%%NLS%%share/locale/bg/LC_MESSAGES/wesnoth-sotbe.mo -%%NLS%%share/locale/bg/LC_MESSAGES/wesnoth-tb.mo -%%NLS%%share/locale/bg/LC_MESSAGES/wesnoth-test.mo -%%NLS%%share/locale/bg/LC_MESSAGES/wesnoth-thot.mo -%%NLS%%share/locale/bg/LC_MESSAGES/wesnoth-trow.mo -%%NLS%%share/locale/bg/LC_MESSAGES/wesnoth-tsg.mo -%%NLS%%share/locale/bg/LC_MESSAGES/wesnoth-tutorial.mo -%%NLS%%share/locale/bg/LC_MESSAGES/wesnoth-units.mo -%%NLS%%share/locale/bg/LC_MESSAGES/wesnoth-utbs.mo -%%NLS%%share/locale/bg/LC_MESSAGES/wesnoth.mo -%%NLS%%share/locale/ca/LC_MESSAGES/wesnoth-anl.mo -%%NLS%%share/locale/ca/LC_MESSAGES/wesnoth-aoi.mo -%%NLS%%share/locale/ca/LC_MESSAGES/wesnoth-did.mo -%%NLS%%share/locale/ca/LC_MESSAGES/wesnoth-dm.mo -%%NLS%%share/locale/ca/LC_MESSAGES/wesnoth-dw.mo -%%NLS%%share/locale/ca/LC_MESSAGES/wesnoth-editor.mo -%%NLS%%share/locale/ca/LC_MESSAGES/wesnoth-ei.mo -%%NLS%%share/locale/ca/LC_MESSAGES/wesnoth-help.mo -%%NLS%%share/locale/ca/LC_MESSAGES/wesnoth-httt.mo -%%NLS%%share/locale/ca/LC_MESSAGES/wesnoth-l.mo -%%NLS%%share/locale/ca/LC_MESSAGES/wesnoth-lib.mo -%%NLS%%share/locale/ca/LC_MESSAGES/wesnoth-low.mo -%%NLS%%share/locale/ca/LC_MESSAGES/wesnoth-multiplayer.mo -%%NLS%%share/locale/ca/LC_MESSAGES/wesnoth-nr.mo -%%NLS%%share/locale/ca/LC_MESSAGES/wesnoth-sof.mo -%%NLS%%share/locale/ca/LC_MESSAGES/wesnoth-sotbe.mo -%%NLS%%share/locale/ca/LC_MESSAGES/wesnoth-tb.mo -%%NLS%%share/locale/ca/LC_MESSAGES/wesnoth-test.mo -%%NLS%%share/locale/ca/LC_MESSAGES/wesnoth-thot.mo -%%NLS%%share/locale/ca/LC_MESSAGES/wesnoth-trow.mo -%%NLS%%share/locale/ca/LC_MESSAGES/wesnoth-tsg.mo -%%NLS%%share/locale/ca/LC_MESSAGES/wesnoth-tutorial.mo -%%NLS%%share/locale/ca/LC_MESSAGES/wesnoth-units.mo -%%NLS%%share/locale/ca/LC_MESSAGES/wesnoth-utbs.mo -%%NLS%%share/locale/ca/LC_MESSAGES/wesnoth.mo -%%NLS%%share/locale/ca_ES@valencia/LC_MESSAGES/wesnoth-anl.mo -%%NLS%%share/locale/ca_ES@valencia/LC_MESSAGES/wesnoth-aoi.mo -%%NLS%%share/locale/ca_ES@valencia/LC_MESSAGES/wesnoth-did.mo -%%NLS%%share/locale/ca_ES@valencia/LC_MESSAGES/wesnoth-dm.mo -%%NLS%%share/locale/ca_ES@valencia/LC_MESSAGES/wesnoth-dw.mo -%%NLS%%share/locale/ca_ES@valencia/LC_MESSAGES/wesnoth-editor.mo -%%NLS%%share/locale/ca_ES@valencia/LC_MESSAGES/wesnoth-ei.mo -%%NLS%%share/locale/ca_ES@valencia/LC_MESSAGES/wesnoth-help.mo -%%NLS%%share/locale/ca_ES@valencia/LC_MESSAGES/wesnoth-httt.mo -%%NLS%%share/locale/ca_ES@valencia/LC_MESSAGES/wesnoth-l.mo -%%NLS%%share/locale/ca_ES@valencia/LC_MESSAGES/wesnoth-lib.mo -%%NLS%%share/locale/ca_ES@valencia/LC_MESSAGES/wesnoth-low.mo -%%NLS%%share/locale/ca_ES@valencia/LC_MESSAGES/wesnoth-multiplayer.mo -%%NLS%%share/locale/ca_ES@valencia/LC_MESSAGES/wesnoth-nr.mo -%%NLS%%share/locale/ca_ES@valencia/LC_MESSAGES/wesnoth-sof.mo -%%NLS%%share/locale/ca_ES@valencia/LC_MESSAGES/wesnoth-sotbe.mo -%%NLS%%share/locale/ca_ES@valencia/LC_MESSAGES/wesnoth-tb.mo -%%NLS%%share/locale/ca_ES@valencia/LC_MESSAGES/wesnoth-test.mo -%%NLS%%share/locale/ca_ES@valencia/LC_MESSAGES/wesnoth-thot.mo -%%NLS%%share/locale/ca_ES@valencia/LC_MESSAGES/wesnoth-trow.mo -%%NLS%%share/locale/ca_ES@valencia/LC_MESSAGES/wesnoth-tsg.mo -%%NLS%%share/locale/ca_ES@valencia/LC_MESSAGES/wesnoth-tutorial.mo -%%NLS%%share/locale/ca_ES@valencia/LC_MESSAGES/wesnoth-units.mo -%%NLS%%share/locale/ca_ES@valencia/LC_MESSAGES/wesnoth-utbs.mo -%%NLS%%share/locale/ca_ES@valencia/LC_MESSAGES/wesnoth.mo -%%NLS%%share/locale/cs/LC_MESSAGES/wesnoth-anl.mo -%%NLS%%share/locale/cs/LC_MESSAGES/wesnoth-aoi.mo -%%NLS%%share/locale/cs/LC_MESSAGES/wesnoth-did.mo -%%NLS%%share/locale/cs/LC_MESSAGES/wesnoth-dm.mo -%%NLS%%share/locale/cs/LC_MESSAGES/wesnoth-dw.mo -%%NLS%%share/locale/cs/LC_MESSAGES/wesnoth-editor.mo -%%NLS%%share/locale/cs/LC_MESSAGES/wesnoth-ei.mo -%%NLS%%share/locale/cs/LC_MESSAGES/wesnoth-help.mo -%%NLS%%share/locale/cs/LC_MESSAGES/wesnoth-httt.mo -%%NLS%%share/locale/cs/LC_MESSAGES/wesnoth-l.mo -%%NLS%%share/locale/cs/LC_MESSAGES/wesnoth-lib.mo -%%NLS%%share/locale/cs/LC_MESSAGES/wesnoth-low.mo -%%NLS%%share/locale/cs/LC_MESSAGES/wesnoth-multiplayer.mo -%%NLS%%share/locale/cs/LC_MESSAGES/wesnoth-nr.mo -%%NLS%%share/locale/cs/LC_MESSAGES/wesnoth-sof.mo -%%NLS%%share/locale/cs/LC_MESSAGES/wesnoth-sotbe.mo -%%NLS%%share/locale/cs/LC_MESSAGES/wesnoth-tb.mo -%%NLS%%share/locale/cs/LC_MESSAGES/wesnoth-test.mo -%%NLS%%share/locale/cs/LC_MESSAGES/wesnoth-thot.mo -%%NLS%%share/locale/cs/LC_MESSAGES/wesnoth-trow.mo -%%NLS%%share/locale/cs/LC_MESSAGES/wesnoth-tsg.mo -%%NLS%%share/locale/cs/LC_MESSAGES/wesnoth-tutorial.mo -%%NLS%%share/locale/cs/LC_MESSAGES/wesnoth-units.mo -%%NLS%%share/locale/cs/LC_MESSAGES/wesnoth-utbs.mo -%%NLS%%share/locale/cs/LC_MESSAGES/wesnoth.mo -%%NLS%%share/locale/da/LC_MESSAGES/wesnoth-anl.mo -%%NLS%%share/locale/da/LC_MESSAGES/wesnoth-aoi.mo -%%NLS%%share/locale/da/LC_MESSAGES/wesnoth-did.mo -%%NLS%%share/locale/da/LC_MESSAGES/wesnoth-dm.mo -%%NLS%%share/locale/da/LC_MESSAGES/wesnoth-dw.mo -%%NLS%%share/locale/da/LC_MESSAGES/wesnoth-editor.mo -%%NLS%%share/locale/da/LC_MESSAGES/wesnoth-ei.mo -%%NLS%%share/locale/da/LC_MESSAGES/wesnoth-help.mo -%%NLS%%share/locale/da/LC_MESSAGES/wesnoth-httt.mo -%%NLS%%share/locale/da/LC_MESSAGES/wesnoth-l.mo -%%NLS%%share/locale/da/LC_MESSAGES/wesnoth-lib.mo -%%NLS%%share/locale/da/LC_MESSAGES/wesnoth-low.mo -%%NLS%%share/locale/da/LC_MESSAGES/wesnoth-multiplayer.mo -%%NLS%%share/locale/da/LC_MESSAGES/wesnoth-nr.mo -%%NLS%%share/locale/da/LC_MESSAGES/wesnoth-sof.mo -%%NLS%%share/locale/da/LC_MESSAGES/wesnoth-sotbe.mo -%%NLS%%share/locale/da/LC_MESSAGES/wesnoth-tb.mo -%%NLS%%share/locale/da/LC_MESSAGES/wesnoth-test.mo -%%NLS%%share/locale/da/LC_MESSAGES/wesnoth-thot.mo -%%NLS%%share/locale/da/LC_MESSAGES/wesnoth-trow.mo -%%NLS%%share/locale/da/LC_MESSAGES/wesnoth-tsg.mo -%%NLS%%share/locale/da/LC_MESSAGES/wesnoth-tutorial.mo -%%NLS%%share/locale/da/LC_MESSAGES/wesnoth-units.mo -%%NLS%%share/locale/da/LC_MESSAGES/wesnoth-utbs.mo -%%NLS%%share/locale/da/LC_MESSAGES/wesnoth.mo -%%NLS%%share/locale/de/LC_MESSAGES/wesnoth-anl.mo -%%NLS%%share/locale/de/LC_MESSAGES/wesnoth-aoi.mo -%%NLS%%share/locale/de/LC_MESSAGES/wesnoth-did.mo -%%NLS%%share/locale/de/LC_MESSAGES/wesnoth-dm.mo -%%NLS%%share/locale/de/LC_MESSAGES/wesnoth-dw.mo -%%NLS%%share/locale/de/LC_MESSAGES/wesnoth-editor.mo -%%NLS%%share/locale/de/LC_MESSAGES/wesnoth-ei.mo -%%NLS%%share/locale/de/LC_MESSAGES/wesnoth-help.mo -%%NLS%%share/locale/de/LC_MESSAGES/wesnoth-httt.mo -%%NLS%%share/locale/de/LC_MESSAGES/wesnoth-l.mo -%%NLS%%share/locale/de/LC_MESSAGES/wesnoth-lib.mo -%%NLS%%share/locale/de/LC_MESSAGES/wesnoth-low.mo -%%NLS%%share/locale/de/LC_MESSAGES/wesnoth-multiplayer.mo -%%NLS%%share/locale/de/LC_MESSAGES/wesnoth-nr.mo -%%NLS%%share/locale/de/LC_MESSAGES/wesnoth-sof.mo -%%NLS%%share/locale/de/LC_MESSAGES/wesnoth-sotbe.mo -%%NLS%%share/locale/de/LC_MESSAGES/wesnoth-tb.mo -%%NLS%%share/locale/de/LC_MESSAGES/wesnoth-test.mo -%%NLS%%share/locale/de/LC_MESSAGES/wesnoth-thot.mo -%%NLS%%share/locale/de/LC_MESSAGES/wesnoth-trow.mo -%%NLS%%share/locale/de/LC_MESSAGES/wesnoth-tsg.mo -%%NLS%%share/locale/de/LC_MESSAGES/wesnoth-tutorial.mo -%%NLS%%share/locale/de/LC_MESSAGES/wesnoth-units.mo -%%NLS%%share/locale/de/LC_MESSAGES/wesnoth-utbs.mo -%%NLS%%share/locale/de/LC_MESSAGES/wesnoth.mo -%%NLS%%share/locale/el/LC_MESSAGES/wesnoth-anl.mo -%%NLS%%share/locale/el/LC_MESSAGES/wesnoth-aoi.mo -%%NLS%%share/locale/el/LC_MESSAGES/wesnoth-did.mo -%%NLS%%share/locale/el/LC_MESSAGES/wesnoth-dm.mo -%%NLS%%share/locale/el/LC_MESSAGES/wesnoth-dw.mo -%%NLS%%share/locale/el/LC_MESSAGES/wesnoth-editor.mo -%%NLS%%share/locale/el/LC_MESSAGES/wesnoth-ei.mo -%%NLS%%share/locale/el/LC_MESSAGES/wesnoth-help.mo -%%NLS%%share/locale/el/LC_MESSAGES/wesnoth-httt.mo -%%NLS%%share/locale/el/LC_MESSAGES/wesnoth-l.mo -%%NLS%%share/locale/el/LC_MESSAGES/wesnoth-lib.mo -%%NLS%%share/locale/el/LC_MESSAGES/wesnoth-low.mo -%%NLS%%share/locale/el/LC_MESSAGES/wesnoth-multiplayer.mo -%%NLS%%share/locale/el/LC_MESSAGES/wesnoth-nr.mo -%%NLS%%share/locale/el/LC_MESSAGES/wesnoth-sof.mo -%%NLS%%share/locale/el/LC_MESSAGES/wesnoth-sotbe.mo -%%NLS%%share/locale/el/LC_MESSAGES/wesnoth-tb.mo -%%NLS%%share/locale/el/LC_MESSAGES/wesnoth-test.mo -%%NLS%%share/locale/el/LC_MESSAGES/wesnoth-thot.mo -%%NLS%%share/locale/el/LC_MESSAGES/wesnoth-trow.mo -%%NLS%%share/locale/el/LC_MESSAGES/wesnoth-tsg.mo -%%NLS%%share/locale/el/LC_MESSAGES/wesnoth-tutorial.mo -%%NLS%%share/locale/el/LC_MESSAGES/wesnoth-units.mo -%%NLS%%share/locale/el/LC_MESSAGES/wesnoth-utbs.mo -%%NLS%%share/locale/el/LC_MESSAGES/wesnoth.mo -%%NLS%%share/locale/en@shaw/LC_MESSAGES/wesnoth-anl.mo -%%NLS%%share/locale/en@shaw/LC_MESSAGES/wesnoth-aoi.mo -%%NLS%%share/locale/en@shaw/LC_MESSAGES/wesnoth-did.mo -%%NLS%%share/locale/en@shaw/LC_MESSAGES/wesnoth-dm.mo -%%NLS%%share/locale/en@shaw/LC_MESSAGES/wesnoth-dw.mo -%%NLS%%share/locale/en@shaw/LC_MESSAGES/wesnoth-editor.mo -%%NLS%%share/locale/en@shaw/LC_MESSAGES/wesnoth-ei.mo -%%NLS%%share/locale/en@shaw/LC_MESSAGES/wesnoth-help.mo -%%NLS%%share/locale/en@shaw/LC_MESSAGES/wesnoth-httt.mo -%%NLS%%share/locale/en@shaw/LC_MESSAGES/wesnoth-l.mo -%%NLS%%share/locale/en@shaw/LC_MESSAGES/wesnoth-lib.mo -%%NLS%%share/locale/en@shaw/LC_MESSAGES/wesnoth-low.mo -%%NLS%%share/locale/en@shaw/LC_MESSAGES/wesnoth-multiplayer.mo -%%NLS%%share/locale/en@shaw/LC_MESSAGES/wesnoth-nr.mo -%%NLS%%share/locale/en@shaw/LC_MESSAGES/wesnoth-sof.mo -%%NLS%%share/locale/en@shaw/LC_MESSAGES/wesnoth-sotbe.mo -%%NLS%%share/locale/en@shaw/LC_MESSAGES/wesnoth-tb.mo -%%NLS%%share/locale/en@shaw/LC_MESSAGES/wesnoth-test.mo -%%NLS%%share/locale/en@shaw/LC_MESSAGES/wesnoth-thot.mo -%%NLS%%share/locale/en@shaw/LC_MESSAGES/wesnoth-trow.mo -%%NLS%%share/locale/en@shaw/LC_MESSAGES/wesnoth-tsg.mo -%%NLS%%share/locale/en@shaw/LC_MESSAGES/wesnoth-tutorial.mo -%%NLS%%share/locale/en@shaw/LC_MESSAGES/wesnoth-units.mo -%%NLS%%share/locale/en@shaw/LC_MESSAGES/wesnoth-utbs.mo -%%NLS%%share/locale/en@shaw/LC_MESSAGES/wesnoth.mo -%%NLS%%share/locale/en_GB/LC_MESSAGES/wesnoth-anl.mo -%%NLS%%share/locale/en_GB/LC_MESSAGES/wesnoth-aoi.mo -%%NLS%%share/locale/en_GB/LC_MESSAGES/wesnoth-did.mo -%%NLS%%share/locale/en_GB/LC_MESSAGES/wesnoth-dm.mo -%%NLS%%share/locale/en_GB/LC_MESSAGES/wesnoth-dw.mo -%%NLS%%share/locale/en_GB/LC_MESSAGES/wesnoth-editor.mo -%%NLS%%share/locale/en_GB/LC_MESSAGES/wesnoth-ei.mo -%%NLS%%share/locale/en_GB/LC_MESSAGES/wesnoth-help.mo -%%NLS%%share/locale/en_GB/LC_MESSAGES/wesnoth-httt.mo -%%NLS%%share/locale/en_GB/LC_MESSAGES/wesnoth-l.mo -%%NLS%%share/locale/en_GB/LC_MESSAGES/wesnoth-lib.mo -%%NLS%%share/locale/en_GB/LC_MESSAGES/wesnoth-low.mo -%%NLS%%share/locale/en_GB/LC_MESSAGES/wesnoth-multiplayer.mo -%%NLS%%share/locale/en_GB/LC_MESSAGES/wesnoth-nr.mo -%%NLS%%share/locale/en_GB/LC_MESSAGES/wesnoth-sof.mo -%%NLS%%share/locale/en_GB/LC_MESSAGES/wesnoth-sotbe.mo -%%NLS%%share/locale/en_GB/LC_MESSAGES/wesnoth-tb.mo -%%NLS%%share/locale/en_GB/LC_MESSAGES/wesnoth-test.mo -%%NLS%%share/locale/en_GB/LC_MESSAGES/wesnoth-thot.mo -%%NLS%%share/locale/en_GB/LC_MESSAGES/wesnoth-trow.mo -%%NLS%%share/locale/en_GB/LC_MESSAGES/wesnoth-tsg.mo -%%NLS%%share/locale/en_GB/LC_MESSAGES/wesnoth-tutorial.mo -%%NLS%%share/locale/en_GB/LC_MESSAGES/wesnoth-units.mo -%%NLS%%share/locale/en_GB/LC_MESSAGES/wesnoth-utbs.mo -%%NLS%%share/locale/en_GB/LC_MESSAGES/wesnoth.mo -%%NLS%%share/locale/eo/LC_MESSAGES/wesnoth-anl.mo -%%NLS%%share/locale/eo/LC_MESSAGES/wesnoth-aoi.mo -%%NLS%%share/locale/eo/LC_MESSAGES/wesnoth-did.mo -%%NLS%%share/locale/eo/LC_MESSAGES/wesnoth-dm.mo -%%NLS%%share/locale/eo/LC_MESSAGES/wesnoth-dw.mo -%%NLS%%share/locale/eo/LC_MESSAGES/wesnoth-editor.mo -%%NLS%%share/locale/eo/LC_MESSAGES/wesnoth-ei.mo -%%NLS%%share/locale/eo/LC_MESSAGES/wesnoth-help.mo -%%NLS%%share/locale/eo/LC_MESSAGES/wesnoth-httt.mo -%%NLS%%share/locale/eo/LC_MESSAGES/wesnoth-l.mo -%%NLS%%share/locale/eo/LC_MESSAGES/wesnoth-lib.mo -%%NLS%%share/locale/eo/LC_MESSAGES/wesnoth-low.mo -%%NLS%%share/locale/eo/LC_MESSAGES/wesnoth-multiplayer.mo -%%NLS%%share/locale/eo/LC_MESSAGES/wesnoth-nr.mo -%%NLS%%share/locale/eo/LC_MESSAGES/wesnoth-sof.mo -%%NLS%%share/locale/eo/LC_MESSAGES/wesnoth-sotbe.mo -%%NLS%%share/locale/eo/LC_MESSAGES/wesnoth-tb.mo -%%NLS%%share/locale/eo/LC_MESSAGES/wesnoth-test.mo -%%NLS%%share/locale/eo/LC_MESSAGES/wesnoth-thot.mo -%%NLS%%share/locale/eo/LC_MESSAGES/wesnoth-trow.mo -%%NLS%%share/locale/eo/LC_MESSAGES/wesnoth-tsg.mo -%%NLS%%share/locale/eo/LC_MESSAGES/wesnoth-tutorial.mo -%%NLS%%share/locale/eo/LC_MESSAGES/wesnoth-units.mo -%%NLS%%share/locale/eo/LC_MESSAGES/wesnoth-utbs.mo -%%NLS%%share/locale/eo/LC_MESSAGES/wesnoth.mo -%%NLS%%share/locale/es/LC_MESSAGES/wesnoth-anl.mo -%%NLS%%share/locale/es/LC_MESSAGES/wesnoth-aoi.mo -%%NLS%%share/locale/es/LC_MESSAGES/wesnoth-did.mo -%%NLS%%share/locale/es/LC_MESSAGES/wesnoth-dm.mo -%%NLS%%share/locale/es/LC_MESSAGES/wesnoth-dw.mo -%%NLS%%share/locale/es/LC_MESSAGES/wesnoth-editor.mo -%%NLS%%share/locale/es/LC_MESSAGES/wesnoth-ei.mo -%%NLS%%share/locale/es/LC_MESSAGES/wesnoth-help.mo -%%NLS%%share/locale/es/LC_MESSAGES/wesnoth-httt.mo -%%NLS%%share/locale/es/LC_MESSAGES/wesnoth-l.mo -%%NLS%%share/locale/es/LC_MESSAGES/wesnoth-lib.mo -%%NLS%%share/locale/es/LC_MESSAGES/wesnoth-low.mo -%%NLS%%share/locale/es/LC_MESSAGES/wesnoth-multiplayer.mo -%%NLS%%share/locale/es/LC_MESSAGES/wesnoth-nr.mo -%%NLS%%share/locale/es/LC_MESSAGES/wesnoth-sof.mo -%%NLS%%share/locale/es/LC_MESSAGES/wesnoth-sotbe.mo -%%NLS%%share/locale/es/LC_MESSAGES/wesnoth-tb.mo -%%NLS%%share/locale/es/LC_MESSAGES/wesnoth-test.mo -%%NLS%%share/locale/es/LC_MESSAGES/wesnoth-thot.mo -%%NLS%%share/locale/es/LC_MESSAGES/wesnoth-trow.mo -%%NLS%%share/locale/es/LC_MESSAGES/wesnoth-tsg.mo -%%NLS%%share/locale/es/LC_MESSAGES/wesnoth-tutorial.mo -%%NLS%%share/locale/es/LC_MESSAGES/wesnoth-units.mo -%%NLS%%share/locale/es/LC_MESSAGES/wesnoth-utbs.mo -%%NLS%%share/locale/es/LC_MESSAGES/wesnoth.mo -%%NLS%%share/locale/et/LC_MESSAGES/wesnoth-anl.mo -%%NLS%%share/locale/et/LC_MESSAGES/wesnoth-aoi.mo -%%NLS%%share/locale/et/LC_MESSAGES/wesnoth-did.mo -%%NLS%%share/locale/et/LC_MESSAGES/wesnoth-dm.mo -%%NLS%%share/locale/et/LC_MESSAGES/wesnoth-dw.mo -%%NLS%%share/locale/et/LC_MESSAGES/wesnoth-editor.mo -%%NLS%%share/locale/et/LC_MESSAGES/wesnoth-ei.mo -%%NLS%%share/locale/et/LC_MESSAGES/wesnoth-help.mo -%%NLS%%share/locale/et/LC_MESSAGES/wesnoth-httt.mo -%%NLS%%share/locale/et/LC_MESSAGES/wesnoth-l.mo -%%NLS%%share/locale/et/LC_MESSAGES/wesnoth-lib.mo -%%NLS%%share/locale/et/LC_MESSAGES/wesnoth-low.mo -%%NLS%%share/locale/et/LC_MESSAGES/wesnoth-multiplayer.mo -%%NLS%%share/locale/et/LC_MESSAGES/wesnoth-nr.mo -%%NLS%%share/locale/et/LC_MESSAGES/wesnoth-sof.mo -%%NLS%%share/locale/et/LC_MESSAGES/wesnoth-sotbe.mo -%%NLS%%share/locale/et/LC_MESSAGES/wesnoth-tb.mo -%%NLS%%share/locale/et/LC_MESSAGES/wesnoth-test.mo -%%NLS%%share/locale/et/LC_MESSAGES/wesnoth-thot.mo -%%NLS%%share/locale/et/LC_MESSAGES/wesnoth-trow.mo -%%NLS%%share/locale/et/LC_MESSAGES/wesnoth-tsg.mo -%%NLS%%share/locale/et/LC_MESSAGES/wesnoth-tutorial.mo -%%NLS%%share/locale/et/LC_MESSAGES/wesnoth-units.mo -%%NLS%%share/locale/et/LC_MESSAGES/wesnoth-utbs.mo -%%NLS%%share/locale/et/LC_MESSAGES/wesnoth.mo -%%NLS%%share/locale/eu/LC_MESSAGES/wesnoth-anl.mo -%%NLS%%share/locale/eu/LC_MESSAGES/wesnoth-aoi.mo -%%NLS%%share/locale/eu/LC_MESSAGES/wesnoth-did.mo -%%NLS%%share/locale/eu/LC_MESSAGES/wesnoth-dm.mo -%%NLS%%share/locale/eu/LC_MESSAGES/wesnoth-dw.mo -%%NLS%%share/locale/eu/LC_MESSAGES/wesnoth-editor.mo -%%NLS%%share/locale/eu/LC_MESSAGES/wesnoth-ei.mo -%%NLS%%share/locale/eu/LC_MESSAGES/wesnoth-help.mo -%%NLS%%share/locale/eu/LC_MESSAGES/wesnoth-httt.mo -%%NLS%%share/locale/eu/LC_MESSAGES/wesnoth-l.mo -%%NLS%%share/locale/eu/LC_MESSAGES/wesnoth-lib.mo -%%NLS%%share/locale/eu/LC_MESSAGES/wesnoth-low.mo -%%NLS%%share/locale/eu/LC_MESSAGES/wesnoth-multiplayer.mo -%%NLS%%share/locale/eu/LC_MESSAGES/wesnoth-nr.mo -%%NLS%%share/locale/eu/LC_MESSAGES/wesnoth-sof.mo -%%NLS%%share/locale/eu/LC_MESSAGES/wesnoth-sotbe.mo -%%NLS%%share/locale/eu/LC_MESSAGES/wesnoth-tb.mo -%%NLS%%share/locale/eu/LC_MESSAGES/wesnoth-test.mo -%%NLS%%share/locale/eu/LC_MESSAGES/wesnoth-thot.mo -%%NLS%%share/locale/eu/LC_MESSAGES/wesnoth-trow.mo -%%NLS%%share/locale/eu/LC_MESSAGES/wesnoth-tsg.mo -%%NLS%%share/locale/eu/LC_MESSAGES/wesnoth-tutorial.mo -%%NLS%%share/locale/eu/LC_MESSAGES/wesnoth-units.mo -%%NLS%%share/locale/eu/LC_MESSAGES/wesnoth-utbs.mo -%%NLS%%share/locale/eu/LC_MESSAGES/wesnoth.mo -%%NLS%%share/locale/fi/LC_MESSAGES/wesnoth-anl.mo -%%NLS%%share/locale/fi/LC_MESSAGES/wesnoth-aoi.mo -%%NLS%%share/locale/fi/LC_MESSAGES/wesnoth-did.mo -%%NLS%%share/locale/fi/LC_MESSAGES/wesnoth-dm.mo -%%NLS%%share/locale/fi/LC_MESSAGES/wesnoth-dw.mo -%%NLS%%share/locale/fi/LC_MESSAGES/wesnoth-editor.mo -%%NLS%%share/locale/fi/LC_MESSAGES/wesnoth-ei.mo -%%NLS%%share/locale/fi/LC_MESSAGES/wesnoth-help.mo -%%NLS%%share/locale/fi/LC_MESSAGES/wesnoth-httt.mo -%%NLS%%share/locale/fi/LC_MESSAGES/wesnoth-l.mo -%%NLS%%share/locale/fi/LC_MESSAGES/wesnoth-lib.mo -%%NLS%%share/locale/fi/LC_MESSAGES/wesnoth-low.mo -%%NLS%%share/locale/fi/LC_MESSAGES/wesnoth-multiplayer.mo -%%NLS%%share/locale/fi/LC_MESSAGES/wesnoth-nr.mo -%%NLS%%share/locale/fi/LC_MESSAGES/wesnoth-sof.mo -%%NLS%%share/locale/fi/LC_MESSAGES/wesnoth-sotbe.mo -%%NLS%%share/locale/fi/LC_MESSAGES/wesnoth-tb.mo -%%NLS%%share/locale/fi/LC_MESSAGES/wesnoth-test.mo -%%NLS%%share/locale/fi/LC_MESSAGES/wesnoth-thot.mo -%%NLS%%share/locale/fi/LC_MESSAGES/wesnoth-trow.mo -%%NLS%%share/locale/fi/LC_MESSAGES/wesnoth-tsg.mo -%%NLS%%share/locale/fi/LC_MESSAGES/wesnoth-tutorial.mo -%%NLS%%share/locale/fi/LC_MESSAGES/wesnoth-units.mo -%%NLS%%share/locale/fi/LC_MESSAGES/wesnoth-utbs.mo -%%NLS%%share/locale/fi/LC_MESSAGES/wesnoth.mo -%%NLS%%share/locale/fr/LC_MESSAGES/wesnoth-anl.mo -%%NLS%%share/locale/fr/LC_MESSAGES/wesnoth-aoi.mo -%%NLS%%share/locale/fr/LC_MESSAGES/wesnoth-did.mo -%%NLS%%share/locale/fr/LC_MESSAGES/wesnoth-dm.mo -%%NLS%%share/locale/fr/LC_MESSAGES/wesnoth-dw.mo -%%NLS%%share/locale/fr/LC_MESSAGES/wesnoth-editor.mo -%%NLS%%share/locale/fr/LC_MESSAGES/wesnoth-ei.mo -%%NLS%%share/locale/fr/LC_MESSAGES/wesnoth-help.mo -%%NLS%%share/locale/fr/LC_MESSAGES/wesnoth-httt.mo -%%NLS%%share/locale/fr/LC_MESSAGES/wesnoth-l.mo -%%NLS%%share/locale/fr/LC_MESSAGES/wesnoth-lib.mo -%%NLS%%share/locale/fr/LC_MESSAGES/wesnoth-low.mo -%%NLS%%share/locale/fr/LC_MESSAGES/wesnoth-multiplayer.mo -%%NLS%%share/locale/fr/LC_MESSAGES/wesnoth-nr.mo -%%NLS%%share/locale/fr/LC_MESSAGES/wesnoth-sof.mo -%%NLS%%share/locale/fr/LC_MESSAGES/wesnoth-sotbe.mo -%%NLS%%share/locale/fr/LC_MESSAGES/wesnoth-tb.mo -%%NLS%%share/locale/fr/LC_MESSAGES/wesnoth-test.mo -%%NLS%%share/locale/fr/LC_MESSAGES/wesnoth-thot.mo -%%NLS%%share/locale/fr/LC_MESSAGES/wesnoth-trow.mo -%%NLS%%share/locale/fr/LC_MESSAGES/wesnoth-tsg.mo -%%NLS%%share/locale/fr/LC_MESSAGES/wesnoth-tutorial.mo -%%NLS%%share/locale/fr/LC_MESSAGES/wesnoth-units.mo -%%NLS%%share/locale/fr/LC_MESSAGES/wesnoth-utbs.mo -%%NLS%%share/locale/fr/LC_MESSAGES/wesnoth.mo -%%NLS%%share/locale/fur_IT/LC_MESSAGES/wesnoth-anl.mo -%%NLS%%share/locale/fur_IT/LC_MESSAGES/wesnoth-aoi.mo -%%NLS%%share/locale/fur_IT/LC_MESSAGES/wesnoth-did.mo -%%NLS%%share/locale/fur_IT/LC_MESSAGES/wesnoth-dm.mo -%%NLS%%share/locale/fur_IT/LC_MESSAGES/wesnoth-dw.mo -%%NLS%%share/locale/fur_IT/LC_MESSAGES/wesnoth-editor.mo -%%NLS%%share/locale/fur_IT/LC_MESSAGES/wesnoth-ei.mo -%%NLS%%share/locale/fur_IT/LC_MESSAGES/wesnoth-help.mo -%%NLS%%share/locale/fur_IT/LC_MESSAGES/wesnoth-httt.mo -%%NLS%%share/locale/fur_IT/LC_MESSAGES/wesnoth-l.mo -%%NLS%%share/locale/fur_IT/LC_MESSAGES/wesnoth-lib.mo -%%NLS%%share/locale/fur_IT/LC_MESSAGES/wesnoth-low.mo -%%NLS%%share/locale/fur_IT/LC_MESSAGES/wesnoth-multiplayer.mo -%%NLS%%share/locale/fur_IT/LC_MESSAGES/wesnoth-nr.mo -%%NLS%%share/locale/fur_IT/LC_MESSAGES/wesnoth-sof.mo -%%NLS%%share/locale/fur_IT/LC_MESSAGES/wesnoth-sotbe.mo -%%NLS%%share/locale/fur_IT/LC_MESSAGES/wesnoth-tb.mo -%%NLS%%share/locale/fur_IT/LC_MESSAGES/wesnoth-test.mo -%%NLS%%share/locale/fur_IT/LC_MESSAGES/wesnoth-thot.mo -%%NLS%%share/locale/fur_IT/LC_MESSAGES/wesnoth-trow.mo -%%NLS%%share/locale/fur_IT/LC_MESSAGES/wesnoth-tsg.mo -%%NLS%%share/locale/fur_IT/LC_MESSAGES/wesnoth-tutorial.mo -%%NLS%%share/locale/fur_IT/LC_MESSAGES/wesnoth-units.mo -%%NLS%%share/locale/fur_IT/LC_MESSAGES/wesnoth-utbs.mo -%%NLS%%share/locale/fur_IT/LC_MESSAGES/wesnoth.mo -%%NLS%%share/locale/ga/LC_MESSAGES/wesnoth-anl.mo -%%NLS%%share/locale/ga/LC_MESSAGES/wesnoth-aoi.mo -%%NLS%%share/locale/ga/LC_MESSAGES/wesnoth-did.mo -%%NLS%%share/locale/ga/LC_MESSAGES/wesnoth-dm.mo -%%NLS%%share/locale/ga/LC_MESSAGES/wesnoth-dw.mo -%%NLS%%share/locale/ga/LC_MESSAGES/wesnoth-editor.mo -%%NLS%%share/locale/ga/LC_MESSAGES/wesnoth-ei.mo -%%NLS%%share/locale/ga/LC_MESSAGES/wesnoth-help.mo -%%NLS%%share/locale/ga/LC_MESSAGES/wesnoth-httt.mo -%%NLS%%share/locale/ga/LC_MESSAGES/wesnoth-l.mo -%%NLS%%share/locale/ga/LC_MESSAGES/wesnoth-lib.mo -%%NLS%%share/locale/ga/LC_MESSAGES/wesnoth-low.mo -%%NLS%%share/locale/ga/LC_MESSAGES/wesnoth-multiplayer.mo -%%NLS%%share/locale/ga/LC_MESSAGES/wesnoth-nr.mo -%%NLS%%share/locale/ga/LC_MESSAGES/wesnoth-sof.mo -%%NLS%%share/locale/ga/LC_MESSAGES/wesnoth-sotbe.mo -%%NLS%%share/locale/ga/LC_MESSAGES/wesnoth-tb.mo -%%NLS%%share/locale/ga/LC_MESSAGES/wesnoth-test.mo -%%NLS%%share/locale/ga/LC_MESSAGES/wesnoth-thot.mo -%%NLS%%share/locale/ga/LC_MESSAGES/wesnoth-trow.mo -%%NLS%%share/locale/ga/LC_MESSAGES/wesnoth-tsg.mo -%%NLS%%share/locale/ga/LC_MESSAGES/wesnoth-tutorial.mo -%%NLS%%share/locale/ga/LC_MESSAGES/wesnoth-units.mo -%%NLS%%share/locale/ga/LC_MESSAGES/wesnoth-utbs.mo -%%NLS%%share/locale/ga/LC_MESSAGES/wesnoth.mo -%%NLS%%share/locale/gl/LC_MESSAGES/wesnoth-anl.mo -%%NLS%%share/locale/gl/LC_MESSAGES/wesnoth-aoi.mo -%%NLS%%share/locale/gl/LC_MESSAGES/wesnoth-did.mo -%%NLS%%share/locale/gl/LC_MESSAGES/wesnoth-dm.mo -%%NLS%%share/locale/gl/LC_MESSAGES/wesnoth-dw.mo -%%NLS%%share/locale/gl/LC_MESSAGES/wesnoth-editor.mo -%%NLS%%share/locale/gl/LC_MESSAGES/wesnoth-ei.mo -%%NLS%%share/locale/gl/LC_MESSAGES/wesnoth-help.mo -%%NLS%%share/locale/gl/LC_MESSAGES/wesnoth-httt.mo -%%NLS%%share/locale/gl/LC_MESSAGES/wesnoth-l.mo -%%NLS%%share/locale/gl/LC_MESSAGES/wesnoth-lib.mo -%%NLS%%share/locale/gl/LC_MESSAGES/wesnoth-low.mo -%%NLS%%share/locale/gl/LC_MESSAGES/wesnoth-multiplayer.mo -%%NLS%%share/locale/gl/LC_MESSAGES/wesnoth-nr.mo -%%NLS%%share/locale/gl/LC_MESSAGES/wesnoth-sof.mo -%%NLS%%share/locale/gl/LC_MESSAGES/wesnoth-sotbe.mo -%%NLS%%share/locale/gl/LC_MESSAGES/wesnoth-tb.mo -%%NLS%%share/locale/gl/LC_MESSAGES/wesnoth-test.mo -%%NLS%%share/locale/gl/LC_MESSAGES/wesnoth-thot.mo -%%NLS%%share/locale/gl/LC_MESSAGES/wesnoth-trow.mo -%%NLS%%share/locale/gl/LC_MESSAGES/wesnoth-tsg.mo -%%NLS%%share/locale/gl/LC_MESSAGES/wesnoth-tutorial.mo -%%NLS%%share/locale/gl/LC_MESSAGES/wesnoth-units.mo -%%NLS%%share/locale/gl/LC_MESSAGES/wesnoth-utbs.mo -%%NLS%%share/locale/gl/LC_MESSAGES/wesnoth.mo -%%NLS%%share/locale/he/LC_MESSAGES/wesnoth-anl.mo -%%NLS%%share/locale/he/LC_MESSAGES/wesnoth-aoi.mo -%%NLS%%share/locale/he/LC_MESSAGES/wesnoth-did.mo -%%NLS%%share/locale/he/LC_MESSAGES/wesnoth-dm.mo -%%NLS%%share/locale/he/LC_MESSAGES/wesnoth-dw.mo -%%NLS%%share/locale/he/LC_MESSAGES/wesnoth-editor.mo -%%NLS%%share/locale/he/LC_MESSAGES/wesnoth-ei.mo -%%NLS%%share/locale/he/LC_MESSAGES/wesnoth-help.mo -%%NLS%%share/locale/he/LC_MESSAGES/wesnoth-httt.mo -%%NLS%%share/locale/he/LC_MESSAGES/wesnoth-l.mo -%%NLS%%share/locale/he/LC_MESSAGES/wesnoth-lib.mo -%%NLS%%share/locale/he/LC_MESSAGES/wesnoth-low.mo -%%NLS%%share/locale/he/LC_MESSAGES/wesnoth-multiplayer.mo -%%NLS%%share/locale/he/LC_MESSAGES/wesnoth-nr.mo -%%NLS%%share/locale/he/LC_MESSAGES/wesnoth-sof.mo -%%NLS%%share/locale/he/LC_MESSAGES/wesnoth-sotbe.mo -%%NLS%%share/locale/he/LC_MESSAGES/wesnoth-tb.mo -%%NLS%%share/locale/he/LC_MESSAGES/wesnoth-test.mo -%%NLS%%share/locale/he/LC_MESSAGES/wesnoth-thot.mo -%%NLS%%share/locale/he/LC_MESSAGES/wesnoth-trow.mo -%%NLS%%share/locale/he/LC_MESSAGES/wesnoth-tsg.mo -%%NLS%%share/locale/he/LC_MESSAGES/wesnoth-tutorial.mo -%%NLS%%share/locale/he/LC_MESSAGES/wesnoth-units.mo -%%NLS%%share/locale/he/LC_MESSAGES/wesnoth-utbs.mo -%%NLS%%share/locale/he/LC_MESSAGES/wesnoth.mo -%%NLS%%share/locale/hr/LC_MESSAGES/wesnoth-anl.mo -%%NLS%%share/locale/hr/LC_MESSAGES/wesnoth-aoi.mo -%%NLS%%share/locale/hr/LC_MESSAGES/wesnoth-did.mo -%%NLS%%share/locale/hr/LC_MESSAGES/wesnoth-dm.mo -%%NLS%%share/locale/hr/LC_MESSAGES/wesnoth-dw.mo -%%NLS%%share/locale/hr/LC_MESSAGES/wesnoth-editor.mo -%%NLS%%share/locale/hr/LC_MESSAGES/wesnoth-ei.mo -%%NLS%%share/locale/hr/LC_MESSAGES/wesnoth-help.mo -%%NLS%%share/locale/hr/LC_MESSAGES/wesnoth-httt.mo -%%NLS%%share/locale/hr/LC_MESSAGES/wesnoth-l.mo -%%NLS%%share/locale/hr/LC_MESSAGES/wesnoth-lib.mo -%%NLS%%share/locale/hr/LC_MESSAGES/wesnoth-low.mo -%%NLS%%share/locale/hr/LC_MESSAGES/wesnoth-multiplayer.mo -%%NLS%%share/locale/hr/LC_MESSAGES/wesnoth-nr.mo -%%NLS%%share/locale/hr/LC_MESSAGES/wesnoth-sof.mo -%%NLS%%share/locale/hr/LC_MESSAGES/wesnoth-sotbe.mo -%%NLS%%share/locale/hr/LC_MESSAGES/wesnoth-tb.mo -%%NLS%%share/locale/hr/LC_MESSAGES/wesnoth-test.mo -%%NLS%%share/locale/hr/LC_MESSAGES/wesnoth-thot.mo -%%NLS%%share/locale/hr/LC_MESSAGES/wesnoth-trow.mo -%%NLS%%share/locale/hr/LC_MESSAGES/wesnoth-tsg.mo -%%NLS%%share/locale/hr/LC_MESSAGES/wesnoth-tutorial.mo -%%NLS%%share/locale/hr/LC_MESSAGES/wesnoth-units.mo -%%NLS%%share/locale/hr/LC_MESSAGES/wesnoth-utbs.mo -%%NLS%%share/locale/hr/LC_MESSAGES/wesnoth.mo -%%NLS%%share/locale/hu/LC_MESSAGES/wesnoth-anl.mo -%%NLS%%share/locale/hu/LC_MESSAGES/wesnoth-aoi.mo -%%NLS%%share/locale/hu/LC_MESSAGES/wesnoth-did.mo -%%NLS%%share/locale/hu/LC_MESSAGES/wesnoth-dm.mo -%%NLS%%share/locale/hu/LC_MESSAGES/wesnoth-dw.mo -%%NLS%%share/locale/hu/LC_MESSAGES/wesnoth-editor.mo -%%NLS%%share/locale/hu/LC_MESSAGES/wesnoth-ei.mo -%%NLS%%share/locale/hu/LC_MESSAGES/wesnoth-help.mo -%%NLS%%share/locale/hu/LC_MESSAGES/wesnoth-httt.mo -%%NLS%%share/locale/hu/LC_MESSAGES/wesnoth-l.mo -%%NLS%%share/locale/hu/LC_MESSAGES/wesnoth-lib.mo -%%NLS%%share/locale/hu/LC_MESSAGES/wesnoth-low.mo -%%NLS%%share/locale/hu/LC_MESSAGES/wesnoth-multiplayer.mo -%%NLS%%share/locale/hu/LC_MESSAGES/wesnoth-nr.mo -%%NLS%%share/locale/hu/LC_MESSAGES/wesnoth-sof.mo -%%NLS%%share/locale/hu/LC_MESSAGES/wesnoth-sotbe.mo -%%NLS%%share/locale/hu/LC_MESSAGES/wesnoth-tb.mo -%%NLS%%share/locale/hu/LC_MESSAGES/wesnoth-test.mo -%%NLS%%share/locale/hu/LC_MESSAGES/wesnoth-thot.mo -%%NLS%%share/locale/hu/LC_MESSAGES/wesnoth-trow.mo -%%NLS%%share/locale/hu/LC_MESSAGES/wesnoth-tsg.mo -%%NLS%%share/locale/hu/LC_MESSAGES/wesnoth-tutorial.mo -%%NLS%%share/locale/hu/LC_MESSAGES/wesnoth-units.mo -%%NLS%%share/locale/hu/LC_MESSAGES/wesnoth-utbs.mo -%%NLS%%share/locale/hu/LC_MESSAGES/wesnoth.mo -%%NLS%%share/locale/id/LC_MESSAGES/wesnoth-anl.mo -%%NLS%%share/locale/id/LC_MESSAGES/wesnoth-aoi.mo -%%NLS%%share/locale/id/LC_MESSAGES/wesnoth-did.mo -%%NLS%%share/locale/id/LC_MESSAGES/wesnoth-dm.mo -%%NLS%%share/locale/id/LC_MESSAGES/wesnoth-dw.mo -%%NLS%%share/locale/id/LC_MESSAGES/wesnoth-editor.mo -%%NLS%%share/locale/id/LC_MESSAGES/wesnoth-ei.mo -%%NLS%%share/locale/id/LC_MESSAGES/wesnoth-help.mo -%%NLS%%share/locale/id/LC_MESSAGES/wesnoth-httt.mo -%%NLS%%share/locale/id/LC_MESSAGES/wesnoth-l.mo -%%NLS%%share/locale/id/LC_MESSAGES/wesnoth-lib.mo -%%NLS%%share/locale/id/LC_MESSAGES/wesnoth-low.mo -%%NLS%%share/locale/id/LC_MESSAGES/wesnoth-multiplayer.mo -%%NLS%%share/locale/id/LC_MESSAGES/wesnoth-nr.mo -%%NLS%%share/locale/id/LC_MESSAGES/wesnoth-sof.mo -%%NLS%%share/locale/id/LC_MESSAGES/wesnoth-sotbe.mo -%%NLS%%share/locale/id/LC_MESSAGES/wesnoth-tb.mo -%%NLS%%share/locale/id/LC_MESSAGES/wesnoth-test.mo -%%NLS%%share/locale/id/LC_MESSAGES/wesnoth-thot.mo -%%NLS%%share/locale/id/LC_MESSAGES/wesnoth-trow.mo -%%NLS%%share/locale/id/LC_MESSAGES/wesnoth-tsg.mo -%%NLS%%share/locale/id/LC_MESSAGES/wesnoth-tutorial.mo -%%NLS%%share/locale/id/LC_MESSAGES/wesnoth-units.mo -%%NLS%%share/locale/id/LC_MESSAGES/wesnoth-utbs.mo -%%NLS%%share/locale/id/LC_MESSAGES/wesnoth.mo -%%NLS%%share/locale/is/LC_MESSAGES/wesnoth-anl.mo -%%NLS%%share/locale/is/LC_MESSAGES/wesnoth-aoi.mo -%%NLS%%share/locale/is/LC_MESSAGES/wesnoth-did.mo -%%NLS%%share/locale/is/LC_MESSAGES/wesnoth-dm.mo -%%NLS%%share/locale/is/LC_MESSAGES/wesnoth-dw.mo -%%NLS%%share/locale/is/LC_MESSAGES/wesnoth-editor.mo -%%NLS%%share/locale/is/LC_MESSAGES/wesnoth-ei.mo -%%NLS%%share/locale/is/LC_MESSAGES/wesnoth-help.mo -%%NLS%%share/locale/is/LC_MESSAGES/wesnoth-httt.mo -%%NLS%%share/locale/is/LC_MESSAGES/wesnoth-l.mo -%%NLS%%share/locale/is/LC_MESSAGES/wesnoth-lib.mo -%%NLS%%share/locale/is/LC_MESSAGES/wesnoth-low.mo -%%NLS%%share/locale/is/LC_MESSAGES/wesnoth-multiplayer.mo -%%NLS%%share/locale/is/LC_MESSAGES/wesnoth-nr.mo -%%NLS%%share/locale/is/LC_MESSAGES/wesnoth-sof.mo -%%NLS%%share/locale/is/LC_MESSAGES/wesnoth-sotbe.mo -%%NLS%%share/locale/is/LC_MESSAGES/wesnoth-tb.mo -%%NLS%%share/locale/is/LC_MESSAGES/wesnoth-test.mo -%%NLS%%share/locale/is/LC_MESSAGES/wesnoth-thot.mo -%%NLS%%share/locale/is/LC_MESSAGES/wesnoth-trow.mo -%%NLS%%share/locale/is/LC_MESSAGES/wesnoth-tsg.mo -%%NLS%%share/locale/is/LC_MESSAGES/wesnoth-tutorial.mo -%%NLS%%share/locale/is/LC_MESSAGES/wesnoth-units.mo -%%NLS%%share/locale/is/LC_MESSAGES/wesnoth-utbs.mo -%%NLS%%share/locale/is/LC_MESSAGES/wesnoth.mo -%%NLS%%share/locale/it/LC_MESSAGES/wesnoth-anl.mo -%%NLS%%share/locale/it/LC_MESSAGES/wesnoth-aoi.mo -%%NLS%%share/locale/it/LC_MESSAGES/wesnoth-did.mo -%%NLS%%share/locale/it/LC_MESSAGES/wesnoth-dm.mo -%%NLS%%share/locale/it/LC_MESSAGES/wesnoth-dw.mo -%%NLS%%share/locale/it/LC_MESSAGES/wesnoth-editor.mo -%%NLS%%share/locale/it/LC_MESSAGES/wesnoth-ei.mo -%%NLS%%share/locale/it/LC_MESSAGES/wesnoth-help.mo -%%NLS%%share/locale/it/LC_MESSAGES/wesnoth-httt.mo -%%NLS%%share/locale/it/LC_MESSAGES/wesnoth-l.mo -%%NLS%%share/locale/it/LC_MESSAGES/wesnoth-lib.mo -%%NLS%%share/locale/it/LC_MESSAGES/wesnoth-low.mo -%%NLS%%share/locale/it/LC_MESSAGES/wesnoth-multiplayer.mo -%%NLS%%share/locale/it/LC_MESSAGES/wesnoth-nr.mo -%%NLS%%share/locale/it/LC_MESSAGES/wesnoth-sof.mo -%%NLS%%share/locale/it/LC_MESSAGES/wesnoth-sotbe.mo -%%NLS%%share/locale/it/LC_MESSAGES/wesnoth-tb.mo -%%NLS%%share/locale/it/LC_MESSAGES/wesnoth-test.mo -%%NLS%%share/locale/it/LC_MESSAGES/wesnoth-thot.mo -%%NLS%%share/locale/it/LC_MESSAGES/wesnoth-trow.mo -%%NLS%%share/locale/it/LC_MESSAGES/wesnoth-tsg.mo -%%NLS%%share/locale/it/LC_MESSAGES/wesnoth-tutorial.mo -%%NLS%%share/locale/it/LC_MESSAGES/wesnoth-units.mo -%%NLS%%share/locale/it/LC_MESSAGES/wesnoth-utbs.mo -%%NLS%%share/locale/it/LC_MESSAGES/wesnoth.mo -%%NLS%%share/locale/ja/LC_MESSAGES/wesnoth-anl.mo -%%NLS%%share/locale/ja/LC_MESSAGES/wesnoth-aoi.mo -%%NLS%%share/locale/ja/LC_MESSAGES/wesnoth-did.mo -%%NLS%%share/locale/ja/LC_MESSAGES/wesnoth-dm.mo -%%NLS%%share/locale/ja/LC_MESSAGES/wesnoth-dw.mo -%%NLS%%share/locale/ja/LC_MESSAGES/wesnoth-editor.mo -%%NLS%%share/locale/ja/LC_MESSAGES/wesnoth-ei.mo -%%NLS%%share/locale/ja/LC_MESSAGES/wesnoth-help.mo -%%NLS%%share/locale/ja/LC_MESSAGES/wesnoth-httt.mo -%%NLS%%share/locale/ja/LC_MESSAGES/wesnoth-l.mo -%%NLS%%share/locale/ja/LC_MESSAGES/wesnoth-lib.mo -%%NLS%%share/locale/ja/LC_MESSAGES/wesnoth-low.mo -%%NLS%%share/locale/ja/LC_MESSAGES/wesnoth-multiplayer.mo -%%NLS%%share/locale/ja/LC_MESSAGES/wesnoth-nr.mo -%%NLS%%share/locale/ja/LC_MESSAGES/wesnoth-sof.mo -%%NLS%%share/locale/ja/LC_MESSAGES/wesnoth-sotbe.mo -%%NLS%%share/locale/ja/LC_MESSAGES/wesnoth-tb.mo -%%NLS%%share/locale/ja/LC_MESSAGES/wesnoth-test.mo -%%NLS%%share/locale/ja/LC_MESSAGES/wesnoth-thot.mo -%%NLS%%share/locale/ja/LC_MESSAGES/wesnoth-trow.mo -%%NLS%%share/locale/ja/LC_MESSAGES/wesnoth-tsg.mo -%%NLS%%share/locale/ja/LC_MESSAGES/wesnoth-tutorial.mo -%%NLS%%share/locale/ja/LC_MESSAGES/wesnoth-units.mo -%%NLS%%share/locale/ja/LC_MESSAGES/wesnoth-utbs.mo -%%NLS%%share/locale/ja/LC_MESSAGES/wesnoth.mo -%%NLS%%share/locale/ko/LC_MESSAGES/wesnoth-anl.mo -%%NLS%%share/locale/ko/LC_MESSAGES/wesnoth-aoi.mo -%%NLS%%share/locale/ko/LC_MESSAGES/wesnoth-did.mo -%%NLS%%share/locale/ko/LC_MESSAGES/wesnoth-dm.mo -%%NLS%%share/locale/ko/LC_MESSAGES/wesnoth-dw.mo -%%NLS%%share/locale/ko/LC_MESSAGES/wesnoth-editor.mo -%%NLS%%share/locale/ko/LC_MESSAGES/wesnoth-ei.mo -%%NLS%%share/locale/ko/LC_MESSAGES/wesnoth-help.mo -%%NLS%%share/locale/ko/LC_MESSAGES/wesnoth-httt.mo -%%NLS%%share/locale/ko/LC_MESSAGES/wesnoth-l.mo -%%NLS%%share/locale/ko/LC_MESSAGES/wesnoth-lib.mo -%%NLS%%share/locale/ko/LC_MESSAGES/wesnoth-low.mo -%%NLS%%share/locale/ko/LC_MESSAGES/wesnoth-multiplayer.mo -%%NLS%%share/locale/ko/LC_MESSAGES/wesnoth-nr.mo -%%NLS%%share/locale/ko/LC_MESSAGES/wesnoth-sof.mo -%%NLS%%share/locale/ko/LC_MESSAGES/wesnoth-sotbe.mo -%%NLS%%share/locale/ko/LC_MESSAGES/wesnoth-tb.mo -%%NLS%%share/locale/ko/LC_MESSAGES/wesnoth-test.mo -%%NLS%%share/locale/ko/LC_MESSAGES/wesnoth-thot.mo -%%NLS%%share/locale/ko/LC_MESSAGES/wesnoth-trow.mo -%%NLS%%share/locale/ko/LC_MESSAGES/wesnoth-tsg.mo -%%NLS%%share/locale/ko/LC_MESSAGES/wesnoth-tutorial.mo -%%NLS%%share/locale/ko/LC_MESSAGES/wesnoth-units.mo -%%NLS%%share/locale/ko/LC_MESSAGES/wesnoth-utbs.mo -%%NLS%%share/locale/ko/LC_MESSAGES/wesnoth.mo -%%NLS%%share/locale/la/LC_MESSAGES/wesnoth-anl.mo -%%NLS%%share/locale/la/LC_MESSAGES/wesnoth-aoi.mo -%%NLS%%share/locale/la/LC_MESSAGES/wesnoth-did.mo -%%NLS%%share/locale/la/LC_MESSAGES/wesnoth-dm.mo -%%NLS%%share/locale/la/LC_MESSAGES/wesnoth-dw.mo -%%NLS%%share/locale/la/LC_MESSAGES/wesnoth-editor.mo -%%NLS%%share/locale/la/LC_MESSAGES/wesnoth-ei.mo -%%NLS%%share/locale/la/LC_MESSAGES/wesnoth-help.mo -%%NLS%%share/locale/la/LC_MESSAGES/wesnoth-httt.mo -%%NLS%%share/locale/la/LC_MESSAGES/wesnoth-l.mo -%%NLS%%share/locale/la/LC_MESSAGES/wesnoth-lib.mo -%%NLS%%share/locale/la/LC_MESSAGES/wesnoth-low.mo -%%NLS%%share/locale/la/LC_MESSAGES/wesnoth-multiplayer.mo -%%NLS%%share/locale/la/LC_MESSAGES/wesnoth-nr.mo -%%NLS%%share/locale/la/LC_MESSAGES/wesnoth-sof.mo -%%NLS%%share/locale/la/LC_MESSAGES/wesnoth-sotbe.mo -%%NLS%%share/locale/la/LC_MESSAGES/wesnoth-tb.mo -%%NLS%%share/locale/la/LC_MESSAGES/wesnoth-test.mo -%%NLS%%share/locale/la/LC_MESSAGES/wesnoth-thot.mo -%%NLS%%share/locale/la/LC_MESSAGES/wesnoth-trow.mo -%%NLS%%share/locale/la/LC_MESSAGES/wesnoth-tsg.mo -%%NLS%%share/locale/la/LC_MESSAGES/wesnoth-tutorial.mo -%%NLS%%share/locale/la/LC_MESSAGES/wesnoth-units.mo -%%NLS%%share/locale/la/LC_MESSAGES/wesnoth-utbs.mo -%%NLS%%share/locale/la/LC_MESSAGES/wesnoth.mo -%%NLS%%share/locale/lt/LC_MESSAGES/wesnoth-anl.mo -%%NLS%%share/locale/lt/LC_MESSAGES/wesnoth-aoi.mo -%%NLS%%share/locale/lt/LC_MESSAGES/wesnoth-did.mo -%%NLS%%share/locale/lt/LC_MESSAGES/wesnoth-dm.mo -%%NLS%%share/locale/lt/LC_MESSAGES/wesnoth-dw.mo -%%NLS%%share/locale/lt/LC_MESSAGES/wesnoth-editor.mo -%%NLS%%share/locale/lt/LC_MESSAGES/wesnoth-ei.mo -%%NLS%%share/locale/lt/LC_MESSAGES/wesnoth-help.mo -%%NLS%%share/locale/lt/LC_MESSAGES/wesnoth-httt.mo -%%NLS%%share/locale/lt/LC_MESSAGES/wesnoth-l.mo -%%NLS%%share/locale/lt/LC_MESSAGES/wesnoth-lib.mo -%%NLS%%share/locale/lt/LC_MESSAGES/wesnoth-low.mo -%%NLS%%share/locale/lt/LC_MESSAGES/wesnoth-multiplayer.mo -%%NLS%%share/locale/lt/LC_MESSAGES/wesnoth-nr.mo -%%NLS%%share/locale/lt/LC_MESSAGES/wesnoth-sof.mo -%%NLS%%share/locale/lt/LC_MESSAGES/wesnoth-sotbe.mo -%%NLS%%share/locale/lt/LC_MESSAGES/wesnoth-tb.mo -%%NLS%%share/locale/lt/LC_MESSAGES/wesnoth-test.mo -%%NLS%%share/locale/lt/LC_MESSAGES/wesnoth-thot.mo -%%NLS%%share/locale/lt/LC_MESSAGES/wesnoth-trow.mo -%%NLS%%share/locale/lt/LC_MESSAGES/wesnoth-tsg.mo -%%NLS%%share/locale/lt/LC_MESSAGES/wesnoth-tutorial.mo -%%NLS%%share/locale/lt/LC_MESSAGES/wesnoth-units.mo -%%NLS%%share/locale/lt/LC_MESSAGES/wesnoth-utbs.mo -%%NLS%%share/locale/lt/LC_MESSAGES/wesnoth.mo -%%NLS%%share/locale/lv/LC_MESSAGES/wesnoth-anl.mo -%%NLS%%share/locale/lv/LC_MESSAGES/wesnoth-aoi.mo -%%NLS%%share/locale/lv/LC_MESSAGES/wesnoth-did.mo -%%NLS%%share/locale/lv/LC_MESSAGES/wesnoth-dm.mo -%%NLS%%share/locale/lv/LC_MESSAGES/wesnoth-dw.mo -%%NLS%%share/locale/lv/LC_MESSAGES/wesnoth-editor.mo -%%NLS%%share/locale/lv/LC_MESSAGES/wesnoth-ei.mo -%%NLS%%share/locale/lv/LC_MESSAGES/wesnoth-help.mo -%%NLS%%share/locale/lv/LC_MESSAGES/wesnoth-httt.mo -%%NLS%%share/locale/lv/LC_MESSAGES/wesnoth-l.mo -%%NLS%%share/locale/lv/LC_MESSAGES/wesnoth-lib.mo -%%NLS%%share/locale/lv/LC_MESSAGES/wesnoth-low.mo -%%NLS%%share/locale/lv/LC_MESSAGES/wesnoth-multiplayer.mo -%%NLS%%share/locale/lv/LC_MESSAGES/wesnoth-nr.mo -%%NLS%%share/locale/lv/LC_MESSAGES/wesnoth-sof.mo -%%NLS%%share/locale/lv/LC_MESSAGES/wesnoth-sotbe.mo -%%NLS%%share/locale/lv/LC_MESSAGES/wesnoth-tb.mo -%%NLS%%share/locale/lv/LC_MESSAGES/wesnoth-test.mo -%%NLS%%share/locale/lv/LC_MESSAGES/wesnoth-thot.mo -%%NLS%%share/locale/lv/LC_MESSAGES/wesnoth-trow.mo -%%NLS%%share/locale/lv/LC_MESSAGES/wesnoth-tsg.mo -%%NLS%%share/locale/lv/LC_MESSAGES/wesnoth-tutorial.mo -%%NLS%%share/locale/lv/LC_MESSAGES/wesnoth-units.mo -%%NLS%%share/locale/lv/LC_MESSAGES/wesnoth-utbs.mo -%%NLS%%share/locale/lv/LC_MESSAGES/wesnoth.mo -%%NLS%%share/locale/mk/LC_MESSAGES/wesnoth-anl.mo -%%NLS%%share/locale/mk/LC_MESSAGES/wesnoth-aoi.mo -%%NLS%%share/locale/mk/LC_MESSAGES/wesnoth-did.mo -%%NLS%%share/locale/mk/LC_MESSAGES/wesnoth-dm.mo -%%NLS%%share/locale/mk/LC_MESSAGES/wesnoth-dw.mo -%%NLS%%share/locale/mk/LC_MESSAGES/wesnoth-editor.mo -%%NLS%%share/locale/mk/LC_MESSAGES/wesnoth-ei.mo -%%NLS%%share/locale/mk/LC_MESSAGES/wesnoth-help.mo -%%NLS%%share/locale/mk/LC_MESSAGES/wesnoth-httt.mo -%%NLS%%share/locale/mk/LC_MESSAGES/wesnoth-l.mo -%%NLS%%share/locale/mk/LC_MESSAGES/wesnoth-lib.mo -%%NLS%%share/locale/mk/LC_MESSAGES/wesnoth-low.mo -%%NLS%%share/locale/mk/LC_MESSAGES/wesnoth-multiplayer.mo -%%NLS%%share/locale/mk/LC_MESSAGES/wesnoth-nr.mo -%%NLS%%share/locale/mk/LC_MESSAGES/wesnoth-sof.mo -%%NLS%%share/locale/mk/LC_MESSAGES/wesnoth-sotbe.mo -%%NLS%%share/locale/mk/LC_MESSAGES/wesnoth-tb.mo -%%NLS%%share/locale/mk/LC_MESSAGES/wesnoth-test.mo -%%NLS%%share/locale/mk/LC_MESSAGES/wesnoth-thot.mo -%%NLS%%share/locale/mk/LC_MESSAGES/wesnoth-trow.mo -%%NLS%%share/locale/mk/LC_MESSAGES/wesnoth-tsg.mo -%%NLS%%share/locale/mk/LC_MESSAGES/wesnoth-tutorial.mo -%%NLS%%share/locale/mk/LC_MESSAGES/wesnoth-units.mo -%%NLS%%share/locale/mk/LC_MESSAGES/wesnoth-utbs.mo -%%NLS%%share/locale/mk/LC_MESSAGES/wesnoth.mo -%%NLS%%share/locale/mr/LC_MESSAGES/wesnoth-anl.mo -%%NLS%%share/locale/mr/LC_MESSAGES/wesnoth-aoi.mo -%%NLS%%share/locale/mr/LC_MESSAGES/wesnoth-did.mo -%%NLS%%share/locale/mr/LC_MESSAGES/wesnoth-dm.mo -%%NLS%%share/locale/mr/LC_MESSAGES/wesnoth-dw.mo -%%NLS%%share/locale/mr/LC_MESSAGES/wesnoth-editor.mo -%%NLS%%share/locale/mr/LC_MESSAGES/wesnoth-ei.mo -%%NLS%%share/locale/mr/LC_MESSAGES/wesnoth-help.mo -%%NLS%%share/locale/mr/LC_MESSAGES/wesnoth-httt.mo -%%NLS%%share/locale/mr/LC_MESSAGES/wesnoth-l.mo -%%NLS%%share/locale/mr/LC_MESSAGES/wesnoth-lib.mo -%%NLS%%share/locale/mr/LC_MESSAGES/wesnoth-low.mo -%%NLS%%share/locale/mr/LC_MESSAGES/wesnoth-multiplayer.mo -%%NLS%%share/locale/mr/LC_MESSAGES/wesnoth-nr.mo -%%NLS%%share/locale/mr/LC_MESSAGES/wesnoth-sof.mo -%%NLS%%share/locale/mr/LC_MESSAGES/wesnoth-sotbe.mo -%%NLS%%share/locale/mr/LC_MESSAGES/wesnoth-tb.mo -%%NLS%%share/locale/mr/LC_MESSAGES/wesnoth-test.mo -%%NLS%%share/locale/mr/LC_MESSAGES/wesnoth-thot.mo -%%NLS%%share/locale/mr/LC_MESSAGES/wesnoth-trow.mo -%%NLS%%share/locale/mr/LC_MESSAGES/wesnoth-tsg.mo -%%NLS%%share/locale/mr/LC_MESSAGES/wesnoth-tutorial.mo -%%NLS%%share/locale/mr/LC_MESSAGES/wesnoth-units.mo -%%NLS%%share/locale/mr/LC_MESSAGES/wesnoth-utbs.mo -%%NLS%%share/locale/mr/LC_MESSAGES/wesnoth.mo -%%NLS%%share/locale/nb_NO/LC_MESSAGES/wesnoth-anl.mo -%%NLS%%share/locale/nb_NO/LC_MESSAGES/wesnoth-aoi.mo -%%NLS%%share/locale/nb_NO/LC_MESSAGES/wesnoth-did.mo -%%NLS%%share/locale/nb_NO/LC_MESSAGES/wesnoth-dm.mo -%%NLS%%share/locale/nb_NO/LC_MESSAGES/wesnoth-dw.mo -%%NLS%%share/locale/nb_NO/LC_MESSAGES/wesnoth-editor.mo -%%NLS%%share/locale/nb_NO/LC_MESSAGES/wesnoth-ei.mo -%%NLS%%share/locale/nb_NO/LC_MESSAGES/wesnoth-help.mo -%%NLS%%share/locale/nb_NO/LC_MESSAGES/wesnoth-httt.mo -%%NLS%%share/locale/nb_NO/LC_MESSAGES/wesnoth-l.mo -%%NLS%%share/locale/nb_NO/LC_MESSAGES/wesnoth-lib.mo -%%NLS%%share/locale/nb_NO/LC_MESSAGES/wesnoth-low.mo -%%NLS%%share/locale/nb_NO/LC_MESSAGES/wesnoth-multiplayer.mo -%%NLS%%share/locale/nb_NO/LC_MESSAGES/wesnoth-nr.mo -%%NLS%%share/locale/nb_NO/LC_MESSAGES/wesnoth-sof.mo -%%NLS%%share/locale/nb_NO/LC_MESSAGES/wesnoth-sotbe.mo -%%NLS%%share/locale/nb_NO/LC_MESSAGES/wesnoth-tb.mo -%%NLS%%share/locale/nb_NO/LC_MESSAGES/wesnoth-test.mo -%%NLS%%share/locale/nb_NO/LC_MESSAGES/wesnoth-thot.mo -%%NLS%%share/locale/nb_NO/LC_MESSAGES/wesnoth-trow.mo -%%NLS%%share/locale/nb_NO/LC_MESSAGES/wesnoth-tsg.mo -%%NLS%%share/locale/nb_NO/LC_MESSAGES/wesnoth-tutorial.mo -%%NLS%%share/locale/nb_NO/LC_MESSAGES/wesnoth-units.mo -%%NLS%%share/locale/nb_NO/LC_MESSAGES/wesnoth-utbs.mo -%%NLS%%share/locale/nb_NO/LC_MESSAGES/wesnoth.mo -%%NLS%%share/locale/nl/LC_MESSAGES/wesnoth-anl.mo -%%NLS%%share/locale/nl/LC_MESSAGES/wesnoth-aoi.mo -%%NLS%%share/locale/nl/LC_MESSAGES/wesnoth-did.mo -%%NLS%%share/locale/nl/LC_MESSAGES/wesnoth-dm.mo -%%NLS%%share/locale/nl/LC_MESSAGES/wesnoth-dw.mo -%%NLS%%share/locale/nl/LC_MESSAGES/wesnoth-editor.mo -%%NLS%%share/locale/nl/LC_MESSAGES/wesnoth-ei.mo -%%NLS%%share/locale/nl/LC_MESSAGES/wesnoth-help.mo -%%NLS%%share/locale/nl/LC_MESSAGES/wesnoth-httt.mo -%%NLS%%share/locale/nl/LC_MESSAGES/wesnoth-l.mo -%%NLS%%share/locale/nl/LC_MESSAGES/wesnoth-lib.mo -%%NLS%%share/locale/nl/LC_MESSAGES/wesnoth-low.mo -%%NLS%%share/locale/nl/LC_MESSAGES/wesnoth-multiplayer.mo -%%NLS%%share/locale/nl/LC_MESSAGES/wesnoth-nr.mo -%%NLS%%share/locale/nl/LC_MESSAGES/wesnoth-sof.mo -%%NLS%%share/locale/nl/LC_MESSAGES/wesnoth-sotbe.mo -%%NLS%%share/locale/nl/LC_MESSAGES/wesnoth-tb.mo -%%NLS%%share/locale/nl/LC_MESSAGES/wesnoth-test.mo -%%NLS%%share/locale/nl/LC_MESSAGES/wesnoth-thot.mo -%%NLS%%share/locale/nl/LC_MESSAGES/wesnoth-trow.mo -%%NLS%%share/locale/nl/LC_MESSAGES/wesnoth-tsg.mo -%%NLS%%share/locale/nl/LC_MESSAGES/wesnoth-tutorial.mo -%%NLS%%share/locale/nl/LC_MESSAGES/wesnoth-units.mo -%%NLS%%share/locale/nl/LC_MESSAGES/wesnoth-utbs.mo -%%NLS%%share/locale/nl/LC_MESSAGES/wesnoth.mo -%%NLS%%share/locale/pl/LC_MESSAGES/wesnoth-anl.mo -%%NLS%%share/locale/pl/LC_MESSAGES/wesnoth-aoi.mo -%%NLS%%share/locale/pl/LC_MESSAGES/wesnoth-did.mo -%%NLS%%share/locale/pl/LC_MESSAGES/wesnoth-dm.mo -%%NLS%%share/locale/pl/LC_MESSAGES/wesnoth-dw.mo -%%NLS%%share/locale/pl/LC_MESSAGES/wesnoth-editor.mo -%%NLS%%share/locale/pl/LC_MESSAGES/wesnoth-ei.mo -%%NLS%%share/locale/pl/LC_MESSAGES/wesnoth-help.mo -%%NLS%%share/locale/pl/LC_MESSAGES/wesnoth-httt.mo -%%NLS%%share/locale/pl/LC_MESSAGES/wesnoth-l.mo -%%NLS%%share/locale/pl/LC_MESSAGES/wesnoth-lib.mo -%%NLS%%share/locale/pl/LC_MESSAGES/wesnoth-low.mo -%%NLS%%share/locale/pl/LC_MESSAGES/wesnoth-multiplayer.mo -%%NLS%%share/locale/pl/LC_MESSAGES/wesnoth-nr.mo -%%NLS%%share/locale/pl/LC_MESSAGES/wesnoth-sof.mo -%%NLS%%share/locale/pl/LC_MESSAGES/wesnoth-sotbe.mo -%%NLS%%share/locale/pl/LC_MESSAGES/wesnoth-tb.mo -%%NLS%%share/locale/pl/LC_MESSAGES/wesnoth-test.mo -%%NLS%%share/locale/pl/LC_MESSAGES/wesnoth-thot.mo -%%NLS%%share/locale/pl/LC_MESSAGES/wesnoth-trow.mo -%%NLS%%share/locale/pl/LC_MESSAGES/wesnoth-tsg.mo -%%NLS%%share/locale/pl/LC_MESSAGES/wesnoth-tutorial.mo -%%NLS%%share/locale/pl/LC_MESSAGES/wesnoth-units.mo -%%NLS%%share/locale/pl/LC_MESSAGES/wesnoth-utbs.mo -%%NLS%%share/locale/pl/LC_MESSAGES/wesnoth.mo -%%NLS%%share/locale/pt/LC_MESSAGES/wesnoth-anl.mo -%%NLS%%share/locale/pt/LC_MESSAGES/wesnoth-aoi.mo -%%NLS%%share/locale/pt/LC_MESSAGES/wesnoth-did.mo -%%NLS%%share/locale/pt/LC_MESSAGES/wesnoth-dm.mo -%%NLS%%share/locale/pt/LC_MESSAGES/wesnoth-dw.mo -%%NLS%%share/locale/pt/LC_MESSAGES/wesnoth-editor.mo -%%NLS%%share/locale/pt/LC_MESSAGES/wesnoth-ei.mo -%%NLS%%share/locale/pt/LC_MESSAGES/wesnoth-help.mo -%%NLS%%share/locale/pt/LC_MESSAGES/wesnoth-httt.mo -%%NLS%%share/locale/pt/LC_MESSAGES/wesnoth-l.mo -%%NLS%%share/locale/pt/LC_MESSAGES/wesnoth-lib.mo -%%NLS%%share/locale/pt/LC_MESSAGES/wesnoth-low.mo -%%NLS%%share/locale/pt/LC_MESSAGES/wesnoth-multiplayer.mo -%%NLS%%share/locale/pt/LC_MESSAGES/wesnoth-nr.mo -%%NLS%%share/locale/pt/LC_MESSAGES/wesnoth-sof.mo -%%NLS%%share/locale/pt/LC_MESSAGES/wesnoth-sotbe.mo -%%NLS%%share/locale/pt/LC_MESSAGES/wesnoth-tb.mo -%%NLS%%share/locale/pt/LC_MESSAGES/wesnoth-test.mo -%%NLS%%share/locale/pt/LC_MESSAGES/wesnoth-thot.mo -%%NLS%%share/locale/pt/LC_MESSAGES/wesnoth-trow.mo -%%NLS%%share/locale/pt/LC_MESSAGES/wesnoth-tsg.mo -%%NLS%%share/locale/pt/LC_MESSAGES/wesnoth-tutorial.mo -%%NLS%%share/locale/pt/LC_MESSAGES/wesnoth-units.mo -%%NLS%%share/locale/pt/LC_MESSAGES/wesnoth-utbs.mo -%%NLS%%share/locale/pt/LC_MESSAGES/wesnoth.mo -%%NLS%%share/locale/pt_BR/LC_MESSAGES/wesnoth-anl.mo -%%NLS%%share/locale/pt_BR/LC_MESSAGES/wesnoth-aoi.mo -%%NLS%%share/locale/pt_BR/LC_MESSAGES/wesnoth-did.mo -%%NLS%%share/locale/pt_BR/LC_MESSAGES/wesnoth-dm.mo -%%NLS%%share/locale/pt_BR/LC_MESSAGES/wesnoth-dw.mo -%%NLS%%share/locale/pt_BR/LC_MESSAGES/wesnoth-editor.mo -%%NLS%%share/locale/pt_BR/LC_MESSAGES/wesnoth-ei.mo -%%NLS%%share/locale/pt_BR/LC_MESSAGES/wesnoth-help.mo -%%NLS%%share/locale/pt_BR/LC_MESSAGES/wesnoth-httt.mo -%%NLS%%share/locale/pt_BR/LC_MESSAGES/wesnoth-l.mo -%%NLS%%share/locale/pt_BR/LC_MESSAGES/wesnoth-lib.mo -%%NLS%%share/locale/pt_BR/LC_MESSAGES/wesnoth-low.mo -%%NLS%%share/locale/pt_BR/LC_MESSAGES/wesnoth-multiplayer.mo -%%NLS%%share/locale/pt_BR/LC_MESSAGES/wesnoth-nr.mo -%%NLS%%share/locale/pt_BR/LC_MESSAGES/wesnoth-sof.mo -%%NLS%%share/locale/pt_BR/LC_MESSAGES/wesnoth-sotbe.mo -%%NLS%%share/locale/pt_BR/LC_MESSAGES/wesnoth-tb.mo -%%NLS%%share/locale/pt_BR/LC_MESSAGES/wesnoth-test.mo -%%NLS%%share/locale/pt_BR/LC_MESSAGES/wesnoth-thot.mo -%%NLS%%share/locale/pt_BR/LC_MESSAGES/wesnoth-trow.mo -%%NLS%%share/locale/pt_BR/LC_MESSAGES/wesnoth-tsg.mo -%%NLS%%share/locale/pt_BR/LC_MESSAGES/wesnoth-tutorial.mo -%%NLS%%share/locale/pt_BR/LC_MESSAGES/wesnoth-units.mo -%%NLS%%share/locale/pt_BR/LC_MESSAGES/wesnoth-utbs.mo -%%NLS%%share/locale/pt_BR/LC_MESSAGES/wesnoth.mo -%%NLS%%share/locale/racv/LC_MESSAGES/wesnoth-anl.mo -%%NLS%%share/locale/racv/LC_MESSAGES/wesnoth-aoi.mo -%%NLS%%share/locale/racv/LC_MESSAGES/wesnoth-did.mo -%%NLS%%share/locale/racv/LC_MESSAGES/wesnoth-dm.mo -%%NLS%%share/locale/racv/LC_MESSAGES/wesnoth-dw.mo -%%NLS%%share/locale/racv/LC_MESSAGES/wesnoth-editor.mo -%%NLS%%share/locale/racv/LC_MESSAGES/wesnoth-ei.mo -%%NLS%%share/locale/racv/LC_MESSAGES/wesnoth-help.mo -%%NLS%%share/locale/racv/LC_MESSAGES/wesnoth-httt.mo -%%NLS%%share/locale/racv/LC_MESSAGES/wesnoth-l.mo -%%NLS%%share/locale/racv/LC_MESSAGES/wesnoth-lib.mo -%%NLS%%share/locale/racv/LC_MESSAGES/wesnoth-low.mo -%%NLS%%share/locale/racv/LC_MESSAGES/wesnoth-multiplayer.mo -%%NLS%%share/locale/racv/LC_MESSAGES/wesnoth-nr.mo -%%NLS%%share/locale/racv/LC_MESSAGES/wesnoth-sof.mo -%%NLS%%share/locale/racv/LC_MESSAGES/wesnoth-sotbe.mo -%%NLS%%share/locale/racv/LC_MESSAGES/wesnoth-tb.mo -%%NLS%%share/locale/racv/LC_MESSAGES/wesnoth-test.mo -%%NLS%%share/locale/racv/LC_MESSAGES/wesnoth-thot.mo -%%NLS%%share/locale/racv/LC_MESSAGES/wesnoth-trow.mo -%%NLS%%share/locale/racv/LC_MESSAGES/wesnoth-tsg.mo -%%NLS%%share/locale/racv/LC_MESSAGES/wesnoth-tutorial.mo -%%NLS%%share/locale/racv/LC_MESSAGES/wesnoth-units.mo -%%NLS%%share/locale/racv/LC_MESSAGES/wesnoth-utbs.mo -%%NLS%%share/locale/racv/LC_MESSAGES/wesnoth.mo -%%NLS%%share/locale/ro/LC_MESSAGES/wesnoth-anl.mo -%%NLS%%share/locale/ro/LC_MESSAGES/wesnoth-aoi.mo -%%NLS%%share/locale/ro/LC_MESSAGES/wesnoth-did.mo -%%NLS%%share/locale/ro/LC_MESSAGES/wesnoth-dm.mo -%%NLS%%share/locale/ro/LC_MESSAGES/wesnoth-dw.mo -%%NLS%%share/locale/ro/LC_MESSAGES/wesnoth-editor.mo -%%NLS%%share/locale/ro/LC_MESSAGES/wesnoth-ei.mo -%%NLS%%share/locale/ro/LC_MESSAGES/wesnoth-help.mo -%%NLS%%share/locale/ro/LC_MESSAGES/wesnoth-httt.mo -%%NLS%%share/locale/ro/LC_MESSAGES/wesnoth-l.mo -%%NLS%%share/locale/ro/LC_MESSAGES/wesnoth-lib.mo -%%NLS%%share/locale/ro/LC_MESSAGES/wesnoth-low.mo -%%NLS%%share/locale/ro/LC_MESSAGES/wesnoth-multiplayer.mo -%%NLS%%share/locale/ro/LC_MESSAGES/wesnoth-nr.mo -%%NLS%%share/locale/ro/LC_MESSAGES/wesnoth-sof.mo -%%NLS%%share/locale/ro/LC_MESSAGES/wesnoth-sotbe.mo -%%NLS%%share/locale/ro/LC_MESSAGES/wesnoth-tb.mo -%%NLS%%share/locale/ro/LC_MESSAGES/wesnoth-test.mo -%%NLS%%share/locale/ro/LC_MESSAGES/wesnoth-thot.mo -%%NLS%%share/locale/ro/LC_MESSAGES/wesnoth-trow.mo -%%NLS%%share/locale/ro/LC_MESSAGES/wesnoth-tsg.mo -%%NLS%%share/locale/ro/LC_MESSAGES/wesnoth-tutorial.mo -%%NLS%%share/locale/ro/LC_MESSAGES/wesnoth-units.mo -%%NLS%%share/locale/ro/LC_MESSAGES/wesnoth-utbs.mo -%%NLS%%share/locale/ro/LC_MESSAGES/wesnoth.mo -%%NLS%%share/locale/ru/LC_MESSAGES/wesnoth-anl.mo -%%NLS%%share/locale/ru/LC_MESSAGES/wesnoth-aoi.mo -%%NLS%%share/locale/ru/LC_MESSAGES/wesnoth-did.mo -%%NLS%%share/locale/ru/LC_MESSAGES/wesnoth-dm.mo -%%NLS%%share/locale/ru/LC_MESSAGES/wesnoth-dw.mo -%%NLS%%share/locale/ru/LC_MESSAGES/wesnoth-editor.mo -%%NLS%%share/locale/ru/LC_MESSAGES/wesnoth-ei.mo -%%NLS%%share/locale/ru/LC_MESSAGES/wesnoth-help.mo -%%NLS%%share/locale/ru/LC_MESSAGES/wesnoth-httt.mo -%%NLS%%share/locale/ru/LC_MESSAGES/wesnoth-l.mo -%%NLS%%share/locale/ru/LC_MESSAGES/wesnoth-lib.mo -%%NLS%%share/locale/ru/LC_MESSAGES/wesnoth-low.mo -%%NLS%%share/locale/ru/LC_MESSAGES/wesnoth-multiplayer.mo -%%NLS%%share/locale/ru/LC_MESSAGES/wesnoth-nr.mo -%%NLS%%share/locale/ru/LC_MESSAGES/wesnoth-sof.mo -%%NLS%%share/locale/ru/LC_MESSAGES/wesnoth-sotbe.mo -%%NLS%%share/locale/ru/LC_MESSAGES/wesnoth-tb.mo -%%NLS%%share/locale/ru/LC_MESSAGES/wesnoth-test.mo -%%NLS%%share/locale/ru/LC_MESSAGES/wesnoth-thot.mo -%%NLS%%share/locale/ru/LC_MESSAGES/wesnoth-trow.mo -%%NLS%%share/locale/ru/LC_MESSAGES/wesnoth-tsg.mo -%%NLS%%share/locale/ru/LC_MESSAGES/wesnoth-tutorial.mo -%%NLS%%share/locale/ru/LC_MESSAGES/wesnoth-units.mo -%%NLS%%share/locale/ru/LC_MESSAGES/wesnoth-utbs.mo -%%NLS%%share/locale/ru/LC_MESSAGES/wesnoth.mo -%%NLS%%share/locale/sk/LC_MESSAGES/wesnoth-anl.mo -%%NLS%%share/locale/sk/LC_MESSAGES/wesnoth-aoi.mo -%%NLS%%share/locale/sk/LC_MESSAGES/wesnoth-did.mo -%%NLS%%share/locale/sk/LC_MESSAGES/wesnoth-dm.mo -%%NLS%%share/locale/sk/LC_MESSAGES/wesnoth-dw.mo -%%NLS%%share/locale/sk/LC_MESSAGES/wesnoth-editor.mo -%%NLS%%share/locale/sk/LC_MESSAGES/wesnoth-ei.mo -%%NLS%%share/locale/sk/LC_MESSAGES/wesnoth-help.mo -%%NLS%%share/locale/sk/LC_MESSAGES/wesnoth-httt.mo -%%NLS%%share/locale/sk/LC_MESSAGES/wesnoth-l.mo -%%NLS%%share/locale/sk/LC_MESSAGES/wesnoth-lib.mo -%%NLS%%share/locale/sk/LC_MESSAGES/wesnoth-low.mo -%%NLS%%share/locale/sk/LC_MESSAGES/wesnoth-multiplayer.mo -%%NLS%%share/locale/sk/LC_MESSAGES/wesnoth-nr.mo -%%NLS%%share/locale/sk/LC_MESSAGES/wesnoth-sof.mo -%%NLS%%share/locale/sk/LC_MESSAGES/wesnoth-sotbe.mo -%%NLS%%share/locale/sk/LC_MESSAGES/wesnoth-tb.mo -%%NLS%%share/locale/sk/LC_MESSAGES/wesnoth-test.mo -%%NLS%%share/locale/sk/LC_MESSAGES/wesnoth-thot.mo -%%NLS%%share/locale/sk/LC_MESSAGES/wesnoth-trow.mo -%%NLS%%share/locale/sk/LC_MESSAGES/wesnoth-tsg.mo -%%NLS%%share/locale/sk/LC_MESSAGES/wesnoth-tutorial.mo -%%NLS%%share/locale/sk/LC_MESSAGES/wesnoth-units.mo -%%NLS%%share/locale/sk/LC_MESSAGES/wesnoth-utbs.mo -%%NLS%%share/locale/sk/LC_MESSAGES/wesnoth.mo -%%NLS%%share/locale/sl/LC_MESSAGES/wesnoth-anl.mo -%%NLS%%share/locale/sl/LC_MESSAGES/wesnoth-aoi.mo -%%NLS%%share/locale/sl/LC_MESSAGES/wesnoth-did.mo -%%NLS%%share/locale/sl/LC_MESSAGES/wesnoth-dm.mo -%%NLS%%share/locale/sl/LC_MESSAGES/wesnoth-dw.mo -%%NLS%%share/locale/sl/LC_MESSAGES/wesnoth-editor.mo -%%NLS%%share/locale/sl/LC_MESSAGES/wesnoth-ei.mo -%%NLS%%share/locale/sl/LC_MESSAGES/wesnoth-help.mo -%%NLS%%share/locale/sl/LC_MESSAGES/wesnoth-httt.mo -%%NLS%%share/locale/sl/LC_MESSAGES/wesnoth-l.mo -%%NLS%%share/locale/sl/LC_MESSAGES/wesnoth-lib.mo -%%NLS%%share/locale/sl/LC_MESSAGES/wesnoth-low.mo -%%NLS%%share/locale/sl/LC_MESSAGES/wesnoth-multiplayer.mo -%%NLS%%share/locale/sl/LC_MESSAGES/wesnoth-nr.mo -%%NLS%%share/locale/sl/LC_MESSAGES/wesnoth-sof.mo -%%NLS%%share/locale/sl/LC_MESSAGES/wesnoth-sotbe.mo -%%NLS%%share/locale/sl/LC_MESSAGES/wesnoth-tb.mo -%%NLS%%share/locale/sl/LC_MESSAGES/wesnoth-test.mo -%%NLS%%share/locale/sl/LC_MESSAGES/wesnoth-thot.mo -%%NLS%%share/locale/sl/LC_MESSAGES/wesnoth-trow.mo -%%NLS%%share/locale/sl/LC_MESSAGES/wesnoth-tsg.mo -%%NLS%%share/locale/sl/LC_MESSAGES/wesnoth-tutorial.mo -%%NLS%%share/locale/sl/LC_MESSAGES/wesnoth-units.mo -%%NLS%%share/locale/sl/LC_MESSAGES/wesnoth-utbs.mo -%%NLS%%share/locale/sl/LC_MESSAGES/wesnoth.mo -%%NLS%%share/locale/sr/LC_MESSAGES/wesnoth-anl.mo -%%NLS%%share/locale/sr/LC_MESSAGES/wesnoth-aoi.mo -%%NLS%%share/locale/sr/LC_MESSAGES/wesnoth-did.mo -%%NLS%%share/locale/sr/LC_MESSAGES/wesnoth-dm.mo -%%NLS%%share/locale/sr/LC_MESSAGES/wesnoth-dw.mo -%%NLS%%share/locale/sr/LC_MESSAGES/wesnoth-editor.mo -%%NLS%%share/locale/sr/LC_MESSAGES/wesnoth-ei.mo -%%NLS%%share/locale/sr/LC_MESSAGES/wesnoth-help.mo -%%NLS%%share/locale/sr/LC_MESSAGES/wesnoth-httt.mo -%%NLS%%share/locale/sr/LC_MESSAGES/wesnoth-l.mo -%%NLS%%share/locale/sr/LC_MESSAGES/wesnoth-lib.mo -%%NLS%%share/locale/sr/LC_MESSAGES/wesnoth-low.mo -%%NLS%%share/locale/sr/LC_MESSAGES/wesnoth-multiplayer.mo -%%NLS%%share/locale/sr/LC_MESSAGES/wesnoth-nr.mo -%%NLS%%share/locale/sr/LC_MESSAGES/wesnoth-sof.mo -%%NLS%%share/locale/sr/LC_MESSAGES/wesnoth-sotbe.mo -%%NLS%%share/locale/sr/LC_MESSAGES/wesnoth-tb.mo -%%NLS%%share/locale/sr/LC_MESSAGES/wesnoth-test.mo -%%NLS%%share/locale/sr/LC_MESSAGES/wesnoth-thot.mo -%%NLS%%share/locale/sr/LC_MESSAGES/wesnoth-trow.mo -%%NLS%%share/locale/sr/LC_MESSAGES/wesnoth-tsg.mo -%%NLS%%share/locale/sr/LC_MESSAGES/wesnoth-tutorial.mo -%%NLS%%share/locale/sr/LC_MESSAGES/wesnoth-units.mo -%%NLS%%share/locale/sr/LC_MESSAGES/wesnoth-utbs.mo -%%NLS%%share/locale/sr/LC_MESSAGES/wesnoth.mo -%%NLS%%share/locale/sr@ijekavian/LC_MESSAGES/wesnoth-anl.mo -%%NLS%%share/locale/sr@ijekavian/LC_MESSAGES/wesnoth-aoi.mo -%%NLS%%share/locale/sr@ijekavian/LC_MESSAGES/wesnoth-did.mo -%%NLS%%share/locale/sr@ijekavian/LC_MESSAGES/wesnoth-dm.mo -%%NLS%%share/locale/sr@ijekavian/LC_MESSAGES/wesnoth-dw.mo -%%NLS%%share/locale/sr@ijekavian/LC_MESSAGES/wesnoth-editor.mo -%%NLS%%share/locale/sr@ijekavian/LC_MESSAGES/wesnoth-ei.mo -%%NLS%%share/locale/sr@ijekavian/LC_MESSAGES/wesnoth-help.mo -%%NLS%%share/locale/sr@ijekavian/LC_MESSAGES/wesnoth-httt.mo -%%NLS%%share/locale/sr@ijekavian/LC_MESSAGES/wesnoth-l.mo -%%NLS%%share/locale/sr@ijekavian/LC_MESSAGES/wesnoth-lib.mo -%%NLS%%share/locale/sr@ijekavian/LC_MESSAGES/wesnoth-low.mo -%%NLS%%share/locale/sr@ijekavian/LC_MESSAGES/wesnoth-multiplayer.mo -%%NLS%%share/locale/sr@ijekavian/LC_MESSAGES/wesnoth-nr.mo -%%NLS%%share/locale/sr@ijekavian/LC_MESSAGES/wesnoth-sof.mo -%%NLS%%share/locale/sr@ijekavian/LC_MESSAGES/wesnoth-sotbe.mo -%%NLS%%share/locale/sr@ijekavian/LC_MESSAGES/wesnoth-tb.mo -%%NLS%%share/locale/sr@ijekavian/LC_MESSAGES/wesnoth-test.mo -%%NLS%%share/locale/sr@ijekavian/LC_MESSAGES/wesnoth-thot.mo -%%NLS%%share/locale/sr@ijekavian/LC_MESSAGES/wesnoth-trow.mo -%%NLS%%share/locale/sr@ijekavian/LC_MESSAGES/wesnoth-tsg.mo -%%NLS%%share/locale/sr@ijekavian/LC_MESSAGES/wesnoth-tutorial.mo -%%NLS%%share/locale/sr@ijekavian/LC_MESSAGES/wesnoth-units.mo -%%NLS%%share/locale/sr@ijekavian/LC_MESSAGES/wesnoth-utbs.mo -%%NLS%%share/locale/sr@ijekavian/LC_MESSAGES/wesnoth.mo -%%NLS%%share/locale/sr@ijekavianlatin/LC_MESSAGES/wesnoth-anl.mo -%%NLS%%share/locale/sr@ijekavianlatin/LC_MESSAGES/wesnoth-aoi.mo -%%NLS%%share/locale/sr@ijekavianlatin/LC_MESSAGES/wesnoth-did.mo -%%NLS%%share/locale/sr@ijekavianlatin/LC_MESSAGES/wesnoth-dm.mo -%%NLS%%share/locale/sr@ijekavianlatin/LC_MESSAGES/wesnoth-dw.mo -%%NLS%%share/locale/sr@ijekavianlatin/LC_MESSAGES/wesnoth-editor.mo -%%NLS%%share/locale/sr@ijekavianlatin/LC_MESSAGES/wesnoth-ei.mo -%%NLS%%share/locale/sr@ijekavianlatin/LC_MESSAGES/wesnoth-help.mo -%%NLS%%share/locale/sr@ijekavianlatin/LC_MESSAGES/wesnoth-httt.mo -%%NLS%%share/locale/sr@ijekavianlatin/LC_MESSAGES/wesnoth-l.mo -%%NLS%%share/locale/sr@ijekavianlatin/LC_MESSAGES/wesnoth-lib.mo -%%NLS%%share/locale/sr@ijekavianlatin/LC_MESSAGES/wesnoth-low.mo -%%NLS%%share/locale/sr@ijekavianlatin/LC_MESSAGES/wesnoth-multiplayer.mo -%%NLS%%share/locale/sr@ijekavianlatin/LC_MESSAGES/wesnoth-nr.mo -%%NLS%%share/locale/sr@ijekavianlatin/LC_MESSAGES/wesnoth-sof.mo -%%NLS%%share/locale/sr@ijekavianlatin/LC_MESSAGES/wesnoth-sotbe.mo -%%NLS%%share/locale/sr@ijekavianlatin/LC_MESSAGES/wesnoth-tb.mo -%%NLS%%share/locale/sr@ijekavianlatin/LC_MESSAGES/wesnoth-test.mo -%%NLS%%share/locale/sr@ijekavianlatin/LC_MESSAGES/wesnoth-thot.mo -%%NLS%%share/locale/sr@ijekavianlatin/LC_MESSAGES/wesnoth-trow.mo -%%NLS%%share/locale/sr@ijekavianlatin/LC_MESSAGES/wesnoth-tsg.mo -%%NLS%%share/locale/sr@ijekavianlatin/LC_MESSAGES/wesnoth-tutorial.mo -%%NLS%%share/locale/sr@ijekavianlatin/LC_MESSAGES/wesnoth-units.mo -%%NLS%%share/locale/sr@ijekavianlatin/LC_MESSAGES/wesnoth-utbs.mo -%%NLS%%share/locale/sr@ijekavianlatin/LC_MESSAGES/wesnoth.mo -%%NLS%%share/locale/sr@latin/LC_MESSAGES/wesnoth-anl.mo -%%NLS%%share/locale/sr@latin/LC_MESSAGES/wesnoth-aoi.mo -%%NLS%%share/locale/sr@latin/LC_MESSAGES/wesnoth-did.mo -%%NLS%%share/locale/sr@latin/LC_MESSAGES/wesnoth-dm.mo -%%NLS%%share/locale/sr@latin/LC_MESSAGES/wesnoth-dw.mo -%%NLS%%share/locale/sr@latin/LC_MESSAGES/wesnoth-editor.mo -%%NLS%%share/locale/sr@latin/LC_MESSAGES/wesnoth-ei.mo -%%NLS%%share/locale/sr@latin/LC_MESSAGES/wesnoth-help.mo -%%NLS%%share/locale/sr@latin/LC_MESSAGES/wesnoth-httt.mo -%%NLS%%share/locale/sr@latin/LC_MESSAGES/wesnoth-l.mo -%%NLS%%share/locale/sr@latin/LC_MESSAGES/wesnoth-lib.mo -%%NLS%%share/locale/sr@latin/LC_MESSAGES/wesnoth-low.mo -%%NLS%%share/locale/sr@latin/LC_MESSAGES/wesnoth-multiplayer.mo -%%NLS%%share/locale/sr@latin/LC_MESSAGES/wesnoth-nr.mo -%%NLS%%share/locale/sr@latin/LC_MESSAGES/wesnoth-sof.mo -%%NLS%%share/locale/sr@latin/LC_MESSAGES/wesnoth-sotbe.mo -%%NLS%%share/locale/sr@latin/LC_MESSAGES/wesnoth-tb.mo -%%NLS%%share/locale/sr@latin/LC_MESSAGES/wesnoth-test.mo -%%NLS%%share/locale/sr@latin/LC_MESSAGES/wesnoth-thot.mo -%%NLS%%share/locale/sr@latin/LC_MESSAGES/wesnoth-trow.mo -%%NLS%%share/locale/sr@latin/LC_MESSAGES/wesnoth-tsg.mo -%%NLS%%share/locale/sr@latin/LC_MESSAGES/wesnoth-tutorial.mo -%%NLS%%share/locale/sr@latin/LC_MESSAGES/wesnoth-units.mo -%%NLS%%share/locale/sr@latin/LC_MESSAGES/wesnoth-utbs.mo -%%NLS%%share/locale/sr@latin/LC_MESSAGES/wesnoth.mo -%%NLS%%share/locale/sv/LC_MESSAGES/wesnoth-anl.mo -%%NLS%%share/locale/sv/LC_MESSAGES/wesnoth-aoi.mo -%%NLS%%share/locale/sv/LC_MESSAGES/wesnoth-did.mo -%%NLS%%share/locale/sv/LC_MESSAGES/wesnoth-dm.mo -%%NLS%%share/locale/sv/LC_MESSAGES/wesnoth-dw.mo -%%NLS%%share/locale/sv/LC_MESSAGES/wesnoth-editor.mo -%%NLS%%share/locale/sv/LC_MESSAGES/wesnoth-ei.mo -%%NLS%%share/locale/sv/LC_MESSAGES/wesnoth-help.mo -%%NLS%%share/locale/sv/LC_MESSAGES/wesnoth-httt.mo -%%NLS%%share/locale/sv/LC_MESSAGES/wesnoth-l.mo -%%NLS%%share/locale/sv/LC_MESSAGES/wesnoth-lib.mo -%%NLS%%share/locale/sv/LC_MESSAGES/wesnoth-low.mo -%%NLS%%share/locale/sv/LC_MESSAGES/wesnoth-multiplayer.mo -%%NLS%%share/locale/sv/LC_MESSAGES/wesnoth-nr.mo -%%NLS%%share/locale/sv/LC_MESSAGES/wesnoth-sof.mo -%%NLS%%share/locale/sv/LC_MESSAGES/wesnoth-sotbe.mo -%%NLS%%share/locale/sv/LC_MESSAGES/wesnoth-tb.mo -%%NLS%%share/locale/sv/LC_MESSAGES/wesnoth-test.mo -%%NLS%%share/locale/sv/LC_MESSAGES/wesnoth-thot.mo -%%NLS%%share/locale/sv/LC_MESSAGES/wesnoth-trow.mo -%%NLS%%share/locale/sv/LC_MESSAGES/wesnoth-tsg.mo -%%NLS%%share/locale/sv/LC_MESSAGES/wesnoth-tutorial.mo -%%NLS%%share/locale/sv/LC_MESSAGES/wesnoth-units.mo -%%NLS%%share/locale/sv/LC_MESSAGES/wesnoth-utbs.mo -%%NLS%%share/locale/sv/LC_MESSAGES/wesnoth.mo -%%NLS%%share/locale/tl/LC_MESSAGES/wesnoth-anl.mo -%%NLS%%share/locale/tl/LC_MESSAGES/wesnoth-aoi.mo -%%NLS%%share/locale/tl/LC_MESSAGES/wesnoth-did.mo -%%NLS%%share/locale/tl/LC_MESSAGES/wesnoth-dm.mo -%%NLS%%share/locale/tl/LC_MESSAGES/wesnoth-dw.mo -%%NLS%%share/locale/tl/LC_MESSAGES/wesnoth-editor.mo -%%NLS%%share/locale/tl/LC_MESSAGES/wesnoth-ei.mo -%%NLS%%share/locale/tl/LC_MESSAGES/wesnoth-help.mo -%%NLS%%share/locale/tl/LC_MESSAGES/wesnoth-httt.mo -%%NLS%%share/locale/tl/LC_MESSAGES/wesnoth-l.mo -%%NLS%%share/locale/tl/LC_MESSAGES/wesnoth-lib.mo -%%NLS%%share/locale/tl/LC_MESSAGES/wesnoth-low.mo -%%NLS%%share/locale/tl/LC_MESSAGES/wesnoth-multiplayer.mo -%%NLS%%share/locale/tl/LC_MESSAGES/wesnoth-nr.mo -%%NLS%%share/locale/tl/LC_MESSAGES/wesnoth-sof.mo -%%NLS%%share/locale/tl/LC_MESSAGES/wesnoth-sotbe.mo -%%NLS%%share/locale/tl/LC_MESSAGES/wesnoth-tb.mo -%%NLS%%share/locale/tl/LC_MESSAGES/wesnoth-test.mo -%%NLS%%share/locale/tl/LC_MESSAGES/wesnoth-thot.mo -%%NLS%%share/locale/tl/LC_MESSAGES/wesnoth-trow.mo -%%NLS%%share/locale/tl/LC_MESSAGES/wesnoth-tsg.mo -%%NLS%%share/locale/tl/LC_MESSAGES/wesnoth-tutorial.mo -%%NLS%%share/locale/tl/LC_MESSAGES/wesnoth-units.mo -%%NLS%%share/locale/tl/LC_MESSAGES/wesnoth-utbs.mo -%%NLS%%share/locale/tl/LC_MESSAGES/wesnoth.mo -%%NLS%%share/locale/tr/LC_MESSAGES/wesnoth-anl.mo -%%NLS%%share/locale/tr/LC_MESSAGES/wesnoth-aoi.mo -%%NLS%%share/locale/tr/LC_MESSAGES/wesnoth-did.mo -%%NLS%%share/locale/tr/LC_MESSAGES/wesnoth-dm.mo -%%NLS%%share/locale/tr/LC_MESSAGES/wesnoth-dw.mo -%%NLS%%share/locale/tr/LC_MESSAGES/wesnoth-editor.mo -%%NLS%%share/locale/tr/LC_MESSAGES/wesnoth-ei.mo -%%NLS%%share/locale/tr/LC_MESSAGES/wesnoth-help.mo -%%NLS%%share/locale/tr/LC_MESSAGES/wesnoth-httt.mo -%%NLS%%share/locale/tr/LC_MESSAGES/wesnoth-l.mo -%%NLS%%share/locale/tr/LC_MESSAGES/wesnoth-lib.mo -%%NLS%%share/locale/tr/LC_MESSAGES/wesnoth-low.mo -%%NLS%%share/locale/tr/LC_MESSAGES/wesnoth-multiplayer.mo -%%NLS%%share/locale/tr/LC_MESSAGES/wesnoth-nr.mo -%%NLS%%share/locale/tr/LC_MESSAGES/wesnoth-sof.mo -%%NLS%%share/locale/tr/LC_MESSAGES/wesnoth-sotbe.mo -%%NLS%%share/locale/tr/LC_MESSAGES/wesnoth-tb.mo -%%NLS%%share/locale/tr/LC_MESSAGES/wesnoth-test.mo -%%NLS%%share/locale/tr/LC_MESSAGES/wesnoth-thot.mo -%%NLS%%share/locale/tr/LC_MESSAGES/wesnoth-trow.mo -%%NLS%%share/locale/tr/LC_MESSAGES/wesnoth-tsg.mo -%%NLS%%share/locale/tr/LC_MESSAGES/wesnoth-tutorial.mo -%%NLS%%share/locale/tr/LC_MESSAGES/wesnoth-units.mo -%%NLS%%share/locale/tr/LC_MESSAGES/wesnoth-utbs.mo -%%NLS%%share/locale/tr/LC_MESSAGES/wesnoth.mo -%%NLS%%share/locale/vi/LC_MESSAGES/wesnoth-anl.mo -%%NLS%%share/locale/vi/LC_MESSAGES/wesnoth-aoi.mo -%%NLS%%share/locale/vi/LC_MESSAGES/wesnoth-did.mo -%%NLS%%share/locale/vi/LC_MESSAGES/wesnoth-dm.mo -%%NLS%%share/locale/vi/LC_MESSAGES/wesnoth-dw.mo -%%NLS%%share/locale/vi/LC_MESSAGES/wesnoth-editor.mo -%%NLS%%share/locale/vi/LC_MESSAGES/wesnoth-ei.mo -%%NLS%%share/locale/vi/LC_MESSAGES/wesnoth-help.mo -%%NLS%%share/locale/vi/LC_MESSAGES/wesnoth-httt.mo -%%NLS%%share/locale/vi/LC_MESSAGES/wesnoth-l.mo -%%NLS%%share/locale/vi/LC_MESSAGES/wesnoth-lib.mo -%%NLS%%share/locale/vi/LC_MESSAGES/wesnoth-low.mo -%%NLS%%share/locale/vi/LC_MESSAGES/wesnoth-multiplayer.mo -%%NLS%%share/locale/vi/LC_MESSAGES/wesnoth-nr.mo -%%NLS%%share/locale/vi/LC_MESSAGES/wesnoth-sof.mo -%%NLS%%share/locale/vi/LC_MESSAGES/wesnoth-sotbe.mo -%%NLS%%share/locale/vi/LC_MESSAGES/wesnoth-tb.mo -%%NLS%%share/locale/vi/LC_MESSAGES/wesnoth-test.mo -%%NLS%%share/locale/vi/LC_MESSAGES/wesnoth-thot.mo -%%NLS%%share/locale/vi/LC_MESSAGES/wesnoth-trow.mo -%%NLS%%share/locale/vi/LC_MESSAGES/wesnoth-tsg.mo -%%NLS%%share/locale/vi/LC_MESSAGES/wesnoth-tutorial.mo -%%NLS%%share/locale/vi/LC_MESSAGES/wesnoth-units.mo -%%NLS%%share/locale/vi/LC_MESSAGES/wesnoth-utbs.mo -%%NLS%%share/locale/vi/LC_MESSAGES/wesnoth.mo -%%NLS%%share/locale/zh_CN/LC_MESSAGES/wesnoth-anl.mo -%%NLS%%share/locale/zh_CN/LC_MESSAGES/wesnoth-aoi.mo -%%NLS%%share/locale/zh_CN/LC_MESSAGES/wesnoth-did.mo -%%NLS%%share/locale/zh_CN/LC_MESSAGES/wesnoth-dm.mo -%%NLS%%share/locale/zh_CN/LC_MESSAGES/wesnoth-dw.mo -%%NLS%%share/locale/zh_CN/LC_MESSAGES/wesnoth-editor.mo -%%NLS%%share/locale/zh_CN/LC_MESSAGES/wesnoth-ei.mo -%%NLS%%share/locale/zh_CN/LC_MESSAGES/wesnoth-help.mo -%%NLS%%share/locale/zh_CN/LC_MESSAGES/wesnoth-httt.mo -%%NLS%%share/locale/zh_CN/LC_MESSAGES/wesnoth-l.mo -%%NLS%%share/locale/zh_CN/LC_MESSAGES/wesnoth-lib.mo -%%NLS%%share/locale/zh_CN/LC_MESSAGES/wesnoth-low.mo -%%NLS%%share/locale/zh_CN/LC_MESSAGES/wesnoth-multiplayer.mo -%%NLS%%share/locale/zh_CN/LC_MESSAGES/wesnoth-nr.mo -%%NLS%%share/locale/zh_CN/LC_MESSAGES/wesnoth-sof.mo -%%NLS%%share/locale/zh_CN/LC_MESSAGES/wesnoth-sotbe.mo -%%NLS%%share/locale/zh_CN/LC_MESSAGES/wesnoth-tb.mo -%%NLS%%share/locale/zh_CN/LC_MESSAGES/wesnoth-test.mo -%%NLS%%share/locale/zh_CN/LC_MESSAGES/wesnoth-thot.mo -%%NLS%%share/locale/zh_CN/LC_MESSAGES/wesnoth-trow.mo -%%NLS%%share/locale/zh_CN/LC_MESSAGES/wesnoth-tsg.mo -%%NLS%%share/locale/zh_CN/LC_MESSAGES/wesnoth-tutorial.mo -%%NLS%%share/locale/zh_CN/LC_MESSAGES/wesnoth-units.mo -%%NLS%%share/locale/zh_CN/LC_MESSAGES/wesnoth-utbs.mo -%%NLS%%share/locale/zh_CN/LC_MESSAGES/wesnoth.mo -%%NLS%%share/locale/zh_TW/LC_MESSAGES/wesnoth-anl.mo -%%NLS%%share/locale/zh_TW/LC_MESSAGES/wesnoth-aoi.mo -%%NLS%%share/locale/zh_TW/LC_MESSAGES/wesnoth-did.mo -%%NLS%%share/locale/zh_TW/LC_MESSAGES/wesnoth-dm.mo -%%NLS%%share/locale/zh_TW/LC_MESSAGES/wesnoth-dw.mo -%%NLS%%share/locale/zh_TW/LC_MESSAGES/wesnoth-editor.mo -%%NLS%%share/locale/zh_TW/LC_MESSAGES/wesnoth-ei.mo -%%NLS%%share/locale/zh_TW/LC_MESSAGES/wesnoth-help.mo -%%NLS%%share/locale/zh_TW/LC_MESSAGES/wesnoth-httt.mo -%%NLS%%share/locale/zh_TW/LC_MESSAGES/wesnoth-l.mo -%%NLS%%share/locale/zh_TW/LC_MESSAGES/wesnoth-lib.mo -%%NLS%%share/locale/zh_TW/LC_MESSAGES/wesnoth-low.mo -%%NLS%%share/locale/zh_TW/LC_MESSAGES/wesnoth-multiplayer.mo -%%NLS%%share/locale/zh_TW/LC_MESSAGES/wesnoth-nr.mo -%%NLS%%share/locale/zh_TW/LC_MESSAGES/wesnoth-sof.mo -%%NLS%%share/locale/zh_TW/LC_MESSAGES/wesnoth-sotbe.mo -%%NLS%%share/locale/zh_TW/LC_MESSAGES/wesnoth-tb.mo -%%NLS%%share/locale/zh_TW/LC_MESSAGES/wesnoth-test.mo -%%NLS%%share/locale/zh_TW/LC_MESSAGES/wesnoth-thot.mo -%%NLS%%share/locale/zh_TW/LC_MESSAGES/wesnoth-trow.mo -%%NLS%%share/locale/zh_TW/LC_MESSAGES/wesnoth-tsg.mo -%%NLS%%share/locale/zh_TW/LC_MESSAGES/wesnoth-tutorial.mo -%%NLS%%share/locale/zh_TW/LC_MESSAGES/wesnoth-units.mo -%%NLS%%share/locale/zh_TW/LC_MESSAGES/wesnoth-utbs.mo -%%NLS%%share/locale/zh_TW/LC_MESSAGES/wesnoth.mo -share/pixmaps/wesnoth-icon.png -share/pixmaps/wesnoth_editor-icon.png -%%PYTHON%%@dirrm %%PYTHON_SITELIBDIR%%/wesnoth -@dirrmtry man/af/man6 -@dirrmtry man/af -@dirrmtry man/ang/man6 -@dirrmtry man/ang -@dirrmtry man/ang@latin/man6 -@dirrmtry man/ang@latin -@dirrmtry man/ar/man6 -@dirrmtry man/ar -@dirrmtry man/bg/man6 -@dirrmtry man/bg -@dirrmtry man/ca/man6 -@dirrmtry man/ca -@dirrmtry man/ca_ES@valencia/man6 -@dirrmtry man/ca_ES@valencia -@dirrmtry man/cs/man6 -@dirrmtry man/cs -@dirrmtry man/da/man6 -@dirrmtry man/da -@dirrmtry man/de/man6 -@dirrmtry man/de -@dirrmtry man/el/man6 -@dirrmtry man/el -@dirrmtry man/en@shaw/man6 -@dirrmtry man/en@shaw -@dirrmtry man/en_GB/man6 -@dirrmtry man/en_GB -@dirrmtry man/eo/man6 -@dirrmtry man/eo -@dirrmtry man/es/man6 -@dirrmtry man/es -@dirrmtry man/et/man6 -@dirrmtry man/et -@dirrmtry man/eu/man6 -@dirrmtry man/eu -@dirrmtry man/fi/man6 -@dirrmtry man/fi -@dirrmtry man/fr/man6 -@dirrmtry man/fr -@dirrmtry man/fur_IT/man6 -@dirrmtry man/fur_IT -@dirrmtry man/ga/man6 -@dirrmtry man/ga -@dirrmtry man/gl/man6 -@dirrmtry man/gl -@dirrmtry man/he/man6 -@dirrmtry man/he -@dirrmtry man/hr/man6 -@dirrmtry man/hr -@dirrmtry man/hu/man6 -@dirrmtry man/hu -@dirrmtry man/id/man6 -@dirrmtry man/id -@dirrmtry man/is/man6 -@dirrmtry man/is -@dirrmtry man/it/man6 -@dirrmtry man/it -@dirrmtry man/ko/man6 -@dirrmtry man/ko -@dirrmtry man/la/man6 -@dirrmtry man/la -@dirrmtry man/lt/man6 -@dirrmtry man/lt -@dirrmtry man/lv/man6 -@dirrmtry man/lv -@dirrmtry man/mk/man6 -@dirrmtry man/mk -@dirrmtry man/mr/man6 -@dirrmtry man/mr -@dirrmtry man/nb_NO/man6 -@dirrmtry man/nb_NO -@dirrmtry man/nl/man6 -@dirrmtry man/nl -@dirrmtry man/pl/man6 -@dirrmtry man/pl -@dirrmtry man/pt/man6 -@dirrmtry man/pt -@dirrmtry man/pt_BR/man6 -@dirrmtry man/pt_BR -@dirrmtry man/racv/man6 -@dirrmtry man/racv -@dirrmtry man/ro/man6 -@dirrmtry man/ro -@dirrmtry man/ru/man6 -@dirrmtry man/ru -@dirrmtry man/sk/man6 -@dirrmtry man/sk -@dirrmtry man/sl/man6 -@dirrmtry man/sl -@dirrmtry man/sr/man6 -@dirrmtry man/sr -@dirrmtry man/sr@ijekavian/man6 -@dirrmtry man/sr@ijekavian -@dirrmtry man/sr@ijekavianlatin/man6 -@dirrmtry man/sr@ijekavianlatin -@dirrmtry man/sr@latin/man6 -@dirrmtry man/sr@latin -@dirrmtry man/sv/man6 -@dirrmtry man/sv -@dirrmtry man/tl/man6 -@dirrmtry man/tl -@dirrmtry man/tr/man6 -@dirrmtry man/tr -@dirrmtry man/vi/man6 -@dirrmtry man/vi -@dirrmtry man/zh_CN/man6 -@dirrmtry man/zh_CN -@dirrmtry man/zh_TW/man6 -@dirrmtry man/zh_TW -@dirrmtry share/applications -%%NLS%%@dirrmtry share/locale/ang/LC_MESSAGES -%%NLS%%@dirrmtry share/locale/ang -%%NLS%%@dirrmtry share/locale/ang@latin/LC_MESSAGES -%%NLS%%@dirrmtry share/locale/ang@latin -%%NLS%%@dirrmtry share/locale/ca_ES@valencia/LC_MESSAGES -%%NLS%%@dirrmtry share/locale/ca_ES@valencia -%%NLS%%@dirrmtry share/locale/en@shaw/LC_MESSAGES -%%NLS%%@dirrmtry share/locale/en@shaw -%%NLS%%@dirrmtry share/locale/fur_IT/LC_MESSAGES -%%NLS%%@dirrmtry share/locale/fur_IT -%%NLS%%@dirrmtry share/locale/la/LC_MESSAGES -%%NLS%%@dirrmtry share/locale/la -%%NLS%%@dirrmtry share/locale/mr/LC_MESSAGES -%%NLS%%@dirrmtry share/locale/mr -%%NLS%%@dirrmtry share/locale/nb_NO/LC_MESSAGES -%%NLS%%@dirrmtry share/locale/nb_NO -%%NLS%%@dirrmtry share/locale/racv/LC_MESSAGES -%%NLS%%@dirrmtry share/locale/racv -%%NLS%%@dirrmtry share/locale/sr@ijekavian/LC_MESSAGES -%%NLS%%@dirrmtry share/locale/sr@ijekavian -%%NLS%%@dirrmtry share/locale/sr@ijekavianlatin/LC_MESSAGES -%%NLS%%@dirrmtry share/locale/sr@ijekavianlatin -%%NLS%%@dirrmtry share/locale/sr@latin/LC_MESSAGES -%%NLS%%@dirrmtry share/locale/sr@latin -%%NLS%%@dirrmtry share/locale/tl/LC_MESSAGES -%%NLS%%@dirrmtry share/locale/tl -@exec %%LOCALBASE%%/bin/update-desktop-database %D/share/applications 2>/dev/null || true -@unexec %%LOCALBASE%%/bin/update-desktop-database %D/share/applications 2>/dev/null || true -%%SERVER%%@unexec rmdir /var/run/wesnothd 2>/dev/null || echo "If you are permanently removing this port, you should do a 'rm -rf /var/run/wesnothd' to remove it." | fmt |