aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormarino <marino@FreeBSD.org>2015-02-06 21:44:06 +0800
committermarino <marino@FreeBSD.org>2015-02-06 21:44:06 +0800
commit52fcfb38fac340e3824cc289d9dbfe422ca19062 (patch)
tree8076d1d89e08581e955b73c4e90636490db460ec
parentcf172948d1da918764953c8ae70deb5655a3c783 (diff)
downloadfreebsd-ports-gnome-52fcfb38fac340e3824cc289d9dbfe422ca19062.tar.gz
freebsd-ports-gnome-52fcfb38fac340e3824cc289d9dbfe422ca19062.tar.zst
freebsd-ports-gnome-52fcfb38fac340e3824cc289d9dbfe422ca19062.zip
games/wesnoth: Upgrade version 1.10.7 => 1.12.0, change maintainers
With the blessing of the former maintainer, the submitter of the PR takes over the maintainership of Wesnoth. PR: 196721 Submitted by: Torsten Zuehlsdorff
-rw-r--r--games/wesnoth/Makefile38
-rw-r--r--games/wesnoth/distinfo4
-rw-r--r--games/wesnoth/files/patch-CMakeLists.txt85
-rw-r--r--games/wesnoth/files/patch-doc-CMakeLists.txt7
-rw-r--r--games/wesnoth/files/patch-po-CMakeLists.txt24
-rw-r--r--games/wesnoth/files/patch-src-CMakeLists.txt22
-rw-r--r--games/wesnoth/files/patch-src-ana-src-CMakeLists.txt34
-rw-r--r--games/wesnoth/files/patch-src-chat_events.hpp10
-rw-r--r--games/wesnoth/files/patch-src-gettext.cpp15
-rw-r--r--games/wesnoth/files/patch-src-gettext.hpp25
-rw-r--r--games/wesnoth/files/patch-src-server-metrics.hpp10
-rw-r--r--games/wesnoth/files/patch-src-server-user_handler.cpp10
-rw-r--r--games/wesnoth/pkg-plist354
13 files changed, 201 insertions, 437 deletions
diff --git a/games/wesnoth/Makefile b/games/wesnoth/Makefile
index a71a2d1e1508..35c22dc14b15 100644
--- a/games/wesnoth/Makefile
+++ b/games/wesnoth/Makefile
@@ -1,30 +1,31 @@
# $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= *
@@ -48,15 +49,15 @@ TOOLS_DESC= Extra tools for artists and translators
.include <bsd.port.options.mk>
-# 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_NOTIFICATIONS=off
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 @@ 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
@@ -111,13 +113,11 @@ CMAKE_ARGS+= -DENABLE_OMP=off
.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,6 @@ CFLAGS+= -DNETWORK_USE_RAW_SOCKETS
.if ${PORT_OPTIONS:MSERVER}
CMAKE_ARGS+= -DENABLE_SERVER=on
-MAN6+= wesnothd.6
PLIST_SUB+= SERVER=""
.else
CMAKE_ARGS+= -DENABLE_SERVER=off
@@ -143,6 +142,7 @@ PLIST_SUB+= SERVER="@comment "
.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,11 +160,9 @@ PLIST_SUB+= TOOLS="@comment "
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 <bsd.port.mk>
diff --git a/games/wesnoth/distinfo b/games/wesnoth/distinfo
index 15cf3c8f8f9e..9a5a6fadca05 100644
--- a/games/wesnoth/distinfo
+++ b/games/wesnoth/distinfo
@@ -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
diff --git a/games/wesnoth/files/patch-CMakeLists.txt b/games/wesnoth/files/patch-CMakeLists.txt
deleted file mode 100644
index ec91cfc202e8..000000000000
--- a/games/wesnoth/files/patch-CMakeLists.txt
+++ /dev/null
@@ -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()
-
diff --git a/games/wesnoth/files/patch-doc-CMakeLists.txt b/games/wesnoth/files/patch-doc-CMakeLists.txt
deleted file mode 100644
index bc55227f2e0a..000000000000
--- a/games/wesnoth/files/patch-doc-CMakeLists.txt
+++ /dev/null
@@ -1,7 +0,0 @@
---- doc/CMakeLists.txt~
-+++ doc/CMakeLists.txt
-@@ -1,2 +1,4 @@
- add_subdirectory(man)
-+if(NOT DOCDIR STREQUAL "none")
- add_subdirectory(manual)
-+endif(NOT DOCDIR STREQUAL "none")
diff --git a/games/wesnoth/files/patch-po-CMakeLists.txt b/games/wesnoth/files/patch-po-CMakeLists.txt
deleted file mode 100644
index 39c9275a49eb..000000000000
--- a/games/wesnoth/files/patch-po-CMakeLists.txt
+++ /dev/null
@@ -1,24 +0,0 @@
---- po/CMakeLists.txt~
-+++ po/CMakeLists.txt
-@@ -273,9 +273,6 @@ if(ENABLE_NLS)
- COMMENT "mo-update [${DOMAIN}-${LINGUA}]: Creating mo file."
- )
-
-- install(FILES ${CMAKE_SOURCE_DIR}/${LOCALEDIR}/${LINGUA}/LC_MESSAGES/${DOMAIN}.mo
-- DESTINATION ${LOCALE_INSTALL}/${LINGUA}/LC_MESSAGES)
--
- set(mo-update-SRC ${mo-update-SRC}
- ${CMAKE_SOURCE_DIR}/${LOCALEDIR}/${LINGUA}/LC_MESSAGES/${DOMAIN}.mo
- )
-@@ -285,6 +282,11 @@ if(ENABLE_NLS)
-
- endforeach(DOMAIN ${DOMAINS})
-
-+ foreach(DOMAIN ${NORMAL_DOMAINS})
-+ install(FILES ${CMAKE_SOURCE_DIR}/${LOCALEDIR}/${LINGUA}/LC_MESSAGES/${DOMAIN}.mo
-+ DESTINATION ${LOCALE_INSTALL}/${LINGUA}/LC_MESSAGES)
-+ endforeach(DOMAIN ${NORMAL_DOMAINS})
-+
- if(ENABLE_POT_UPDATE_TARGET)
- add_custom_target(mo-update-${LINGUA}
- COMMENT "mo-update ${LINGUA}: Done."
diff --git a/games/wesnoth/files/patch-src-CMakeLists.txt b/games/wesnoth/files/patch-src-CMakeLists.txt
deleted file mode 100644
index cb9098175a15..000000000000
--- a/games/wesnoth/files/patch-src-CMakeLists.txt
+++ /dev/null
@@ -1,22 +0,0 @@
---- src/CMakeLists.txt~
-+++ src/CMakeLists.txt
-@@ -123,7 +123,7 @@ set(tools-external-libs
- )
-
- if(ENABLE_FRIBIDI AND FRIBIDI_LIBRARIES)
-- include_directories( ${FRIBIDI_INCLUDE_DIR} )
-+ include_directories( ${FRIBIDI_INCLUDE_DIRS} )
- set(game-external-libs ${game-external-libs} ${FRIBIDI_LIBRARIES})
- endif(ENABLE_FRIBIDI AND FRIBIDI_LIBRARIES)
-
-@@ -826,7 +833,9 @@ if(ENABLE_TESTS)
- boost_unit_test_framework
- )
- set_target_properties(test
-- PROPERTIES OUTPUT_NAME ${BINARY_PREFIX}test${BINARY_SUFFIX}
-+ PROPERTIES OUTPUT_NAME ${BINARY_PREFIX}wesnoth_test${BINARY_SUFFIX}
- )
-+
-+ install(TARGETS test DESTINATION ${BINDIR})
- endif(ENABLE_TESTS)
-
diff --git a/games/wesnoth/files/patch-src-ana-src-CMakeLists.txt b/games/wesnoth/files/patch-src-ana-src-CMakeLists.txt
deleted file mode 100644
index 1adeae22f520..000000000000
--- a/games/wesnoth/files/patch-src-ana-src-CMakeLists.txt
+++ /dev/null
@@ -1,34 +0,0 @@
---- src/ana/src/CMakeLists.txt~
-+++ src/ana/src/CMakeLists.txt
-@@ -4,7 +4,7 @@ include_directories(../api)
-
- find_package(Boost 1.35 REQUIRED COMPONENTS thread system)
-
--set(CMAKE_CXX_FLAGS_DEBUG "${CMAKE_CXX_FLAGS_DEBUG} -ggdb3")
-+set(CMAKE_CXX_FLAGS_DEBUG "${CMAKE_CXX_FLAGS_DEBUG}")
-
- set(common_srcs asio_listener.cpp asio_sender.cpp asio_timers.cpp)
-
-@@ -20,11 +20,11 @@ target_link_libraries( ana-static ${Boos
-
- set(CMAKE_INSTALL_PREFIX /usr/local)
-
--if(NOT MSVC)
-+if(FALSE)
- set(CMAKE_INSTALL_PREFIX /usr/local)
- install(TARGETS ana LIBRARY DESTINATION lib)
- install(TARGETS ana-static ARCHIVE DESTINATION lib)
--endif(NOT MSVC)
-+endif(FALSE)
-
- set(ana_headers
- ../api/ana.hpp
-@@ -35,6 +35,6 @@ set(ana_headers
- ../api/binary_streams.hpp
- )
-
--if(NOT MSVC)
-+if(FALSE)
- install(FILES ${ana_headers} DESTINATION include/ana)
--endif(NOT MSVC)
-+endif(FALSE)
diff --git a/games/wesnoth/files/patch-src-chat_events.hpp b/games/wesnoth/files/patch-src-chat_events.hpp
deleted file mode 100644
index 88f4efb09510..000000000000
--- a/games/wesnoth/files/patch-src-chat_events.hpp
+++ /dev/null
@@ -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 <string>
-+#include <time.h>
-
- namespace events {
-
diff --git a/games/wesnoth/files/patch-src-gettext.cpp b/games/wesnoth/files/patch-src-gettext.cpp
deleted file mode 100644
index 5efa34c5afe9..000000000000
--- a/games/wesnoth/files/patch-src-gettext.cpp
+++ /dev/null
@@ -1,15 +0,0 @@
---- src/gettext.cpp~
-+++ src/gettext.cpp
-@@ -18,6 +18,12 @@
-
- #include <cstring>
-
-+#ifndef ENABLE_NLS
-+char *textdomain (const char *domainname) {
-+ return "dummy";
-+}
-+#endif
-+
- char const *egettext(char const *msgid)
- {
- return msgid[0] == '\0' ? msgid : gettext(msgid);
diff --git a/games/wesnoth/files/patch-src-gettext.hpp b/games/wesnoth/files/patch-src-gettext.hpp
deleted file mode 100644
index 887c18dbcc51..000000000000
--- a/games/wesnoth/files/patch-src-gettext.hpp
+++ /dev/null
@@ -1,25 +0,0 @@
---- src/gettext.hpp~
-+++ src/gettext.hpp
-@@ -35,7 +35,21 @@
-
- // gettext-related declarations
-
--#include <libintl.h>
-+#include "wesconfig.h"
-+
-+#ifdef ENABLE_NLS
-+# include <libintl.h>
-+#else
-+# define bind_textdomain_codeset(Domain, Codeset) "C"
-+# define bindtextdomain(Domain, Directory) "/nonexistent"
-+# define gettext(String) gettext_noop(String)
-+# define ngettext(Singular, Plural, Number) gettext_noop(Number == 1 ? Singular : Plural)
-+# define dgettext(Domain, String) gettext_noop(String)
-+# define dngettext(Domain, Singular, Plural, Number) gettext_noop(Number == 1 ? Singular : Plural)
-+# define dcgettext(Domain, String, Category) gettext_noop(String)
-+# define dcngettext(Domain, Singular, Plural, Number, Category) gettext_noop(Number == 1 ? Singular : Plural)
-+char *textdomain (const char *domainname);
-+#endif
-
- const char* egettext(const char*);
- const char* sgettext(const char*);
diff --git a/games/wesnoth/files/patch-src-server-metrics.hpp b/games/wesnoth/files/patch-src-server-metrics.hpp
deleted file mode 100644
index 2e0752054826..000000000000
--- a/games/wesnoth/files/patch-src-server-metrics.hpp
+++ /dev/null
@@ -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 <time.h>
-
- class metrics
- {
diff --git a/games/wesnoth/files/patch-src-server-user_handler.cpp b/games/wesnoth/files/patch-src-server-user_handler.cpp
deleted file mode 100644
index c542d36d834f..000000000000
--- a/games/wesnoth/files/patch-src-server-user_handler.cpp
+++ /dev/null
@@ -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 <ctime>
-+#include <time.h>
-
- bool user_handler::send_mail(const std::string& to_user,
- const std::string& /*subject*/, const std::string& /*message*/) {
diff --git a/games/wesnoth/pkg-plist b/games/wesnoth/pkg-plist
index 52fb218204df..ead7c7e75fca 100644
--- a/games/wesnoth/pkg-plist
+++ b/games/wesnoth/pkg-plist
@@ -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 @@ share/applications/wesnoth_editor.desktop
%%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 @@ share/applications/wesnoth_editor.desktop
%%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 @@ share/applications/wesnoth_editor.desktop
%%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 @@ share/applications/wesnoth_editor.desktop
%%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 @@ share/applications/wesnoth_editor.desktop
%%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 @@ share/applications/wesnoth_editor.desktop
%%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 @@ share/applications/wesnoth_editor.desktop
%%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 @@ share/applications/wesnoth_editor.desktop
%%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 @@ share/applications/wesnoth_editor.desktop
%%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 @@ share/applications/wesnoth_editor.desktop
%%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 @@ share/applications/wesnoth_editor.desktop
%%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 @@ share/applications/wesnoth_editor.desktop
%%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 @@ share/applications/wesnoth_editor.desktop
%%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 @@ share/applications/wesnoth_editor.desktop
%%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 @@ share/applications/wesnoth_editor.desktop
%%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 @@ share/applications/wesnoth_editor.desktop
%%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 @@ share/applications/wesnoth_editor.desktop
%%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 @@ share/applications/wesnoth_editor.desktop
%%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 @@ share/applications/wesnoth_editor.desktop
%%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 @@ share/applications/wesnoth_editor.desktop
%%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 @@ share/applications/wesnoth_editor.desktop
%%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 @@ share/applications/wesnoth_editor.desktop
%%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 @@ share/applications/wesnoth_editor.desktop
%%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 @@ share/applications/wesnoth_editor.desktop
%%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 @@ share/applications/wesnoth_editor.desktop
%%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 @@ share/applications/wesnoth_editor.desktop
%%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 @@ share/applications/wesnoth_editor.desktop
%%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 @@ share/applications/wesnoth_editor.desktop
%%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 @@ share/applications/wesnoth_editor.desktop
%%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 @@ share/applications/wesnoth_editor.desktop
%%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 @@ share/applications/wesnoth_editor.desktop
%%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 @@ share/applications/wesnoth_editor.desktop
%%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 @@ share/applications/wesnoth_editor.desktop
%%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 @@ share/applications/wesnoth_editor.desktop
%%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 @@ share/applications/wesnoth_editor.desktop
%%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 @@ share/applications/wesnoth_editor.desktop
%%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 @@ share/applications/wesnoth_editor.desktop
%%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 @@ share/applications/wesnoth_editor.desktop
%%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 @@ share/applications/wesnoth_editor.desktop
%%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 @@ share/applications/wesnoth_editor.desktop
%%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 @@ share/applications/wesnoth_editor.desktop
%%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 @@ share/applications/wesnoth_editor.desktop
%%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 @@ share/applications/wesnoth_editor.desktop
%%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 @@ share/applications/wesnoth_editor.desktop
%%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 @@ share/applications/wesnoth_editor.desktop
%%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 @@ share/applications/wesnoth_editor.desktop
%%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 @@ share/applications/wesnoth_editor.desktop
%%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 @@ share/applications/wesnoth_editor.desktop
%%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 @@ share/applications/wesnoth_editor.desktop
%%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 @@ share/applications/wesnoth_editor.desktop
%%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 @@ share/applications/wesnoth_editor.desktop
%%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 @@ share/applications/wesnoth_editor.desktop
%%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 @@ share/applications/wesnoth_editor.desktop
%%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 @@ share/applications/wesnoth_editor.desktop
%%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 @@ share/applications/wesnoth_editor.desktop
%%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 @@ share/applications/wesnoth_editor.desktop
%%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 @@ share/applications/wesnoth_editor.desktop
%%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 @@ share/applications/wesnoth_editor.desktop
%%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 @@ share/applications/wesnoth_editor.desktop
%%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 @@ share/applications/wesnoth_editor.desktop
%%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 @@ share/applications/wesnoth_editor.desktop
%%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 @@ share/applications/wesnoth_editor.desktop
%%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 @@ share/applications/wesnoth_editor.desktop
%%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 @@ share/applications/wesnoth_editor.desktop
%%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 @@ share/applications/wesnoth_editor.desktop
%%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 @@ share/applications/wesnoth_editor.desktop
%%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 @@ share/applications/wesnoth_editor.desktop
%%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 @@ share/applications/wesnoth_editor.desktop
%%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 @@ share/applications/wesnoth_editor.desktop
%%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 @@ share/applications/wesnoth_editor.desktop
%%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 @@ share/applications/wesnoth_editor.desktop
%%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 @@ share/applications/wesnoth_editor.desktop
%%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 @@ share/applications/wesnoth_editor.desktop
%%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 @@ share/applications/wesnoth_editor.desktop
%%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 @@ share/applications/wesnoth_editor.desktop
%%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 @@ share/applications/wesnoth_editor.desktop
%%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 @@ share/applications/wesnoth_editor.desktop
%%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 @@ share/applications/wesnoth_editor.desktop
%%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 @@ share/applications/wesnoth_editor.desktop
%%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 @@ share/applications/wesnoth_editor.desktop
%%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 @@ share/applications/wesnoth_editor.desktop
%%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 @@ share/applications/wesnoth_editor.desktop
%%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 @@ share/applications/wesnoth_editor.desktop
%%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 @@ share/applications/wesnoth_editor.desktop
%%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 @@ share/applications/wesnoth_editor.desktop
%%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 @@ share/applications/wesnoth_editor.desktop
%%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 @@ share/applications/wesnoth_editor.desktop
%%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 @@ share/applications/wesnoth_editor.desktop
%%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 @@ share/applications/wesnoth_editor.desktop
%%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 @@ share/applications/wesnoth_editor.desktop
%%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 @@ share/applications/wesnoth_editor.desktop
%%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 @@ share/applications/wesnoth_editor.desktop
%%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 @@ share/applications/wesnoth_editor.desktop
%%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 @@ share/applications/wesnoth_editor.desktop
%%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 @@ share/applications/wesnoth_editor.desktop
%%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 @@ share/applications/wesnoth_editor.desktop
%%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 @@ share/applications/wesnoth_editor.desktop
%%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 @@ share/applications/wesnoth_editor.desktop
%%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 @@ share/applications/wesnoth_editor.desktop
%%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 @@ share/applications/wesnoth_editor.desktop
%%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 @@ share/applications/wesnoth_editor.desktop
%%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 @@ share/applications/wesnoth_editor.desktop
%%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 @@ share/applications/wesnoth_editor.desktop
%%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 @@ share/applications/wesnoth_editor.desktop
%%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 @@ share/applications/wesnoth_editor.desktop
%%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 @@ share/applications/wesnoth_editor.desktop
%%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 @@ share/applications/wesnoth_editor.desktop
%%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 @@ share/applications/wesnoth_editor.desktop
%%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 @@ share/applications/wesnoth_editor.desktop
%%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 @@ share/applications/wesnoth_editor.desktop
%%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 @@ share/applications/wesnoth_editor.desktop
%%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 @@ share/applications/wesnoth_editor.desktop
%%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 @@ share/applications/wesnoth_editor.desktop
%%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,5 @@ 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