1
0
mirror of https://git.zap.org.au/git/trader.git synced 2025-01-03 14:57:41 -05:00

Update all auto-generated files

These files have been created by running ./build-aux/bootstrap with
Gnulib as at commit 7ddc0c297211ac7a83a0a94feface10ba93c60f2 (with a date
stamp of Mon Jan 18 15:13:17 2021 +0100), Autoconf 2.69, Automake 1.16.3,
Gettext 0.21 and pkgconf 1.7.3.
This commit is contained in:
John Zaitseff 2021-01-19 17:03:57 +11:00
parent f61eed8b17
commit 58c0c1b115
30 changed files with 378 additions and 144 deletions

View File

@ -22,7 +22,7 @@
#########################################################################
# Author: John Zaitseff <J.Zaitseff@zap.org.au>
# $Id: 39412eb799013e2451558a4bb4397dfe7dea66c1 $
# $Id: c1198b53c770b75257ca7caae1923699f510070d $
#
# This file, Makefile.am, contains the top-level Makefile for Star
# Traders. It needs to be processed by automake to produce the
@ -1178,6 +1178,7 @@ am__leading_dot = @am__leading_dot@
am__quote = @am__quote@
am__tar = @am__tar@
am__untar = @am__untar@
appdatadir = @appdatadir@
bindir = @bindir@
build = @build@
build_alias = @build_alias@
@ -1233,6 +1234,7 @@ SUBDIRS = lib src po data doc m4
# Additional files to distribute
EXTRA_DIST = \
build-aux/bootstrap \
build-aux/msgfmt-appdata \
build-aux/msgfmt-desktop \
lib/obsolete-strings.c \
lib/xopen-source.h

80
aclocal.m4 vendored
View File

@ -507,7 +507,7 @@ AC_DEFUN([AM_NLS],
])
# pkg.m4 - Macros to locate and utilise pkg-config. -*- Autoconf -*-
# serial 12 (pkg-config-0.29.2)
# serial 11 (pkg-config-0.29.1)
dnl Copyright © 2004 Scott James Remnant <scott@netsplit.com>.
dnl Copyright © 2012-2015 Dan Nicholson <dbn.lists@gmail.com>
@ -549,7 +549,7 @@ dnl
dnl See the "Since" comment for each macro you use to see what version
dnl of the macros you require.
m4_defun([PKG_PREREQ],
[m4_define([PKG_MACROS_VERSION], [0.29.2])
[m4_define([PKG_MACROS_VERSION], [0.29.1])
m4_if(m4_version_compare(PKG_MACROS_VERSION, [$1]), -1,
[m4_fatal([pkg.m4 version $1 or higher is required but ]PKG_MACROS_VERSION[ found])])
])dnl PKG_PREREQ
@ -650,7 +650,7 @@ AC_ARG_VAR([$1][_CFLAGS], [C compiler flags for $1, overriding pkg-config])dnl
AC_ARG_VAR([$1][_LIBS], [linker flags for $1, overriding pkg-config])dnl
pkg_failed=no
AC_MSG_CHECKING([for $2])
AC_MSG_CHECKING([for $1])
_PKG_CONFIG([$1][_CFLAGS], [cflags], [$2])
_PKG_CONFIG([$1][_LIBS], [libs], [$2])
@ -660,11 +660,11 @@ and $1[]_LIBS to avoid the need to call pkg-config.
See the pkg-config man page for more details.])
if test $pkg_failed = yes; then
AC_MSG_RESULT([no])
AC_MSG_RESULT([no])
_PKG_SHORT_ERRORS_SUPPORTED
if test $_pkg_short_errors_supported = yes; then
$1[]_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "$2" 2>&1`
else
else
$1[]_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "$2" 2>&1`
fi
# Put the nasty error message in config.log where it belongs
@ -681,7 +681,7 @@ installed software in a non-standard prefix.
_PKG_TEXT])[]dnl
])
elif test $pkg_failed = untried; then
AC_MSG_RESULT([no])
AC_MSG_RESULT([no])
m4_default([$4], [AC_MSG_FAILURE(
[The pkg-config script could not be found or is too old. Make sure it
is in your PATH or set the PKG_CONFIG environment variable to the full
@ -782,6 +782,74 @@ AS_VAR_COPY([$1], [pkg_cv_][$1])
AS_VAR_IF([$1], [""], [$5], [$4])dnl
])dnl PKG_CHECK_VAR
dnl PKG_WITH_MODULES(VARIABLE-PREFIX, MODULES,
dnl [ACTION-IF-FOUND],[ACTION-IF-NOT-FOUND],
dnl [DESCRIPTION], [DEFAULT])
dnl ------------------------------------------
dnl
dnl Prepare a "--with-" configure option using the lowercase
dnl [VARIABLE-PREFIX] name, merging the behaviour of AC_ARG_WITH and
dnl PKG_CHECK_MODULES in a single macro.
AC_DEFUN([PKG_WITH_MODULES],
[
m4_pushdef([with_arg], m4_tolower([$1]))
m4_pushdef([description],
[m4_default([$5], [build with ]with_arg[ support])])
m4_pushdef([def_arg], [m4_default([$6], [auto])])
m4_pushdef([def_action_if_found], [AS_TR_SH([with_]with_arg)=yes])
m4_pushdef([def_action_if_not_found], [AS_TR_SH([with_]with_arg)=no])
m4_case(def_arg,
[yes],[m4_pushdef([with_without], [--without-]with_arg)],
[m4_pushdef([with_without],[--with-]with_arg)])
AC_ARG_WITH(with_arg,
AS_HELP_STRING(with_without, description[ @<:@default=]def_arg[@:>@]),,
[AS_TR_SH([with_]with_arg)=def_arg])
AS_CASE([$AS_TR_SH([with_]with_arg)],
[yes],[PKG_CHECK_MODULES([$1],[$2],$3,$4)],
[auto],[PKG_CHECK_MODULES([$1],[$2],
[m4_n([def_action_if_found]) $3],
[m4_n([def_action_if_not_found]) $4])])
m4_popdef([with_arg])
m4_popdef([description])
m4_popdef([def_arg])
])dnl PKG_WITH_MODULES
dnl PKG_HAVE_WITH_MODULES(VARIABLE-PREFIX, MODULES,
dnl [DESCRIPTION], [DEFAULT])
dnl -----------------------------------------------
dnl
dnl Convenience macro to trigger AM_CONDITIONAL after PKG_WITH_MODULES
dnl check._[VARIABLE-PREFIX] is exported as make variable.
AC_DEFUN([PKG_HAVE_WITH_MODULES],
[
PKG_WITH_MODULES([$1],[$2],,,[$3],[$4])
AM_CONDITIONAL([HAVE_][$1],
[test "$AS_TR_SH([with_]m4_tolower([$1]))" = "yes"])
])dnl PKG_HAVE_WITH_MODULES
dnl PKG_HAVE_DEFINE_WITH_MODULES(VARIABLE-PREFIX, MODULES,
dnl [DESCRIPTION], [DEFAULT])
dnl ------------------------------------------------------
dnl
dnl Convenience macro to run AM_CONDITIONAL and AC_DEFINE after
dnl PKG_WITH_MODULES check. HAVE_[VARIABLE-PREFIX] is exported as make
dnl and preprocessor variable.
AC_DEFUN([PKG_HAVE_DEFINE_WITH_MODULES],
[
PKG_HAVE_WITH_MODULES([$1],[$2],[$3],[$4])
AS_IF([test "$AS_TR_SH([with_]m4_tolower([$1]))" = "yes"],
[AC_DEFINE([HAVE_][$1], 1, [Enable ]m4_tolower([$1])[ support])])
])dnl PKG_HAVE_DEFINE_WITH_MODULES
# po.m4 serial 31 (gettext-0.20.2)
dnl Copyright (C) 1995-2014, 2016, 2018-2020 Free Software Foundation, Inc.
dnl This file is free software; the Free Software Foundation

40
configure vendored
View File

@ -1,6 +1,6 @@
#! /bin/sh
# Guess values for system-dependent variables and create Makefiles.
# Generated by GNU Autoconf 2.69 for Star Traders 7.15.
# Generated by GNU Autoconf 2.69 for Star Traders 7.16.
#
# Report bugs to <J.Zaitseff@zap.org.au>.
#
@ -580,8 +580,8 @@ MAKEFLAGS=
# Identity of this package.
PACKAGE_NAME='Star Traders'
PACKAGE_TARNAME='trader'
PACKAGE_VERSION='7.15'
PACKAGE_STRING='Star Traders 7.15'
PACKAGE_VERSION='7.16'
PACKAGE_STRING='Star Traders 7.16'
PACKAGE_BUGREPORT='J.Zaitseff@zap.org.au'
PACKAGE_URL='https://www.zap.org.au/projects/trader/'
@ -636,6 +636,7 @@ am__EXEEXT_TRUE
LTLIBOBJS
LIBOBJS
iconsdir
appdatadir
desktopdir
PKG_CONFIG_LIBDIR
PKG_CONFIG_PATH
@ -2201,7 +2202,7 @@ if test "$ac_init_help" = "long"; then
# Omit some internal or obsolete options to make the list less imposing.
# This message is too long to be a string in the A/UX 3.1 sh.
cat <<_ACEOF
\`configure' configures Star Traders 7.15 to adapt to many kinds of systems.
\`configure' configures Star Traders 7.16 to adapt to many kinds of systems.
Usage: $0 [OPTION]... [VAR=VALUE]...
@ -2272,7 +2273,7 @@ fi
if test -n "$ac_init_help"; then
case $ac_init_help in
short | recursive ) echo "Configuration of Star Traders 7.15:";;
short | recursive ) echo "Configuration of Star Traders 7.16:";;
esac
cat <<\_ACEOF
@ -2391,7 +2392,7 @@ fi
test -n "$ac_init_help" && exit $ac_status
if $ac_init_version; then
cat <<\_ACEOF
Star Traders configure 7.15
Star Traders configure 7.16
generated by GNU Autoconf 2.69
Copyright (C) 2012 Free Software Foundation, Inc.
@ -3048,7 +3049,7 @@ cat >config.log <<_ACEOF
This file contains any messages produced by compilers while
running configure, to aid debugging if configure makes a mistake.
It was created by Star Traders $as_me 7.15, which was
It was created by Star Traders $as_me 7.16, which was
generated by GNU Autoconf 2.69. Invocation command line was
$ $0 $@
@ -3946,7 +3947,7 @@ fi
# Define the identity of the package.
PACKAGE='trader'
VERSION='7.15'
VERSION='7.16'
cat >>confdefs.h <<_ACEOF
@ -15194,12 +15195,6 @@ $as_echo "#define HAVE_WEAK_SYMBOLS 1" >>confdefs.h
# Check for mmap(). Don't use AC_FUNC_MMAP, because it checks too much: it
# fails on HP-UX 11, because MAP_FIXED mappings do not work. But this is
# irrelevant for anonymous mappings.
@ -15264,6 +15259,13 @@ $as_echo "#define HAVE_MAP_ANONYMOUS 1" >>confdefs.h
# Detect platform-specific bugs in some versions of glibc:
# memchr should not dereference anything with length 0
# https://bugzilla.redhat.com/show_bug.cgi?id=499689
@ -21802,6 +21804,8 @@ fi
desktopdir='${datadir}/applications'
appdatadir='${datadir}/metainfo'
iconsdir='${datadir}/icons/hicolor'
@ -22478,7 +22482,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
# report actual input values of CONFIG_FILES etc. instead of their
# values after options handling.
ac_log="
This file was extended by Star Traders $as_me 7.15, which was
This file was extended by Star Traders $as_me 7.16, which was
generated by GNU Autoconf 2.69. Invocation command line was
CONFIG_FILES = $CONFIG_FILES
@ -22545,7 +22549,7 @@ _ACEOF
cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
ac_cs_version="\\
Star Traders config.status 7.15
Star Traders config.status 7.16
configured by $0, generated by GNU Autoconf 2.69,
with options \\"\$ac_cs_config\\"
@ -23533,7 +23537,7 @@ fi
{ $as_echo "$as_me:${as_lineno-$LINENO}:
Configuration summary for Star Traders 7.15:
Configuration summary for Star Traders 7.16:
Building for host: $host
Using C compiler with options: $CC $CFLAGS
@ -23543,7 +23547,7 @@ fi
" >&5
$as_echo "$as_me:
Configuration summary for Star Traders 7.15:
Configuration summary for Star Traders 7.16:
Building for host: $host
Using C compiler with options: $CC $CFLAGS

View File

@ -22,7 +22,7 @@
#########################################################################
# Author: John Zaitseff <J.Zaitseff@zap.org.au>
# $Id: 783f3ecac400119980dd21bb43132760de321574 $
# $Id: 29d8835de9818f88a2b3ffed5351f31d88c29663 $
#
# This file, data/Makefile.am, contains the non-code data directory
# Makefile for Star Traders. It needs to be processed by automake to
@ -164,9 +164,9 @@ am__aclocal_m4_deps = $(top_srcdir)/m4/00gnulib.m4 \
$(top_srcdir)/m4/zzgnulib.m4 $(top_srcdir)/configure.ac
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
$(ACLOCAL_M4)
DIST_COMMON = $(srcdir)/Makefile.am $(dist_desktop_DATA) \
$(dist_icons128_DATA) $(dist_icons16_DATA) \
$(dist_icons22_DATA) $(dist_icons24_DATA) \
DIST_COMMON = $(srcdir)/Makefile.am $(dist_appdata_DATA) \
$(dist_desktop_DATA) $(dist_icons128_DATA) \
$(dist_icons16_DATA) $(dist_icons22_DATA) $(dist_icons24_DATA) \
$(dist_icons256_DATA) $(dist_icons32_DATA) \
$(dist_icons48_DATA) $(dist_icons512_DATA) \
$(dist_icons64_DATA) $(dist_icons96_DATA) \
@ -221,14 +221,15 @@ am__uninstall_files_from_dir = { \
|| { echo " ( cd '$$dir' && rm -f" $$files ")"; \
$(am__cd) "$$dir" && rm -f $$files; }; \
}
am__installdirs = "$(DESTDIR)$(desktopdir)" "$(DESTDIR)$(icons128dir)" \
"$(DESTDIR)$(icons16dir)" "$(DESTDIR)$(icons22dir)" \
"$(DESTDIR)$(icons24dir)" "$(DESTDIR)$(icons256dir)" \
"$(DESTDIR)$(icons32dir)" "$(DESTDIR)$(icons48dir)" \
"$(DESTDIR)$(icons512dir)" "$(DESTDIR)$(icons64dir)" \
"$(DESTDIR)$(icons96dir)" "$(DESTDIR)$(iconsscalabledir)"
DATA = $(dist_desktop_DATA) $(dist_icons128_DATA) $(dist_icons16_DATA) \
$(dist_icons22_DATA) $(dist_icons24_DATA) \
am__installdirs = "$(DESTDIR)$(appdatadir)" "$(DESTDIR)$(desktopdir)" \
"$(DESTDIR)$(icons128dir)" "$(DESTDIR)$(icons16dir)" \
"$(DESTDIR)$(icons22dir)" "$(DESTDIR)$(icons24dir)" \
"$(DESTDIR)$(icons256dir)" "$(DESTDIR)$(icons32dir)" \
"$(DESTDIR)$(icons48dir)" "$(DESTDIR)$(icons512dir)" \
"$(DESTDIR)$(icons64dir)" "$(DESTDIR)$(icons96dir)" \
"$(DESTDIR)$(iconsscalabledir)"
DATA = $(dist_appdata_DATA) $(dist_desktop_DATA) $(dist_icons128_DATA) \
$(dist_icons16_DATA) $(dist_icons22_DATA) $(dist_icons24_DATA) \
$(dist_icons256_DATA) $(dist_icons32_DATA) \
$(dist_icons48_DATA) $(dist_icons512_DATA) \
$(dist_icons64_DATA) $(dist_icons96_DATA) \
@ -1134,6 +1135,7 @@ am__leading_dot = @am__leading_dot@
am__quote = @am__quote@
am__tar = @am__tar@
am__untar = @am__untar@
appdatadir = @appdatadir@
bindir = @bindir@
build = @build@
build_alias = @build_alias@
@ -1183,6 +1185,7 @@ top_build_prefix = @top_build_prefix@
top_builddir = @top_builddir@
top_srcdir = @top_srcdir@
dist_desktop_DATA = trader.desktop
dist_appdata_DATA = trader.appdata.xml
icons16dir = ${iconsdir}/16x16/apps
icons22dir = ${iconsdir}/22x22/apps
icons24dir = ${iconsdir}/24x24/apps
@ -1207,7 +1210,8 @@ dist_icons512_DATA = icons-512/trader.png
dist_iconsscalable_DATA = trader.svg
EXTRA_DIST = \
README \
trader.desktop.in
trader.desktop.in \
trader.appdata.xml.in
all: all-am
@ -1241,6 +1245,27 @@ $(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps)
$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps)
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
$(am__aclocal_m4_deps):
install-dist_appdataDATA: $(dist_appdata_DATA)
@$(NORMAL_INSTALL)
@list='$(dist_appdata_DATA)'; test -n "$(appdatadir)" || list=; \
if test -n "$$list"; then \
echo " $(MKDIR_P) '$(DESTDIR)$(appdatadir)'"; \
$(MKDIR_P) "$(DESTDIR)$(appdatadir)" || exit 1; \
fi; \
for p in $$list; do \
if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
echo "$$d$$p"; \
done | $(am__base_list) | \
while read files; do \
echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(appdatadir)'"; \
$(INSTALL_DATA) $$files "$(DESTDIR)$(appdatadir)" || exit $$?; \
done
uninstall-dist_appdataDATA:
@$(NORMAL_UNINSTALL)
@list='$(dist_appdata_DATA)'; test -n "$(appdatadir)" || list=; \
files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
dir='$(DESTDIR)$(appdatadir)'; $(am__uninstall_files_from_dir)
install-dist_desktopDATA: $(dist_desktop_DATA)
@$(NORMAL_INSTALL)
@list='$(dist_desktop_DATA)'; test -n "$(desktopdir)" || list=; \
@ -1537,7 +1562,7 @@ check-am: all-am
check: check-am
all-am: Makefile $(DATA)
installdirs:
for dir in "$(DESTDIR)$(desktopdir)" "$(DESTDIR)$(icons128dir)" "$(DESTDIR)$(icons16dir)" "$(DESTDIR)$(icons22dir)" "$(DESTDIR)$(icons24dir)" "$(DESTDIR)$(icons256dir)" "$(DESTDIR)$(icons32dir)" "$(DESTDIR)$(icons48dir)" "$(DESTDIR)$(icons512dir)" "$(DESTDIR)$(icons64dir)" "$(DESTDIR)$(icons96dir)" "$(DESTDIR)$(iconsscalabledir)"; do \
for dir in "$(DESTDIR)$(appdatadir)" "$(DESTDIR)$(desktopdir)" "$(DESTDIR)$(icons128dir)" "$(DESTDIR)$(icons16dir)" "$(DESTDIR)$(icons22dir)" "$(DESTDIR)$(icons24dir)" "$(DESTDIR)$(icons256dir)" "$(DESTDIR)$(icons32dir)" "$(DESTDIR)$(icons48dir)" "$(DESTDIR)$(icons512dir)" "$(DESTDIR)$(icons64dir)" "$(DESTDIR)$(icons96dir)" "$(DESTDIR)$(iconsscalabledir)"; do \
test -z "$$dir" || $(MKDIR_P) "$$dir"; \
done
install: install-am
@ -1590,12 +1615,13 @@ info: info-am
info-am:
install-data-am: install-dist_desktopDATA install-dist_icons128DATA \
install-dist_icons16DATA install-dist_icons22DATA \
install-dist_icons24DATA install-dist_icons256DATA \
install-dist_icons32DATA install-dist_icons48DATA \
install-dist_icons512DATA install-dist_icons64DATA \
install-dist_icons96DATA install-dist_iconsscalableDATA
install-data-am: install-dist_appdataDATA install-dist_desktopDATA \
install-dist_icons128DATA install-dist_icons16DATA \
install-dist_icons22DATA install-dist_icons24DATA \
install-dist_icons256DATA install-dist_icons32DATA \
install-dist_icons48DATA install-dist_icons512DATA \
install-dist_icons64DATA install-dist_icons96DATA \
install-dist_iconsscalableDATA
install-dvi: install-dvi-am
@ -1639,31 +1665,33 @@ ps: ps-am
ps-am:
uninstall-am: uninstall-dist_desktopDATA uninstall-dist_icons128DATA \
uninstall-dist_icons16DATA uninstall-dist_icons22DATA \
uninstall-dist_icons24DATA uninstall-dist_icons256DATA \
uninstall-dist_icons32DATA uninstall-dist_icons48DATA \
uninstall-dist_icons512DATA uninstall-dist_icons64DATA \
uninstall-dist_icons96DATA uninstall-dist_iconsscalableDATA
uninstall-am: uninstall-dist_appdataDATA uninstall-dist_desktopDATA \
uninstall-dist_icons128DATA uninstall-dist_icons16DATA \
uninstall-dist_icons22DATA uninstall-dist_icons24DATA \
uninstall-dist_icons256DATA uninstall-dist_icons32DATA \
uninstall-dist_icons48DATA uninstall-dist_icons512DATA \
uninstall-dist_icons64DATA uninstall-dist_icons96DATA \
uninstall-dist_iconsscalableDATA
.MAKE: install-am install-strip
.PHONY: all all-am check check-am clean clean-generic cscopelist-am \
ctags-am distclean distclean-generic distdir dvi dvi-am html \
html-am info info-am install install-am install-data \
install-data-am install-dist_desktopDATA \
install-dist_icons128DATA install-dist_icons16DATA \
install-dist_icons22DATA install-dist_icons24DATA \
install-dist_icons256DATA install-dist_icons32DATA \
install-dist_icons48DATA install-dist_icons512DATA \
install-dist_icons64DATA install-dist_icons96DATA \
install-dist_iconsscalableDATA install-dvi install-dvi-am \
install-exec install-exec-am install-html install-html-am \
install-info install-info-am install-man install-pdf \
install-pdf-am install-ps install-ps-am install-strip \
installcheck installcheck-am installdirs maintainer-clean \
maintainer-clean-generic mostlyclean mostlyclean-generic pdf \
pdf-am ps ps-am tags-am uninstall uninstall-am \
install-data-am install-dist_appdataDATA \
install-dist_desktopDATA install-dist_icons128DATA \
install-dist_icons16DATA install-dist_icons22DATA \
install-dist_icons24DATA install-dist_icons256DATA \
install-dist_icons32DATA install-dist_icons48DATA \
install-dist_icons512DATA install-dist_icons64DATA \
install-dist_icons96DATA install-dist_iconsscalableDATA \
install-dvi install-dvi-am install-exec install-exec-am \
install-html install-html-am install-info install-info-am \
install-man install-pdf install-pdf-am install-ps \
install-ps-am install-strip installcheck installcheck-am \
installdirs maintainer-clean maintainer-clean-generic \
mostlyclean mostlyclean-generic pdf pdf-am ps ps-am tags-am \
uninstall uninstall-am uninstall-dist_appdataDATA \
uninstall-dist_desktopDATA uninstall-dist_icons128DATA \
uninstall-dist_icons16DATA uninstall-dist_icons22DATA \
uninstall-dist_icons24DATA uninstall-dist_icons256DATA \
@ -1677,6 +1705,9 @@ uninstall-am: uninstall-dist_desktopDATA uninstall-dist_icons128DATA \
trader.desktop: trader.desktop.in
$(top_srcdir)/build-aux/msgfmt-desktop -d $(top_srcdir)/po $< $@
trader.appdata.xml: trader.appdata.xml.in
$(top_srcdir)/build-aux/msgfmt-appdata -d $(top_srcdir)/po $< $@
# Tell versions [3.59,3.63) of GNU make to not export all variables.
# Otherwise a system limit (for SysV at least) may be exceeded.
.NOEXPORT:

119
data/trader.appdata.xml Normal file
View File

@ -0,0 +1,119 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
*************************************************************************
* *
* Star Traders: A Game of Interstellar Trading *
* Copyright (C) 1990-2021, John Zaitseff *
* *
*************************************************************************
Author: John Zaitseff <J.Zaitseff@zap.org.au>
$Id: deb031fd327b1e609abaf9a26418ffe0dd83abb4 $
This file provides application metadata for Star Traders and conforms to
the AppStream 0.12 specification.
Copying and distribution of this file, with or without modification, are
permitted in any medium without royalty provided the copyright notice and
this notice are preserved. This file is offered as-is, without any
warranty.
-->
<component type="console-application">
<id>au.org.zap.trader</id>
<name>Star Traders</name>
<name xml:lang="sv">Star Traders</name>
<name xml:lang="sr">Звездани трговци</name>
<name xml:lang="ru">Звёздные торговцы</name>
<name xml:lang="pt_BR">Comerciantes Estelares</name>
<name xml:lang="nb">Star Traders</name>
<name xml:lang="hu">Star Traders</name>
<name xml:lang="hr">Star Traders</name>
<name xml:lang="fr">Star Traders</name>
<name xml:lang="fi">Tähtikauppiaat</name>
<name xml:lang="eo">Star Traders</name>
<name xml:lang="de">Star Traders</name>
<name xml:lang="da">Star Traders</name>
<name xml:lang="en_US">Star Traders</name>
<name xml:lang="en_GB">Star Traders</name>
<name xml:lang="en_CA">Star Traders</name>
<name xml:lang="en_AU">Star Traders</name>
<name xml:lang="en@quot">Star Traders</name>
<summary>Play Star Traders, a simple game of interstellar trading</summary>
<summary xml:lang="sv">Spela Star Traders, ett enkelt spel om interstellär handel</summary>
<summary xml:lang="sr">Играјте Звездане трговце, једноставну игру међузвезданог трговања</summary>
<summary xml:lang="ru">Играть в «Звёздные торговцы», простую игру о межзвёздной торговле</summary>
<summary xml:lang="pt_BR">Jogue Comerciantes Estelares, um jogo simples de comércio interestelar</summary>
<summary xml:lang="nb">Spill Star Traders, et enkelt spill med interstellar handel</summary>
<summary xml:lang="hu">A Star Traders, egy egyszerű csillagközi kereskedelmi játék indítása</summary>
<summary xml:lang="hr">Igrajte Star Traders, jednostavnu igru međuzvjezdanog trgovanja</summary>
<summary xml:lang="fr">Jouer à Star Traders, un simple jeu de commerce interstellaire</summary>
<summary xml:lang="fi">Pelaa Tähtikauppiaita, yksinkertaista tähtienvälisen kaupan peliä</summary>
<summary xml:lang="eo">Ludi Star Traders, simpla ludo pri interstelara komerco</summary>
<summary xml:lang="de">Spielen Sie Star Trader, ein einfaches Spiel um interstellaren Handel</summary>
<summary xml:lang="da">Spil Star Traders, et simpelt spil med rumhandel</summary>
<summary xml:lang="en_US">Play Star Traders, a simple game of interstellar trading</summary>
<summary xml:lang="en_GB">Play Star Traders, a simple game of interstellar trading</summary>
<summary xml:lang="en_CA">Play Star Traders, a simple game of interstellar trading</summary>
<summary xml:lang="en_AU">Play Star Traders, a simple game of interstellar trading</summary>
<summary xml:lang="en@quot">Play Star Traders, a simple game of interstellar trading</summary>
<description>
<p>
Star Traders is a simple game of interstellar trading, where the
objective is to create companies, buy and sell shares, borrow and
repay money, in order to become the wealthiest player (the winner).
</p>
<p xml:lang="sv">Star Traders är ett enkelt spel om interstellär handel, där spelets mål är att bilda företag, köpa och sälja aktier, låna och betala tillbaka pengar för att bli den rikaste spelaren (vinnaren).</p>
<p xml:lang="sr">Звездани трговци је једноставна игра међузвезданог трговања, у којој треба да оснивате предузећа, купујете и продајете акције, позајмљујете и враћате новац, да бисте постали најбогатији играч (победник).</p>
<p xml:lang="ru">«Звёздные торговцы» — это простая игра о межзвёздной торговле, где целью игры является создание компаний, покупка и продажа акций, получение и погашение кредита, чтобы стать самым богатым игроком-победителем.</p>
<p xml:lang="pt_BR">Comerciantes Estelares é um jogo simples de negociação interestelar, cujo objetivo é criar empresas, comprar e vender ações, emprestar e pagar dinheiro, para se tornar o jogador mais rico (o vencedor).</p>
<p xml:lang="nb">Star Traders er et enkelt spill med interstellar handel, der målet med spillet er å opprette firmaer, kjøpe og selge aksjer, låne og betale tilbake penger for å bli den rikeste spilleren (vinneren).</p>
<p xml:lang="hu">A Star Traders egy egyszerű csillagközi kereskedelmi játék, ahol a játék célja társaságok létrehozása, részvények vásárlása és eladása, pénz kölcsönkérése és visszafizetése azért, hogy a leggazdagabb játékossá (győztessé) váljon.</p>
<p xml:lang="hr">„Star Traders” (Međuzvjezdani trgovci) je jednostavna igra međuzvjezadnog trgovanja, gdje je cilj igre stvarati tvrtke, kupovati i prodavati dionice te posuđivati i vraćati novac kako biste postali najbogatiji igrač (pobjednik).</p>
<p xml:lang="fr">Star Traders est un simple jeu de commerce interstellaire où l'objectif du jeu est de créer des compagnies, acheter et vendre des parts, emprunter et rembourser de l'argent dans le but de devenir le joueur le plus riche (le gagnant).</p>
<p xml:lang="fi">Tähtikauppiaat on yksinkertainen tähtienvälisen kaupan peli, jossa pelin tarkoitus on luoda yhtiöitä, ostaa ja myydä osakkeita, lainata ja maksaa takaisin rahaa, tarkoituksena tulla varakkaimmaksi pelaajaksi (voittaja).</p>
<p xml:lang="eo">Star Traders estas simpla ludo pri interstelara komerco, kie la celo de la ludo estas krei kompaniojn, aĉeti kaj vendi akciojn, pruntepreni kaj repagi monon, por fariĝi la plej riĉa ludanto (la venkanto).</p>
<p xml:lang="de">Star Traders ist ein einfaches Spiel um interstellaren Handel. Das Ziel des Spiels ist es, Firmen zu gründen, Aktien zu kaufen und zu verkaufen, Geld zu leihen und zurück zu zahlen, um der reichste Spieler und damit der Gewinner zu werden.</p>
<p xml:lang="da">Star Traders er et simpelt spil med rumhandel, hvor formålet er at oprette firmaer, købe og sælge aktier, låne og betale tilbage på lån, alt sammen for at blive den rigeste spiller (vinderen).</p>
<p xml:lang="en_US">Star Traders is a simple game of interstellar trading, where the object of the game is to create companies, buy and sell shares, borrow and repay money, in order to become the wealthiest player (the winner).</p>
<p xml:lang="en_GB">Star Traders is a simple game of interstellar trading, where the object of the game is to create companies, buy and sell shares, borrow and repay money, in order to become the wealthiest player (the winner).</p>
<p xml:lang="en_CA">Star Traders is a simple game of interstellar trading, where the object of the game is to create companies, buy and sell shares, borrow and repay money, in order to become the wealthiest player (the winner).</p>
<p xml:lang="en_AU">Star Traders is a simple game of interstellar trading, where the object of the game is to create companies, buy and sell shares, borrow and repay money, in order to become the wealthiest player (the winner).</p>
<p xml:lang="en@quot">Star Traders is a simple game of interstellar trading, where the objective is to create companies, buy and sell shares, borrow and repay money, in order to become the wealthiest player (the winner).</p>
</description>
<icon>trader.svg</icon>
<launchable type="desktop-id">trader.desktop</launchable>
<provides>
<binary>trader</binary>
</provides>
<categories>
<category>Game</category>
<category>StrategyGame</category>
</categories>
<url type="homepage">https://www.zap.org.au/projects/trader/</url>
<developer_name>John Zaitseff</developer_name>
<developer_name xml:lang="sv">John Zaitseff</developer_name>
<developer_name xml:lang="sr">Џон Зајцеф (John Zaitseff)</developer_name>
<developer_name xml:lang="ru">John Zaitseff</developer_name>
<developer_name xml:lang="pt_BR">John Zaitseff</developer_name>
<developer_name xml:lang="nb">John Zaitseff</developer_name>
<developer_name xml:lang="hu">John Zaitseff</developer_name>
<developer_name xml:lang="hr">John Zaitseff</developer_name>
<developer_name xml:lang="fr">John Zaitseff</developer_name>
<developer_name xml:lang="fi">John Zaitseff</developer_name>
<developer_name xml:lang="eo">John Zaitseff</developer_name>
<developer_name xml:lang="de">John Zaitseff</developer_name>
<developer_name xml:lang="da">John Zaitseff</developer_name>
<developer_name xml:lang="en_US">John Zaitseff</developer_name>
<developer_name xml:lang="en_GB">John Zaitseff</developer_name>
<developer_name xml:lang="en_CA">John Zaitseff</developer_name>
<developer_name xml:lang="en_AU">John Zaitseff</developer_name>
<developer_name xml:lang="en@quot">John Zaitseff</developer_name>
<screenshots>
<screenshot type="default">
<image>https://www.zap.org.au/projects/trader/screenshot.png</image>
</screenshot>
</screenshots>
<metadata_license>FSFAP</metadata_license>
<project_license>GPL-3.0+</project_license>
<content_rating type="oars-1.0"/>
</component>

View File

@ -1119,6 +1119,7 @@ am__leading_dot = @am__leading_dot@
am__quote = @am__quote@
am__tar = @am__tar@
am__untar = @am__untar@
appdatadir = @appdatadir@
bindir = @bindir@
build = @build@
build_alias = @build_alias@

View File

@ -1254,6 +1254,7 @@ am__leading_dot = @am__leading_dot@
am__quote = @am__quote@
am__tar = @am__tar@
am__untar = @am__untar@
appdatadir = @appdatadir@
bindir = @bindir@
build = @build@
build_alias = @build_alias@

View File

@ -22,16 +22,10 @@
/* Define _GL_HAVE__STATIC_ASSERT to 1 if _Static_assert (R, DIAGNOSTIC)
works as per C11. This is supported by GCC 4.6.0 and later, in C
mode, and by clang (also in C++ mode).
works as per C11. This is supported by GCC 4.6.0+ and by clang 4+.
Define _GL_HAVE__STATIC_ASSERT1 to 1 if _Static_assert (R) works as
per C2X. This is supported by GCC 9.1 and later, and by clang in
C++1z mode.
Define _GL_HAVE_STATIC_ASSERT1 if static_assert (R) works as per
C++17. This is supported by GCC 9.1 and later, and by clang in
C++1z mode.
per C2X. This is supported by GCC 9.1+.
Support compilers claiming conformance to the relevant standard,
and also support GCC when not pedantic. If we were willing to slow
@ -47,18 +41,6 @@
|| (!defined __STRICT_ANSI__ && 9 <= __GNUC__))
# define _GL_HAVE__STATIC_ASSERT1 1
# endif
#else
# if 4 <= __clang_major__
# define _GL_HAVE__STATIC_ASSERT 1
# endif
# if 4 <= __clang_major__ && 201411 <= __cpp_static_assert
# define _GL_HAVE__STATIC_ASSERT1 1
# endif
# if 201703L <= __cplusplus \
|| 9 <= __GNUC__ \
|| (4 <= __clang_major__ && 201411 <= __cpp_static_assert)
# define _GL_HAVE_STATIC_ASSERT1 1
# endif
#endif
/* FreeBSD 9.1 <sys/cdefs.h>, included by <stddef.h> and lots of other
@ -225,7 +207,9 @@ template <int w>
Unfortunately, unlike C11, this implementation must appear as an
ordinary declaration, and cannot appear inside struct { ... }. */
#if defined _GL_HAVE__STATIC_ASSERT
#if 200410 <= __cpp_static_assert
# define _GL_VERIFY(R, DIAGNOSTIC, ...) static_assert (R, DIAGNOSTIC)
#elif defined _GL_HAVE__STATIC_ASSERT
# define _GL_VERIFY(R, DIAGNOSTIC, ...) _Static_assert (R, DIAGNOSTIC)
#else
# define _GL_VERIFY(R, DIAGNOSTIC, ...) \
@ -239,7 +223,7 @@ template <int w>
# define _Static_assert(...) \
_GL_VERIFY (__VA_ARGS__, "static assertion failed", -)
# endif
# if !defined _GL_HAVE_STATIC_ASSERT1 && !defined static_assert
# if __cpp_static_assert < 201411 && !defined static_assert
# define static_assert _Static_assert /* C11 requires this #define. */
# endif
#endif

View File

@ -1088,6 +1088,7 @@ am__leading_dot = @am__leading_dot@
am__quote = @am__quote@
am__tar = @am__tar@
am__untar = @am__untar@
appdatadir = @appdatadir@
bindir = @bindir@
build = @build@
build_alias = @build_alias@

View File

@ -1,4 +1,4 @@
# mmap-anon.m4 serial 11
# mmap-anon.m4 serial 12
dnl Copyright (C) 2005, 2007, 2009-2021 Free Software Foundation, Inc.
dnl This file is free software; the Free Software Foundation
dnl gives unlimited permission to copy and/or distribute it,
@ -13,7 +13,7 @@ dnl with or without modifications, as long as this notice is preserved.
# - On IRIX, neither exists, and a file descriptor opened to /dev/zero must be
# used.
AC_DEFUN([gl_FUNC_MMAP_ANON],
AC_DEFUN_ONCE([gl_FUNC_MMAP_ANON],
[
dnl Persuade glibc <sys/mman.h> to define MAP_ANONYMOUS.
AC_REQUIRE([gl_USE_SYSTEM_EXTENSIONS])

BIN
po/da.gmo

Binary file not shown.

BIN
po/de.gmo

Binary file not shown.

Binary file not shown.

View File

@ -27,10 +27,10 @@
#
msgid ""
msgstr ""
"Project-Id-Version: trader 7.15\n"
"Project-Id-Version: trader 7.16\n"
"Report-Msgid-Bugs-To: J.Zaitseff@zap.org.au\n"
"POT-Creation-Date: 2021-01-12 11:31+1100\n"
"PO-Revision-Date: 2021-01-12 11:31+1100\n"
"POT-Creation-Date: 2021-01-19 16:43+1100\n"
"PO-Revision-Date: 2021-01-19 16:43+1100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"Language: en@quot\n"
@ -43,12 +43,12 @@ msgstr ""
#. your own language (recommended) or keep it the same as the English
#. version. Feel free to look through other translations to see how
#. others have done this.
#: data/trader.desktop.in:23 src/intf.c:611
#: data/trader.desktop.in:23 data/trader.appdata.xml.in:26 src/intf.c:611
#, c-format
msgid "Star Traders"
msgstr "Star Traders"
#: data/trader.desktop.in:24
#: data/trader.desktop.in:24 data/trader.appdata.xml.in:27
msgid "Play Star Traders, a simple game of interstellar trading"
msgstr "Play Star Traders, a simple game of interstellar trading"
@ -58,22 +58,34 @@ msgstr "Play Star Traders, a simple game of interstellar trading"
msgid "game;interstellar;trading;strategy;"
msgstr "game;interstellar;trading;strategy;"
#: src/trader.c:235
#: data/trader.appdata.xml.in:29
msgid ""
"Star Traders is a simple game of interstellar trading, where the objective is to create companies, buy and sell shares, borrow "
"and repay money, in order to become the wealthiest player (the winner)."
msgstr ""
"Star Traders is a simple game of interstellar trading, where the objective is to create companies, buy and sell shares, borrow "
"and repay money, in order to become the wealthiest player (the winner)."
#: data/trader.appdata.xml.in:48
msgid "John Zaitseff"
msgstr "John Zaitseff"
#: src/trader.c:238
#, c-format
msgid "%s: invalid value for --max-turn: '%s'\n"
msgstr "%s: invalid value for --max-turn: %s\n"
#: src/trader.c:251
#: src/trader.c:254
#, c-format
msgid "%s: invalid operand '%s'\n"
msgstr "%s: invalid operand %s\n"
#: src/trader.c:260
#: src/trader.c:263
#, c-format
msgid "%s: invalid game number '%s'\n"
msgstr "%s: invalid game number %s\n"
#: src/trader.c:269
#: src/trader.c:272
#, c-format
msgid "%s: extra operand '%s'\n"
msgstr "%s: extra operand %s\n"
@ -81,7 +93,7 @@ msgstr "%s: extra operand %s\n"
#. TRANSLATORS: "John Zaitseff" [IPA d͡ʒɒn ˈzaɪ̯t͡səf] is the proper
#. name of the author. The IPA pronunciation in this comment is in
#. UTF-8 encoding.
#: src/trader.c:284
#: src/trader.c:287
#, c-format
msgid ""
"Star Traders (%s) %s\n"
@ -108,28 +120,28 @@ msgstr ""
"modify and/or distribute it under certain conditions. This program has\n"
"NO WARRANTY, to the extent permitted by law; see the License for details.\n"
#: src/trader.c:308
#: src/trader.c:311
#, c-format
msgid "%s: Try '%s --help' for more information.\n"
msgstr "%s: Try %s --help for more information.\n"
#: src/trader.c:311
#: src/trader.c:314
#, c-format
msgid "Usage: %s [OPTION ...] [GAME]\n"
msgstr "Usage: %s [OPTION ...] [GAME]\n"
#: src/trader.c:312
#, c-format
msgid ""
"Play Star Traders, a simple game of interstellar trading.\n"
"\n"
msgstr ""
"Play Star Traders, a simple game of interstellar trading.\n"
"\n"
#: src/trader.c:315
#, c-format
msgid ""
"Play Star Traders, a simple game of interstellar trading.\n"
"\n"
msgstr ""
"Play Star Traders, a simple game of interstellar trading.\n"
"\n"
#: src/trader.c:318
#, c-format
msgid ""
"Options:\n"
" -V, --version output version information and exit\n"
" -h, --help display this help and exit\n"
@ -144,7 +156,7 @@ msgstr ""
" --max-turn=NUM set the number of turns to NUM\n"
"\n"
#: src/trader.c:322
#: src/trader.c:325
#, c-format
msgid ""
"If GAME is specified as a number between 1 and 9, load and continue\n"
@ -161,7 +173,7 @@ msgstr ""
#. with the (translated) text "Report translation bugs to
#. <ADDRESS>\n", with ADDRESS replaced with either an email
#. address or web URL for reporting bugs in your translation.
#: src/trader.c:334
#: src/trader.c:337
#, c-format
msgid "Report bugs to %s <%s>.\n"
msgstr "Report bugs to %s <%s>.\n"
@ -171,19 +183,19 @@ msgstr "Report bugs to %s <%s>.\n"
#. (translated) text "Report translation bugs to <ADDRESS>\n",
#. with ADDRESS replaced with either an email address or web URL
#. for reporting bugs in your translation.
#: src/trader.c:341
#: src/trader.c:344
#, c-format
msgid "Report bugs to <%s>.\n"
msgstr "Report bugs to <%s>.\n"
#. TRANSLATORS: The first %s is for packagers and may be
#. something like "Debian".
#: src/trader.c:346
#: src/trader.c:349
#, c-format
msgid "Report %s bugs to <%s>.\n"
msgstr "Report %s bugs to <%s>.\n"
#: src/trader.c:349
#: src/trader.c:352
#, c-format
msgid "Star Traders home page: <%s>.\n"
msgstr "Star Traders home page: <%s>.\n"
@ -1665,31 +1677,31 @@ msgctxt "answer"
msgid "No"
msgstr "No"
#: src/utils.c:481 src/utils.c:502
#: src/utils.c:489 src/utils.c:510
#, c-format
msgid "%s: "
msgstr "%s: "
#: src/utils.c:507
#: src/utils.c:515
msgid ": "
msgstr ": "
#: src/utils.c:520
#: src/utils.c:528
#, c-format
msgid "out of memory"
msgstr "out of memory"
#: src/utils.c:1235
#: src/utils.c:1265
#, c-format
msgid "xmbstowcs: '%s'"
msgstr "xmbstowcs: %s"
#: src/utils.c:1275
#: src/utils.c:1305
#, c-format
msgid "xwcrtomb: NUL"
msgstr "xwcrtomb: NUL"
#: src/utils.c:1280
#: src/utils.c:1310
#, c-format
msgid "xwcrtomb: '%lc'"
msgstr "xwcrtomb: %lc"

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
po/eo.gmo

Binary file not shown.

BIN
po/fi.gmo

Binary file not shown.

BIN
po/fr.gmo

Binary file not shown.

BIN
po/hr.gmo

Binary file not shown.

BIN
po/hu.gmo

Binary file not shown.

BIN
po/nb.gmo

Binary file not shown.

Binary file not shown.

BIN
po/ru.gmo

Binary file not shown.

BIN
po/sr.gmo

Binary file not shown.

BIN
po/sv.gmo

Binary file not shown.

View File

@ -6,9 +6,9 @@
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: trader 7.15\n"
"Project-Id-Version: trader 7.16\n"
"Report-Msgid-Bugs-To: J.Zaitseff@zap.org.au\n"
"POT-Creation-Date: 2021-01-12 11:31+1100\n"
"POT-Creation-Date: 2021-01-19 16:43+1100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@ -22,12 +22,12 @@ msgstr ""
#. your own language (recommended) or keep it the same as the English
#. version. Feel free to look through other translations to see how
#. others have done this.
#: data/trader.desktop.in:23 src/intf.c:611
#: data/trader.desktop.in:23 data/trader.appdata.xml.in:26 src/intf.c:611
#, c-format
msgid "Star Traders"
msgstr ""
#: data/trader.desktop.in:24
#: data/trader.desktop.in:24 data/trader.appdata.xml.in:27
msgid "Play Star Traders, a simple game of interstellar trading"
msgstr ""
@ -37,22 +37,32 @@ msgstr ""
msgid "game;interstellar;trading;strategy;"
msgstr ""
#: src/trader.c:235
#: data/trader.appdata.xml.in:29
msgid ""
"Star Traders is a simple game of interstellar trading, where the objective is to create companies, buy and sell shares, borrow "
"and repay money, in order to become the wealthiest player (the winner)."
msgstr ""
#: data/trader.appdata.xml.in:48
msgid "John Zaitseff"
msgstr ""
#: src/trader.c:238
#, c-format
msgid "%s: invalid value for --max-turn: '%s'\n"
msgstr ""
#: src/trader.c:251
#: src/trader.c:254
#, c-format
msgid "%s: invalid operand '%s'\n"
msgstr ""
#: src/trader.c:260
#: src/trader.c:263
#, c-format
msgid "%s: invalid game number '%s'\n"
msgstr ""
#: src/trader.c:269
#: src/trader.c:272
#, c-format
msgid "%s: extra operand '%s'\n"
msgstr ""
@ -60,7 +70,7 @@ msgstr ""
#. TRANSLATORS: "John Zaitseff" [IPA d͡ʒɒn ˈzaɪ̯t͡səf] is the proper
#. name of the author. The IPA pronunciation in this comment is in
#. UTF-8 encoding.
#: src/trader.c:284
#: src/trader.c:287
#, c-format
msgid ""
"Star Traders (%s) %s\n"
@ -76,24 +86,24 @@ msgid ""
"NO WARRANTY, to the extent permitted by law; see the License for details.\n"
msgstr ""
#: src/trader.c:308
#: src/trader.c:311
#, c-format
msgid "%s: Try '%s --help' for more information.\n"
msgstr ""
#: src/trader.c:311
#: src/trader.c:314
#, c-format
msgid "Usage: %s [OPTION ...] [GAME]\n"
msgstr ""
#: src/trader.c:312
#: src/trader.c:315
#, c-format
msgid ""
"Play Star Traders, a simple game of interstellar trading.\n"
"\n"
msgstr ""
#: src/trader.c:315
#: src/trader.c:318
#, c-format
msgid ""
"Options:\n"
@ -104,7 +114,7 @@ msgid ""
"\n"
msgstr ""
#: src/trader.c:322
#: src/trader.c:325
#, c-format
msgid ""
"If GAME is specified as a number between 1 and 9, load and continue\n"
@ -118,7 +128,7 @@ msgstr ""
#. with the (translated) text "Report translation bugs to
#. <ADDRESS>\n", with ADDRESS replaced with either an email
#. address or web URL for reporting bugs in your translation.
#: src/trader.c:334
#: src/trader.c:337
#, c-format
msgid "Report bugs to %s <%s>.\n"
msgstr ""
@ -128,19 +138,19 @@ msgstr ""
#. (translated) text "Report translation bugs to <ADDRESS>\n",
#. with ADDRESS replaced with either an email address or web URL
#. for reporting bugs in your translation.
#: src/trader.c:341
#: src/trader.c:344
#, c-format
msgid "Report bugs to <%s>.\n"
msgstr ""
#. TRANSLATORS: The first %s is for packagers and may be
#. something like "Debian".
#: src/trader.c:346
#: src/trader.c:349
#, c-format
msgid "Report %s bugs to <%s>.\n"
msgstr ""
#: src/trader.c:349
#: src/trader.c:352
#, c-format
msgid "Star Traders home page: <%s>.\n"
msgstr ""
@ -1480,31 +1490,31 @@ msgctxt "answer"
msgid "No"
msgstr ""
#: src/utils.c:481 src/utils.c:502
#: src/utils.c:489 src/utils.c:510
#, c-format
msgid "%s: "
msgstr ""
#: src/utils.c:507
#: src/utils.c:515
msgid ": "
msgstr ""
#: src/utils.c:520
#: src/utils.c:528
#, c-format
msgid "out of memory"
msgstr ""
#: src/utils.c:1235
#: src/utils.c:1265
#, c-format
msgid "xmbstowcs: '%s'"
msgstr ""
#: src/utils.c:1275
#: src/utils.c:1305
#, c-format
msgid "xwcrtomb: NUL"
msgstr ""
#: src/utils.c:1280
#: src/utils.c:1310
#, c-format
msgid "xwcrtomb: '%lc'"
msgstr ""

View File

@ -1147,6 +1147,7 @@ am__leading_dot = @am__leading_dot@
am__quote = @am__quote@
am__tar = @am__tar@
am__untar = @am__untar@
appdatadir = @appdatadir@
bindir = @bindir@
build = @build@
build_alias = @build_alias@