svn commit: r475295 - in head/games/wesnoth: . files

Dima Panov fluffy at FreeBSD.org
Wed Jul 25 03:43:56 UTC 2018


Author: fluffy
Date: Wed Jul 25 03:43:54 2018
New Revision: 475295
URL: https://svnweb.freebsd.org/changeset/ports/475295

Log:
  - Update Battle of Wesnoth to 1.14.3 release
  
  PR:		228984 (based on)
  Submitted by:	Maik Fischer

Added:
  head/games/wesnoth/files/patch-src_game__initialization_lobby__data.hpp   (contents, props changed)
  head/games/wesnoth/files/patch-src_replay.hpp   (contents, props changed)
Deleted:
  head/games/wesnoth/files/patch-src_tests_test__util.cpp
Modified:
  head/games/wesnoth/Makefile
  head/games/wesnoth/distinfo
  head/games/wesnoth/pkg-plist

Modified: head/games/wesnoth/Makefile
==============================================================================
--- head/games/wesnoth/Makefile	Wed Jul 25 03:39:04 2018	(r475294)
+++ head/games/wesnoth/Makefile	Wed Jul 25 03:43:54 2018	(r475295)
@@ -1,8 +1,7 @@
 # $FreeBSD$
 
 PORTNAME=	wesnoth
-PORTVERSION=	1.12.6
-PORTREVISION=	11
+PORTVERSION=	1.14.3
 PORTEPOCH=	1
 CATEGORIES=	games
 MASTER_SITES=	SF/${PORTNAME}/${PORTNAME}-${PORTVERSION:R}/${PORTNAME}-${PORTVERSION} \
@@ -29,30 +28,36 @@ LDFLAGS+=	-L${LOCALBASE}/lib -lboost_system
 
 PORTSCOUT=	limitw:1,even
 
-USES=		cmake cpe pkgconfig python:run shebangfix tar:bzip2
-USE_SDL=	image mixer net ttf
+USES=		cmake:outsource cpe pkgconfig python:2.7,run readline:port shebangfix ssl tar:bzip2
+USE_SDL=	image2 mixer2 ttf2
 USE_LDCONFIG=	yes
 USE_GNOME=	cairo pango
 USE_XORG=	ice sm x11 xext
 SHEBANG_FILES=	data/tools/about_cfg_to_wiki \
+		data/tools/addon_manager/html.py \
 		data/tools/campaign2wiki.py \
-		data/tools/castle-cutter/mk-castle.sh \
 		data/tools/expand-terrain-macros.py \
 		data/tools/extractbindings data/tools/imgcheck \
+		data/tools/hexometer.py \
 		data/tools/journeylifter data/tools/rmtrans/rmtrans.py \
 		data/tools/scoutDefault.py data/tools/terrain2wiki.py \
 		data/tools/trackplacer data/tools/unit_tree/TeamColorizer \
+		data/tools/unit_tree/helpers.py \
 		data/tools/unit_tree/overview.py \
 		data/tools/unit_tree/update-wmlunits \
+		data/tools/wesnoth/campaignserver_client.py \
 		data/tools/wesnoth/wescamp.py data/tools/wesnoth/wmldata.py \
 		data/tools/wesnoth/wmlparser.py \
 		data/tools/wesnoth/wmlparser2.py \
+		data/tools/wesnoth/wmlparser3.py \
 		data/tools/wesnoth_addon_manager data/tools/wmlflip \
 		data/tools/wmlindent data/tools/wmllint \
-		data/tools/wmllint-1.4 data/tools/wmllint_gui \
-		data/tools/wmlmove data/tools/wmlscope data/tools/wmlunits \
+		data/tools/wmllint-1.4 \
+		data/tools/wmlunits \
+		data/tools/wmlscope \
 		data/tools/wmlvalidator \
 		data/tools/GUI.pyw
+
 CPE_VENDOR=	${PORTNAME}
 CPE_PRODUCT=	battle_for_wesnoth
 CMAKE_ARGS=	-DMANDIR="man" -DENABLE_STRICT_COMPILATION=off
@@ -60,41 +65,27 @@ CMAKE_ARGS=	-DMANDIR="man" -DENABLE_STRICT_COMPILATION
 PORTDOCS=	*
 PORTDATA=	*
 
-OPTIONS_DEFINE=	ANA CAMPAIGN DOCS FRIBIDI LOWMEM NLS \
-		NOTIFY OPENMP RAWSOCKETS SERVER TEST TOOLS
-OPTIONS_DEFAULT=	CAMPAIGN FRIBIDI NOTIFY OPENMP SERVER TOOLS
+OPTIONS_DEFINE=	CAMPAIGN DOCS FRIBIDI NLS \
+		NOTIFY SERVER TEST
+OPTIONS_DEFAULT=	CAMPAIGN FRIBIDI NOTIFY SERVER
 OPTIONS_SUB=	yes
 
-ANA_DESC=	Asynchronous Network API (WIP)
-ANA_CMAKE_ON=	-DUSE_ANA_NETWORK=on
 CAMPAIGN_DESC=	Campaign server
 CAMPAIGN_CMAKE_ON=-DENABLE_CAMPAIGN_SERVER=on
 DOCS_CMAKE_OFF=	-DDOCDIR=none
 FRIBIDI_DESC=	Bidirectional support
 FRIBIDI_LIB_DEPENDS=libfribidi.so:converters/fribidi
 FRIBIDI_CMAKE_OFF=-DENABLE_FRIBIDI=off
-LOWMEM_DESC=	Reduce memory usage (disables animations)
-LOWMEM_CMAKE_ON=-DENABLE_LOW_MEM=on
 NLS_USES=	gettext
 NLS_CMAKE_ON=	-DLOCALEDIR=${PREFIX}/share/locale
 NLS_CMAKE_OFF=	-DENABLE_NLS=off
 NOTIFY_DESC=	Desktop notifications
 NOTIFY_LIB_DEPENDS=libdbus-1.so:devel/dbus
 NOTIFY_CMAKE_OFF=-DENABLE_NOTIFICATIONS=off
-OPENMP_DESC=	OpenMP support
-# -std=gnu++11 is necessary on FreeBSD 10, whose libc++ does not have the
-# `operator delete(void*, size_t)' overload from C++14. GCC 6 defaults to
-# --std=gnu++14, which then breaks the build (bug 219485).
-OPENMP_USE=	CXXSTD=gnu++11
-OPENMP_USES=	compiler:gcc-c++11-lib
-OPENMP_CMAKE_ON=-DENABLE_OMP=on
-RAWSOCKETS_DESC=	Use raw receiving sockets in multiplayer
-RAWSOCKETS_CFLAGS=-DNETWORK_USE_RAW_SOCKETS
 SERVER_DESC=	Server
 SERVER_CMAKE_OFF=-DENABLE_SERVER=off
 TEST_CMAKE_ON=	-DENABLE_TESTS=on
-TOOLS_DESC=	Extra tools for artists and translators
-TOOLS_CMAKE_ON=	-DENABLE_TOOLS=on
+
 
 post-install:
 	${FIND} ${STAGEDIR}${PREFIX}/man -type d -empty -delete

Modified: head/games/wesnoth/distinfo
==============================================================================
--- head/games/wesnoth/distinfo	Wed Jul 25 03:39:04 2018	(r475294)
+++ head/games/wesnoth/distinfo	Wed Jul 25 03:43:54 2018	(r475295)
@@ -1,3 +1,3 @@
-TIMESTAMP = 1482223424
-SHA256 (wesnoth-1.12.6.tar.bz2) = a50f384cead15f68f31cfa1a311e76a12098428702cb674d3521eb169eb92e4e
-SIZE (wesnoth-1.12.6.tar.bz2) = 387869758
+TIMESTAMP = 1528893082
+SHA256 (wesnoth-1.14.3.tar.bz2) = e9f17f0245a2b7f63b28d77a1cc8854355768665f5ca93ffd3e7641b0840c418
+SIZE (wesnoth-1.14.3.tar.bz2) = 450194119

Added: head/games/wesnoth/files/patch-src_game__initialization_lobby__data.hpp
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/games/wesnoth/files/patch-src_game__initialization_lobby__data.hpp	Wed Jul 25 03:43:54 2018	(r475295)
@@ -0,0 +1,10 @@
+--- src/game_initialization/lobby_data.hpp.orig	2018-06-13 12:34:17 UTC
++++ src/game_initialization/lobby_data.hpp
+@@ -14,6 +14,7 @@
+ 
+ #pragma once
+ 
++#include <time.h>
+ #include <set>
+ #include <deque>
+ #include <functional>

Added: head/games/wesnoth/files/patch-src_replay.hpp
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/games/wesnoth/files/patch-src_replay.hpp	Wed Jul 25 03:43:54 2018	(r475295)
@@ -0,0 +1,10 @@
+--- src/replay.hpp.orig	2018-06-13 12:34:27 UTC
++++ src/replay.hpp
+@@ -21,6 +21,7 @@
+ 
+ #include "map/location.hpp"
+ 
++#include <time.h>
+ #include <deque>
+ #include <iterator>
+ #include <map>

Modified: head/games/wesnoth/pkg-plist
==============================================================================
--- head/games/wesnoth/pkg-plist	Wed Jul 25 03:39:04 2018	(r475294)
+++ head/games/wesnoth/pkg-plist	Wed Jul 25 03:43:54 2018	(r475295)
@@ -1,21 +1,13 @@
-bin/wesnoth
-%%ANA%%include/ana/ana.hpp
-%%ANA%%include/ana/binary_streams.hpp
-%%ANA%%include/ana/buffers.hpp
-%%ANA%%include/ana/common.hpp
-%%ANA%%include/ana/predicates.hpp
-%%ANA%%include/ana/timers.hpp
-%%ANA%%lib/libana-static.a
-%%ANA%%lib/libana.so
 %%CAMPAIGN%%bin/campaignd
-%%TOOLS%%bin/cutter
-%%TOOLS%%bin/exploder
-%%TOOLS%%bin/schema_generator
-%%TOOLS%%bin/schema_validator
-%%TOOLS%%bin/wesmage
+bin/wesnoth
 %%SERVER%%bin/wesnothd
 share/applications/wesnoth.desktop
-share/applications/wesnoth_editor.desktop
+share/icons/hicolor/128x128/apps/wesnoth-icon.png
+share/icons/hicolor/16x16/apps/wesnoth-icon.png
+share/icons/hicolor/256x256/apps/wesnoth-icon.png
+share/icons/hicolor/32x32/apps/wesnoth-icon.png
+share/icons/hicolor/512x512/apps/wesnoth-icon.png
+share/icons/hicolor/64x64/apps/wesnoth-icon.png
 %%NLS%%share/locale/af/LC_MESSAGES/wesnoth-ai.mo
 %%NLS%%share/locale/af/LC_MESSAGES/wesnoth-anl.mo
 %%NLS%%share/locale/af/LC_MESSAGES/wesnoth-aoi.mo
@@ -34,6 +26,7 @@ share/applications/wesnoth_editor.desktop
 %%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-sota.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
@@ -44,34 +37,6 @@ share/applications/wesnoth_editor.desktop
 %%NLS%%share/locale/af/LC_MESSAGES/wesnoth-units.mo
 %%NLS%%share/locale/af/LC_MESSAGES/wesnoth-utbs.mo
 %%NLS%%share/locale/af/LC_MESSAGES/wesnoth.mo
-%%NLS%%share/locale/ang/LC_MESSAGES/wesnoth-ai.mo
-%%NLS%%share/locale/ang/LC_MESSAGES/wesnoth-anl.mo
-%%NLS%%share/locale/ang/LC_MESSAGES/wesnoth-aoi.mo
-%%NLS%%share/locale/ang/LC_MESSAGES/wesnoth-did.mo
-%%NLS%%share/locale/ang/LC_MESSAGES/wesnoth-dm.mo
-%%NLS%%share/locale/ang/LC_MESSAGES/wesnoth-dw.mo
-%%NLS%%share/locale/ang/LC_MESSAGES/wesnoth-editor.mo
-%%NLS%%share/locale/ang/LC_MESSAGES/wesnoth-ei.mo
-%%NLS%%share/locale/ang/LC_MESSAGES/wesnoth-help.mo
-%%NLS%%share/locale/ang/LC_MESSAGES/wesnoth-httt.mo
-%%NLS%%share/locale/ang/LC_MESSAGES/wesnoth-l.mo
-%%NLS%%share/locale/ang/LC_MESSAGES/wesnoth-lib.mo
-%%NLS%%share/locale/ang/LC_MESSAGES/wesnoth-low.mo
-%%NLS%%share/locale/ang/LC_MESSAGES/wesnoth-manpages.mo
-%%NLS%%share/locale/ang/LC_MESSAGES/wesnoth-manual.mo
-%%NLS%%share/locale/ang/LC_MESSAGES/wesnoth-multiplayer.mo
-%%NLS%%share/locale/ang/LC_MESSAGES/wesnoth-nr.mo
-%%NLS%%share/locale/ang/LC_MESSAGES/wesnoth-sof.mo
-%%NLS%%share/locale/ang/LC_MESSAGES/wesnoth-sotbe.mo
-%%NLS%%share/locale/ang/LC_MESSAGES/wesnoth-tb.mo
-%%NLS%%share/locale/ang/LC_MESSAGES/wesnoth-test.mo
-%%NLS%%share/locale/ang/LC_MESSAGES/wesnoth-thot.mo
-%%NLS%%share/locale/ang/LC_MESSAGES/wesnoth-trow.mo
-%%NLS%%share/locale/ang/LC_MESSAGES/wesnoth-tsg.mo
-%%NLS%%share/locale/ang/LC_MESSAGES/wesnoth-tutorial.mo
-%%NLS%%share/locale/ang/LC_MESSAGES/wesnoth-units.mo
-%%NLS%%share/locale/ang/LC_MESSAGES/wesnoth-utbs.mo
-%%NLS%%share/locale/ang/LC_MESSAGES/wesnoth.mo
 %%NLS%%share/locale/ang at latin/LC_MESSAGES/wesnoth-ai.mo
 %%NLS%%share/locale/ang at latin/LC_MESSAGES/wesnoth-anl.mo
 %%NLS%%share/locale/ang at latin/LC_MESSAGES/wesnoth-aoi.mo
@@ -90,6 +55,7 @@ share/applications/wesnoth_editor.desktop
 %%NLS%%share/locale/ang at latin/LC_MESSAGES/wesnoth-multiplayer.mo
 %%NLS%%share/locale/ang at latin/LC_MESSAGES/wesnoth-nr.mo
 %%NLS%%share/locale/ang at latin/LC_MESSAGES/wesnoth-sof.mo
+%%NLS%%share/locale/ang at latin/LC_MESSAGES/wesnoth-sota.mo
 %%NLS%%share/locale/ang at latin/LC_MESSAGES/wesnoth-sotbe.mo
 %%NLS%%share/locale/ang at latin/LC_MESSAGES/wesnoth-tb.mo
 %%NLS%%share/locale/ang at latin/LC_MESSAGES/wesnoth-test.mo
@@ -100,6 +66,35 @@ share/applications/wesnoth_editor.desktop
 %%NLS%%share/locale/ang at latin/LC_MESSAGES/wesnoth-units.mo
 %%NLS%%share/locale/ang at latin/LC_MESSAGES/wesnoth-utbs.mo
 %%NLS%%share/locale/ang at latin/LC_MESSAGES/wesnoth.mo
+%%NLS%%share/locale/ang/LC_MESSAGES/wesnoth-ai.mo
+%%NLS%%share/locale/ang/LC_MESSAGES/wesnoth-anl.mo
+%%NLS%%share/locale/ang/LC_MESSAGES/wesnoth-aoi.mo
+%%NLS%%share/locale/ang/LC_MESSAGES/wesnoth-did.mo
+%%NLS%%share/locale/ang/LC_MESSAGES/wesnoth-dm.mo
+%%NLS%%share/locale/ang/LC_MESSAGES/wesnoth-dw.mo
+%%NLS%%share/locale/ang/LC_MESSAGES/wesnoth-editor.mo
+%%NLS%%share/locale/ang/LC_MESSAGES/wesnoth-ei.mo
+%%NLS%%share/locale/ang/LC_MESSAGES/wesnoth-help.mo
+%%NLS%%share/locale/ang/LC_MESSAGES/wesnoth-httt.mo
+%%NLS%%share/locale/ang/LC_MESSAGES/wesnoth-l.mo
+%%NLS%%share/locale/ang/LC_MESSAGES/wesnoth-lib.mo
+%%NLS%%share/locale/ang/LC_MESSAGES/wesnoth-low.mo
+%%NLS%%share/locale/ang/LC_MESSAGES/wesnoth-manpages.mo
+%%NLS%%share/locale/ang/LC_MESSAGES/wesnoth-manual.mo
+%%NLS%%share/locale/ang/LC_MESSAGES/wesnoth-multiplayer.mo
+%%NLS%%share/locale/ang/LC_MESSAGES/wesnoth-nr.mo
+%%NLS%%share/locale/ang/LC_MESSAGES/wesnoth-sof.mo
+%%NLS%%share/locale/ang/LC_MESSAGES/wesnoth-sota.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/ar/LC_MESSAGES/wesnoth-ai.mo
 %%NLS%%share/locale/ar/LC_MESSAGES/wesnoth-anl.mo
 %%NLS%%share/locale/ar/LC_MESSAGES/wesnoth-aoi.mo
@@ -118,6 +113,7 @@ share/applications/wesnoth_editor.desktop
 %%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-sota.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
@@ -128,6 +124,35 @@ share/applications/wesnoth_editor.desktop
 %%NLS%%share/locale/ar/LC_MESSAGES/wesnoth-units.mo
 %%NLS%%share/locale/ar/LC_MESSAGES/wesnoth-utbs.mo
 %%NLS%%share/locale/ar/LC_MESSAGES/wesnoth.mo
+%%NLS%%share/locale/ast/LC_MESSAGES/wesnoth-ai.mo
+%%NLS%%share/locale/ast/LC_MESSAGES/wesnoth-anl.mo
+%%NLS%%share/locale/ast/LC_MESSAGES/wesnoth-aoi.mo
+%%NLS%%share/locale/ast/LC_MESSAGES/wesnoth-did.mo
+%%NLS%%share/locale/ast/LC_MESSAGES/wesnoth-dm.mo
+%%NLS%%share/locale/ast/LC_MESSAGES/wesnoth-dw.mo
+%%NLS%%share/locale/ast/LC_MESSAGES/wesnoth-editor.mo
+%%NLS%%share/locale/ast/LC_MESSAGES/wesnoth-ei.mo
+%%NLS%%share/locale/ast/LC_MESSAGES/wesnoth-help.mo
+%%NLS%%share/locale/ast/LC_MESSAGES/wesnoth-httt.mo
+%%NLS%%share/locale/ast/LC_MESSAGES/wesnoth-l.mo
+%%NLS%%share/locale/ast/LC_MESSAGES/wesnoth-lib.mo
+%%NLS%%share/locale/ast/LC_MESSAGES/wesnoth-low.mo
+%%NLS%%share/locale/ast/LC_MESSAGES/wesnoth-manpages.mo
+%%NLS%%share/locale/ast/LC_MESSAGES/wesnoth-manual.mo
+%%NLS%%share/locale/ast/LC_MESSAGES/wesnoth-multiplayer.mo
+%%NLS%%share/locale/ast/LC_MESSAGES/wesnoth-nr.mo
+%%NLS%%share/locale/ast/LC_MESSAGES/wesnoth-sof.mo
+%%NLS%%share/locale/ast/LC_MESSAGES/wesnoth-sota.mo
+%%NLS%%share/locale/ast/LC_MESSAGES/wesnoth-sotbe.mo
+%%NLS%%share/locale/ast/LC_MESSAGES/wesnoth-tb.mo
+%%NLS%%share/locale/ast/LC_MESSAGES/wesnoth-test.mo
+%%NLS%%share/locale/ast/LC_MESSAGES/wesnoth-thot.mo
+%%NLS%%share/locale/ast/LC_MESSAGES/wesnoth-trow.mo
+%%NLS%%share/locale/ast/LC_MESSAGES/wesnoth-tsg.mo
+%%NLS%%share/locale/ast/LC_MESSAGES/wesnoth-tutorial.mo
+%%NLS%%share/locale/ast/LC_MESSAGES/wesnoth-units.mo
+%%NLS%%share/locale/ast/LC_MESSAGES/wesnoth-utbs.mo
+%%NLS%%share/locale/ast/LC_MESSAGES/wesnoth.mo
 %%NLS%%share/locale/bg/LC_MESSAGES/wesnoth-ai.mo
 %%NLS%%share/locale/bg/LC_MESSAGES/wesnoth-anl.mo
 %%NLS%%share/locale/bg/LC_MESSAGES/wesnoth-aoi.mo
@@ -146,6 +171,7 @@ share/applications/wesnoth_editor.desktop
 %%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-sota.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
@@ -156,34 +182,6 @@ share/applications/wesnoth_editor.desktop
 %%NLS%%share/locale/bg/LC_MESSAGES/wesnoth-units.mo
 %%NLS%%share/locale/bg/LC_MESSAGES/wesnoth-utbs.mo
 %%NLS%%share/locale/bg/LC_MESSAGES/wesnoth.mo
-%%NLS%%share/locale/ca/LC_MESSAGES/wesnoth-ai.mo
-%%NLS%%share/locale/ca/LC_MESSAGES/wesnoth-anl.mo
-%%NLS%%share/locale/ca/LC_MESSAGES/wesnoth-aoi.mo
-%%NLS%%share/locale/ca/LC_MESSAGES/wesnoth-did.mo
-%%NLS%%share/locale/ca/LC_MESSAGES/wesnoth-dm.mo
-%%NLS%%share/locale/ca/LC_MESSAGES/wesnoth-dw.mo
-%%NLS%%share/locale/ca/LC_MESSAGES/wesnoth-editor.mo
-%%NLS%%share/locale/ca/LC_MESSAGES/wesnoth-ei.mo
-%%NLS%%share/locale/ca/LC_MESSAGES/wesnoth-help.mo
-%%NLS%%share/locale/ca/LC_MESSAGES/wesnoth-httt.mo
-%%NLS%%share/locale/ca/LC_MESSAGES/wesnoth-l.mo
-%%NLS%%share/locale/ca/LC_MESSAGES/wesnoth-lib.mo
-%%NLS%%share/locale/ca/LC_MESSAGES/wesnoth-low.mo
-%%NLS%%share/locale/ca/LC_MESSAGES/wesnoth-manpages.mo
-%%NLS%%share/locale/ca/LC_MESSAGES/wesnoth-manual.mo
-%%NLS%%share/locale/ca/LC_MESSAGES/wesnoth-multiplayer.mo
-%%NLS%%share/locale/ca/LC_MESSAGES/wesnoth-nr.mo
-%%NLS%%share/locale/ca/LC_MESSAGES/wesnoth-sof.mo
-%%NLS%%share/locale/ca/LC_MESSAGES/wesnoth-sotbe.mo
-%%NLS%%share/locale/ca/LC_MESSAGES/wesnoth-tb.mo
-%%NLS%%share/locale/ca/LC_MESSAGES/wesnoth-test.mo
-%%NLS%%share/locale/ca/LC_MESSAGES/wesnoth-thot.mo
-%%NLS%%share/locale/ca/LC_MESSAGES/wesnoth-trow.mo
-%%NLS%%share/locale/ca/LC_MESSAGES/wesnoth-tsg.mo
-%%NLS%%share/locale/ca/LC_MESSAGES/wesnoth-tutorial.mo
-%%NLS%%share/locale/ca/LC_MESSAGES/wesnoth-units.mo
-%%NLS%%share/locale/ca/LC_MESSAGES/wesnoth-utbs.mo
-%%NLS%%share/locale/ca/LC_MESSAGES/wesnoth.mo
 %%NLS%%share/locale/ca_ES at valencia/LC_MESSAGES/wesnoth-ai.mo
 %%NLS%%share/locale/ca_ES at valencia/LC_MESSAGES/wesnoth-anl.mo
 %%NLS%%share/locale/ca_ES at valencia/LC_MESSAGES/wesnoth-aoi.mo
@@ -202,6 +200,7 @@ share/applications/wesnoth_editor.desktop
 %%NLS%%share/locale/ca_ES at valencia/LC_MESSAGES/wesnoth-multiplayer.mo
 %%NLS%%share/locale/ca_ES at valencia/LC_MESSAGES/wesnoth-nr.mo
 %%NLS%%share/locale/ca_ES at valencia/LC_MESSAGES/wesnoth-sof.mo
+%%NLS%%share/locale/ca_ES at valencia/LC_MESSAGES/wesnoth-sota.mo
 %%NLS%%share/locale/ca_ES at valencia/LC_MESSAGES/wesnoth-sotbe.mo
 %%NLS%%share/locale/ca_ES at valencia/LC_MESSAGES/wesnoth-tb.mo
 %%NLS%%share/locale/ca_ES at valencia/LC_MESSAGES/wesnoth-test.mo
@@ -212,6 +211,35 @@ share/applications/wesnoth_editor.desktop
 %%NLS%%share/locale/ca_ES at valencia/LC_MESSAGES/wesnoth-units.mo
 %%NLS%%share/locale/ca_ES at valencia/LC_MESSAGES/wesnoth-utbs.mo
 %%NLS%%share/locale/ca_ES at valencia/LC_MESSAGES/wesnoth.mo
+%%NLS%%share/locale/ca/LC_MESSAGES/wesnoth-ai.mo
+%%NLS%%share/locale/ca/LC_MESSAGES/wesnoth-anl.mo
+%%NLS%%share/locale/ca/LC_MESSAGES/wesnoth-aoi.mo
+%%NLS%%share/locale/ca/LC_MESSAGES/wesnoth-did.mo
+%%NLS%%share/locale/ca/LC_MESSAGES/wesnoth-dm.mo
+%%NLS%%share/locale/ca/LC_MESSAGES/wesnoth-dw.mo
+%%NLS%%share/locale/ca/LC_MESSAGES/wesnoth-editor.mo
+%%NLS%%share/locale/ca/LC_MESSAGES/wesnoth-ei.mo
+%%NLS%%share/locale/ca/LC_MESSAGES/wesnoth-help.mo
+%%NLS%%share/locale/ca/LC_MESSAGES/wesnoth-httt.mo
+%%NLS%%share/locale/ca/LC_MESSAGES/wesnoth-l.mo
+%%NLS%%share/locale/ca/LC_MESSAGES/wesnoth-lib.mo
+%%NLS%%share/locale/ca/LC_MESSAGES/wesnoth-low.mo
+%%NLS%%share/locale/ca/LC_MESSAGES/wesnoth-manpages.mo
+%%NLS%%share/locale/ca/LC_MESSAGES/wesnoth-manual.mo
+%%NLS%%share/locale/ca/LC_MESSAGES/wesnoth-multiplayer.mo
+%%NLS%%share/locale/ca/LC_MESSAGES/wesnoth-nr.mo
+%%NLS%%share/locale/ca/LC_MESSAGES/wesnoth-sof.mo
+%%NLS%%share/locale/ca/LC_MESSAGES/wesnoth-sota.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/cs/LC_MESSAGES/wesnoth-ai.mo
 %%NLS%%share/locale/cs/LC_MESSAGES/wesnoth-anl.mo
 %%NLS%%share/locale/cs/LC_MESSAGES/wesnoth-aoi.mo
@@ -230,6 +258,7 @@ share/applications/wesnoth_editor.desktop
 %%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-sota.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
@@ -258,6 +287,7 @@ share/applications/wesnoth_editor.desktop
 %%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-sota.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
@@ -286,6 +316,7 @@ share/applications/wesnoth_editor.desktop
 %%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-sota.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
@@ -314,6 +345,7 @@ share/applications/wesnoth_editor.desktop
 %%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-sota.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
@@ -324,34 +356,6 @@ share/applications/wesnoth_editor.desktop
 %%NLS%%share/locale/el/LC_MESSAGES/wesnoth-units.mo
 %%NLS%%share/locale/el/LC_MESSAGES/wesnoth-utbs.mo
 %%NLS%%share/locale/el/LC_MESSAGES/wesnoth.mo
-%%NLS%%share/locale/en at shaw/LC_MESSAGES/wesnoth-ai.mo
-%%NLS%%share/locale/en at shaw/LC_MESSAGES/wesnoth-anl.mo
-%%NLS%%share/locale/en at shaw/LC_MESSAGES/wesnoth-aoi.mo
-%%NLS%%share/locale/en at shaw/LC_MESSAGES/wesnoth-did.mo
-%%NLS%%share/locale/en at shaw/LC_MESSAGES/wesnoth-dm.mo
-%%NLS%%share/locale/en at shaw/LC_MESSAGES/wesnoth-dw.mo
-%%NLS%%share/locale/en at shaw/LC_MESSAGES/wesnoth-editor.mo
-%%NLS%%share/locale/en at shaw/LC_MESSAGES/wesnoth-ei.mo
-%%NLS%%share/locale/en at shaw/LC_MESSAGES/wesnoth-help.mo
-%%NLS%%share/locale/en at shaw/LC_MESSAGES/wesnoth-httt.mo
-%%NLS%%share/locale/en at shaw/LC_MESSAGES/wesnoth-l.mo
-%%NLS%%share/locale/en at shaw/LC_MESSAGES/wesnoth-lib.mo
-%%NLS%%share/locale/en at shaw/LC_MESSAGES/wesnoth-low.mo
-%%NLS%%share/locale/en at shaw/LC_MESSAGES/wesnoth-manpages.mo
-%%NLS%%share/locale/en at shaw/LC_MESSAGES/wesnoth-manual.mo
-%%NLS%%share/locale/en at shaw/LC_MESSAGES/wesnoth-multiplayer.mo
-%%NLS%%share/locale/en at shaw/LC_MESSAGES/wesnoth-nr.mo
-%%NLS%%share/locale/en at shaw/LC_MESSAGES/wesnoth-sof.mo
-%%NLS%%share/locale/en at shaw/LC_MESSAGES/wesnoth-sotbe.mo
-%%NLS%%share/locale/en at shaw/LC_MESSAGES/wesnoth-tb.mo
-%%NLS%%share/locale/en at shaw/LC_MESSAGES/wesnoth-test.mo
-%%NLS%%share/locale/en at shaw/LC_MESSAGES/wesnoth-thot.mo
-%%NLS%%share/locale/en at shaw/LC_MESSAGES/wesnoth-trow.mo
-%%NLS%%share/locale/en at shaw/LC_MESSAGES/wesnoth-tsg.mo
-%%NLS%%share/locale/en at shaw/LC_MESSAGES/wesnoth-tutorial.mo
-%%NLS%%share/locale/en at shaw/LC_MESSAGES/wesnoth-units.mo
-%%NLS%%share/locale/en at shaw/LC_MESSAGES/wesnoth-utbs.mo
-%%NLS%%share/locale/en at shaw/LC_MESSAGES/wesnoth.mo
 %%NLS%%share/locale/en_GB/LC_MESSAGES/wesnoth-ai.mo
 %%NLS%%share/locale/en_GB/LC_MESSAGES/wesnoth-anl.mo
 %%NLS%%share/locale/en_GB/LC_MESSAGES/wesnoth-aoi.mo
@@ -370,6 +374,7 @@ share/applications/wesnoth_editor.desktop
 %%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-sota.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
@@ -380,6 +385,35 @@ share/applications/wesnoth_editor.desktop
 %%NLS%%share/locale/en_GB/LC_MESSAGES/wesnoth-units.mo
 %%NLS%%share/locale/en_GB/LC_MESSAGES/wesnoth-utbs.mo
 %%NLS%%share/locale/en_GB/LC_MESSAGES/wesnoth.mo
+%%NLS%%share/locale/en at shaw/LC_MESSAGES/wesnoth-ai.mo
+%%NLS%%share/locale/en at shaw/LC_MESSAGES/wesnoth-anl.mo
+%%NLS%%share/locale/en at shaw/LC_MESSAGES/wesnoth-aoi.mo
+%%NLS%%share/locale/en at shaw/LC_MESSAGES/wesnoth-did.mo
+%%NLS%%share/locale/en at shaw/LC_MESSAGES/wesnoth-dm.mo
+%%NLS%%share/locale/en at shaw/LC_MESSAGES/wesnoth-dw.mo
+%%NLS%%share/locale/en at shaw/LC_MESSAGES/wesnoth-editor.mo
+%%NLS%%share/locale/en at shaw/LC_MESSAGES/wesnoth-ei.mo
+%%NLS%%share/locale/en at shaw/LC_MESSAGES/wesnoth-help.mo
+%%NLS%%share/locale/en at shaw/LC_MESSAGES/wesnoth-httt.mo
+%%NLS%%share/locale/en at shaw/LC_MESSAGES/wesnoth-l.mo
+%%NLS%%share/locale/en at shaw/LC_MESSAGES/wesnoth-lib.mo
+%%NLS%%share/locale/en at shaw/LC_MESSAGES/wesnoth-low.mo
+%%NLS%%share/locale/en at shaw/LC_MESSAGES/wesnoth-manpages.mo
+%%NLS%%share/locale/en at shaw/LC_MESSAGES/wesnoth-manual.mo
+%%NLS%%share/locale/en at shaw/LC_MESSAGES/wesnoth-multiplayer.mo
+%%NLS%%share/locale/en at shaw/LC_MESSAGES/wesnoth-nr.mo
+%%NLS%%share/locale/en at shaw/LC_MESSAGES/wesnoth-sof.mo
+%%NLS%%share/locale/en at shaw/LC_MESSAGES/wesnoth-sota.mo
+%%NLS%%share/locale/en at shaw/LC_MESSAGES/wesnoth-sotbe.mo
+%%NLS%%share/locale/en at shaw/LC_MESSAGES/wesnoth-tb.mo
+%%NLS%%share/locale/en at shaw/LC_MESSAGES/wesnoth-test.mo
+%%NLS%%share/locale/en at shaw/LC_MESSAGES/wesnoth-thot.mo
+%%NLS%%share/locale/en at shaw/LC_MESSAGES/wesnoth-trow.mo
+%%NLS%%share/locale/en at shaw/LC_MESSAGES/wesnoth-tsg.mo
+%%NLS%%share/locale/en at shaw/LC_MESSAGES/wesnoth-tutorial.mo
+%%NLS%%share/locale/en at shaw/LC_MESSAGES/wesnoth-units.mo
+%%NLS%%share/locale/en at shaw/LC_MESSAGES/wesnoth-utbs.mo
+%%NLS%%share/locale/en at shaw/LC_MESSAGES/wesnoth.mo
 %%NLS%%share/locale/eo/LC_MESSAGES/wesnoth-ai.mo
 %%NLS%%share/locale/eo/LC_MESSAGES/wesnoth-anl.mo
 %%NLS%%share/locale/eo/LC_MESSAGES/wesnoth-aoi.mo
@@ -398,6 +432,7 @@ share/applications/wesnoth_editor.desktop
 %%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-sota.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
@@ -426,6 +461,7 @@ share/applications/wesnoth_editor.desktop
 %%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-sota.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
@@ -454,6 +490,7 @@ share/applications/wesnoth_editor.desktop
 %%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-sota.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
@@ -482,6 +519,7 @@ share/applications/wesnoth_editor.desktop
 %%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-sota.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
@@ -510,6 +548,7 @@ share/applications/wesnoth_editor.desktop
 %%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-sota.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
@@ -538,6 +577,7 @@ share/applications/wesnoth_editor.desktop
 %%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-sota.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
@@ -566,6 +606,7 @@ share/applications/wesnoth_editor.desktop
 %%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-sota.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
@@ -594,6 +635,7 @@ share/applications/wesnoth_editor.desktop
 %%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-sota.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
@@ -622,6 +664,7 @@ share/applications/wesnoth_editor.desktop
 %%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-sota.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
@@ -650,6 +693,7 @@ share/applications/wesnoth_editor.desktop
 %%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-sota.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
@@ -678,6 +722,7 @@ share/applications/wesnoth_editor.desktop
 %%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-sota.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
@@ -706,6 +751,7 @@ share/applications/wesnoth_editor.desktop
 %%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-sota.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
@@ -734,6 +780,7 @@ share/applications/wesnoth_editor.desktop
 %%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-sota.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
@@ -762,6 +809,7 @@ share/applications/wesnoth_editor.desktop
 %%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-sota.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
@@ -790,6 +838,7 @@ share/applications/wesnoth_editor.desktop
 %%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-sota.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
@@ -818,6 +867,7 @@ share/applications/wesnoth_editor.desktop
 %%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-sota.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
@@ -846,6 +896,7 @@ share/applications/wesnoth_editor.desktop
 %%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-sota.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
@@ -874,6 +925,7 @@ share/applications/wesnoth_editor.desktop
 %%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-sota.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
@@ -902,6 +954,7 @@ share/applications/wesnoth_editor.desktop
 %%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-sota.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
@@ -930,6 +983,7 @@ share/applications/wesnoth_editor.desktop
 %%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-sota.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
@@ -958,6 +1012,7 @@ share/applications/wesnoth_editor.desktop
 %%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-sota.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
@@ -986,6 +1041,7 @@ share/applications/wesnoth_editor.desktop
 %%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-sota.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
@@ -1014,6 +1070,7 @@ share/applications/wesnoth_editor.desktop
 %%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-sota.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
@@ -1042,6 +1099,7 @@ share/applications/wesnoth_editor.desktop
 %%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-sota.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
@@ -1070,6 +1128,7 @@ share/applications/wesnoth_editor.desktop
 %%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-sota.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
@@ -1098,6 +1157,7 @@ share/applications/wesnoth_editor.desktop
 %%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-sota.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
@@ -1108,34 +1168,6 @@ share/applications/wesnoth_editor.desktop
 %%NLS%%share/locale/pl/LC_MESSAGES/wesnoth-units.mo
 %%NLS%%share/locale/pl/LC_MESSAGES/wesnoth-utbs.mo
 %%NLS%%share/locale/pl/LC_MESSAGES/wesnoth.mo
-%%NLS%%share/locale/pt/LC_MESSAGES/wesnoth-ai.mo
-%%NLS%%share/locale/pt/LC_MESSAGES/wesnoth-anl.mo
-%%NLS%%share/locale/pt/LC_MESSAGES/wesnoth-aoi.mo
-%%NLS%%share/locale/pt/LC_MESSAGES/wesnoth-did.mo
-%%NLS%%share/locale/pt/LC_MESSAGES/wesnoth-dm.mo
-%%NLS%%share/locale/pt/LC_MESSAGES/wesnoth-dw.mo
-%%NLS%%share/locale/pt/LC_MESSAGES/wesnoth-editor.mo
-%%NLS%%share/locale/pt/LC_MESSAGES/wesnoth-ei.mo
-%%NLS%%share/locale/pt/LC_MESSAGES/wesnoth-help.mo
-%%NLS%%share/locale/pt/LC_MESSAGES/wesnoth-httt.mo
-%%NLS%%share/locale/pt/LC_MESSAGES/wesnoth-l.mo
-%%NLS%%share/locale/pt/LC_MESSAGES/wesnoth-lib.mo
-%%NLS%%share/locale/pt/LC_MESSAGES/wesnoth-low.mo
-%%NLS%%share/locale/pt/LC_MESSAGES/wesnoth-manpages.mo
-%%NLS%%share/locale/pt/LC_MESSAGES/wesnoth-manual.mo
-%%NLS%%share/locale/pt/LC_MESSAGES/wesnoth-multiplayer.mo
-%%NLS%%share/locale/pt/LC_MESSAGES/wesnoth-nr.mo
-%%NLS%%share/locale/pt/LC_MESSAGES/wesnoth-sof.mo
-%%NLS%%share/locale/pt/LC_MESSAGES/wesnoth-sotbe.mo
-%%NLS%%share/locale/pt/LC_MESSAGES/wesnoth-tb.mo
-%%NLS%%share/locale/pt/LC_MESSAGES/wesnoth-test.mo
-%%NLS%%share/locale/pt/LC_MESSAGES/wesnoth-thot.mo
-%%NLS%%share/locale/pt/LC_MESSAGES/wesnoth-trow.mo
-%%NLS%%share/locale/pt/LC_MESSAGES/wesnoth-tsg.mo
-%%NLS%%share/locale/pt/LC_MESSAGES/wesnoth-tutorial.mo
-%%NLS%%share/locale/pt/LC_MESSAGES/wesnoth-units.mo
-%%NLS%%share/locale/pt/LC_MESSAGES/wesnoth-utbs.mo
-%%NLS%%share/locale/pt/LC_MESSAGES/wesnoth.mo
 %%NLS%%share/locale/pt_BR/LC_MESSAGES/wesnoth-ai.mo
 %%NLS%%share/locale/pt_BR/LC_MESSAGES/wesnoth-anl.mo
 %%NLS%%share/locale/pt_BR/LC_MESSAGES/wesnoth-aoi.mo
@@ -1154,6 +1186,7 @@ share/applications/wesnoth_editor.desktop
 %%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-sota.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
@@ -1164,6 +1197,35 @@ share/applications/wesnoth_editor.desktop
 %%NLS%%share/locale/pt_BR/LC_MESSAGES/wesnoth-units.mo
 %%NLS%%share/locale/pt_BR/LC_MESSAGES/wesnoth-utbs.mo
 %%NLS%%share/locale/pt_BR/LC_MESSAGES/wesnoth.mo
+%%NLS%%share/locale/pt/LC_MESSAGES/wesnoth-ai.mo
+%%NLS%%share/locale/pt/LC_MESSAGES/wesnoth-anl.mo
+%%NLS%%share/locale/pt/LC_MESSAGES/wesnoth-aoi.mo
+%%NLS%%share/locale/pt/LC_MESSAGES/wesnoth-did.mo
+%%NLS%%share/locale/pt/LC_MESSAGES/wesnoth-dm.mo
+%%NLS%%share/locale/pt/LC_MESSAGES/wesnoth-dw.mo
+%%NLS%%share/locale/pt/LC_MESSAGES/wesnoth-editor.mo
+%%NLS%%share/locale/pt/LC_MESSAGES/wesnoth-ei.mo
+%%NLS%%share/locale/pt/LC_MESSAGES/wesnoth-help.mo
+%%NLS%%share/locale/pt/LC_MESSAGES/wesnoth-httt.mo
+%%NLS%%share/locale/pt/LC_MESSAGES/wesnoth-l.mo
+%%NLS%%share/locale/pt/LC_MESSAGES/wesnoth-lib.mo
+%%NLS%%share/locale/pt/LC_MESSAGES/wesnoth-low.mo
+%%NLS%%share/locale/pt/LC_MESSAGES/wesnoth-manpages.mo
+%%NLS%%share/locale/pt/LC_MESSAGES/wesnoth-manual.mo
+%%NLS%%share/locale/pt/LC_MESSAGES/wesnoth-multiplayer.mo
+%%NLS%%share/locale/pt/LC_MESSAGES/wesnoth-nr.mo
+%%NLS%%share/locale/pt/LC_MESSAGES/wesnoth-sof.mo
+%%NLS%%share/locale/pt/LC_MESSAGES/wesnoth-sota.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/racv/LC_MESSAGES/wesnoth-ai.mo
 %%NLS%%share/locale/racv/LC_MESSAGES/wesnoth-anl.mo
 %%NLS%%share/locale/racv/LC_MESSAGES/wesnoth-aoi.mo
@@ -1182,6 +1244,7 @@ share/applications/wesnoth_editor.desktop
 %%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-sota.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
@@ -1210,6 +1273,7 @@ share/applications/wesnoth_editor.desktop
 %%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-sota.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
@@ -1238,6 +1302,7 @@ share/applications/wesnoth_editor.desktop
 %%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-sota.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
@@ -1266,6 +1331,7 @@ share/applications/wesnoth_editor.desktop
 %%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-sota.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
@@ -1294,6 +1360,7 @@ share/applications/wesnoth_editor.desktop
 %%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-sota.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
@@ -1304,34 +1371,6 @@ share/applications/wesnoth_editor.desktop
 %%NLS%%share/locale/sl/LC_MESSAGES/wesnoth-units.mo
 %%NLS%%share/locale/sl/LC_MESSAGES/wesnoth-utbs.mo
 %%NLS%%share/locale/sl/LC_MESSAGES/wesnoth.mo
-%%NLS%%share/locale/sr/LC_MESSAGES/wesnoth-ai.mo
-%%NLS%%share/locale/sr/LC_MESSAGES/wesnoth-anl.mo
-%%NLS%%share/locale/sr/LC_MESSAGES/wesnoth-aoi.mo
-%%NLS%%share/locale/sr/LC_MESSAGES/wesnoth-did.mo
-%%NLS%%share/locale/sr/LC_MESSAGES/wesnoth-dm.mo
-%%NLS%%share/locale/sr/LC_MESSAGES/wesnoth-dw.mo
-%%NLS%%share/locale/sr/LC_MESSAGES/wesnoth-editor.mo
-%%NLS%%share/locale/sr/LC_MESSAGES/wesnoth-ei.mo
-%%NLS%%share/locale/sr/LC_MESSAGES/wesnoth-help.mo
-%%NLS%%share/locale/sr/LC_MESSAGES/wesnoth-httt.mo
-%%NLS%%share/locale/sr/LC_MESSAGES/wesnoth-l.mo
-%%NLS%%share/locale/sr/LC_MESSAGES/wesnoth-lib.mo
-%%NLS%%share/locale/sr/LC_MESSAGES/wesnoth-low.mo
-%%NLS%%share/locale/sr/LC_MESSAGES/wesnoth-manpages.mo
-%%NLS%%share/locale/sr/LC_MESSAGES/wesnoth-manual.mo
-%%NLS%%share/locale/sr/LC_MESSAGES/wesnoth-multiplayer.mo
-%%NLS%%share/locale/sr/LC_MESSAGES/wesnoth-nr.mo
-%%NLS%%share/locale/sr/LC_MESSAGES/wesnoth-sof.mo
-%%NLS%%share/locale/sr/LC_MESSAGES/wesnoth-sotbe.mo
-%%NLS%%share/locale/sr/LC_MESSAGES/wesnoth-tb.mo
-%%NLS%%share/locale/sr/LC_MESSAGES/wesnoth-test.mo
-%%NLS%%share/locale/sr/LC_MESSAGES/wesnoth-thot.mo
-%%NLS%%share/locale/sr/LC_MESSAGES/wesnoth-trow.mo
-%%NLS%%share/locale/sr/LC_MESSAGES/wesnoth-tsg.mo
-%%NLS%%share/locale/sr/LC_MESSAGES/wesnoth-tutorial.mo
-%%NLS%%share/locale/sr/LC_MESSAGES/wesnoth-units.mo
-%%NLS%%share/locale/sr/LC_MESSAGES/wesnoth-utbs.mo
-%%NLS%%share/locale/sr/LC_MESSAGES/wesnoth.mo
 %%NLS%%share/locale/sr at ijekavian/LC_MESSAGES/wesnoth-ai.mo
 %%NLS%%share/locale/sr at ijekavian/LC_MESSAGES/wesnoth-anl.mo
 %%NLS%%share/locale/sr at ijekavian/LC_MESSAGES/wesnoth-aoi.mo
@@ -1350,6 +1389,7 @@ share/applications/wesnoth_editor.desktop
 %%NLS%%share/locale/sr at ijekavian/LC_MESSAGES/wesnoth-multiplayer.mo
 %%NLS%%share/locale/sr at ijekavian/LC_MESSAGES/wesnoth-nr.mo
 %%NLS%%share/locale/sr at ijekavian/LC_MESSAGES/wesnoth-sof.mo
+%%NLS%%share/locale/sr at ijekavian/LC_MESSAGES/wesnoth-sota.mo
 %%NLS%%share/locale/sr at ijekavian/LC_MESSAGES/wesnoth-sotbe.mo
 %%NLS%%share/locale/sr at ijekavian/LC_MESSAGES/wesnoth-tb.mo
 %%NLS%%share/locale/sr at ijekavian/LC_MESSAGES/wesnoth-test.mo
@@ -1378,6 +1418,7 @@ share/applications/wesnoth_editor.desktop
 %%NLS%%share/locale/sr at ijekavianlatin/LC_MESSAGES/wesnoth-multiplayer.mo
 %%NLS%%share/locale/sr at ijekavianlatin/LC_MESSAGES/wesnoth-nr.mo
 %%NLS%%share/locale/sr at ijekavianlatin/LC_MESSAGES/wesnoth-sof.mo
+%%NLS%%share/locale/sr at ijekavianlatin/LC_MESSAGES/wesnoth-sota.mo
 %%NLS%%share/locale/sr at ijekavianlatin/LC_MESSAGES/wesnoth-sotbe.mo
 %%NLS%%share/locale/sr at ijekavianlatin/LC_MESSAGES/wesnoth-tb.mo
 %%NLS%%share/locale/sr at ijekavianlatin/LC_MESSAGES/wesnoth-test.mo
@@ -1406,6 +1447,7 @@ share/applications/wesnoth_editor.desktop
 %%NLS%%share/locale/sr at latin/LC_MESSAGES/wesnoth-multiplayer.mo
 %%NLS%%share/locale/sr at latin/LC_MESSAGES/wesnoth-nr.mo
 %%NLS%%share/locale/sr at latin/LC_MESSAGES/wesnoth-sof.mo
+%%NLS%%share/locale/sr at latin/LC_MESSAGES/wesnoth-sota.mo
 %%NLS%%share/locale/sr at latin/LC_MESSAGES/wesnoth-sotbe.mo
 %%NLS%%share/locale/sr at latin/LC_MESSAGES/wesnoth-tb.mo
 %%NLS%%share/locale/sr at latin/LC_MESSAGES/wesnoth-test.mo
@@ -1416,6 +1458,35 @@ share/applications/wesnoth_editor.desktop
 %%NLS%%share/locale/sr at latin/LC_MESSAGES/wesnoth-units.mo
 %%NLS%%share/locale/sr at latin/LC_MESSAGES/wesnoth-utbs.mo
 %%NLS%%share/locale/sr at latin/LC_MESSAGES/wesnoth.mo
+%%NLS%%share/locale/sr/LC_MESSAGES/wesnoth-ai.mo
+%%NLS%%share/locale/sr/LC_MESSAGES/wesnoth-anl.mo
+%%NLS%%share/locale/sr/LC_MESSAGES/wesnoth-aoi.mo
+%%NLS%%share/locale/sr/LC_MESSAGES/wesnoth-did.mo
+%%NLS%%share/locale/sr/LC_MESSAGES/wesnoth-dm.mo
+%%NLS%%share/locale/sr/LC_MESSAGES/wesnoth-dw.mo
+%%NLS%%share/locale/sr/LC_MESSAGES/wesnoth-editor.mo
+%%NLS%%share/locale/sr/LC_MESSAGES/wesnoth-ei.mo
+%%NLS%%share/locale/sr/LC_MESSAGES/wesnoth-help.mo
+%%NLS%%share/locale/sr/LC_MESSAGES/wesnoth-httt.mo
+%%NLS%%share/locale/sr/LC_MESSAGES/wesnoth-l.mo
+%%NLS%%share/locale/sr/LC_MESSAGES/wesnoth-lib.mo
+%%NLS%%share/locale/sr/LC_MESSAGES/wesnoth-low.mo
+%%NLS%%share/locale/sr/LC_MESSAGES/wesnoth-manpages.mo
+%%NLS%%share/locale/sr/LC_MESSAGES/wesnoth-manual.mo
+%%NLS%%share/locale/sr/LC_MESSAGES/wesnoth-multiplayer.mo
+%%NLS%%share/locale/sr/LC_MESSAGES/wesnoth-nr.mo
+%%NLS%%share/locale/sr/LC_MESSAGES/wesnoth-sof.mo
+%%NLS%%share/locale/sr/LC_MESSAGES/wesnoth-sota.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/sv/LC_MESSAGES/wesnoth-ai.mo
 %%NLS%%share/locale/sv/LC_MESSAGES/wesnoth-anl.mo
 %%NLS%%share/locale/sv/LC_MESSAGES/wesnoth-aoi.mo
@@ -1434,6 +1505,7 @@ share/applications/wesnoth_editor.desktop
 %%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-sota.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
@@ -1462,6 +1534,7 @@ share/applications/wesnoth_editor.desktop
 %%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-sota.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
@@ -1490,6 +1563,7 @@ share/applications/wesnoth_editor.desktop
 %%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-sota.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
@@ -1518,6 +1592,7 @@ share/applications/wesnoth_editor.desktop
 %%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-sota.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
@@ -1546,6 +1621,7 @@ share/applications/wesnoth_editor.desktop
 %%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-sota.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
@@ -1574,6 +1650,7 @@ share/applications/wesnoth_editor.desktop
 %%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-sota.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
@@ -1602,6 +1679,7 @@ share/applications/wesnoth_editor.desktop
 %%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-sota.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
@@ -1612,9 +1690,6 @@ share/applications/wesnoth_editor.desktop
 %%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
-%%NLS%%man/cs/man6/wesnoth.6.gz
 %%NLS%%%%SERVER%%man/cs/man6/wesnothd.6.gz
 %%NLS%%man/de/man6/wesnoth.6.gz
 %%NLS%%%%SERVER%%man/de/man6/wesnothd.6.gz
@@ -1622,46 +1697,30 @@ share/pixmaps/wesnoth_editor-icon.png
 %%NLS%%%%SERVER%%man/en_GB/man6/wesnothd.6.gz
 %%NLS%%man/es/man6/wesnoth.6.gz
 %%NLS%%%%SERVER%%man/es/man6/wesnothd.6.gz
-%%NLS%%man/et/man6/wesnoth.6.gz
 %%NLS%%%%SERVER%%man/et/man6/wesnothd.6.gz
-%%NLS%%man/fi/man6/wesnoth.6.gz
 %%NLS%%%%SERVER%%man/fi/man6/wesnothd.6.gz
-%%NLS%%man/fr/man6/wesnoth.6.gz
 %%NLS%%%%SERVER%%man/fr/man6/wesnothd.6.gz
 %%NLS%%man/gl/man6/wesnoth.6.gz
 %%NLS%%%%SERVER%%man/gl/man6/wesnothd.6.gz
-%%NLS%%man/hu/man6/wesnoth.6.gz
 %%NLS%%%%SERVER%%man/hu/man6/wesnothd.6.gz
-%%NLS%%man/id/man6/wesnoth.6.gz
 %%NLS%%%%SERVER%%man/id/man6/wesnothd.6.gz
 %%NLS%%man/it/man6/wesnoth.6.gz

*** DIFF OUTPUT TRUNCATED AT 1000 LINES ***


More information about the svn-ports-all mailing list