git: 3ff376e60848 - main - games/wesnoth: update to to 1.18.1 release (+)

From: Dima Panov <fluffy_at_FreeBSD.org>
Date: Thu, 01 Aug 2024 15:24:36 UTC
The branch main has been updated by fluffy:

URL: https://cgit.FreeBSD.org/ports/commit/?id=3ff376e6084844de1ff9dd6a3f1cd68254f56357

commit 3ff376e6084844de1ff9dd6a3f1cd68254f56357
Author:     Dima Panov <fluffy@FreeBSD.org>
AuthorDate: 2024-08-01 15:19:44 +0000
Commit:     Dima Panov <fluffy@FreeBSD.org>
CommitDate: 2024-08-01 15:19:44 +0000

    games/wesnoth: update to to 1.18.1 release (+)
    
    Release notes:  https://www.wesnoth.org/start/1.18/
    Changelog 1.18.1:       https://forums.wesnoth.org/viewtopic.php?t=58371
    
    PR:     280320 (based on)
---
 games/wesnoth/Makefile  |  61 +++++++++++++++----
 games/wesnoth/distinfo  |   6 +-
 games/wesnoth/pkg-plist | 153 ++++++++++++++++++++++++++++++++++++++++++++++--
 3 files changed, 203 insertions(+), 17 deletions(-)

diff --git a/games/wesnoth/Makefile b/games/wesnoth/Makefile
index b703cb980db8..8e128386cbb0 100644
--- a/games/wesnoth/Makefile
+++ b/games/wesnoth/Makefile
@@ -1,5 +1,5 @@
 PORTNAME=	wesnoth
-PORTVERSION=	1.16.12
+PORTVERSION=	1.18.1
 PORTEPOCH=	1
 CATEGORIES=	games
 MASTER_SITES=	SF/${PORTNAME}/${PORTNAME}-${PORTVERSION:R}/${PORTNAME}-${PORTVERSION} \
@@ -17,51 +17,85 @@ LICENSE_FILE=	${WRKSRC}/COPYING
 LIB_DEPENDS=	libfreetype.so:print/freetype2 \
 		libvorbisfile.so:audio/libvorbis \
 		libboost_thread.so:devel/boost-libs \
+		libcurl.so:ftp/curl \
 		libpng.so:graphics/png \
 		libfontconfig.so:x11-fonts/fontconfig \
 		libicudata.so:devel/icu \
 		libharfbuzz.so:print/harfbuzz
 
-USES=		cmake compiler:c++17-lang cpe desktop-file-utils gnome pkgconfig \
-		python:run readline shebangfix ssl sdl tar:bzip2 xorg
+USES=		cmake compiler:c++17-lang cpe desktop-file-utils \
+		gnome lua:54 pkgconfig python:run \
+		readline shebangfix ssl sdl tar:bzip2 xorg
 USE_SDL=	image2 mixer2 ttf2
 USE_GNOME=	cairo pango
 USE_XORG=	ice sm x11 xext
 
-LDFLAGS+=	-L${LOCALBASE}/lib -lboost_system
+LDFLAGS+=	-lboost_system -lpthread
 
 PORTSCOUT=	limitw:1,even
 
 SHEBANG_FILES=	data/tools/about_cfg_to_wiki \
+		data/tools/addon_manager/__init__.py \
 		data/tools/addon_manager/html.py \
+		data/tools/check_mixed_indent \
 		data/tools/expand-terrain-macros.py \
 		data/tools/extractbindings data/tools/imgcheck \
 		data/tools/GUI.pyw \
 		data/tools/hexometer.py \
 		data/tools/steam-changelog \
+		data/tools/TeamColorizer \
 		data/tools/trackviewer.pyw \
 		data/tools/terrain2wiki.py \
 		data/tools/tmx_trackplacer \
-		data/tools/unit_tree/TeamColorizer \
+		data/tools/unit_tree/__init__.py \
+		data/tools/unit_tree/animations.py \
 		data/tools/unit_tree/helpers.py \
+		data/tools/unit_tree/html_output.py \
 		data/tools/unit_tree/overview.py \
+		data/tools/unit_tree/team_colorizer.py \
 		data/tools/unit_tree/update-wmlunits \
+		data/tools/unit_tree/wiki_output.py \
 		data/tools/wesnoth/campaignserver_client.py \
+		data/tools/wesnoth/libgithub.py \
+		data/tools/wesnoth/trackplacer3/cfgfileformat.py \
 		data/tools/wesnoth/trackplacer3/datatypes.py \
+		data/tools/wesnoth/trackplacer3/tmxfileformat.py \
 		data/tools/wesnoth/version.py \
-		data/tools/wesnoth/wescamp.py data/tools/wesnoth/wmldata.py \
+		data/tools/wesnoth/wescamp.py \
+		data/tools/wesnoth/wmldata.py \
+		data/tools/wesnoth/wmliterator3.py \
 		data/tools/wesnoth/wmlparser.py \
 		data/tools/wesnoth/wmlparser3.py \
-		data/tools/wesnoth_addon_manager data/tools/wmlflip \
-		data/tools/wmlindent data/tools/wmllint \
+		data/tools/wesnoth/wmltools3.py \
+		data/tools/wesnoth_addon_manager \
+		data/tools/wmlflip \
+		data/tools/wmlindent \
+		data/tools/wmllint \
 		data/tools/wmllint-1.4 \
 		data/tools/wmlunits \
 		data/tools/wmlscope \
-		data/tools/wmlxgettext
+		data/tools/wmlxgettext \
+		po/FINDCPP \
+		po/FINDPY \
+		run_boost_tests \
+		run_wml_tests \
+		update_copyrights \
+		utils/ai_test/ai_test.py \
+		utils/compare_images.py \
+		utils/dockerbuilds/mingw/get_dlls.py \
+		utils/git_export_campaign \
+		utils/optiwebp.py \
+		utils/po_stat.py \
+		utils/pofix.py \
+		utils/unused_functions.py \
+		utils/update_appdata \
+		utils/update_copyright.py \
+		utils/woptipng.py
 
 CPE_VENDOR=	${PORTNAME}
 CPE_PRODUCT=	battle_for_wesnoth
-CMAKE_ARGS=	-DMANDIR="man" -DENABLE_STRICT_COMPILATION=off
+CMAKE_ARGS=	-DCMAKE_INSTALL_MANDIR=${PREFIX}/share/man \
+		-DENABLE_STRICT_COMPILATION=off
 
 PORTDOCS=	*
 PORTDATA=	*
@@ -87,4 +121,11 @@ SERVER_DESC=	Server
 SERVER_CMAKE_OFF=-DENABLE_SERVER=off
 TEST_CMAKE_ON=	-DENABLE_TESTS=on
 
+post-patch:
+	@${REINPLACE_CMD} -e "s,def = NULL,def = 0," \
+		${WRKSRC}/src/utils/config_filters.hpp
+
+#post-install:
+#	${FIND} ${STAGEDIR}${PREFIX}/man -type d -empty -delete
+
 .include <bsd.port.mk>
diff --git a/games/wesnoth/distinfo b/games/wesnoth/distinfo
index 591e96d5c5bd..2e9dfa4e454f 100644
--- a/games/wesnoth/distinfo
+++ b/games/wesnoth/distinfo
@@ -1,3 +1,3 @@
-TIMESTAMP = 1710736369
-SHA256 (wesnoth-1.16.12.tar.bz2) = 1ebb0ec3f7d90ec1edf61710253a05ff5b04d7068a1d48d29b0e6318c946b966
-SIZE (wesnoth-1.16.12.tar.bz2) = 476686555
+TIMESTAMP = 1721166739
+SHA256 (wesnoth-1.18.1.tar.bz2) = d4f281156ca03c568ce3bd53c842157999e8427596fdbcb9674867d4c3d1f5ae
+SIZE (wesnoth-1.18.1.tar.bz2) = 461256300
diff --git a/games/wesnoth/pkg-plist b/games/wesnoth/pkg-plist
index 6fbd8a942672..c7ef19f8eaf6 100644
--- a/games/wesnoth/pkg-plist
+++ b/games/wesnoth/pkg-plist
@@ -12,20 +12,18 @@ share/icons/hicolor/64x64/apps/wesnoth-icon.png
 share/icons/HighContrast/scalable/apps/wesnoth-icon.svg
 %%CAMPAIGN%%bin/campaignd
 %%NLS%%%%SERVER%%share/man/bg/man6/wesnothd.6.gz
-%%NLS%%%%SERVER%%share/man/ca/man6/wesnothd.6.gz
 %%NLS%%%%SERVER%%share/man/cs/man6/wesnothd.6.gz
 %%NLS%%%%SERVER%%share/man/de/man6/wesnothd.6.gz
 %%NLS%%%%SERVER%%share/man/en_GB/man6/wesnothd.6.gz
 %%NLS%%%%SERVER%%share/man/es/man6/wesnothd.6.gz
 %%NLS%%%%SERVER%%share/man/fr/man6/wesnothd.6.gz
-%%NLS%%%%SERVER%%share/man/gl/man6/wesnothd.6.gz
-%%NLS%%%%SERVER%%share/man/hu/man6/wesnothd.6.gz
 %%NLS%%%%SERVER%%share/man/it/man6/wesnothd.6.gz
 %%NLS%%%%SERVER%%share/man/ja/man6/wesnothd.6.gz
 %%NLS%%%%SERVER%%share/man/pt_BR/man6/wesnothd.6.gz
 %%NLS%%%%SERVER%%share/man/ru/man6/wesnothd.6.gz
 %%NLS%%%%SERVER%%share/man/sk/man6/wesnothd.6.gz
 %%NLS%%%%SERVER%%share/man/tr/man6/wesnothd.6.gz
+%%NLS%%%%SERVER%%share/man/uk/man6/wesnothd.6.gz
 %%NLS%%%%SERVER%%share/man/zh_CN/man6/wesnothd.6.gz
 %%NLS%%%%SERVER%%share/man/zh_TW/man6/wesnothd.6.gz
 %%NLS%%share/man/bg/man6/wesnoth.6.gz
@@ -35,7 +33,6 @@ share/icons/HighContrast/scalable/apps/wesnoth-icon.svg
 %%NLS%%share/man/en_GB/man6/wesnoth.6.gz
 %%NLS%%share/man/es/man6/wesnoth.6.gz
 %%NLS%%share/man/fr/man6/wesnoth.6.gz
-%%NLS%%share/man/hu/man6/wesnoth.6.gz
 %%NLS%%share/man/it/man6/wesnoth.6.gz
 %%NLS%%share/man/ja/man6/wesnoth.6.gz
 %%NLS%%share/man/pt_BR/man6/wesnoth.6.gz
@@ -62,12 +59,14 @@ share/icons/HighContrast/scalable/apps/wesnoth-icon.svg
 %%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-thot.mo
+%%NLS%%share/locale/af/LC_MESSAGES/wesnoth-tools.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-wc.mo
+%%NLS%%share/locale/af/LC_MESSAGES/wesnoth-wof.mo
 %%NLS%%share/locale/af/LC_MESSAGES/wesnoth.mo
 %%NLS%%share/locale/ang@latin/LC_MESSAGES/wesnoth-anl.mo
 %%NLS%%share/locale/ang@latin/LC_MESSAGES/wesnoth-did.mo
@@ -87,12 +86,14 @@ share/icons/HighContrast/scalable/apps/wesnoth-icon.svg
 %%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-thot.mo
+%%NLS%%share/locale/ang@latin/LC_MESSAGES/wesnoth-tools.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-wc.mo
+%%NLS%%share/locale/ang@latin/LC_MESSAGES/wesnoth-wof.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-did.mo
@@ -112,12 +113,14 @@ share/icons/HighContrast/scalable/apps/wesnoth-icon.svg
 %%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-thot.mo
+%%NLS%%share/locale/ar/LC_MESSAGES/wesnoth-tools.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-wc.mo
+%%NLS%%share/locale/ar/LC_MESSAGES/wesnoth-wof.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-did.mo
@@ -137,13 +140,42 @@ share/icons/HighContrast/scalable/apps/wesnoth-icon.svg
 %%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-thot.mo
+%%NLS%%share/locale/bg/LC_MESSAGES/wesnoth-tools.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-wc.mo
+%%NLS%%share/locale/bg/LC_MESSAGES/wesnoth-wof.mo
 %%NLS%%share/locale/bg/LC_MESSAGES/wesnoth.mo
+%%NLS%%share/locale/bn/LC_MESSAGES/wesnoth-anl.mo
+%%NLS%%share/locale/bn/LC_MESSAGES/wesnoth-did.mo
+%%NLS%%share/locale/bn/LC_MESSAGES/wesnoth-dm.mo
+%%NLS%%share/locale/bn/LC_MESSAGES/wesnoth-dw.mo
+%%NLS%%share/locale/bn/LC_MESSAGES/wesnoth-editor.mo
+%%NLS%%share/locale/bn/LC_MESSAGES/wesnoth-ei.mo
+%%NLS%%share/locale/bn/LC_MESSAGES/wesnoth-help.mo
+%%NLS%%share/locale/bn/LC_MESSAGES/wesnoth-httt.mo
+%%NLS%%share/locale/bn/LC_MESSAGES/wesnoth-l.mo
+%%NLS%%share/locale/bn/LC_MESSAGES/wesnoth-lib.mo
+%%NLS%%share/locale/bn/LC_MESSAGES/wesnoth-low.mo
+%%NLS%%share/locale/bn/LC_MESSAGES/wesnoth-multiplayer.mo
+%%NLS%%share/locale/bn/LC_MESSAGES/wesnoth-nr.mo
+%%NLS%%share/locale/bn/LC_MESSAGES/wesnoth-sof.mo
+%%NLS%%share/locale/bn/LC_MESSAGES/wesnoth-sota.mo
+%%NLS%%share/locale/bn/LC_MESSAGES/wesnoth-sotbe.mo
+%%NLS%%share/locale/bn/LC_MESSAGES/wesnoth-tb.mo
+%%NLS%%share/locale/bn/LC_MESSAGES/wesnoth-thot.mo
+%%NLS%%share/locale/bn/LC_MESSAGES/wesnoth-tools.mo
+%%NLS%%share/locale/bn/LC_MESSAGES/wesnoth-trow.mo
+%%NLS%%share/locale/bn/LC_MESSAGES/wesnoth-tsg.mo
+%%NLS%%share/locale/bn/LC_MESSAGES/wesnoth-tutorial.mo
+%%NLS%%share/locale/bn/LC_MESSAGES/wesnoth-units.mo
+%%NLS%%share/locale/bn/LC_MESSAGES/wesnoth-utbs.mo
+%%NLS%%share/locale/bn/LC_MESSAGES/wesnoth-wc.mo
+%%NLS%%share/locale/bn/LC_MESSAGES/wesnoth-wof.mo
+%%NLS%%share/locale/bn/LC_MESSAGES/wesnoth.mo
 %%NLS%%share/locale/ca/LC_MESSAGES/wesnoth-anl.mo
 %%NLS%%share/locale/ca/LC_MESSAGES/wesnoth-did.mo
 %%NLS%%share/locale/ca/LC_MESSAGES/wesnoth-dm.mo
@@ -162,12 +194,14 @@ share/icons/HighContrast/scalable/apps/wesnoth-icon.svg
 %%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-thot.mo
+%%NLS%%share/locale/ca/LC_MESSAGES/wesnoth-tools.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-wc.mo
+%%NLS%%share/locale/ca/LC_MESSAGES/wesnoth-wof.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-did.mo
@@ -187,12 +221,14 @@ share/icons/HighContrast/scalable/apps/wesnoth-icon.svg
 %%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-thot.mo
+%%NLS%%share/locale/ca_ES@valencia/LC_MESSAGES/wesnoth-tools.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-wc.mo
+%%NLS%%share/locale/ca_ES@valencia/LC_MESSAGES/wesnoth-wof.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-did.mo
@@ -212,12 +248,14 @@ share/icons/HighContrast/scalable/apps/wesnoth-icon.svg
 %%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-thot.mo
+%%NLS%%share/locale/cs/LC_MESSAGES/wesnoth-tools.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-wc.mo
+%%NLS%%share/locale/cs/LC_MESSAGES/wesnoth-wof.mo
 %%NLS%%share/locale/cs/LC_MESSAGES/wesnoth.mo
 %%NLS%%share/locale/cy/LC_MESSAGES/wesnoth-anl.mo
 %%NLS%%share/locale/cy/LC_MESSAGES/wesnoth-did.mo
@@ -237,12 +275,14 @@ share/icons/HighContrast/scalable/apps/wesnoth-icon.svg
 %%NLS%%share/locale/cy/LC_MESSAGES/wesnoth-sotbe.mo
 %%NLS%%share/locale/cy/LC_MESSAGES/wesnoth-tb.mo
 %%NLS%%share/locale/cy/LC_MESSAGES/wesnoth-thot.mo
+%%NLS%%share/locale/cy/LC_MESSAGES/wesnoth-tools.mo
 %%NLS%%share/locale/cy/LC_MESSAGES/wesnoth-trow.mo
 %%NLS%%share/locale/cy/LC_MESSAGES/wesnoth-tsg.mo
 %%NLS%%share/locale/cy/LC_MESSAGES/wesnoth-tutorial.mo
 %%NLS%%share/locale/cy/LC_MESSAGES/wesnoth-units.mo
 %%NLS%%share/locale/cy/LC_MESSAGES/wesnoth-utbs.mo
 %%NLS%%share/locale/cy/LC_MESSAGES/wesnoth-wc.mo
+%%NLS%%share/locale/cy/LC_MESSAGES/wesnoth-wof.mo
 %%NLS%%share/locale/cy/LC_MESSAGES/wesnoth.mo
 %%NLS%%share/locale/da/LC_MESSAGES/wesnoth-anl.mo
 %%NLS%%share/locale/da/LC_MESSAGES/wesnoth-did.mo
@@ -262,12 +302,14 @@ share/icons/HighContrast/scalable/apps/wesnoth-icon.svg
 %%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-thot.mo
+%%NLS%%share/locale/da/LC_MESSAGES/wesnoth-tools.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-wc.mo
+%%NLS%%share/locale/da/LC_MESSAGES/wesnoth-wof.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-did.mo
@@ -287,12 +329,14 @@ share/icons/HighContrast/scalable/apps/wesnoth-icon.svg
 %%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-thot.mo
+%%NLS%%share/locale/de/LC_MESSAGES/wesnoth-tools.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-wc.mo
+%%NLS%%share/locale/de/LC_MESSAGES/wesnoth-wof.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-did.mo
@@ -312,12 +356,14 @@ share/icons/HighContrast/scalable/apps/wesnoth-icon.svg
 %%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-thot.mo
+%%NLS%%share/locale/el/LC_MESSAGES/wesnoth-tools.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-wc.mo
+%%NLS%%share/locale/el/LC_MESSAGES/wesnoth-wof.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-did.mo
@@ -337,12 +383,14 @@ share/icons/HighContrast/scalable/apps/wesnoth-icon.svg
 %%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-thot.mo
+%%NLS%%share/locale/en@shaw/LC_MESSAGES/wesnoth-tools.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-wc.mo
+%%NLS%%share/locale/en@shaw/LC_MESSAGES/wesnoth-wof.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-did.mo
@@ -362,12 +410,14 @@ share/icons/HighContrast/scalable/apps/wesnoth-icon.svg
 %%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-thot.mo
+%%NLS%%share/locale/en_GB/LC_MESSAGES/wesnoth-tools.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-wc.mo
+%%NLS%%share/locale/en_GB/LC_MESSAGES/wesnoth-wof.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-did.mo
@@ -387,12 +437,14 @@ share/icons/HighContrast/scalable/apps/wesnoth-icon.svg
 %%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-thot.mo
+%%NLS%%share/locale/eo/LC_MESSAGES/wesnoth-tools.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-wc.mo
+%%NLS%%share/locale/eo/LC_MESSAGES/wesnoth-wof.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-did.mo
@@ -412,12 +464,14 @@ share/icons/HighContrast/scalable/apps/wesnoth-icon.svg
 %%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-thot.mo
+%%NLS%%share/locale/es/LC_MESSAGES/wesnoth-tools.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-wc.mo
+%%NLS%%share/locale/es/LC_MESSAGES/wesnoth-wof.mo
 %%NLS%%share/locale/es/LC_MESSAGES/wesnoth.mo
 %%NLS%%share/locale/es_419/LC_MESSAGES/wesnoth-anl.mo
 %%NLS%%share/locale/es_419/LC_MESSAGES/wesnoth-did.mo
@@ -437,12 +491,14 @@ share/icons/HighContrast/scalable/apps/wesnoth-icon.svg
 %%NLS%%share/locale/es_419/LC_MESSAGES/wesnoth-sotbe.mo
 %%NLS%%share/locale/es_419/LC_MESSAGES/wesnoth-tb.mo
 %%NLS%%share/locale/es_419/LC_MESSAGES/wesnoth-thot.mo
+%%NLS%%share/locale/es_419/LC_MESSAGES/wesnoth-tools.mo
 %%NLS%%share/locale/es_419/LC_MESSAGES/wesnoth-trow.mo
 %%NLS%%share/locale/es_419/LC_MESSAGES/wesnoth-tsg.mo
 %%NLS%%share/locale/es_419/LC_MESSAGES/wesnoth-tutorial.mo
 %%NLS%%share/locale/es_419/LC_MESSAGES/wesnoth-units.mo
 %%NLS%%share/locale/es_419/LC_MESSAGES/wesnoth-utbs.mo
 %%NLS%%share/locale/es_419/LC_MESSAGES/wesnoth-wc.mo
+%%NLS%%share/locale/es_419/LC_MESSAGES/wesnoth-wof.mo
 %%NLS%%share/locale/es_419/LC_MESSAGES/wesnoth.mo
 %%NLS%%share/locale/et/LC_MESSAGES/wesnoth-anl.mo
 %%NLS%%share/locale/et/LC_MESSAGES/wesnoth-did.mo
@@ -462,12 +518,14 @@ share/icons/HighContrast/scalable/apps/wesnoth-icon.svg
 %%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-thot.mo
+%%NLS%%share/locale/et/LC_MESSAGES/wesnoth-tools.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-wc.mo
+%%NLS%%share/locale/et/LC_MESSAGES/wesnoth-wof.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-did.mo
@@ -487,12 +545,14 @@ share/icons/HighContrast/scalable/apps/wesnoth-icon.svg
 %%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-thot.mo
+%%NLS%%share/locale/eu/LC_MESSAGES/wesnoth-tools.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-wc.mo
+%%NLS%%share/locale/eu/LC_MESSAGES/wesnoth-wof.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-did.mo
@@ -512,12 +572,14 @@ share/icons/HighContrast/scalable/apps/wesnoth-icon.svg
 %%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-thot.mo
+%%NLS%%share/locale/fi/LC_MESSAGES/wesnoth-tools.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-wc.mo
+%%NLS%%share/locale/fi/LC_MESSAGES/wesnoth-wof.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-did.mo
@@ -537,12 +599,14 @@ share/icons/HighContrast/scalable/apps/wesnoth-icon.svg
 %%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-thot.mo
+%%NLS%%share/locale/fr/LC_MESSAGES/wesnoth-tools.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-wc.mo
+%%NLS%%share/locale/fr/LC_MESSAGES/wesnoth-wof.mo
 %%NLS%%share/locale/fr/LC_MESSAGES/wesnoth.mo
 %%NLS%%share/locale/ga/LC_MESSAGES/wesnoth-anl.mo
 %%NLS%%share/locale/ga/LC_MESSAGES/wesnoth-did.mo
@@ -562,12 +626,14 @@ share/icons/HighContrast/scalable/apps/wesnoth-icon.svg
 %%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-thot.mo
+%%NLS%%share/locale/ga/LC_MESSAGES/wesnoth-tools.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-wc.mo
+%%NLS%%share/locale/ga/LC_MESSAGES/wesnoth-wof.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-did.mo
@@ -587,12 +653,14 @@ share/icons/HighContrast/scalable/apps/wesnoth-icon.svg
 %%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-thot.mo
+%%NLS%%share/locale/gd/LC_MESSAGES/wesnoth-tools.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-wc.mo
+%%NLS%%share/locale/gd/LC_MESSAGES/wesnoth-wof.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-did.mo
@@ -612,12 +680,14 @@ share/icons/HighContrast/scalable/apps/wesnoth-icon.svg
 %%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-thot.mo
+%%NLS%%share/locale/gl/LC_MESSAGES/wesnoth-tools.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-wc.mo
+%%NLS%%share/locale/gl/LC_MESSAGES/wesnoth-wof.mo
 %%NLS%%share/locale/gl/LC_MESSAGES/wesnoth.mo
 %%NLS%%share/locale/grc/LC_MESSAGES/wesnoth-anl.mo
 %%NLS%%share/locale/grc/LC_MESSAGES/wesnoth-did.mo
@@ -637,12 +707,14 @@ share/icons/HighContrast/scalable/apps/wesnoth-icon.svg
 %%NLS%%share/locale/grc/LC_MESSAGES/wesnoth-sotbe.mo
 %%NLS%%share/locale/grc/LC_MESSAGES/wesnoth-tb.mo
 %%NLS%%share/locale/grc/LC_MESSAGES/wesnoth-thot.mo
+%%NLS%%share/locale/grc/LC_MESSAGES/wesnoth-tools.mo
 %%NLS%%share/locale/grc/LC_MESSAGES/wesnoth-trow.mo
 %%NLS%%share/locale/grc/LC_MESSAGES/wesnoth-tsg.mo
 %%NLS%%share/locale/grc/LC_MESSAGES/wesnoth-tutorial.mo
 %%NLS%%share/locale/grc/LC_MESSAGES/wesnoth-units.mo
 %%NLS%%share/locale/grc/LC_MESSAGES/wesnoth-utbs.mo
 %%NLS%%share/locale/grc/LC_MESSAGES/wesnoth-wc.mo
+%%NLS%%share/locale/grc/LC_MESSAGES/wesnoth-wof.mo
 %%NLS%%share/locale/grc/LC_MESSAGES/wesnoth.mo
 %%NLS%%share/locale/he/LC_MESSAGES/wesnoth-anl.mo
 %%NLS%%share/locale/he/LC_MESSAGES/wesnoth-did.mo
@@ -662,12 +734,14 @@ share/icons/HighContrast/scalable/apps/wesnoth-icon.svg
 %%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-thot.mo
+%%NLS%%share/locale/he/LC_MESSAGES/wesnoth-tools.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-wc.mo
+%%NLS%%share/locale/he/LC_MESSAGES/wesnoth-wof.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-did.mo
@@ -687,12 +761,14 @@ share/icons/HighContrast/scalable/apps/wesnoth-icon.svg
 %%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-thot.mo
+%%NLS%%share/locale/hr/LC_MESSAGES/wesnoth-tools.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-wc.mo
+%%NLS%%share/locale/hr/LC_MESSAGES/wesnoth-wof.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-did.mo
@@ -712,12 +788,14 @@ share/icons/HighContrast/scalable/apps/wesnoth-icon.svg
 %%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-thot.mo
+%%NLS%%share/locale/hu/LC_MESSAGES/wesnoth-tools.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-wc.mo
+%%NLS%%share/locale/hu/LC_MESSAGES/wesnoth-wof.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-did.mo
@@ -737,12 +815,14 @@ share/icons/HighContrast/scalable/apps/wesnoth-icon.svg
 %%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-thot.mo
+%%NLS%%share/locale/id/LC_MESSAGES/wesnoth-tools.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-wc.mo
+%%NLS%%share/locale/id/LC_MESSAGES/wesnoth-wof.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-did.mo
@@ -762,12 +842,14 @@ share/icons/HighContrast/scalable/apps/wesnoth-icon.svg
 %%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-thot.mo
+%%NLS%%share/locale/is/LC_MESSAGES/wesnoth-tools.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-wc.mo
+%%NLS%%share/locale/is/LC_MESSAGES/wesnoth-wof.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-did.mo
@@ -787,12 +869,14 @@ share/icons/HighContrast/scalable/apps/wesnoth-icon.svg
 %%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-thot.mo
+%%NLS%%share/locale/it/LC_MESSAGES/wesnoth-tools.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-wc.mo
+%%NLS%%share/locale/it/LC_MESSAGES/wesnoth-wof.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-did.mo
@@ -812,12 +896,14 @@ share/icons/HighContrast/scalable/apps/wesnoth-icon.svg
 %%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-thot.mo
+%%NLS%%share/locale/ja/LC_MESSAGES/wesnoth-tools.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-wc.mo
+%%NLS%%share/locale/ja/LC_MESSAGES/wesnoth-wof.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-did.mo
@@ -837,12 +923,14 @@ share/icons/HighContrast/scalable/apps/wesnoth-icon.svg
 %%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-thot.mo
+%%NLS%%share/locale/ko/LC_MESSAGES/wesnoth-tools.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-wc.mo
+%%NLS%%share/locale/ko/LC_MESSAGES/wesnoth-wof.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-did.mo
@@ -862,12 +950,14 @@ share/icons/HighContrast/scalable/apps/wesnoth-icon.svg
 %%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-thot.mo
+%%NLS%%share/locale/la/LC_MESSAGES/wesnoth-tools.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-wc.mo
+%%NLS%%share/locale/la/LC_MESSAGES/wesnoth-wof.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-did.mo
@@ -887,12 +977,14 @@ share/icons/HighContrast/scalable/apps/wesnoth-icon.svg
 %%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-thot.mo
+%%NLS%%share/locale/lt/LC_MESSAGES/wesnoth-tools.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-wc.mo
+%%NLS%%share/locale/lt/LC_MESSAGES/wesnoth-wof.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-did.mo
@@ -912,12 +1004,14 @@ share/icons/HighContrast/scalable/apps/wesnoth-icon.svg
 %%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-thot.mo
+%%NLS%%share/locale/lv/LC_MESSAGES/wesnoth-tools.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-wc.mo
+%%NLS%%share/locale/lv/LC_MESSAGES/wesnoth-wof.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-did.mo
@@ -937,12 +1031,14 @@ share/icons/HighContrast/scalable/apps/wesnoth-icon.svg
 %%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-thot.mo
+%%NLS%%share/locale/mk/LC_MESSAGES/wesnoth-tools.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-wc.mo
+%%NLS%%share/locale/mk/LC_MESSAGES/wesnoth-wof.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-did.mo
@@ -962,12 +1058,14 @@ share/icons/HighContrast/scalable/apps/wesnoth-icon.svg
 %%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-thot.mo
+%%NLS%%share/locale/mr/LC_MESSAGES/wesnoth-tools.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-wc.mo
+%%NLS%%share/locale/mr/LC_MESSAGES/wesnoth-wof.mo
 %%NLS%%share/locale/mr/LC_MESSAGES/wesnoth.mo
 %%NLS%%share/locale/my/LC_MESSAGES/wesnoth-anl.mo
 %%NLS%%share/locale/my/LC_MESSAGES/wesnoth-did.mo
@@ -987,12 +1085,14 @@ share/icons/HighContrast/scalable/apps/wesnoth-icon.svg
 %%NLS%%share/locale/my/LC_MESSAGES/wesnoth-sotbe.mo
 %%NLS%%share/locale/my/LC_MESSAGES/wesnoth-tb.mo
 %%NLS%%share/locale/my/LC_MESSAGES/wesnoth-thot.mo
+%%NLS%%share/locale/my/LC_MESSAGES/wesnoth-tools.mo
 %%NLS%%share/locale/my/LC_MESSAGES/wesnoth-trow.mo
 %%NLS%%share/locale/my/LC_MESSAGES/wesnoth-tsg.mo
 %%NLS%%share/locale/my/LC_MESSAGES/wesnoth-tutorial.mo
 %%NLS%%share/locale/my/LC_MESSAGES/wesnoth-units.mo
 %%NLS%%share/locale/my/LC_MESSAGES/wesnoth-utbs.mo
 %%NLS%%share/locale/my/LC_MESSAGES/wesnoth-wc.mo
+%%NLS%%share/locale/my/LC_MESSAGES/wesnoth-wof.mo
 %%NLS%%share/locale/my/LC_MESSAGES/wesnoth.mo
 %%NLS%%share/locale/nb_NO/LC_MESSAGES/wesnoth-anl.mo
 %%NLS%%share/locale/nb_NO/LC_MESSAGES/wesnoth-did.mo
@@ -1012,12 +1112,14 @@ share/icons/HighContrast/scalable/apps/wesnoth-icon.svg
 %%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-thot.mo
+%%NLS%%share/locale/nb_NO/LC_MESSAGES/wesnoth-tools.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-wc.mo
+%%NLS%%share/locale/nb_NO/LC_MESSAGES/wesnoth-wof.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-did.mo
@@ -1037,12 +1139,14 @@ share/icons/HighContrast/scalable/apps/wesnoth-icon.svg
 %%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-thot.mo
+%%NLS%%share/locale/nl/LC_MESSAGES/wesnoth-tools.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-wc.mo
+%%NLS%%share/locale/nl/LC_MESSAGES/wesnoth-wof.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-did.mo
@@ -1062,12 +1166,14 @@ share/icons/HighContrast/scalable/apps/wesnoth-icon.svg
 %%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-thot.mo
+%%NLS%%share/locale/pl/LC_MESSAGES/wesnoth-tools.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-wc.mo
+%%NLS%%share/locale/pl/LC_MESSAGES/wesnoth-wof.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-did.mo
@@ -1087,12 +1193,14 @@ share/icons/HighContrast/scalable/apps/wesnoth-icon.svg
 %%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-thot.mo
+%%NLS%%share/locale/pt/LC_MESSAGES/wesnoth-tools.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-wc.mo
+%%NLS%%share/locale/pt/LC_MESSAGES/wesnoth-wof.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-did.mo
@@ -1112,12 +1220,14 @@ share/icons/HighContrast/scalable/apps/wesnoth-icon.svg
 %%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-thot.mo
+%%NLS%%share/locale/pt_BR/LC_MESSAGES/wesnoth-tools.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-wc.mo
+%%NLS%%share/locale/pt_BR/LC_MESSAGES/wesnoth-wof.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-did.mo
@@ -1137,12 +1247,14 @@ share/icons/HighContrast/scalable/apps/wesnoth-icon.svg
 %%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-thot.mo
+%%NLS%%share/locale/racv/LC_MESSAGES/wesnoth-tools.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-wc.mo
+%%NLS%%share/locale/racv/LC_MESSAGES/wesnoth-wof.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-did.mo
@@ -1162,12 +1274,14 @@ share/icons/HighContrast/scalable/apps/wesnoth-icon.svg
 %%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-thot.mo
+%%NLS%%share/locale/ro/LC_MESSAGES/wesnoth-tools.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-wc.mo
+%%NLS%%share/locale/ro/LC_MESSAGES/wesnoth-wof.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-did.mo
@@ -1187,12 +1301,14 @@ share/icons/HighContrast/scalable/apps/wesnoth-icon.svg
 %%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-thot.mo
+%%NLS%%share/locale/ru/LC_MESSAGES/wesnoth-tools.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-wc.mo
+%%NLS%%share/locale/ru/LC_MESSAGES/wesnoth-wof.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-did.mo
@@ -1212,12 +1328,14 @@ share/icons/HighContrast/scalable/apps/wesnoth-icon.svg
 %%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-thot.mo
+%%NLS%%share/locale/sk/LC_MESSAGES/wesnoth-tools.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-wc.mo
+%%NLS%%share/locale/sk/LC_MESSAGES/wesnoth-wof.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-did.mo
@@ -1237,12 +1355,14 @@ share/icons/HighContrast/scalable/apps/wesnoth-icon.svg
 %%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-thot.mo
+%%NLS%%share/locale/sl/LC_MESSAGES/wesnoth-tools.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-wc.mo
+%%NLS%%share/locale/sl/LC_MESSAGES/wesnoth-wof.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-did.mo
@@ -1262,12 +1382,14 @@ share/icons/HighContrast/scalable/apps/wesnoth-icon.svg
 %%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-thot.mo
+%%NLS%%share/locale/sr/LC_MESSAGES/wesnoth-tools.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-wc.mo
+%%NLS%%share/locale/sr/LC_MESSAGES/wesnoth-wof.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-did.mo
@@ -1287,12 +1409,14 @@ share/icons/HighContrast/scalable/apps/wesnoth-icon.svg
 %%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-thot.mo
+%%NLS%%share/locale/sr@ijekavian/LC_MESSAGES/wesnoth-tools.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-wc.mo
+%%NLS%%share/locale/sr@ijekavian/LC_MESSAGES/wesnoth-wof.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-did.mo
@@ -1312,12 +1436,14 @@ share/icons/HighContrast/scalable/apps/wesnoth-icon.svg
 %%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-thot.mo
+%%NLS%%share/locale/sr@ijekavianlatin/LC_MESSAGES/wesnoth-tools.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-wc.mo
+%%NLS%%share/locale/sr@ijekavianlatin/LC_MESSAGES/wesnoth-wof.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-did.mo
@@ -1337,12 +1463,14 @@ share/icons/HighContrast/scalable/apps/wesnoth-icon.svg
 %%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-thot.mo
+%%NLS%%share/locale/sr@latin/LC_MESSAGES/wesnoth-tools.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
*** 131 LINES SKIPPED ***