View | Details | Raw Unified | Return to bug 165332 | Differences between
and this patch

Collapse All | Expand All

(-)games/wesnoth/Makefile (-101 / +70 lines)
Lines 6-20 Link Here
6
#
6
#
7
7
8
PORTNAME=	wesnoth
8
PORTNAME=	wesnoth
9
PORTVERSION=	1.8.6
9
PORTVERSION=	1.10
10
PORTREVISION=	1
11
CATEGORIES=	games
10
CATEGORIES=	games
12
MASTER_SITES=	SF/${PORTNAME}/${PORTNAME}-${PORTVERSION:R}/${PORTNAME}-${PORTVERSION} \
11
MASTER_SITES=	SF/${PORTNAME}/${PORTNAME}-${PORTVERSION}/${PORTNAME}-${PORTVERSION} \
13
		http://files.wesnoth.org/
12
		http://files.wesnoth.org/
14
13
15
MAINTAINER=	philip@FreeBSD.org
14
MAINTAINER=	philip@FreeBSD.org
16
COMMENT=	A fantasy turn-based strategy game
15
COMMENT=	A fantasy turn-based strategy game
17
16
17
EXTRACT_DEPENDS=${WRKSRC}/fonts/Junicode-Regular.ttf:${PORTSDIR}/x11-fonts/junicode:extract
18
LIB_DEPENDS=	boost_thread.4:${PORTSDIR}/devel/boost-libs
18
LIB_DEPENDS=	boost_thread.4:${PORTSDIR}/devel/boost-libs
19
19
20
LICENSE=	GPLv2 GPLv3
20
LICENSE=	GPLv2 GPLv3
Lines 25-204 CONFLICTS= wesnoth-devel-[0-9]* Link Here
25
25
26
USE_SDL=	image mixer net ttf
26
USE_SDL=	image mixer net ttf
27
USE_GNOME=	pango
27
USE_GNOME=	pango
28
USE_GMAKE=	yes
29
MAKE_JOBS_SAFE=	yes
28
MAKE_JOBS_SAFE=	yes
30
USE_BZIP2=	yes
29
USE_BZIP2=	yes
31
USE_LUA=	5.1
30
USE_CMAKE=	yes
32
USE_AUTOTOOLS=	aclocal autoheader automake autoconf
33
ACLOCAL_ARGS=	-Im4
34
AUTOMAKE_ARGS=	--add-missing --copy
35
CONFIGURE_ENV=	PKG_CONFIG="${PKG_CONFIG}"
36
CONFIGURE_ARGS=	--localstatedir=/var \
37
		--with-boost=${LOCALBASE} \
38
		--with-icondir=${PREFIX}/share/pixmaps \
39
		--with-libiconv-prefix=${LOCALBASE} \
40
		--with-libintl-prefix=${LOCALBASE} \
41
		--with-localedir=${PREFIX}/share/locale
42
PKG_CONFIG?=	${LOCALBASE}/bin/pkg-config
43
44
MANLANG=	"" cs de en_GB es et fi fr gl hu id it ja lt pl pt_BR sk \
45
		sr sr@ijekavian sr@ijekavianlatin sr@latin tr zh_CN zh_TW
46
31
47
MAN6=		wesnoth.6
32
MAN6=		wesnoth.6
48
33
49
PORTDOCS=	*
34
PORTDOCS=	*
50
PORTDATA=	*
35
PORTDATA=	*
51
36
52
OPTIONS=	BWMON	 "Enable bandwidth monitoring for server" Off \
37
OPTIONS=	ANA	 "Enable Asynchronous Network API (WIP)" Off \
53
		CAMPAIGN "Enable campaign server"	On \
38
		CAMPAIGN "Enable campaign server"	On \
54
		EDITOR	 "Enable map editor"		On \
55
		FRIBIDI	 "Enable bidirectional support"	On \
39
		FRIBIDI	 "Enable bidirectional support"	On \
56
		LOWMEM	 "Reduce memory usage (disables animations)" Off \
40
		LOWMEM	 "Reduce memory usage (disables animations)" Off \
57
		NOTIFY	 "Enable desktop notifications"	On \
41
		NOTIFY	 "Enable desktop notifications"	On \
42
		OPENMP	 "Enable OpenMP support"	Off \
58
		POOLALLOC "Use wesnoth own memory allocator" Off \
43
		POOLALLOC "Use wesnoth own memory allocator" Off \
59
		PYTHON	 "Enable python developer tools" On \
44
		PYTHON	 "Enable python developer tools" Off \
60
		RAWSOCKETS "Use raw receiving sockets in multiplayer" Off \
45
		RAWSOCKETS "Use raw receiving sockets in multiplayer" Off \
61
		SERVER	 "Enable server"		On \
46
		SERVER	 "Enable server"		On \
62
		TESTS	 "Enable unit tests"		Off \
47
		TESTS	 "Enable unit tests"		Off \
63
		TINYGUI	 "Enable tiny gui (down to 320x200)" Off \
64
		TOOLS	 "Enable extra tools for artists and translators" On
48
		TOOLS	 "Enable extra tools for artists and translators" On
65
49
66
.include <bsd.port.pre.mk>
50
.include <bsd.port.options.mk>
67
68
.if defined(WITH_DEBUG)
69
CONFIGURE_ARGS+=	--enable-debug
70
.endif
71
72
.if defined(WITH_PROFILE)
73
CONFIGURE_ARGS+=	--enable-profile
74
.endif
75
51
76
# XXX: breaks compilation because of -Werror
52
# XXX: breaks compilation because of -Werror
77
.if !defined(WITH_STRICT)
53
.if !defined(WITH_STRICT)
78
CONFIGURE_ARGS+=	--disable-strict-compilation
54
CMAKE_ARGS+=	-DENABLE_STRICT_COMPILATION=off
79
.endif
55
.endif
80
56
81
.if defined(WITHOUT_BWMON)
57
.if defined(WITHOUT_ANA)
82
CONFIGURE_ARGS+=	--disable-bandwidth-monitor
58
CMAKE_ARGS+=	-DUSE_ANA_NETWORK=off
83
.else
59
.else
84
CONFIGURE_ARGS+=	--enable-bandwidth-monitor
60
CMAKE_ARGS+=	-DUSE_ANA_NETWORK=on
85
.endif
61
.endif
86
62
87
.if defined(WITHOUT_CAMPAIGN)
63
.if defined(WITHOUT_CAMPAIGN)
88
CONFIGURE_ARGS+=	--disable-campaign-server
64
CMAKE_ARGS+=	-DENABLE_CAMPAIGN_SERVER=off
89
PLIST_SUB+=		CAMPAIGN="@comment "
65
PLIST_SUB+=	CAMPAIGN="@comment "
90
.else
91
CONFIGURE_ARGS+=	--enable-campaign-server
92
PLIST_SUB+=		CAMPAIGN=""
93
.endif
94
95
.if defined(WITHOUT_EDITOR)
96
CONFIGURE_ARGS+=	--disable-editor
97
PLIST_SUB+=		EDITOR="@comment "
98
.else
66
.else
99
CONFIGURE_ARGS+=	--enable-editor
67
CMAKE_ARGS+=	-DENABLE_CAMPAIGN_SERVER=on
100
PLIST_SUB+=		EDITOR=""
68
PLIST_SUB+=	CAMPAIGN=""
101
.endif
69
.endif
102
70
103
.if defined(WITHOUT_FRIBIDI)
71
.if defined(WITHOUT_FRIBIDI)
104
CONFIGURE_ARGS+=	--without-fribidi
72
CMAKE_ARGS+=	-DENABLE_FRIBIDI=off
105
.else
73
.else
106
CONFIGURE_ARGS+=	--with-fribidi
74
CMAKE_ARGS+=	-DENABLE_FRIBIDI=on
107
LIB_DEPENDS+=		fribidi.3:${PORTSDIR}/converters/fribidi
75
LIB_DEPENDS+=	fribidi.3:${PORTSDIR}/converters/fribidi
108
.endif
76
.endif
109
77
110
.if defined(WITHOUT_LOWMEM)
78
.if defined(WITHOUT_LOWMEM)
111
CONFIGURE_ARGS+=	--disable-lowmem
79
CMAKE_ARGS+=	-DENABLE_LOW_MEM=off
112
.else
80
.else
113
CONFIGURE_ARGS+=	--enable-lowmem
81
CMAKE_ARGS+=	-DENABLE_LOW_MEM=off
114
.endif
82
.endif
115
83
116
.if defined(WITHOUT_NOTIFY)
84
.if defined(WITHOUT_NOTIFY)
117
CONFIGURE_ARGS+=	--disable-notifications
85
CMAKE_ARGS+=	-DENABLE_NOTIFICATIONS=off
118
.else
86
.else
119
CONFIGURE_ARGS+=	--enable-notifications --enable-dbus
87
CMAKE_ARGS+=	-DENABLE_NOTIFICATIONS=on
120
LIB_DEPENDS+=		dbus-1.3:${PORTSDIR}/devel/dbus
88
LIB_DEPENDS+=	dbus-1.3:${PORTSDIR}/devel/dbus
121
.endif
89
.endif
122
90
123
.if defined(WITHOUT_NLS)
91
.if defined(WITHOUT_NLS)
124
CONFIGURE_ARGS+=	--disable-nls
92
CMAKE_ARGS+=	-DENABLE_NLS=off
125
PLIST_SUB+=		NLS="@comment "
93
PLIST_SUB+=	NLS="@comment "
126
.else
94
.else
127
USE_GETTEXT=		yes
95
CMAKE_ARGS+=	-DENABLE_NLS=on -DLOCALEDIR=${PREFIX}/share/locale
128
CONFIGURE_ARGS+=	--enable-nls
96
USE_GETTEXT=	yes
129
PLIST_SUB+=		NLS=""
97
MANLANG=	"" cs de en_GB es et fi fr gl hu id it lt pl ru sk \
98
		sr sr@ijekavian sr@ijekavianlatin sr@latin zh_CN zh_TW
99
_MANPAGES+=	${PREFIX}/man/ja/man6/wesnothd.6 \
100
		${PREFIX}/man/pt_BR/man6/wesnothd.6 \
101
		${PREFIX}/man/tr/man6/wesnothd.6
102
PLIST_SUB+=	NLS=""
103
.endif
104
105
.if defined(WITHOUT_OPENMP)
106
CMAKE_ARGS+=	-DENABLE_OMP=off
107
.else
108
CMAKE_ARGS+=	-DENABLE_OMP=on
130
.endif
109
.endif
131
110
132
.if defined(WITHOUT_POOLALLOC)
111
.if defined(WITHOUT_POOLALLOC)
133
CONFIGURE_ARGS+=	--disable-pool-alloc
112
CMAKE_ARGS+=	-DENABLE_POOL_ALLOC=off
134
.else
113
.else
135
CONFIGURE_ARGS+=	--enable-pool-alloc
114
CMAKE_ARGS+=	-DENABLE_POOL_ALLOC=on
136
.endif
115
.endif
137
116
138
.if defined(WITHOUT_PYTHON)
117
.if defined(WITHOUT_PYTHON)
139
CONFIGURE_ARGS+=	--disable-python-install
118
PLIST_SUB+=	PYTHON="@comment "
140
PLIST_SUB+=		PYTHON="@comment "
141
.else
119
.else
142
USE_PYTHON=		yes
120
BROKEN=		cmake build doesn\'t support installing python tools
143
CONFIGURE_ENV+=		PYTHON_PREFIX=${PREFIX} \
121
USE_PYTHON=	yes
144
			PYTHON_VERSION=${PYTHON_VERSION:S/python//}
122
CONFIGURE_ENV+=	PYTHON_PREFIX=${PREFIX} \
145
CONFIGURE_ARGS+=	--enable-python-install
123
		PYTHON_VERSION=${PYTHON_VERSION:S/python//}
146
PLIST_SUB+=		PYTHON=""
124
CONFIGURE_ARGS+=--enable-python-install
147
.include "${PORTSDIR}/Mk/bsd.python.mk"
125
PLIST_SUB+=	PYTHON=""
148
.endif
126
.endif
149
127
150
.if defined(WITHOUT_RAWSOCKETS)
128
.if !defined(WITHOUT_RAWSOCKETS)
151
CONFIGURE_ARGS+=	--disable-raw-sockets
129
CFLAGS+=	-DNETWORK_USE_RAW_SOCKETS
152
.else
153
CONFIGURE_ARGS+=	--enable-raw-sockets
154
.endif
130
.endif
155
131
156
.if defined(WITHOUT_SERVER)
132
.if defined(WITHOUT_SERVER)
157
CONFIGURE_ARGS+=	--disable-server
133
CMAKE_ARGS+=	-DENABLE_SERVER=off
158
PLIST_SUB+=		SERVER="@comment "
134
PLIST_SUB+=	SERVER="@comment "
159
.else
135
.else
160
CONFIGURE_ARGS+=	--enable-server
136
CMAKE_ARGS+=	-DENABLE_SERVER=on
161
MAN6+=			wesnothd.6
137
MAN6+=		wesnothd.6
162
PLIST_SUB+=		SERVER=""
138
PLIST_SUB+=	SERVER=""
163
.endif
139
.endif
164
140
165
.if defined(WITHOUT_TESTS)
141
.if defined(WITHOUT_TESTS)
166
CONFIGURE_ARGS+=	--disable-tests
142
CMAKE_ARGS+=	-DENABLE_TESTS=off
167
PLIST_SUB+=		TESTS="@comment "
143
PLIST_SUB+=	TESTS="@comment "
168
.else
169
CONFIGURE_ARGS+=	--enable-tests
170
PLIST_SUB+=		TESTS=""
171
.endif
172
173
.if defined(WITHOUT_TINYGUI)
174
CONFIGURE_ARGS+=	--disable-tinygui
175
.else
144
.else
176
BUILD_DEPENDS+=		convert:${PORTSDIR}/graphics/ImageMagick
145
CMAKE_ARGS+=	-DENABLE_TESTS=on
177
CONFIGURE_ARGS+=	--enable-tinygui
146
PLIST_SUB+=	TESTS=""
178
.endif
147
.endif
179
148
180
.if defined(WITHOUT_TOOLS)
149
.if defined(WITHOUT_TOOLS)
181
CONFIGURE_ARGS+=	--disable-tools
150
CMAKE_ARGS+=	-DENABLE_TOOLS=off
182
PLIST_SUB+=		TOOLS="@comment "
151
PLIST_SUB+=	TOOLS="@comment "
183
.else
152
.else
184
CONFIGURE_ARGS+=	--enable-tools
153
CMAKE_ARGS+=	-DENABLE_TOOLS=on
185
PLIST_SUB+=		TOOLS=""
154
PLIST_SUB+=	TOOLS=""
186
.endif
155
.endif
187
156
188
.if defined(NOPORTDOCS)
157
.if defined(NOPORTDOCS)
189
CONFIGURE_ARGS+=	--without-docs
158
CMAKE_ARGS+=	-DDOCDIR=none
190
.endif
159
.endif
191
160
192
.if defined(NOPORTDATA)
161
.if defined(NOPORTDATA)
193
IGNORE=		game data is required, undefine NOPORTDATA
162
IGNORE=		game data is required, undefine NOPORTDATA
194
.endif
163
.endif
195
164
196
post-patch:	.SILENT
165
post-extract:	.SILENT
197
	${REINPLACE_CMD} -e 's|png_voidp_NULL|NULL|g' \
166
	${INSTALL_DATA} $$(${MAKE} -V WRKSRC \
198
		-e 's|png_error_ptr_NULL|NULL|g' \
167
		-C ${PORTSDIR}/x11-fonts/junicode)/fonts/Junicode-Regular.ttf \
199
		${WRKSRC}/src/tools/exploder_utils.cpp
168
		${WRKSRC}/fonts
200
169
201
post-install:
170
post-install:
202
	-update-desktop-database ${PREFIX}/share/applications
171
	-update-desktop-database ${PREFIX}/share/applications
203
172
204
.include <bsd.port.post.mk>
173
.include <bsd.port.mk>
(-)games/wesnoth/distinfo (-2 / +2 lines)
Lines 1-2 Link Here
1
SHA256 (wesnoth-1.8.6.tar.bz2) = 4fe603fa984ac76a384dc94ba28bd99fe2d1adf02ddf1706f2fa1b82b40f8081
1
SHA256 (wesnoth-1.10.tar.bz2) = 4ba12b1e43761650579d563d4384c5e06674b0bff75cef2cb0abb439ecdc8ece
2
SIZE (wesnoth-1.8.6.tar.bz2) = 302226547
2
SIZE (wesnoth-1.10.tar.bz2) = 339946658
(-)games/wesnoth/pkg-plist (-6 / +197 lines)
Lines 1-13 Link Here
1
%%CAMPAIGN%%bin/campaignd
1
%%CAMPAIGN%%bin/campaignd
2
%%TOOLS%%bin/cutter
2
%%TOOLS%%bin/cutter
3
%%TOOLS%%bin/exploder
3
%%TOOLS%%bin/exploder
4
%%TOOLS%%bin/schema_generator
5
%%TOOLS%%bin/schema_validator
4
bin/wesnoth
6
bin/wesnoth
5
%%TOOLS%%bin/wesnoth_addon_manager
7
%%PYTHON%%%%TOOLS%%bin/wesnoth_addon_manager
6
%%TESTS%%bin/wesnoth_test
8
%%TESTS%%bin/wesnoth_test
7
%%SERVER%%bin/wesnothd
9
%%SERVER%%bin/wesnothd
8
%%TOOLS%%bin/wmlindent
10
%%PYTHON%%%%TOOLS%%bin/wmlindent
9
%%TOOLS%%bin/wmllint
11
%%PYTHON%%%%TOOLS%%bin/wmllint
10
%%TOOLS%%bin/wmlscope
12
%%PYTHON%%%%TOOLS%%bin/wmlscope
11
%%PYTHON%%%%PYTHON_SITELIBDIR%%/wesnoth/__init__.py
13
%%PYTHON%%%%PYTHON_SITELIBDIR%%/wesnoth/__init__.py
12
%%PYTHON%%%%PYTHON_SITELIBDIR%%/wesnoth/__init__.pyc
14
%%PYTHON%%%%PYTHON_SITELIBDIR%%/wesnoth/__init__.pyc
13
%%PYTHON%%%%PYTHON_SITELIBDIR%%/wesnoth/__init__.pyo
15
%%PYTHON%%%%PYTHON_SITELIBDIR%%/wesnoth/__init__.pyo
Lines 33-45 bin/wesnoth Link Here
33
%%PYTHON%%%%PYTHON_SITELIBDIR%%/wesnoth/wmltools.pyc
35
%%PYTHON%%%%PYTHON_SITELIBDIR%%/wesnoth/wmltools.pyc
34
%%PYTHON%%%%PYTHON_SITELIBDIR%%/wesnoth/wmltools.pyo
36
%%PYTHON%%%%PYTHON_SITELIBDIR%%/wesnoth/wmltools.pyo
35
share/applications/wesnoth.desktop
37
share/applications/wesnoth.desktop
36
%%EDITOR%%share/applications/wesnoth_editor.desktop
38
share/applications/wesnoth_editor.desktop
37
%%NLS%%share/locale/af/LC_MESSAGES/wesnoth-anl.mo
39
%%NLS%%share/locale/af/LC_MESSAGES/wesnoth-anl.mo
38
%%NLS%%share/locale/af/LC_MESSAGES/wesnoth-aoi.mo
40
%%NLS%%share/locale/af/LC_MESSAGES/wesnoth-aoi.mo
39
%%NLS%%share/locale/af/LC_MESSAGES/wesnoth-did.mo
41
%%NLS%%share/locale/af/LC_MESSAGES/wesnoth-did.mo
40
%%NLS%%share/locale/af/LC_MESSAGES/wesnoth-dm.mo
42
%%NLS%%share/locale/af/LC_MESSAGES/wesnoth-dm.mo
43
%%NLS%%share/locale/af/LC_MESSAGES/wesnoth-dw.mo
41
%%NLS%%share/locale/af/LC_MESSAGES/wesnoth-editor.mo
44
%%NLS%%share/locale/af/LC_MESSAGES/wesnoth-editor.mo
42
%%NLS%%share/locale/af/LC_MESSAGES/wesnoth-ei.mo
45
%%NLS%%share/locale/af/LC_MESSAGES/wesnoth-ei.mo
46
%%NLS%%share/locale/af/LC_MESSAGES/wesnoth-help.mo
43
%%NLS%%share/locale/af/LC_MESSAGES/wesnoth-httt.mo
47
%%NLS%%share/locale/af/LC_MESSAGES/wesnoth-httt.mo
44
%%NLS%%share/locale/af/LC_MESSAGES/wesnoth-l.mo
48
%%NLS%%share/locale/af/LC_MESSAGES/wesnoth-l.mo
45
%%NLS%%share/locale/af/LC_MESSAGES/wesnoth-lib.mo
49
%%NLS%%share/locale/af/LC_MESSAGES/wesnoth-lib.mo
Lines 57-68 share/applications/wesnoth.desktop Link Here
57
%%NLS%%share/locale/af/LC_MESSAGES/wesnoth-units.mo
61
%%NLS%%share/locale/af/LC_MESSAGES/wesnoth-units.mo
58
%%NLS%%share/locale/af/LC_MESSAGES/wesnoth-utbs.mo
62
%%NLS%%share/locale/af/LC_MESSAGES/wesnoth-utbs.mo
59
%%NLS%%share/locale/af/LC_MESSAGES/wesnoth.mo
63
%%NLS%%share/locale/af/LC_MESSAGES/wesnoth.mo
64
%%NLS%%share/locale/ang/LC_MESSAGES/wesnoth-anl.mo
65
%%NLS%%share/locale/ang/LC_MESSAGES/wesnoth-aoi.mo
66
%%NLS%%share/locale/ang/LC_MESSAGES/wesnoth-did.mo
67
%%NLS%%share/locale/ang/LC_MESSAGES/wesnoth-dm.mo
68
%%NLS%%share/locale/ang/LC_MESSAGES/wesnoth-dw.mo
69
%%NLS%%share/locale/ang/LC_MESSAGES/wesnoth-editor.mo
70
%%NLS%%share/locale/ang/LC_MESSAGES/wesnoth-ei.mo
71
%%NLS%%share/locale/ang/LC_MESSAGES/wesnoth-help.mo
72
%%NLS%%share/locale/ang/LC_MESSAGES/wesnoth-httt.mo
73
%%NLS%%share/locale/ang/LC_MESSAGES/wesnoth-l.mo
74
%%NLS%%share/locale/ang/LC_MESSAGES/wesnoth-lib.mo
75
%%NLS%%share/locale/ang/LC_MESSAGES/wesnoth-low.mo
76
%%NLS%%share/locale/ang/LC_MESSAGES/wesnoth-multiplayer.mo
77
%%NLS%%share/locale/ang/LC_MESSAGES/wesnoth-nr.mo
78
%%NLS%%share/locale/ang/LC_MESSAGES/wesnoth-sof.mo
79
%%NLS%%share/locale/ang/LC_MESSAGES/wesnoth-sotbe.mo
80
%%NLS%%share/locale/ang/LC_MESSAGES/wesnoth-tb.mo
81
%%NLS%%share/locale/ang/LC_MESSAGES/wesnoth-test.mo
82
%%NLS%%share/locale/ang/LC_MESSAGES/wesnoth-thot.mo
83
%%NLS%%share/locale/ang/LC_MESSAGES/wesnoth-trow.mo
84
%%NLS%%share/locale/ang/LC_MESSAGES/wesnoth-tsg.mo
85
%%NLS%%share/locale/ang/LC_MESSAGES/wesnoth-tutorial.mo
86
%%NLS%%share/locale/ang/LC_MESSAGES/wesnoth-units.mo
87
%%NLS%%share/locale/ang/LC_MESSAGES/wesnoth-utbs.mo
88
%%NLS%%share/locale/ang/LC_MESSAGES/wesnoth.mo
89
%%NLS%%share/locale/ang@latin/LC_MESSAGES/wesnoth-anl.mo
90
%%NLS%%share/locale/ang@latin/LC_MESSAGES/wesnoth-aoi.mo
91
%%NLS%%share/locale/ang@latin/LC_MESSAGES/wesnoth-did.mo
92
%%NLS%%share/locale/ang@latin/LC_MESSAGES/wesnoth-dm.mo
93
%%NLS%%share/locale/ang@latin/LC_MESSAGES/wesnoth-dw.mo
94
%%NLS%%share/locale/ang@latin/LC_MESSAGES/wesnoth-editor.mo
95
%%NLS%%share/locale/ang@latin/LC_MESSAGES/wesnoth-ei.mo
96
%%NLS%%share/locale/ang@latin/LC_MESSAGES/wesnoth-help.mo
97
%%NLS%%share/locale/ang@latin/LC_MESSAGES/wesnoth-httt.mo
98
%%NLS%%share/locale/ang@latin/LC_MESSAGES/wesnoth-l.mo
99
%%NLS%%share/locale/ang@latin/LC_MESSAGES/wesnoth-lib.mo
100
%%NLS%%share/locale/ang@latin/LC_MESSAGES/wesnoth-low.mo
101
%%NLS%%share/locale/ang@latin/LC_MESSAGES/wesnoth-multiplayer.mo
102
%%NLS%%share/locale/ang@latin/LC_MESSAGES/wesnoth-nr.mo
103
%%NLS%%share/locale/ang@latin/LC_MESSAGES/wesnoth-sof.mo
104
%%NLS%%share/locale/ang@latin/LC_MESSAGES/wesnoth-sotbe.mo
105
%%NLS%%share/locale/ang@latin/LC_MESSAGES/wesnoth-tb.mo
106
%%NLS%%share/locale/ang@latin/LC_MESSAGES/wesnoth-test.mo
107
%%NLS%%share/locale/ang@latin/LC_MESSAGES/wesnoth-thot.mo
108
%%NLS%%share/locale/ang@latin/LC_MESSAGES/wesnoth-trow.mo
109
%%NLS%%share/locale/ang@latin/LC_MESSAGES/wesnoth-tsg.mo
110
%%NLS%%share/locale/ang@latin/LC_MESSAGES/wesnoth-tutorial.mo
111
%%NLS%%share/locale/ang@latin/LC_MESSAGES/wesnoth-units.mo
112
%%NLS%%share/locale/ang@latin/LC_MESSAGES/wesnoth-utbs.mo
113
%%NLS%%share/locale/ang@latin/LC_MESSAGES/wesnoth.mo
60
%%NLS%%share/locale/ar/LC_MESSAGES/wesnoth-anl.mo
114
%%NLS%%share/locale/ar/LC_MESSAGES/wesnoth-anl.mo
61
%%NLS%%share/locale/ar/LC_MESSAGES/wesnoth-aoi.mo
115
%%NLS%%share/locale/ar/LC_MESSAGES/wesnoth-aoi.mo
62
%%NLS%%share/locale/ar/LC_MESSAGES/wesnoth-did.mo
116
%%NLS%%share/locale/ar/LC_MESSAGES/wesnoth-did.mo
63
%%NLS%%share/locale/ar/LC_MESSAGES/wesnoth-dm.mo
117
%%NLS%%share/locale/ar/LC_MESSAGES/wesnoth-dm.mo
118
%%NLS%%share/locale/ar/LC_MESSAGES/wesnoth-dw.mo
64
%%NLS%%share/locale/ar/LC_MESSAGES/wesnoth-editor.mo
119
%%NLS%%share/locale/ar/LC_MESSAGES/wesnoth-editor.mo
65
%%NLS%%share/locale/ar/LC_MESSAGES/wesnoth-ei.mo
120
%%NLS%%share/locale/ar/LC_MESSAGES/wesnoth-ei.mo
121
%%NLS%%share/locale/ar/LC_MESSAGES/wesnoth-help.mo
66
%%NLS%%share/locale/ar/LC_MESSAGES/wesnoth-httt.mo
122
%%NLS%%share/locale/ar/LC_MESSAGES/wesnoth-httt.mo
67
%%NLS%%share/locale/ar/LC_MESSAGES/wesnoth-l.mo
123
%%NLS%%share/locale/ar/LC_MESSAGES/wesnoth-l.mo
68
%%NLS%%share/locale/ar/LC_MESSAGES/wesnoth-lib.mo
124
%%NLS%%share/locale/ar/LC_MESSAGES/wesnoth-lib.mo
Lines 84-91 share/applications/wesnoth.desktop Link Here
84
%%NLS%%share/locale/bg/LC_MESSAGES/wesnoth-aoi.mo
140
%%NLS%%share/locale/bg/LC_MESSAGES/wesnoth-aoi.mo
85
%%NLS%%share/locale/bg/LC_MESSAGES/wesnoth-did.mo
141
%%NLS%%share/locale/bg/LC_MESSAGES/wesnoth-did.mo
86
%%NLS%%share/locale/bg/LC_MESSAGES/wesnoth-dm.mo
142
%%NLS%%share/locale/bg/LC_MESSAGES/wesnoth-dm.mo
143
%%NLS%%share/locale/bg/LC_MESSAGES/wesnoth-dw.mo
87
%%NLS%%share/locale/bg/LC_MESSAGES/wesnoth-editor.mo
144
%%NLS%%share/locale/bg/LC_MESSAGES/wesnoth-editor.mo
88
%%NLS%%share/locale/bg/LC_MESSAGES/wesnoth-ei.mo
145
%%NLS%%share/locale/bg/LC_MESSAGES/wesnoth-ei.mo
146
%%NLS%%share/locale/bg/LC_MESSAGES/wesnoth-help.mo
89
%%NLS%%share/locale/bg/LC_MESSAGES/wesnoth-httt.mo
147
%%NLS%%share/locale/bg/LC_MESSAGES/wesnoth-httt.mo
90
%%NLS%%share/locale/bg/LC_MESSAGES/wesnoth-l.mo
148
%%NLS%%share/locale/bg/LC_MESSAGES/wesnoth-l.mo
91
%%NLS%%share/locale/bg/LC_MESSAGES/wesnoth-lib.mo
149
%%NLS%%share/locale/bg/LC_MESSAGES/wesnoth-lib.mo
Lines 107-114 share/applications/wesnoth.desktop Link Here
107
%%NLS%%share/locale/ca/LC_MESSAGES/wesnoth-aoi.mo
165
%%NLS%%share/locale/ca/LC_MESSAGES/wesnoth-aoi.mo
108
%%NLS%%share/locale/ca/LC_MESSAGES/wesnoth-did.mo
166
%%NLS%%share/locale/ca/LC_MESSAGES/wesnoth-did.mo
109
%%NLS%%share/locale/ca/LC_MESSAGES/wesnoth-dm.mo
167
%%NLS%%share/locale/ca/LC_MESSAGES/wesnoth-dm.mo
168
%%NLS%%share/locale/ca/LC_MESSAGES/wesnoth-dw.mo
110
%%NLS%%share/locale/ca/LC_MESSAGES/wesnoth-editor.mo
169
%%NLS%%share/locale/ca/LC_MESSAGES/wesnoth-editor.mo
111
%%NLS%%share/locale/ca/LC_MESSAGES/wesnoth-ei.mo
170
%%NLS%%share/locale/ca/LC_MESSAGES/wesnoth-ei.mo
171
%%NLS%%share/locale/ca/LC_MESSAGES/wesnoth-help.mo
112
%%NLS%%share/locale/ca/LC_MESSAGES/wesnoth-httt.mo
172
%%NLS%%share/locale/ca/LC_MESSAGES/wesnoth-httt.mo
113
%%NLS%%share/locale/ca/LC_MESSAGES/wesnoth-l.mo
173
%%NLS%%share/locale/ca/LC_MESSAGES/wesnoth-l.mo
114
%%NLS%%share/locale/ca/LC_MESSAGES/wesnoth-lib.mo
174
%%NLS%%share/locale/ca/LC_MESSAGES/wesnoth-lib.mo
Lines 130-137 share/applications/wesnoth.desktop Link Here
130
%%NLS%%share/locale/ca_ES@valencia/LC_MESSAGES/wesnoth-aoi.mo
190
%%NLS%%share/locale/ca_ES@valencia/LC_MESSAGES/wesnoth-aoi.mo
131
%%NLS%%share/locale/ca_ES@valencia/LC_MESSAGES/wesnoth-did.mo
191
%%NLS%%share/locale/ca_ES@valencia/LC_MESSAGES/wesnoth-did.mo
132
%%NLS%%share/locale/ca_ES@valencia/LC_MESSAGES/wesnoth-dm.mo
192
%%NLS%%share/locale/ca_ES@valencia/LC_MESSAGES/wesnoth-dm.mo
193
%%NLS%%share/locale/ca_ES@valencia/LC_MESSAGES/wesnoth-dw.mo
133
%%NLS%%share/locale/ca_ES@valencia/LC_MESSAGES/wesnoth-editor.mo
194
%%NLS%%share/locale/ca_ES@valencia/LC_MESSAGES/wesnoth-editor.mo
134
%%NLS%%share/locale/ca_ES@valencia/LC_MESSAGES/wesnoth-ei.mo
195
%%NLS%%share/locale/ca_ES@valencia/LC_MESSAGES/wesnoth-ei.mo
196
%%NLS%%share/locale/ca_ES@valencia/LC_MESSAGES/wesnoth-help.mo
135
%%NLS%%share/locale/ca_ES@valencia/LC_MESSAGES/wesnoth-httt.mo
197
%%NLS%%share/locale/ca_ES@valencia/LC_MESSAGES/wesnoth-httt.mo
136
%%NLS%%share/locale/ca_ES@valencia/LC_MESSAGES/wesnoth-l.mo
198
%%NLS%%share/locale/ca_ES@valencia/LC_MESSAGES/wesnoth-l.mo
137
%%NLS%%share/locale/ca_ES@valencia/LC_MESSAGES/wesnoth-lib.mo
199
%%NLS%%share/locale/ca_ES@valencia/LC_MESSAGES/wesnoth-lib.mo
Lines 153-160 share/applications/wesnoth.desktop Link Here
153
%%NLS%%share/locale/cs/LC_MESSAGES/wesnoth-aoi.mo
215
%%NLS%%share/locale/cs/LC_MESSAGES/wesnoth-aoi.mo
154
%%NLS%%share/locale/cs/LC_MESSAGES/wesnoth-did.mo
216
%%NLS%%share/locale/cs/LC_MESSAGES/wesnoth-did.mo
155
%%NLS%%share/locale/cs/LC_MESSAGES/wesnoth-dm.mo
217
%%NLS%%share/locale/cs/LC_MESSAGES/wesnoth-dm.mo
218
%%NLS%%share/locale/cs/LC_MESSAGES/wesnoth-dw.mo
156
%%NLS%%share/locale/cs/LC_MESSAGES/wesnoth-editor.mo
219
%%NLS%%share/locale/cs/LC_MESSAGES/wesnoth-editor.mo
157
%%NLS%%share/locale/cs/LC_MESSAGES/wesnoth-ei.mo
220
%%NLS%%share/locale/cs/LC_MESSAGES/wesnoth-ei.mo
221
%%NLS%%share/locale/cs/LC_MESSAGES/wesnoth-help.mo
158
%%NLS%%share/locale/cs/LC_MESSAGES/wesnoth-httt.mo
222
%%NLS%%share/locale/cs/LC_MESSAGES/wesnoth-httt.mo
159
%%NLS%%share/locale/cs/LC_MESSAGES/wesnoth-l.mo
223
%%NLS%%share/locale/cs/LC_MESSAGES/wesnoth-l.mo
160
%%NLS%%share/locale/cs/LC_MESSAGES/wesnoth-lib.mo
224
%%NLS%%share/locale/cs/LC_MESSAGES/wesnoth-lib.mo
Lines 176-183 share/applications/wesnoth.desktop Link Here
176
%%NLS%%share/locale/da/LC_MESSAGES/wesnoth-aoi.mo
240
%%NLS%%share/locale/da/LC_MESSAGES/wesnoth-aoi.mo
177
%%NLS%%share/locale/da/LC_MESSAGES/wesnoth-did.mo
241
%%NLS%%share/locale/da/LC_MESSAGES/wesnoth-did.mo
178
%%NLS%%share/locale/da/LC_MESSAGES/wesnoth-dm.mo
242
%%NLS%%share/locale/da/LC_MESSAGES/wesnoth-dm.mo
243
%%NLS%%share/locale/da/LC_MESSAGES/wesnoth-dw.mo
179
%%NLS%%share/locale/da/LC_MESSAGES/wesnoth-editor.mo
244
%%NLS%%share/locale/da/LC_MESSAGES/wesnoth-editor.mo
180
%%NLS%%share/locale/da/LC_MESSAGES/wesnoth-ei.mo
245
%%NLS%%share/locale/da/LC_MESSAGES/wesnoth-ei.mo
246
%%NLS%%share/locale/da/LC_MESSAGES/wesnoth-help.mo
181
%%NLS%%share/locale/da/LC_MESSAGES/wesnoth-httt.mo
247
%%NLS%%share/locale/da/LC_MESSAGES/wesnoth-httt.mo
182
%%NLS%%share/locale/da/LC_MESSAGES/wesnoth-l.mo
248
%%NLS%%share/locale/da/LC_MESSAGES/wesnoth-l.mo
183
%%NLS%%share/locale/da/LC_MESSAGES/wesnoth-lib.mo
249
%%NLS%%share/locale/da/LC_MESSAGES/wesnoth-lib.mo
Lines 199-206 share/applications/wesnoth.desktop Link Here
199
%%NLS%%share/locale/de/LC_MESSAGES/wesnoth-aoi.mo
265
%%NLS%%share/locale/de/LC_MESSAGES/wesnoth-aoi.mo
200
%%NLS%%share/locale/de/LC_MESSAGES/wesnoth-did.mo
266
%%NLS%%share/locale/de/LC_MESSAGES/wesnoth-did.mo
201
%%NLS%%share/locale/de/LC_MESSAGES/wesnoth-dm.mo
267
%%NLS%%share/locale/de/LC_MESSAGES/wesnoth-dm.mo
268
%%NLS%%share/locale/de/LC_MESSAGES/wesnoth-dw.mo
202
%%NLS%%share/locale/de/LC_MESSAGES/wesnoth-editor.mo
269
%%NLS%%share/locale/de/LC_MESSAGES/wesnoth-editor.mo
203
%%NLS%%share/locale/de/LC_MESSAGES/wesnoth-ei.mo
270
%%NLS%%share/locale/de/LC_MESSAGES/wesnoth-ei.mo
271
%%NLS%%share/locale/de/LC_MESSAGES/wesnoth-help.mo
204
%%NLS%%share/locale/de/LC_MESSAGES/wesnoth-httt.mo
272
%%NLS%%share/locale/de/LC_MESSAGES/wesnoth-httt.mo
205
%%NLS%%share/locale/de/LC_MESSAGES/wesnoth-l.mo
273
%%NLS%%share/locale/de/LC_MESSAGES/wesnoth-l.mo
206
%%NLS%%share/locale/de/LC_MESSAGES/wesnoth-lib.mo
274
%%NLS%%share/locale/de/LC_MESSAGES/wesnoth-lib.mo
Lines 222-229 share/applications/wesnoth.desktop Link Here
222
%%NLS%%share/locale/el/LC_MESSAGES/wesnoth-aoi.mo
290
%%NLS%%share/locale/el/LC_MESSAGES/wesnoth-aoi.mo
223
%%NLS%%share/locale/el/LC_MESSAGES/wesnoth-did.mo
291
%%NLS%%share/locale/el/LC_MESSAGES/wesnoth-did.mo
224
%%NLS%%share/locale/el/LC_MESSAGES/wesnoth-dm.mo
292
%%NLS%%share/locale/el/LC_MESSAGES/wesnoth-dm.mo
293
%%NLS%%share/locale/el/LC_MESSAGES/wesnoth-dw.mo
225
%%NLS%%share/locale/el/LC_MESSAGES/wesnoth-editor.mo
294
%%NLS%%share/locale/el/LC_MESSAGES/wesnoth-editor.mo
226
%%NLS%%share/locale/el/LC_MESSAGES/wesnoth-ei.mo
295
%%NLS%%share/locale/el/LC_MESSAGES/wesnoth-ei.mo
296
%%NLS%%share/locale/el/LC_MESSAGES/wesnoth-help.mo
227
%%NLS%%share/locale/el/LC_MESSAGES/wesnoth-httt.mo
297
%%NLS%%share/locale/el/LC_MESSAGES/wesnoth-httt.mo
228
%%NLS%%share/locale/el/LC_MESSAGES/wesnoth-l.mo
298
%%NLS%%share/locale/el/LC_MESSAGES/wesnoth-l.mo
229
%%NLS%%share/locale/el/LC_MESSAGES/wesnoth-lib.mo
299
%%NLS%%share/locale/el/LC_MESSAGES/wesnoth-lib.mo
Lines 245-252 share/applications/wesnoth.desktop Link Here
245
%%NLS%%share/locale/en@shaw/LC_MESSAGES/wesnoth-aoi.mo
315
%%NLS%%share/locale/en@shaw/LC_MESSAGES/wesnoth-aoi.mo
246
%%NLS%%share/locale/en@shaw/LC_MESSAGES/wesnoth-did.mo
316
%%NLS%%share/locale/en@shaw/LC_MESSAGES/wesnoth-did.mo
247
%%NLS%%share/locale/en@shaw/LC_MESSAGES/wesnoth-dm.mo
317
%%NLS%%share/locale/en@shaw/LC_MESSAGES/wesnoth-dm.mo
318
%%NLS%%share/locale/en@shaw/LC_MESSAGES/wesnoth-dw.mo
248
%%NLS%%share/locale/en@shaw/LC_MESSAGES/wesnoth-editor.mo
319
%%NLS%%share/locale/en@shaw/LC_MESSAGES/wesnoth-editor.mo
249
%%NLS%%share/locale/en@shaw/LC_MESSAGES/wesnoth-ei.mo
320
%%NLS%%share/locale/en@shaw/LC_MESSAGES/wesnoth-ei.mo
321
%%NLS%%share/locale/en@shaw/LC_MESSAGES/wesnoth-help.mo
250
%%NLS%%share/locale/en@shaw/LC_MESSAGES/wesnoth-httt.mo
322
%%NLS%%share/locale/en@shaw/LC_MESSAGES/wesnoth-httt.mo
251
%%NLS%%share/locale/en@shaw/LC_MESSAGES/wesnoth-l.mo
323
%%NLS%%share/locale/en@shaw/LC_MESSAGES/wesnoth-l.mo
252
%%NLS%%share/locale/en@shaw/LC_MESSAGES/wesnoth-lib.mo
324
%%NLS%%share/locale/en@shaw/LC_MESSAGES/wesnoth-lib.mo
Lines 268-275 share/applications/wesnoth.desktop Link Here
268
%%NLS%%share/locale/en_GB/LC_MESSAGES/wesnoth-aoi.mo
340
%%NLS%%share/locale/en_GB/LC_MESSAGES/wesnoth-aoi.mo
269
%%NLS%%share/locale/en_GB/LC_MESSAGES/wesnoth-did.mo
341
%%NLS%%share/locale/en_GB/LC_MESSAGES/wesnoth-did.mo
270
%%NLS%%share/locale/en_GB/LC_MESSAGES/wesnoth-dm.mo
342
%%NLS%%share/locale/en_GB/LC_MESSAGES/wesnoth-dm.mo
343
%%NLS%%share/locale/en_GB/LC_MESSAGES/wesnoth-dw.mo
271
%%NLS%%share/locale/en_GB/LC_MESSAGES/wesnoth-editor.mo
344
%%NLS%%share/locale/en_GB/LC_MESSAGES/wesnoth-editor.mo
272
%%NLS%%share/locale/en_GB/LC_MESSAGES/wesnoth-ei.mo
345
%%NLS%%share/locale/en_GB/LC_MESSAGES/wesnoth-ei.mo
346
%%NLS%%share/locale/en_GB/LC_MESSAGES/wesnoth-help.mo
273
%%NLS%%share/locale/en_GB/LC_MESSAGES/wesnoth-httt.mo
347
%%NLS%%share/locale/en_GB/LC_MESSAGES/wesnoth-httt.mo
274
%%NLS%%share/locale/en_GB/LC_MESSAGES/wesnoth-l.mo
348
%%NLS%%share/locale/en_GB/LC_MESSAGES/wesnoth-l.mo
275
%%NLS%%share/locale/en_GB/LC_MESSAGES/wesnoth-lib.mo
349
%%NLS%%share/locale/en_GB/LC_MESSAGES/wesnoth-lib.mo
Lines 291-298 share/applications/wesnoth.desktop Link Here
291
%%NLS%%share/locale/eo/LC_MESSAGES/wesnoth-aoi.mo
365
%%NLS%%share/locale/eo/LC_MESSAGES/wesnoth-aoi.mo
292
%%NLS%%share/locale/eo/LC_MESSAGES/wesnoth-did.mo
366
%%NLS%%share/locale/eo/LC_MESSAGES/wesnoth-did.mo
293
%%NLS%%share/locale/eo/LC_MESSAGES/wesnoth-dm.mo
367
%%NLS%%share/locale/eo/LC_MESSAGES/wesnoth-dm.mo
368
%%NLS%%share/locale/eo/LC_MESSAGES/wesnoth-dw.mo
294
%%NLS%%share/locale/eo/LC_MESSAGES/wesnoth-editor.mo
369
%%NLS%%share/locale/eo/LC_MESSAGES/wesnoth-editor.mo
295
%%NLS%%share/locale/eo/LC_MESSAGES/wesnoth-ei.mo
370
%%NLS%%share/locale/eo/LC_MESSAGES/wesnoth-ei.mo
371
%%NLS%%share/locale/eo/LC_MESSAGES/wesnoth-help.mo
296
%%NLS%%share/locale/eo/LC_MESSAGES/wesnoth-httt.mo
372
%%NLS%%share/locale/eo/LC_MESSAGES/wesnoth-httt.mo
297
%%NLS%%share/locale/eo/LC_MESSAGES/wesnoth-l.mo
373
%%NLS%%share/locale/eo/LC_MESSAGES/wesnoth-l.mo
298
%%NLS%%share/locale/eo/LC_MESSAGES/wesnoth-lib.mo
374
%%NLS%%share/locale/eo/LC_MESSAGES/wesnoth-lib.mo
Lines 314-321 share/applications/wesnoth.desktop Link Here
314
%%NLS%%share/locale/es/LC_MESSAGES/wesnoth-aoi.mo
390
%%NLS%%share/locale/es/LC_MESSAGES/wesnoth-aoi.mo
315
%%NLS%%share/locale/es/LC_MESSAGES/wesnoth-did.mo
391
%%NLS%%share/locale/es/LC_MESSAGES/wesnoth-did.mo
316
%%NLS%%share/locale/es/LC_MESSAGES/wesnoth-dm.mo
392
%%NLS%%share/locale/es/LC_MESSAGES/wesnoth-dm.mo
393
%%NLS%%share/locale/es/LC_MESSAGES/wesnoth-dw.mo
317
%%NLS%%share/locale/es/LC_MESSAGES/wesnoth-editor.mo
394
%%NLS%%share/locale/es/LC_MESSAGES/wesnoth-editor.mo
318
%%NLS%%share/locale/es/LC_MESSAGES/wesnoth-ei.mo
395
%%NLS%%share/locale/es/LC_MESSAGES/wesnoth-ei.mo
396
%%NLS%%share/locale/es/LC_MESSAGES/wesnoth-help.mo
319
%%NLS%%share/locale/es/LC_MESSAGES/wesnoth-httt.mo
397
%%NLS%%share/locale/es/LC_MESSAGES/wesnoth-httt.mo
320
%%NLS%%share/locale/es/LC_MESSAGES/wesnoth-l.mo
398
%%NLS%%share/locale/es/LC_MESSAGES/wesnoth-l.mo
321
%%NLS%%share/locale/es/LC_MESSAGES/wesnoth-lib.mo
399
%%NLS%%share/locale/es/LC_MESSAGES/wesnoth-lib.mo
Lines 337-344 share/applications/wesnoth.desktop Link Here
337
%%NLS%%share/locale/et/LC_MESSAGES/wesnoth-aoi.mo
415
%%NLS%%share/locale/et/LC_MESSAGES/wesnoth-aoi.mo
338
%%NLS%%share/locale/et/LC_MESSAGES/wesnoth-did.mo
416
%%NLS%%share/locale/et/LC_MESSAGES/wesnoth-did.mo
339
%%NLS%%share/locale/et/LC_MESSAGES/wesnoth-dm.mo
417
%%NLS%%share/locale/et/LC_MESSAGES/wesnoth-dm.mo
418
%%NLS%%share/locale/et/LC_MESSAGES/wesnoth-dw.mo
340
%%NLS%%share/locale/et/LC_MESSAGES/wesnoth-editor.mo
419
%%NLS%%share/locale/et/LC_MESSAGES/wesnoth-editor.mo
341
%%NLS%%share/locale/et/LC_MESSAGES/wesnoth-ei.mo
420
%%NLS%%share/locale/et/LC_MESSAGES/wesnoth-ei.mo
421
%%NLS%%share/locale/et/LC_MESSAGES/wesnoth-help.mo
342
%%NLS%%share/locale/et/LC_MESSAGES/wesnoth-httt.mo
422
%%NLS%%share/locale/et/LC_MESSAGES/wesnoth-httt.mo
343
%%NLS%%share/locale/et/LC_MESSAGES/wesnoth-l.mo
423
%%NLS%%share/locale/et/LC_MESSAGES/wesnoth-l.mo
344
%%NLS%%share/locale/et/LC_MESSAGES/wesnoth-lib.mo
424
%%NLS%%share/locale/et/LC_MESSAGES/wesnoth-lib.mo
Lines 360-367 share/applications/wesnoth.desktop Link Here
360
%%NLS%%share/locale/eu/LC_MESSAGES/wesnoth-aoi.mo
440
%%NLS%%share/locale/eu/LC_MESSAGES/wesnoth-aoi.mo
361
%%NLS%%share/locale/eu/LC_MESSAGES/wesnoth-did.mo
441
%%NLS%%share/locale/eu/LC_MESSAGES/wesnoth-did.mo
362
%%NLS%%share/locale/eu/LC_MESSAGES/wesnoth-dm.mo
442
%%NLS%%share/locale/eu/LC_MESSAGES/wesnoth-dm.mo
443
%%NLS%%share/locale/eu/LC_MESSAGES/wesnoth-dw.mo
363
%%NLS%%share/locale/eu/LC_MESSAGES/wesnoth-editor.mo
444
%%NLS%%share/locale/eu/LC_MESSAGES/wesnoth-editor.mo
364
%%NLS%%share/locale/eu/LC_MESSAGES/wesnoth-ei.mo
445
%%NLS%%share/locale/eu/LC_MESSAGES/wesnoth-ei.mo
446
%%NLS%%share/locale/eu/LC_MESSAGES/wesnoth-help.mo
365
%%NLS%%share/locale/eu/LC_MESSAGES/wesnoth-httt.mo
447
%%NLS%%share/locale/eu/LC_MESSAGES/wesnoth-httt.mo
366
%%NLS%%share/locale/eu/LC_MESSAGES/wesnoth-l.mo
448
%%NLS%%share/locale/eu/LC_MESSAGES/wesnoth-l.mo
367
%%NLS%%share/locale/eu/LC_MESSAGES/wesnoth-lib.mo
449
%%NLS%%share/locale/eu/LC_MESSAGES/wesnoth-lib.mo
Lines 383-390 share/applications/wesnoth.desktop Link Here
383
%%NLS%%share/locale/fi/LC_MESSAGES/wesnoth-aoi.mo
465
%%NLS%%share/locale/fi/LC_MESSAGES/wesnoth-aoi.mo
384
%%NLS%%share/locale/fi/LC_MESSAGES/wesnoth-did.mo
466
%%NLS%%share/locale/fi/LC_MESSAGES/wesnoth-did.mo
385
%%NLS%%share/locale/fi/LC_MESSAGES/wesnoth-dm.mo
467
%%NLS%%share/locale/fi/LC_MESSAGES/wesnoth-dm.mo
468
%%NLS%%share/locale/fi/LC_MESSAGES/wesnoth-dw.mo
386
%%NLS%%share/locale/fi/LC_MESSAGES/wesnoth-editor.mo
469
%%NLS%%share/locale/fi/LC_MESSAGES/wesnoth-editor.mo
387
%%NLS%%share/locale/fi/LC_MESSAGES/wesnoth-ei.mo
470
%%NLS%%share/locale/fi/LC_MESSAGES/wesnoth-ei.mo
471
%%NLS%%share/locale/fi/LC_MESSAGES/wesnoth-help.mo
388
%%NLS%%share/locale/fi/LC_MESSAGES/wesnoth-httt.mo
472
%%NLS%%share/locale/fi/LC_MESSAGES/wesnoth-httt.mo
389
%%NLS%%share/locale/fi/LC_MESSAGES/wesnoth-l.mo
473
%%NLS%%share/locale/fi/LC_MESSAGES/wesnoth-l.mo
390
%%NLS%%share/locale/fi/LC_MESSAGES/wesnoth-lib.mo
474
%%NLS%%share/locale/fi/LC_MESSAGES/wesnoth-lib.mo
Lines 406-413 share/applications/wesnoth.desktop Link Here
406
%%NLS%%share/locale/fr/LC_MESSAGES/wesnoth-aoi.mo
490
%%NLS%%share/locale/fr/LC_MESSAGES/wesnoth-aoi.mo
407
%%NLS%%share/locale/fr/LC_MESSAGES/wesnoth-did.mo
491
%%NLS%%share/locale/fr/LC_MESSAGES/wesnoth-did.mo
408
%%NLS%%share/locale/fr/LC_MESSAGES/wesnoth-dm.mo
492
%%NLS%%share/locale/fr/LC_MESSAGES/wesnoth-dm.mo
493
%%NLS%%share/locale/fr/LC_MESSAGES/wesnoth-dw.mo
409
%%NLS%%share/locale/fr/LC_MESSAGES/wesnoth-editor.mo
494
%%NLS%%share/locale/fr/LC_MESSAGES/wesnoth-editor.mo
410
%%NLS%%share/locale/fr/LC_MESSAGES/wesnoth-ei.mo
495
%%NLS%%share/locale/fr/LC_MESSAGES/wesnoth-ei.mo
496
%%NLS%%share/locale/fr/LC_MESSAGES/wesnoth-help.mo
411
%%NLS%%share/locale/fr/LC_MESSAGES/wesnoth-httt.mo
497
%%NLS%%share/locale/fr/LC_MESSAGES/wesnoth-httt.mo
412
%%NLS%%share/locale/fr/LC_MESSAGES/wesnoth-l.mo
498
%%NLS%%share/locale/fr/LC_MESSAGES/wesnoth-l.mo
413
%%NLS%%share/locale/fr/LC_MESSAGES/wesnoth-lib.mo
499
%%NLS%%share/locale/fr/LC_MESSAGES/wesnoth-lib.mo
Lines 429-436 share/applications/wesnoth.desktop Link Here
429
%%NLS%%share/locale/fur_IT/LC_MESSAGES/wesnoth-aoi.mo
515
%%NLS%%share/locale/fur_IT/LC_MESSAGES/wesnoth-aoi.mo
430
%%NLS%%share/locale/fur_IT/LC_MESSAGES/wesnoth-did.mo
516
%%NLS%%share/locale/fur_IT/LC_MESSAGES/wesnoth-did.mo
431
%%NLS%%share/locale/fur_IT/LC_MESSAGES/wesnoth-dm.mo
517
%%NLS%%share/locale/fur_IT/LC_MESSAGES/wesnoth-dm.mo
518
%%NLS%%share/locale/fur_IT/LC_MESSAGES/wesnoth-dw.mo
432
%%NLS%%share/locale/fur_IT/LC_MESSAGES/wesnoth-editor.mo
519
%%NLS%%share/locale/fur_IT/LC_MESSAGES/wesnoth-editor.mo
433
%%NLS%%share/locale/fur_IT/LC_MESSAGES/wesnoth-ei.mo
520
%%NLS%%share/locale/fur_IT/LC_MESSAGES/wesnoth-ei.mo
521
%%NLS%%share/locale/fur_IT/LC_MESSAGES/wesnoth-help.mo
434
%%NLS%%share/locale/fur_IT/LC_MESSAGES/wesnoth-httt.mo
522
%%NLS%%share/locale/fur_IT/LC_MESSAGES/wesnoth-httt.mo
435
%%NLS%%share/locale/fur_IT/LC_MESSAGES/wesnoth-l.mo
523
%%NLS%%share/locale/fur_IT/LC_MESSAGES/wesnoth-l.mo
436
%%NLS%%share/locale/fur_IT/LC_MESSAGES/wesnoth-lib.mo
524
%%NLS%%share/locale/fur_IT/LC_MESSAGES/wesnoth-lib.mo
Lines 448-459 share/applications/wesnoth.desktop Link Here
448
%%NLS%%share/locale/fur_IT/LC_MESSAGES/wesnoth-units.mo
536
%%NLS%%share/locale/fur_IT/LC_MESSAGES/wesnoth-units.mo
449
%%NLS%%share/locale/fur_IT/LC_MESSAGES/wesnoth-utbs.mo
537
%%NLS%%share/locale/fur_IT/LC_MESSAGES/wesnoth-utbs.mo
450
%%NLS%%share/locale/fur_IT/LC_MESSAGES/wesnoth.mo
538
%%NLS%%share/locale/fur_IT/LC_MESSAGES/wesnoth.mo
539
%%NLS%%share/locale/ga/LC_MESSAGES/wesnoth-anl.mo
540
%%NLS%%share/locale/ga/LC_MESSAGES/wesnoth-aoi.mo
541
%%NLS%%share/locale/ga/LC_MESSAGES/wesnoth-did.mo
542
%%NLS%%share/locale/ga/LC_MESSAGES/wesnoth-dm.mo
543
%%NLS%%share/locale/ga/LC_MESSAGES/wesnoth-dw.mo
544
%%NLS%%share/locale/ga/LC_MESSAGES/wesnoth-editor.mo
545
%%NLS%%share/locale/ga/LC_MESSAGES/wesnoth-ei.mo
546
%%NLS%%share/locale/ga/LC_MESSAGES/wesnoth-help.mo
547
%%NLS%%share/locale/ga/LC_MESSAGES/wesnoth-httt.mo
548
%%NLS%%share/locale/ga/LC_MESSAGES/wesnoth-l.mo
549
%%NLS%%share/locale/ga/LC_MESSAGES/wesnoth-lib.mo
550
%%NLS%%share/locale/ga/LC_MESSAGES/wesnoth-low.mo
551
%%NLS%%share/locale/ga/LC_MESSAGES/wesnoth-multiplayer.mo
552
%%NLS%%share/locale/ga/LC_MESSAGES/wesnoth-nr.mo
553
%%NLS%%share/locale/ga/LC_MESSAGES/wesnoth-sof.mo
554
%%NLS%%share/locale/ga/LC_MESSAGES/wesnoth-sotbe.mo
555
%%NLS%%share/locale/ga/LC_MESSAGES/wesnoth-tb.mo
556
%%NLS%%share/locale/ga/LC_MESSAGES/wesnoth-test.mo
557
%%NLS%%share/locale/ga/LC_MESSAGES/wesnoth-thot.mo
558
%%NLS%%share/locale/ga/LC_MESSAGES/wesnoth-trow.mo
559
%%NLS%%share/locale/ga/LC_MESSAGES/wesnoth-tsg.mo
560
%%NLS%%share/locale/ga/LC_MESSAGES/wesnoth-tutorial.mo
561
%%NLS%%share/locale/ga/LC_MESSAGES/wesnoth-units.mo
562
%%NLS%%share/locale/ga/LC_MESSAGES/wesnoth-utbs.mo
563
%%NLS%%share/locale/ga/LC_MESSAGES/wesnoth.mo
451
%%NLS%%share/locale/gl/LC_MESSAGES/wesnoth-anl.mo
564
%%NLS%%share/locale/gl/LC_MESSAGES/wesnoth-anl.mo
452
%%NLS%%share/locale/gl/LC_MESSAGES/wesnoth-aoi.mo
565
%%NLS%%share/locale/gl/LC_MESSAGES/wesnoth-aoi.mo
453
%%NLS%%share/locale/gl/LC_MESSAGES/wesnoth-did.mo
566
%%NLS%%share/locale/gl/LC_MESSAGES/wesnoth-did.mo
454
%%NLS%%share/locale/gl/LC_MESSAGES/wesnoth-dm.mo
567
%%NLS%%share/locale/gl/LC_MESSAGES/wesnoth-dm.mo
568
%%NLS%%share/locale/gl/LC_MESSAGES/wesnoth-dw.mo
455
%%NLS%%share/locale/gl/LC_MESSAGES/wesnoth-editor.mo
569
%%NLS%%share/locale/gl/LC_MESSAGES/wesnoth-editor.mo
456
%%NLS%%share/locale/gl/LC_MESSAGES/wesnoth-ei.mo
570
%%NLS%%share/locale/gl/LC_MESSAGES/wesnoth-ei.mo
571
%%NLS%%share/locale/gl/LC_MESSAGES/wesnoth-help.mo
457
%%NLS%%share/locale/gl/LC_MESSAGES/wesnoth-httt.mo
572
%%NLS%%share/locale/gl/LC_MESSAGES/wesnoth-httt.mo
458
%%NLS%%share/locale/gl/LC_MESSAGES/wesnoth-l.mo
573
%%NLS%%share/locale/gl/LC_MESSAGES/wesnoth-l.mo
459
%%NLS%%share/locale/gl/LC_MESSAGES/wesnoth-lib.mo
574
%%NLS%%share/locale/gl/LC_MESSAGES/wesnoth-lib.mo
Lines 475-482 share/applications/wesnoth.desktop Link Here
475
%%NLS%%share/locale/he/LC_MESSAGES/wesnoth-aoi.mo
590
%%NLS%%share/locale/he/LC_MESSAGES/wesnoth-aoi.mo
476
%%NLS%%share/locale/he/LC_MESSAGES/wesnoth-did.mo
591
%%NLS%%share/locale/he/LC_MESSAGES/wesnoth-did.mo
477
%%NLS%%share/locale/he/LC_MESSAGES/wesnoth-dm.mo
592
%%NLS%%share/locale/he/LC_MESSAGES/wesnoth-dm.mo
593
%%NLS%%share/locale/he/LC_MESSAGES/wesnoth-dw.mo
478
%%NLS%%share/locale/he/LC_MESSAGES/wesnoth-editor.mo
594
%%NLS%%share/locale/he/LC_MESSAGES/wesnoth-editor.mo
479
%%NLS%%share/locale/he/LC_MESSAGES/wesnoth-ei.mo
595
%%NLS%%share/locale/he/LC_MESSAGES/wesnoth-ei.mo
596
%%NLS%%share/locale/he/LC_MESSAGES/wesnoth-help.mo
480
%%NLS%%share/locale/he/LC_MESSAGES/wesnoth-httt.mo
597
%%NLS%%share/locale/he/LC_MESSAGES/wesnoth-httt.mo
481
%%NLS%%share/locale/he/LC_MESSAGES/wesnoth-l.mo
598
%%NLS%%share/locale/he/LC_MESSAGES/wesnoth-l.mo
482
%%NLS%%share/locale/he/LC_MESSAGES/wesnoth-lib.mo
599
%%NLS%%share/locale/he/LC_MESSAGES/wesnoth-lib.mo
Lines 498-505 share/applications/wesnoth.desktop Link Here
498
%%NLS%%share/locale/hr/LC_MESSAGES/wesnoth-aoi.mo
615
%%NLS%%share/locale/hr/LC_MESSAGES/wesnoth-aoi.mo
499
%%NLS%%share/locale/hr/LC_MESSAGES/wesnoth-did.mo
616
%%NLS%%share/locale/hr/LC_MESSAGES/wesnoth-did.mo
500
%%NLS%%share/locale/hr/LC_MESSAGES/wesnoth-dm.mo
617
%%NLS%%share/locale/hr/LC_MESSAGES/wesnoth-dm.mo
618
%%NLS%%share/locale/hr/LC_MESSAGES/wesnoth-dw.mo
501
%%NLS%%share/locale/hr/LC_MESSAGES/wesnoth-editor.mo
619
%%NLS%%share/locale/hr/LC_MESSAGES/wesnoth-editor.mo
502
%%NLS%%share/locale/hr/LC_MESSAGES/wesnoth-ei.mo
620
%%NLS%%share/locale/hr/LC_MESSAGES/wesnoth-ei.mo
621
%%NLS%%share/locale/hr/LC_MESSAGES/wesnoth-help.mo
503
%%NLS%%share/locale/hr/LC_MESSAGES/wesnoth-httt.mo
622
%%NLS%%share/locale/hr/LC_MESSAGES/wesnoth-httt.mo
504
%%NLS%%share/locale/hr/LC_MESSAGES/wesnoth-l.mo
623
%%NLS%%share/locale/hr/LC_MESSAGES/wesnoth-l.mo
505
%%NLS%%share/locale/hr/LC_MESSAGES/wesnoth-lib.mo
624
%%NLS%%share/locale/hr/LC_MESSAGES/wesnoth-lib.mo
Lines 521-528 share/applications/wesnoth.desktop Link Here
521
%%NLS%%share/locale/hu/LC_MESSAGES/wesnoth-aoi.mo
640
%%NLS%%share/locale/hu/LC_MESSAGES/wesnoth-aoi.mo
522
%%NLS%%share/locale/hu/LC_MESSAGES/wesnoth-did.mo
641
%%NLS%%share/locale/hu/LC_MESSAGES/wesnoth-did.mo
523
%%NLS%%share/locale/hu/LC_MESSAGES/wesnoth-dm.mo
642
%%NLS%%share/locale/hu/LC_MESSAGES/wesnoth-dm.mo
643
%%NLS%%share/locale/hu/LC_MESSAGES/wesnoth-dw.mo
524
%%NLS%%share/locale/hu/LC_MESSAGES/wesnoth-editor.mo
644
%%NLS%%share/locale/hu/LC_MESSAGES/wesnoth-editor.mo
525
%%NLS%%share/locale/hu/LC_MESSAGES/wesnoth-ei.mo
645
%%NLS%%share/locale/hu/LC_MESSAGES/wesnoth-ei.mo
646
%%NLS%%share/locale/hu/LC_MESSAGES/wesnoth-help.mo
526
%%NLS%%share/locale/hu/LC_MESSAGES/wesnoth-httt.mo
647
%%NLS%%share/locale/hu/LC_MESSAGES/wesnoth-httt.mo
527
%%NLS%%share/locale/hu/LC_MESSAGES/wesnoth-l.mo
648
%%NLS%%share/locale/hu/LC_MESSAGES/wesnoth-l.mo
528
%%NLS%%share/locale/hu/LC_MESSAGES/wesnoth-lib.mo
649
%%NLS%%share/locale/hu/LC_MESSAGES/wesnoth-lib.mo
Lines 544-551 share/applications/wesnoth.desktop Link Here
544
%%NLS%%share/locale/id/LC_MESSAGES/wesnoth-aoi.mo
665
%%NLS%%share/locale/id/LC_MESSAGES/wesnoth-aoi.mo
545
%%NLS%%share/locale/id/LC_MESSAGES/wesnoth-did.mo
666
%%NLS%%share/locale/id/LC_MESSAGES/wesnoth-did.mo
546
%%NLS%%share/locale/id/LC_MESSAGES/wesnoth-dm.mo
667
%%NLS%%share/locale/id/LC_MESSAGES/wesnoth-dm.mo
668
%%NLS%%share/locale/id/LC_MESSAGES/wesnoth-dw.mo
547
%%NLS%%share/locale/id/LC_MESSAGES/wesnoth-editor.mo
669
%%NLS%%share/locale/id/LC_MESSAGES/wesnoth-editor.mo
548
%%NLS%%share/locale/id/LC_MESSAGES/wesnoth-ei.mo
670
%%NLS%%share/locale/id/LC_MESSAGES/wesnoth-ei.mo
671
%%NLS%%share/locale/id/LC_MESSAGES/wesnoth-help.mo
549
%%NLS%%share/locale/id/LC_MESSAGES/wesnoth-httt.mo
672
%%NLS%%share/locale/id/LC_MESSAGES/wesnoth-httt.mo
550
%%NLS%%share/locale/id/LC_MESSAGES/wesnoth-l.mo
673
%%NLS%%share/locale/id/LC_MESSAGES/wesnoth-l.mo
551
%%NLS%%share/locale/id/LC_MESSAGES/wesnoth-lib.mo
674
%%NLS%%share/locale/id/LC_MESSAGES/wesnoth-lib.mo
Lines 567-574 share/applications/wesnoth.desktop Link Here
567
%%NLS%%share/locale/is/LC_MESSAGES/wesnoth-aoi.mo
690
%%NLS%%share/locale/is/LC_MESSAGES/wesnoth-aoi.mo
568
%%NLS%%share/locale/is/LC_MESSAGES/wesnoth-did.mo
691
%%NLS%%share/locale/is/LC_MESSAGES/wesnoth-did.mo
569
%%NLS%%share/locale/is/LC_MESSAGES/wesnoth-dm.mo
692
%%NLS%%share/locale/is/LC_MESSAGES/wesnoth-dm.mo
693
%%NLS%%share/locale/is/LC_MESSAGES/wesnoth-dw.mo
570
%%NLS%%share/locale/is/LC_MESSAGES/wesnoth-editor.mo
694
%%NLS%%share/locale/is/LC_MESSAGES/wesnoth-editor.mo
571
%%NLS%%share/locale/is/LC_MESSAGES/wesnoth-ei.mo
695
%%NLS%%share/locale/is/LC_MESSAGES/wesnoth-ei.mo
696
%%NLS%%share/locale/is/LC_MESSAGES/wesnoth-help.mo
572
%%NLS%%share/locale/is/LC_MESSAGES/wesnoth-httt.mo
697
%%NLS%%share/locale/is/LC_MESSAGES/wesnoth-httt.mo
573
%%NLS%%share/locale/is/LC_MESSAGES/wesnoth-l.mo
698
%%NLS%%share/locale/is/LC_MESSAGES/wesnoth-l.mo
574
%%NLS%%share/locale/is/LC_MESSAGES/wesnoth-lib.mo
699
%%NLS%%share/locale/is/LC_MESSAGES/wesnoth-lib.mo
Lines 590-597 share/applications/wesnoth.desktop Link Here
590
%%NLS%%share/locale/it/LC_MESSAGES/wesnoth-aoi.mo
715
%%NLS%%share/locale/it/LC_MESSAGES/wesnoth-aoi.mo
591
%%NLS%%share/locale/it/LC_MESSAGES/wesnoth-did.mo
716
%%NLS%%share/locale/it/LC_MESSAGES/wesnoth-did.mo
592
%%NLS%%share/locale/it/LC_MESSAGES/wesnoth-dm.mo
717
%%NLS%%share/locale/it/LC_MESSAGES/wesnoth-dm.mo
718
%%NLS%%share/locale/it/LC_MESSAGES/wesnoth-dw.mo
593
%%NLS%%share/locale/it/LC_MESSAGES/wesnoth-editor.mo
719
%%NLS%%share/locale/it/LC_MESSAGES/wesnoth-editor.mo
594
%%NLS%%share/locale/it/LC_MESSAGES/wesnoth-ei.mo
720
%%NLS%%share/locale/it/LC_MESSAGES/wesnoth-ei.mo
721
%%NLS%%share/locale/it/LC_MESSAGES/wesnoth-help.mo
595
%%NLS%%share/locale/it/LC_MESSAGES/wesnoth-httt.mo
722
%%NLS%%share/locale/it/LC_MESSAGES/wesnoth-httt.mo
596
%%NLS%%share/locale/it/LC_MESSAGES/wesnoth-l.mo
723
%%NLS%%share/locale/it/LC_MESSAGES/wesnoth-l.mo
597
%%NLS%%share/locale/it/LC_MESSAGES/wesnoth-lib.mo
724
%%NLS%%share/locale/it/LC_MESSAGES/wesnoth-lib.mo
Lines 613-620 share/applications/wesnoth.desktop Link Here
613
%%NLS%%share/locale/ja/LC_MESSAGES/wesnoth-aoi.mo
740
%%NLS%%share/locale/ja/LC_MESSAGES/wesnoth-aoi.mo
614
%%NLS%%share/locale/ja/LC_MESSAGES/wesnoth-did.mo
741
%%NLS%%share/locale/ja/LC_MESSAGES/wesnoth-did.mo
615
%%NLS%%share/locale/ja/LC_MESSAGES/wesnoth-dm.mo
742
%%NLS%%share/locale/ja/LC_MESSAGES/wesnoth-dm.mo
743
%%NLS%%share/locale/ja/LC_MESSAGES/wesnoth-dw.mo
616
%%NLS%%share/locale/ja/LC_MESSAGES/wesnoth-editor.mo
744
%%NLS%%share/locale/ja/LC_MESSAGES/wesnoth-editor.mo
617
%%NLS%%share/locale/ja/LC_MESSAGES/wesnoth-ei.mo
745
%%NLS%%share/locale/ja/LC_MESSAGES/wesnoth-ei.mo
746
%%NLS%%share/locale/ja/LC_MESSAGES/wesnoth-help.mo
618
%%NLS%%share/locale/ja/LC_MESSAGES/wesnoth-httt.mo
747
%%NLS%%share/locale/ja/LC_MESSAGES/wesnoth-httt.mo
619
%%NLS%%share/locale/ja/LC_MESSAGES/wesnoth-l.mo
748
%%NLS%%share/locale/ja/LC_MESSAGES/wesnoth-l.mo
620
%%NLS%%share/locale/ja/LC_MESSAGES/wesnoth-lib.mo
749
%%NLS%%share/locale/ja/LC_MESSAGES/wesnoth-lib.mo
Lines 636-643 share/applications/wesnoth.desktop Link Here
636
%%NLS%%share/locale/ko/LC_MESSAGES/wesnoth-aoi.mo
765
%%NLS%%share/locale/ko/LC_MESSAGES/wesnoth-aoi.mo
637
%%NLS%%share/locale/ko/LC_MESSAGES/wesnoth-did.mo
766
%%NLS%%share/locale/ko/LC_MESSAGES/wesnoth-did.mo
638
%%NLS%%share/locale/ko/LC_MESSAGES/wesnoth-dm.mo
767
%%NLS%%share/locale/ko/LC_MESSAGES/wesnoth-dm.mo
768
%%NLS%%share/locale/ko/LC_MESSAGES/wesnoth-dw.mo
639
%%NLS%%share/locale/ko/LC_MESSAGES/wesnoth-editor.mo
769
%%NLS%%share/locale/ko/LC_MESSAGES/wesnoth-editor.mo
640
%%NLS%%share/locale/ko/LC_MESSAGES/wesnoth-ei.mo
770
%%NLS%%share/locale/ko/LC_MESSAGES/wesnoth-ei.mo
771
%%NLS%%share/locale/ko/LC_MESSAGES/wesnoth-help.mo
641
%%NLS%%share/locale/ko/LC_MESSAGES/wesnoth-httt.mo
772
%%NLS%%share/locale/ko/LC_MESSAGES/wesnoth-httt.mo
642
%%NLS%%share/locale/ko/LC_MESSAGES/wesnoth-l.mo
773
%%NLS%%share/locale/ko/LC_MESSAGES/wesnoth-l.mo
643
%%NLS%%share/locale/ko/LC_MESSAGES/wesnoth-lib.mo
774
%%NLS%%share/locale/ko/LC_MESSAGES/wesnoth-lib.mo
Lines 659-666 share/applications/wesnoth.desktop Link Here
659
%%NLS%%share/locale/la/LC_MESSAGES/wesnoth-aoi.mo
790
%%NLS%%share/locale/la/LC_MESSAGES/wesnoth-aoi.mo
660
%%NLS%%share/locale/la/LC_MESSAGES/wesnoth-did.mo
791
%%NLS%%share/locale/la/LC_MESSAGES/wesnoth-did.mo
661
%%NLS%%share/locale/la/LC_MESSAGES/wesnoth-dm.mo
792
%%NLS%%share/locale/la/LC_MESSAGES/wesnoth-dm.mo
793
%%NLS%%share/locale/la/LC_MESSAGES/wesnoth-dw.mo
662
%%NLS%%share/locale/la/LC_MESSAGES/wesnoth-editor.mo
794
%%NLS%%share/locale/la/LC_MESSAGES/wesnoth-editor.mo
663
%%NLS%%share/locale/la/LC_MESSAGES/wesnoth-ei.mo
795
%%NLS%%share/locale/la/LC_MESSAGES/wesnoth-ei.mo
796
%%NLS%%share/locale/la/LC_MESSAGES/wesnoth-help.mo
664
%%NLS%%share/locale/la/LC_MESSAGES/wesnoth-httt.mo
797
%%NLS%%share/locale/la/LC_MESSAGES/wesnoth-httt.mo
665
%%NLS%%share/locale/la/LC_MESSAGES/wesnoth-l.mo
798
%%NLS%%share/locale/la/LC_MESSAGES/wesnoth-l.mo
666
%%NLS%%share/locale/la/LC_MESSAGES/wesnoth-lib.mo
799
%%NLS%%share/locale/la/LC_MESSAGES/wesnoth-lib.mo
Lines 682-689 share/applications/wesnoth.desktop Link Here
682
%%NLS%%share/locale/lt/LC_MESSAGES/wesnoth-aoi.mo
815
%%NLS%%share/locale/lt/LC_MESSAGES/wesnoth-aoi.mo
683
%%NLS%%share/locale/lt/LC_MESSAGES/wesnoth-did.mo
816
%%NLS%%share/locale/lt/LC_MESSAGES/wesnoth-did.mo
684
%%NLS%%share/locale/lt/LC_MESSAGES/wesnoth-dm.mo
817
%%NLS%%share/locale/lt/LC_MESSAGES/wesnoth-dm.mo
818
%%NLS%%share/locale/lt/LC_MESSAGES/wesnoth-dw.mo
685
%%NLS%%share/locale/lt/LC_MESSAGES/wesnoth-editor.mo
819
%%NLS%%share/locale/lt/LC_MESSAGES/wesnoth-editor.mo
686
%%NLS%%share/locale/lt/LC_MESSAGES/wesnoth-ei.mo
820
%%NLS%%share/locale/lt/LC_MESSAGES/wesnoth-ei.mo
821
%%NLS%%share/locale/lt/LC_MESSAGES/wesnoth-help.mo
687
%%NLS%%share/locale/lt/LC_MESSAGES/wesnoth-httt.mo
822
%%NLS%%share/locale/lt/LC_MESSAGES/wesnoth-httt.mo
688
%%NLS%%share/locale/lt/LC_MESSAGES/wesnoth-l.mo
823
%%NLS%%share/locale/lt/LC_MESSAGES/wesnoth-l.mo
689
%%NLS%%share/locale/lt/LC_MESSAGES/wesnoth-lib.mo
824
%%NLS%%share/locale/lt/LC_MESSAGES/wesnoth-lib.mo
Lines 705-712 share/applications/wesnoth.desktop Link Here
705
%%NLS%%share/locale/lv/LC_MESSAGES/wesnoth-aoi.mo
840
%%NLS%%share/locale/lv/LC_MESSAGES/wesnoth-aoi.mo
706
%%NLS%%share/locale/lv/LC_MESSAGES/wesnoth-did.mo
841
%%NLS%%share/locale/lv/LC_MESSAGES/wesnoth-did.mo
707
%%NLS%%share/locale/lv/LC_MESSAGES/wesnoth-dm.mo
842
%%NLS%%share/locale/lv/LC_MESSAGES/wesnoth-dm.mo
843
%%NLS%%share/locale/lv/LC_MESSAGES/wesnoth-dw.mo
708
%%NLS%%share/locale/lv/LC_MESSAGES/wesnoth-editor.mo
844
%%NLS%%share/locale/lv/LC_MESSAGES/wesnoth-editor.mo
709
%%NLS%%share/locale/lv/LC_MESSAGES/wesnoth-ei.mo
845
%%NLS%%share/locale/lv/LC_MESSAGES/wesnoth-ei.mo
846
%%NLS%%share/locale/lv/LC_MESSAGES/wesnoth-help.mo
710
%%NLS%%share/locale/lv/LC_MESSAGES/wesnoth-httt.mo
847
%%NLS%%share/locale/lv/LC_MESSAGES/wesnoth-httt.mo
711
%%NLS%%share/locale/lv/LC_MESSAGES/wesnoth-l.mo
848
%%NLS%%share/locale/lv/LC_MESSAGES/wesnoth-l.mo
712
%%NLS%%share/locale/lv/LC_MESSAGES/wesnoth-lib.mo
849
%%NLS%%share/locale/lv/LC_MESSAGES/wesnoth-lib.mo
Lines 728-735 share/applications/wesnoth.desktop Link Here
728
%%NLS%%share/locale/mk/LC_MESSAGES/wesnoth-aoi.mo
865
%%NLS%%share/locale/mk/LC_MESSAGES/wesnoth-aoi.mo
729
%%NLS%%share/locale/mk/LC_MESSAGES/wesnoth-did.mo
866
%%NLS%%share/locale/mk/LC_MESSAGES/wesnoth-did.mo
730
%%NLS%%share/locale/mk/LC_MESSAGES/wesnoth-dm.mo
867
%%NLS%%share/locale/mk/LC_MESSAGES/wesnoth-dm.mo
868
%%NLS%%share/locale/mk/LC_MESSAGES/wesnoth-dw.mo
731
%%NLS%%share/locale/mk/LC_MESSAGES/wesnoth-editor.mo
869
%%NLS%%share/locale/mk/LC_MESSAGES/wesnoth-editor.mo
732
%%NLS%%share/locale/mk/LC_MESSAGES/wesnoth-ei.mo
870
%%NLS%%share/locale/mk/LC_MESSAGES/wesnoth-ei.mo
871
%%NLS%%share/locale/mk/LC_MESSAGES/wesnoth-help.mo
733
%%NLS%%share/locale/mk/LC_MESSAGES/wesnoth-httt.mo
872
%%NLS%%share/locale/mk/LC_MESSAGES/wesnoth-httt.mo
734
%%NLS%%share/locale/mk/LC_MESSAGES/wesnoth-l.mo
873
%%NLS%%share/locale/mk/LC_MESSAGES/wesnoth-l.mo
735
%%NLS%%share/locale/mk/LC_MESSAGES/wesnoth-lib.mo
874
%%NLS%%share/locale/mk/LC_MESSAGES/wesnoth-lib.mo
Lines 751-758 share/applications/wesnoth.desktop Link Here
751
%%NLS%%share/locale/mr/LC_MESSAGES/wesnoth-aoi.mo
890
%%NLS%%share/locale/mr/LC_MESSAGES/wesnoth-aoi.mo
752
%%NLS%%share/locale/mr/LC_MESSAGES/wesnoth-did.mo
891
%%NLS%%share/locale/mr/LC_MESSAGES/wesnoth-did.mo
753
%%NLS%%share/locale/mr/LC_MESSAGES/wesnoth-dm.mo
892
%%NLS%%share/locale/mr/LC_MESSAGES/wesnoth-dm.mo
893
%%NLS%%share/locale/mr/LC_MESSAGES/wesnoth-dw.mo
754
%%NLS%%share/locale/mr/LC_MESSAGES/wesnoth-editor.mo
894
%%NLS%%share/locale/mr/LC_MESSAGES/wesnoth-editor.mo
755
%%NLS%%share/locale/mr/LC_MESSAGES/wesnoth-ei.mo
895
%%NLS%%share/locale/mr/LC_MESSAGES/wesnoth-ei.mo
896
%%NLS%%share/locale/mr/LC_MESSAGES/wesnoth-help.mo
756
%%NLS%%share/locale/mr/LC_MESSAGES/wesnoth-httt.mo
897
%%NLS%%share/locale/mr/LC_MESSAGES/wesnoth-httt.mo
757
%%NLS%%share/locale/mr/LC_MESSAGES/wesnoth-l.mo
898
%%NLS%%share/locale/mr/LC_MESSAGES/wesnoth-l.mo
758
%%NLS%%share/locale/mr/LC_MESSAGES/wesnoth-lib.mo
899
%%NLS%%share/locale/mr/LC_MESSAGES/wesnoth-lib.mo
Lines 774-781 share/applications/wesnoth.desktop Link Here
774
%%NLS%%share/locale/nb_NO/LC_MESSAGES/wesnoth-aoi.mo
915
%%NLS%%share/locale/nb_NO/LC_MESSAGES/wesnoth-aoi.mo
775
%%NLS%%share/locale/nb_NO/LC_MESSAGES/wesnoth-did.mo
916
%%NLS%%share/locale/nb_NO/LC_MESSAGES/wesnoth-did.mo
776
%%NLS%%share/locale/nb_NO/LC_MESSAGES/wesnoth-dm.mo
917
%%NLS%%share/locale/nb_NO/LC_MESSAGES/wesnoth-dm.mo
918
%%NLS%%share/locale/nb_NO/LC_MESSAGES/wesnoth-dw.mo
777
%%NLS%%share/locale/nb_NO/LC_MESSAGES/wesnoth-editor.mo
919
%%NLS%%share/locale/nb_NO/LC_MESSAGES/wesnoth-editor.mo
778
%%NLS%%share/locale/nb_NO/LC_MESSAGES/wesnoth-ei.mo
920
%%NLS%%share/locale/nb_NO/LC_MESSAGES/wesnoth-ei.mo
921
%%NLS%%share/locale/nb_NO/LC_MESSAGES/wesnoth-help.mo
779
%%NLS%%share/locale/nb_NO/LC_MESSAGES/wesnoth-httt.mo
922
%%NLS%%share/locale/nb_NO/LC_MESSAGES/wesnoth-httt.mo
780
%%NLS%%share/locale/nb_NO/LC_MESSAGES/wesnoth-l.mo
923
%%NLS%%share/locale/nb_NO/LC_MESSAGES/wesnoth-l.mo
781
%%NLS%%share/locale/nb_NO/LC_MESSAGES/wesnoth-lib.mo
924
%%NLS%%share/locale/nb_NO/LC_MESSAGES/wesnoth-lib.mo
Lines 797-804 share/applications/wesnoth.desktop Link Here
797
%%NLS%%share/locale/nl/LC_MESSAGES/wesnoth-aoi.mo
940
%%NLS%%share/locale/nl/LC_MESSAGES/wesnoth-aoi.mo
798
%%NLS%%share/locale/nl/LC_MESSAGES/wesnoth-did.mo
941
%%NLS%%share/locale/nl/LC_MESSAGES/wesnoth-did.mo
799
%%NLS%%share/locale/nl/LC_MESSAGES/wesnoth-dm.mo
942
%%NLS%%share/locale/nl/LC_MESSAGES/wesnoth-dm.mo
943
%%NLS%%share/locale/nl/LC_MESSAGES/wesnoth-dw.mo
800
%%NLS%%share/locale/nl/LC_MESSAGES/wesnoth-editor.mo
944
%%NLS%%share/locale/nl/LC_MESSAGES/wesnoth-editor.mo
801
%%NLS%%share/locale/nl/LC_MESSAGES/wesnoth-ei.mo
945
%%NLS%%share/locale/nl/LC_MESSAGES/wesnoth-ei.mo
946
%%NLS%%share/locale/nl/LC_MESSAGES/wesnoth-help.mo
802
%%NLS%%share/locale/nl/LC_MESSAGES/wesnoth-httt.mo
947
%%NLS%%share/locale/nl/LC_MESSAGES/wesnoth-httt.mo
803
%%NLS%%share/locale/nl/LC_MESSAGES/wesnoth-l.mo
948
%%NLS%%share/locale/nl/LC_MESSAGES/wesnoth-l.mo
804
%%NLS%%share/locale/nl/LC_MESSAGES/wesnoth-lib.mo
949
%%NLS%%share/locale/nl/LC_MESSAGES/wesnoth-lib.mo
Lines 820-827 share/applications/wesnoth.desktop Link Here
820
%%NLS%%share/locale/pl/LC_MESSAGES/wesnoth-aoi.mo
965
%%NLS%%share/locale/pl/LC_MESSAGES/wesnoth-aoi.mo
821
%%NLS%%share/locale/pl/LC_MESSAGES/wesnoth-did.mo
966
%%NLS%%share/locale/pl/LC_MESSAGES/wesnoth-did.mo
822
%%NLS%%share/locale/pl/LC_MESSAGES/wesnoth-dm.mo
967
%%NLS%%share/locale/pl/LC_MESSAGES/wesnoth-dm.mo
968
%%NLS%%share/locale/pl/LC_MESSAGES/wesnoth-dw.mo
823
%%NLS%%share/locale/pl/LC_MESSAGES/wesnoth-editor.mo
969
%%NLS%%share/locale/pl/LC_MESSAGES/wesnoth-editor.mo
824
%%NLS%%share/locale/pl/LC_MESSAGES/wesnoth-ei.mo
970
%%NLS%%share/locale/pl/LC_MESSAGES/wesnoth-ei.mo
971
%%NLS%%share/locale/pl/LC_MESSAGES/wesnoth-help.mo
825
%%NLS%%share/locale/pl/LC_MESSAGES/wesnoth-httt.mo
972
%%NLS%%share/locale/pl/LC_MESSAGES/wesnoth-httt.mo
826
%%NLS%%share/locale/pl/LC_MESSAGES/wesnoth-l.mo
973
%%NLS%%share/locale/pl/LC_MESSAGES/wesnoth-l.mo
827
%%NLS%%share/locale/pl/LC_MESSAGES/wesnoth-lib.mo
974
%%NLS%%share/locale/pl/LC_MESSAGES/wesnoth-lib.mo
Lines 843-850 share/applications/wesnoth.desktop Link Here
843
%%NLS%%share/locale/pt/LC_MESSAGES/wesnoth-aoi.mo
990
%%NLS%%share/locale/pt/LC_MESSAGES/wesnoth-aoi.mo
844
%%NLS%%share/locale/pt/LC_MESSAGES/wesnoth-did.mo
991
%%NLS%%share/locale/pt/LC_MESSAGES/wesnoth-did.mo
845
%%NLS%%share/locale/pt/LC_MESSAGES/wesnoth-dm.mo
992
%%NLS%%share/locale/pt/LC_MESSAGES/wesnoth-dm.mo
993
%%NLS%%share/locale/pt/LC_MESSAGES/wesnoth-dw.mo
846
%%NLS%%share/locale/pt/LC_MESSAGES/wesnoth-editor.mo
994
%%NLS%%share/locale/pt/LC_MESSAGES/wesnoth-editor.mo
847
%%NLS%%share/locale/pt/LC_MESSAGES/wesnoth-ei.mo
995
%%NLS%%share/locale/pt/LC_MESSAGES/wesnoth-ei.mo
996
%%NLS%%share/locale/pt/LC_MESSAGES/wesnoth-help.mo
848
%%NLS%%share/locale/pt/LC_MESSAGES/wesnoth-httt.mo
997
%%NLS%%share/locale/pt/LC_MESSAGES/wesnoth-httt.mo
849
%%NLS%%share/locale/pt/LC_MESSAGES/wesnoth-l.mo
998
%%NLS%%share/locale/pt/LC_MESSAGES/wesnoth-l.mo
850
%%NLS%%share/locale/pt/LC_MESSAGES/wesnoth-lib.mo
999
%%NLS%%share/locale/pt/LC_MESSAGES/wesnoth-lib.mo
Lines 866-873 share/applications/wesnoth.desktop Link Here
866
%%NLS%%share/locale/pt_BR/LC_MESSAGES/wesnoth-aoi.mo
1015
%%NLS%%share/locale/pt_BR/LC_MESSAGES/wesnoth-aoi.mo
867
%%NLS%%share/locale/pt_BR/LC_MESSAGES/wesnoth-did.mo
1016
%%NLS%%share/locale/pt_BR/LC_MESSAGES/wesnoth-did.mo
868
%%NLS%%share/locale/pt_BR/LC_MESSAGES/wesnoth-dm.mo
1017
%%NLS%%share/locale/pt_BR/LC_MESSAGES/wesnoth-dm.mo
1018
%%NLS%%share/locale/pt_BR/LC_MESSAGES/wesnoth-dw.mo
869
%%NLS%%share/locale/pt_BR/LC_MESSAGES/wesnoth-editor.mo
1019
%%NLS%%share/locale/pt_BR/LC_MESSAGES/wesnoth-editor.mo
870
%%NLS%%share/locale/pt_BR/LC_MESSAGES/wesnoth-ei.mo
1020
%%NLS%%share/locale/pt_BR/LC_MESSAGES/wesnoth-ei.mo
1021
%%NLS%%share/locale/pt_BR/LC_MESSAGES/wesnoth-help.mo
871
%%NLS%%share/locale/pt_BR/LC_MESSAGES/wesnoth-httt.mo
1022
%%NLS%%share/locale/pt_BR/LC_MESSAGES/wesnoth-httt.mo
872
%%NLS%%share/locale/pt_BR/LC_MESSAGES/wesnoth-l.mo
1023
%%NLS%%share/locale/pt_BR/LC_MESSAGES/wesnoth-l.mo
873
%%NLS%%share/locale/pt_BR/LC_MESSAGES/wesnoth-lib.mo
1024
%%NLS%%share/locale/pt_BR/LC_MESSAGES/wesnoth-lib.mo
Lines 889-896 share/applications/wesnoth.desktop Link Here
889
%%NLS%%share/locale/racv/LC_MESSAGES/wesnoth-aoi.mo
1040
%%NLS%%share/locale/racv/LC_MESSAGES/wesnoth-aoi.mo
890
%%NLS%%share/locale/racv/LC_MESSAGES/wesnoth-did.mo
1041
%%NLS%%share/locale/racv/LC_MESSAGES/wesnoth-did.mo
891
%%NLS%%share/locale/racv/LC_MESSAGES/wesnoth-dm.mo
1042
%%NLS%%share/locale/racv/LC_MESSAGES/wesnoth-dm.mo
1043
%%NLS%%share/locale/racv/LC_MESSAGES/wesnoth-dw.mo
892
%%NLS%%share/locale/racv/LC_MESSAGES/wesnoth-editor.mo
1044
%%NLS%%share/locale/racv/LC_MESSAGES/wesnoth-editor.mo
893
%%NLS%%share/locale/racv/LC_MESSAGES/wesnoth-ei.mo
1045
%%NLS%%share/locale/racv/LC_MESSAGES/wesnoth-ei.mo
1046
%%NLS%%share/locale/racv/LC_MESSAGES/wesnoth-help.mo
894
%%NLS%%share/locale/racv/LC_MESSAGES/wesnoth-httt.mo
1047
%%NLS%%share/locale/racv/LC_MESSAGES/wesnoth-httt.mo
895
%%NLS%%share/locale/racv/LC_MESSAGES/wesnoth-l.mo
1048
%%NLS%%share/locale/racv/LC_MESSAGES/wesnoth-l.mo
896
%%NLS%%share/locale/racv/LC_MESSAGES/wesnoth-lib.mo
1049
%%NLS%%share/locale/racv/LC_MESSAGES/wesnoth-lib.mo
Lines 912-919 share/applications/wesnoth.desktop Link Here
912
%%NLS%%share/locale/ro/LC_MESSAGES/wesnoth-aoi.mo
1065
%%NLS%%share/locale/ro/LC_MESSAGES/wesnoth-aoi.mo
913
%%NLS%%share/locale/ro/LC_MESSAGES/wesnoth-did.mo
1066
%%NLS%%share/locale/ro/LC_MESSAGES/wesnoth-did.mo
914
%%NLS%%share/locale/ro/LC_MESSAGES/wesnoth-dm.mo
1067
%%NLS%%share/locale/ro/LC_MESSAGES/wesnoth-dm.mo
1068
%%NLS%%share/locale/ro/LC_MESSAGES/wesnoth-dw.mo
915
%%NLS%%share/locale/ro/LC_MESSAGES/wesnoth-editor.mo
1069
%%NLS%%share/locale/ro/LC_MESSAGES/wesnoth-editor.mo
916
%%NLS%%share/locale/ro/LC_MESSAGES/wesnoth-ei.mo
1070
%%NLS%%share/locale/ro/LC_MESSAGES/wesnoth-ei.mo
1071
%%NLS%%share/locale/ro/LC_MESSAGES/wesnoth-help.mo
917
%%NLS%%share/locale/ro/LC_MESSAGES/wesnoth-httt.mo
1072
%%NLS%%share/locale/ro/LC_MESSAGES/wesnoth-httt.mo
918
%%NLS%%share/locale/ro/LC_MESSAGES/wesnoth-l.mo
1073
%%NLS%%share/locale/ro/LC_MESSAGES/wesnoth-l.mo
919
%%NLS%%share/locale/ro/LC_MESSAGES/wesnoth-lib.mo
1074
%%NLS%%share/locale/ro/LC_MESSAGES/wesnoth-lib.mo
Lines 935-942 share/applications/wesnoth.desktop Link Here
935
%%NLS%%share/locale/ru/LC_MESSAGES/wesnoth-aoi.mo
1090
%%NLS%%share/locale/ru/LC_MESSAGES/wesnoth-aoi.mo
936
%%NLS%%share/locale/ru/LC_MESSAGES/wesnoth-did.mo
1091
%%NLS%%share/locale/ru/LC_MESSAGES/wesnoth-did.mo
937
%%NLS%%share/locale/ru/LC_MESSAGES/wesnoth-dm.mo
1092
%%NLS%%share/locale/ru/LC_MESSAGES/wesnoth-dm.mo
1093
%%NLS%%share/locale/ru/LC_MESSAGES/wesnoth-dw.mo
938
%%NLS%%share/locale/ru/LC_MESSAGES/wesnoth-editor.mo
1094
%%NLS%%share/locale/ru/LC_MESSAGES/wesnoth-editor.mo
939
%%NLS%%share/locale/ru/LC_MESSAGES/wesnoth-ei.mo
1095
%%NLS%%share/locale/ru/LC_MESSAGES/wesnoth-ei.mo
1096
%%NLS%%share/locale/ru/LC_MESSAGES/wesnoth-help.mo
940
%%NLS%%share/locale/ru/LC_MESSAGES/wesnoth-httt.mo
1097
%%NLS%%share/locale/ru/LC_MESSAGES/wesnoth-httt.mo
941
%%NLS%%share/locale/ru/LC_MESSAGES/wesnoth-l.mo
1098
%%NLS%%share/locale/ru/LC_MESSAGES/wesnoth-l.mo
942
%%NLS%%share/locale/ru/LC_MESSAGES/wesnoth-lib.mo
1099
%%NLS%%share/locale/ru/LC_MESSAGES/wesnoth-lib.mo
Lines 958-965 share/applications/wesnoth.desktop Link Here
958
%%NLS%%share/locale/sk/LC_MESSAGES/wesnoth-aoi.mo
1115
%%NLS%%share/locale/sk/LC_MESSAGES/wesnoth-aoi.mo
959
%%NLS%%share/locale/sk/LC_MESSAGES/wesnoth-did.mo
1116
%%NLS%%share/locale/sk/LC_MESSAGES/wesnoth-did.mo
960
%%NLS%%share/locale/sk/LC_MESSAGES/wesnoth-dm.mo
1117
%%NLS%%share/locale/sk/LC_MESSAGES/wesnoth-dm.mo
1118
%%NLS%%share/locale/sk/LC_MESSAGES/wesnoth-dw.mo
961
%%NLS%%share/locale/sk/LC_MESSAGES/wesnoth-editor.mo
1119
%%NLS%%share/locale/sk/LC_MESSAGES/wesnoth-editor.mo
962
%%NLS%%share/locale/sk/LC_MESSAGES/wesnoth-ei.mo
1120
%%NLS%%share/locale/sk/LC_MESSAGES/wesnoth-ei.mo
1121
%%NLS%%share/locale/sk/LC_MESSAGES/wesnoth-help.mo
963
%%NLS%%share/locale/sk/LC_MESSAGES/wesnoth-httt.mo
1122
%%NLS%%share/locale/sk/LC_MESSAGES/wesnoth-httt.mo
964
%%NLS%%share/locale/sk/LC_MESSAGES/wesnoth-l.mo
1123
%%NLS%%share/locale/sk/LC_MESSAGES/wesnoth-l.mo
965
%%NLS%%share/locale/sk/LC_MESSAGES/wesnoth-lib.mo
1124
%%NLS%%share/locale/sk/LC_MESSAGES/wesnoth-lib.mo
Lines 981-988 share/applications/wesnoth.desktop Link Here
981
%%NLS%%share/locale/sl/LC_MESSAGES/wesnoth-aoi.mo
1140
%%NLS%%share/locale/sl/LC_MESSAGES/wesnoth-aoi.mo
982
%%NLS%%share/locale/sl/LC_MESSAGES/wesnoth-did.mo
1141
%%NLS%%share/locale/sl/LC_MESSAGES/wesnoth-did.mo
983
%%NLS%%share/locale/sl/LC_MESSAGES/wesnoth-dm.mo
1142
%%NLS%%share/locale/sl/LC_MESSAGES/wesnoth-dm.mo
1143
%%NLS%%share/locale/sl/LC_MESSAGES/wesnoth-dw.mo
984
%%NLS%%share/locale/sl/LC_MESSAGES/wesnoth-editor.mo
1144
%%NLS%%share/locale/sl/LC_MESSAGES/wesnoth-editor.mo
985
%%NLS%%share/locale/sl/LC_MESSAGES/wesnoth-ei.mo
1145
%%NLS%%share/locale/sl/LC_MESSAGES/wesnoth-ei.mo
1146
%%NLS%%share/locale/sl/LC_MESSAGES/wesnoth-help.mo
986
%%NLS%%share/locale/sl/LC_MESSAGES/wesnoth-httt.mo
1147
%%NLS%%share/locale/sl/LC_MESSAGES/wesnoth-httt.mo
987
%%NLS%%share/locale/sl/LC_MESSAGES/wesnoth-l.mo
1148
%%NLS%%share/locale/sl/LC_MESSAGES/wesnoth-l.mo
988
%%NLS%%share/locale/sl/LC_MESSAGES/wesnoth-lib.mo
1149
%%NLS%%share/locale/sl/LC_MESSAGES/wesnoth-lib.mo
Lines 1004-1011 share/applications/wesnoth.desktop Link Here
1004
%%NLS%%share/locale/sr/LC_MESSAGES/wesnoth-aoi.mo
1165
%%NLS%%share/locale/sr/LC_MESSAGES/wesnoth-aoi.mo
1005
%%NLS%%share/locale/sr/LC_MESSAGES/wesnoth-did.mo
1166
%%NLS%%share/locale/sr/LC_MESSAGES/wesnoth-did.mo
1006
%%NLS%%share/locale/sr/LC_MESSAGES/wesnoth-dm.mo
1167
%%NLS%%share/locale/sr/LC_MESSAGES/wesnoth-dm.mo
1168
%%NLS%%share/locale/sr/LC_MESSAGES/wesnoth-dw.mo
1007
%%NLS%%share/locale/sr/LC_MESSAGES/wesnoth-editor.mo
1169
%%NLS%%share/locale/sr/LC_MESSAGES/wesnoth-editor.mo
1008
%%NLS%%share/locale/sr/LC_MESSAGES/wesnoth-ei.mo
1170
%%NLS%%share/locale/sr/LC_MESSAGES/wesnoth-ei.mo
1171
%%NLS%%share/locale/sr/LC_MESSAGES/wesnoth-help.mo
1009
%%NLS%%share/locale/sr/LC_MESSAGES/wesnoth-httt.mo
1172
%%NLS%%share/locale/sr/LC_MESSAGES/wesnoth-httt.mo
1010
%%NLS%%share/locale/sr/LC_MESSAGES/wesnoth-l.mo
1173
%%NLS%%share/locale/sr/LC_MESSAGES/wesnoth-l.mo
1011
%%NLS%%share/locale/sr/LC_MESSAGES/wesnoth-lib.mo
1174
%%NLS%%share/locale/sr/LC_MESSAGES/wesnoth-lib.mo
Lines 1027-1034 share/applications/wesnoth.desktop Link Here
1027
%%NLS%%share/locale/sr@ijekavian/LC_MESSAGES/wesnoth-aoi.mo
1190
%%NLS%%share/locale/sr@ijekavian/LC_MESSAGES/wesnoth-aoi.mo
1028
%%NLS%%share/locale/sr@ijekavian/LC_MESSAGES/wesnoth-did.mo
1191
%%NLS%%share/locale/sr@ijekavian/LC_MESSAGES/wesnoth-did.mo
1029
%%NLS%%share/locale/sr@ijekavian/LC_MESSAGES/wesnoth-dm.mo
1192
%%NLS%%share/locale/sr@ijekavian/LC_MESSAGES/wesnoth-dm.mo
1193
%%NLS%%share/locale/sr@ijekavian/LC_MESSAGES/wesnoth-dw.mo
1030
%%NLS%%share/locale/sr@ijekavian/LC_MESSAGES/wesnoth-editor.mo
1194
%%NLS%%share/locale/sr@ijekavian/LC_MESSAGES/wesnoth-editor.mo
1031
%%NLS%%share/locale/sr@ijekavian/LC_MESSAGES/wesnoth-ei.mo
1195
%%NLS%%share/locale/sr@ijekavian/LC_MESSAGES/wesnoth-ei.mo
1196
%%NLS%%share/locale/sr@ijekavian/LC_MESSAGES/wesnoth-help.mo
1032
%%NLS%%share/locale/sr@ijekavian/LC_MESSAGES/wesnoth-httt.mo
1197
%%NLS%%share/locale/sr@ijekavian/LC_MESSAGES/wesnoth-httt.mo
1033
%%NLS%%share/locale/sr@ijekavian/LC_MESSAGES/wesnoth-l.mo
1198
%%NLS%%share/locale/sr@ijekavian/LC_MESSAGES/wesnoth-l.mo
1034
%%NLS%%share/locale/sr@ijekavian/LC_MESSAGES/wesnoth-lib.mo
1199
%%NLS%%share/locale/sr@ijekavian/LC_MESSAGES/wesnoth-lib.mo
Lines 1050-1057 share/applications/wesnoth.desktop Link Here
1050
%%NLS%%share/locale/sr@ijekavianlatin/LC_MESSAGES/wesnoth-aoi.mo
1215
%%NLS%%share/locale/sr@ijekavianlatin/LC_MESSAGES/wesnoth-aoi.mo
1051
%%NLS%%share/locale/sr@ijekavianlatin/LC_MESSAGES/wesnoth-did.mo
1216
%%NLS%%share/locale/sr@ijekavianlatin/LC_MESSAGES/wesnoth-did.mo
1052
%%NLS%%share/locale/sr@ijekavianlatin/LC_MESSAGES/wesnoth-dm.mo
1217
%%NLS%%share/locale/sr@ijekavianlatin/LC_MESSAGES/wesnoth-dm.mo
1218
%%NLS%%share/locale/sr@ijekavianlatin/LC_MESSAGES/wesnoth-dw.mo
1053
%%NLS%%share/locale/sr@ijekavianlatin/LC_MESSAGES/wesnoth-editor.mo
1219
%%NLS%%share/locale/sr@ijekavianlatin/LC_MESSAGES/wesnoth-editor.mo
1054
%%NLS%%share/locale/sr@ijekavianlatin/LC_MESSAGES/wesnoth-ei.mo
1220
%%NLS%%share/locale/sr@ijekavianlatin/LC_MESSAGES/wesnoth-ei.mo
1221
%%NLS%%share/locale/sr@ijekavianlatin/LC_MESSAGES/wesnoth-help.mo
1055
%%NLS%%share/locale/sr@ijekavianlatin/LC_MESSAGES/wesnoth-httt.mo
1222
%%NLS%%share/locale/sr@ijekavianlatin/LC_MESSAGES/wesnoth-httt.mo
1056
%%NLS%%share/locale/sr@ijekavianlatin/LC_MESSAGES/wesnoth-l.mo
1223
%%NLS%%share/locale/sr@ijekavianlatin/LC_MESSAGES/wesnoth-l.mo
1057
%%NLS%%share/locale/sr@ijekavianlatin/LC_MESSAGES/wesnoth-lib.mo
1224
%%NLS%%share/locale/sr@ijekavianlatin/LC_MESSAGES/wesnoth-lib.mo
Lines 1073-1080 share/applications/wesnoth.desktop Link Here
1073
%%NLS%%share/locale/sr@latin/LC_MESSAGES/wesnoth-aoi.mo
1240
%%NLS%%share/locale/sr@latin/LC_MESSAGES/wesnoth-aoi.mo
1074
%%NLS%%share/locale/sr@latin/LC_MESSAGES/wesnoth-did.mo
1241
%%NLS%%share/locale/sr@latin/LC_MESSAGES/wesnoth-did.mo
1075
%%NLS%%share/locale/sr@latin/LC_MESSAGES/wesnoth-dm.mo
1242
%%NLS%%share/locale/sr@latin/LC_MESSAGES/wesnoth-dm.mo
1243
%%NLS%%share/locale/sr@latin/LC_MESSAGES/wesnoth-dw.mo
1076
%%NLS%%share/locale/sr@latin/LC_MESSAGES/wesnoth-editor.mo
1244
%%NLS%%share/locale/sr@latin/LC_MESSAGES/wesnoth-editor.mo
1077
%%NLS%%share/locale/sr@latin/LC_MESSAGES/wesnoth-ei.mo
1245
%%NLS%%share/locale/sr@latin/LC_MESSAGES/wesnoth-ei.mo
1246
%%NLS%%share/locale/sr@latin/LC_MESSAGES/wesnoth-help.mo
1078
%%NLS%%share/locale/sr@latin/LC_MESSAGES/wesnoth-httt.mo
1247
%%NLS%%share/locale/sr@latin/LC_MESSAGES/wesnoth-httt.mo
1079
%%NLS%%share/locale/sr@latin/LC_MESSAGES/wesnoth-l.mo
1248
%%NLS%%share/locale/sr@latin/LC_MESSAGES/wesnoth-l.mo
1080
%%NLS%%share/locale/sr@latin/LC_MESSAGES/wesnoth-lib.mo
1249
%%NLS%%share/locale/sr@latin/LC_MESSAGES/wesnoth-lib.mo
Lines 1096-1103 share/applications/wesnoth.desktop Link Here
1096
%%NLS%%share/locale/sv/LC_MESSAGES/wesnoth-aoi.mo
1265
%%NLS%%share/locale/sv/LC_MESSAGES/wesnoth-aoi.mo
1097
%%NLS%%share/locale/sv/LC_MESSAGES/wesnoth-did.mo
1266
%%NLS%%share/locale/sv/LC_MESSAGES/wesnoth-did.mo
1098
%%NLS%%share/locale/sv/LC_MESSAGES/wesnoth-dm.mo
1267
%%NLS%%share/locale/sv/LC_MESSAGES/wesnoth-dm.mo
1268
%%NLS%%share/locale/sv/LC_MESSAGES/wesnoth-dw.mo
1099
%%NLS%%share/locale/sv/LC_MESSAGES/wesnoth-editor.mo
1269
%%NLS%%share/locale/sv/LC_MESSAGES/wesnoth-editor.mo
1100
%%NLS%%share/locale/sv/LC_MESSAGES/wesnoth-ei.mo
1270
%%NLS%%share/locale/sv/LC_MESSAGES/wesnoth-ei.mo
1271
%%NLS%%share/locale/sv/LC_MESSAGES/wesnoth-help.mo
1101
%%NLS%%share/locale/sv/LC_MESSAGES/wesnoth-httt.mo
1272
%%NLS%%share/locale/sv/LC_MESSAGES/wesnoth-httt.mo
1102
%%NLS%%share/locale/sv/LC_MESSAGES/wesnoth-l.mo
1273
%%NLS%%share/locale/sv/LC_MESSAGES/wesnoth-l.mo
1103
%%NLS%%share/locale/sv/LC_MESSAGES/wesnoth-lib.mo
1274
%%NLS%%share/locale/sv/LC_MESSAGES/wesnoth-lib.mo
Lines 1119-1126 share/applications/wesnoth.desktop Link Here
1119
%%NLS%%share/locale/tl/LC_MESSAGES/wesnoth-aoi.mo
1290
%%NLS%%share/locale/tl/LC_MESSAGES/wesnoth-aoi.mo
1120
%%NLS%%share/locale/tl/LC_MESSAGES/wesnoth-did.mo
1291
%%NLS%%share/locale/tl/LC_MESSAGES/wesnoth-did.mo
1121
%%NLS%%share/locale/tl/LC_MESSAGES/wesnoth-dm.mo
1292
%%NLS%%share/locale/tl/LC_MESSAGES/wesnoth-dm.mo
1293
%%NLS%%share/locale/tl/LC_MESSAGES/wesnoth-dw.mo
1122
%%NLS%%share/locale/tl/LC_MESSAGES/wesnoth-editor.mo
1294
%%NLS%%share/locale/tl/LC_MESSAGES/wesnoth-editor.mo
1123
%%NLS%%share/locale/tl/LC_MESSAGES/wesnoth-ei.mo
1295
%%NLS%%share/locale/tl/LC_MESSAGES/wesnoth-ei.mo
1296
%%NLS%%share/locale/tl/LC_MESSAGES/wesnoth-help.mo
1124
%%NLS%%share/locale/tl/LC_MESSAGES/wesnoth-httt.mo
1297
%%NLS%%share/locale/tl/LC_MESSAGES/wesnoth-httt.mo
1125
%%NLS%%share/locale/tl/LC_MESSAGES/wesnoth-l.mo
1298
%%NLS%%share/locale/tl/LC_MESSAGES/wesnoth-l.mo
1126
%%NLS%%share/locale/tl/LC_MESSAGES/wesnoth-lib.mo
1299
%%NLS%%share/locale/tl/LC_MESSAGES/wesnoth-lib.mo
Lines 1142-1149 share/applications/wesnoth.desktop Link Here
1142
%%NLS%%share/locale/tr/LC_MESSAGES/wesnoth-aoi.mo
1315
%%NLS%%share/locale/tr/LC_MESSAGES/wesnoth-aoi.mo
1143
%%NLS%%share/locale/tr/LC_MESSAGES/wesnoth-did.mo
1316
%%NLS%%share/locale/tr/LC_MESSAGES/wesnoth-did.mo
1144
%%NLS%%share/locale/tr/LC_MESSAGES/wesnoth-dm.mo
1317
%%NLS%%share/locale/tr/LC_MESSAGES/wesnoth-dm.mo
1318
%%NLS%%share/locale/tr/LC_MESSAGES/wesnoth-dw.mo
1145
%%NLS%%share/locale/tr/LC_MESSAGES/wesnoth-editor.mo
1319
%%NLS%%share/locale/tr/LC_MESSAGES/wesnoth-editor.mo
1146
%%NLS%%share/locale/tr/LC_MESSAGES/wesnoth-ei.mo
1320
%%NLS%%share/locale/tr/LC_MESSAGES/wesnoth-ei.mo
1321
%%NLS%%share/locale/tr/LC_MESSAGES/wesnoth-help.mo
1147
%%NLS%%share/locale/tr/LC_MESSAGES/wesnoth-httt.mo
1322
%%NLS%%share/locale/tr/LC_MESSAGES/wesnoth-httt.mo
1148
%%NLS%%share/locale/tr/LC_MESSAGES/wesnoth-l.mo
1323
%%NLS%%share/locale/tr/LC_MESSAGES/wesnoth-l.mo
1149
%%NLS%%share/locale/tr/LC_MESSAGES/wesnoth-lib.mo
1324
%%NLS%%share/locale/tr/LC_MESSAGES/wesnoth-lib.mo
Lines 1165-1172 share/applications/wesnoth.desktop Link Here
1165
%%NLS%%share/locale/vi/LC_MESSAGES/wesnoth-aoi.mo
1340
%%NLS%%share/locale/vi/LC_MESSAGES/wesnoth-aoi.mo
1166
%%NLS%%share/locale/vi/LC_MESSAGES/wesnoth-did.mo
1341
%%NLS%%share/locale/vi/LC_MESSAGES/wesnoth-did.mo
1167
%%NLS%%share/locale/vi/LC_MESSAGES/wesnoth-dm.mo
1342
%%NLS%%share/locale/vi/LC_MESSAGES/wesnoth-dm.mo
1343
%%NLS%%share/locale/vi/LC_MESSAGES/wesnoth-dw.mo
1168
%%NLS%%share/locale/vi/LC_MESSAGES/wesnoth-editor.mo
1344
%%NLS%%share/locale/vi/LC_MESSAGES/wesnoth-editor.mo
1169
%%NLS%%share/locale/vi/LC_MESSAGES/wesnoth-ei.mo
1345
%%NLS%%share/locale/vi/LC_MESSAGES/wesnoth-ei.mo
1346
%%NLS%%share/locale/vi/LC_MESSAGES/wesnoth-help.mo
1170
%%NLS%%share/locale/vi/LC_MESSAGES/wesnoth-httt.mo
1347
%%NLS%%share/locale/vi/LC_MESSAGES/wesnoth-httt.mo
1171
%%NLS%%share/locale/vi/LC_MESSAGES/wesnoth-l.mo
1348
%%NLS%%share/locale/vi/LC_MESSAGES/wesnoth-l.mo
1172
%%NLS%%share/locale/vi/LC_MESSAGES/wesnoth-lib.mo
1349
%%NLS%%share/locale/vi/LC_MESSAGES/wesnoth-lib.mo
Lines 1188-1195 share/applications/wesnoth.desktop Link Here
1188
%%NLS%%share/locale/zh_CN/LC_MESSAGES/wesnoth-aoi.mo
1365
%%NLS%%share/locale/zh_CN/LC_MESSAGES/wesnoth-aoi.mo
1189
%%NLS%%share/locale/zh_CN/LC_MESSAGES/wesnoth-did.mo
1366
%%NLS%%share/locale/zh_CN/LC_MESSAGES/wesnoth-did.mo
1190
%%NLS%%share/locale/zh_CN/LC_MESSAGES/wesnoth-dm.mo
1367
%%NLS%%share/locale/zh_CN/LC_MESSAGES/wesnoth-dm.mo
1368
%%NLS%%share/locale/zh_CN/LC_MESSAGES/wesnoth-dw.mo
1191
%%NLS%%share/locale/zh_CN/LC_MESSAGES/wesnoth-editor.mo
1369
%%NLS%%share/locale/zh_CN/LC_MESSAGES/wesnoth-editor.mo
1192
%%NLS%%share/locale/zh_CN/LC_MESSAGES/wesnoth-ei.mo
1370
%%NLS%%share/locale/zh_CN/LC_MESSAGES/wesnoth-ei.mo
1371
%%NLS%%share/locale/zh_CN/LC_MESSAGES/wesnoth-help.mo
1193
%%NLS%%share/locale/zh_CN/LC_MESSAGES/wesnoth-httt.mo
1372
%%NLS%%share/locale/zh_CN/LC_MESSAGES/wesnoth-httt.mo
1194
%%NLS%%share/locale/zh_CN/LC_MESSAGES/wesnoth-l.mo
1373
%%NLS%%share/locale/zh_CN/LC_MESSAGES/wesnoth-l.mo
1195
%%NLS%%share/locale/zh_CN/LC_MESSAGES/wesnoth-lib.mo
1374
%%NLS%%share/locale/zh_CN/LC_MESSAGES/wesnoth-lib.mo
Lines 1211-1218 share/applications/wesnoth.desktop Link Here
1211
%%NLS%%share/locale/zh_TW/LC_MESSAGES/wesnoth-aoi.mo
1390
%%NLS%%share/locale/zh_TW/LC_MESSAGES/wesnoth-aoi.mo
1212
%%NLS%%share/locale/zh_TW/LC_MESSAGES/wesnoth-did.mo
1391
%%NLS%%share/locale/zh_TW/LC_MESSAGES/wesnoth-did.mo
1213
%%NLS%%share/locale/zh_TW/LC_MESSAGES/wesnoth-dm.mo
1392
%%NLS%%share/locale/zh_TW/LC_MESSAGES/wesnoth-dm.mo
1393
%%NLS%%share/locale/zh_TW/LC_MESSAGES/wesnoth-dw.mo
1214
%%NLS%%share/locale/zh_TW/LC_MESSAGES/wesnoth-editor.mo
1394
%%NLS%%share/locale/zh_TW/LC_MESSAGES/wesnoth-editor.mo
1215
%%NLS%%share/locale/zh_TW/LC_MESSAGES/wesnoth-ei.mo
1395
%%NLS%%share/locale/zh_TW/LC_MESSAGES/wesnoth-ei.mo
1396
%%NLS%%share/locale/zh_TW/LC_MESSAGES/wesnoth-help.mo
1216
%%NLS%%share/locale/zh_TW/LC_MESSAGES/wesnoth-httt.mo
1397
%%NLS%%share/locale/zh_TW/LC_MESSAGES/wesnoth-httt.mo
1217
%%NLS%%share/locale/zh_TW/LC_MESSAGES/wesnoth-l.mo
1398
%%NLS%%share/locale/zh_TW/LC_MESSAGES/wesnoth-l.mo
1218
%%NLS%%share/locale/zh_TW/LC_MESSAGES/wesnoth-lib.mo
1399
%%NLS%%share/locale/zh_TW/LC_MESSAGES/wesnoth-lib.mo
Lines 1231-1240 share/applications/wesnoth.desktop Link Here
1231
%%NLS%%share/locale/zh_TW/LC_MESSAGES/wesnoth-utbs.mo
1412
%%NLS%%share/locale/zh_TW/LC_MESSAGES/wesnoth-utbs.mo
1232
%%NLS%%share/locale/zh_TW/LC_MESSAGES/wesnoth.mo
1413
%%NLS%%share/locale/zh_TW/LC_MESSAGES/wesnoth.mo
1233
share/pixmaps/wesnoth-icon.png
1414
share/pixmaps/wesnoth-icon.png
1234
%%EDITOR%%share/pixmaps/wesnoth_editor-icon.png
1415
share/pixmaps/wesnoth_editor-icon.png
1235
%%PYTHON%%@dirrm %%PYTHON_SITELIBDIR%%/wesnoth
1416
%%PYTHON%%@dirrm %%PYTHON_SITELIBDIR%%/wesnoth
1236
@dirrmtry man/af/man6
1417
@dirrmtry man/af/man6
1237
@dirrmtry man/af
1418
@dirrmtry man/af
1419
@dirrmtry man/ang/man6
1420
@dirrmtry man/ang
1421
@dirrmtry man/ang@latin/man6
1422
@dirrmtry man/ang@latin
1238
@dirrmtry man/ar/man6
1423
@dirrmtry man/ar/man6
1239
@dirrmtry man/ar
1424
@dirrmtry man/ar
1240
@dirrmtry man/bg/man6
1425
@dirrmtry man/bg/man6
Lines 1269-1274 share/pixmaps/wesnoth-icon.png Link Here
1269
@dirrmtry man/fr
1454
@dirrmtry man/fr
1270
@dirrmtry man/fur_IT/man6
1455
@dirrmtry man/fur_IT/man6
1271
@dirrmtry man/fur_IT
1456
@dirrmtry man/fur_IT
1457
@dirrmtry man/ga/man6
1458
@dirrmtry man/ga
1272
@dirrmtry man/gl/man6
1459
@dirrmtry man/gl/man6
1273
@dirrmtry man/gl
1460
@dirrmtry man/gl
1274
@dirrmtry man/he/man6
1461
@dirrmtry man/he/man6
Lines 1336-1341 share/pixmaps/wesnoth-icon.png Link Here
1336
@dirrmtry man/zh_TW/man6
1523
@dirrmtry man/zh_TW/man6
1337
@dirrmtry man/zh_TW
1524
@dirrmtry man/zh_TW
1338
@dirrmtry share/applications
1525
@dirrmtry share/applications
1526
%%NLS%%@dirrmtry share/locale/ang/LC_MESSAGES
1527
%%NLS%%@dirrmtry share/locale/ang
1528
%%NLS%%@dirrmtry share/locale/ang@latin/LC_MESSAGES
1529
%%NLS%%@dirrmtry share/locale/ang@latin
1339
%%NLS%%@dirrmtry share/locale/ca_ES@valencia/LC_MESSAGES
1530
%%NLS%%@dirrmtry share/locale/ca_ES@valencia/LC_MESSAGES
1340
%%NLS%%@dirrmtry share/locale/ca_ES@valencia
1531
%%NLS%%@dirrmtry share/locale/ca_ES@valencia
1341
%%NLS%%@dirrmtry share/locale/en@shaw/LC_MESSAGES
1532
%%NLS%%@dirrmtry share/locale/en@shaw/LC_MESSAGES
(-)games/wesnoth/files/patch-CMakeLists.txt (+74 lines)
Added Link Here
1
--- CMakeLists.txt~
2
+++ CMakeLists.txt
3
@@ -21,11 +21,10 @@ set(CMAKE_MODULE_PATH ${CMAKE_SOURCE_DIR
4
 find_package(SDL 1.2.7 REQUIRED)
5
 find_package(Boost 1.35 REQUIRED COMPONENTS iostreams regex)
6
 
7
-# no, gettext executables are not required when NLS is deactivated
8
+if(ENABLE_NLS)
9
 find_package(Gettext)
10
-# yes, libintl is *required* even when NLS is deactivated (this is to compile
11
-# src/gettext.cpp since it includes libintl.h)
12
 find_package(Libintl REQUIRED)
13
+endif(ENABLE_NLS)
14
 
15
 find_package(X11)
16
 
17
@@ -68,7 +67,7 @@ option(ENABLE_GAME "Enable compilation o
18
 option(ENABLE_GAME "Enable compilation of the game" ON)
19
 option(ENABLE_CAMPAIGN_SERVER "Enable compilation of campaign server")
20
 option(ENABLE_SERVER "Enable compilation of server" ON)
21
-option(ENABLE_TOOLS "Enable building and installation of tools for artists and WML maintainers")
22
+option(ENABLE_TOOLS "Enable building and installation of tools for artists and WML maintainers" OFF)
23
 option(ENABLE_TESTS "Build unit tests")
24
 option(ENABLE_NLS "Enable building of translations" ON)
25
 option(ENABLE_POOL_ALLOC "Enable custom pool malloc" OFF)
26
@@ -114,18 +113,18 @@ if(CMAKE_COMPILER_IS_GNUCXX)
27
 		endif(ENABLE_STRICT_COMPILATION)
28
 
29
 		# Strict compilation for C files is disabled until somebody wants to clean them.
30
-		set(CMAKE_C_FLAGS "-O2 -W -Wall -ansi $ENV{CFLAGS}"
31
+		set(CMAKE_C_FLAGS "-W -Wall -ansi $ENV{CFLAGS}"
32
 				CACHE STRING "Flags used by the C compiler during normal builds." FORCE)
33
-		set(CMAKE_C_FLAGS_DEBUG "-O0 -DDEBUG -ggdb3 -W -Wall -ansi $ENV{CFLAGS}"
34
+		set(CMAKE_C_FLAGS_DEBUG "-DDEBUG -W -Wall -ansi $ENV{CFLAGS}"
35
 				CACHE STRING "Flags used by the C compiler during debug builds." FORCE)
36
-		set(CMAKE_C_FLAGS_RELEASE "-O3 -DNDEBUG -W -Wall -ansi $ENV{CFLAGS} -Wno-unused"
37
+		set(CMAKE_C_FLAGS_RELEASE "-DNDEBUG -W -Wall -ansi $ENV{CFLAGS} -Wno-unused"
38
 				CACHE STRING "Flags used by the C compiler during release builds." FORCE)
39
 
40
-		set(CMAKE_CXX_FLAGS "-O2 -W -Wall -std=c++98 ${STRICT_FLAGS} $ENV{CXXFLAGS}"
41
+		set(CMAKE_CXX_FLAGS "-W -Wall -std=c++98 ${STRICT_FLAGS} $ENV{CXXFLAGS}"
42
 				CACHE STRING "Flags used by the CXX compiler during normal builds." FORCE)
43
-		set(CMAKE_CXX_FLAGS_DEBUG "-O0 -DDEBUG -ggdb3 -W -Wall -std=c++98 ${STRICT_FLAGS} $ENV{CXXFLAGS}"
44
+		set(CMAKE_CXX_FLAGS_DEBUG "-DDEBUG -W -Wall -std=c++98 ${STRICT_FLAGS} $ENV{CXXFLAGS}"
45
 				CACHE STRING "Flags used by the CXX compiler during debug builds." FORCE)
46
-		set(CMAKE_CXX_FLAGS_RELEASE "-O3 -DNDEBUG -W -Wall -std=c++98 ${STRICT_FLAGS} $ENV{CXXFLAGS} -Wno-unused"
47
+		set(CMAKE_CXX_FLAGS_RELEASE "-DNDEBUG -W -Wall -std=c++98 ${STRICT_FLAGS} $ENV{CXXFLAGS} -Wno-unused"
48
 				CACHE STRING "Flags used by the CXX compiler during release builds." FORCE)
49
 
50
 	endif(NOT CONFIGURED)
51
@@ -154,6 +153,7 @@ add_definitions(-DLOCALEDIR=\\\"${LOCALE
52
 if(LOCALEDIR MATCHES "^/")
53
 	add_definitions(-DHAS_RELATIVE_LOCALEDIR=0)
54
 	set(LOCALE_INSTALL ${LOCALEDIR})
55
+	set(LOCALEDIR "translations")
56
 else(LOCALEDIR MATCHES "^/")
57
 	add_definitions(-DHAS_RELATIVE_LOCALEDIR=1)
58
 	set(LOCALE_INSTALL ${DATADIR}/${LOCALEDIR})
59
@@ -213,10 +213,14 @@ if(ENABLE_TESTS)
60
 	find_package( Boost 1.35 REQUIRED COMPONENTS unit_test_framework )
61
 endif(ENABLE_TESTS)
62
 if(ENABLE_GAME)
63
-	find_package( FriBiDi )
64
+	pkg_check_modules( FRIBIDI fribidi>=0.19.0 )
65
 	if(ENABLE_FRIBIDI AND FRIBIDI_LIBRARIES)
66
 		add_definitions(-DHAVE_FRIBIDI)
67
 	elseif(ENABLE_FRIBIDI AND NOT FRIBIDI_LIBRARIES)
68
+		pkg_check_modules( FRIBIDI fribidi )
69
+		if(FRIBIDI_LIBRARIES)
70
+			add_definitions(-DOLD_FRIBIDI)
71
+		endif(FRIBIDI_LIBRARIES)
72
 		message("Could not find FriBiDi. Disabling FriBiDi support.")
73
 	endif()
74
 
(-)games/wesnoth/files/patch-Makefile.am (-18 lines)
Removed Link Here
1
--- Makefile.am~
2
+++ Makefile.am
3
@@ -73,6 +73,7 @@ if INSTALLDATA
4
 	  echo $(INSTALL_DATA) "$$d$$p" "$(DESTDIR)$(pkgdatadir)/$$f"; \
5
 	  $(INSTALL_DATA) "$$d$$p" "$(DESTDIR)$(pkgdatadir)/$$f"; \
6
 	done
7
+if INSTALLDOCS
8
 	@echo "Replicate doc directory skeleton under target doc subdirectory"
9
 	@echo "Then copy all corresponding files."
10
 	test -z "$(docdir)" || $(mkdir_p) "$(DESTDIR)$(docdir)"
11
@@ -84,6 +85,7 @@ if INSTALLDATA
12
 	  echo $(INSTALL_DATA) "$$d$$p" "$(DESTDIR)$(docdir)/$$f"; \
13
 	  $(INSTALL_DATA) "$$d$$p" "$(DESTDIR)$(docdir)/$$f"; cd ..; \
14
 	done
15
+endif
16
 if TINYGUI
17
 	@echo "Shrink installed images by a factor of two."
18
 	(cd $(top_srcdir) && find data/core/images data/campaigns images  \( $(findfilterflags) -a -name '*.png' -and -not -name 'bar-energy-tinygui.png' -print \) ) | while read p; do \
(-)games/wesnoth/files/patch-configure.ac (-14 lines)
Removed Link Here
1
--- configure.ac~
2
+++ configure.ac
3
@@ -213,6 +213,11 @@ esac
4
 AC_SUBST([FULLLOCALEDIR])
5
 AC_SUBST([HAS_RELATIVE_LOCALEDIR])
6
 
7
+AC_ARG_WITH([docs],
8
+	         AS_HELP_STRING([--without-docs], [don't install wesnoth manual]),
9
+	      [docs=$withval],
10
+	      [docs=yes])
11
+AM_CONDITIONAL([INSTALLDOCS], [test x$docs = xyes])
12
 
13
 AC_ARG_ENABLE([game],
14
               AS_HELP_STRING([--disable-game], [disable compilation of game]),
(-)games/wesnoth/files/patch-doc-CMakeLists.txt (+7 lines)
Added Link Here
1
--- doc/CMakeLists.txt~
2
+++ doc/CMakeLists.txt
3
@@ -1,2 +1,4 @@
4
 add_subdirectory(man)
5
+if(NOT DOCDIR STREQUAL "none")
6
 add_subdirectory(manual)
7
+endif(NOT DOCDIR STREQUAL "none")
(-)games/wesnoth/files/patch-m4-boost.m4 (-11 lines)
Removed Link Here
1
--- m4/boost.m4~	2010-05-27 11:37:13.000000000 +0400
2
+++ m4/boost.m4	2010-08-23 07:12:17.014432212 +0400
3
@@ -729,7 +729,7 @@ AC_CACHE_CHECK([for the flags needed to 
4
   esac
5
   # Generate the test file.
6
   AC_LANG_CONFTEST([AC_LANG_PROGRAM([#include <pthread.h>],
7
-    [pthread_t th; pthread_join(th, 0);
8
+    [pthread_t th=NULL; pthread_join(th, 0);
9
     pthread_attr_init(0); pthread_cleanup_push(0, 0);
10
     pthread_create(0,0,0,0); pthread_cleanup_pop(0);])])
11
   for boost_pthread_flag in '' $boost_pthread_flags; do
(-)games/wesnoth/files/patch-m4-zlib.m4 (-15 lines)
Removed Link Here
1
--- m4/zlib.m4~
2
+++ m4/zlib.m4
3
@@ -16,11 +16,9 @@ fi
4
 AC_MSG_CHECKING([for zlib location])
5
 if test x"$zlib_prefix" = x ; then
6
   zlib_header_found="no"
7
-  for dir in /usr/local /usr ; do
8
+  for dir in /usr ; do
9
   if test -f "$dir/include/zlib.h" ; then
10
     zlib_header_found="yes"
11
-    ZLIB_CFLAGS="-I$dir/include"
12
-    ZLIB_LDFLAGS="-L$dir/lib"
13
     break
14
   fi
15
   done
(-)games/wesnoth/files/patch-po-CMakeLists.txt (+24 lines)
Added Link Here
1
--- po/CMakeLists.txt~
2
+++ po/CMakeLists.txt
3
@@ -273,9 +273,6 @@ if(ENABLE_NLS)
4
 				COMMENT "mo-update [${DOMAIN}-${LINGUA}]: Creating mo file."
5
 			)
6
 
7
-			install(FILES ${CMAKE_SOURCE_DIR}/${LOCALEDIR}/${LINGUA}/LC_MESSAGES/${DOMAIN}.mo
8
-					DESTINATION ${LOCALE_INSTALL}/${LINGUA}/LC_MESSAGES)
9
-
10
 			set(mo-update-SRC ${mo-update-SRC} 
11
 				${CMAKE_SOURCE_DIR}/${LOCALEDIR}/${LINGUA}/LC_MESSAGES/${DOMAIN}.mo
12
 			)
13
@@ -285,6 +282,11 @@ if(ENABLE_NLS)
14
 
15
 		endforeach(DOMAIN ${DOMAINS})
16
 
17
+		foreach(DOMAIN ${NORMAL_DOMAINS})
18
+			install(FILES ${CMAKE_SOURCE_DIR}/${LOCALEDIR}/${LINGUA}/LC_MESSAGES/${DOMAIN}.mo
19
+					DESTINATION ${LOCALE_INSTALL}/${LINGUA}/LC_MESSAGES)
20
+		endforeach(DOMAIN ${NORMAL_DOMAINS})
21
+
22
 		if(ENABLE_POT_UPDATE_TARGET)
23
 			add_custom_target(mo-update-${LINGUA}
24
 				COMMENT "mo-update ${LINGUA}: Done."
(-)games/wesnoth/files/patch-src-CMakeLists.txt (+22 lines)
Added Link Here
1
--- src/CMakeLists.txt~
2
+++ src/CMakeLists.txt
3
@@ -123,7 +123,7 @@ set(tools-external-libs
4
 )
5
 
6
 if(ENABLE_FRIBIDI AND FRIBIDI_LIBRARIES)
7
-	include_directories( ${FRIBIDI_INCLUDE_DIR} )
8
+	include_directories( ${FRIBIDI_INCLUDE_DIRS} )
9
 	set(game-external-libs ${game-external-libs} ${FRIBIDI_LIBRARIES})
10
 endif(ENABLE_FRIBIDI AND FRIBIDI_LIBRARIES)
11
 
12
@@ -826,7 +833,9 @@ if(ENABLE_TESTS)
13
 		boost_unit_test_framework
14
 	)
15
 	set_target_properties(test
16
-		PROPERTIES OUTPUT_NAME ${BINARY_PREFIX}test${BINARY_SUFFIX}
17
+		PROPERTIES OUTPUT_NAME ${BINARY_PREFIX}wesnoth_test${BINARY_SUFFIX}
18
 	)
19
+
20
+	install(TARGETS test DESTINATION ${BINDIR})
21
 endif(ENABLE_TESTS)
22
 
(-)games/wesnoth/files/patch-src-Makefile.am (-31 lines)
Removed Link Here
1
--- src/Makefile.am~
2
+++ src/Makefile.am
3
@@ -16,7 +16,7 @@ bin_PROGRAMS += campaignd
4
 endif
5
 
6
 if TESTS
7
-bin_PROGRAMS += test
8
+bin_PROGRAMS += wesnoth_test
9
 endif
10
 
11
 CLEANFILES = revision.hpp
12
@@ -342,7 +342,7 @@ cutter_DEPENDENCIES=libwesnoth-core.a
13
 #    Unit tests                                                             #
14
 #############################################################################
15
 
16
-test_SOURCES =  \
17
+wesnoth_test_SOURCES =  \
18
 	tests/main.cpp \
19
 	tests/utils/fake_display.cpp \
20
 	tests/utils/fake_event_source.cpp \
21
@@ -362,8 +362,8 @@ test_SOURCES =  \
22
 	tests/gui/test_save_dialog.cpp \
23
 	$(wesnoth_source)
24
 
25
-test_LDADD = $(INTERNALLIBS) $(THELIBS) $(BOOST_UNIT_TEST_FRAMEWORK_LIBS) $(PANGO_LIBS) $(FONTCONFIG_LIBS)
26
-test_DEPENDENCIES=libwesnoth-core.a libwesnoth.a
27
+wesnoth_test_LDADD = $(INTERNALLIBS) $(THELIBS) $(BOOST_UNIT_TEST_FRAMEWORK_LIBS) $(PANGO_LIBS) $(FONTCONFIG_LIBS)
28
+wesnoth_test_DEPENDENCIES=libwesnoth-core.a libwesnoth.a
29
 
30
 #############################################################################
31
 #    Headers                                                                #
(-)games/wesnoth/files/patch-src-ana-src-CMakeLists.txt (+34 lines)
Added Link Here
1
--- src/ana/src/CMakeLists.txt~
2
+++ src/ana/src/CMakeLists.txt
3
@@ -4,7 +4,7 @@ include_directories(../api)
4
 
5
 find_package(Boost 1.35 REQUIRED COMPONENTS thread system)
6
 
7
-set(CMAKE_CXX_FLAGS_DEBUG "${CMAKE_CXX_FLAGS_DEBUG} -ggdb3")
8
+set(CMAKE_CXX_FLAGS_DEBUG "${CMAKE_CXX_FLAGS_DEBUG}")
9
 
10
 set(common_srcs asio_listener.cpp asio_sender.cpp asio_timers.cpp)
11
 
12
@@ -20,11 +20,11 @@ target_link_libraries( ana-static ${Boos
13
 
14
 set(CMAKE_INSTALL_PREFIX /usr/local)
15
 
16
-if(NOT MSVC)
17
+if(FALSE)
18
 	set(CMAKE_INSTALL_PREFIX /usr/local)
19
 	install(TARGETS ana LIBRARY DESTINATION lib)
20
 	install(TARGETS ana-static ARCHIVE DESTINATION lib)
21
-endif(NOT MSVC)
22
+endif(FALSE)
23
 
24
 set(ana_headers
25
 	../api/ana.hpp
26
@@ -35,6 +35,6 @@ set(ana_headers
27
 	../api/binary_streams.hpp
28
 )
29
 
30
-if(NOT MSVC)
31
+if(FALSE)
32
 	install(FILES ${ana_headers} DESTINATION include/ana)
33
-endif(NOT MSVC)
34
+endif(FALSE)
(-)games/wesnoth/files/patch-src-tests-main.cpp (-10 lines)
Removed Link Here
1
--- src/tests/main.cpp~
2
+++ src/tests/main.cpp
3
@@ -15,6 +15,7 @@
4
 #define GETTEXT_DOMAIN "wesnoth-test"
5
 
6
 
7
+#define BOOST_TEST_DYN_LINK
8
 #define BOOST_TEST_MODULE wesnoth unit tests master suite
9
 #include <boost/test/unit_test.hpp>
10
 #include <boost/test/unit_test_monitor.hpp>

Return to bug 165332