View | Details | Raw Unified | Return to bug 149899
Collapse All | Expand All

(-)games/wesnoth-devel/Makefile (-35 / +28 lines)
Lines 6-15 Link Here
6
#
6
#
7
7
8
PORTNAME=	wesnoth
8
PORTNAME=	wesnoth
9
PORTVERSION=	1.8
9
PORTVERSION=	1.9.0
10
PORTREVISION=	2
11
CATEGORIES=	games
10
CATEGORIES=	games
12
MASTER_SITES=	SF/${PORTNAME}/${PORTNAME}-${PORTVERSION}/${PORTNAME}-${PORTVERSION}.0 \
11
MASTER_SITES=	SF/${PORTNAME}/${PORTNAME}/${PORTNAME}-${PORTVERSION} \
13
		http://files.wesnoth.org/
12
		http://files.wesnoth.org/
14
PKGNAMESUFFIX=	-devel
13
PKGNAMESUFFIX=	-devel
15
14
Lines 18-57 COMMENT= A fantasy turn-based strategy g Link Here
18
17
19
LIB_DEPENDS=	boost_thread.4:${PORTSDIR}/devel/boost-libs
18
LIB_DEPENDS=	boost_thread.4:${PORTSDIR}/devel/boost-libs
20
19
20
LICENSE=	GPLv2 GPLv3
21
LICENSE_COMB=	dual
22
LICENSE_FILE=	${WRKSRC}/COPYING
23
21
CONFLICTS=	wesnoth-[0-9]*
24
CONFLICTS=	wesnoth-[0-9]*
22
25
23
USE_GCC=	4.2+
24
USE_SDL=	image mixer net ttf
26
USE_SDL=	image mixer net ttf
25
USE_GNOME=	desktopfileutils gnometarget pango
27
USE_GNOME=	gnometarget pango
26
USE_GMAKE=	yes
28
USE_GMAKE=	yes
27
MAKE_JOBS_SAFE=	yes
29
MAKE_JOBS_SAFE=	yes
28
WANT_GNOME=	yes
30
WANT_GNOME=	yes
29
USE_BZIP2=	yes
31
USE_BZIP2=	yes
30
USE_LUA=	5.1
31
USE_AUTOTOOLS=	aclocal:110 autoheader:262 automake:110 autoconf:262
32
USE_AUTOTOOLS=	aclocal:110 autoheader:262 automake:110 autoconf:262
32
ACLOCAL_ARGS=	-Im4
33
ACLOCAL_ARGS=	-Im4
33
AUTOMAKE_ARGS=	--add-missing --copy
34
AUTOMAKE_ARGS=	--add-missing --copy
35
CONFIGURE_ENV=	PKG_CONFIG="${PKG_CONFIG}" \
36
		LDFLAGS="${LDFLAGS}"
34
CONFIGURE_ARGS=	--localstatedir=/var \
37
CONFIGURE_ARGS=	--localstatedir=/var \
38
		--with-boost=${LOCALBASE} \
35
		--with-icondir=${PREFIX}/share/pixmaps \
39
		--with-icondir=${PREFIX}/share/pixmaps \
36
		--with-libiconv-prefix=${LOCALBASE} \
40
		--with-libiconv-prefix=${LOCALBASE} \
37
		--with-libintl-prefix=${LOCALBASE} \
41
		--with-libintl-prefix=${LOCALBASE} \
38
		--with-localedir=${PREFIX}/share/locale
42
		--with-localedir=${PREFIX}/share/locale
43
PKG_CONFIG?=	${LOCALBASE}/bin/pkg-config
39
44
40
MANLANG_GAME=	gl zh_TW
45
MANLANG=	"" cs de en_GB es et fi fr gl hu it ja lt pl pt_BR sk \
41
MANLANG=	"" cs de en_GB es et fi fr hu it ja lt pl pt_BR sk \
46
		sr sr@ijekavian sr@ijekavianlatin sr@latin tr zh_CN zh_TW
42
		sr sr@ijekavian sr@ijekavianlatin sr@latin tr zh_CN
43
47
44
MAN6=		wesnoth.6
48
MAN6=		wesnoth.6
45
49
46
PORTDOCS=	*
50
PORTDOCS=	*
47
PORTDATA=	*
51
PORTDATA=	*
48
52
49
OPTIONS=	BWMON	 "Enable bandwidth monitoring for server" Off \
53
OPTIONS=	ANA	 "Enable Asynchronous Network API (WIP)" On \
54
		BWMON	 "Enable bandwidth monitoring for server" Off \
50
		CAMPAIGN "Enable campaign server"	On \
55
		CAMPAIGN "Enable campaign server"	On \
51
		EDITOR	 "Enable map editor"		On \
56
		EDITOR	 "Enable map editor"		On \
52
		FRIBIDI	 "Enable bidirectional support"	On \
57
		FRIBIDI	 "Enable bidirectional support"	On \
53
		LOWMEM	 "Reduce memory usage (disables animations)" Off \
58
		LOWMEM	 "Reduce memory usage (disables animations)" Off \
54
		NLS	 "Enable localization"		On \
55
		NOTIFY	 "Enable desktop notifications"	On \
59
		NOTIFY	 "Enable desktop notifications"	On \
56
		POOLALLOC "Use wesnoth own memory allocator" Off \
60
		POOLALLOC "Use wesnoth own memory allocator" Off \
57
		PYTHON	 "Enable python developer tools" On \
61
		PYTHON	 "Enable python developer tools" On \
Lines 67-83 OPTIONS= BWMON "Enable bandwidth monito Link Here
67
BROKEN=		does not compile
71
BROKEN=		does not compile
68
.endif
72
.endif
69
73
70
# workaround: compress and add to plist disobedient man pages
71
.for manlang in ${MANLANG_GAME}
72
MAN6_${manlang:U}=	wesnoth.6
73
74
.if defined(NO_MANCOMPRESS)
75
PLIST_FILES+=	man/${manlang}/man6/wesnoth.6
76
.else
77
PLIST_FILES+=	man/${manlang}/man6/wesnoth.6.gz
78
.endif
79
.endfor
80
81
.if defined(WITH_DEBUG)
74
.if defined(WITH_DEBUG)
82
CONFIGURE_ARGS+=	--enable-debug
75
CONFIGURE_ARGS+=	--enable-debug
83
.endif
76
.endif
Lines 91-96 CONFIGURE_ARGS+= --enable-profile Link Here
91
CONFIGURE_ARGS+=	--disable-strict-compilation
84
CONFIGURE_ARGS+=	--disable-strict-compilation
92
.endif
85
.endif
93
86
87
.if defined(WITHOUT_ANA)
88
CONFIGURE_ARGS+=	--disable-ana
89
.else
90
CONFIGURE_ARGS+=	--enable-ana
91
.endif
92
94
.if defined(WITHOUT_BWMON)
93
.if defined(WITHOUT_BWMON)
95
CONFIGURE_ARGS+=	--disable-bandwidth-monitor
94
CONFIGURE_ARGS+=	--disable-bandwidth-monitor
96
.else
95
.else
Lines 198-223 CONFIGURE_ARGS+= --enable-tools Link Here
198
PLIST_SUB+=		TOOLS=""
197
PLIST_SUB+=		TOOLS=""
199
.endif
198
.endif
200
199
201
.if (defined(WITH_CAMPAIGN) || defined(WITH_SERVER) || defined(WITH_TOOLS)) && defined(WITHOUT_NLS)
200
.if defined(NOPORTDOCS)
202
BROKEN=		you need NLS support for `campaignd' or `wesnothd' or tools to link against gettext
201
CONFIGURE_ARGS+=	--docdir=${WRKDIR}/docs
203
.endif
202
.endif
204
203
205
.if defined(NOPORTDOCS) || defined(NOPORTDATA)
204
.if defined(NOPORTDATA)
206
BROKEN=		NOPORT(DOCS|DATA) is not supported
205
IGNORE=		game data is required, undefine NOPORTDATA
207
.endif
206
.endif
208
207
209
post-patch:
208
post-patch:	.SILENT
210
	${REINPLACE_CMD} -e 's|png_voidp_NULL|NULL|g' \
209
	${REINPLACE_CMD} -e 's|png_voidp_NULL|NULL|g' \
211
		-e 's|png_error_ptr_NULL|NULL|g' \
210
		-e 's|png_error_ptr_NULL|NULL|g' \
212
		${WRKSRC}/src/tools/exploder_utils.cpp
211
		${WRKSRC}/src/tools/exploder_utils.cpp
213
212
214
post-install:	.SILENT
213
post-install:
215
	-update-desktop-database
214
	-update-desktop-database ${PREFIX}/share/applications
216
217
.if !defined(NO_MANCOMPRESS)
218
.	for manlang in ${MANLANG_GAME}
219
		${GZIP_CMD} ${PREFIX}/man/${manlang}/man6/wesnoth.6
220
.	endfor
221
.endif
222
215
223
.include <bsd.port.post.mk>
216
.include <bsd.port.post.mk>
(-)games/wesnoth-devel/distinfo (-3 / +3 lines)
Lines 1-3 Link Here
1
MD5 (wesnoth-1.8.tar.bz2) = 07e4b97512e307c54dcfd86659a61e41
1
MD5 (wesnoth-1.9.0.tar.bz2) = c4e7ba80c6212cb58c3ff96d10f417ae
2
SHA256 (wesnoth-1.8.tar.bz2) = f4defab05ccc50abf4e029b58026e9b062bd3c58c8fff2aaa23b4f3e62cf929b
2
SHA256 (wesnoth-1.9.0.tar.bz2) = 5f0058930e190150b86bb5ca5bab3013569ba622009f80455e76e2ad7f0cd64d
3
SIZE (wesnoth-1.8.tar.bz2) = 287912025
3
SIZE (wesnoth-1.9.0.tar.bz2) = 318761871
(-)games/wesnoth-devel/pkg-plist (-4 / +56 lines)
Lines 34-45 bin/wesnoth Link Here
34
%%PYTHON%%%%PYTHON_SITELIBDIR%%/wesnoth/wmltools.pyo
34
%%PYTHON%%%%PYTHON_SITELIBDIR%%/wesnoth/wmltools.pyo
35
share/applications/wesnoth.desktop
35
share/applications/wesnoth.desktop
36
%%EDITOR%%share/applications/wesnoth_editor.desktop
36
%%EDITOR%%share/applications/wesnoth_editor.desktop
37
share/pixmaps/wesnoth-icon.png
38
%%EDITOR%%share/pixmaps/wesnoth_editor-icon.png
39
%%NLS%%share/locale/af/LC_MESSAGES/wesnoth-anl.mo
37
%%NLS%%share/locale/af/LC_MESSAGES/wesnoth-anl.mo
40
%%NLS%%share/locale/af/LC_MESSAGES/wesnoth-aoi.mo
38
%%NLS%%share/locale/af/LC_MESSAGES/wesnoth-aoi.mo
41
%%NLS%%share/locale/af/LC_MESSAGES/wesnoth-did.mo
39
%%NLS%%share/locale/af/LC_MESSAGES/wesnoth-did.mo
42
%%NLS%%share/locale/af/LC_MESSAGES/wesnoth-dm.mo
40
%%NLS%%share/locale/af/LC_MESSAGES/wesnoth-dm.mo
41
%%NLS%%share/locale/af/LC_MESSAGES/wesnoth-dw.mo
43
%%NLS%%share/locale/af/LC_MESSAGES/wesnoth-editor.mo
42
%%NLS%%share/locale/af/LC_MESSAGES/wesnoth-editor.mo
44
%%NLS%%share/locale/af/LC_MESSAGES/wesnoth-ei.mo
43
%%NLS%%share/locale/af/LC_MESSAGES/wesnoth-ei.mo
45
%%NLS%%share/locale/af/LC_MESSAGES/wesnoth-httt.mo
44
%%NLS%%share/locale/af/LC_MESSAGES/wesnoth-httt.mo
Lines 63-68 share/pixmaps/wesnoth-icon.png Link Here
63
%%NLS%%share/locale/ar/LC_MESSAGES/wesnoth-aoi.mo
62
%%NLS%%share/locale/ar/LC_MESSAGES/wesnoth-aoi.mo
64
%%NLS%%share/locale/ar/LC_MESSAGES/wesnoth-did.mo
63
%%NLS%%share/locale/ar/LC_MESSAGES/wesnoth-did.mo
65
%%NLS%%share/locale/ar/LC_MESSAGES/wesnoth-dm.mo
64
%%NLS%%share/locale/ar/LC_MESSAGES/wesnoth-dm.mo
65
%%NLS%%share/locale/ar/LC_MESSAGES/wesnoth-dw.mo
66
%%NLS%%share/locale/ar/LC_MESSAGES/wesnoth-editor.mo
66
%%NLS%%share/locale/ar/LC_MESSAGES/wesnoth-editor.mo
67
%%NLS%%share/locale/ar/LC_MESSAGES/wesnoth-ei.mo
67
%%NLS%%share/locale/ar/LC_MESSAGES/wesnoth-ei.mo
68
%%NLS%%share/locale/ar/LC_MESSAGES/wesnoth-httt.mo
68
%%NLS%%share/locale/ar/LC_MESSAGES/wesnoth-httt.mo
Lines 86-91 share/pixmaps/wesnoth-icon.png Link Here
86
%%NLS%%share/locale/bg/LC_MESSAGES/wesnoth-aoi.mo
86
%%NLS%%share/locale/bg/LC_MESSAGES/wesnoth-aoi.mo
87
%%NLS%%share/locale/bg/LC_MESSAGES/wesnoth-did.mo
87
%%NLS%%share/locale/bg/LC_MESSAGES/wesnoth-did.mo
88
%%NLS%%share/locale/bg/LC_MESSAGES/wesnoth-dm.mo
88
%%NLS%%share/locale/bg/LC_MESSAGES/wesnoth-dm.mo
89
%%NLS%%share/locale/bg/LC_MESSAGES/wesnoth-dw.mo
89
%%NLS%%share/locale/bg/LC_MESSAGES/wesnoth-editor.mo
90
%%NLS%%share/locale/bg/LC_MESSAGES/wesnoth-editor.mo
90
%%NLS%%share/locale/bg/LC_MESSAGES/wesnoth-ei.mo
91
%%NLS%%share/locale/bg/LC_MESSAGES/wesnoth-ei.mo
91
%%NLS%%share/locale/bg/LC_MESSAGES/wesnoth-httt.mo
92
%%NLS%%share/locale/bg/LC_MESSAGES/wesnoth-httt.mo
Lines 109-114 share/pixmaps/wesnoth-icon.png Link Here
109
%%NLS%%share/locale/ca/LC_MESSAGES/wesnoth-aoi.mo
110
%%NLS%%share/locale/ca/LC_MESSAGES/wesnoth-aoi.mo
110
%%NLS%%share/locale/ca/LC_MESSAGES/wesnoth-did.mo
111
%%NLS%%share/locale/ca/LC_MESSAGES/wesnoth-did.mo
111
%%NLS%%share/locale/ca/LC_MESSAGES/wesnoth-dm.mo
112
%%NLS%%share/locale/ca/LC_MESSAGES/wesnoth-dm.mo
113
%%NLS%%share/locale/ca/LC_MESSAGES/wesnoth-dw.mo
112
%%NLS%%share/locale/ca/LC_MESSAGES/wesnoth-editor.mo
114
%%NLS%%share/locale/ca/LC_MESSAGES/wesnoth-editor.mo
113
%%NLS%%share/locale/ca/LC_MESSAGES/wesnoth-ei.mo
115
%%NLS%%share/locale/ca/LC_MESSAGES/wesnoth-ei.mo
114
%%NLS%%share/locale/ca/LC_MESSAGES/wesnoth-httt.mo
116
%%NLS%%share/locale/ca/LC_MESSAGES/wesnoth-httt.mo
Lines 132-137 share/pixmaps/wesnoth-icon.png Link Here
132
%%NLS%%share/locale/ca_ES@valencia/LC_MESSAGES/wesnoth-aoi.mo
134
%%NLS%%share/locale/ca_ES@valencia/LC_MESSAGES/wesnoth-aoi.mo
133
%%NLS%%share/locale/ca_ES@valencia/LC_MESSAGES/wesnoth-did.mo
135
%%NLS%%share/locale/ca_ES@valencia/LC_MESSAGES/wesnoth-did.mo
134
%%NLS%%share/locale/ca_ES@valencia/LC_MESSAGES/wesnoth-dm.mo
136
%%NLS%%share/locale/ca_ES@valencia/LC_MESSAGES/wesnoth-dm.mo
137
%%NLS%%share/locale/ca_ES@valencia/LC_MESSAGES/wesnoth-dw.mo
135
%%NLS%%share/locale/ca_ES@valencia/LC_MESSAGES/wesnoth-editor.mo
138
%%NLS%%share/locale/ca_ES@valencia/LC_MESSAGES/wesnoth-editor.mo
136
%%NLS%%share/locale/ca_ES@valencia/LC_MESSAGES/wesnoth-ei.mo
139
%%NLS%%share/locale/ca_ES@valencia/LC_MESSAGES/wesnoth-ei.mo
137
%%NLS%%share/locale/ca_ES@valencia/LC_MESSAGES/wesnoth-httt.mo
140
%%NLS%%share/locale/ca_ES@valencia/LC_MESSAGES/wesnoth-httt.mo
Lines 155-160 share/pixmaps/wesnoth-icon.png Link Here
155
%%NLS%%share/locale/cs/LC_MESSAGES/wesnoth-aoi.mo
158
%%NLS%%share/locale/cs/LC_MESSAGES/wesnoth-aoi.mo
156
%%NLS%%share/locale/cs/LC_MESSAGES/wesnoth-did.mo
159
%%NLS%%share/locale/cs/LC_MESSAGES/wesnoth-did.mo
157
%%NLS%%share/locale/cs/LC_MESSAGES/wesnoth-dm.mo
160
%%NLS%%share/locale/cs/LC_MESSAGES/wesnoth-dm.mo
161
%%NLS%%share/locale/cs/LC_MESSAGES/wesnoth-dw.mo
158
%%NLS%%share/locale/cs/LC_MESSAGES/wesnoth-editor.mo
162
%%NLS%%share/locale/cs/LC_MESSAGES/wesnoth-editor.mo
159
%%NLS%%share/locale/cs/LC_MESSAGES/wesnoth-ei.mo
163
%%NLS%%share/locale/cs/LC_MESSAGES/wesnoth-ei.mo
160
%%NLS%%share/locale/cs/LC_MESSAGES/wesnoth-httt.mo
164
%%NLS%%share/locale/cs/LC_MESSAGES/wesnoth-httt.mo
Lines 178-183 share/pixmaps/wesnoth-icon.png Link Here
178
%%NLS%%share/locale/da/LC_MESSAGES/wesnoth-aoi.mo
182
%%NLS%%share/locale/da/LC_MESSAGES/wesnoth-aoi.mo
179
%%NLS%%share/locale/da/LC_MESSAGES/wesnoth-did.mo
183
%%NLS%%share/locale/da/LC_MESSAGES/wesnoth-did.mo
180
%%NLS%%share/locale/da/LC_MESSAGES/wesnoth-dm.mo
184
%%NLS%%share/locale/da/LC_MESSAGES/wesnoth-dm.mo
185
%%NLS%%share/locale/da/LC_MESSAGES/wesnoth-dw.mo
181
%%NLS%%share/locale/da/LC_MESSAGES/wesnoth-editor.mo
186
%%NLS%%share/locale/da/LC_MESSAGES/wesnoth-editor.mo
182
%%NLS%%share/locale/da/LC_MESSAGES/wesnoth-ei.mo
187
%%NLS%%share/locale/da/LC_MESSAGES/wesnoth-ei.mo
183
%%NLS%%share/locale/da/LC_MESSAGES/wesnoth-httt.mo
188
%%NLS%%share/locale/da/LC_MESSAGES/wesnoth-httt.mo
Lines 201-206 share/pixmaps/wesnoth-icon.png Link Here
201
%%NLS%%share/locale/de/LC_MESSAGES/wesnoth-aoi.mo
206
%%NLS%%share/locale/de/LC_MESSAGES/wesnoth-aoi.mo
202
%%NLS%%share/locale/de/LC_MESSAGES/wesnoth-did.mo
207
%%NLS%%share/locale/de/LC_MESSAGES/wesnoth-did.mo
203
%%NLS%%share/locale/de/LC_MESSAGES/wesnoth-dm.mo
208
%%NLS%%share/locale/de/LC_MESSAGES/wesnoth-dm.mo
209
%%NLS%%share/locale/de/LC_MESSAGES/wesnoth-dw.mo
204
%%NLS%%share/locale/de/LC_MESSAGES/wesnoth-editor.mo
210
%%NLS%%share/locale/de/LC_MESSAGES/wesnoth-editor.mo
205
%%NLS%%share/locale/de/LC_MESSAGES/wesnoth-ei.mo
211
%%NLS%%share/locale/de/LC_MESSAGES/wesnoth-ei.mo
206
%%NLS%%share/locale/de/LC_MESSAGES/wesnoth-httt.mo
212
%%NLS%%share/locale/de/LC_MESSAGES/wesnoth-httt.mo
Lines 224-229 share/pixmaps/wesnoth-icon.png Link Here
224
%%NLS%%share/locale/el/LC_MESSAGES/wesnoth-aoi.mo
230
%%NLS%%share/locale/el/LC_MESSAGES/wesnoth-aoi.mo
225
%%NLS%%share/locale/el/LC_MESSAGES/wesnoth-did.mo
231
%%NLS%%share/locale/el/LC_MESSAGES/wesnoth-did.mo
226
%%NLS%%share/locale/el/LC_MESSAGES/wesnoth-dm.mo
232
%%NLS%%share/locale/el/LC_MESSAGES/wesnoth-dm.mo
233
%%NLS%%share/locale/el/LC_MESSAGES/wesnoth-dw.mo
227
%%NLS%%share/locale/el/LC_MESSAGES/wesnoth-editor.mo
234
%%NLS%%share/locale/el/LC_MESSAGES/wesnoth-editor.mo
228
%%NLS%%share/locale/el/LC_MESSAGES/wesnoth-ei.mo
235
%%NLS%%share/locale/el/LC_MESSAGES/wesnoth-ei.mo
229
%%NLS%%share/locale/el/LC_MESSAGES/wesnoth-httt.mo
236
%%NLS%%share/locale/el/LC_MESSAGES/wesnoth-httt.mo
Lines 247-252 share/pixmaps/wesnoth-icon.png Link Here
247
%%NLS%%share/locale/en@shaw/LC_MESSAGES/wesnoth-aoi.mo
254
%%NLS%%share/locale/en@shaw/LC_MESSAGES/wesnoth-aoi.mo
248
%%NLS%%share/locale/en@shaw/LC_MESSAGES/wesnoth-did.mo
255
%%NLS%%share/locale/en@shaw/LC_MESSAGES/wesnoth-did.mo
249
%%NLS%%share/locale/en@shaw/LC_MESSAGES/wesnoth-dm.mo
256
%%NLS%%share/locale/en@shaw/LC_MESSAGES/wesnoth-dm.mo
257
%%NLS%%share/locale/en@shaw/LC_MESSAGES/wesnoth-dw.mo
250
%%NLS%%share/locale/en@shaw/LC_MESSAGES/wesnoth-editor.mo
258
%%NLS%%share/locale/en@shaw/LC_MESSAGES/wesnoth-editor.mo
251
%%NLS%%share/locale/en@shaw/LC_MESSAGES/wesnoth-ei.mo
259
%%NLS%%share/locale/en@shaw/LC_MESSAGES/wesnoth-ei.mo
252
%%NLS%%share/locale/en@shaw/LC_MESSAGES/wesnoth-httt.mo
260
%%NLS%%share/locale/en@shaw/LC_MESSAGES/wesnoth-httt.mo
Lines 270-275 share/pixmaps/wesnoth-icon.png Link Here
270
%%NLS%%share/locale/en_GB/LC_MESSAGES/wesnoth-aoi.mo
278
%%NLS%%share/locale/en_GB/LC_MESSAGES/wesnoth-aoi.mo
271
%%NLS%%share/locale/en_GB/LC_MESSAGES/wesnoth-did.mo
279
%%NLS%%share/locale/en_GB/LC_MESSAGES/wesnoth-did.mo
272
%%NLS%%share/locale/en_GB/LC_MESSAGES/wesnoth-dm.mo
280
%%NLS%%share/locale/en_GB/LC_MESSAGES/wesnoth-dm.mo
281
%%NLS%%share/locale/en_GB/LC_MESSAGES/wesnoth-dw.mo
273
%%NLS%%share/locale/en_GB/LC_MESSAGES/wesnoth-editor.mo
282
%%NLS%%share/locale/en_GB/LC_MESSAGES/wesnoth-editor.mo
274
%%NLS%%share/locale/en_GB/LC_MESSAGES/wesnoth-ei.mo
283
%%NLS%%share/locale/en_GB/LC_MESSAGES/wesnoth-ei.mo
275
%%NLS%%share/locale/en_GB/LC_MESSAGES/wesnoth-httt.mo
284
%%NLS%%share/locale/en_GB/LC_MESSAGES/wesnoth-httt.mo
Lines 293-298 share/pixmaps/wesnoth-icon.png Link Here
293
%%NLS%%share/locale/eo/LC_MESSAGES/wesnoth-aoi.mo
302
%%NLS%%share/locale/eo/LC_MESSAGES/wesnoth-aoi.mo
294
%%NLS%%share/locale/eo/LC_MESSAGES/wesnoth-did.mo
303
%%NLS%%share/locale/eo/LC_MESSAGES/wesnoth-did.mo
295
%%NLS%%share/locale/eo/LC_MESSAGES/wesnoth-dm.mo
304
%%NLS%%share/locale/eo/LC_MESSAGES/wesnoth-dm.mo
305
%%NLS%%share/locale/eo/LC_MESSAGES/wesnoth-dw.mo
296
%%NLS%%share/locale/eo/LC_MESSAGES/wesnoth-editor.mo
306
%%NLS%%share/locale/eo/LC_MESSAGES/wesnoth-editor.mo
297
%%NLS%%share/locale/eo/LC_MESSAGES/wesnoth-ei.mo
307
%%NLS%%share/locale/eo/LC_MESSAGES/wesnoth-ei.mo
298
%%NLS%%share/locale/eo/LC_MESSAGES/wesnoth-httt.mo
308
%%NLS%%share/locale/eo/LC_MESSAGES/wesnoth-httt.mo
Lines 316-321 share/pixmaps/wesnoth-icon.png Link Here
316
%%NLS%%share/locale/es/LC_MESSAGES/wesnoth-aoi.mo
326
%%NLS%%share/locale/es/LC_MESSAGES/wesnoth-aoi.mo
317
%%NLS%%share/locale/es/LC_MESSAGES/wesnoth-did.mo
327
%%NLS%%share/locale/es/LC_MESSAGES/wesnoth-did.mo
318
%%NLS%%share/locale/es/LC_MESSAGES/wesnoth-dm.mo
328
%%NLS%%share/locale/es/LC_MESSAGES/wesnoth-dm.mo
329
%%NLS%%share/locale/es/LC_MESSAGES/wesnoth-dw.mo
319
%%NLS%%share/locale/es/LC_MESSAGES/wesnoth-editor.mo
330
%%NLS%%share/locale/es/LC_MESSAGES/wesnoth-editor.mo
320
%%NLS%%share/locale/es/LC_MESSAGES/wesnoth-ei.mo
331
%%NLS%%share/locale/es/LC_MESSAGES/wesnoth-ei.mo
321
%%NLS%%share/locale/es/LC_MESSAGES/wesnoth-httt.mo
332
%%NLS%%share/locale/es/LC_MESSAGES/wesnoth-httt.mo
Lines 339-344 share/pixmaps/wesnoth-icon.png Link Here
339
%%NLS%%share/locale/et/LC_MESSAGES/wesnoth-aoi.mo
350
%%NLS%%share/locale/et/LC_MESSAGES/wesnoth-aoi.mo
340
%%NLS%%share/locale/et/LC_MESSAGES/wesnoth-did.mo
351
%%NLS%%share/locale/et/LC_MESSAGES/wesnoth-did.mo
341
%%NLS%%share/locale/et/LC_MESSAGES/wesnoth-dm.mo
352
%%NLS%%share/locale/et/LC_MESSAGES/wesnoth-dm.mo
353
%%NLS%%share/locale/et/LC_MESSAGES/wesnoth-dw.mo
342
%%NLS%%share/locale/et/LC_MESSAGES/wesnoth-editor.mo
354
%%NLS%%share/locale/et/LC_MESSAGES/wesnoth-editor.mo
343
%%NLS%%share/locale/et/LC_MESSAGES/wesnoth-ei.mo
355
%%NLS%%share/locale/et/LC_MESSAGES/wesnoth-ei.mo
344
%%NLS%%share/locale/et/LC_MESSAGES/wesnoth-httt.mo
356
%%NLS%%share/locale/et/LC_MESSAGES/wesnoth-httt.mo
Lines 362-367 share/pixmaps/wesnoth-icon.png Link Here
362
%%NLS%%share/locale/eu/LC_MESSAGES/wesnoth-aoi.mo
374
%%NLS%%share/locale/eu/LC_MESSAGES/wesnoth-aoi.mo
363
%%NLS%%share/locale/eu/LC_MESSAGES/wesnoth-did.mo
375
%%NLS%%share/locale/eu/LC_MESSAGES/wesnoth-did.mo
364
%%NLS%%share/locale/eu/LC_MESSAGES/wesnoth-dm.mo
376
%%NLS%%share/locale/eu/LC_MESSAGES/wesnoth-dm.mo
377
%%NLS%%share/locale/eu/LC_MESSAGES/wesnoth-dw.mo
365
%%NLS%%share/locale/eu/LC_MESSAGES/wesnoth-editor.mo
378
%%NLS%%share/locale/eu/LC_MESSAGES/wesnoth-editor.mo
366
%%NLS%%share/locale/eu/LC_MESSAGES/wesnoth-ei.mo
379
%%NLS%%share/locale/eu/LC_MESSAGES/wesnoth-ei.mo
367
%%NLS%%share/locale/eu/LC_MESSAGES/wesnoth-httt.mo
380
%%NLS%%share/locale/eu/LC_MESSAGES/wesnoth-httt.mo
Lines 385-390 share/pixmaps/wesnoth-icon.png Link Here
385
%%NLS%%share/locale/fi/LC_MESSAGES/wesnoth-aoi.mo
398
%%NLS%%share/locale/fi/LC_MESSAGES/wesnoth-aoi.mo
386
%%NLS%%share/locale/fi/LC_MESSAGES/wesnoth-did.mo
399
%%NLS%%share/locale/fi/LC_MESSAGES/wesnoth-did.mo
387
%%NLS%%share/locale/fi/LC_MESSAGES/wesnoth-dm.mo
400
%%NLS%%share/locale/fi/LC_MESSAGES/wesnoth-dm.mo
401
%%NLS%%share/locale/fi/LC_MESSAGES/wesnoth-dw.mo
388
%%NLS%%share/locale/fi/LC_MESSAGES/wesnoth-editor.mo
402
%%NLS%%share/locale/fi/LC_MESSAGES/wesnoth-editor.mo
389
%%NLS%%share/locale/fi/LC_MESSAGES/wesnoth-ei.mo
403
%%NLS%%share/locale/fi/LC_MESSAGES/wesnoth-ei.mo
390
%%NLS%%share/locale/fi/LC_MESSAGES/wesnoth-httt.mo
404
%%NLS%%share/locale/fi/LC_MESSAGES/wesnoth-httt.mo
Lines 408-413 share/pixmaps/wesnoth-icon.png Link Here
408
%%NLS%%share/locale/fr/LC_MESSAGES/wesnoth-aoi.mo
422
%%NLS%%share/locale/fr/LC_MESSAGES/wesnoth-aoi.mo
409
%%NLS%%share/locale/fr/LC_MESSAGES/wesnoth-did.mo
423
%%NLS%%share/locale/fr/LC_MESSAGES/wesnoth-did.mo
410
%%NLS%%share/locale/fr/LC_MESSAGES/wesnoth-dm.mo
424
%%NLS%%share/locale/fr/LC_MESSAGES/wesnoth-dm.mo
425
%%NLS%%share/locale/fr/LC_MESSAGES/wesnoth-dw.mo
411
%%NLS%%share/locale/fr/LC_MESSAGES/wesnoth-editor.mo
426
%%NLS%%share/locale/fr/LC_MESSAGES/wesnoth-editor.mo
412
%%NLS%%share/locale/fr/LC_MESSAGES/wesnoth-ei.mo
427
%%NLS%%share/locale/fr/LC_MESSAGES/wesnoth-ei.mo
413
%%NLS%%share/locale/fr/LC_MESSAGES/wesnoth-httt.mo
428
%%NLS%%share/locale/fr/LC_MESSAGES/wesnoth-httt.mo
Lines 431-436 share/pixmaps/wesnoth-icon.png Link Here
431
%%NLS%%share/locale/fur_IT/LC_MESSAGES/wesnoth-aoi.mo
446
%%NLS%%share/locale/fur_IT/LC_MESSAGES/wesnoth-aoi.mo
432
%%NLS%%share/locale/fur_IT/LC_MESSAGES/wesnoth-did.mo
447
%%NLS%%share/locale/fur_IT/LC_MESSAGES/wesnoth-did.mo
433
%%NLS%%share/locale/fur_IT/LC_MESSAGES/wesnoth-dm.mo
448
%%NLS%%share/locale/fur_IT/LC_MESSAGES/wesnoth-dm.mo
449
%%NLS%%share/locale/fur_IT/LC_MESSAGES/wesnoth-dw.mo
434
%%NLS%%share/locale/fur_IT/LC_MESSAGES/wesnoth-editor.mo
450
%%NLS%%share/locale/fur_IT/LC_MESSAGES/wesnoth-editor.mo
435
%%NLS%%share/locale/fur_IT/LC_MESSAGES/wesnoth-ei.mo
451
%%NLS%%share/locale/fur_IT/LC_MESSAGES/wesnoth-ei.mo
436
%%NLS%%share/locale/fur_IT/LC_MESSAGES/wesnoth-httt.mo
452
%%NLS%%share/locale/fur_IT/LC_MESSAGES/wesnoth-httt.mo
Lines 454-459 share/pixmaps/wesnoth-icon.png Link Here
454
%%NLS%%share/locale/gl/LC_MESSAGES/wesnoth-aoi.mo
470
%%NLS%%share/locale/gl/LC_MESSAGES/wesnoth-aoi.mo
455
%%NLS%%share/locale/gl/LC_MESSAGES/wesnoth-did.mo
471
%%NLS%%share/locale/gl/LC_MESSAGES/wesnoth-did.mo
456
%%NLS%%share/locale/gl/LC_MESSAGES/wesnoth-dm.mo
472
%%NLS%%share/locale/gl/LC_MESSAGES/wesnoth-dm.mo
473
%%NLS%%share/locale/gl/LC_MESSAGES/wesnoth-dw.mo
457
%%NLS%%share/locale/gl/LC_MESSAGES/wesnoth-editor.mo
474
%%NLS%%share/locale/gl/LC_MESSAGES/wesnoth-editor.mo
458
%%NLS%%share/locale/gl/LC_MESSAGES/wesnoth-ei.mo
475
%%NLS%%share/locale/gl/LC_MESSAGES/wesnoth-ei.mo
459
%%NLS%%share/locale/gl/LC_MESSAGES/wesnoth-httt.mo
476
%%NLS%%share/locale/gl/LC_MESSAGES/wesnoth-httt.mo
Lines 477-482 share/pixmaps/wesnoth-icon.png Link Here
477
%%NLS%%share/locale/he/LC_MESSAGES/wesnoth-aoi.mo
494
%%NLS%%share/locale/he/LC_MESSAGES/wesnoth-aoi.mo
478
%%NLS%%share/locale/he/LC_MESSAGES/wesnoth-did.mo
495
%%NLS%%share/locale/he/LC_MESSAGES/wesnoth-did.mo
479
%%NLS%%share/locale/he/LC_MESSAGES/wesnoth-dm.mo
496
%%NLS%%share/locale/he/LC_MESSAGES/wesnoth-dm.mo
497
%%NLS%%share/locale/he/LC_MESSAGES/wesnoth-dw.mo
480
%%NLS%%share/locale/he/LC_MESSAGES/wesnoth-editor.mo
498
%%NLS%%share/locale/he/LC_MESSAGES/wesnoth-editor.mo
481
%%NLS%%share/locale/he/LC_MESSAGES/wesnoth-ei.mo
499
%%NLS%%share/locale/he/LC_MESSAGES/wesnoth-ei.mo
482
%%NLS%%share/locale/he/LC_MESSAGES/wesnoth-httt.mo
500
%%NLS%%share/locale/he/LC_MESSAGES/wesnoth-httt.mo
Lines 500-505 share/pixmaps/wesnoth-icon.png Link Here
500
%%NLS%%share/locale/hr/LC_MESSAGES/wesnoth-aoi.mo
518
%%NLS%%share/locale/hr/LC_MESSAGES/wesnoth-aoi.mo
501
%%NLS%%share/locale/hr/LC_MESSAGES/wesnoth-did.mo
519
%%NLS%%share/locale/hr/LC_MESSAGES/wesnoth-did.mo
502
%%NLS%%share/locale/hr/LC_MESSAGES/wesnoth-dm.mo
520
%%NLS%%share/locale/hr/LC_MESSAGES/wesnoth-dm.mo
521
%%NLS%%share/locale/hr/LC_MESSAGES/wesnoth-dw.mo
503
%%NLS%%share/locale/hr/LC_MESSAGES/wesnoth-editor.mo
522
%%NLS%%share/locale/hr/LC_MESSAGES/wesnoth-editor.mo
504
%%NLS%%share/locale/hr/LC_MESSAGES/wesnoth-ei.mo
523
%%NLS%%share/locale/hr/LC_MESSAGES/wesnoth-ei.mo
505
%%NLS%%share/locale/hr/LC_MESSAGES/wesnoth-httt.mo
524
%%NLS%%share/locale/hr/LC_MESSAGES/wesnoth-httt.mo
Lines 523-528 share/pixmaps/wesnoth-icon.png Link Here
523
%%NLS%%share/locale/hu/LC_MESSAGES/wesnoth-aoi.mo
542
%%NLS%%share/locale/hu/LC_MESSAGES/wesnoth-aoi.mo
524
%%NLS%%share/locale/hu/LC_MESSAGES/wesnoth-did.mo
543
%%NLS%%share/locale/hu/LC_MESSAGES/wesnoth-did.mo
525
%%NLS%%share/locale/hu/LC_MESSAGES/wesnoth-dm.mo
544
%%NLS%%share/locale/hu/LC_MESSAGES/wesnoth-dm.mo
545
%%NLS%%share/locale/hu/LC_MESSAGES/wesnoth-dw.mo
526
%%NLS%%share/locale/hu/LC_MESSAGES/wesnoth-editor.mo
546
%%NLS%%share/locale/hu/LC_MESSAGES/wesnoth-editor.mo
527
%%NLS%%share/locale/hu/LC_MESSAGES/wesnoth-ei.mo
547
%%NLS%%share/locale/hu/LC_MESSAGES/wesnoth-ei.mo
528
%%NLS%%share/locale/hu/LC_MESSAGES/wesnoth-httt.mo
548
%%NLS%%share/locale/hu/LC_MESSAGES/wesnoth-httt.mo
Lines 546-551 share/pixmaps/wesnoth-icon.png Link Here
546
%%NLS%%share/locale/id/LC_MESSAGES/wesnoth-aoi.mo
566
%%NLS%%share/locale/id/LC_MESSAGES/wesnoth-aoi.mo
547
%%NLS%%share/locale/id/LC_MESSAGES/wesnoth-did.mo
567
%%NLS%%share/locale/id/LC_MESSAGES/wesnoth-did.mo
548
%%NLS%%share/locale/id/LC_MESSAGES/wesnoth-dm.mo
568
%%NLS%%share/locale/id/LC_MESSAGES/wesnoth-dm.mo
569
%%NLS%%share/locale/id/LC_MESSAGES/wesnoth-dw.mo
549
%%NLS%%share/locale/id/LC_MESSAGES/wesnoth-editor.mo
570
%%NLS%%share/locale/id/LC_MESSAGES/wesnoth-editor.mo
550
%%NLS%%share/locale/id/LC_MESSAGES/wesnoth-ei.mo
571
%%NLS%%share/locale/id/LC_MESSAGES/wesnoth-ei.mo
551
%%NLS%%share/locale/id/LC_MESSAGES/wesnoth-httt.mo
572
%%NLS%%share/locale/id/LC_MESSAGES/wesnoth-httt.mo
Lines 569-574 share/pixmaps/wesnoth-icon.png Link Here
569
%%NLS%%share/locale/is/LC_MESSAGES/wesnoth-aoi.mo
590
%%NLS%%share/locale/is/LC_MESSAGES/wesnoth-aoi.mo
570
%%NLS%%share/locale/is/LC_MESSAGES/wesnoth-did.mo
591
%%NLS%%share/locale/is/LC_MESSAGES/wesnoth-did.mo
571
%%NLS%%share/locale/is/LC_MESSAGES/wesnoth-dm.mo
592
%%NLS%%share/locale/is/LC_MESSAGES/wesnoth-dm.mo
593
%%NLS%%share/locale/is/LC_MESSAGES/wesnoth-dw.mo
572
%%NLS%%share/locale/is/LC_MESSAGES/wesnoth-editor.mo
594
%%NLS%%share/locale/is/LC_MESSAGES/wesnoth-editor.mo
573
%%NLS%%share/locale/is/LC_MESSAGES/wesnoth-ei.mo
595
%%NLS%%share/locale/is/LC_MESSAGES/wesnoth-ei.mo
574
%%NLS%%share/locale/is/LC_MESSAGES/wesnoth-httt.mo
596
%%NLS%%share/locale/is/LC_MESSAGES/wesnoth-httt.mo
Lines 592-597 share/pixmaps/wesnoth-icon.png Link Here
592
%%NLS%%share/locale/it/LC_MESSAGES/wesnoth-aoi.mo
614
%%NLS%%share/locale/it/LC_MESSAGES/wesnoth-aoi.mo
593
%%NLS%%share/locale/it/LC_MESSAGES/wesnoth-did.mo
615
%%NLS%%share/locale/it/LC_MESSAGES/wesnoth-did.mo
594
%%NLS%%share/locale/it/LC_MESSAGES/wesnoth-dm.mo
616
%%NLS%%share/locale/it/LC_MESSAGES/wesnoth-dm.mo
617
%%NLS%%share/locale/it/LC_MESSAGES/wesnoth-dw.mo
595
%%NLS%%share/locale/it/LC_MESSAGES/wesnoth-editor.mo
618
%%NLS%%share/locale/it/LC_MESSAGES/wesnoth-editor.mo
596
%%NLS%%share/locale/it/LC_MESSAGES/wesnoth-ei.mo
619
%%NLS%%share/locale/it/LC_MESSAGES/wesnoth-ei.mo
597
%%NLS%%share/locale/it/LC_MESSAGES/wesnoth-httt.mo
620
%%NLS%%share/locale/it/LC_MESSAGES/wesnoth-httt.mo
Lines 615-620 share/pixmaps/wesnoth-icon.png Link Here
615
%%NLS%%share/locale/ja/LC_MESSAGES/wesnoth-aoi.mo
638
%%NLS%%share/locale/ja/LC_MESSAGES/wesnoth-aoi.mo
616
%%NLS%%share/locale/ja/LC_MESSAGES/wesnoth-did.mo
639
%%NLS%%share/locale/ja/LC_MESSAGES/wesnoth-did.mo
617
%%NLS%%share/locale/ja/LC_MESSAGES/wesnoth-dm.mo
640
%%NLS%%share/locale/ja/LC_MESSAGES/wesnoth-dm.mo
641
%%NLS%%share/locale/ja/LC_MESSAGES/wesnoth-dw.mo
618
%%NLS%%share/locale/ja/LC_MESSAGES/wesnoth-editor.mo
642
%%NLS%%share/locale/ja/LC_MESSAGES/wesnoth-editor.mo
619
%%NLS%%share/locale/ja/LC_MESSAGES/wesnoth-ei.mo
643
%%NLS%%share/locale/ja/LC_MESSAGES/wesnoth-ei.mo
620
%%NLS%%share/locale/ja/LC_MESSAGES/wesnoth-httt.mo
644
%%NLS%%share/locale/ja/LC_MESSAGES/wesnoth-httt.mo
Lines 638-643 share/pixmaps/wesnoth-icon.png Link Here
638
%%NLS%%share/locale/ko/LC_MESSAGES/wesnoth-aoi.mo
662
%%NLS%%share/locale/ko/LC_MESSAGES/wesnoth-aoi.mo
639
%%NLS%%share/locale/ko/LC_MESSAGES/wesnoth-did.mo
663
%%NLS%%share/locale/ko/LC_MESSAGES/wesnoth-did.mo
640
%%NLS%%share/locale/ko/LC_MESSAGES/wesnoth-dm.mo
664
%%NLS%%share/locale/ko/LC_MESSAGES/wesnoth-dm.mo
665
%%NLS%%share/locale/ko/LC_MESSAGES/wesnoth-dw.mo
641
%%NLS%%share/locale/ko/LC_MESSAGES/wesnoth-editor.mo
666
%%NLS%%share/locale/ko/LC_MESSAGES/wesnoth-editor.mo
642
%%NLS%%share/locale/ko/LC_MESSAGES/wesnoth-ei.mo
667
%%NLS%%share/locale/ko/LC_MESSAGES/wesnoth-ei.mo
643
%%NLS%%share/locale/ko/LC_MESSAGES/wesnoth-httt.mo
668
%%NLS%%share/locale/ko/LC_MESSAGES/wesnoth-httt.mo
Lines 661-666 share/pixmaps/wesnoth-icon.png Link Here
661
%%NLS%%share/locale/la/LC_MESSAGES/wesnoth-aoi.mo
686
%%NLS%%share/locale/la/LC_MESSAGES/wesnoth-aoi.mo
662
%%NLS%%share/locale/la/LC_MESSAGES/wesnoth-did.mo
687
%%NLS%%share/locale/la/LC_MESSAGES/wesnoth-did.mo
663
%%NLS%%share/locale/la/LC_MESSAGES/wesnoth-dm.mo
688
%%NLS%%share/locale/la/LC_MESSAGES/wesnoth-dm.mo
689
%%NLS%%share/locale/la/LC_MESSAGES/wesnoth-dw.mo
664
%%NLS%%share/locale/la/LC_MESSAGES/wesnoth-editor.mo
690
%%NLS%%share/locale/la/LC_MESSAGES/wesnoth-editor.mo
665
%%NLS%%share/locale/la/LC_MESSAGES/wesnoth-ei.mo
691
%%NLS%%share/locale/la/LC_MESSAGES/wesnoth-ei.mo
666
%%NLS%%share/locale/la/LC_MESSAGES/wesnoth-httt.mo
692
%%NLS%%share/locale/la/LC_MESSAGES/wesnoth-httt.mo
Lines 684-689 share/pixmaps/wesnoth-icon.png Link Here
684
%%NLS%%share/locale/lt/LC_MESSAGES/wesnoth-aoi.mo
710
%%NLS%%share/locale/lt/LC_MESSAGES/wesnoth-aoi.mo
685
%%NLS%%share/locale/lt/LC_MESSAGES/wesnoth-did.mo
711
%%NLS%%share/locale/lt/LC_MESSAGES/wesnoth-did.mo
686
%%NLS%%share/locale/lt/LC_MESSAGES/wesnoth-dm.mo
712
%%NLS%%share/locale/lt/LC_MESSAGES/wesnoth-dm.mo
713
%%NLS%%share/locale/lt/LC_MESSAGES/wesnoth-dw.mo
687
%%NLS%%share/locale/lt/LC_MESSAGES/wesnoth-editor.mo
714
%%NLS%%share/locale/lt/LC_MESSAGES/wesnoth-editor.mo
688
%%NLS%%share/locale/lt/LC_MESSAGES/wesnoth-ei.mo
715
%%NLS%%share/locale/lt/LC_MESSAGES/wesnoth-ei.mo
689
%%NLS%%share/locale/lt/LC_MESSAGES/wesnoth-httt.mo
716
%%NLS%%share/locale/lt/LC_MESSAGES/wesnoth-httt.mo
Lines 707-712 share/pixmaps/wesnoth-icon.png Link Here
707
%%NLS%%share/locale/lv/LC_MESSAGES/wesnoth-aoi.mo
734
%%NLS%%share/locale/lv/LC_MESSAGES/wesnoth-aoi.mo
708
%%NLS%%share/locale/lv/LC_MESSAGES/wesnoth-did.mo
735
%%NLS%%share/locale/lv/LC_MESSAGES/wesnoth-did.mo
709
%%NLS%%share/locale/lv/LC_MESSAGES/wesnoth-dm.mo
736
%%NLS%%share/locale/lv/LC_MESSAGES/wesnoth-dm.mo
737
%%NLS%%share/locale/lv/LC_MESSAGES/wesnoth-dw.mo
710
%%NLS%%share/locale/lv/LC_MESSAGES/wesnoth-editor.mo
738
%%NLS%%share/locale/lv/LC_MESSAGES/wesnoth-editor.mo
711
%%NLS%%share/locale/lv/LC_MESSAGES/wesnoth-ei.mo
739
%%NLS%%share/locale/lv/LC_MESSAGES/wesnoth-ei.mo
712
%%NLS%%share/locale/lv/LC_MESSAGES/wesnoth-httt.mo
740
%%NLS%%share/locale/lv/LC_MESSAGES/wesnoth-httt.mo
Lines 730-735 share/pixmaps/wesnoth-icon.png Link Here
730
%%NLS%%share/locale/mk/LC_MESSAGES/wesnoth-aoi.mo
758
%%NLS%%share/locale/mk/LC_MESSAGES/wesnoth-aoi.mo
731
%%NLS%%share/locale/mk/LC_MESSAGES/wesnoth-did.mo
759
%%NLS%%share/locale/mk/LC_MESSAGES/wesnoth-did.mo
732
%%NLS%%share/locale/mk/LC_MESSAGES/wesnoth-dm.mo
760
%%NLS%%share/locale/mk/LC_MESSAGES/wesnoth-dm.mo
761
%%NLS%%share/locale/mk/LC_MESSAGES/wesnoth-dw.mo
733
%%NLS%%share/locale/mk/LC_MESSAGES/wesnoth-editor.mo
762
%%NLS%%share/locale/mk/LC_MESSAGES/wesnoth-editor.mo
734
%%NLS%%share/locale/mk/LC_MESSAGES/wesnoth-ei.mo
763
%%NLS%%share/locale/mk/LC_MESSAGES/wesnoth-ei.mo
735
%%NLS%%share/locale/mk/LC_MESSAGES/wesnoth-httt.mo
764
%%NLS%%share/locale/mk/LC_MESSAGES/wesnoth-httt.mo
Lines 753-758 share/pixmaps/wesnoth-icon.png Link Here
753
%%NLS%%share/locale/mr/LC_MESSAGES/wesnoth-aoi.mo
782
%%NLS%%share/locale/mr/LC_MESSAGES/wesnoth-aoi.mo
754
%%NLS%%share/locale/mr/LC_MESSAGES/wesnoth-did.mo
783
%%NLS%%share/locale/mr/LC_MESSAGES/wesnoth-did.mo
755
%%NLS%%share/locale/mr/LC_MESSAGES/wesnoth-dm.mo
784
%%NLS%%share/locale/mr/LC_MESSAGES/wesnoth-dm.mo
785
%%NLS%%share/locale/mr/LC_MESSAGES/wesnoth-dw.mo
756
%%NLS%%share/locale/mr/LC_MESSAGES/wesnoth-editor.mo
786
%%NLS%%share/locale/mr/LC_MESSAGES/wesnoth-editor.mo
757
%%NLS%%share/locale/mr/LC_MESSAGES/wesnoth-ei.mo
787
%%NLS%%share/locale/mr/LC_MESSAGES/wesnoth-ei.mo
758
%%NLS%%share/locale/mr/LC_MESSAGES/wesnoth-httt.mo
788
%%NLS%%share/locale/mr/LC_MESSAGES/wesnoth-httt.mo
Lines 776-781 share/pixmaps/wesnoth-icon.png Link Here
776
%%NLS%%share/locale/nb_NO/LC_MESSAGES/wesnoth-aoi.mo
806
%%NLS%%share/locale/nb_NO/LC_MESSAGES/wesnoth-aoi.mo
777
%%NLS%%share/locale/nb_NO/LC_MESSAGES/wesnoth-did.mo
807
%%NLS%%share/locale/nb_NO/LC_MESSAGES/wesnoth-did.mo
778
%%NLS%%share/locale/nb_NO/LC_MESSAGES/wesnoth-dm.mo
808
%%NLS%%share/locale/nb_NO/LC_MESSAGES/wesnoth-dm.mo
809
%%NLS%%share/locale/nb_NO/LC_MESSAGES/wesnoth-dw.mo
779
%%NLS%%share/locale/nb_NO/LC_MESSAGES/wesnoth-editor.mo
810
%%NLS%%share/locale/nb_NO/LC_MESSAGES/wesnoth-editor.mo
780
%%NLS%%share/locale/nb_NO/LC_MESSAGES/wesnoth-ei.mo
811
%%NLS%%share/locale/nb_NO/LC_MESSAGES/wesnoth-ei.mo
781
%%NLS%%share/locale/nb_NO/LC_MESSAGES/wesnoth-httt.mo
812
%%NLS%%share/locale/nb_NO/LC_MESSAGES/wesnoth-httt.mo
Lines 799-804 share/pixmaps/wesnoth-icon.png Link Here
799
%%NLS%%share/locale/nl/LC_MESSAGES/wesnoth-aoi.mo
830
%%NLS%%share/locale/nl/LC_MESSAGES/wesnoth-aoi.mo
800
%%NLS%%share/locale/nl/LC_MESSAGES/wesnoth-did.mo
831
%%NLS%%share/locale/nl/LC_MESSAGES/wesnoth-did.mo
801
%%NLS%%share/locale/nl/LC_MESSAGES/wesnoth-dm.mo
832
%%NLS%%share/locale/nl/LC_MESSAGES/wesnoth-dm.mo
833
%%NLS%%share/locale/nl/LC_MESSAGES/wesnoth-dw.mo
802
%%NLS%%share/locale/nl/LC_MESSAGES/wesnoth-editor.mo
834
%%NLS%%share/locale/nl/LC_MESSAGES/wesnoth-editor.mo
803
%%NLS%%share/locale/nl/LC_MESSAGES/wesnoth-ei.mo
835
%%NLS%%share/locale/nl/LC_MESSAGES/wesnoth-ei.mo
804
%%NLS%%share/locale/nl/LC_MESSAGES/wesnoth-httt.mo
836
%%NLS%%share/locale/nl/LC_MESSAGES/wesnoth-httt.mo
Lines 822-827 share/pixmaps/wesnoth-icon.png Link Here
822
%%NLS%%share/locale/pl/LC_MESSAGES/wesnoth-aoi.mo
854
%%NLS%%share/locale/pl/LC_MESSAGES/wesnoth-aoi.mo
823
%%NLS%%share/locale/pl/LC_MESSAGES/wesnoth-did.mo
855
%%NLS%%share/locale/pl/LC_MESSAGES/wesnoth-did.mo
824
%%NLS%%share/locale/pl/LC_MESSAGES/wesnoth-dm.mo
856
%%NLS%%share/locale/pl/LC_MESSAGES/wesnoth-dm.mo
857
%%NLS%%share/locale/pl/LC_MESSAGES/wesnoth-dw.mo
825
%%NLS%%share/locale/pl/LC_MESSAGES/wesnoth-editor.mo
858
%%NLS%%share/locale/pl/LC_MESSAGES/wesnoth-editor.mo
826
%%NLS%%share/locale/pl/LC_MESSAGES/wesnoth-ei.mo
859
%%NLS%%share/locale/pl/LC_MESSAGES/wesnoth-ei.mo
827
%%NLS%%share/locale/pl/LC_MESSAGES/wesnoth-httt.mo
860
%%NLS%%share/locale/pl/LC_MESSAGES/wesnoth-httt.mo
Lines 845-850 share/pixmaps/wesnoth-icon.png Link Here
845
%%NLS%%share/locale/pt/LC_MESSAGES/wesnoth-aoi.mo
878
%%NLS%%share/locale/pt/LC_MESSAGES/wesnoth-aoi.mo
846
%%NLS%%share/locale/pt/LC_MESSAGES/wesnoth-did.mo
879
%%NLS%%share/locale/pt/LC_MESSAGES/wesnoth-did.mo
847
%%NLS%%share/locale/pt/LC_MESSAGES/wesnoth-dm.mo
880
%%NLS%%share/locale/pt/LC_MESSAGES/wesnoth-dm.mo
881
%%NLS%%share/locale/pt/LC_MESSAGES/wesnoth-dw.mo
848
%%NLS%%share/locale/pt/LC_MESSAGES/wesnoth-editor.mo
882
%%NLS%%share/locale/pt/LC_MESSAGES/wesnoth-editor.mo
849
%%NLS%%share/locale/pt/LC_MESSAGES/wesnoth-ei.mo
883
%%NLS%%share/locale/pt/LC_MESSAGES/wesnoth-ei.mo
850
%%NLS%%share/locale/pt/LC_MESSAGES/wesnoth-httt.mo
884
%%NLS%%share/locale/pt/LC_MESSAGES/wesnoth-httt.mo
Lines 868-873 share/pixmaps/wesnoth-icon.png Link Here
868
%%NLS%%share/locale/pt_BR/LC_MESSAGES/wesnoth-aoi.mo
902
%%NLS%%share/locale/pt_BR/LC_MESSAGES/wesnoth-aoi.mo
869
%%NLS%%share/locale/pt_BR/LC_MESSAGES/wesnoth-did.mo
903
%%NLS%%share/locale/pt_BR/LC_MESSAGES/wesnoth-did.mo
870
%%NLS%%share/locale/pt_BR/LC_MESSAGES/wesnoth-dm.mo
904
%%NLS%%share/locale/pt_BR/LC_MESSAGES/wesnoth-dm.mo
905
%%NLS%%share/locale/pt_BR/LC_MESSAGES/wesnoth-dw.mo
871
%%NLS%%share/locale/pt_BR/LC_MESSAGES/wesnoth-editor.mo
906
%%NLS%%share/locale/pt_BR/LC_MESSAGES/wesnoth-editor.mo
872
%%NLS%%share/locale/pt_BR/LC_MESSAGES/wesnoth-ei.mo
907
%%NLS%%share/locale/pt_BR/LC_MESSAGES/wesnoth-ei.mo
873
%%NLS%%share/locale/pt_BR/LC_MESSAGES/wesnoth-httt.mo
908
%%NLS%%share/locale/pt_BR/LC_MESSAGES/wesnoth-httt.mo
Lines 891-896 share/pixmaps/wesnoth-icon.png Link Here
891
%%NLS%%share/locale/racv/LC_MESSAGES/wesnoth-aoi.mo
926
%%NLS%%share/locale/racv/LC_MESSAGES/wesnoth-aoi.mo
892
%%NLS%%share/locale/racv/LC_MESSAGES/wesnoth-did.mo
927
%%NLS%%share/locale/racv/LC_MESSAGES/wesnoth-did.mo
893
%%NLS%%share/locale/racv/LC_MESSAGES/wesnoth-dm.mo
928
%%NLS%%share/locale/racv/LC_MESSAGES/wesnoth-dm.mo
929
%%NLS%%share/locale/racv/LC_MESSAGES/wesnoth-dw.mo
894
%%NLS%%share/locale/racv/LC_MESSAGES/wesnoth-editor.mo
930
%%NLS%%share/locale/racv/LC_MESSAGES/wesnoth-editor.mo
895
%%NLS%%share/locale/racv/LC_MESSAGES/wesnoth-ei.mo
931
%%NLS%%share/locale/racv/LC_MESSAGES/wesnoth-ei.mo
896
%%NLS%%share/locale/racv/LC_MESSAGES/wesnoth-httt.mo
932
%%NLS%%share/locale/racv/LC_MESSAGES/wesnoth-httt.mo
Lines 914-919 share/pixmaps/wesnoth-icon.png Link Here
914
%%NLS%%share/locale/ro/LC_MESSAGES/wesnoth-aoi.mo
950
%%NLS%%share/locale/ro/LC_MESSAGES/wesnoth-aoi.mo
915
%%NLS%%share/locale/ro/LC_MESSAGES/wesnoth-did.mo
951
%%NLS%%share/locale/ro/LC_MESSAGES/wesnoth-did.mo
916
%%NLS%%share/locale/ro/LC_MESSAGES/wesnoth-dm.mo
952
%%NLS%%share/locale/ro/LC_MESSAGES/wesnoth-dm.mo
953
%%NLS%%share/locale/ro/LC_MESSAGES/wesnoth-dw.mo
917
%%NLS%%share/locale/ro/LC_MESSAGES/wesnoth-editor.mo
954
%%NLS%%share/locale/ro/LC_MESSAGES/wesnoth-editor.mo
918
%%NLS%%share/locale/ro/LC_MESSAGES/wesnoth-ei.mo
955
%%NLS%%share/locale/ro/LC_MESSAGES/wesnoth-ei.mo
919
%%NLS%%share/locale/ro/LC_MESSAGES/wesnoth-httt.mo
956
%%NLS%%share/locale/ro/LC_MESSAGES/wesnoth-httt.mo
Lines 937-942 share/pixmaps/wesnoth-icon.png Link Here
937
%%NLS%%share/locale/ru/LC_MESSAGES/wesnoth-aoi.mo
974
%%NLS%%share/locale/ru/LC_MESSAGES/wesnoth-aoi.mo
938
%%NLS%%share/locale/ru/LC_MESSAGES/wesnoth-did.mo
975
%%NLS%%share/locale/ru/LC_MESSAGES/wesnoth-did.mo
939
%%NLS%%share/locale/ru/LC_MESSAGES/wesnoth-dm.mo
976
%%NLS%%share/locale/ru/LC_MESSAGES/wesnoth-dm.mo
977
%%NLS%%share/locale/ru/LC_MESSAGES/wesnoth-dw.mo
940
%%NLS%%share/locale/ru/LC_MESSAGES/wesnoth-editor.mo
978
%%NLS%%share/locale/ru/LC_MESSAGES/wesnoth-editor.mo
941
%%NLS%%share/locale/ru/LC_MESSAGES/wesnoth-ei.mo
979
%%NLS%%share/locale/ru/LC_MESSAGES/wesnoth-ei.mo
942
%%NLS%%share/locale/ru/LC_MESSAGES/wesnoth-httt.mo
980
%%NLS%%share/locale/ru/LC_MESSAGES/wesnoth-httt.mo
Lines 960-965 share/pixmaps/wesnoth-icon.png Link Here
960
%%NLS%%share/locale/sk/LC_MESSAGES/wesnoth-aoi.mo
998
%%NLS%%share/locale/sk/LC_MESSAGES/wesnoth-aoi.mo
961
%%NLS%%share/locale/sk/LC_MESSAGES/wesnoth-did.mo
999
%%NLS%%share/locale/sk/LC_MESSAGES/wesnoth-did.mo
962
%%NLS%%share/locale/sk/LC_MESSAGES/wesnoth-dm.mo
1000
%%NLS%%share/locale/sk/LC_MESSAGES/wesnoth-dm.mo
1001
%%NLS%%share/locale/sk/LC_MESSAGES/wesnoth-dw.mo
963
%%NLS%%share/locale/sk/LC_MESSAGES/wesnoth-editor.mo
1002
%%NLS%%share/locale/sk/LC_MESSAGES/wesnoth-editor.mo
964
%%NLS%%share/locale/sk/LC_MESSAGES/wesnoth-ei.mo
1003
%%NLS%%share/locale/sk/LC_MESSAGES/wesnoth-ei.mo
965
%%NLS%%share/locale/sk/LC_MESSAGES/wesnoth-httt.mo
1004
%%NLS%%share/locale/sk/LC_MESSAGES/wesnoth-httt.mo
Lines 983-988 share/pixmaps/wesnoth-icon.png Link Here
983
%%NLS%%share/locale/sl/LC_MESSAGES/wesnoth-aoi.mo
1022
%%NLS%%share/locale/sl/LC_MESSAGES/wesnoth-aoi.mo
984
%%NLS%%share/locale/sl/LC_MESSAGES/wesnoth-did.mo
1023
%%NLS%%share/locale/sl/LC_MESSAGES/wesnoth-did.mo
985
%%NLS%%share/locale/sl/LC_MESSAGES/wesnoth-dm.mo
1024
%%NLS%%share/locale/sl/LC_MESSAGES/wesnoth-dm.mo
1025
%%NLS%%share/locale/sl/LC_MESSAGES/wesnoth-dw.mo
986
%%NLS%%share/locale/sl/LC_MESSAGES/wesnoth-editor.mo
1026
%%NLS%%share/locale/sl/LC_MESSAGES/wesnoth-editor.mo
987
%%NLS%%share/locale/sl/LC_MESSAGES/wesnoth-ei.mo
1027
%%NLS%%share/locale/sl/LC_MESSAGES/wesnoth-ei.mo
988
%%NLS%%share/locale/sl/LC_MESSAGES/wesnoth-httt.mo
1028
%%NLS%%share/locale/sl/LC_MESSAGES/wesnoth-httt.mo
Lines 1006-1011 share/pixmaps/wesnoth-icon.png Link Here
1006
%%NLS%%share/locale/sr/LC_MESSAGES/wesnoth-aoi.mo
1046
%%NLS%%share/locale/sr/LC_MESSAGES/wesnoth-aoi.mo
1007
%%NLS%%share/locale/sr/LC_MESSAGES/wesnoth-did.mo
1047
%%NLS%%share/locale/sr/LC_MESSAGES/wesnoth-did.mo
1008
%%NLS%%share/locale/sr/LC_MESSAGES/wesnoth-dm.mo
1048
%%NLS%%share/locale/sr/LC_MESSAGES/wesnoth-dm.mo
1049
%%NLS%%share/locale/sr/LC_MESSAGES/wesnoth-dw.mo
1009
%%NLS%%share/locale/sr/LC_MESSAGES/wesnoth-editor.mo
1050
%%NLS%%share/locale/sr/LC_MESSAGES/wesnoth-editor.mo
1010
%%NLS%%share/locale/sr/LC_MESSAGES/wesnoth-ei.mo
1051
%%NLS%%share/locale/sr/LC_MESSAGES/wesnoth-ei.mo
1011
%%NLS%%share/locale/sr/LC_MESSAGES/wesnoth-httt.mo
1052
%%NLS%%share/locale/sr/LC_MESSAGES/wesnoth-httt.mo
Lines 1029-1034 share/pixmaps/wesnoth-icon.png Link Here
1029
%%NLS%%share/locale/sr@ijekavian/LC_MESSAGES/wesnoth-aoi.mo
1070
%%NLS%%share/locale/sr@ijekavian/LC_MESSAGES/wesnoth-aoi.mo
1030
%%NLS%%share/locale/sr@ijekavian/LC_MESSAGES/wesnoth-did.mo
1071
%%NLS%%share/locale/sr@ijekavian/LC_MESSAGES/wesnoth-did.mo
1031
%%NLS%%share/locale/sr@ijekavian/LC_MESSAGES/wesnoth-dm.mo
1072
%%NLS%%share/locale/sr@ijekavian/LC_MESSAGES/wesnoth-dm.mo
1073
%%NLS%%share/locale/sr@ijekavian/LC_MESSAGES/wesnoth-dw.mo
1032
%%NLS%%share/locale/sr@ijekavian/LC_MESSAGES/wesnoth-editor.mo
1074
%%NLS%%share/locale/sr@ijekavian/LC_MESSAGES/wesnoth-editor.mo
1033
%%NLS%%share/locale/sr@ijekavian/LC_MESSAGES/wesnoth-ei.mo
1075
%%NLS%%share/locale/sr@ijekavian/LC_MESSAGES/wesnoth-ei.mo
1034
%%NLS%%share/locale/sr@ijekavian/LC_MESSAGES/wesnoth-httt.mo
1076
%%NLS%%share/locale/sr@ijekavian/LC_MESSAGES/wesnoth-httt.mo
Lines 1052-1057 share/pixmaps/wesnoth-icon.png Link Here
1052
%%NLS%%share/locale/sr@ijekavianlatin/LC_MESSAGES/wesnoth-aoi.mo
1094
%%NLS%%share/locale/sr@ijekavianlatin/LC_MESSAGES/wesnoth-aoi.mo
1053
%%NLS%%share/locale/sr@ijekavianlatin/LC_MESSAGES/wesnoth-did.mo
1095
%%NLS%%share/locale/sr@ijekavianlatin/LC_MESSAGES/wesnoth-did.mo
1054
%%NLS%%share/locale/sr@ijekavianlatin/LC_MESSAGES/wesnoth-dm.mo
1096
%%NLS%%share/locale/sr@ijekavianlatin/LC_MESSAGES/wesnoth-dm.mo
1097
%%NLS%%share/locale/sr@ijekavianlatin/LC_MESSAGES/wesnoth-dw.mo
1055
%%NLS%%share/locale/sr@ijekavianlatin/LC_MESSAGES/wesnoth-editor.mo
1098
%%NLS%%share/locale/sr@ijekavianlatin/LC_MESSAGES/wesnoth-editor.mo
1056
%%NLS%%share/locale/sr@ijekavianlatin/LC_MESSAGES/wesnoth-ei.mo
1099
%%NLS%%share/locale/sr@ijekavianlatin/LC_MESSAGES/wesnoth-ei.mo
1057
%%NLS%%share/locale/sr@ijekavianlatin/LC_MESSAGES/wesnoth-httt.mo
1100
%%NLS%%share/locale/sr@ijekavianlatin/LC_MESSAGES/wesnoth-httt.mo
Lines 1075-1080 share/pixmaps/wesnoth-icon.png Link Here
1075
%%NLS%%share/locale/sr@latin/LC_MESSAGES/wesnoth-aoi.mo
1118
%%NLS%%share/locale/sr@latin/LC_MESSAGES/wesnoth-aoi.mo
1076
%%NLS%%share/locale/sr@latin/LC_MESSAGES/wesnoth-did.mo
1119
%%NLS%%share/locale/sr@latin/LC_MESSAGES/wesnoth-did.mo
1077
%%NLS%%share/locale/sr@latin/LC_MESSAGES/wesnoth-dm.mo
1120
%%NLS%%share/locale/sr@latin/LC_MESSAGES/wesnoth-dm.mo
1121
%%NLS%%share/locale/sr@latin/LC_MESSAGES/wesnoth-dw.mo
1078
%%NLS%%share/locale/sr@latin/LC_MESSAGES/wesnoth-editor.mo
1122
%%NLS%%share/locale/sr@latin/LC_MESSAGES/wesnoth-editor.mo
1079
%%NLS%%share/locale/sr@latin/LC_MESSAGES/wesnoth-ei.mo
1123
%%NLS%%share/locale/sr@latin/LC_MESSAGES/wesnoth-ei.mo
1080
%%NLS%%share/locale/sr@latin/LC_MESSAGES/wesnoth-httt.mo
1124
%%NLS%%share/locale/sr@latin/LC_MESSAGES/wesnoth-httt.mo
Lines 1098-1103 share/pixmaps/wesnoth-icon.png Link Here
1098
%%NLS%%share/locale/sv/LC_MESSAGES/wesnoth-aoi.mo
1142
%%NLS%%share/locale/sv/LC_MESSAGES/wesnoth-aoi.mo
1099
%%NLS%%share/locale/sv/LC_MESSAGES/wesnoth-did.mo
1143
%%NLS%%share/locale/sv/LC_MESSAGES/wesnoth-did.mo
1100
%%NLS%%share/locale/sv/LC_MESSAGES/wesnoth-dm.mo
1144
%%NLS%%share/locale/sv/LC_MESSAGES/wesnoth-dm.mo
1145
%%NLS%%share/locale/sv/LC_MESSAGES/wesnoth-dw.mo
1101
%%NLS%%share/locale/sv/LC_MESSAGES/wesnoth-editor.mo
1146
%%NLS%%share/locale/sv/LC_MESSAGES/wesnoth-editor.mo
1102
%%NLS%%share/locale/sv/LC_MESSAGES/wesnoth-ei.mo
1147
%%NLS%%share/locale/sv/LC_MESSAGES/wesnoth-ei.mo
1103
%%NLS%%share/locale/sv/LC_MESSAGES/wesnoth-httt.mo
1148
%%NLS%%share/locale/sv/LC_MESSAGES/wesnoth-httt.mo
Lines 1121-1126 share/pixmaps/wesnoth-icon.png Link Here
1121
%%NLS%%share/locale/tl/LC_MESSAGES/wesnoth-aoi.mo
1166
%%NLS%%share/locale/tl/LC_MESSAGES/wesnoth-aoi.mo
1122
%%NLS%%share/locale/tl/LC_MESSAGES/wesnoth-did.mo
1167
%%NLS%%share/locale/tl/LC_MESSAGES/wesnoth-did.mo
1123
%%NLS%%share/locale/tl/LC_MESSAGES/wesnoth-dm.mo
1168
%%NLS%%share/locale/tl/LC_MESSAGES/wesnoth-dm.mo
1169
%%NLS%%share/locale/tl/LC_MESSAGES/wesnoth-dw.mo
1124
%%NLS%%share/locale/tl/LC_MESSAGES/wesnoth-editor.mo
1170
%%NLS%%share/locale/tl/LC_MESSAGES/wesnoth-editor.mo
1125
%%NLS%%share/locale/tl/LC_MESSAGES/wesnoth-ei.mo
1171
%%NLS%%share/locale/tl/LC_MESSAGES/wesnoth-ei.mo
1126
%%NLS%%share/locale/tl/LC_MESSAGES/wesnoth-httt.mo
1172
%%NLS%%share/locale/tl/LC_MESSAGES/wesnoth-httt.mo
Lines 1144-1149 share/pixmaps/wesnoth-icon.png Link Here
1144
%%NLS%%share/locale/tr/LC_MESSAGES/wesnoth-aoi.mo
1190
%%NLS%%share/locale/tr/LC_MESSAGES/wesnoth-aoi.mo
1145
%%NLS%%share/locale/tr/LC_MESSAGES/wesnoth-did.mo
1191
%%NLS%%share/locale/tr/LC_MESSAGES/wesnoth-did.mo
1146
%%NLS%%share/locale/tr/LC_MESSAGES/wesnoth-dm.mo
1192
%%NLS%%share/locale/tr/LC_MESSAGES/wesnoth-dm.mo
1193
%%NLS%%share/locale/tr/LC_MESSAGES/wesnoth-dw.mo
1147
%%NLS%%share/locale/tr/LC_MESSAGES/wesnoth-editor.mo
1194
%%NLS%%share/locale/tr/LC_MESSAGES/wesnoth-editor.mo
1148
%%NLS%%share/locale/tr/LC_MESSAGES/wesnoth-ei.mo
1195
%%NLS%%share/locale/tr/LC_MESSAGES/wesnoth-ei.mo
1149
%%NLS%%share/locale/tr/LC_MESSAGES/wesnoth-httt.mo
1196
%%NLS%%share/locale/tr/LC_MESSAGES/wesnoth-httt.mo
Lines 1167-1172 share/pixmaps/wesnoth-icon.png Link Here
1167
%%NLS%%share/locale/vi/LC_MESSAGES/wesnoth-aoi.mo
1214
%%NLS%%share/locale/vi/LC_MESSAGES/wesnoth-aoi.mo
1168
%%NLS%%share/locale/vi/LC_MESSAGES/wesnoth-did.mo
1215
%%NLS%%share/locale/vi/LC_MESSAGES/wesnoth-did.mo
1169
%%NLS%%share/locale/vi/LC_MESSAGES/wesnoth-dm.mo
1216
%%NLS%%share/locale/vi/LC_MESSAGES/wesnoth-dm.mo
1217
%%NLS%%share/locale/vi/LC_MESSAGES/wesnoth-dw.mo
1170
%%NLS%%share/locale/vi/LC_MESSAGES/wesnoth-editor.mo
1218
%%NLS%%share/locale/vi/LC_MESSAGES/wesnoth-editor.mo
1171
%%NLS%%share/locale/vi/LC_MESSAGES/wesnoth-ei.mo
1219
%%NLS%%share/locale/vi/LC_MESSAGES/wesnoth-ei.mo
1172
%%NLS%%share/locale/vi/LC_MESSAGES/wesnoth-httt.mo
1220
%%NLS%%share/locale/vi/LC_MESSAGES/wesnoth-httt.mo
Lines 1190-1195 share/pixmaps/wesnoth-icon.png Link Here
1190
%%NLS%%share/locale/zh_CN/LC_MESSAGES/wesnoth-aoi.mo
1238
%%NLS%%share/locale/zh_CN/LC_MESSAGES/wesnoth-aoi.mo
1191
%%NLS%%share/locale/zh_CN/LC_MESSAGES/wesnoth-did.mo
1239
%%NLS%%share/locale/zh_CN/LC_MESSAGES/wesnoth-did.mo
1192
%%NLS%%share/locale/zh_CN/LC_MESSAGES/wesnoth-dm.mo
1240
%%NLS%%share/locale/zh_CN/LC_MESSAGES/wesnoth-dm.mo
1241
%%NLS%%share/locale/zh_CN/LC_MESSAGES/wesnoth-dw.mo
1193
%%NLS%%share/locale/zh_CN/LC_MESSAGES/wesnoth-editor.mo
1242
%%NLS%%share/locale/zh_CN/LC_MESSAGES/wesnoth-editor.mo
1194
%%NLS%%share/locale/zh_CN/LC_MESSAGES/wesnoth-ei.mo
1243
%%NLS%%share/locale/zh_CN/LC_MESSAGES/wesnoth-ei.mo
1195
%%NLS%%share/locale/zh_CN/LC_MESSAGES/wesnoth-httt.mo
1244
%%NLS%%share/locale/zh_CN/LC_MESSAGES/wesnoth-httt.mo
Lines 1213-1218 share/pixmaps/wesnoth-icon.png Link Here
1213
%%NLS%%share/locale/zh_TW/LC_MESSAGES/wesnoth-aoi.mo
1262
%%NLS%%share/locale/zh_TW/LC_MESSAGES/wesnoth-aoi.mo
1214
%%NLS%%share/locale/zh_TW/LC_MESSAGES/wesnoth-did.mo
1263
%%NLS%%share/locale/zh_TW/LC_MESSAGES/wesnoth-did.mo
1215
%%NLS%%share/locale/zh_TW/LC_MESSAGES/wesnoth-dm.mo
1264
%%NLS%%share/locale/zh_TW/LC_MESSAGES/wesnoth-dm.mo
1265
%%NLS%%share/locale/zh_TW/LC_MESSAGES/wesnoth-dw.mo
1216
%%NLS%%share/locale/zh_TW/LC_MESSAGES/wesnoth-editor.mo
1266
%%NLS%%share/locale/zh_TW/LC_MESSAGES/wesnoth-editor.mo
1217
%%NLS%%share/locale/zh_TW/LC_MESSAGES/wesnoth-ei.mo
1267
%%NLS%%share/locale/zh_TW/LC_MESSAGES/wesnoth-ei.mo
1218
%%NLS%%share/locale/zh_TW/LC_MESSAGES/wesnoth-httt.mo
1268
%%NLS%%share/locale/zh_TW/LC_MESSAGES/wesnoth-httt.mo
Lines 1232-1237 share/pixmaps/wesnoth-icon.png Link Here
1232
%%NLS%%share/locale/zh_TW/LC_MESSAGES/wesnoth-units.mo
1282
%%NLS%%share/locale/zh_TW/LC_MESSAGES/wesnoth-units.mo
1233
%%NLS%%share/locale/zh_TW/LC_MESSAGES/wesnoth-utbs.mo
1283
%%NLS%%share/locale/zh_TW/LC_MESSAGES/wesnoth-utbs.mo
1234
%%NLS%%share/locale/zh_TW/LC_MESSAGES/wesnoth.mo
1284
%%NLS%%share/locale/zh_TW/LC_MESSAGES/wesnoth.mo
1285
share/pixmaps/wesnoth-icon.png
1286
%%EDITOR%%share/pixmaps/wesnoth_editor-icon.png
1235
%%PYTHON%%@dirrm %%PYTHON_SITELIBDIR%%/wesnoth
1287
%%PYTHON%%@dirrm %%PYTHON_SITELIBDIR%%/wesnoth
1236
@dirrmtry man/af/man6
1288
@dirrmtry man/af/man6
1237
@dirrmtry man/af
1289
@dirrmtry man/af
Lines 1358-1363 share/pixmaps/wesnoth-icon.png Link Here
1358
%%NLS%%@dirrmtry share/locale/sr@latin
1410
%%NLS%%@dirrmtry share/locale/sr@latin
1359
%%NLS%%@dirrmtry share/locale/tl/LC_MESSAGES
1411
%%NLS%%@dirrmtry share/locale/tl/LC_MESSAGES
1360
%%NLS%%@dirrmtry share/locale/tl
1412
%%NLS%%@dirrmtry share/locale/tl
1413
@exec %%LOCALBASE%%/bin/update-desktop-database %D/share/applications 2>/dev/null || true
1414
@unexec %%LOCALBASE%%/bin/update-desktop-database %D/share/applications 2>/dev/null || true
1361
%%SERVER%%@unexec rmdir /var/run/wesnothd 2>/dev/null || echo "If you are permanently removing this port, you should do a 'rm -rf /var/run/wesnothd' to remove it." | fmt
1415
%%SERVER%%@unexec rmdir /var/run/wesnothd 2>/dev/null || echo "If you are permanently removing this port, you should do a 'rm -rf /var/run/wesnothd' to remove it." | fmt
1362
@exec %%LOCALBASE%%/bin/update-desktop-database > /dev/null || /usr/bin/true
1363
@unexec %%LOCALBASE%%/bin/update-desktop-database > /dev/null || /usr/bin/true
(-)games/wesnoth-devel/files/patch-m4-boost.m4 (+11 lines)
Added 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-devel/files/patch-m4-zlib.m4 (+15 lines)
Added 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-devel/files/patch-src-Makefile.am (-6 / +13 lines)
Lines 18-31 Link Here
18
 	tests/main.cpp \
18
 	tests/main.cpp \
19
 	tests/utils/fake_display.cpp \
19
 	tests/utils/fake_display.cpp \
20
 	tests/utils/fake_event_source.cpp \
20
 	tests/utils/fake_event_source.cpp \
21
@@ -362,8 +362,8 @@ test_SOURCES =  \
21
@@ -450,12 +450,12 @@ test_SOURCES =  \
22
 	tests/gui/test_save_dialog.cpp \
22
 	tests/gui/test_save_dialog.cpp \
23
 	$(wesnoth_source)
23
 	$(wesnoth_source)
24
 
24
 
25
-test_LDADD = $(INTERNALLIBS) $(THELIBS) $(BOOST_UNIT_TEST_FRAMEWORK_LIBS) $(PANGO_LIBS) $(FONTCONFIG_LIBS)
25
-test_LDADD = $(INTERNALLIBS) $(THELIBS) $(BOOST_UNIT_TEST_FRAMEWORK_LIBS) $(PANGO_LIBS) $(FONTCONFIG_LIBS) lua/liblua.a
26
-test_DEPENDENCIES=libwesnoth-core.a libwesnoth.a
26
-test_DEPENDENCIES=libwesnoth-core.a libwesnoth.a lua/liblua.a
27
+wesnoth_test_LDADD = $(INTERNALLIBS) $(THELIBS) $(BOOST_UNIT_TEST_FRAMEWORK_LIBS) $(PANGO_LIBS) $(FONTCONFIG_LIBS)
27
+wesnoth_test_LDADD = $(INTERNALLIBS) $(THELIBS) $(BOOST_UNIT_TEST_FRAMEWORK_LIBS) $(PANGO_LIBS) $(FONTCONFIG_LIBS) lua/liblua.a
28
+wesnoth_test_DEPENDENCIES=libwesnoth-core.a libwesnoth.a
28
+wesnoth_test_DEPENDENCIES=libwesnoth-core.a libwesnoth.a lua/liblua.a
29
 if ANA
30
-test_LDADD += $(BOOST_SYSTEM_LIBS) $(BOOST_THREAD_LIBS) -lana
31
-test_DEPENDENCIES += libana.a
32
-test_SOURCES += network_worker.cpp
33
+wesnoth_test_LDADD += $(BOOST_SYSTEM_LIBS) $(BOOST_THREAD_LIBS) -lana
34
+wesnoth_test_DEPENDENCIES += libana.a
35
+wesnoth_test_SOURCES += network_worker.cpp
36
 endif
29
 
37
 
30
 #############################################################################
38
 #############################################################################
31
 #    Headers                                                                #
(-)games/wesnoth-devel/files/patch-src-gettext.cpp (+15 lines)
Added Link Here
1
--- src/gettext.cpp~
2
+++ src/gettext.cpp
3
@@ -18,6 +18,12 @@
4
 
5
 #include <cstring>
6
 
7
+#ifndef ENABLE_NLS
8
+char *textdomain (const char *domainname) {
9
+  return "dummy";
10
+}
11
+#endif
12
+
13
 char const *egettext(char const *msgid)
14
 {
15
 	return msgid[0] == '\0' ? msgid : gettext(msgid);
(-)games/wesnoth-devel/files/patch-src-gettext.hpp (+25 lines)
Added Link Here
1
--- src/gettext.hpp~
2
+++ src/gettext.hpp
3
@@ -35,7 +35,21 @@
4
 
5
 // gettext-related declarations
6
 
7
-#include <libintl.h>
8
+#include "wesconfig.h"
9
+
10
+#ifdef ENABLE_NLS
11
+# include <libintl.h>
12
+#else
13
+# define bind_textdomain_codeset(Domain, Codeset) "C"
14
+# define bindtextdomain(Domain, Directory) "/nonexistent"
15
+# define gettext(String) gettext_noop(String)
16
+# define ngettext(Singular, Plural, Number) gettext_noop(Number == 1 ? Singular : Plural)
17
+# define dgettext(Domain, String) gettext_noop(String)
18
+# define dngettext(Domain, Singular, Plural, Number) gettext_noop(Number == 1 ? Singular : Plural)
19
+# define dcgettext(Domain, String, Category) gettext_noop(String)
20
+# define dcngettext(Domain, Singular, Plural, Number, Category) gettext_noop(Number == 1 ? Singular : Plural)
21
+char *textdomain (const char *domainname);
22
+#endif
23
 
24
 const char* egettext(const char*);
25
 const char* sgettext(const char*);

Return to bug 149899