Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 3 Jan 2014 14:07:00 GMT
From:      Hardy Schumacher <hardy.schumacher@gmx.de>
To:        freebsd-gnats-submit@FreeBSD.org
Subject:   ports/185444: [NEW PORT] games/wesnoth-devel
Message-ID:  <201401031407.s03E70bS043559@oldred.freebsd.org>
Resent-Message-ID: <201401031410.s03EA0N0022960@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help

>Number:         185444
>Category:       ports
>Synopsis:       [NEW PORT] games/wesnoth-devel
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-ports-bugs
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          change-request
>Submitter-Id:   current-users
>Arrival-Date:   Fri Jan 03 14:10:00 UTC 2014
>Closed-Date:
>Last-Modified:
>Originator:     Hardy Schumacher
>Release:        FreeBSD-9.2
>Organization:
>Environment:
FreeBSD gamma.low.org 9.2-RELEASE FreeBSD 9.2-RELEASE #0 r255996: Thu Oct  3 20:40:04 CEST 2013     root@gamma.low.org:/usr/obj/usr/src/sys/LOW_GAMMA  i386
>Description:
Wesnoth development team provides two versions for the game: one is the stable versin, which has already a port games/wesnoth, and one is the development version.
To support both versions, for testing purposes, it is recommended to add a port for the devel version (similar to other ports).
>How-To-Repeat:
n/a
>Fix:


Patch attached with submission follows:

diff -ruN /usr/ports/games/wesnoth-devel/Makefile ./wesnoth-devel/Makefile
--- /usr/ports/games/wesnoth-devel/Makefile	1970-01-01 01:00:00.000000000 +0100
+++ ./wesnoth-devel/Makefile	2014-01-03 14:57:31.000000000 +0100
@@ -0,0 +1,174 @@
+# $FreeBSD: head/games/wesnoth/Makefile 336255 2013-12-12 11:14:49Z bapt $
+
+PORTNAME=	wesnoth
+PORTVERSION=	1.11.7
+CATEGORIES=	games
+MASTER_SITES=	SF/${PORTNAME}/${PORTNAME}/${PORTNAME}-${PORTVERSION} \
+		http://files.wesnoth.org/
+PKGNAMESUFFIX=	-devel
+
+MAINTAINER=	rnejdl@ringofsaturn.com
+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 \
+		libpng15.so:${PORTSDIR}/graphics/png
+
+CONFLICTS=	wesnoth-[0-9]*
+
+USE_SDL=	image mixer net ttf
+USE_GNOME=	pango desktopfileutils
+USE_BZIP2=	yes
+USES=		cmake pkgconfig
+CMAKE_ARGS=	-DMANDIR="man"
+
+MAN6=		wesnoth.6
+
+PORTDOCS=	*
+PORTDATA=	*
+
+OPTIONS_DEFINE=	ANA CAMPAIGN FRIBIDI LOWMEM NOTIFY OPENMP POOLALLOC PYTHON \
+		RAWSOCKETS SERVER TESTS TOOLS
+
+OPTIONS_DEFAULT=	CAMPAIGN FRIBIDI NOTIFY SERVER TOOLS
+
+ANA_DESC=	Asynchronous Network API (WIP)
+CAMPAIGN_DESC=	Campaign server
+FRIBIDI_DESC=	Bidirectional support
+LOWMEM_DESC=	Reduce memory usage (disables animations)
+NOTIFY_DESC=	Desktop notifications
+OPENMP_DESC=	OpenMP support
+POOLALLOC_DESC=	Use wesnoth own memory allocator
+PYTHON_DESC=	Python developer tools
+RAWSOCKETS_DESC=	Use raw receiving sockets in multiplayer
+SERVER_DESC=	Server
+TESTS_DESC=	Unit tests
+TOOLS_DESC=	Extra tools for artists and translators
+
+NO_STAGE=	yes
+.include <bsd.port.options.mk>
+
+# XXX: breaks compilation because of -Werror
+.if empty(PORT_OPTIONS:MSTRICT)
+CMAKE_ARGS+=	-DENABLE_STRICT_COMPILATION=off
+.endif
+
+.if ${PORT_OPTIONS:MANA}
+CMAKE_ARGS+=	-DUSE_ANA_NETWORK=on
+.else
+CMAKE_ARGS+=	-DUSE_ANA_NETWORK=off
+.endif
+
+.if ${PORT_OPTIONS:MCAMPAIGN}
+CMAKE_ARGS+=	-DENABLE_CAMPAIGN_SERVER=on
+PLIST_SUB+=	CAMPAIGN=""
+.else
+CMAKE_ARGS+=	-DENABLE_CAMPAIGN_SERVER=off
+PLIST_SUB+=	CAMPAIGN="@comment "
+.endif
+
+.if ${PORT_OPTIONS:MFRIBIDI}
+CMAKE_ARGS+=	-DENABLE_FRIBIDI=on
+LIB_DEPENDS+=	fribidi:${PORTSDIR}/converters/fribidi
+.else
+CMAKE_ARGS+=	-DENABLE_FRIBIDI=off
+.endif
+
+.if ${PORT_OPTIONS:MLOWMEM}
+CMAKE_ARGS+=	-DENABLE_LOW_MEM=on
+.else
+CMAKE_ARGS+=	-DENABLE_LOW_MEM=off
+.endif
+
+.if ${PORT_OPTIONS:MNOTIFY}
+CMAKE_ARGS+=	-DENABLE_NOTIFICATIONS=on
+LIB_DEPENDS+=	dbus-1:${PORTSDIR}/devel/dbus
+.else
+CMAKE_ARGS+=	-DENABLE_NOTIFICATIONS=off
+.endif
+
+.if ${PORT_OPTIONS:MNLS}
+CMAKE_ARGS+=	-DENABLE_NLS=on -DLOCALEDIR=${PREFIX}/share/locale
+USES+=		gettext
+MANLANG=	"" cs de en_GB es et fi fr gl hu id it lt pl ru sk \
+		sr sr@ijekavian sr@ijekavianlatin sr@latin vi zh_CN zh_TW
+.if ${PORT_OPTIONS:MSERVER}
+_MANPAGES+=	${PREFIX}/man/ja/man6/wesnothd.6 \
+		${PREFIX}/man/pt_BR/man6/wesnothd.6 \
+		${PREFIX}/man/tr/man6/wesnothd.6
+.endif
+PLIST_SUB+=	NLS=""
+.else
+CMAKE_ARGS+=	-DENABLE_NLS=off
+PLIST_SUB+=	NLS="@comment "
+.endif
+
+.if ${PORT_OPTIONS:MOPENMP}
+CMAKE_ARGS+=	-DENABLE_OMP=on
+.else
+CMAKE_ARGS+=	-DENABLE_OMP=off
+.endif
+
+.if ${PORT_OPTIONS:MPOOLALLOC}
+CMAKE_ARGS+=	-DENABLE_POOL_ALLOC=on
+BROKEN=		does not build with pool alloc
+.else
+CMAKE_ARGS+=	-DENABLE_POOL_ALLOC=off
+.endif
+
+.if ${PORT_OPTIONS:MPYTHON}
+BROKEN=		cmake build doesn't support installing python tools
+USE_PYTHON=	yes
+CONFIGURE_ENV+=	PYTHON_PREFIX=${PREFIX} \
+		PYTHON_VERSION=${PYTHON_VERSION:S/python//}
+CONFIGURE_ARGS+=--enable-python-install
+PLIST_SUB+=	PYTHON=""
+.else
+PLIST_SUB+=	PYTHON="@comment "
+.endif
+
+.if ${PORT_OPTIONS:MRAWSOCKETS}
+CFLAGS+=	-DNETWORK_USE_RAW_SOCKETS
+.endif
+
+.if ${PORT_OPTIONS:MSERVER}
+CMAKE_ARGS+=	-DENABLE_SERVER=on
+MAN6+=		wesnothd.6
+PLIST_SUB+=	SERVER=""
+.else
+CMAKE_ARGS+=	-DENABLE_SERVER=off
+PLIST_SUB+=	SERVER="@comment "
+.endif
+
+.if ${PORT_OPTIONS:MTESTS}
+CMAKE_ARGS+=	-DENABLE_TESTS=on
+PLIST_SUB+=	TESTS=""
+.else
+CMAKE_ARGS+=	-DENABLE_TESTS=off
+PLIST_SUB+=	TESTS="@comment "
+.endif
+
+.if ${PORT_OPTIONS:MTOOLS}
+CMAKE_ARGS+=	-DENABLE_TOOLS=on
+PLIST_SUB+=	TOOLS=""
+.else
+CMAKE_ARGS+=	-DENABLE_TOOLS=off
+PLIST_SUB+=	TOOLS="@comment "
+.endif
+
+.if empty(PORT_OPTIONS:MDOCS)
+CMAKE_ARGS+=	-DDOCDIR=none
+.endif
+
+pre-build:
+	${CP} ${LOCALBASE}/lib/X11/fonts/junicode/Junicode.ttf \
+		${WRKSRC}/fonts/Junicode-Regular.ttf
+
+post-install:
+	-@update-desktop-database ${PREFIX}/share/applications
+
+.include <bsd.port.mk>
diff -ruN /usr/ports/games/wesnoth-devel/distinfo ./wesnoth-devel/distinfo
--- /usr/ports/games/wesnoth-devel/distinfo	1970-01-01 01:00:00.000000000 +0100
+++ ./wesnoth-devel/distinfo	2014-01-02 17:06:23.000000000 +0100
@@ -0,0 +1,2 @@
+SHA256 (wesnoth-1.11.7.tar.bz2) = fb450063da576f8bd2a5de37b5072803ca499f36ffcc5814ec52e595847e636d
+SIZE (wesnoth-1.11.7.tar.bz2) = 386014045
diff -ruN /usr/ports/games/wesnoth-devel/files/patch-CMakeLists.txt ./wesnoth-devel/files/patch-CMakeLists.txt
--- /usr/ports/games/wesnoth-devel/files/patch-CMakeLists.txt	1970-01-01 01:00:00.000000000 +0100
+++ ./wesnoth-devel/files/patch-CMakeLists.txt	2014-01-03 13:41:26.000000000 +0100
@@ -0,0 +1,60 @@
+--- CMakeLists.txt.orig	2013-11-16 09:48:26.000000000 +0100
++++ CMakeLists.txt	2014-01-03 13:40:44.000000000 +0100
+@@ -24,10 +24,12 @@
+ 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)
+ 
+@@ -77,7 +79,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_LOW_MEM "Reduce memory usage by removing extra functionality" OFF)
+@@ -433,6 +435,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.
+@@ -440,6 +447,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})
+@@ -505,10 +513,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 -ruN /usr/ports/games/wesnoth-devel/files/patch-doc-CMakeLists.txt ./wesnoth-devel/files/patch-doc-CMakeLists.txt
--- /usr/ports/games/wesnoth-devel/files/patch-doc-CMakeLists.txt	1970-01-01 01:00:00.000000000 +0100
+++ ./wesnoth-devel/files/patch-doc-CMakeLists.txt	2014-01-03 13:50:21.000000000 +0100
@@ -0,0 +1,8 @@
+--- doc/CMakeLists.txt.orig	2013-11-16 09:48:28.000000000 +0100
++++ doc/CMakeLists.txt	2014-01-03 13:49:28.000000000 +0100
+@@ -1,3 +1,5 @@
+ add_subdirectory(design)
+ add_subdirectory(man)
++if(NOT DOCDIR STREQUAL "none")
+ add_subdirectory(manual)
++endif(NOT DOCDIR STREQUAL "none")
diff -ruN /usr/ports/games/wesnoth-devel/files/patch-po-CMakeLists.txt ./wesnoth-devel/files/patch-po-CMakeLists.txt
--- /usr/ports/games/wesnoth-devel/files/patch-po-CMakeLists.txt	1970-01-01 01:00:00.000000000 +0100
+++ ./wesnoth-devel/files/patch-po-CMakeLists.txt	2014-01-03 13:54:57.000000000 +0100
@@ -0,0 +1,24 @@
+--- po/CMakeLists.txt.orig	2013-11-16 09:48:28.000000000 +0100
++++ po/CMakeLists.txt	2014-01-03 13:54:27.000000000 +0100
+@@ -246,9 +246,6 @@
+ 				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
+ 			)
+@@ -258,6 +255,11 @@
+ 
+ 		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 -ruN /usr/ports/games/wesnoth-devel/files/patch-src-CMakeLists.txt ./wesnoth-devel/files/patch-src-CMakeLists.txt
--- /usr/ports/games/wesnoth-devel/files/patch-src-CMakeLists.txt	1970-01-01 01:00:00.000000000 +0100
+++ ./wesnoth-devel/files/patch-src-CMakeLists.txt	2014-01-03 14:29:28.000000000 +0100
@@ -0,0 +1,46 @@
+--- src/CMakeLists.txt.orig	2013-11-16 09:48:33.000000000 +0100
++++ src/CMakeLists.txt	2014-01-03 14:28:50.000000000 +0100
+@@ -126,7 +126,7 @@
+ )
+ 
+ if(ENABLE_FRIBIDI AND FRIBIDI_LIBRARIES)
+-	include_directories(SYSTEM ${FRIBIDI_INCLUDE_DIR} )
++	include_directories(SYSTEM ${FRIBIDI_INCLUDE_DIRS} )
+ 	set(game-external-libs ${game-external-libs} ${FRIBIDI_LIBRARIES})
+ endif(ENABLE_FRIBIDI AND FRIBIDI_LIBRARIES)
+ 
+@@ -313,7 +313,7 @@
+ if(CMAKE_COMPILER_IS_GNUCXX)
+ 	set_target_properties(wesnoth-lua
+ 		PROPERTIES COMPILE_FLAGS
+-		"-Wno-old-style-cast -Wno-useless-cast"
++		"-Wno-old-style-cast"
+ 	)
+ 	set_source_files_properties(
+ 		clipboard.cpp
+@@ -325,7 +325,7 @@
+ 		desktop_util.cpp
+ 		text.cpp
+ 		PROPERTIES
+-			COMPILE_FLAGS "-Wno-old-style-cast -Wno-useless-cast")
++			COMPILE_FLAGS "-Wno-old-style-cast")
+ endif(CMAKE_COMPILER_IS_GNUCXX)
+ 
+ ########### Helper libraries ###############
+@@ -1221,7 +1221,7 @@
+ 		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}
+ 	)
+ 
+ 	if(ENABLE_TOOLS)
+@@ -1241,5 +1241,7 @@
+ 		set_target_properties(create_images PROPERTIES OUTPUT_NAME ${BINARY_PREFIX}create_images${BINARY_SUFFIX})
+ 	endif(ENABLE_TOOLS)
+ 
++	install(TARGETS test DESTINATION ${BINDIR})
++
+ endif(ENABLE_TESTS)
+ 
diff -ruN /usr/ports/games/wesnoth-devel/files/patch-src-ana-src-CMakeLists.txt ./wesnoth-devel/files/patch-src-ana-src-CMakeLists.txt
--- /usr/ports/games/wesnoth-devel/files/patch-src-ana-src-CMakeLists.txt	1970-01-01 01:00:00.000000000 +0100
+++ ./wesnoth-devel/files/patch-src-ana-src-CMakeLists.txt	2014-01-03 14:05:08.000000000 +0100
@@ -0,0 +1,34 @@
+--- src/ana/src/CMakeLists.txt.orig	2013-11-16 09:48:33.000000000 +0100
++++ src/ana/src/CMakeLists.txt	2014-01-03 14:04:12.000000000 +0100
+@@ -3,7 +3,7 @@
+ 
+ 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)
+ 
+@@ -19,11 +19,11 @@
+ 
+ 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
+@@ -34,6 +34,6 @@
+ 	../api/binary_streams.hpp
+ )
+ 
+-if(NOT MSVC)
++if(FALSE)
+ 	install(FILES ${ana_headers} DESTINATION include/ana)
+-endif(NOT MSVC)
++endif(FALSE)
diff -ruN /usr/ports/games/wesnoth-devel/files/patch-src-chat_events.hpp ./wesnoth-devel/files/patch-src-chat_events.hpp
--- /usr/ports/games/wesnoth-devel/files/patch-src-chat_events.hpp	1970-01-01 01:00:00.000000000 +0100
+++ ./wesnoth-devel/files/patch-src-chat_events.hpp	2014-01-03 14:08:30.000000000 +0100
@@ -0,0 +1,10 @@
+--- src/chat_events.hpp.orig	2013-11-16 09:48:33.000000000 +0100
++++ src/chat_events.hpp	2014-01-03 14:07:40.000000000 +0100
+@@ -20,6 +20,7 @@
+ 
+ #include <ctime>
+ #include <string>
++#include <time.h>
+ 
+ namespace events {
+ 
diff -ruN /usr/ports/games/wesnoth-devel/files/patch-src-gettext.cpp ./wesnoth-devel/files/patch-src-gettext.cpp
--- /usr/ports/games/wesnoth-devel/files/patch-src-gettext.cpp	1970-01-01 01:00:00.000000000 +0100
+++ ./wesnoth-devel/files/patch-src-gettext.cpp	2014-01-03 14:12:02.000000000 +0100
@@ -0,0 +1,15 @@
+--- src/gettext.cpp.orig	2013-11-16 09:48:33.000000000 +0100
++++ src/gettext.cpp	2014-01-03 14:11:18.000000000 +0100
+@@ -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 -ruN /usr/ports/games/wesnoth-devel/files/patch-src-gettext.hpp ./wesnoth-devel/files/patch-src-gettext.hpp
--- /usr/ports/games/wesnoth-devel/files/patch-src-gettext.hpp	1970-01-01 01:00:00.000000000 +0100
+++ ./wesnoth-devel/files/patch-src-gettext.hpp	2014-01-03 14:15:43.000000000 +0100
@@ -0,0 +1,25 @@
+--- src/gettext.hpp.orig	2013-11-16 09:48:33.000000000 +0100
++++ src/gettext.hpp	2014-01-03 14:15:01.000000000 +0100
+@@ -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
+ 
+ #ifdef setlocale
+ // Someone in libintl world decided it was a good idea to define a "setlocale" macro.
diff -ruN /usr/ports/games/wesnoth-devel/files/patch-src-server-user_handler.cpp ./wesnoth-devel/files/patch-src-server-user_handler.cpp
--- /usr/ports/games/wesnoth-devel/files/patch-src-server-user_handler.cpp	1970-01-01 01:00:00.000000000 +0100
+++ ./wesnoth-devel/files/patch-src-server-user_handler.cpp	2014-01-03 14:20:55.000000000 +0100
@@ -0,0 +1,10 @@
+--- src/server/user_handler.cpp.orig	2013-11-16 09:48:33.000000000 +0100
++++ src/server/user_handler.cpp	2014-01-03 14:20:18.000000000 +0100
+@@ -17,6 +17,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 -ruN /usr/ports/games/wesnoth-devel/pkg-descr ./wesnoth-devel/pkg-descr
--- /usr/ports/games/wesnoth-devel/pkg-descr	1970-01-01 01:00:00.000000000 +0100
+++ ./wesnoth-devel/pkg-descr	2014-01-02 16:24:10.000000000 +0100
@@ -0,0 +1,7 @@
+Battle for Wesnoth is a fantasy turn-based strategy game. Battle for control of
+villages, using variety of units which have advantages and disadvantages in
+different types of terrains and against different types of attacks. Units gain
+experience and advance levels, and are carried over from one scenario to the
+next campaign.
+
+WWW: http://www.wesnoth.org/
diff -ruN /usr/ports/games/wesnoth-devel/pkg-plist ./wesnoth-devel/pkg-plist
--- /usr/ports/games/wesnoth-devel/pkg-plist	1970-01-01 01:00:00.000000000 +0100
+++ ./wesnoth-devel/pkg-plist	2014-01-02 16:24:10.000000000 +0100
@@ -0,0 +1,1607 @@
+%%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
+%%TESTS%%bin/wesnoth_test
+%%SERVER%%bin/wesnothd
+%%PYTHON%%%%TOOLS%%bin/wmlindent
+%%PYTHON%%%%TOOLS%%bin/wmllint
+%%PYTHON%%%%TOOLS%%bin/wmlscope
+%%PYTHON%%%%PYTHON_SITELIBDIR%%/wesnoth/__init__.py
+%%PYTHON%%%%PYTHON_SITELIBDIR%%/wesnoth/__init__.pyc
+%%PYTHON%%%%PYTHON_SITELIBDIR%%/wesnoth/__init__.pyo
+%%PYTHON%%%%PYTHON_SITELIBDIR%%/wesnoth/campaignserver_client.py
+%%PYTHON%%%%PYTHON_SITELIBDIR%%/wesnoth/campaignserver_client.pyc
+%%PYTHON%%%%PYTHON_SITELIBDIR%%/wesnoth/campaignserver_client.pyo
+%%PYTHON%%%%PYTHON_SITELIBDIR%%/wesnoth/libsvn.py
+%%PYTHON%%%%PYTHON_SITELIBDIR%%/wesnoth/libsvn.pyc
+%%PYTHON%%%%PYTHON_SITELIBDIR%%/wesnoth/libsvn.pyo
+%%PYTHON%%%%PYTHON_SITELIBDIR%%/wesnoth/wescamp.py
+%%PYTHON%%%%PYTHON_SITELIBDIR%%/wesnoth/wescamp.pyc
+%%PYTHON%%%%PYTHON_SITELIBDIR%%/wesnoth/wescamp.pyo
+%%PYTHON%%%%PYTHON_SITELIBDIR%%/wesnoth/wmldata.py
+%%PYTHON%%%%PYTHON_SITELIBDIR%%/wesnoth/wmldata.pyc
+%%PYTHON%%%%PYTHON_SITELIBDIR%%/wesnoth/wmldata.pyo
+%%PYTHON%%%%PYTHON_SITELIBDIR%%/wesnoth/wmliterator.py
+%%PYTHON%%%%PYTHON_SITELIBDIR%%/wesnoth/wmliterator.pyc
+%%PYTHON%%%%PYTHON_SITELIBDIR%%/wesnoth/wmliterator.pyo
+%%PYTHON%%%%PYTHON_SITELIBDIR%%/wesnoth/wmlparser.py
+%%PYTHON%%%%PYTHON_SITELIBDIR%%/wesnoth/wmlparser.pyc
+%%PYTHON%%%%PYTHON_SITELIBDIR%%/wesnoth/wmlparser.pyo
+%%PYTHON%%%%PYTHON_SITELIBDIR%%/wesnoth/wmltools.py
+%%PYTHON%%%%PYTHON_SITELIBDIR%%/wesnoth/wmltools.pyc
+%%PYTHON%%%%PYTHON_SITELIBDIR%%/wesnoth/wmltools.pyo
+share/applications/wesnoth.desktop
+share/applications/wesnoth_editor.desktop
+%%NLS%%share/locale/af/LC_MESSAGES/wesnoth-anl.mo
+%%NLS%%share/locale/af/LC_MESSAGES/wesnoth-aoi.mo
+%%NLS%%share/locale/af/LC_MESSAGES/wesnoth-did.mo
+%%NLS%%share/locale/af/LC_MESSAGES/wesnoth-dm.mo
+%%NLS%%share/locale/af/LC_MESSAGES/wesnoth-dw.mo
+%%NLS%%share/locale/af/LC_MESSAGES/wesnoth-editor.mo
+%%NLS%%share/locale/af/LC_MESSAGES/wesnoth-ei.mo
+%%NLS%%share/locale/af/LC_MESSAGES/wesnoth-help.mo
+%%NLS%%share/locale/af/LC_MESSAGES/wesnoth-httt.mo
+%%NLS%%share/locale/af/LC_MESSAGES/wesnoth-l.mo
+%%NLS%%share/locale/af/LC_MESSAGES/wesnoth-lib.mo
+%%NLS%%share/locale/af/LC_MESSAGES/wesnoth-low.mo
+%%NLS%%share/locale/af/LC_MESSAGES/wesnoth-multiplayer.mo
+%%NLS%%share/locale/af/LC_MESSAGES/wesnoth-nr.mo
+%%NLS%%share/locale/af/LC_MESSAGES/wesnoth-sof.mo
+%%NLS%%share/locale/af/LC_MESSAGES/wesnoth-sotbe.mo
+%%NLS%%share/locale/af/LC_MESSAGES/wesnoth-tb.mo
+%%NLS%%share/locale/af/LC_MESSAGES/wesnoth-test.mo
+%%NLS%%share/locale/af/LC_MESSAGES/wesnoth-thot.mo
+%%NLS%%share/locale/af/LC_MESSAGES/wesnoth-trow.mo
+%%NLS%%share/locale/af/LC_MESSAGES/wesnoth-tsg.mo
+%%NLS%%share/locale/af/LC_MESSAGES/wesnoth-tutorial.mo
+%%NLS%%share/locale/af/LC_MESSAGES/wesnoth-units.mo
+%%NLS%%share/locale/af/LC_MESSAGES/wesnoth-utbs.mo
+%%NLS%%share/locale/af/LC_MESSAGES/wesnoth.mo
+%%NLS%%share/locale/ang/LC_MESSAGES/wesnoth-anl.mo
+%%NLS%%share/locale/ang/LC_MESSAGES/wesnoth-aoi.mo
+%%NLS%%share/locale/ang/LC_MESSAGES/wesnoth-did.mo
+%%NLS%%share/locale/ang/LC_MESSAGES/wesnoth-dm.mo
+%%NLS%%share/locale/ang/LC_MESSAGES/wesnoth-dw.mo
+%%NLS%%share/locale/ang/LC_MESSAGES/wesnoth-editor.mo
+%%NLS%%share/locale/ang/LC_MESSAGES/wesnoth-ei.mo
+%%NLS%%share/locale/ang/LC_MESSAGES/wesnoth-help.mo
+%%NLS%%share/locale/ang/LC_MESSAGES/wesnoth-httt.mo
+%%NLS%%share/locale/ang/LC_MESSAGES/wesnoth-l.mo
+%%NLS%%share/locale/ang/LC_MESSAGES/wesnoth-lib.mo
+%%NLS%%share/locale/ang/LC_MESSAGES/wesnoth-low.mo
+%%NLS%%share/locale/ang/LC_MESSAGES/wesnoth-multiplayer.mo
+%%NLS%%share/locale/ang/LC_MESSAGES/wesnoth-nr.mo
+%%NLS%%share/locale/ang/LC_MESSAGES/wesnoth-sof.mo
+%%NLS%%share/locale/ang/LC_MESSAGES/wesnoth-sotbe.mo
+%%NLS%%share/locale/ang/LC_MESSAGES/wesnoth-tb.mo
+%%NLS%%share/locale/ang/LC_MESSAGES/wesnoth-test.mo
+%%NLS%%share/locale/ang/LC_MESSAGES/wesnoth-thot.mo
+%%NLS%%share/locale/ang/LC_MESSAGES/wesnoth-trow.mo
+%%NLS%%share/locale/ang/LC_MESSAGES/wesnoth-tsg.mo
+%%NLS%%share/locale/ang/LC_MESSAGES/wesnoth-tutorial.mo
+%%NLS%%share/locale/ang/LC_MESSAGES/wesnoth-units.mo
+%%NLS%%share/locale/ang/LC_MESSAGES/wesnoth-utbs.mo
+%%NLS%%share/locale/ang/LC_MESSAGES/wesnoth.mo
+%%NLS%%share/locale/ang@latin/LC_MESSAGES/wesnoth-anl.mo
+%%NLS%%share/locale/ang@latin/LC_MESSAGES/wesnoth-aoi.mo
+%%NLS%%share/locale/ang@latin/LC_MESSAGES/wesnoth-did.mo
+%%NLS%%share/locale/ang@latin/LC_MESSAGES/wesnoth-dm.mo
+%%NLS%%share/locale/ang@latin/LC_MESSAGES/wesnoth-dw.mo
+%%NLS%%share/locale/ang@latin/LC_MESSAGES/wesnoth-editor.mo
+%%NLS%%share/locale/ang@latin/LC_MESSAGES/wesnoth-ei.mo
+%%NLS%%share/locale/ang@latin/LC_MESSAGES/wesnoth-help.mo
+%%NLS%%share/locale/ang@latin/LC_MESSAGES/wesnoth-httt.mo
+%%NLS%%share/locale/ang@latin/LC_MESSAGES/wesnoth-l.mo
+%%NLS%%share/locale/ang@latin/LC_MESSAGES/wesnoth-lib.mo
+%%NLS%%share/locale/ang@latin/LC_MESSAGES/wesnoth-low.mo
+%%NLS%%share/locale/ang@latin/LC_MESSAGES/wesnoth-multiplayer.mo
+%%NLS%%share/locale/ang@latin/LC_MESSAGES/wesnoth-nr.mo
+%%NLS%%share/locale/ang@latin/LC_MESSAGES/wesnoth-sof.mo
+%%NLS%%share/locale/ang@latin/LC_MESSAGES/wesnoth-sotbe.mo
+%%NLS%%share/locale/ang@latin/LC_MESSAGES/wesnoth-tb.mo
+%%NLS%%share/locale/ang@latin/LC_MESSAGES/wesnoth-test.mo
+%%NLS%%share/locale/ang@latin/LC_MESSAGES/wesnoth-thot.mo
+%%NLS%%share/locale/ang@latin/LC_MESSAGES/wesnoth-trow.mo
+%%NLS%%share/locale/ang@latin/LC_MESSAGES/wesnoth-tsg.mo
+%%NLS%%share/locale/ang@latin/LC_MESSAGES/wesnoth-tutorial.mo
+%%NLS%%share/locale/ang@latin/LC_MESSAGES/wesnoth-units.mo
+%%NLS%%share/locale/ang@latin/LC_MESSAGES/wesnoth-utbs.mo
+%%NLS%%share/locale/ang@latin/LC_MESSAGES/wesnoth.mo
+%%NLS%%share/locale/ar/LC_MESSAGES/wesnoth-anl.mo
+%%NLS%%share/locale/ar/LC_MESSAGES/wesnoth-aoi.mo
+%%NLS%%share/locale/ar/LC_MESSAGES/wesnoth-did.mo
+%%NLS%%share/locale/ar/LC_MESSAGES/wesnoth-dm.mo
+%%NLS%%share/locale/ar/LC_MESSAGES/wesnoth-dw.mo
+%%NLS%%share/locale/ar/LC_MESSAGES/wesnoth-editor.mo
+%%NLS%%share/locale/ar/LC_MESSAGES/wesnoth-ei.mo
+%%NLS%%share/locale/ar/LC_MESSAGES/wesnoth-help.mo
+%%NLS%%share/locale/ar/LC_MESSAGES/wesnoth-httt.mo
+%%NLS%%share/locale/ar/LC_MESSAGES/wesnoth-l.mo
+%%NLS%%share/locale/ar/LC_MESSAGES/wesnoth-lib.mo
+%%NLS%%share/locale/ar/LC_MESSAGES/wesnoth-low.mo
+%%NLS%%share/locale/ar/LC_MESSAGES/wesnoth-multiplayer.mo
+%%NLS%%share/locale/ar/LC_MESSAGES/wesnoth-nr.mo
+%%NLS%%share/locale/ar/LC_MESSAGES/wesnoth-sof.mo
+%%NLS%%share/locale/ar/LC_MESSAGES/wesnoth-sotbe.mo
+%%NLS%%share/locale/ar/LC_MESSAGES/wesnoth-tb.mo
+%%NLS%%share/locale/ar/LC_MESSAGES/wesnoth-test.mo
+%%NLS%%share/locale/ar/LC_MESSAGES/wesnoth-thot.mo
+%%NLS%%share/locale/ar/LC_MESSAGES/wesnoth-trow.mo
+%%NLS%%share/locale/ar/LC_MESSAGES/wesnoth-tsg.mo
+%%NLS%%share/locale/ar/LC_MESSAGES/wesnoth-tutorial.mo
+%%NLS%%share/locale/ar/LC_MESSAGES/wesnoth-units.mo
+%%NLS%%share/locale/ar/LC_MESSAGES/wesnoth-utbs.mo
+%%NLS%%share/locale/ar/LC_MESSAGES/wesnoth.mo
+%%NLS%%share/locale/bg/LC_MESSAGES/wesnoth-anl.mo
+%%NLS%%share/locale/bg/LC_MESSAGES/wesnoth-aoi.mo
+%%NLS%%share/locale/bg/LC_MESSAGES/wesnoth-did.mo
+%%NLS%%share/locale/bg/LC_MESSAGES/wesnoth-dm.mo
+%%NLS%%share/locale/bg/LC_MESSAGES/wesnoth-dw.mo
+%%NLS%%share/locale/bg/LC_MESSAGES/wesnoth-editor.mo
+%%NLS%%share/locale/bg/LC_MESSAGES/wesnoth-ei.mo
+%%NLS%%share/locale/bg/LC_MESSAGES/wesnoth-help.mo
+%%NLS%%share/locale/bg/LC_MESSAGES/wesnoth-httt.mo
+%%NLS%%share/locale/bg/LC_MESSAGES/wesnoth-l.mo
+%%NLS%%share/locale/bg/LC_MESSAGES/wesnoth-lib.mo
+%%NLS%%share/locale/bg/LC_MESSAGES/wesnoth-low.mo
+%%NLS%%share/locale/bg/LC_MESSAGES/wesnoth-multiplayer.mo
+%%NLS%%share/locale/bg/LC_MESSAGES/wesnoth-nr.mo
+%%NLS%%share/locale/bg/LC_MESSAGES/wesnoth-sof.mo
+%%NLS%%share/locale/bg/LC_MESSAGES/wesnoth-sotbe.mo
+%%NLS%%share/locale/bg/LC_MESSAGES/wesnoth-tb.mo
+%%NLS%%share/locale/bg/LC_MESSAGES/wesnoth-test.mo
+%%NLS%%share/locale/bg/LC_MESSAGES/wesnoth-thot.mo
+%%NLS%%share/locale/bg/LC_MESSAGES/wesnoth-trow.mo
+%%NLS%%share/locale/bg/LC_MESSAGES/wesnoth-tsg.mo
+%%NLS%%share/locale/bg/LC_MESSAGES/wesnoth-tutorial.mo
+%%NLS%%share/locale/bg/LC_MESSAGES/wesnoth-units.mo
+%%NLS%%share/locale/bg/LC_MESSAGES/wesnoth-utbs.mo
+%%NLS%%share/locale/bg/LC_MESSAGES/wesnoth.mo
+%%NLS%%share/locale/ca/LC_MESSAGES/wesnoth-anl.mo
+%%NLS%%share/locale/ca/LC_MESSAGES/wesnoth-aoi.mo
+%%NLS%%share/locale/ca/LC_MESSAGES/wesnoth-did.mo
+%%NLS%%share/locale/ca/LC_MESSAGES/wesnoth-dm.mo
+%%NLS%%share/locale/ca/LC_MESSAGES/wesnoth-dw.mo
+%%NLS%%share/locale/ca/LC_MESSAGES/wesnoth-editor.mo
+%%NLS%%share/locale/ca/LC_MESSAGES/wesnoth-ei.mo
+%%NLS%%share/locale/ca/LC_MESSAGES/wesnoth-help.mo
+%%NLS%%share/locale/ca/LC_MESSAGES/wesnoth-httt.mo
+%%NLS%%share/locale/ca/LC_MESSAGES/wesnoth-l.mo
+%%NLS%%share/locale/ca/LC_MESSAGES/wesnoth-lib.mo
+%%NLS%%share/locale/ca/LC_MESSAGES/wesnoth-low.mo
+%%NLS%%share/locale/ca/LC_MESSAGES/wesnoth-multiplayer.mo
+%%NLS%%share/locale/ca/LC_MESSAGES/wesnoth-nr.mo
+%%NLS%%share/locale/ca/LC_MESSAGES/wesnoth-sof.mo
+%%NLS%%share/locale/ca/LC_MESSAGES/wesnoth-sotbe.mo
+%%NLS%%share/locale/ca/LC_MESSAGES/wesnoth-tb.mo
+%%NLS%%share/locale/ca/LC_MESSAGES/wesnoth-test.mo
+%%NLS%%share/locale/ca/LC_MESSAGES/wesnoth-thot.mo
+%%NLS%%share/locale/ca/LC_MESSAGES/wesnoth-trow.mo
+%%NLS%%share/locale/ca/LC_MESSAGES/wesnoth-tsg.mo
+%%NLS%%share/locale/ca/LC_MESSAGES/wesnoth-tutorial.mo
+%%NLS%%share/locale/ca/LC_MESSAGES/wesnoth-units.mo
+%%NLS%%share/locale/ca/LC_MESSAGES/wesnoth-utbs.mo
+%%NLS%%share/locale/ca/LC_MESSAGES/wesnoth.mo
+%%NLS%%share/locale/ca_ES@valencia/LC_MESSAGES/wesnoth-anl.mo
+%%NLS%%share/locale/ca_ES@valencia/LC_MESSAGES/wesnoth-aoi.mo
+%%NLS%%share/locale/ca_ES@valencia/LC_MESSAGES/wesnoth-did.mo
+%%NLS%%share/locale/ca_ES@valencia/LC_MESSAGES/wesnoth-dm.mo
+%%NLS%%share/locale/ca_ES@valencia/LC_MESSAGES/wesnoth-dw.mo
+%%NLS%%share/locale/ca_ES@valencia/LC_MESSAGES/wesnoth-editor.mo
+%%NLS%%share/locale/ca_ES@valencia/LC_MESSAGES/wesnoth-ei.mo
+%%NLS%%share/locale/ca_ES@valencia/LC_MESSAGES/wesnoth-help.mo
+%%NLS%%share/locale/ca_ES@valencia/LC_MESSAGES/wesnoth-httt.mo
+%%NLS%%share/locale/ca_ES@valencia/LC_MESSAGES/wesnoth-l.mo
+%%NLS%%share/locale/ca_ES@valencia/LC_MESSAGES/wesnoth-lib.mo
+%%NLS%%share/locale/ca_ES@valencia/LC_MESSAGES/wesnoth-low.mo
+%%NLS%%share/locale/ca_ES@valencia/LC_MESSAGES/wesnoth-multiplayer.mo
+%%NLS%%share/locale/ca_ES@valencia/LC_MESSAGES/wesnoth-nr.mo
+%%NLS%%share/locale/ca_ES@valencia/LC_MESSAGES/wesnoth-sof.mo
+%%NLS%%share/locale/ca_ES@valencia/LC_MESSAGES/wesnoth-sotbe.mo
+%%NLS%%share/locale/ca_ES@valencia/LC_MESSAGES/wesnoth-tb.mo
+%%NLS%%share/locale/ca_ES@valencia/LC_MESSAGES/wesnoth-test.mo
+%%NLS%%share/locale/ca_ES@valencia/LC_MESSAGES/wesnoth-thot.mo
+%%NLS%%share/locale/ca_ES@valencia/LC_MESSAGES/wesnoth-trow.mo
+%%NLS%%share/locale/ca_ES@valencia/LC_MESSAGES/wesnoth-tsg.mo
+%%NLS%%share/locale/ca_ES@valencia/LC_MESSAGES/wesnoth-tutorial.mo
+%%NLS%%share/locale/ca_ES@valencia/LC_MESSAGES/wesnoth-units.mo
+%%NLS%%share/locale/ca_ES@valencia/LC_MESSAGES/wesnoth-utbs.mo
+%%NLS%%share/locale/ca_ES@valencia/LC_MESSAGES/wesnoth.mo
+%%NLS%%share/locale/cs/LC_MESSAGES/wesnoth-anl.mo
+%%NLS%%share/locale/cs/LC_MESSAGES/wesnoth-aoi.mo
+%%NLS%%share/locale/cs/LC_MESSAGES/wesnoth-did.mo
+%%NLS%%share/locale/cs/LC_MESSAGES/wesnoth-dm.mo
+%%NLS%%share/locale/cs/LC_MESSAGES/wesnoth-dw.mo
+%%NLS%%share/locale/cs/LC_MESSAGES/wesnoth-editor.mo
+%%NLS%%share/locale/cs/LC_MESSAGES/wesnoth-ei.mo
+%%NLS%%share/locale/cs/LC_MESSAGES/wesnoth-help.mo
+%%NLS%%share/locale/cs/LC_MESSAGES/wesnoth-httt.mo
+%%NLS%%share/locale/cs/LC_MESSAGES/wesnoth-l.mo
+%%NLS%%share/locale/cs/LC_MESSAGES/wesnoth-lib.mo
+%%NLS%%share/locale/cs/LC_MESSAGES/wesnoth-low.mo
+%%NLS%%share/locale/cs/LC_MESSAGES/wesnoth-multiplayer.mo
+%%NLS%%share/locale/cs/LC_MESSAGES/wesnoth-nr.mo
+%%NLS%%share/locale/cs/LC_MESSAGES/wesnoth-sof.mo
+%%NLS%%share/locale/cs/LC_MESSAGES/wesnoth-sotbe.mo
+%%NLS%%share/locale/cs/LC_MESSAGES/wesnoth-tb.mo
+%%NLS%%share/locale/cs/LC_MESSAGES/wesnoth-test.mo
+%%NLS%%share/locale/cs/LC_MESSAGES/wesnoth-thot.mo
+%%NLS%%share/locale/cs/LC_MESSAGES/wesnoth-trow.mo
+%%NLS%%share/locale/cs/LC_MESSAGES/wesnoth-tsg.mo
+%%NLS%%share/locale/cs/LC_MESSAGES/wesnoth-tutorial.mo
+%%NLS%%share/locale/cs/LC_MESSAGES/wesnoth-units.mo
+%%NLS%%share/locale/cs/LC_MESSAGES/wesnoth-utbs.mo
+%%NLS%%share/locale/cs/LC_MESSAGES/wesnoth.mo
+%%NLS%%share/locale/da/LC_MESSAGES/wesnoth-anl.mo
+%%NLS%%share/locale/da/LC_MESSAGES/wesnoth-aoi.mo
+%%NLS%%share/locale/da/LC_MESSAGES/wesnoth-did.mo
+%%NLS%%share/locale/da/LC_MESSAGES/wesnoth-dm.mo
+%%NLS%%share/locale/da/LC_MESSAGES/wesnoth-dw.mo
+%%NLS%%share/locale/da/LC_MESSAGES/wesnoth-editor.mo
+%%NLS%%share/locale/da/LC_MESSAGES/wesnoth-ei.mo
+%%NLS%%share/locale/da/LC_MESSAGES/wesnoth-help.mo
+%%NLS%%share/locale/da/LC_MESSAGES/wesnoth-httt.mo
+%%NLS%%share/locale/da/LC_MESSAGES/wesnoth-l.mo
+%%NLS%%share/locale/da/LC_MESSAGES/wesnoth-lib.mo
+%%NLS%%share/locale/da/LC_MESSAGES/wesnoth-low.mo
+%%NLS%%share/locale/da/LC_MESSAGES/wesnoth-multiplayer.mo
+%%NLS%%share/locale/da/LC_MESSAGES/wesnoth-nr.mo
+%%NLS%%share/locale/da/LC_MESSAGES/wesnoth-sof.mo
+%%NLS%%share/locale/da/LC_MESSAGES/wesnoth-sotbe.mo
+%%NLS%%share/locale/da/LC_MESSAGES/wesnoth-tb.mo
+%%NLS%%share/locale/da/LC_MESSAGES/wesnoth-test.mo
+%%NLS%%share/locale/da/LC_MESSAGES/wesnoth-thot.mo
+%%NLS%%share/locale/da/LC_MESSAGES/wesnoth-trow.mo
+%%NLS%%share/locale/da/LC_MESSAGES/wesnoth-tsg.mo
+%%NLS%%share/locale/da/LC_MESSAGES/wesnoth-tutorial.mo
+%%NLS%%share/locale/da/LC_MESSAGES/wesnoth-units.mo
+%%NLS%%share/locale/da/LC_MESSAGES/wesnoth-utbs.mo
+%%NLS%%share/locale/da/LC_MESSAGES/wesnoth.mo
+%%NLS%%share/locale/de/LC_MESSAGES/wesnoth-anl.mo
+%%NLS%%share/locale/de/LC_MESSAGES/wesnoth-aoi.mo
+%%NLS%%share/locale/de/LC_MESSAGES/wesnoth-did.mo
+%%NLS%%share/locale/de/LC_MESSAGES/wesnoth-dm.mo
+%%NLS%%share/locale/de/LC_MESSAGES/wesnoth-dw.mo
+%%NLS%%share/locale/de/LC_MESSAGES/wesnoth-editor.mo
+%%NLS%%share/locale/de/LC_MESSAGES/wesnoth-ei.mo
+%%NLS%%share/locale/de/LC_MESSAGES/wesnoth-help.mo
+%%NLS%%share/locale/de/LC_MESSAGES/wesnoth-httt.mo
+%%NLS%%share/locale/de/LC_MESSAGES/wesnoth-l.mo
+%%NLS%%share/locale/de/LC_MESSAGES/wesnoth-lib.mo
+%%NLS%%share/locale/de/LC_MESSAGES/wesnoth-low.mo
+%%NLS%%share/locale/de/LC_MESSAGES/wesnoth-multiplayer.mo
+%%NLS%%share/locale/de/LC_MESSAGES/wesnoth-nr.mo
+%%NLS%%share/locale/de/LC_MESSAGES/wesnoth-sof.mo
+%%NLS%%share/locale/de/LC_MESSAGES/wesnoth-sotbe.mo
+%%NLS%%share/locale/de/LC_MESSAGES/wesnoth-tb.mo
+%%NLS%%share/locale/de/LC_MESSAGES/wesnoth-test.mo
+%%NLS%%share/locale/de/LC_MESSAGES/wesnoth-thot.mo
+%%NLS%%share/locale/de/LC_MESSAGES/wesnoth-trow.mo
+%%NLS%%share/locale/de/LC_MESSAGES/wesnoth-tsg.mo
+%%NLS%%share/locale/de/LC_MESSAGES/wesnoth-tutorial.mo
+%%NLS%%share/locale/de/LC_MESSAGES/wesnoth-units.mo
+%%NLS%%share/locale/de/LC_MESSAGES/wesnoth-utbs.mo
+%%NLS%%share/locale/de/LC_MESSAGES/wesnoth.mo
+%%NLS%%share/locale/el/LC_MESSAGES/wesnoth-anl.mo
+%%NLS%%share/locale/el/LC_MESSAGES/wesnoth-aoi.mo
+%%NLS%%share/locale/el/LC_MESSAGES/wesnoth-did.mo
+%%NLS%%share/locale/el/LC_MESSAGES/wesnoth-dm.mo
+%%NLS%%share/locale/el/LC_MESSAGES/wesnoth-dw.mo
+%%NLS%%share/locale/el/LC_MESSAGES/wesnoth-editor.mo
+%%NLS%%share/locale/el/LC_MESSAGES/wesnoth-ei.mo
+%%NLS%%share/locale/el/LC_MESSAGES/wesnoth-help.mo
+%%NLS%%share/locale/el/LC_MESSAGES/wesnoth-httt.mo
+%%NLS%%share/locale/el/LC_MESSAGES/wesnoth-l.mo
+%%NLS%%share/locale/el/LC_MESSAGES/wesnoth-lib.mo
+%%NLS%%share/locale/el/LC_MESSAGES/wesnoth-low.mo
+%%NLS%%share/locale/el/LC_MESSAGES/wesnoth-multiplayer.mo
+%%NLS%%share/locale/el/LC_MESSAGES/wesnoth-nr.mo
+%%NLS%%share/locale/el/LC_MESSAGES/wesnoth-sof.mo
+%%NLS%%share/locale/el/LC_MESSAGES/wesnoth-sotbe.mo
+%%NLS%%share/locale/el/LC_MESSAGES/wesnoth-tb.mo
+%%NLS%%share/locale/el/LC_MESSAGES/wesnoth-test.mo
+%%NLS%%share/locale/el/LC_MESSAGES/wesnoth-thot.mo
+%%NLS%%share/locale/el/LC_MESSAGES/wesnoth-trow.mo
+%%NLS%%share/locale/el/LC_MESSAGES/wesnoth-tsg.mo
+%%NLS%%share/locale/el/LC_MESSAGES/wesnoth-tutorial.mo
+%%NLS%%share/locale/el/LC_MESSAGES/wesnoth-units.mo
+%%NLS%%share/locale/el/LC_MESSAGES/wesnoth-utbs.mo
+%%NLS%%share/locale/el/LC_MESSAGES/wesnoth.mo
+%%NLS%%share/locale/en@shaw/LC_MESSAGES/wesnoth-anl.mo
+%%NLS%%share/locale/en@shaw/LC_MESSAGES/wesnoth-aoi.mo
+%%NLS%%share/locale/en@shaw/LC_MESSAGES/wesnoth-did.mo
+%%NLS%%share/locale/en@shaw/LC_MESSAGES/wesnoth-dm.mo
+%%NLS%%share/locale/en@shaw/LC_MESSAGES/wesnoth-dw.mo
+%%NLS%%share/locale/en@shaw/LC_MESSAGES/wesnoth-editor.mo
+%%NLS%%share/locale/en@shaw/LC_MESSAGES/wesnoth-ei.mo
+%%NLS%%share/locale/en@shaw/LC_MESSAGES/wesnoth-help.mo
+%%NLS%%share/locale/en@shaw/LC_MESSAGES/wesnoth-httt.mo
+%%NLS%%share/locale/en@shaw/LC_MESSAGES/wesnoth-l.mo
+%%NLS%%share/locale/en@shaw/LC_MESSAGES/wesnoth-lib.mo
+%%NLS%%share/locale/en@shaw/LC_MESSAGES/wesnoth-low.mo
+%%NLS%%share/locale/en@shaw/LC_MESSAGES/wesnoth-multiplayer.mo
+%%NLS%%share/locale/en@shaw/LC_MESSAGES/wesnoth-nr.mo
+%%NLS%%share/locale/en@shaw/LC_MESSAGES/wesnoth-sof.mo
+%%NLS%%share/locale/en@shaw/LC_MESSAGES/wesnoth-sotbe.mo
+%%NLS%%share/locale/en@shaw/LC_MESSAGES/wesnoth-tb.mo
+%%NLS%%share/locale/en@shaw/LC_MESSAGES/wesnoth-test.mo
+%%NLS%%share/locale/en@shaw/LC_MESSAGES/wesnoth-thot.mo
+%%NLS%%share/locale/en@shaw/LC_MESSAGES/wesnoth-trow.mo
+%%NLS%%share/locale/en@shaw/LC_MESSAGES/wesnoth-tsg.mo
+%%NLS%%share/locale/en@shaw/LC_MESSAGES/wesnoth-tutorial.mo
+%%NLS%%share/locale/en@shaw/LC_MESSAGES/wesnoth-units.mo
+%%NLS%%share/locale/en@shaw/LC_MESSAGES/wesnoth-utbs.mo
+%%NLS%%share/locale/en@shaw/LC_MESSAGES/wesnoth.mo
+%%NLS%%share/locale/en_GB/LC_MESSAGES/wesnoth-anl.mo
+%%NLS%%share/locale/en_GB/LC_MESSAGES/wesnoth-aoi.mo
+%%NLS%%share/locale/en_GB/LC_MESSAGES/wesnoth-did.mo
+%%NLS%%share/locale/en_GB/LC_MESSAGES/wesnoth-dm.mo
+%%NLS%%share/locale/en_GB/LC_MESSAGES/wesnoth-dw.mo
+%%NLS%%share/locale/en_GB/LC_MESSAGES/wesnoth-editor.mo
+%%NLS%%share/locale/en_GB/LC_MESSAGES/wesnoth-ei.mo
+%%NLS%%share/locale/en_GB/LC_MESSAGES/wesnoth-help.mo
+%%NLS%%share/locale/en_GB/LC_MESSAGES/wesnoth-httt.mo
+%%NLS%%share/locale/en_GB/LC_MESSAGES/wesnoth-l.mo
+%%NLS%%share/locale/en_GB/LC_MESSAGES/wesnoth-lib.mo
+%%NLS%%share/locale/en_GB/LC_MESSAGES/wesnoth-low.mo
+%%NLS%%share/locale/en_GB/LC_MESSAGES/wesnoth-multiplayer.mo
+%%NLS%%share/locale/en_GB/LC_MESSAGES/wesnoth-nr.mo
+%%NLS%%share/locale/en_GB/LC_MESSAGES/wesnoth-sof.mo
+%%NLS%%share/locale/en_GB/LC_MESSAGES/wesnoth-sotbe.mo
+%%NLS%%share/locale/en_GB/LC_MESSAGES/wesnoth-tb.mo
+%%NLS%%share/locale/en_GB/LC_MESSAGES/wesnoth-test.mo
+%%NLS%%share/locale/en_GB/LC_MESSAGES/wesnoth-thot.mo
+%%NLS%%share/locale/en_GB/LC_MESSAGES/wesnoth-trow.mo
+%%NLS%%share/locale/en_GB/LC_MESSAGES/wesnoth-tsg.mo
+%%NLS%%share/locale/en_GB/LC_MESSAGES/wesnoth-tutorial.mo
+%%NLS%%share/locale/en_GB/LC_MESSAGES/wesnoth-units.mo
+%%NLS%%share/locale/en_GB/LC_MESSAGES/wesnoth-utbs.mo
+%%NLS%%share/locale/en_GB/LC_MESSAGES/wesnoth.mo
+%%NLS%%share/locale/eo/LC_MESSAGES/wesnoth-anl.mo
+%%NLS%%share/locale/eo/LC_MESSAGES/wesnoth-aoi.mo
+%%NLS%%share/locale/eo/LC_MESSAGES/wesnoth-did.mo
+%%NLS%%share/locale/eo/LC_MESSAGES/wesnoth-dm.mo
+%%NLS%%share/locale/eo/LC_MESSAGES/wesnoth-dw.mo
+%%NLS%%share/locale/eo/LC_MESSAGES/wesnoth-editor.mo
+%%NLS%%share/locale/eo/LC_MESSAGES/wesnoth-ei.mo
+%%NLS%%share/locale/eo/LC_MESSAGES/wesnoth-help.mo
+%%NLS%%share/locale/eo/LC_MESSAGES/wesnoth-httt.mo
+%%NLS%%share/locale/eo/LC_MESSAGES/wesnoth-l.mo
+%%NLS%%share/locale/eo/LC_MESSAGES/wesnoth-lib.mo
+%%NLS%%share/locale/eo/LC_MESSAGES/wesnoth-low.mo
+%%NLS%%share/locale/eo/LC_MESSAGES/wesnoth-multiplayer.mo
+%%NLS%%share/locale/eo/LC_MESSAGES/wesnoth-nr.mo
+%%NLS%%share/locale/eo/LC_MESSAGES/wesnoth-sof.mo
+%%NLS%%share/locale/eo/LC_MESSAGES/wesnoth-sotbe.mo
+%%NLS%%share/locale/eo/LC_MESSAGES/wesnoth-tb.mo
+%%NLS%%share/locale/eo/LC_MESSAGES/wesnoth-test.mo
+%%NLS%%share/locale/eo/LC_MESSAGES/wesnoth-thot.mo
+%%NLS%%share/locale/eo/LC_MESSAGES/wesnoth-trow.mo
+%%NLS%%share/locale/eo/LC_MESSAGES/wesnoth-tsg.mo
+%%NLS%%share/locale/eo/LC_MESSAGES/wesnoth-tutorial.mo
+%%NLS%%share/locale/eo/LC_MESSAGES/wesnoth-units.mo
+%%NLS%%share/locale/eo/LC_MESSAGES/wesnoth-utbs.mo
+%%NLS%%share/locale/eo/LC_MESSAGES/wesnoth.mo
+%%NLS%%share/locale/es/LC_MESSAGES/wesnoth-anl.mo
+%%NLS%%share/locale/es/LC_MESSAGES/wesnoth-aoi.mo
+%%NLS%%share/locale/es/LC_MESSAGES/wesnoth-did.mo
+%%NLS%%share/locale/es/LC_MESSAGES/wesnoth-dm.mo
+%%NLS%%share/locale/es/LC_MESSAGES/wesnoth-dw.mo
+%%NLS%%share/locale/es/LC_MESSAGES/wesnoth-editor.mo
+%%NLS%%share/locale/es/LC_MESSAGES/wesnoth-ei.mo
+%%NLS%%share/locale/es/LC_MESSAGES/wesnoth-help.mo
+%%NLS%%share/locale/es/LC_MESSAGES/wesnoth-httt.mo
+%%NLS%%share/locale/es/LC_MESSAGES/wesnoth-l.mo
+%%NLS%%share/locale/es/LC_MESSAGES/wesnoth-lib.mo
+%%NLS%%share/locale/es/LC_MESSAGES/wesnoth-low.mo
+%%NLS%%share/locale/es/LC_MESSAGES/wesnoth-multiplayer.mo
+%%NLS%%share/locale/es/LC_MESSAGES/wesnoth-nr.mo
+%%NLS%%share/locale/es/LC_MESSAGES/wesnoth-sof.mo
+%%NLS%%share/locale/es/LC_MESSAGES/wesnoth-sotbe.mo
+%%NLS%%share/locale/es/LC_MESSAGES/wesnoth-tb.mo
+%%NLS%%share/locale/es/LC_MESSAGES/wesnoth-test.mo
+%%NLS%%share/locale/es/LC_MESSAGES/wesnoth-thot.mo
+%%NLS%%share/locale/es/LC_MESSAGES/wesnoth-trow.mo
+%%NLS%%share/locale/es/LC_MESSAGES/wesnoth-tsg.mo
+%%NLS%%share/locale/es/LC_MESSAGES/wesnoth-tutorial.mo
+%%NLS%%share/locale/es/LC_MESSAGES/wesnoth-units.mo
+%%NLS%%share/locale/es/LC_MESSAGES/wesnoth-utbs.mo
+%%NLS%%share/locale/es/LC_MESSAGES/wesnoth.mo
+%%NLS%%share/locale/et/LC_MESSAGES/wesnoth-anl.mo
+%%NLS%%share/locale/et/LC_MESSAGES/wesnoth-aoi.mo
+%%NLS%%share/locale/et/LC_MESSAGES/wesnoth-did.mo
+%%NLS%%share/locale/et/LC_MESSAGES/wesnoth-dm.mo
+%%NLS%%share/locale/et/LC_MESSAGES/wesnoth-dw.mo
+%%NLS%%share/locale/et/LC_MESSAGES/wesnoth-editor.mo
+%%NLS%%share/locale/et/LC_MESSAGES/wesnoth-ei.mo
+%%NLS%%share/locale/et/LC_MESSAGES/wesnoth-help.mo
+%%NLS%%share/locale/et/LC_MESSAGES/wesnoth-httt.mo
+%%NLS%%share/locale/et/LC_MESSAGES/wesnoth-l.mo
+%%NLS%%share/locale/et/LC_MESSAGES/wesnoth-lib.mo
+%%NLS%%share/locale/et/LC_MESSAGES/wesnoth-low.mo
+%%NLS%%share/locale/et/LC_MESSAGES/wesnoth-multiplayer.mo
+%%NLS%%share/locale/et/LC_MESSAGES/wesnoth-nr.mo
+%%NLS%%share/locale/et/LC_MESSAGES/wesnoth-sof.mo
+%%NLS%%share/locale/et/LC_MESSAGES/wesnoth-sotbe.mo
+%%NLS%%share/locale/et/LC_MESSAGES/wesnoth-tb.mo
+%%NLS%%share/locale/et/LC_MESSAGES/wesnoth-test.mo
+%%NLS%%share/locale/et/LC_MESSAGES/wesnoth-thot.mo
+%%NLS%%share/locale/et/LC_MESSAGES/wesnoth-trow.mo
+%%NLS%%share/locale/et/LC_MESSAGES/wesnoth-tsg.mo
+%%NLS%%share/locale/et/LC_MESSAGES/wesnoth-tutorial.mo
+%%NLS%%share/locale/et/LC_MESSAGES/wesnoth-units.mo
+%%NLS%%share/locale/et/LC_MESSAGES/wesnoth-utbs.mo
+%%NLS%%share/locale/et/LC_MESSAGES/wesnoth.mo
+%%NLS%%share/locale/eu/LC_MESSAGES/wesnoth-anl.mo
+%%NLS%%share/locale/eu/LC_MESSAGES/wesnoth-aoi.mo
+%%NLS%%share/locale/eu/LC_MESSAGES/wesnoth-did.mo
+%%NLS%%share/locale/eu/LC_MESSAGES/wesnoth-dm.mo
+%%NLS%%share/locale/eu/LC_MESSAGES/wesnoth-dw.mo
+%%NLS%%share/locale/eu/LC_MESSAGES/wesnoth-editor.mo
+%%NLS%%share/locale/eu/LC_MESSAGES/wesnoth-ei.mo
+%%NLS%%share/locale/eu/LC_MESSAGES/wesnoth-help.mo
+%%NLS%%share/locale/eu/LC_MESSAGES/wesnoth-httt.mo
+%%NLS%%share/locale/eu/LC_MESSAGES/wesnoth-l.mo
+%%NLS%%share/locale/eu/LC_MESSAGES/wesnoth-lib.mo
+%%NLS%%share/locale/eu/LC_MESSAGES/wesnoth-low.mo
+%%NLS%%share/locale/eu/LC_MESSAGES/wesnoth-multiplayer.mo
+%%NLS%%share/locale/eu/LC_MESSAGES/wesnoth-nr.mo
+%%NLS%%share/locale/eu/LC_MESSAGES/wesnoth-sof.mo
+%%NLS%%share/locale/eu/LC_MESSAGES/wesnoth-sotbe.mo
+%%NLS%%share/locale/eu/LC_MESSAGES/wesnoth-tb.mo
+%%NLS%%share/locale/eu/LC_MESSAGES/wesnoth-test.mo
+%%NLS%%share/locale/eu/LC_MESSAGES/wesnoth-thot.mo
+%%NLS%%share/locale/eu/LC_MESSAGES/wesnoth-trow.mo
+%%NLS%%share/locale/eu/LC_MESSAGES/wesnoth-tsg.mo
+%%NLS%%share/locale/eu/LC_MESSAGES/wesnoth-tutorial.mo
+%%NLS%%share/locale/eu/LC_MESSAGES/wesnoth-units.mo
+%%NLS%%share/locale/eu/LC_MESSAGES/wesnoth-utbs.mo
+%%NLS%%share/locale/eu/LC_MESSAGES/wesnoth.mo
+%%NLS%%share/locale/fi/LC_MESSAGES/wesnoth-anl.mo
+%%NLS%%share/locale/fi/LC_MESSAGES/wesnoth-aoi.mo
+%%NLS%%share/locale/fi/LC_MESSAGES/wesnoth-did.mo
+%%NLS%%share/locale/fi/LC_MESSAGES/wesnoth-dm.mo
+%%NLS%%share/locale/fi/LC_MESSAGES/wesnoth-dw.mo
+%%NLS%%share/locale/fi/LC_MESSAGES/wesnoth-editor.mo
+%%NLS%%share/locale/fi/LC_MESSAGES/wesnoth-ei.mo
+%%NLS%%share/locale/fi/LC_MESSAGES/wesnoth-help.mo
+%%NLS%%share/locale/fi/LC_MESSAGES/wesnoth-httt.mo
+%%NLS%%share/locale/fi/LC_MESSAGES/wesnoth-l.mo
+%%NLS%%share/locale/fi/LC_MESSAGES/wesnoth-lib.mo
+%%NLS%%share/locale/fi/LC_MESSAGES/wesnoth-low.mo
+%%NLS%%share/locale/fi/LC_MESSAGES/wesnoth-multiplayer.mo
+%%NLS%%share/locale/fi/LC_MESSAGES/wesnoth-nr.mo
+%%NLS%%share/locale/fi/LC_MESSAGES/wesnoth-sof.mo
+%%NLS%%share/locale/fi/LC_MESSAGES/wesnoth-sotbe.mo
+%%NLS%%share/locale/fi/LC_MESSAGES/wesnoth-tb.mo
+%%NLS%%share/locale/fi/LC_MESSAGES/wesnoth-test.mo
+%%NLS%%share/locale/fi/LC_MESSAGES/wesnoth-thot.mo
+%%NLS%%share/locale/fi/LC_MESSAGES/wesnoth-trow.mo
+%%NLS%%share/locale/fi/LC_MESSAGES/wesnoth-tsg.mo
+%%NLS%%share/locale/fi/LC_MESSAGES/wesnoth-tutorial.mo
+%%NLS%%share/locale/fi/LC_MESSAGES/wesnoth-units.mo
+%%NLS%%share/locale/fi/LC_MESSAGES/wesnoth-utbs.mo
+%%NLS%%share/locale/fi/LC_MESSAGES/wesnoth.mo
+%%NLS%%share/locale/fr/LC_MESSAGES/wesnoth-anl.mo
+%%NLS%%share/locale/fr/LC_MESSAGES/wesnoth-aoi.mo
+%%NLS%%share/locale/fr/LC_MESSAGES/wesnoth-did.mo
+%%NLS%%share/locale/fr/LC_MESSAGES/wesnoth-dm.mo
+%%NLS%%share/locale/fr/LC_MESSAGES/wesnoth-dw.mo
+%%NLS%%share/locale/fr/LC_MESSAGES/wesnoth-editor.mo
+%%NLS%%share/locale/fr/LC_MESSAGES/wesnoth-ei.mo
+%%NLS%%share/locale/fr/LC_MESSAGES/wesnoth-help.mo
+%%NLS%%share/locale/fr/LC_MESSAGES/wesnoth-httt.mo
+%%NLS%%share/locale/fr/LC_MESSAGES/wesnoth-l.mo
+%%NLS%%share/locale/fr/LC_MESSAGES/wesnoth-lib.mo
+%%NLS%%share/locale/fr/LC_MESSAGES/wesnoth-low.mo
+%%NLS%%share/locale/fr/LC_MESSAGES/wesnoth-multiplayer.mo
+%%NLS%%share/locale/fr/LC_MESSAGES/wesnoth-nr.mo
+%%NLS%%share/locale/fr/LC_MESSAGES/wesnoth-sof.mo
+%%NLS%%share/locale/fr/LC_MESSAGES/wesnoth-sotbe.mo
+%%NLS%%share/locale/fr/LC_MESSAGES/wesnoth-tb.mo
+%%NLS%%share/locale/fr/LC_MESSAGES/wesnoth-test.mo
+%%NLS%%share/locale/fr/LC_MESSAGES/wesnoth-thot.mo
+%%NLS%%share/locale/fr/LC_MESSAGES/wesnoth-trow.mo
+%%NLS%%share/locale/fr/LC_MESSAGES/wesnoth-tsg.mo
+%%NLS%%share/locale/fr/LC_MESSAGES/wesnoth-tutorial.mo
+%%NLS%%share/locale/fr/LC_MESSAGES/wesnoth-units.mo
+%%NLS%%share/locale/fr/LC_MESSAGES/wesnoth-utbs.mo
+%%NLS%%share/locale/fr/LC_MESSAGES/wesnoth.mo
+%%NLS%%share/locale/fur_IT/LC_MESSAGES/wesnoth-anl.mo
+%%NLS%%share/locale/fur_IT/LC_MESSAGES/wesnoth-aoi.mo
+%%NLS%%share/locale/fur_IT/LC_MESSAGES/wesnoth-did.mo
+%%NLS%%share/locale/fur_IT/LC_MESSAGES/wesnoth-dm.mo
+%%NLS%%share/locale/fur_IT/LC_MESSAGES/wesnoth-dw.mo
+%%NLS%%share/locale/fur_IT/LC_MESSAGES/wesnoth-editor.mo
+%%NLS%%share/locale/fur_IT/LC_MESSAGES/wesnoth-ei.mo
+%%NLS%%share/locale/fur_IT/LC_MESSAGES/wesnoth-help.mo
+%%NLS%%share/locale/fur_IT/LC_MESSAGES/wesnoth-httt.mo
+%%NLS%%share/locale/fur_IT/LC_MESSAGES/wesnoth-l.mo
+%%NLS%%share/locale/fur_IT/LC_MESSAGES/wesnoth-lib.mo
+%%NLS%%share/locale/fur_IT/LC_MESSAGES/wesnoth-low.mo
+%%NLS%%share/locale/fur_IT/LC_MESSAGES/wesnoth-multiplayer.mo
+%%NLS%%share/locale/fur_IT/LC_MESSAGES/wesnoth-nr.mo
+%%NLS%%share/locale/fur_IT/LC_MESSAGES/wesnoth-sof.mo
+%%NLS%%share/locale/fur_IT/LC_MESSAGES/wesnoth-sotbe.mo
+%%NLS%%share/locale/fur_IT/LC_MESSAGES/wesnoth-tb.mo
+%%NLS%%share/locale/fur_IT/LC_MESSAGES/wesnoth-test.mo
+%%NLS%%share/locale/fur_IT/LC_MESSAGES/wesnoth-thot.mo
+%%NLS%%share/locale/fur_IT/LC_MESSAGES/wesnoth-trow.mo
+%%NLS%%share/locale/fur_IT/LC_MESSAGES/wesnoth-tsg.mo
+%%NLS%%share/locale/fur_IT/LC_MESSAGES/wesnoth-tutorial.mo
+%%NLS%%share/locale/fur_IT/LC_MESSAGES/wesnoth-units.mo
+%%NLS%%share/locale/fur_IT/LC_MESSAGES/wesnoth-utbs.mo
+%%NLS%%share/locale/fur_IT/LC_MESSAGES/wesnoth.mo
+%%NLS%%share/locale/ga/LC_MESSAGES/wesnoth-anl.mo
+%%NLS%%share/locale/ga/LC_MESSAGES/wesnoth-aoi.mo
+%%NLS%%share/locale/ga/LC_MESSAGES/wesnoth-did.mo
+%%NLS%%share/locale/ga/LC_MESSAGES/wesnoth-dm.mo
+%%NLS%%share/locale/ga/LC_MESSAGES/wesnoth-dw.mo
+%%NLS%%share/locale/ga/LC_MESSAGES/wesnoth-editor.mo
+%%NLS%%share/locale/ga/LC_MESSAGES/wesnoth-ei.mo
+%%NLS%%share/locale/ga/LC_MESSAGES/wesnoth-help.mo
+%%NLS%%share/locale/ga/LC_MESSAGES/wesnoth-httt.mo
+%%NLS%%share/locale/ga/LC_MESSAGES/wesnoth-l.mo
+%%NLS%%share/locale/ga/LC_MESSAGES/wesnoth-lib.mo
+%%NLS%%share/locale/ga/LC_MESSAGES/wesnoth-low.mo
+%%NLS%%share/locale/ga/LC_MESSAGES/wesnoth-multiplayer.mo
+%%NLS%%share/locale/ga/LC_MESSAGES/wesnoth-nr.mo
+%%NLS%%share/locale/ga/LC_MESSAGES/wesnoth-sof.mo
+%%NLS%%share/locale/ga/LC_MESSAGES/wesnoth-sotbe.mo
+%%NLS%%share/locale/ga/LC_MESSAGES/wesnoth-tb.mo
+%%NLS%%share/locale/ga/LC_MESSAGES/wesnoth-test.mo
+%%NLS%%share/locale/ga/LC_MESSAGES/wesnoth-thot.mo
+%%NLS%%share/locale/ga/LC_MESSAGES/wesnoth-trow.mo
+%%NLS%%share/locale/ga/LC_MESSAGES/wesnoth-tsg.mo
+%%NLS%%share/locale/ga/LC_MESSAGES/wesnoth-tutorial.mo
+%%NLS%%share/locale/ga/LC_MESSAGES/wesnoth-units.mo
+%%NLS%%share/locale/ga/LC_MESSAGES/wesnoth-utbs.mo
+%%NLS%%share/locale/ga/LC_MESSAGES/wesnoth.mo
+%%NLS%%share/locale/gd/LC_MESSAGES/wesnoth-anl.mo
+%%NLS%%share/locale/gd/LC_MESSAGES/wesnoth-aoi.mo
+%%NLS%%share/locale/gd/LC_MESSAGES/wesnoth-did.mo
+%%NLS%%share/locale/gd/LC_MESSAGES/wesnoth-dm.mo
+%%NLS%%share/locale/gd/LC_MESSAGES/wesnoth-dw.mo
+%%NLS%%share/locale/gd/LC_MESSAGES/wesnoth-editor.mo
+%%NLS%%share/locale/gd/LC_MESSAGES/wesnoth-ei.mo
+%%NLS%%share/locale/gd/LC_MESSAGES/wesnoth-help.mo
+%%NLS%%share/locale/gd/LC_MESSAGES/wesnoth-httt.mo
+%%NLS%%share/locale/gd/LC_MESSAGES/wesnoth-l.mo
+%%NLS%%share/locale/gd/LC_MESSAGES/wesnoth-lib.mo
+%%NLS%%share/locale/gd/LC_MESSAGES/wesnoth-low.mo
+%%NLS%%share/locale/gd/LC_MESSAGES/wesnoth-multiplayer.mo
+%%NLS%%share/locale/gd/LC_MESSAGES/wesnoth-nr.mo
+%%NLS%%share/locale/gd/LC_MESSAGES/wesnoth-sof.mo
+%%NLS%%share/locale/gd/LC_MESSAGES/wesnoth-sotbe.mo
+%%NLS%%share/locale/gd/LC_MESSAGES/wesnoth-tb.mo
+%%NLS%%share/locale/gd/LC_MESSAGES/wesnoth-test.mo
+%%NLS%%share/locale/gd/LC_MESSAGES/wesnoth-thot.mo
+%%NLS%%share/locale/gd/LC_MESSAGES/wesnoth-trow.mo
+%%NLS%%share/locale/gd/LC_MESSAGES/wesnoth-tsg.mo
+%%NLS%%share/locale/gd/LC_MESSAGES/wesnoth-tutorial.mo
+%%NLS%%share/locale/gd/LC_MESSAGES/wesnoth-units.mo
+%%NLS%%share/locale/gd/LC_MESSAGES/wesnoth-utbs.mo
+%%NLS%%share/locale/gd/LC_MESSAGES/wesnoth.mo
+%%NLS%%share/locale/gl/LC_MESSAGES/wesnoth-anl.mo
+%%NLS%%share/locale/gl/LC_MESSAGES/wesnoth-aoi.mo
+%%NLS%%share/locale/gl/LC_MESSAGES/wesnoth-did.mo
+%%NLS%%share/locale/gl/LC_MESSAGES/wesnoth-dm.mo
+%%NLS%%share/locale/gl/LC_MESSAGES/wesnoth-dw.mo
+%%NLS%%share/locale/gl/LC_MESSAGES/wesnoth-editor.mo
+%%NLS%%share/locale/gl/LC_MESSAGES/wesnoth-ei.mo
+%%NLS%%share/locale/gl/LC_MESSAGES/wesnoth-help.mo
+%%NLS%%share/locale/gl/LC_MESSAGES/wesnoth-httt.mo
+%%NLS%%share/locale/gl/LC_MESSAGES/wesnoth-l.mo
+%%NLS%%share/locale/gl/LC_MESSAGES/wesnoth-lib.mo
+%%NLS%%share/locale/gl/LC_MESSAGES/wesnoth-low.mo
+%%NLS%%share/locale/gl/LC_MESSAGES/wesnoth-multiplayer.mo
+%%NLS%%share/locale/gl/LC_MESSAGES/wesnoth-nr.mo
+%%NLS%%share/locale/gl/LC_MESSAGES/wesnoth-sof.mo
+%%NLS%%share/locale/gl/LC_MESSAGES/wesnoth-sotbe.mo
+%%NLS%%share/locale/gl/LC_MESSAGES/wesnoth-tb.mo
+%%NLS%%share/locale/gl/LC_MESSAGES/wesnoth-test.mo
+%%NLS%%share/locale/gl/LC_MESSAGES/wesnoth-thot.mo
+%%NLS%%share/locale/gl/LC_MESSAGES/wesnoth-trow.mo
+%%NLS%%share/locale/gl/LC_MESSAGES/wesnoth-tsg.mo
+%%NLS%%share/locale/gl/LC_MESSAGES/wesnoth-tutorial.mo
+%%NLS%%share/locale/gl/LC_MESSAGES/wesnoth-units.mo
+%%NLS%%share/locale/gl/LC_MESSAGES/wesnoth-utbs.mo
+%%NLS%%share/locale/gl/LC_MESSAGES/wesnoth.mo
+%%NLS%%share/locale/he/LC_MESSAGES/wesnoth-anl.mo
+%%NLS%%share/locale/he/LC_MESSAGES/wesnoth-aoi.mo
+%%NLS%%share/locale/he/LC_MESSAGES/wesnoth-did.mo
+%%NLS%%share/locale/he/LC_MESSAGES/wesnoth-dm.mo
+%%NLS%%share/locale/he/LC_MESSAGES/wesnoth-dw.mo
+%%NLS%%share/locale/he/LC_MESSAGES/wesnoth-editor.mo
+%%NLS%%share/locale/he/LC_MESSAGES/wesnoth-ei.mo
+%%NLS%%share/locale/he/LC_MESSAGES/wesnoth-help.mo
+%%NLS%%share/locale/he/LC_MESSAGES/wesnoth-httt.mo
+%%NLS%%share/locale/he/LC_MESSAGES/wesnoth-l.mo
+%%NLS%%share/locale/he/LC_MESSAGES/wesnoth-lib.mo
+%%NLS%%share/locale/he/LC_MESSAGES/wesnoth-low.mo
+%%NLS%%share/locale/he/LC_MESSAGES/wesnoth-multiplayer.mo
+%%NLS%%share/locale/he/LC_MESSAGES/wesnoth-nr.mo
+%%NLS%%share/locale/he/LC_MESSAGES/wesnoth-sof.mo
+%%NLS%%share/locale/he/LC_MESSAGES/wesnoth-sotbe.mo
+%%NLS%%share/locale/he/LC_MESSAGES/wesnoth-tb.mo
+%%NLS%%share/locale/he/LC_MESSAGES/wesnoth-test.mo
+%%NLS%%share/locale/he/LC_MESSAGES/wesnoth-thot.mo
+%%NLS%%share/locale/he/LC_MESSAGES/wesnoth-trow.mo
+%%NLS%%share/locale/he/LC_MESSAGES/wesnoth-tsg.mo
+%%NLS%%share/locale/he/LC_MESSAGES/wesnoth-tutorial.mo
+%%NLS%%share/locale/he/LC_MESSAGES/wesnoth-units.mo
+%%NLS%%share/locale/he/LC_MESSAGES/wesnoth-utbs.mo
+%%NLS%%share/locale/he/LC_MESSAGES/wesnoth.mo
+%%NLS%%share/locale/hr/LC_MESSAGES/wesnoth-anl.mo
+%%NLS%%share/locale/hr/LC_MESSAGES/wesnoth-aoi.mo
+%%NLS%%share/locale/hr/LC_MESSAGES/wesnoth-did.mo
+%%NLS%%share/locale/hr/LC_MESSAGES/wesnoth-dm.mo
+%%NLS%%share/locale/hr/LC_MESSAGES/wesnoth-dw.mo
+%%NLS%%share/locale/hr/LC_MESSAGES/wesnoth-editor.mo
+%%NLS%%share/locale/hr/LC_MESSAGES/wesnoth-ei.mo
+%%NLS%%share/locale/hr/LC_MESSAGES/wesnoth-help.mo
+%%NLS%%share/locale/hr/LC_MESSAGES/wesnoth-httt.mo
+%%NLS%%share/locale/hr/LC_MESSAGES/wesnoth-l.mo
+%%NLS%%share/locale/hr/LC_MESSAGES/wesnoth-lib.mo
+%%NLS%%share/locale/hr/LC_MESSAGES/wesnoth-low.mo
+%%NLS%%share/locale/hr/LC_MESSAGES/wesnoth-multiplayer.mo
+%%NLS%%share/locale/hr/LC_MESSAGES/wesnoth-nr.mo
+%%NLS%%share/locale/hr/LC_MESSAGES/wesnoth-sof.mo
+%%NLS%%share/locale/hr/LC_MESSAGES/wesnoth-sotbe.mo
+%%NLS%%share/locale/hr/LC_MESSAGES/wesnoth-tb.mo
+%%NLS%%share/locale/hr/LC_MESSAGES/wesnoth-test.mo
+%%NLS%%share/locale/hr/LC_MESSAGES/wesnoth-thot.mo
+%%NLS%%share/locale/hr/LC_MESSAGES/wesnoth-trow.mo
+%%NLS%%share/locale/hr/LC_MESSAGES/wesnoth-tsg.mo
+%%NLS%%share/locale/hr/LC_MESSAGES/wesnoth-tutorial.mo
+%%NLS%%share/locale/hr/LC_MESSAGES/wesnoth-units.mo
+%%NLS%%share/locale/hr/LC_MESSAGES/wesnoth-utbs.mo
+%%NLS%%share/locale/hr/LC_MESSAGES/wesnoth.mo
+%%NLS%%share/locale/hu/LC_MESSAGES/wesnoth-anl.mo
+%%NLS%%share/locale/hu/LC_MESSAGES/wesnoth-aoi.mo
+%%NLS%%share/locale/hu/LC_MESSAGES/wesnoth-did.mo
+%%NLS%%share/locale/hu/LC_MESSAGES/wesnoth-dm.mo
+%%NLS%%share/locale/hu/LC_MESSAGES/wesnoth-dw.mo
+%%NLS%%share/locale/hu/LC_MESSAGES/wesnoth-editor.mo
+%%NLS%%share/locale/hu/LC_MESSAGES/wesnoth-ei.mo
+%%NLS%%share/locale/hu/LC_MESSAGES/wesnoth-help.mo
+%%NLS%%share/locale/hu/LC_MESSAGES/wesnoth-httt.mo
+%%NLS%%share/locale/hu/LC_MESSAGES/wesnoth-l.mo
+%%NLS%%share/locale/hu/LC_MESSAGES/wesnoth-lib.mo
+%%NLS%%share/locale/hu/LC_MESSAGES/wesnoth-low.mo
+%%NLS%%share/locale/hu/LC_MESSAGES/wesnoth-multiplayer.mo
+%%NLS%%share/locale/hu/LC_MESSAGES/wesnoth-nr.mo
+%%NLS%%share/locale/hu/LC_MESSAGES/wesnoth-sof.mo
+%%NLS%%share/locale/hu/LC_MESSAGES/wesnoth-sotbe.mo
+%%NLS%%share/locale/hu/LC_MESSAGES/wesnoth-tb.mo
+%%NLS%%share/locale/hu/LC_MESSAGES/wesnoth-test.mo
+%%NLS%%share/locale/hu/LC_MESSAGES/wesnoth-thot.mo
+%%NLS%%share/locale/hu/LC_MESSAGES/wesnoth-trow.mo
+%%NLS%%share/locale/hu/LC_MESSAGES/wesnoth-tsg.mo
+%%NLS%%share/locale/hu/LC_MESSAGES/wesnoth-tutorial.mo
+%%NLS%%share/locale/hu/LC_MESSAGES/wesnoth-units.mo
+%%NLS%%share/locale/hu/LC_MESSAGES/wesnoth-utbs.mo
+%%NLS%%share/locale/hu/LC_MESSAGES/wesnoth.mo
+%%NLS%%share/locale/id/LC_MESSAGES/wesnoth-anl.mo
+%%NLS%%share/locale/id/LC_MESSAGES/wesnoth-aoi.mo
+%%NLS%%share/locale/id/LC_MESSAGES/wesnoth-did.mo
+%%NLS%%share/locale/id/LC_MESSAGES/wesnoth-dm.mo
+%%NLS%%share/locale/id/LC_MESSAGES/wesnoth-dw.mo
+%%NLS%%share/locale/id/LC_MESSAGES/wesnoth-editor.mo
+%%NLS%%share/locale/id/LC_MESSAGES/wesnoth-ei.mo
+%%NLS%%share/locale/id/LC_MESSAGES/wesnoth-help.mo
+%%NLS%%share/locale/id/LC_MESSAGES/wesnoth-httt.mo
+%%NLS%%share/locale/id/LC_MESSAGES/wesnoth-l.mo
+%%NLS%%share/locale/id/LC_MESSAGES/wesnoth-lib.mo
+%%NLS%%share/locale/id/LC_MESSAGES/wesnoth-low.mo
+%%NLS%%share/locale/id/LC_MESSAGES/wesnoth-multiplayer.mo
+%%NLS%%share/locale/id/LC_MESSAGES/wesnoth-nr.mo
+%%NLS%%share/locale/id/LC_MESSAGES/wesnoth-sof.mo
+%%NLS%%share/locale/id/LC_MESSAGES/wesnoth-sotbe.mo
+%%NLS%%share/locale/id/LC_MESSAGES/wesnoth-tb.mo
+%%NLS%%share/locale/id/LC_MESSAGES/wesnoth-test.mo
+%%NLS%%share/locale/id/LC_MESSAGES/wesnoth-thot.mo
+%%NLS%%share/locale/id/LC_MESSAGES/wesnoth-trow.mo
+%%NLS%%share/locale/id/LC_MESSAGES/wesnoth-tsg.mo
+%%NLS%%share/locale/id/LC_MESSAGES/wesnoth-tutorial.mo
+%%NLS%%share/locale/id/LC_MESSAGES/wesnoth-units.mo
+%%NLS%%share/locale/id/LC_MESSAGES/wesnoth-utbs.mo
+%%NLS%%share/locale/id/LC_MESSAGES/wesnoth.mo
+%%NLS%%share/locale/is/LC_MESSAGES/wesnoth-anl.mo
+%%NLS%%share/locale/is/LC_MESSAGES/wesnoth-aoi.mo
+%%NLS%%share/locale/is/LC_MESSAGES/wesnoth-did.mo
+%%NLS%%share/locale/is/LC_MESSAGES/wesnoth-dm.mo
+%%NLS%%share/locale/is/LC_MESSAGES/wesnoth-dw.mo
+%%NLS%%share/locale/is/LC_MESSAGES/wesnoth-editor.mo
+%%NLS%%share/locale/is/LC_MESSAGES/wesnoth-ei.mo
+%%NLS%%share/locale/is/LC_MESSAGES/wesnoth-help.mo
+%%NLS%%share/locale/is/LC_MESSAGES/wesnoth-httt.mo
+%%NLS%%share/locale/is/LC_MESSAGES/wesnoth-l.mo
+%%NLS%%share/locale/is/LC_MESSAGES/wesnoth-lib.mo
+%%NLS%%share/locale/is/LC_MESSAGES/wesnoth-low.mo
+%%NLS%%share/locale/is/LC_MESSAGES/wesnoth-multiplayer.mo
+%%NLS%%share/locale/is/LC_MESSAGES/wesnoth-nr.mo
+%%NLS%%share/locale/is/LC_MESSAGES/wesnoth-sof.mo
+%%NLS%%share/locale/is/LC_MESSAGES/wesnoth-sotbe.mo
+%%NLS%%share/locale/is/LC_MESSAGES/wesnoth-tb.mo
+%%NLS%%share/locale/is/LC_MESSAGES/wesnoth-test.mo
+%%NLS%%share/locale/is/LC_MESSAGES/wesnoth-thot.mo
+%%NLS%%share/locale/is/LC_MESSAGES/wesnoth-trow.mo
+%%NLS%%share/locale/is/LC_MESSAGES/wesnoth-tsg.mo
+%%NLS%%share/locale/is/LC_MESSAGES/wesnoth-tutorial.mo
+%%NLS%%share/locale/is/LC_MESSAGES/wesnoth-units.mo
+%%NLS%%share/locale/is/LC_MESSAGES/wesnoth-utbs.mo
+%%NLS%%share/locale/is/LC_MESSAGES/wesnoth.mo
+%%NLS%%share/locale/it/LC_MESSAGES/wesnoth-anl.mo
+%%NLS%%share/locale/it/LC_MESSAGES/wesnoth-aoi.mo
+%%NLS%%share/locale/it/LC_MESSAGES/wesnoth-did.mo
+%%NLS%%share/locale/it/LC_MESSAGES/wesnoth-dm.mo
+%%NLS%%share/locale/it/LC_MESSAGES/wesnoth-dw.mo
+%%NLS%%share/locale/it/LC_MESSAGES/wesnoth-editor.mo
+%%NLS%%share/locale/it/LC_MESSAGES/wesnoth-ei.mo
+%%NLS%%share/locale/it/LC_MESSAGES/wesnoth-help.mo
+%%NLS%%share/locale/it/LC_MESSAGES/wesnoth-httt.mo
+%%NLS%%share/locale/it/LC_MESSAGES/wesnoth-l.mo
+%%NLS%%share/locale/it/LC_MESSAGES/wesnoth-lib.mo
+%%NLS%%share/locale/it/LC_MESSAGES/wesnoth-low.mo
+%%NLS%%share/locale/it/LC_MESSAGES/wesnoth-multiplayer.mo
+%%NLS%%share/locale/it/LC_MESSAGES/wesnoth-nr.mo
+%%NLS%%share/locale/it/LC_MESSAGES/wesnoth-sof.mo
+%%NLS%%share/locale/it/LC_MESSAGES/wesnoth-sotbe.mo
+%%NLS%%share/locale/it/LC_MESSAGES/wesnoth-tb.mo
+%%NLS%%share/locale/it/LC_MESSAGES/wesnoth-test.mo
+%%NLS%%share/locale/it/LC_MESSAGES/wesnoth-thot.mo
+%%NLS%%share/locale/it/LC_MESSAGES/wesnoth-trow.mo
+%%NLS%%share/locale/it/LC_MESSAGES/wesnoth-tsg.mo
+%%NLS%%share/locale/it/LC_MESSAGES/wesnoth-tutorial.mo
+%%NLS%%share/locale/it/LC_MESSAGES/wesnoth-units.mo
+%%NLS%%share/locale/it/LC_MESSAGES/wesnoth-utbs.mo
+%%NLS%%share/locale/it/LC_MESSAGES/wesnoth.mo
+%%NLS%%share/locale/ja/LC_MESSAGES/wesnoth-anl.mo
+%%NLS%%share/locale/ja/LC_MESSAGES/wesnoth-aoi.mo
+%%NLS%%share/locale/ja/LC_MESSAGES/wesnoth-did.mo
+%%NLS%%share/locale/ja/LC_MESSAGES/wesnoth-dm.mo
+%%NLS%%share/locale/ja/LC_MESSAGES/wesnoth-dw.mo
+%%NLS%%share/locale/ja/LC_MESSAGES/wesnoth-editor.mo
+%%NLS%%share/locale/ja/LC_MESSAGES/wesnoth-ei.mo
+%%NLS%%share/locale/ja/LC_MESSAGES/wesnoth-help.mo
+%%NLS%%share/locale/ja/LC_MESSAGES/wesnoth-httt.mo
+%%NLS%%share/locale/ja/LC_MESSAGES/wesnoth-l.mo
+%%NLS%%share/locale/ja/LC_MESSAGES/wesnoth-lib.mo
+%%NLS%%share/locale/ja/LC_MESSAGES/wesnoth-low.mo
+%%NLS%%share/locale/ja/LC_MESSAGES/wesnoth-multiplayer.mo
+%%NLS%%share/locale/ja/LC_MESSAGES/wesnoth-nr.mo
+%%NLS%%share/locale/ja/LC_MESSAGES/wesnoth-sof.mo
+%%NLS%%share/locale/ja/LC_MESSAGES/wesnoth-sotbe.mo
+%%NLS%%share/locale/ja/LC_MESSAGES/wesnoth-tb.mo
+%%NLS%%share/locale/ja/LC_MESSAGES/wesnoth-test.mo
+%%NLS%%share/locale/ja/LC_MESSAGES/wesnoth-thot.mo
+%%NLS%%share/locale/ja/LC_MESSAGES/wesnoth-trow.mo
+%%NLS%%share/locale/ja/LC_MESSAGES/wesnoth-tsg.mo
+%%NLS%%share/locale/ja/LC_MESSAGES/wesnoth-tutorial.mo
+%%NLS%%share/locale/ja/LC_MESSAGES/wesnoth-units.mo
+%%NLS%%share/locale/ja/LC_MESSAGES/wesnoth-utbs.mo
+%%NLS%%share/locale/ja/LC_MESSAGES/wesnoth.mo
+%%NLS%%share/locale/ko/LC_MESSAGES/wesnoth-anl.mo
+%%NLS%%share/locale/ko/LC_MESSAGES/wesnoth-aoi.mo
+%%NLS%%share/locale/ko/LC_MESSAGES/wesnoth-did.mo
+%%NLS%%share/locale/ko/LC_MESSAGES/wesnoth-dm.mo
+%%NLS%%share/locale/ko/LC_MESSAGES/wesnoth-dw.mo
+%%NLS%%share/locale/ko/LC_MESSAGES/wesnoth-editor.mo
+%%NLS%%share/locale/ko/LC_MESSAGES/wesnoth-ei.mo
+%%NLS%%share/locale/ko/LC_MESSAGES/wesnoth-help.mo
+%%NLS%%share/locale/ko/LC_MESSAGES/wesnoth-httt.mo
+%%NLS%%share/locale/ko/LC_MESSAGES/wesnoth-l.mo
+%%NLS%%share/locale/ko/LC_MESSAGES/wesnoth-lib.mo
+%%NLS%%share/locale/ko/LC_MESSAGES/wesnoth-low.mo
+%%NLS%%share/locale/ko/LC_MESSAGES/wesnoth-multiplayer.mo
+%%NLS%%share/locale/ko/LC_MESSAGES/wesnoth-nr.mo
+%%NLS%%share/locale/ko/LC_MESSAGES/wesnoth-sof.mo
+%%NLS%%share/locale/ko/LC_MESSAGES/wesnoth-sotbe.mo
+%%NLS%%share/locale/ko/LC_MESSAGES/wesnoth-tb.mo
+%%NLS%%share/locale/ko/LC_MESSAGES/wesnoth-test.mo
+%%NLS%%share/locale/ko/LC_MESSAGES/wesnoth-thot.mo
+%%NLS%%share/locale/ko/LC_MESSAGES/wesnoth-trow.mo
+%%NLS%%share/locale/ko/LC_MESSAGES/wesnoth-tsg.mo
+%%NLS%%share/locale/ko/LC_MESSAGES/wesnoth-tutorial.mo
+%%NLS%%share/locale/ko/LC_MESSAGES/wesnoth-units.mo
+%%NLS%%share/locale/ko/LC_MESSAGES/wesnoth-utbs.mo
+%%NLS%%share/locale/ko/LC_MESSAGES/wesnoth.mo
+%%NLS%%share/locale/la/LC_MESSAGES/wesnoth-anl.mo
+%%NLS%%share/locale/la/LC_MESSAGES/wesnoth-aoi.mo
+%%NLS%%share/locale/la/LC_MESSAGES/wesnoth-did.mo
+%%NLS%%share/locale/la/LC_MESSAGES/wesnoth-dm.mo
+%%NLS%%share/locale/la/LC_MESSAGES/wesnoth-dw.mo
+%%NLS%%share/locale/la/LC_MESSAGES/wesnoth-editor.mo
+%%NLS%%share/locale/la/LC_MESSAGES/wesnoth-ei.mo
+%%NLS%%share/locale/la/LC_MESSAGES/wesnoth-help.mo
+%%NLS%%share/locale/la/LC_MESSAGES/wesnoth-httt.mo
+%%NLS%%share/locale/la/LC_MESSAGES/wesnoth-l.mo
+%%NLS%%share/locale/la/LC_MESSAGES/wesnoth-lib.mo
+%%NLS%%share/locale/la/LC_MESSAGES/wesnoth-low.mo
+%%NLS%%share/locale/la/LC_MESSAGES/wesnoth-multiplayer.mo
+%%NLS%%share/locale/la/LC_MESSAGES/wesnoth-nr.mo
+%%NLS%%share/locale/la/LC_MESSAGES/wesnoth-sof.mo
+%%NLS%%share/locale/la/LC_MESSAGES/wesnoth-sotbe.mo
+%%NLS%%share/locale/la/LC_MESSAGES/wesnoth-tb.mo
+%%NLS%%share/locale/la/LC_MESSAGES/wesnoth-test.mo
+%%NLS%%share/locale/la/LC_MESSAGES/wesnoth-thot.mo
+%%NLS%%share/locale/la/LC_MESSAGES/wesnoth-trow.mo
+%%NLS%%share/locale/la/LC_MESSAGES/wesnoth-tsg.mo
+%%NLS%%share/locale/la/LC_MESSAGES/wesnoth-tutorial.mo
+%%NLS%%share/locale/la/LC_MESSAGES/wesnoth-units.mo
+%%NLS%%share/locale/la/LC_MESSAGES/wesnoth-utbs.mo
+%%NLS%%share/locale/la/LC_MESSAGES/wesnoth.mo
+%%NLS%%share/locale/lt/LC_MESSAGES/wesnoth-anl.mo
+%%NLS%%share/locale/lt/LC_MESSAGES/wesnoth-aoi.mo
+%%NLS%%share/locale/lt/LC_MESSAGES/wesnoth-did.mo
+%%NLS%%share/locale/lt/LC_MESSAGES/wesnoth-dm.mo
+%%NLS%%share/locale/lt/LC_MESSAGES/wesnoth-dw.mo
+%%NLS%%share/locale/lt/LC_MESSAGES/wesnoth-editor.mo
+%%NLS%%share/locale/lt/LC_MESSAGES/wesnoth-ei.mo
+%%NLS%%share/locale/lt/LC_MESSAGES/wesnoth-help.mo
+%%NLS%%share/locale/lt/LC_MESSAGES/wesnoth-httt.mo
+%%NLS%%share/locale/lt/LC_MESSAGES/wesnoth-l.mo
+%%NLS%%share/locale/lt/LC_MESSAGES/wesnoth-lib.mo
+%%NLS%%share/locale/lt/LC_MESSAGES/wesnoth-low.mo
+%%NLS%%share/locale/lt/LC_MESSAGES/wesnoth-multiplayer.mo
+%%NLS%%share/locale/lt/LC_MESSAGES/wesnoth-nr.mo
+%%NLS%%share/locale/lt/LC_MESSAGES/wesnoth-sof.mo
+%%NLS%%share/locale/lt/LC_MESSAGES/wesnoth-sotbe.mo
+%%NLS%%share/locale/lt/LC_MESSAGES/wesnoth-tb.mo
+%%NLS%%share/locale/lt/LC_MESSAGES/wesnoth-test.mo
+%%NLS%%share/locale/lt/LC_MESSAGES/wesnoth-thot.mo
+%%NLS%%share/locale/lt/LC_MESSAGES/wesnoth-trow.mo
+%%NLS%%share/locale/lt/LC_MESSAGES/wesnoth-tsg.mo
+%%NLS%%share/locale/lt/LC_MESSAGES/wesnoth-tutorial.mo
+%%NLS%%share/locale/lt/LC_MESSAGES/wesnoth-units.mo
+%%NLS%%share/locale/lt/LC_MESSAGES/wesnoth-utbs.mo
+%%NLS%%share/locale/lt/LC_MESSAGES/wesnoth.mo
+%%NLS%%share/locale/lv/LC_MESSAGES/wesnoth-anl.mo
+%%NLS%%share/locale/lv/LC_MESSAGES/wesnoth-aoi.mo
+%%NLS%%share/locale/lv/LC_MESSAGES/wesnoth-did.mo
+%%NLS%%share/locale/lv/LC_MESSAGES/wesnoth-dm.mo
+%%NLS%%share/locale/lv/LC_MESSAGES/wesnoth-dw.mo
+%%NLS%%share/locale/lv/LC_MESSAGES/wesnoth-editor.mo
+%%NLS%%share/locale/lv/LC_MESSAGES/wesnoth-ei.mo
+%%NLS%%share/locale/lv/LC_MESSAGES/wesnoth-help.mo
+%%NLS%%share/locale/lv/LC_MESSAGES/wesnoth-httt.mo
+%%NLS%%share/locale/lv/LC_MESSAGES/wesnoth-l.mo
+%%NLS%%share/locale/lv/LC_MESSAGES/wesnoth-lib.mo
+%%NLS%%share/locale/lv/LC_MESSAGES/wesnoth-low.mo
+%%NLS%%share/locale/lv/LC_MESSAGES/wesnoth-multiplayer.mo
+%%NLS%%share/locale/lv/LC_MESSAGES/wesnoth-nr.mo
+%%NLS%%share/locale/lv/LC_MESSAGES/wesnoth-sof.mo
+%%NLS%%share/locale/lv/LC_MESSAGES/wesnoth-sotbe.mo
+%%NLS%%share/locale/lv/LC_MESSAGES/wesnoth-tb.mo
+%%NLS%%share/locale/lv/LC_MESSAGES/wesnoth-test.mo
+%%NLS%%share/locale/lv/LC_MESSAGES/wesnoth-thot.mo
+%%NLS%%share/locale/lv/LC_MESSAGES/wesnoth-trow.mo
+%%NLS%%share/locale/lv/LC_MESSAGES/wesnoth-tsg.mo
+%%NLS%%share/locale/lv/LC_MESSAGES/wesnoth-tutorial.mo
+%%NLS%%share/locale/lv/LC_MESSAGES/wesnoth-units.mo
+%%NLS%%share/locale/lv/LC_MESSAGES/wesnoth-utbs.mo
+%%NLS%%share/locale/lv/LC_MESSAGES/wesnoth.mo
+%%NLS%%share/locale/mk/LC_MESSAGES/wesnoth-anl.mo
+%%NLS%%share/locale/mk/LC_MESSAGES/wesnoth-aoi.mo
+%%NLS%%share/locale/mk/LC_MESSAGES/wesnoth-did.mo
+%%NLS%%share/locale/mk/LC_MESSAGES/wesnoth-dm.mo
+%%NLS%%share/locale/mk/LC_MESSAGES/wesnoth-dw.mo
+%%NLS%%share/locale/mk/LC_MESSAGES/wesnoth-editor.mo
+%%NLS%%share/locale/mk/LC_MESSAGES/wesnoth-ei.mo
+%%NLS%%share/locale/mk/LC_MESSAGES/wesnoth-help.mo
+%%NLS%%share/locale/mk/LC_MESSAGES/wesnoth-httt.mo
+%%NLS%%share/locale/mk/LC_MESSAGES/wesnoth-l.mo
+%%NLS%%share/locale/mk/LC_MESSAGES/wesnoth-lib.mo
+%%NLS%%share/locale/mk/LC_MESSAGES/wesnoth-low.mo
+%%NLS%%share/locale/mk/LC_MESSAGES/wesnoth-multiplayer.mo
+%%NLS%%share/locale/mk/LC_MESSAGES/wesnoth-nr.mo
+%%NLS%%share/locale/mk/LC_MESSAGES/wesnoth-sof.mo
+%%NLS%%share/locale/mk/LC_MESSAGES/wesnoth-sotbe.mo
+%%NLS%%share/locale/mk/LC_MESSAGES/wesnoth-tb.mo
+%%NLS%%share/locale/mk/LC_MESSAGES/wesnoth-test.mo
+%%NLS%%share/locale/mk/LC_MESSAGES/wesnoth-thot.mo
+%%NLS%%share/locale/mk/LC_MESSAGES/wesnoth-trow.mo
+%%NLS%%share/locale/mk/LC_MESSAGES/wesnoth-tsg.mo
+%%NLS%%share/locale/mk/LC_MESSAGES/wesnoth-tutorial.mo
+%%NLS%%share/locale/mk/LC_MESSAGES/wesnoth-units.mo
+%%NLS%%share/locale/mk/LC_MESSAGES/wesnoth-utbs.mo
+%%NLS%%share/locale/mk/LC_MESSAGES/wesnoth.mo
+%%NLS%%share/locale/mr/LC_MESSAGES/wesnoth-anl.mo
+%%NLS%%share/locale/mr/LC_MESSAGES/wesnoth-aoi.mo
+%%NLS%%share/locale/mr/LC_MESSAGES/wesnoth-did.mo
+%%NLS%%share/locale/mr/LC_MESSAGES/wesnoth-dm.mo
+%%NLS%%share/locale/mr/LC_MESSAGES/wesnoth-dw.mo
+%%NLS%%share/locale/mr/LC_MESSAGES/wesnoth-editor.mo
+%%NLS%%share/locale/mr/LC_MESSAGES/wesnoth-ei.mo
+%%NLS%%share/locale/mr/LC_MESSAGES/wesnoth-help.mo
+%%NLS%%share/locale/mr/LC_MESSAGES/wesnoth-httt.mo
+%%NLS%%share/locale/mr/LC_MESSAGES/wesnoth-l.mo
+%%NLS%%share/locale/mr/LC_MESSAGES/wesnoth-lib.mo
+%%NLS%%share/locale/mr/LC_MESSAGES/wesnoth-low.mo
+%%NLS%%share/locale/mr/LC_MESSAGES/wesnoth-multiplayer.mo
+%%NLS%%share/locale/mr/LC_MESSAGES/wesnoth-nr.mo
+%%NLS%%share/locale/mr/LC_MESSAGES/wesnoth-sof.mo
+%%NLS%%share/locale/mr/LC_MESSAGES/wesnoth-sotbe.mo
+%%NLS%%share/locale/mr/LC_MESSAGES/wesnoth-tb.mo
+%%NLS%%share/locale/mr/LC_MESSAGES/wesnoth-test.mo
+%%NLS%%share/locale/mr/LC_MESSAGES/wesnoth-thot.mo
+%%NLS%%share/locale/mr/LC_MESSAGES/wesnoth-trow.mo
+%%NLS%%share/locale/mr/LC_MESSAGES/wesnoth-tsg.mo
+%%NLS%%share/locale/mr/LC_MESSAGES/wesnoth-tutorial.mo
+%%NLS%%share/locale/mr/LC_MESSAGES/wesnoth-units.mo
+%%NLS%%share/locale/mr/LC_MESSAGES/wesnoth-utbs.mo
+%%NLS%%share/locale/mr/LC_MESSAGES/wesnoth.mo
+%%NLS%%share/locale/nb_NO/LC_MESSAGES/wesnoth-anl.mo
+%%NLS%%share/locale/nb_NO/LC_MESSAGES/wesnoth-aoi.mo
+%%NLS%%share/locale/nb_NO/LC_MESSAGES/wesnoth-did.mo
+%%NLS%%share/locale/nb_NO/LC_MESSAGES/wesnoth-dm.mo
+%%NLS%%share/locale/nb_NO/LC_MESSAGES/wesnoth-dw.mo
+%%NLS%%share/locale/nb_NO/LC_MESSAGES/wesnoth-editor.mo
+%%NLS%%share/locale/nb_NO/LC_MESSAGES/wesnoth-ei.mo
+%%NLS%%share/locale/nb_NO/LC_MESSAGES/wesnoth-help.mo
+%%NLS%%share/locale/nb_NO/LC_MESSAGES/wesnoth-httt.mo
+%%NLS%%share/locale/nb_NO/LC_MESSAGES/wesnoth-l.mo
+%%NLS%%share/locale/nb_NO/LC_MESSAGES/wesnoth-lib.mo
+%%NLS%%share/locale/nb_NO/LC_MESSAGES/wesnoth-low.mo
+%%NLS%%share/locale/nb_NO/LC_MESSAGES/wesnoth-multiplayer.mo
+%%NLS%%share/locale/nb_NO/LC_MESSAGES/wesnoth-nr.mo
+%%NLS%%share/locale/nb_NO/LC_MESSAGES/wesnoth-sof.mo
+%%NLS%%share/locale/nb_NO/LC_MESSAGES/wesnoth-sotbe.mo
+%%NLS%%share/locale/nb_NO/LC_MESSAGES/wesnoth-tb.mo
+%%NLS%%share/locale/nb_NO/LC_MESSAGES/wesnoth-test.mo
+%%NLS%%share/locale/nb_NO/LC_MESSAGES/wesnoth-thot.mo
+%%NLS%%share/locale/nb_NO/LC_MESSAGES/wesnoth-trow.mo
+%%NLS%%share/locale/nb_NO/LC_MESSAGES/wesnoth-tsg.mo
+%%NLS%%share/locale/nb_NO/LC_MESSAGES/wesnoth-tutorial.mo
+%%NLS%%share/locale/nb_NO/LC_MESSAGES/wesnoth-units.mo
+%%NLS%%share/locale/nb_NO/LC_MESSAGES/wesnoth-utbs.mo
+%%NLS%%share/locale/nb_NO/LC_MESSAGES/wesnoth.mo
+%%NLS%%share/locale/nl/LC_MESSAGES/wesnoth-anl.mo
+%%NLS%%share/locale/nl/LC_MESSAGES/wesnoth-aoi.mo
+%%NLS%%share/locale/nl/LC_MESSAGES/wesnoth-did.mo
+%%NLS%%share/locale/nl/LC_MESSAGES/wesnoth-dm.mo
+%%NLS%%share/locale/nl/LC_MESSAGES/wesnoth-dw.mo
+%%NLS%%share/locale/nl/LC_MESSAGES/wesnoth-editor.mo
+%%NLS%%share/locale/nl/LC_MESSAGES/wesnoth-ei.mo
+%%NLS%%share/locale/nl/LC_MESSAGES/wesnoth-help.mo
+%%NLS%%share/locale/nl/LC_MESSAGES/wesnoth-httt.mo
+%%NLS%%share/locale/nl/LC_MESSAGES/wesnoth-l.mo
+%%NLS%%share/locale/nl/LC_MESSAGES/wesnoth-lib.mo
+%%NLS%%share/locale/nl/LC_MESSAGES/wesnoth-low.mo
+%%NLS%%share/locale/nl/LC_MESSAGES/wesnoth-multiplayer.mo
+%%NLS%%share/locale/nl/LC_MESSAGES/wesnoth-nr.mo
+%%NLS%%share/locale/nl/LC_MESSAGES/wesnoth-sof.mo
+%%NLS%%share/locale/nl/LC_MESSAGES/wesnoth-sotbe.mo
+%%NLS%%share/locale/nl/LC_MESSAGES/wesnoth-tb.mo
+%%NLS%%share/locale/nl/LC_MESSAGES/wesnoth-test.mo
+%%NLS%%share/locale/nl/LC_MESSAGES/wesnoth-thot.mo
+%%NLS%%share/locale/nl/LC_MESSAGES/wesnoth-trow.mo
+%%NLS%%share/locale/nl/LC_MESSAGES/wesnoth-tsg.mo
+%%NLS%%share/locale/nl/LC_MESSAGES/wesnoth-tutorial.mo
+%%NLS%%share/locale/nl/LC_MESSAGES/wesnoth-units.mo
+%%NLS%%share/locale/nl/LC_MESSAGES/wesnoth-utbs.mo
+%%NLS%%share/locale/nl/LC_MESSAGES/wesnoth.mo
+%%NLS%%share/locale/pl/LC_MESSAGES/wesnoth-anl.mo
+%%NLS%%share/locale/pl/LC_MESSAGES/wesnoth-aoi.mo
+%%NLS%%share/locale/pl/LC_MESSAGES/wesnoth-did.mo
+%%NLS%%share/locale/pl/LC_MESSAGES/wesnoth-dm.mo
+%%NLS%%share/locale/pl/LC_MESSAGES/wesnoth-dw.mo
+%%NLS%%share/locale/pl/LC_MESSAGES/wesnoth-editor.mo
+%%NLS%%share/locale/pl/LC_MESSAGES/wesnoth-ei.mo
+%%NLS%%share/locale/pl/LC_MESSAGES/wesnoth-help.mo
+%%NLS%%share/locale/pl/LC_MESSAGES/wesnoth-httt.mo
+%%NLS%%share/locale/pl/LC_MESSAGES/wesnoth-l.mo
+%%NLS%%share/locale/pl/LC_MESSAGES/wesnoth-lib.mo
+%%NLS%%share/locale/pl/LC_MESSAGES/wesnoth-low.mo
+%%NLS%%share/locale/pl/LC_MESSAGES/wesnoth-multiplayer.mo
+%%NLS%%share/locale/pl/LC_MESSAGES/wesnoth-nr.mo
+%%NLS%%share/locale/pl/LC_MESSAGES/wesnoth-sof.mo
+%%NLS%%share/locale/pl/LC_MESSAGES/wesnoth-sotbe.mo
+%%NLS%%share/locale/pl/LC_MESSAGES/wesnoth-tb.mo
+%%NLS%%share/locale/pl/LC_MESSAGES/wesnoth-test.mo
+%%NLS%%share/locale/pl/LC_MESSAGES/wesnoth-thot.mo
+%%NLS%%share/locale/pl/LC_MESSAGES/wesnoth-trow.mo
+%%NLS%%share/locale/pl/LC_MESSAGES/wesnoth-tsg.mo
+%%NLS%%share/locale/pl/LC_MESSAGES/wesnoth-tutorial.mo
+%%NLS%%share/locale/pl/LC_MESSAGES/wesnoth-units.mo
+%%NLS%%share/locale/pl/LC_MESSAGES/wesnoth-utbs.mo
+%%NLS%%share/locale/pl/LC_MESSAGES/wesnoth.mo
+%%NLS%%share/locale/pt/LC_MESSAGES/wesnoth-anl.mo
+%%NLS%%share/locale/pt/LC_MESSAGES/wesnoth-aoi.mo
+%%NLS%%share/locale/pt/LC_MESSAGES/wesnoth-did.mo
+%%NLS%%share/locale/pt/LC_MESSAGES/wesnoth-dm.mo
+%%NLS%%share/locale/pt/LC_MESSAGES/wesnoth-dw.mo
+%%NLS%%share/locale/pt/LC_MESSAGES/wesnoth-editor.mo
+%%NLS%%share/locale/pt/LC_MESSAGES/wesnoth-ei.mo
+%%NLS%%share/locale/pt/LC_MESSAGES/wesnoth-help.mo
+%%NLS%%share/locale/pt/LC_MESSAGES/wesnoth-httt.mo
+%%NLS%%share/locale/pt/LC_MESSAGES/wesnoth-l.mo
+%%NLS%%share/locale/pt/LC_MESSAGES/wesnoth-lib.mo
+%%NLS%%share/locale/pt/LC_MESSAGES/wesnoth-low.mo
+%%NLS%%share/locale/pt/LC_MESSAGES/wesnoth-multiplayer.mo
+%%NLS%%share/locale/pt/LC_MESSAGES/wesnoth-nr.mo
+%%NLS%%share/locale/pt/LC_MESSAGES/wesnoth-sof.mo
+%%NLS%%share/locale/pt/LC_MESSAGES/wesnoth-sotbe.mo
+%%NLS%%share/locale/pt/LC_MESSAGES/wesnoth-tb.mo
+%%NLS%%share/locale/pt/LC_MESSAGES/wesnoth-test.mo
+%%NLS%%share/locale/pt/LC_MESSAGES/wesnoth-thot.mo
+%%NLS%%share/locale/pt/LC_MESSAGES/wesnoth-trow.mo
+%%NLS%%share/locale/pt/LC_MESSAGES/wesnoth-tsg.mo
+%%NLS%%share/locale/pt/LC_MESSAGES/wesnoth-tutorial.mo
+%%NLS%%share/locale/pt/LC_MESSAGES/wesnoth-units.mo
+%%NLS%%share/locale/pt/LC_MESSAGES/wesnoth-utbs.mo
+%%NLS%%share/locale/pt/LC_MESSAGES/wesnoth.mo
+%%NLS%%share/locale/pt_BR/LC_MESSAGES/wesnoth-anl.mo
+%%NLS%%share/locale/pt_BR/LC_MESSAGES/wesnoth-aoi.mo
+%%NLS%%share/locale/pt_BR/LC_MESSAGES/wesnoth-did.mo
+%%NLS%%share/locale/pt_BR/LC_MESSAGES/wesnoth-dm.mo
+%%NLS%%share/locale/pt_BR/LC_MESSAGES/wesnoth-dw.mo
+%%NLS%%share/locale/pt_BR/LC_MESSAGES/wesnoth-editor.mo
+%%NLS%%share/locale/pt_BR/LC_MESSAGES/wesnoth-ei.mo
+%%NLS%%share/locale/pt_BR/LC_MESSAGES/wesnoth-help.mo
+%%NLS%%share/locale/pt_BR/LC_MESSAGES/wesnoth-httt.mo
+%%NLS%%share/locale/pt_BR/LC_MESSAGES/wesnoth-l.mo
+%%NLS%%share/locale/pt_BR/LC_MESSAGES/wesnoth-lib.mo
+%%NLS%%share/locale/pt_BR/LC_MESSAGES/wesnoth-low.mo
+%%NLS%%share/locale/pt_BR/LC_MESSAGES/wesnoth-multiplayer.mo
+%%NLS%%share/locale/pt_BR/LC_MESSAGES/wesnoth-nr.mo
+%%NLS%%share/locale/pt_BR/LC_MESSAGES/wesnoth-sof.mo
+%%NLS%%share/locale/pt_BR/LC_MESSAGES/wesnoth-sotbe.mo
+%%NLS%%share/locale/pt_BR/LC_MESSAGES/wesnoth-tb.mo
+%%NLS%%share/locale/pt_BR/LC_MESSAGES/wesnoth-test.mo
+%%NLS%%share/locale/pt_BR/LC_MESSAGES/wesnoth-thot.mo
+%%NLS%%share/locale/pt_BR/LC_MESSAGES/wesnoth-trow.mo
+%%NLS%%share/locale/pt_BR/LC_MESSAGES/wesnoth-tsg.mo
+%%NLS%%share/locale/pt_BR/LC_MESSAGES/wesnoth-tutorial.mo
+%%NLS%%share/locale/pt_BR/LC_MESSAGES/wesnoth-units.mo
+%%NLS%%share/locale/pt_BR/LC_MESSAGES/wesnoth-utbs.mo
+%%NLS%%share/locale/pt_BR/LC_MESSAGES/wesnoth.mo
+%%NLS%%share/locale/racv/LC_MESSAGES/wesnoth-anl.mo
+%%NLS%%share/locale/racv/LC_MESSAGES/wesnoth-aoi.mo
+%%NLS%%share/locale/racv/LC_MESSAGES/wesnoth-did.mo
+%%NLS%%share/locale/racv/LC_MESSAGES/wesnoth-dm.mo
+%%NLS%%share/locale/racv/LC_MESSAGES/wesnoth-dw.mo
+%%NLS%%share/locale/racv/LC_MESSAGES/wesnoth-editor.mo
+%%NLS%%share/locale/racv/LC_MESSAGES/wesnoth-ei.mo
+%%NLS%%share/locale/racv/LC_MESSAGES/wesnoth-help.mo
+%%NLS%%share/locale/racv/LC_MESSAGES/wesnoth-httt.mo
+%%NLS%%share/locale/racv/LC_MESSAGES/wesnoth-l.mo
+%%NLS%%share/locale/racv/LC_MESSAGES/wesnoth-lib.mo
+%%NLS%%share/locale/racv/LC_MESSAGES/wesnoth-low.mo
+%%NLS%%share/locale/racv/LC_MESSAGES/wesnoth-multiplayer.mo
+%%NLS%%share/locale/racv/LC_MESSAGES/wesnoth-nr.mo
+%%NLS%%share/locale/racv/LC_MESSAGES/wesnoth-sof.mo
+%%NLS%%share/locale/racv/LC_MESSAGES/wesnoth-sotbe.mo
+%%NLS%%share/locale/racv/LC_MESSAGES/wesnoth-tb.mo
+%%NLS%%share/locale/racv/LC_MESSAGES/wesnoth-test.mo
+%%NLS%%share/locale/racv/LC_MESSAGES/wesnoth-thot.mo
+%%NLS%%share/locale/racv/LC_MESSAGES/wesnoth-trow.mo
+%%NLS%%share/locale/racv/LC_MESSAGES/wesnoth-tsg.mo
+%%NLS%%share/locale/racv/LC_MESSAGES/wesnoth-tutorial.mo
+%%NLS%%share/locale/racv/LC_MESSAGES/wesnoth-units.mo
+%%NLS%%share/locale/racv/LC_MESSAGES/wesnoth-utbs.mo
+%%NLS%%share/locale/racv/LC_MESSAGES/wesnoth.mo
+%%NLS%%share/locale/ro/LC_MESSAGES/wesnoth-anl.mo
+%%NLS%%share/locale/ro/LC_MESSAGES/wesnoth-aoi.mo
+%%NLS%%share/locale/ro/LC_MESSAGES/wesnoth-did.mo
+%%NLS%%share/locale/ro/LC_MESSAGES/wesnoth-dm.mo
+%%NLS%%share/locale/ro/LC_MESSAGES/wesnoth-dw.mo
+%%NLS%%share/locale/ro/LC_MESSAGES/wesnoth-editor.mo
+%%NLS%%share/locale/ro/LC_MESSAGES/wesnoth-ei.mo
+%%NLS%%share/locale/ro/LC_MESSAGES/wesnoth-help.mo
+%%NLS%%share/locale/ro/LC_MESSAGES/wesnoth-httt.mo
+%%NLS%%share/locale/ro/LC_MESSAGES/wesnoth-l.mo
+%%NLS%%share/locale/ro/LC_MESSAGES/wesnoth-lib.mo
+%%NLS%%share/locale/ro/LC_MESSAGES/wesnoth-low.mo
+%%NLS%%share/locale/ro/LC_MESSAGES/wesnoth-multiplayer.mo
+%%NLS%%share/locale/ro/LC_MESSAGES/wesnoth-nr.mo
+%%NLS%%share/locale/ro/LC_MESSAGES/wesnoth-sof.mo
+%%NLS%%share/locale/ro/LC_MESSAGES/wesnoth-sotbe.mo
+%%NLS%%share/locale/ro/LC_MESSAGES/wesnoth-tb.mo
+%%NLS%%share/locale/ro/LC_MESSAGES/wesnoth-test.mo
+%%NLS%%share/locale/ro/LC_MESSAGES/wesnoth-thot.mo
+%%NLS%%share/locale/ro/LC_MESSAGES/wesnoth-trow.mo
+%%NLS%%share/locale/ro/LC_MESSAGES/wesnoth-tsg.mo
+%%NLS%%share/locale/ro/LC_MESSAGES/wesnoth-tutorial.mo
+%%NLS%%share/locale/ro/LC_MESSAGES/wesnoth-units.mo
+%%NLS%%share/locale/ro/LC_MESSAGES/wesnoth-utbs.mo
+%%NLS%%share/locale/ro/LC_MESSAGES/wesnoth.mo
+%%NLS%%share/locale/ru/LC_MESSAGES/wesnoth-anl.mo
+%%NLS%%share/locale/ru/LC_MESSAGES/wesnoth-aoi.mo
+%%NLS%%share/locale/ru/LC_MESSAGES/wesnoth-did.mo
+%%NLS%%share/locale/ru/LC_MESSAGES/wesnoth-dm.mo
+%%NLS%%share/locale/ru/LC_MESSAGES/wesnoth-dw.mo
+%%NLS%%share/locale/ru/LC_MESSAGES/wesnoth-editor.mo
+%%NLS%%share/locale/ru/LC_MESSAGES/wesnoth-ei.mo
+%%NLS%%share/locale/ru/LC_MESSAGES/wesnoth-help.mo
+%%NLS%%share/locale/ru/LC_MESSAGES/wesnoth-httt.mo
+%%NLS%%share/locale/ru/LC_MESSAGES/wesnoth-l.mo
+%%NLS%%share/locale/ru/LC_MESSAGES/wesnoth-lib.mo
+%%NLS%%share/locale/ru/LC_MESSAGES/wesnoth-low.mo
+%%NLS%%share/locale/ru/LC_MESSAGES/wesnoth-multiplayer.mo
+%%NLS%%share/locale/ru/LC_MESSAGES/wesnoth-nr.mo
+%%NLS%%share/locale/ru/LC_MESSAGES/wesnoth-sof.mo
+%%NLS%%share/locale/ru/LC_MESSAGES/wesnoth-sotbe.mo
+%%NLS%%share/locale/ru/LC_MESSAGES/wesnoth-tb.mo
+%%NLS%%share/locale/ru/LC_MESSAGES/wesnoth-test.mo
+%%NLS%%share/locale/ru/LC_MESSAGES/wesnoth-thot.mo
+%%NLS%%share/locale/ru/LC_MESSAGES/wesnoth-trow.mo
+%%NLS%%share/locale/ru/LC_MESSAGES/wesnoth-tsg.mo
+%%NLS%%share/locale/ru/LC_MESSAGES/wesnoth-tutorial.mo
+%%NLS%%share/locale/ru/LC_MESSAGES/wesnoth-units.mo
+%%NLS%%share/locale/ru/LC_MESSAGES/wesnoth-utbs.mo
+%%NLS%%share/locale/ru/LC_MESSAGES/wesnoth.mo
+%%NLS%%share/locale/sk/LC_MESSAGES/wesnoth-anl.mo
+%%NLS%%share/locale/sk/LC_MESSAGES/wesnoth-aoi.mo
+%%NLS%%share/locale/sk/LC_MESSAGES/wesnoth-did.mo
+%%NLS%%share/locale/sk/LC_MESSAGES/wesnoth-dm.mo
+%%NLS%%share/locale/sk/LC_MESSAGES/wesnoth-dw.mo
+%%NLS%%share/locale/sk/LC_MESSAGES/wesnoth-editor.mo
+%%NLS%%share/locale/sk/LC_MESSAGES/wesnoth-ei.mo
+%%NLS%%share/locale/sk/LC_MESSAGES/wesnoth-help.mo
+%%NLS%%share/locale/sk/LC_MESSAGES/wesnoth-httt.mo
+%%NLS%%share/locale/sk/LC_MESSAGES/wesnoth-l.mo
+%%NLS%%share/locale/sk/LC_MESSAGES/wesnoth-lib.mo
+%%NLS%%share/locale/sk/LC_MESSAGES/wesnoth-low.mo
+%%NLS%%share/locale/sk/LC_MESSAGES/wesnoth-multiplayer.mo
+%%NLS%%share/locale/sk/LC_MESSAGES/wesnoth-nr.mo
+%%NLS%%share/locale/sk/LC_MESSAGES/wesnoth-sof.mo
+%%NLS%%share/locale/sk/LC_MESSAGES/wesnoth-sotbe.mo
+%%NLS%%share/locale/sk/LC_MESSAGES/wesnoth-tb.mo
+%%NLS%%share/locale/sk/LC_MESSAGES/wesnoth-test.mo
+%%NLS%%share/locale/sk/LC_MESSAGES/wesnoth-thot.mo
+%%NLS%%share/locale/sk/LC_MESSAGES/wesnoth-trow.mo
+%%NLS%%share/locale/sk/LC_MESSAGES/wesnoth-tsg.mo
+%%NLS%%share/locale/sk/LC_MESSAGES/wesnoth-tutorial.mo
+%%NLS%%share/locale/sk/LC_MESSAGES/wesnoth-units.mo
+%%NLS%%share/locale/sk/LC_MESSAGES/wesnoth-utbs.mo
+%%NLS%%share/locale/sk/LC_MESSAGES/wesnoth.mo
+%%NLS%%share/locale/sl/LC_MESSAGES/wesnoth-anl.mo
+%%NLS%%share/locale/sl/LC_MESSAGES/wesnoth-aoi.mo
+%%NLS%%share/locale/sl/LC_MESSAGES/wesnoth-did.mo
+%%NLS%%share/locale/sl/LC_MESSAGES/wesnoth-dm.mo
+%%NLS%%share/locale/sl/LC_MESSAGES/wesnoth-dw.mo
+%%NLS%%share/locale/sl/LC_MESSAGES/wesnoth-editor.mo
+%%NLS%%share/locale/sl/LC_MESSAGES/wesnoth-ei.mo
+%%NLS%%share/locale/sl/LC_MESSAGES/wesnoth-help.mo
+%%NLS%%share/locale/sl/LC_MESSAGES/wesnoth-httt.mo
+%%NLS%%share/locale/sl/LC_MESSAGES/wesnoth-l.mo
+%%NLS%%share/locale/sl/LC_MESSAGES/wesnoth-lib.mo
+%%NLS%%share/locale/sl/LC_MESSAGES/wesnoth-low.mo
+%%NLS%%share/locale/sl/LC_MESSAGES/wesnoth-multiplayer.mo
+%%NLS%%share/locale/sl/LC_MESSAGES/wesnoth-nr.mo
+%%NLS%%share/locale/sl/LC_MESSAGES/wesnoth-sof.mo
+%%NLS%%share/locale/sl/LC_MESSAGES/wesnoth-sotbe.mo
+%%NLS%%share/locale/sl/LC_MESSAGES/wesnoth-tb.mo
+%%NLS%%share/locale/sl/LC_MESSAGES/wesnoth-test.mo
+%%NLS%%share/locale/sl/LC_MESSAGES/wesnoth-thot.mo
+%%NLS%%share/locale/sl/LC_MESSAGES/wesnoth-trow.mo
+%%NLS%%share/locale/sl/LC_MESSAGES/wesnoth-tsg.mo
+%%NLS%%share/locale/sl/LC_MESSAGES/wesnoth-tutorial.mo
+%%NLS%%share/locale/sl/LC_MESSAGES/wesnoth-units.mo
+%%NLS%%share/locale/sl/LC_MESSAGES/wesnoth-utbs.mo
+%%NLS%%share/locale/sl/LC_MESSAGES/wesnoth.mo
+%%NLS%%share/locale/sr/LC_MESSAGES/wesnoth-anl.mo
+%%NLS%%share/locale/sr/LC_MESSAGES/wesnoth-aoi.mo
+%%NLS%%share/locale/sr/LC_MESSAGES/wesnoth-did.mo
+%%NLS%%share/locale/sr/LC_MESSAGES/wesnoth-dm.mo
+%%NLS%%share/locale/sr/LC_MESSAGES/wesnoth-dw.mo
+%%NLS%%share/locale/sr/LC_MESSAGES/wesnoth-editor.mo
+%%NLS%%share/locale/sr/LC_MESSAGES/wesnoth-ei.mo
+%%NLS%%share/locale/sr/LC_MESSAGES/wesnoth-help.mo
+%%NLS%%share/locale/sr/LC_MESSAGES/wesnoth-httt.mo
+%%NLS%%share/locale/sr/LC_MESSAGES/wesnoth-l.mo
+%%NLS%%share/locale/sr/LC_MESSAGES/wesnoth-lib.mo
+%%NLS%%share/locale/sr/LC_MESSAGES/wesnoth-low.mo
+%%NLS%%share/locale/sr/LC_MESSAGES/wesnoth-multiplayer.mo
+%%NLS%%share/locale/sr/LC_MESSAGES/wesnoth-nr.mo
+%%NLS%%share/locale/sr/LC_MESSAGES/wesnoth-sof.mo
+%%NLS%%share/locale/sr/LC_MESSAGES/wesnoth-sotbe.mo
+%%NLS%%share/locale/sr/LC_MESSAGES/wesnoth-tb.mo
+%%NLS%%share/locale/sr/LC_MESSAGES/wesnoth-test.mo
+%%NLS%%share/locale/sr/LC_MESSAGES/wesnoth-thot.mo
+%%NLS%%share/locale/sr/LC_MESSAGES/wesnoth-trow.mo
+%%NLS%%share/locale/sr/LC_MESSAGES/wesnoth-tsg.mo
+%%NLS%%share/locale/sr/LC_MESSAGES/wesnoth-tutorial.mo
+%%NLS%%share/locale/sr/LC_MESSAGES/wesnoth-units.mo
+%%NLS%%share/locale/sr/LC_MESSAGES/wesnoth-utbs.mo
+%%NLS%%share/locale/sr/LC_MESSAGES/wesnoth.mo
+%%NLS%%share/locale/sr@ijekavian/LC_MESSAGES/wesnoth-anl.mo
+%%NLS%%share/locale/sr@ijekavian/LC_MESSAGES/wesnoth-aoi.mo
+%%NLS%%share/locale/sr@ijekavian/LC_MESSAGES/wesnoth-did.mo
+%%NLS%%share/locale/sr@ijekavian/LC_MESSAGES/wesnoth-dm.mo
+%%NLS%%share/locale/sr@ijekavian/LC_MESSAGES/wesnoth-dw.mo
+%%NLS%%share/locale/sr@ijekavian/LC_MESSAGES/wesnoth-editor.mo
+%%NLS%%share/locale/sr@ijekavian/LC_MESSAGES/wesnoth-ei.mo
+%%NLS%%share/locale/sr@ijekavian/LC_MESSAGES/wesnoth-help.mo
+%%NLS%%share/locale/sr@ijekavian/LC_MESSAGES/wesnoth-httt.mo
+%%NLS%%share/locale/sr@ijekavian/LC_MESSAGES/wesnoth-l.mo
+%%NLS%%share/locale/sr@ijekavian/LC_MESSAGES/wesnoth-lib.mo
+%%NLS%%share/locale/sr@ijekavian/LC_MESSAGES/wesnoth-low.mo
+%%NLS%%share/locale/sr@ijekavian/LC_MESSAGES/wesnoth-multiplayer.mo
+%%NLS%%share/locale/sr@ijekavian/LC_MESSAGES/wesnoth-nr.mo
+%%NLS%%share/locale/sr@ijekavian/LC_MESSAGES/wesnoth-sof.mo
+%%NLS%%share/locale/sr@ijekavian/LC_MESSAGES/wesnoth-sotbe.mo
+%%NLS%%share/locale/sr@ijekavian/LC_MESSAGES/wesnoth-tb.mo
+%%NLS%%share/locale/sr@ijekavian/LC_MESSAGES/wesnoth-test.mo
+%%NLS%%share/locale/sr@ijekavian/LC_MESSAGES/wesnoth-thot.mo
+%%NLS%%share/locale/sr@ijekavian/LC_MESSAGES/wesnoth-trow.mo
+%%NLS%%share/locale/sr@ijekavian/LC_MESSAGES/wesnoth-tsg.mo
+%%NLS%%share/locale/sr@ijekavian/LC_MESSAGES/wesnoth-tutorial.mo
+%%NLS%%share/locale/sr@ijekavian/LC_MESSAGES/wesnoth-units.mo
+%%NLS%%share/locale/sr@ijekavian/LC_MESSAGES/wesnoth-utbs.mo
+%%NLS%%share/locale/sr@ijekavian/LC_MESSAGES/wesnoth.mo
+%%NLS%%share/locale/sr@ijekavianlatin/LC_MESSAGES/wesnoth-anl.mo
+%%NLS%%share/locale/sr@ijekavianlatin/LC_MESSAGES/wesnoth-aoi.mo
+%%NLS%%share/locale/sr@ijekavianlatin/LC_MESSAGES/wesnoth-did.mo
+%%NLS%%share/locale/sr@ijekavianlatin/LC_MESSAGES/wesnoth-dm.mo
+%%NLS%%share/locale/sr@ijekavianlatin/LC_MESSAGES/wesnoth-dw.mo
+%%NLS%%share/locale/sr@ijekavianlatin/LC_MESSAGES/wesnoth-editor.mo
+%%NLS%%share/locale/sr@ijekavianlatin/LC_MESSAGES/wesnoth-ei.mo
+%%NLS%%share/locale/sr@ijekavianlatin/LC_MESSAGES/wesnoth-help.mo
+%%NLS%%share/locale/sr@ijekavianlatin/LC_MESSAGES/wesnoth-httt.mo
+%%NLS%%share/locale/sr@ijekavianlatin/LC_MESSAGES/wesnoth-l.mo
+%%NLS%%share/locale/sr@ijekavianlatin/LC_MESSAGES/wesnoth-lib.mo
+%%NLS%%share/locale/sr@ijekavianlatin/LC_MESSAGES/wesnoth-low.mo
+%%NLS%%share/locale/sr@ijekavianlatin/LC_MESSAGES/wesnoth-multiplayer.mo
+%%NLS%%share/locale/sr@ijekavianlatin/LC_MESSAGES/wesnoth-nr.mo
+%%NLS%%share/locale/sr@ijekavianlatin/LC_MESSAGES/wesnoth-sof.mo
+%%NLS%%share/locale/sr@ijekavianlatin/LC_MESSAGES/wesnoth-sotbe.mo
+%%NLS%%share/locale/sr@ijekavianlatin/LC_MESSAGES/wesnoth-tb.mo
+%%NLS%%share/locale/sr@ijekavianlatin/LC_MESSAGES/wesnoth-test.mo
+%%NLS%%share/locale/sr@ijekavianlatin/LC_MESSAGES/wesnoth-thot.mo
+%%NLS%%share/locale/sr@ijekavianlatin/LC_MESSAGES/wesnoth-trow.mo
+%%NLS%%share/locale/sr@ijekavianlatin/LC_MESSAGES/wesnoth-tsg.mo
+%%NLS%%share/locale/sr@ijekavianlatin/LC_MESSAGES/wesnoth-tutorial.mo
+%%NLS%%share/locale/sr@ijekavianlatin/LC_MESSAGES/wesnoth-units.mo
+%%NLS%%share/locale/sr@ijekavianlatin/LC_MESSAGES/wesnoth-utbs.mo
+%%NLS%%share/locale/sr@ijekavianlatin/LC_MESSAGES/wesnoth.mo
+%%NLS%%share/locale/sr@latin/LC_MESSAGES/wesnoth-anl.mo
+%%NLS%%share/locale/sr@latin/LC_MESSAGES/wesnoth-aoi.mo
+%%NLS%%share/locale/sr@latin/LC_MESSAGES/wesnoth-did.mo
+%%NLS%%share/locale/sr@latin/LC_MESSAGES/wesnoth-dm.mo
+%%NLS%%share/locale/sr@latin/LC_MESSAGES/wesnoth-dw.mo
+%%NLS%%share/locale/sr@latin/LC_MESSAGES/wesnoth-editor.mo
+%%NLS%%share/locale/sr@latin/LC_MESSAGES/wesnoth-ei.mo
+%%NLS%%share/locale/sr@latin/LC_MESSAGES/wesnoth-help.mo
+%%NLS%%share/locale/sr@latin/LC_MESSAGES/wesnoth-httt.mo
+%%NLS%%share/locale/sr@latin/LC_MESSAGES/wesnoth-l.mo
+%%NLS%%share/locale/sr@latin/LC_MESSAGES/wesnoth-lib.mo
+%%NLS%%share/locale/sr@latin/LC_MESSAGES/wesnoth-low.mo
+%%NLS%%share/locale/sr@latin/LC_MESSAGES/wesnoth-multiplayer.mo
+%%NLS%%share/locale/sr@latin/LC_MESSAGES/wesnoth-nr.mo
+%%NLS%%share/locale/sr@latin/LC_MESSAGES/wesnoth-sof.mo
+%%NLS%%share/locale/sr@latin/LC_MESSAGES/wesnoth-sotbe.mo
+%%NLS%%share/locale/sr@latin/LC_MESSAGES/wesnoth-tb.mo
+%%NLS%%share/locale/sr@latin/LC_MESSAGES/wesnoth-test.mo
+%%NLS%%share/locale/sr@latin/LC_MESSAGES/wesnoth-thot.mo
+%%NLS%%share/locale/sr@latin/LC_MESSAGES/wesnoth-trow.mo
+%%NLS%%share/locale/sr@latin/LC_MESSAGES/wesnoth-tsg.mo
+%%NLS%%share/locale/sr@latin/LC_MESSAGES/wesnoth-tutorial.mo
+%%NLS%%share/locale/sr@latin/LC_MESSAGES/wesnoth-units.mo
+%%NLS%%share/locale/sr@latin/LC_MESSAGES/wesnoth-utbs.mo
+%%NLS%%share/locale/sr@latin/LC_MESSAGES/wesnoth.mo
+%%NLS%%share/locale/sv/LC_MESSAGES/wesnoth-anl.mo
+%%NLS%%share/locale/sv/LC_MESSAGES/wesnoth-aoi.mo
+%%NLS%%share/locale/sv/LC_MESSAGES/wesnoth-did.mo
+%%NLS%%share/locale/sv/LC_MESSAGES/wesnoth-dm.mo
+%%NLS%%share/locale/sv/LC_MESSAGES/wesnoth-dw.mo
+%%NLS%%share/locale/sv/LC_MESSAGES/wesnoth-editor.mo
+%%NLS%%share/locale/sv/LC_MESSAGES/wesnoth-ei.mo
+%%NLS%%share/locale/sv/LC_MESSAGES/wesnoth-help.mo
+%%NLS%%share/locale/sv/LC_MESSAGES/wesnoth-httt.mo
+%%NLS%%share/locale/sv/LC_MESSAGES/wesnoth-l.mo
+%%NLS%%share/locale/sv/LC_MESSAGES/wesnoth-lib.mo
+%%NLS%%share/locale/sv/LC_MESSAGES/wesnoth-low.mo
+%%NLS%%share/locale/sv/LC_MESSAGES/wesnoth-multiplayer.mo
+%%NLS%%share/locale/sv/LC_MESSAGES/wesnoth-nr.mo
+%%NLS%%share/locale/sv/LC_MESSAGES/wesnoth-sof.mo
+%%NLS%%share/locale/sv/LC_MESSAGES/wesnoth-sotbe.mo
+%%NLS%%share/locale/sv/LC_MESSAGES/wesnoth-tb.mo
+%%NLS%%share/locale/sv/LC_MESSAGES/wesnoth-test.mo
+%%NLS%%share/locale/sv/LC_MESSAGES/wesnoth-thot.mo
+%%NLS%%share/locale/sv/LC_MESSAGES/wesnoth-trow.mo
+%%NLS%%share/locale/sv/LC_MESSAGES/wesnoth-tsg.mo
+%%NLS%%share/locale/sv/LC_MESSAGES/wesnoth-tutorial.mo
+%%NLS%%share/locale/sv/LC_MESSAGES/wesnoth-units.mo
+%%NLS%%share/locale/sv/LC_MESSAGES/wesnoth-utbs.mo
+%%NLS%%share/locale/sv/LC_MESSAGES/wesnoth.mo
+%%NLS%%share/locale/tl/LC_MESSAGES/wesnoth-anl.mo
+%%NLS%%share/locale/tl/LC_MESSAGES/wesnoth-aoi.mo
+%%NLS%%share/locale/tl/LC_MESSAGES/wesnoth-did.mo
+%%NLS%%share/locale/tl/LC_MESSAGES/wesnoth-dm.mo
+%%NLS%%share/locale/tl/LC_MESSAGES/wesnoth-dw.mo
+%%NLS%%share/locale/tl/LC_MESSAGES/wesnoth-editor.mo
+%%NLS%%share/locale/tl/LC_MESSAGES/wesnoth-ei.mo
+%%NLS%%share/locale/tl/LC_MESSAGES/wesnoth-help.mo
+%%NLS%%share/locale/tl/LC_MESSAGES/wesnoth-httt.mo
+%%NLS%%share/locale/tl/LC_MESSAGES/wesnoth-l.mo
+%%NLS%%share/locale/tl/LC_MESSAGES/wesnoth-lib.mo
+%%NLS%%share/locale/tl/LC_MESSAGES/wesnoth-low.mo
+%%NLS%%share/locale/tl/LC_MESSAGES/wesnoth-multiplayer.mo
+%%NLS%%share/locale/tl/LC_MESSAGES/wesnoth-nr.mo
+%%NLS%%share/locale/tl/LC_MESSAGES/wesnoth-sof.mo
+%%NLS%%share/locale/tl/LC_MESSAGES/wesnoth-sotbe.mo
+%%NLS%%share/locale/tl/LC_MESSAGES/wesnoth-tb.mo
+%%NLS%%share/locale/tl/LC_MESSAGES/wesnoth-test.mo
+%%NLS%%share/locale/tl/LC_MESSAGES/wesnoth-thot.mo
+%%NLS%%share/locale/tl/LC_MESSAGES/wesnoth-trow.mo
+%%NLS%%share/locale/tl/LC_MESSAGES/wesnoth-tsg.mo
+%%NLS%%share/locale/tl/LC_MESSAGES/wesnoth-tutorial.mo
+%%NLS%%share/locale/tl/LC_MESSAGES/wesnoth-units.mo
+%%NLS%%share/locale/tl/LC_MESSAGES/wesnoth-utbs.mo
+%%NLS%%share/locale/tl/LC_MESSAGES/wesnoth.mo
+%%NLS%%share/locale/tr/LC_MESSAGES/wesnoth-anl.mo
+%%NLS%%share/locale/tr/LC_MESSAGES/wesnoth-aoi.mo
+%%NLS%%share/locale/tr/LC_MESSAGES/wesnoth-did.mo
+%%NLS%%share/locale/tr/LC_MESSAGES/wesnoth-dm.mo
+%%NLS%%share/locale/tr/LC_MESSAGES/wesnoth-dw.mo
+%%NLS%%share/locale/tr/LC_MESSAGES/wesnoth-editor.mo
+%%NLS%%share/locale/tr/LC_MESSAGES/wesnoth-ei.mo
+%%NLS%%share/locale/tr/LC_MESSAGES/wesnoth-help.mo
+%%NLS%%share/locale/tr/LC_MESSAGES/wesnoth-httt.mo
+%%NLS%%share/locale/tr/LC_MESSAGES/wesnoth-l.mo
+%%NLS%%share/locale/tr/LC_MESSAGES/wesnoth-lib.mo
+%%NLS%%share/locale/tr/LC_MESSAGES/wesnoth-low.mo
+%%NLS%%share/locale/tr/LC_MESSAGES/wesnoth-multiplayer.mo
+%%NLS%%share/locale/tr/LC_MESSAGES/wesnoth-nr.mo
+%%NLS%%share/locale/tr/LC_MESSAGES/wesnoth-sof.mo
+%%NLS%%share/locale/tr/LC_MESSAGES/wesnoth-sotbe.mo
+%%NLS%%share/locale/tr/LC_MESSAGES/wesnoth-tb.mo
+%%NLS%%share/locale/tr/LC_MESSAGES/wesnoth-test.mo
+%%NLS%%share/locale/tr/LC_MESSAGES/wesnoth-thot.mo
+%%NLS%%share/locale/tr/LC_MESSAGES/wesnoth-trow.mo
+%%NLS%%share/locale/tr/LC_MESSAGES/wesnoth-tsg.mo
+%%NLS%%share/locale/tr/LC_MESSAGES/wesnoth-tutorial.mo
+%%NLS%%share/locale/tr/LC_MESSAGES/wesnoth-units.mo
+%%NLS%%share/locale/tr/LC_MESSAGES/wesnoth-utbs.mo
+%%NLS%%share/locale/tr/LC_MESSAGES/wesnoth.mo
+%%NLS%%share/locale/uk/LC_MESSAGES/wesnoth-anl.mo
+%%NLS%%share/locale/uk/LC_MESSAGES/wesnoth-aoi.mo
+%%NLS%%share/locale/uk/LC_MESSAGES/wesnoth-did.mo
+%%NLS%%share/locale/uk/LC_MESSAGES/wesnoth-dm.mo
+%%NLS%%share/locale/uk/LC_MESSAGES/wesnoth-dw.mo
+%%NLS%%share/locale/uk/LC_MESSAGES/wesnoth-editor.mo
+%%NLS%%share/locale/uk/LC_MESSAGES/wesnoth-ei.mo
+%%NLS%%share/locale/uk/LC_MESSAGES/wesnoth-help.mo
+%%NLS%%share/locale/uk/LC_MESSAGES/wesnoth-httt.mo
+%%NLS%%share/locale/uk/LC_MESSAGES/wesnoth-l.mo
+%%NLS%%share/locale/uk/LC_MESSAGES/wesnoth-lib.mo
+%%NLS%%share/locale/uk/LC_MESSAGES/wesnoth-low.mo
+%%NLS%%share/locale/uk/LC_MESSAGES/wesnoth-multiplayer.mo
+%%NLS%%share/locale/uk/LC_MESSAGES/wesnoth-nr.mo
+%%NLS%%share/locale/uk/LC_MESSAGES/wesnoth-sof.mo
+%%NLS%%share/locale/uk/LC_MESSAGES/wesnoth-sotbe.mo
+%%NLS%%share/locale/uk/LC_MESSAGES/wesnoth-tb.mo
+%%NLS%%share/locale/uk/LC_MESSAGES/wesnoth-test.mo
+%%NLS%%share/locale/uk/LC_MESSAGES/wesnoth-thot.mo
+%%NLS%%share/locale/uk/LC_MESSAGES/wesnoth-trow.mo
+%%NLS%%share/locale/uk/LC_MESSAGES/wesnoth-tsg.mo
+%%NLS%%share/locale/uk/LC_MESSAGES/wesnoth-tutorial.mo
+%%NLS%%share/locale/uk/LC_MESSAGES/wesnoth-units.mo
+%%NLS%%share/locale/uk/LC_MESSAGES/wesnoth-utbs.mo
+%%NLS%%share/locale/uk/LC_MESSAGES/wesnoth.mo
+%%NLS%%share/locale/vi/LC_MESSAGES/wesnoth-anl.mo
+%%NLS%%share/locale/vi/LC_MESSAGES/wesnoth-aoi.mo
+%%NLS%%share/locale/vi/LC_MESSAGES/wesnoth-did.mo
+%%NLS%%share/locale/vi/LC_MESSAGES/wesnoth-dm.mo
+%%NLS%%share/locale/vi/LC_MESSAGES/wesnoth-dw.mo
+%%NLS%%share/locale/vi/LC_MESSAGES/wesnoth-editor.mo
+%%NLS%%share/locale/vi/LC_MESSAGES/wesnoth-ei.mo
+%%NLS%%share/locale/vi/LC_MESSAGES/wesnoth-help.mo
+%%NLS%%share/locale/vi/LC_MESSAGES/wesnoth-httt.mo
+%%NLS%%share/locale/vi/LC_MESSAGES/wesnoth-l.mo
+%%NLS%%share/locale/vi/LC_MESSAGES/wesnoth-lib.mo
+%%NLS%%share/locale/vi/LC_MESSAGES/wesnoth-low.mo
+%%NLS%%share/locale/vi/LC_MESSAGES/wesnoth-multiplayer.mo
+%%NLS%%share/locale/vi/LC_MESSAGES/wesnoth-nr.mo
+%%NLS%%share/locale/vi/LC_MESSAGES/wesnoth-sof.mo
+%%NLS%%share/locale/vi/LC_MESSAGES/wesnoth-sotbe.mo
+%%NLS%%share/locale/vi/LC_MESSAGES/wesnoth-tb.mo
+%%NLS%%share/locale/vi/LC_MESSAGES/wesnoth-test.mo
+%%NLS%%share/locale/vi/LC_MESSAGES/wesnoth-thot.mo
+%%NLS%%share/locale/vi/LC_MESSAGES/wesnoth-trow.mo
+%%NLS%%share/locale/vi/LC_MESSAGES/wesnoth-tsg.mo
+%%NLS%%share/locale/vi/LC_MESSAGES/wesnoth-tutorial.mo
+%%NLS%%share/locale/vi/LC_MESSAGES/wesnoth-units.mo
+%%NLS%%share/locale/vi/LC_MESSAGES/wesnoth-utbs.mo
+%%NLS%%share/locale/vi/LC_MESSAGES/wesnoth.mo
+%%NLS%%share/locale/zh_CN/LC_MESSAGES/wesnoth-anl.mo
+%%NLS%%share/locale/zh_CN/LC_MESSAGES/wesnoth-aoi.mo
+%%NLS%%share/locale/zh_CN/LC_MESSAGES/wesnoth-did.mo
+%%NLS%%share/locale/zh_CN/LC_MESSAGES/wesnoth-dm.mo
+%%NLS%%share/locale/zh_CN/LC_MESSAGES/wesnoth-dw.mo
+%%NLS%%share/locale/zh_CN/LC_MESSAGES/wesnoth-editor.mo
+%%NLS%%share/locale/zh_CN/LC_MESSAGES/wesnoth-ei.mo
+%%NLS%%share/locale/zh_CN/LC_MESSAGES/wesnoth-help.mo
+%%NLS%%share/locale/zh_CN/LC_MESSAGES/wesnoth-httt.mo
+%%NLS%%share/locale/zh_CN/LC_MESSAGES/wesnoth-l.mo
+%%NLS%%share/locale/zh_CN/LC_MESSAGES/wesnoth-lib.mo
+%%NLS%%share/locale/zh_CN/LC_MESSAGES/wesnoth-low.mo
+%%NLS%%share/locale/zh_CN/LC_MESSAGES/wesnoth-multiplayer.mo
+%%NLS%%share/locale/zh_CN/LC_MESSAGES/wesnoth-nr.mo
+%%NLS%%share/locale/zh_CN/LC_MESSAGES/wesnoth-sof.mo
+%%NLS%%share/locale/zh_CN/LC_MESSAGES/wesnoth-sotbe.mo
+%%NLS%%share/locale/zh_CN/LC_MESSAGES/wesnoth-tb.mo
+%%NLS%%share/locale/zh_CN/LC_MESSAGES/wesnoth-test.mo
+%%NLS%%share/locale/zh_CN/LC_MESSAGES/wesnoth-thot.mo
+%%NLS%%share/locale/zh_CN/LC_MESSAGES/wesnoth-trow.mo
+%%NLS%%share/locale/zh_CN/LC_MESSAGES/wesnoth-tsg.mo
+%%NLS%%share/locale/zh_CN/LC_MESSAGES/wesnoth-tutorial.mo
+%%NLS%%share/locale/zh_CN/LC_MESSAGES/wesnoth-units.mo
+%%NLS%%share/locale/zh_CN/LC_MESSAGES/wesnoth-utbs.mo
+%%NLS%%share/locale/zh_CN/LC_MESSAGES/wesnoth.mo
+%%NLS%%share/locale/zh_TW/LC_MESSAGES/wesnoth-anl.mo
+%%NLS%%share/locale/zh_TW/LC_MESSAGES/wesnoth-aoi.mo
+%%NLS%%share/locale/zh_TW/LC_MESSAGES/wesnoth-did.mo
+%%NLS%%share/locale/zh_TW/LC_MESSAGES/wesnoth-dm.mo
+%%NLS%%share/locale/zh_TW/LC_MESSAGES/wesnoth-dw.mo
+%%NLS%%share/locale/zh_TW/LC_MESSAGES/wesnoth-editor.mo
+%%NLS%%share/locale/zh_TW/LC_MESSAGES/wesnoth-ei.mo
+%%NLS%%share/locale/zh_TW/LC_MESSAGES/wesnoth-help.mo
+%%NLS%%share/locale/zh_TW/LC_MESSAGES/wesnoth-httt.mo
+%%NLS%%share/locale/zh_TW/LC_MESSAGES/wesnoth-l.mo
+%%NLS%%share/locale/zh_TW/LC_MESSAGES/wesnoth-lib.mo
+%%NLS%%share/locale/zh_TW/LC_MESSAGES/wesnoth-low.mo
+%%NLS%%share/locale/zh_TW/LC_MESSAGES/wesnoth-multiplayer.mo
+%%NLS%%share/locale/zh_TW/LC_MESSAGES/wesnoth-nr.mo
+%%NLS%%share/locale/zh_TW/LC_MESSAGES/wesnoth-sof.mo
+%%NLS%%share/locale/zh_TW/LC_MESSAGES/wesnoth-sotbe.mo
+%%NLS%%share/locale/zh_TW/LC_MESSAGES/wesnoth-tb.mo
+%%NLS%%share/locale/zh_TW/LC_MESSAGES/wesnoth-test.mo
+%%NLS%%share/locale/zh_TW/LC_MESSAGES/wesnoth-thot.mo
+%%NLS%%share/locale/zh_TW/LC_MESSAGES/wesnoth-trow.mo
+%%NLS%%share/locale/zh_TW/LC_MESSAGES/wesnoth-tsg.mo
+%%NLS%%share/locale/zh_TW/LC_MESSAGES/wesnoth-tutorial.mo
+%%NLS%%share/locale/zh_TW/LC_MESSAGES/wesnoth-units.mo
+%%NLS%%share/locale/zh_TW/LC_MESSAGES/wesnoth-utbs.mo
+%%NLS%%share/locale/zh_TW/LC_MESSAGES/wesnoth.mo
+share/pixmaps/wesnoth-icon.png
+share/pixmaps/wesnoth_editor-icon.png
+%%PYTHON%%@dirrm %%PYTHON_SITELIBDIR%%/wesnoth
+@dirrmtry man/af/man6
+@dirrmtry man/af
+@dirrmtry man/ang/man6
+@dirrmtry man/ang
+@dirrmtry man/ang@latin/man6
+@dirrmtry man/ang@latin
+@dirrmtry man/ar/man6
+@dirrmtry man/ar
+@dirrmtry man/bg/man6
+@dirrmtry man/bg
+@dirrmtry man/ca/man6
+@dirrmtry man/ca
+@dirrmtry man/ca_ES@valencia/man6
+@dirrmtry man/ca_ES@valencia
+@dirrmtry man/cs/man6
+@dirrmtry man/cs
+@dirrmtry man/da/man6
+@dirrmtry man/da
+@dirrmtry man/de/man6
+@dirrmtry man/de
+@dirrmtry man/el/man6
+@dirrmtry man/el
+@dirrmtry man/en@shaw/man6
+@dirrmtry man/en@shaw
+@dirrmtry man/en_GB/man6
+@dirrmtry man/en_GB
+@dirrmtry man/eo/man6
+@dirrmtry man/eo
+@dirrmtry man/es/man6
+@dirrmtry man/es
+@dirrmtry man/et/man6
+@dirrmtry man/et
+@dirrmtry man/eu/man6
+@dirrmtry man/eu
+@dirrmtry man/fi/man6
+@dirrmtry man/fi
+@dirrmtry man/fr/man6
+@dirrmtry man/fr
+@dirrmtry man/fur_IT/man6
+@dirrmtry man/fur_IT
+@dirrmtry man/ga/man6
+@dirrmtry man/ga
+@dirrmtry man/gl/man6
+@dirrmtry man/gl
+@dirrmtry man/he/man6
+@dirrmtry man/he
+@dirrmtry man/hr/man6
+@dirrmtry man/hr
+@dirrmtry man/hu/man6
+@dirrmtry man/hu
+@dirrmtry man/id/man6
+@dirrmtry man/id
+@dirrmtry man/is/man6
+@dirrmtry man/is
+@dirrmtry man/it/man6
+@dirrmtry man/it
+@dirrmtry man/ko/man6
+@dirrmtry man/ko
+@dirrmtry man/la/man6
+@dirrmtry man/la
+@dirrmtry man/lt/man6
+@dirrmtry man/lt
+@dirrmtry man/lv/man6
+@dirrmtry man/lv
+@dirrmtry man/mk/man6
+@dirrmtry man/mk
+@dirrmtry man/mr/man6
+@dirrmtry man/mr
+@dirrmtry man/nb_NO/man6
+@dirrmtry man/nb_NO
+@dirrmtry man/nl/man6
+@dirrmtry man/nl
+@dirrmtry man/pl/man6
+@dirrmtry man/pl
+@dirrmtry man/pt/man6
+@dirrmtry man/pt
+@dirrmtry man/pt_BR/man6
+@dirrmtry man/pt_BR
+@dirrmtry man/racv/man6
+@dirrmtry man/racv
+@dirrmtry man/ro/man6
+@dirrmtry man/ro
+@dirrmtry man/ru/man6
+@dirrmtry man/ru
+@dirrmtry man/sk/man6
+@dirrmtry man/sk
+@dirrmtry man/sl/man6
+@dirrmtry man/sl
+@dirrmtry man/sr/man6
+@dirrmtry man/sr
+@dirrmtry man/sr@ijekavian/man6
+@dirrmtry man/sr@ijekavian
+@dirrmtry man/sr@ijekavianlatin/man6
+@dirrmtry man/sr@ijekavianlatin
+@dirrmtry man/sr@latin/man6
+@dirrmtry man/sr@latin
+@dirrmtry man/sv/man6
+@dirrmtry man/sv
+@dirrmtry man/tl/man6
+@dirrmtry man/tl
+@dirrmtry man/tr/man6
+@dirrmtry man/tr
+@dirrmtry man/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


>Release-Note:
>Audit-Trail:
>Unformatted:



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201401031407.s03E70bS043559>