Index: head/games/wesnoth/files/patch-CMakeLists.txt =================================================================== --- head/games/wesnoth/files/patch-CMakeLists.txt (revision 378537) +++ head/games/wesnoth/files/patch-CMakeLists.txt (nonexistent) @@ -1,85 +0,0 @@ -Index: CMakeLists.txt -@@ -21,11 +21,10 @@ - find_package(SDL 1.2.7 REQUIRED) - find_package(Boost 1.36 REQUIRED COMPONENTS iostreams program_options regex system) - --# 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) - -@@ -73,7 +72,7 @@ - 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) -@@ -120,18 +119,18 @@ - 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) -@@ -158,6 +157,11 @@ - add_definitions(-D_X11) - endif(X11_FOUND) - -+if(ENABLE_NLS) -+ set(CMAKE_C_FLAGS "-DENABLE_NLS ${CMAKE_C_FLAGS}") -+ set(CMAKE_CXX_FLAGS "-DENABLE_NLS ${CMAKE_CXX_FLAGS}") -+endif(ENABLE_NLS) -+ - add_definitions(-DLOCALEDIR=\\\"${LOCALEDIR}\\\") - - # When the path starts with a / on a Unix system it's an absolute path. -@@ -165,6 +169,7 @@ - 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}) -@@ -219,10 +224,14 @@ - find_package( Boost 1.36 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() - Property changes on: head/games/wesnoth/files/patch-CMakeLists.txt ___________________________________________________________________ Deleted: fbsd:nokeywords ## -1 +0,0 ## -yes \ No newline at end of property Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/games/wesnoth/files/patch-src-chat_events.hpp =================================================================== --- head/games/wesnoth/files/patch-src-chat_events.hpp (revision 378537) +++ head/games/wesnoth/files/patch-src-chat_events.hpp (nonexistent) @@ -1,10 +0,0 @@ ---- src/chat_events.hpp.orig 2013-11-09 20:12:59.000000000 +0400 -+++ src/chat_events.hpp 2013-11-09 20:13:07.000000000 +0400 -@@ -20,6 +20,7 @@ - #include "global.hpp" - - #include -+#include - - namespace events { - Property changes on: head/games/wesnoth/files/patch-src-chat_events.hpp ___________________________________________________________________ Deleted: fbsd:nokeywords ## -1 +0,0 ## -yes \ No newline at end of property Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/games/wesnoth/files/patch-src-server-metrics.hpp =================================================================== --- head/games/wesnoth/files/patch-src-server-metrics.hpp (revision 378537) +++ head/games/wesnoth/files/patch-src-server-metrics.hpp (nonexistent) @@ -1,10 +0,0 @@ ---- src/server/metrics.hpp.orig 2013-11-09 20:10:45.000000000 +0400 -+++ src/server/metrics.hpp 2013-11-09 20:10:50.000000000 +0400 -@@ -27,6 +27,7 @@ - #endif - - #include "simple_wml.hpp" -+#include - - class metrics - { Property changes on: head/games/wesnoth/files/patch-src-server-metrics.hpp ___________________________________________________________________ Deleted: fbsd:nokeywords ## -1 +0,0 ## -yes \ No newline at end of property Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/games/wesnoth/files/patch-doc-CMakeLists.txt =================================================================== --- head/games/wesnoth/files/patch-doc-CMakeLists.txt (revision 378537) +++ head/games/wesnoth/files/patch-doc-CMakeLists.txt (nonexistent) @@ -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") Property changes on: head/games/wesnoth/files/patch-doc-CMakeLists.txt ___________________________________________________________________ Deleted: fbsd:nokeywords ## -1 +0,0 ## -yes \ No newline at end of property Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/games/wesnoth/files/patch-po-CMakeLists.txt =================================================================== --- head/games/wesnoth/files/patch-po-CMakeLists.txt (revision 378537) +++ head/games/wesnoth/files/patch-po-CMakeLists.txt (nonexistent) @@ -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." Property changes on: head/games/wesnoth/files/patch-po-CMakeLists.txt ___________________________________________________________________ Deleted: fbsd:nokeywords ## -1 +0,0 ## -yes \ No newline at end of property Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/games/wesnoth/files/patch-src-ana-src-CMakeLists.txt =================================================================== --- head/games/wesnoth/files/patch-src-ana-src-CMakeLists.txt (revision 378537) +++ head/games/wesnoth/files/patch-src-ana-src-CMakeLists.txt (nonexistent) @@ -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) Property changes on: head/games/wesnoth/files/patch-src-ana-src-CMakeLists.txt ___________________________________________________________________ Deleted: fbsd:nokeywords ## -1 +0,0 ## -yes \ No newline at end of property Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/games/wesnoth/files/patch-src-gettext.cpp =================================================================== --- head/games/wesnoth/files/patch-src-gettext.cpp (revision 378537) +++ head/games/wesnoth/files/patch-src-gettext.cpp (nonexistent) @@ -1,15 +0,0 @@ ---- src/gettext.cpp~ -+++ src/gettext.cpp -@@ -18,6 +18,12 @@ - - #include - -+#ifndef ENABLE_NLS -+char *textdomain (const char *domainname) { -+ return "dummy"; -+} -+#endif -+ - char const *egettext(char const *msgid) - { - return msgid[0] == '\0' ? msgid : gettext(msgid); Property changes on: head/games/wesnoth/files/patch-src-gettext.cpp ___________________________________________________________________ Deleted: fbsd:nokeywords ## -1 +0,0 ## -yes \ No newline at end of property Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/games/wesnoth/files/patch-src-server-user_handler.cpp =================================================================== --- head/games/wesnoth/files/patch-src-server-user_handler.cpp (revision 378537) +++ head/games/wesnoth/files/patch-src-server-user_handler.cpp (nonexistent) @@ -1,10 +0,0 @@ ---- src/server/user_handler.cpp.orig 2013-11-09 20:09:08.000000000 +0400 -+++ src/server/user_handler.cpp 2013-11-09 20:09:19.000000000 +0400 -@@ -18,6 +18,7 @@ - #include "serialization/string_utils.hpp" - - #include -+#include - - bool user_handler::send_mail(const std::string& to_user, - const std::string& /*subject*/, const std::string& /*message*/) { Property changes on: head/games/wesnoth/files/patch-src-server-user_handler.cpp ___________________________________________________________________ Deleted: fbsd:nokeywords ## -1 +0,0 ## -yes \ No newline at end of property Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/games/wesnoth/files/patch-src-CMakeLists.txt =================================================================== --- head/games/wesnoth/files/patch-src-CMakeLists.txt (revision 378537) +++ head/games/wesnoth/files/patch-src-CMakeLists.txt (nonexistent) @@ -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) - Property changes on: head/games/wesnoth/files/patch-src-CMakeLists.txt ___________________________________________________________________ Deleted: fbsd:nokeywords ## -1 +0,0 ## -yes \ No newline at end of property Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/games/wesnoth/files/patch-src-gettext.hpp =================================================================== --- head/games/wesnoth/files/patch-src-gettext.hpp (revision 378537) +++ head/games/wesnoth/files/patch-src-gettext.hpp (nonexistent) @@ -1,25 +0,0 @@ ---- src/gettext.hpp~ -+++ src/gettext.hpp -@@ -35,7 +35,21 @@ - - // gettext-related declarations - --#include -+#include "wesconfig.h" -+ -+#ifdef ENABLE_NLS -+# include -+#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*); Property changes on: head/games/wesnoth/files/patch-src-gettext.hpp ___________________________________________________________________ Deleted: fbsd:nokeywords ## -1 +0,0 ## -yes \ No newline at end of property Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/games/wesnoth/Makefile =================================================================== --- head/games/wesnoth/Makefile (revision 378537) +++ head/games/wesnoth/Makefile (revision 378538) @@ -1,170 +1,168 @@ # $FreeBSD$ PORTNAME= wesnoth -PORTVERSION= 1.10.7 -PORTREVISION= 7 +PORTVERSION= 1.12.0 CATEGORIES= games -MASTER_SITES= SF/${PORTNAME}/${PORTNAME}-${PORTVERSION:R}/${PORTNAME}-${PORTVERSION} \ - http://files.wesnoth.org/ +MASTER_SITES= SF/${PORTNAME}/${PORTNAME}-${PORTVERSION:R}/${PORTNAME}-${PORTVERSION:R} \ + http://files.wesnoth.org/ \ + http://ports.toco-domains.de -MAINTAINER= rnejdl@ringofsaturn.com +DISTNAME= ${PORTNAME}-${PORTVERSION:R} + +MAINTAINER= ports@toco-domains.de COMMENT= Fantasy turn-based strategy game LICENSE= GPLv2 GPLv3 LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/COPYING -BUILD_DEPENDS= ${LOCALBASE}/lib/X11/fonts/junicode/Junicode.ttf:${PORTSDIR}/x11-fonts/junicode LIB_DEPENDS= libboost_thread.so:${PORTSDIR}/devel/boost-libs \ libpng.so:${PORTSDIR}/graphics/png +LDFLAGS+= -L${LOCALBASE}/lib -lboost_system + USE_SDL= image mixer net ttf USE_GNOME= pango -USES= cmake desktop-file-utils pkgconfig tar:bzip2 +USES= cmake pkgconfig tar:bzip2 CMAKE_ARGS= -DMANDIR="man" -MAN6= wesnoth.6 - PORTDOCS= * PORTDATA= * OPTIONS_DEFINE= ANA CAMPAIGN FRIBIDI LOWMEM NOTIFY OPENMP POOLALLOC PYTHON \ RAWSOCKETS SERVER TESTS TOOLS DOCS OPTIONS_DEFAULT= CAMPAIGN FRIBIDI NOTIFY SERVER TOOLS ANA_DESC= Asynchronous Network API (WIP) CAMPAIGN_DESC= Campaign server FRIBIDI_DESC= Bidirectional support LOWMEM_DESC= Reduce memory usage (disables animations) NOTIFY_DESC= Desktop notifications OPENMP_DESC= OpenMP support POOLALLOC_DESC= Use wesnoth own memory allocator PYTHON_DESC= Python developer tools RAWSOCKETS_DESC= Use raw receiving sockets in multiplayer SERVER_DESC= Server TESTS_DESC= Unit tests TOOLS_DESC= Extra tools for artists and translators .include -# XXX: breaks compilation because of -Werror -.if empty(PORT_OPTIONS:MSTRICT) +# disable strict compilation, because it will break the build CMAKE_ARGS+= -DENABLE_STRICT_COMPILATION=off -.endif .if ${PORT_OPTIONS:MANA} CMAKE_ARGS+= -DUSE_ANA_NETWORK=on +PLIST_SUB+= ANA="" .else CMAKE_ARGS+= -DUSE_ANA_NETWORK=off +PLIST_SUB+= ANA="@comment " .endif .if ${PORT_OPTIONS:MCAMPAIGN} CMAKE_ARGS+= -DENABLE_CAMPAIGN_SERVER=on PLIST_SUB+= CAMPAIGN="" .else CMAKE_ARGS+= -DENABLE_CAMPAIGN_SERVER=off PLIST_SUB+= CAMPAIGN="@comment " .endif .if ${PORT_OPTIONS:MFRIBIDI} CMAKE_ARGS+= -DENABLE_FRIBIDI=on LIB_DEPENDS+= libfribidi.so:${PORTSDIR}/converters/fribidi .else CMAKE_ARGS+= -DENABLE_FRIBIDI=off .endif .if ${PORT_OPTIONS:MLOWMEM} CMAKE_ARGS+= -DENABLE_LOW_MEM=on .else CMAKE_ARGS+= -DENABLE_LOW_MEM=off .endif .if ${PORT_OPTIONS:MNOTIFY} CMAKE_ARGS+= -DENABLE_NOTIFICATIONS=on LIB_DEPENDS+= libdbus-1.so:${PORTSDIR}/devel/dbus .else CMAKE_ARGS+= -DENABLE_NOTIFICATIONS=off .endif .if ${PORT_OPTIONS:MNLS} CMAKE_ARGS+= -DENABLE_NLS=on -DLOCALEDIR=${PREFIX}/share/locale USES+= gettext MANLANG= "" cs de en_GB es et fi fr gl hu id it lt pl ru sk \ - sr sr@ijekavian sr@ijekavianlatin sr@latin vi zh_CN zh_TW + sr sr@ijekavian sr@ijekavianlatin sr@latin tr uk vi zh_CN zh_TW .if ${PORT_OPTIONS:MSERVER} _MANPAGES+= ${PREFIX}/man/ja/man6/wesnothd.6 \ ${PREFIX}/man/pt_BR/man6/wesnothd.6 \ ${PREFIX}/man/tr/man6/wesnothd.6 .endif PLIST_SUB+= NLS="" .else CMAKE_ARGS+= -DENABLE_NLS=off PLIST_SUB+= NLS="@comment " .endif .if ${PORT_OPTIONS:MOPENMP} +BROKEN= compilation fails with OpenMP CMAKE_ARGS+= -DENABLE_OMP=on .else CMAKE_ARGS+= -DENABLE_OMP=off .endif .if ${PORT_OPTIONS:MPOOLALLOC} CMAKE_ARGS+= -DENABLE_POOL_ALLOC=on -BROKEN= does not build with pool alloc .else CMAKE_ARGS+= -DENABLE_POOL_ALLOC=off .endif .if ${PORT_OPTIONS:MPYTHON} -BROKEN= cmake build doesn't support installing python tools USES+= python CONFIGURE_ENV+= PYTHON_PREFIX=${PREFIX} \ PYTHON_VERSION=${PYTHON_VERSION:S/python//} CONFIGURE_ARGS+=--enable-python-install PLIST_SUB+= PYTHON="" .else PLIST_SUB+= PYTHON="@comment " .endif .if ${PORT_OPTIONS:MRAWSOCKETS} CFLAGS+= -DNETWORK_USE_RAW_SOCKETS .endif .if ${PORT_OPTIONS:MSERVER} CMAKE_ARGS+= -DENABLE_SERVER=on -MAN6+= wesnothd.6 PLIST_SUB+= SERVER="" .else CMAKE_ARGS+= -DENABLE_SERVER=off PLIST_SUB+= SERVER="@comment " .endif .if ${PORT_OPTIONS:MTESTS} CMAKE_ARGS+= -DENABLE_TESTS=on PLIST_SUB+= TESTS="" +BROKEN= compilations fails with enabled TEST option .else CMAKE_ARGS+= -DENABLE_TESTS=off PLIST_SUB+= TESTS="@comment " .endif .if ${PORT_OPTIONS:MTOOLS} CMAKE_ARGS+= -DENABLE_TOOLS=on PLIST_SUB+= TOOLS="" .else CMAKE_ARGS+= -DENABLE_TOOLS=off PLIST_SUB+= TOOLS="@comment " .endif .if empty(PORT_OPTIONS:MDOCS) CMAKE_ARGS+= -DDOCDIR=none .endif -pre-build: - ${CP} ${LOCALBASE}/lib/X11/fonts/junicode/Junicode.ttf \ - ${WRKSRC}/fonts/Junicode-Regular.ttf +WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} post-install: - -@update-desktop-database ${STAGEDIR}${PREFIX}/share/applications + ${FIND} ${STAGEDIR}${PREFIX}/man -type d -empty -delete .include Index: head/games/wesnoth/distinfo =================================================================== --- head/games/wesnoth/distinfo (revision 378537) +++ head/games/wesnoth/distinfo (revision 378538) @@ -1,2 +1,2 @@ -SHA256 (wesnoth-1.10.7.tar.bz2) = 8a3b5a3409a57b646536e547094e1bb8bcd87797e00cd63184152222e377253e -SIZE (wesnoth-1.10.7.tar.bz2) = 347431490 +SHA256 (wesnoth-1.12.tar.bz2) = 9e2b15cf6196ae7059fc48b5483aa6973473688602958dd64211b1775b513e0a +SIZE (wesnoth-1.12.tar.bz2) = 385428948 Index: head/games/wesnoth/pkg-plist =================================================================== --- head/games/wesnoth/pkg-plist (revision 378537) +++ head/games/wesnoth/pkg-plist (revision 378538) @@ -1,1662 +1,1670 @@ +bin/wesnoth +%%ANA%%include/ana/ana.hpp +%%ANA%%include/ana/binary_streams.hpp +%%ANA%%include/ana/buffers.hpp +%%ANA%%include/ana/common.hpp +%%ANA%%include/ana/predicates.hpp +%%ANA%%include/ana/timers.hpp +%%ANA%%lib/libana-static.a +%%ANA%%lib/libana.so %%CAMPAIGN%%bin/campaignd %%TOOLS%%bin/cutter %%TOOLS%%bin/exploder %%TOOLS%%bin/schema_generator %%TOOLS%%bin/schema_validator -bin/wesnoth -%%PYTHON%%%%TOOLS%%bin/wesnoth_addon_manager +%%TOOLS%%bin/wesmage %%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-ai.mo %%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-manpages.mo +%%NLS%%share/locale/af/LC_MESSAGES/wesnoth-manual.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-ai.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-manpages.mo +%%NLS%%share/locale/ang/LC_MESSAGES/wesnoth-manual.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-ai.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-manpages.mo +%%NLS%%share/locale/ang@latin/LC_MESSAGES/wesnoth-manual.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-ai.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-manpages.mo +%%NLS%%share/locale/ar/LC_MESSAGES/wesnoth-manual.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-ai.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-manpages.mo +%%NLS%%share/locale/bg/LC_MESSAGES/wesnoth-manual.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-ai.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-manpages.mo +%%NLS%%share/locale/ca/LC_MESSAGES/wesnoth-manual.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-ai.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-manpages.mo +%%NLS%%share/locale/ca_ES@valencia/LC_MESSAGES/wesnoth-manual.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-ai.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-manpages.mo +%%NLS%%share/locale/cs/LC_MESSAGES/wesnoth-manual.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-ai.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-manpages.mo +%%NLS%%share/locale/da/LC_MESSAGES/wesnoth-manual.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-ai.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-manpages.mo +%%NLS%%share/locale/de/LC_MESSAGES/wesnoth-manual.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-ai.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-manpages.mo +%%NLS%%share/locale/el/LC_MESSAGES/wesnoth-manual.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-ai.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-manpages.mo +%%NLS%%share/locale/en@shaw/LC_MESSAGES/wesnoth-manual.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-ai.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-manpages.mo +%%NLS%%share/locale/en_GB/LC_MESSAGES/wesnoth-manual.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-ai.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-manpages.mo +%%NLS%%share/locale/eo/LC_MESSAGES/wesnoth-manual.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-ai.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-manpages.mo +%%NLS%%share/locale/es/LC_MESSAGES/wesnoth-manual.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-ai.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-manpages.mo +%%NLS%%share/locale/et/LC_MESSAGES/wesnoth-manual.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-ai.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-manpages.mo +%%NLS%%share/locale/eu/LC_MESSAGES/wesnoth-manual.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-ai.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-manpages.mo +%%NLS%%share/locale/fi/LC_MESSAGES/wesnoth-manual.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-ai.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-manpages.mo +%%NLS%%share/locale/fr/LC_MESSAGES/wesnoth-manual.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-ai.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-manpages.mo +%%NLS%%share/locale/fur_IT/LC_MESSAGES/wesnoth-manual.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-ai.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-manpages.mo +%%NLS%%share/locale/ga/LC_MESSAGES/wesnoth-manual.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/gd/LC_MESSAGES/wesnoth-ai.mo %%NLS%%share/locale/gd/LC_MESSAGES/wesnoth-anl.mo %%NLS%%share/locale/gd/LC_MESSAGES/wesnoth-aoi.mo %%NLS%%share/locale/gd/LC_MESSAGES/wesnoth-did.mo %%NLS%%share/locale/gd/LC_MESSAGES/wesnoth-dm.mo %%NLS%%share/locale/gd/LC_MESSAGES/wesnoth-dw.mo %%NLS%%share/locale/gd/LC_MESSAGES/wesnoth-editor.mo %%NLS%%share/locale/gd/LC_MESSAGES/wesnoth-ei.mo %%NLS%%share/locale/gd/LC_MESSAGES/wesnoth-help.mo %%NLS%%share/locale/gd/LC_MESSAGES/wesnoth-httt.mo %%NLS%%share/locale/gd/LC_MESSAGES/wesnoth-l.mo %%NLS%%share/locale/gd/LC_MESSAGES/wesnoth-lib.mo %%NLS%%share/locale/gd/LC_MESSAGES/wesnoth-low.mo +%%NLS%%share/locale/gd/LC_MESSAGES/wesnoth-manpages.mo +%%NLS%%share/locale/gd/LC_MESSAGES/wesnoth-manual.mo %%NLS%%share/locale/gd/LC_MESSAGES/wesnoth-multiplayer.mo %%NLS%%share/locale/gd/LC_MESSAGES/wesnoth-nr.mo %%NLS%%share/locale/gd/LC_MESSAGES/wesnoth-sof.mo %%NLS%%share/locale/gd/LC_MESSAGES/wesnoth-sotbe.mo %%NLS%%share/locale/gd/LC_MESSAGES/wesnoth-tb.mo %%NLS%%share/locale/gd/LC_MESSAGES/wesnoth-test.mo %%NLS%%share/locale/gd/LC_MESSAGES/wesnoth-thot.mo %%NLS%%share/locale/gd/LC_MESSAGES/wesnoth-trow.mo %%NLS%%share/locale/gd/LC_MESSAGES/wesnoth-tsg.mo %%NLS%%share/locale/gd/LC_MESSAGES/wesnoth-tutorial.mo %%NLS%%share/locale/gd/LC_MESSAGES/wesnoth-units.mo %%NLS%%share/locale/gd/LC_MESSAGES/wesnoth-utbs.mo %%NLS%%share/locale/gd/LC_MESSAGES/wesnoth.mo +%%NLS%%share/locale/gl/LC_MESSAGES/wesnoth-ai.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-manpages.mo +%%NLS%%share/locale/gl/LC_MESSAGES/wesnoth-manual.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-ai.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-manpages.mo +%%NLS%%share/locale/he/LC_MESSAGES/wesnoth-manual.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-ai.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-manpages.mo +%%NLS%%share/locale/hr/LC_MESSAGES/wesnoth-manual.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-ai.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-manpages.mo +%%NLS%%share/locale/hu/LC_MESSAGES/wesnoth-manual.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-ai.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-manpages.mo +%%NLS%%share/locale/id/LC_MESSAGES/wesnoth-manual.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-ai.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-manpages.mo +%%NLS%%share/locale/is/LC_MESSAGES/wesnoth-manual.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-ai.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-manpages.mo +%%NLS%%share/locale/it/LC_MESSAGES/wesnoth-manual.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-ai.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-manpages.mo +%%NLS%%share/locale/ja/LC_MESSAGES/wesnoth-manual.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-ai.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-manpages.mo +%%NLS%%share/locale/ko/LC_MESSAGES/wesnoth-manual.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-ai.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-manpages.mo +%%NLS%%share/locale/la/LC_MESSAGES/wesnoth-manual.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-ai.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-manpages.mo +%%NLS%%share/locale/lt/LC_MESSAGES/wesnoth-manual.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-ai.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-manpages.mo +%%NLS%%share/locale/lv/LC_MESSAGES/wesnoth-manual.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-ai.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-manpages.mo +%%NLS%%share/locale/mk/LC_MESSAGES/wesnoth-manual.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-ai.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-manpages.mo +%%NLS%%share/locale/mr/LC_MESSAGES/wesnoth-manual.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-ai.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-manpages.mo +%%NLS%%share/locale/nb_NO/LC_MESSAGES/wesnoth-manual.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-ai.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-manpages.mo +%%NLS%%share/locale/nl/LC_MESSAGES/wesnoth-manual.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-ai.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-manpages.mo +%%NLS%%share/locale/pl/LC_MESSAGES/wesnoth-manual.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-ai.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-manpages.mo +%%NLS%%share/locale/pt/LC_MESSAGES/wesnoth-manual.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-ai.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-manpages.mo +%%NLS%%share/locale/pt_BR/LC_MESSAGES/wesnoth-manual.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-ai.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-manpages.mo +%%NLS%%share/locale/racv/LC_MESSAGES/wesnoth-manual.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-ai.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-manpages.mo +%%NLS%%share/locale/ro/LC_MESSAGES/wesnoth-manual.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-ai.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-manpages.mo +%%NLS%%share/locale/ru/LC_MESSAGES/wesnoth-manual.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-ai.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-manpages.mo +%%NLS%%share/locale/sk/LC_MESSAGES/wesnoth-manual.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-ai.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-manpages.mo +%%NLS%%share/locale/sl/LC_MESSAGES/wesnoth-manual.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-ai.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-manpages.mo +%%NLS%%share/locale/sr/LC_MESSAGES/wesnoth-manual.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-ai.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-manpages.mo +%%NLS%%share/locale/sr@ijekavian/LC_MESSAGES/wesnoth-manual.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-ai.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-manpages.mo +%%NLS%%share/locale/sr@ijekavianlatin/LC_MESSAGES/wesnoth-manual.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-ai.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-manpages.mo +%%NLS%%share/locale/sr@latin/LC_MESSAGES/wesnoth-manual.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-ai.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-manpages.mo +%%NLS%%share/locale/sv/LC_MESSAGES/wesnoth-manual.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-ai.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-manpages.mo +%%NLS%%share/locale/tl/LC_MESSAGES/wesnoth-manual.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-ai.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-manpages.mo +%%NLS%%share/locale/tr/LC_MESSAGES/wesnoth-manual.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/uk/LC_MESSAGES/wesnoth-ai.mo %%NLS%%share/locale/uk/LC_MESSAGES/wesnoth-anl.mo %%NLS%%share/locale/uk/LC_MESSAGES/wesnoth-aoi.mo %%NLS%%share/locale/uk/LC_MESSAGES/wesnoth-did.mo %%NLS%%share/locale/uk/LC_MESSAGES/wesnoth-dm.mo %%NLS%%share/locale/uk/LC_MESSAGES/wesnoth-dw.mo %%NLS%%share/locale/uk/LC_MESSAGES/wesnoth-editor.mo %%NLS%%share/locale/uk/LC_MESSAGES/wesnoth-ei.mo %%NLS%%share/locale/uk/LC_MESSAGES/wesnoth-help.mo %%NLS%%share/locale/uk/LC_MESSAGES/wesnoth-httt.mo %%NLS%%share/locale/uk/LC_MESSAGES/wesnoth-l.mo %%NLS%%share/locale/uk/LC_MESSAGES/wesnoth-lib.mo %%NLS%%share/locale/uk/LC_MESSAGES/wesnoth-low.mo +%%NLS%%share/locale/uk/LC_MESSAGES/wesnoth-manpages.mo +%%NLS%%share/locale/uk/LC_MESSAGES/wesnoth-manual.mo %%NLS%%share/locale/uk/LC_MESSAGES/wesnoth-multiplayer.mo %%NLS%%share/locale/uk/LC_MESSAGES/wesnoth-nr.mo %%NLS%%share/locale/uk/LC_MESSAGES/wesnoth-sof.mo %%NLS%%share/locale/uk/LC_MESSAGES/wesnoth-sotbe.mo %%NLS%%share/locale/uk/LC_MESSAGES/wesnoth-tb.mo %%NLS%%share/locale/uk/LC_MESSAGES/wesnoth-test.mo %%NLS%%share/locale/uk/LC_MESSAGES/wesnoth-thot.mo %%NLS%%share/locale/uk/LC_MESSAGES/wesnoth-trow.mo %%NLS%%share/locale/uk/LC_MESSAGES/wesnoth-tsg.mo %%NLS%%share/locale/uk/LC_MESSAGES/wesnoth-tutorial.mo %%NLS%%share/locale/uk/LC_MESSAGES/wesnoth-units.mo %%NLS%%share/locale/uk/LC_MESSAGES/wesnoth-utbs.mo %%NLS%%share/locale/uk/LC_MESSAGES/wesnoth.mo +%%NLS%%share/locale/vi/LC_MESSAGES/wesnoth-ai.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-manpages.mo +%%NLS%%share/locale/vi/LC_MESSAGES/wesnoth-manual.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-ai.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-manpages.mo +%%NLS%%share/locale/zh_CN/LC_MESSAGES/wesnoth-manual.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-ai.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-manpages.mo +%%NLS%%share/locale/zh_TW/LC_MESSAGES/wesnoth-manual.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 man/cs/man6/wesnoth.6.gz man/cs/man6/wesnothd.6.gz man/de/man6/wesnoth.6.gz man/de/man6/wesnothd.6.gz man/en_GB/man6/wesnoth.6.gz man/en_GB/man6/wesnothd.6.gz man/es/man6/wesnoth.6.gz man/es/man6/wesnothd.6.gz man/et/man6/wesnoth.6.gz man/et/man6/wesnothd.6.gz man/fi/man6/wesnoth.6.gz man/fi/man6/wesnothd.6.gz man/fr/man6/wesnoth.6.gz man/fr/man6/wesnothd.6.gz man/gl/man6/wesnoth.6.gz man/gl/man6/wesnothd.6.gz man/hu/man6/wesnoth.6.gz man/hu/man6/wesnothd.6.gz man/id/man6/wesnoth.6.gz man/id/man6/wesnothd.6.gz man/it/man6/wesnoth.6.gz man/it/man6/wesnothd.6.gz man/ja/man6/wesnothd.6.gz man/lt/man6/wesnoth.6.gz man/lt/man6/wesnothd.6.gz man/man6/wesnoth.6.gz man/man6/wesnothd.6.gz man/pl/man6/wesnoth.6.gz man/pl/man6/wesnothd.6.gz man/pt/man6/wesnoth.6.gz man/pt/man6/wesnothd.6.gz man/pt_BR/man6/wesnothd.6.gz man/ru/man6/wesnoth.6.gz man/ru/man6/wesnothd.6.gz man/sk/man6/wesnoth.6.gz man/sk/man6/wesnothd.6.gz man/sr/man6/wesnoth.6.gz man/sr/man6/wesnothd.6.gz man/sr@ijekavian/man6/wesnoth.6.gz man/sr@ijekavian/man6/wesnothd.6.gz man/sr@ijekavianlatin/man6/wesnoth.6.gz man/sr@ijekavianlatin/man6/wesnothd.6.gz man/sr@latin/man6/wesnoth.6.gz man/sr@latin/man6/wesnothd.6.gz man/tr/man6/wesnothd.6.gz man/uk/man6/wesnoth.6.gz man/uk/man6/wesnothd.6.gz man/vi/man6/wesnoth.6.gz man/vi/man6/wesnothd.6.gz man/zh_CN/man6/wesnoth.6.gz man/zh_CN/man6/wesnothd.6.gz -man/zh_TW/man6/wesnoth.6.gz man/zh_TW/man6/wesnothd.6.gz -@dirrmtry man/gd/man6 -@dirrmtry man/gd -%%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/uk/man6 -@dirrmtry man/uk -@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 -%%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/gd/LC_MESSAGES -%%NLS%%@dirrmtry share/locale/gd -%%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