Index: Makefile =================================================================== --- Makefile (Revision 377155) +++ Makefile (Arbeitskopie) @@ -1,13 +1,15 @@ # $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 @@ -14,17 +16,16 @@ 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 CMAKE_ARGS= -DMANDIR="man" -MAN6= wesnoth.6 - PORTDOCS= * PORTDATA= * @@ -48,15 +49,15 @@ .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} @@ -91,7 +92,7 @@ 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 \ @@ -104,6 +105,7 @@ .endif .if ${PORT_OPTIONS:MOPENMP} +BROKEN= compilation fails with OpenMP CMAKE_ARGS+= -DENABLE_OMP=on .else CMAKE_ARGS+= -DENABLE_OMP=off @@ -111,13 +113,11 @@ .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//} @@ -133,7 +133,7 @@ .if ${PORT_OPTIONS:MSERVER} CMAKE_ARGS+= -DENABLE_SERVER=on -MAN6+= wesnothd.6 +#MAN6+= wesnothd.6 PLIST_SUB+= SERVER="" .else CMAKE_ARGS+= -DENABLE_SERVER=off @@ -143,6 +143,7 @@ .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 " @@ -160,9 +161,7 @@ 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 Index: distinfo =================================================================== --- distinfo (Revision 377155) +++ distinfo (Arbeitskopie) @@ -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: files/patch-CMakeLists.txt =================================================================== --- files/patch-CMakeLists.txt (Revision 377155) +++ files/patch-CMakeLists.txt (Arbeitskopie) @@ -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() - Index: files/patch-doc-CMakeLists.txt =================================================================== --- files/patch-doc-CMakeLists.txt (Revision 377155) +++ files/patch-doc-CMakeLists.txt (Arbeitskopie) @@ -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") Index: files/patch-po-CMakeLists.txt =================================================================== --- files/patch-po-CMakeLists.txt (Revision 377155) +++ files/patch-po-CMakeLists.txt (Arbeitskopie) @@ -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." Index: files/patch-src-CMakeLists.txt =================================================================== --- files/patch-src-CMakeLists.txt (Revision 377155) +++ files/patch-src-CMakeLists.txt (Arbeitskopie) @@ -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) - Index: files/patch-src-ana-src-CMakeLists.txt =================================================================== --- files/patch-src-ana-src-CMakeLists.txt (Revision 377155) +++ files/patch-src-ana-src-CMakeLists.txt (Arbeitskopie) @@ -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) Index: files/patch-src-chat_events.hpp =================================================================== --- files/patch-src-chat_events.hpp (Revision 377155) +++ files/patch-src-chat_events.hpp (Arbeitskopie) @@ -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 { - Index: files/patch-src-gettext.cpp =================================================================== --- files/patch-src-gettext.cpp (Revision 377155) +++ files/patch-src-gettext.cpp (Arbeitskopie) @@ -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); Index: files/patch-src-gettext.hpp =================================================================== --- files/patch-src-gettext.hpp (Revision 377155) +++ files/patch-src-gettext.hpp (Arbeitskopie) @@ -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*); Index: files/patch-src-server-metrics.hpp =================================================================== --- files/patch-src-server-metrics.hpp (Revision 377155) +++ files/patch-src-server-metrics.hpp (Arbeitskopie) @@ -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 - { Index: files/patch-src-server-user_handler.cpp =================================================================== --- files/patch-src-server-user_handler.cpp (Revision 377155) +++ files/patch-src-server-user_handler.cpp (Arbeitskopie) @@ -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*/) { Index: pkg-plist =================================================================== --- pkg-plist (Revision 377155) +++ pkg-plist (Arbeitskopie) @@ -1,41 +1,23 @@ +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 @@ -48,6 +30,8 @@ %%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 @@ -61,6 +45,7 @@ %%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 @@ -73,6 +58,8 @@ %%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 @@ -86,6 +73,7 @@ %%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 @@ -98,6 +86,8 @@ %%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 @@ -111,6 +101,7 @@ %%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 @@ -123,6 +114,8 @@ %%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 @@ -136,6 +129,7 @@ %%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 @@ -148,6 +142,8 @@ %%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 @@ -161,6 +157,7 @@ %%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 @@ -173,6 +170,8 @@ %%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 @@ -186,6 +185,7 @@ %%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 @@ -198,6 +198,8 @@ %%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 @@ -211,6 +213,7 @@ %%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 @@ -223,6 +226,8 @@ %%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 @@ -236,6 +241,7 @@ %%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 @@ -248,6 +254,8 @@ %%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 @@ -261,6 +269,7 @@ %%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 @@ -273,6 +282,8 @@ %%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 @@ -286,6 +297,7 @@ %%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 @@ -298,6 +310,8 @@ %%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 @@ -311,6 +325,7 @@ %%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 @@ -323,6 +338,8 @@ %%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 @@ -336,6 +353,7 @@ %%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 @@ -348,6 +366,8 @@ %%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 @@ -361,6 +381,7 @@ %%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 @@ -373,6 +394,8 @@ %%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 @@ -386,6 +409,7 @@ %%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 @@ -398,6 +422,8 @@ %%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 @@ -411,6 +437,7 @@ %%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 @@ -423,6 +450,8 @@ %%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 @@ -436,6 +465,7 @@ %%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 @@ -448,6 +478,8 @@ %%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 @@ -461,6 +493,7 @@ %%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 @@ -473,6 +506,8 @@ %%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 @@ -486,6 +521,7 @@ %%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 @@ -498,6 +534,8 @@ %%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 @@ -511,6 +549,7 @@ %%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 @@ -523,6 +562,8 @@ %%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 @@ -536,6 +577,7 @@ %%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 @@ -548,6 +590,8 @@ %%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 @@ -561,6 +605,7 @@ %%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 @@ -573,6 +618,8 @@ %%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 @@ -586,6 +633,7 @@ %%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 @@ -598,6 +646,8 @@ %%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 @@ -611,6 +661,7 @@ %%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 @@ -623,6 +674,8 @@ %%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 @@ -636,6 +689,7 @@ %%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 @@ -648,6 +702,8 @@ %%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 @@ -661,6 +717,7 @@ %%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 @@ -673,6 +730,8 @@ %%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 @@ -686,6 +745,7 @@ %%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 @@ -698,6 +758,8 @@ %%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 @@ -711,6 +773,7 @@ %%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 @@ -723,6 +786,8 @@ %%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 @@ -736,6 +801,7 @@ %%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 @@ -748,6 +814,8 @@ %%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 @@ -761,6 +829,7 @@ %%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 @@ -773,6 +842,8 @@ %%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 @@ -786,6 +857,7 @@ %%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 @@ -798,6 +870,8 @@ %%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 @@ -811,6 +885,7 @@ %%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 @@ -823,6 +898,8 @@ %%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 @@ -836,6 +913,7 @@ %%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 @@ -848,6 +926,8 @@ %%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 @@ -861,6 +941,7 @@ %%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 @@ -873,6 +954,8 @@ %%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 @@ -886,6 +969,7 @@ %%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 @@ -898,6 +982,8 @@ %%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 @@ -911,6 +997,7 @@ %%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 @@ -923,6 +1010,8 @@ %%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 @@ -936,6 +1025,7 @@ %%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 @@ -948,6 +1038,8 @@ %%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 @@ -961,6 +1053,7 @@ %%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 @@ -973,6 +1066,8 @@ %%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 @@ -986,6 +1081,7 @@ %%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 @@ -998,6 +1094,8 @@ %%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 @@ -1011,6 +1109,7 @@ %%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 @@ -1023,6 +1122,8 @@ %%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 @@ -1036,6 +1137,7 @@ %%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 @@ -1048,6 +1150,8 @@ %%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 @@ -1061,6 +1165,7 @@ %%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 @@ -1073,6 +1178,8 @@ %%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 @@ -1086,6 +1193,7 @@ %%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 @@ -1098,6 +1206,8 @@ %%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 @@ -1111,6 +1221,7 @@ %%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 @@ -1123,6 +1234,8 @@ %%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 @@ -1136,6 +1249,7 @@ %%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 @@ -1148,6 +1262,8 @@ %%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 @@ -1161,6 +1277,7 @@ %%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 @@ -1173,6 +1290,8 @@ %%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 @@ -1186,6 +1305,7 @@ %%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 @@ -1198,6 +1318,8 @@ %%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 @@ -1211,6 +1333,7 @@ %%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 @@ -1223,6 +1346,8 @@ %%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 @@ -1236,6 +1361,7 @@ %%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 @@ -1248,6 +1374,8 @@ %%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 @@ -1261,6 +1389,7 @@ %%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 @@ -1273,6 +1402,8 @@ %%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 @@ -1286,6 +1417,7 @@ %%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 @@ -1298,6 +1430,8 @@ %%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 @@ -1311,6 +1445,7 @@ %%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 @@ -1323,6 +1458,8 @@ %%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 @@ -1336,6 +1473,7 @@ %%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 @@ -1348,6 +1486,8 @@ %%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 @@ -1361,6 +1501,7 @@ %%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 @@ -1373,6 +1514,8 @@ %%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 @@ -1386,6 +1529,7 @@ %%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 @@ -1398,6 +1542,8 @@ %%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 @@ -1411,6 +1557,7 @@ %%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 @@ -1423,6 +1570,8 @@ %%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 @@ -1436,6 +1585,7 @@ %%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 @@ -1448,6 +1598,8 @@ %%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 @@ -1514,149 +1666,149 @@ 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 +@dir man/af/man6 +@dir man/af +@dir man/ang/man6 +@dir man/ang +@dir man/ang@latin/man6 +@dir man/ang@latin +@dir man/ar/man6 +@dir man/ar +@dir man/bg/man6 +@dir man/bg +@dir man/ca/man6 +@dir man/ca +@dir man/ca_ES@valencia/man6 +@dir man/ca_ES@valencia +@dir man/cs/man6 +@dir man/cs +@dir man/da/man6 +@dir man/da +@dir man/de/man6 +@dir man/de +@dir man/el/man6 +@dir man/el +@dir man/en@shaw/man6 +@dir man/en@shaw +@dir man/en_GB/man6 +@dir man/en_GB +@dir man/eo/man6 +@dir man/eo +@dir man/es/man6 +@dir man/es +@dir man/et/man6 +@dir man/et +@dir man/eu/man6 +@dir man/eu +@dir man/fi/man6 +@dir man/fi +@dir man/fr/man6 +@dir man/fr +@dir man/fur_IT/man6 +@dir man/fur_IT +@dir man/ga/man6 +@dir man/ga +@dir man/gd/man6 +@dir man/gd +@dir man/gl/man6 +@dir man/gl +@dir man/he/man6 +@dir man/he +@dir man/hr/man6 +@dir man/hr +@dir man/hu/man6 +@dir man/hu +@dir man/id/man6 +@dir man/id +@dir man/is/man6 +@dir man/is +@dir man/it/man6 +@dir man/it +@dir man/ko/man6 +@dir man/ko +@dir man/la/man6 +@dir man/la +@dir man/lt/man6 +@dir man/lt +@dir man/lv/man6 +@dir man/lv +@dir man/mk/man6 +@dir man/mk +@dir man/mr/man6 +@dir man/mr +@dir man/nb_NO/man6 +@dir man/nb_NO +@dir man/nl/man6 +@dir man/nl +@dir man/pl/man6 +@dir man/pl +@dir man/pt/man6 +@dir man/pt +@dir man/pt_BR/man6 +@dir man/pt_BR +@dir man/racv/man6 +@dir man/racv +@dir man/ro/man6 +@dir man/ro +@dir man/ru/man6 +@dir man/ru +@dir man/sk/man6 +@dir man/sk +@dir man/sl/man6 +@dir man/sl +@dir man/sr/man6 +@dir man/sr +@dir man/sr@ijekavian/man6 +@dir man/sr@ijekavian +@dir man/sr@ijekavianlatin/man6 +@dir man/sr@ijekavianlatin +@dir man/sr@latin/man6 +@dir man/sr@latin +@dir man/sv/man6 +@dir man/sv +@dir man/tl/man6 +@dir man/tl +@dir man/tr/man6 +@dir man/tr +@dir man/uk/man6 +@dir man/uk +@dir man/vi/man6 +@dir man/vi +@dir man/zh_CN/man6 +@dir man/zh_CN +@dir man/zh_TW/man6 +@dir man/zh_TW +%%ANA%%@dir include/ana/ +%%ANA%%@dir lib +%%NLS%%@dir share/locale/ang/LC_MESSAGES +%%NLS%%@dir share/locale/ang +%%NLS%%@dir share/locale/ang@latin/LC_MESSAGES +%%NLS%%@dir share/locale/ang@latin +%%NLS%%@dir share/locale/ca_ES@valencia/LC_MESSAGES +%%NLS%%@dir share/locale/ca_ES@valencia +%%NLS%%@dir share/locale/en@shaw/LC_MESSAGES +%%NLS%%@dir share/locale/en@shaw +%%NLS%%@dir share/locale/fur_IT/LC_MESSAGES +%%NLS%%@dir share/locale/fur_IT +%%NLS%%@dir share/locale/gd/LC_MESSAGES +%%NLS%%@dir share/locale/gd +%%NLS%%@dir share/locale/la/LC_MESSAGES +%%NLS%%@dir share/locale/la +%%NLS%%@dir share/locale/mr/LC_MESSAGES +%%NLS%%@dir share/locale/mr +%%NLS%%@dir share/locale/nb_NO/LC_MESSAGES +%%NLS%%@dir share/locale/nb_NO +%%NLS%%@dir share/locale/racv/LC_MESSAGES +%%NLS%%@dir share/locale/racv +%%NLS%%@dir share/locale/sr@ijekavian/LC_MESSAGES +%%NLS%%@dir share/locale/sr@ijekavian +%%NLS%%@dir share/locale/sr@ijekavianlatin/LC_MESSAGES +%%NLS%%@dir share/locale/sr@ijekavianlatin +%%NLS%%@dir share/locale/sr@latin/LC_MESSAGES +%%NLS%%@dir share/locale/sr@latin +%%NLS%%@dir share/locale/tl/LC_MESSAGES +%%NLS%%@dir 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