--- pioneers-0.12.2.orig/docs/Makefile.am +++ pioneers-0.12.2/docs/Makefile.am @@ -17,4 +17,4 @@ # along with this program; if not, write to the Free Software # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA -man_MANS += docs/pioneers.6 docs/pioneers-server-gtk.6 docs/pioneers-server-console.6 docs/pioneersai.6 docs/pioneers-meta-server.6 +man_MANS += docs/pioneers.6 docs/pioneers-server-gtk.6 docs/pioneers-server-console.6 docs/pioneersai.6 docs/pioneers-meta-server.6 docs/pioneers-editor.6 --- pioneers-0.12.2.orig/docs/pioneers-editor.6 +++ pioneers-0.12.2/docs/pioneers-editor.6 @@ -0,0 +1,64 @@ +.TH pioneers-editor 6 "June 19, 2008" "pioneers" +.SH NAME +pioneers-editor \- Editor for the Pioneers boardgame + +.SH SYNOPSIS +.B pioneers-editor +.BI [ filename ] + +.SH DESCRIPTION +This manual page documents briefly the +.B pioneers-editor +command. +.PP +Pioneers is an implementation of the popular, award-winning "Settlers of +Catan" board game for the GNOME desktop environment. It uses a client/server +model for networked play of between two and eight players. You will need to +connect to a machine running either \fBpioneers-server-gtk\fP or +\fBpioneers-server-console\fP to play. An AI client, \fBpioneersai\fP, is +also available. +.PP +.B Pioneers-editor +can be used to create new board layouts. Clicking on the plus and minus signs +on the side of the board will increase and decrease the board size +respectively. Left clicking on a tile allows to select the terrain type; +Middle or right clicking allows setting of the chit number or port type and +orientation. The chit number can also be set by pressing the number key(s) +while the pointer is hovering over the tile. +.PP +In the settings tab, several game settings can be adjusted. + +.SH PLAYING +Games created with pioneers-editor can be played with pioneers-server-gtk and +pioneers-server-console, if they are installed in the global game directory. +Alternatively, they can be played with pioneers-server-console, by using the +.I \-\-file +option. + +.SH OPTIONS +Pioneers-editor accepts the standard GTK+/GNOME commandline options. See +.I pioneers-editor --help +for details. + +.SH FILES +.B /usr/share/games/pioneers/*.game +.RS +Global game files. Games which are installed here can be selected by title, +and played from pioneers-server-gtk. + +.SH BUGS +Pioneers allows no-setup nodes, where settlements cannot be placed during the +setup phase. Pioneers-editor is not able to set such nodes. As a workaround, +they can be added manually to the game file as a last editing step. + +.SH AUTHOR +This manual page was written by Bas Wijnen . +Pioneers was written by Dave Cole , Andy Heroff +, and Roman Hodek , with +contributions from many other developers on the Internet; see the +AUTHORS file in the pioneers distribution for a complete list of +contributing authors. + +.SH SEE ALSO +.BR pioneers(6) ", " pioneers-server-gtk(6) ", " pioneers-server-console(6) ", " +.B pioneersai(6) --- pioneers-0.12.2.orig/debian/rules +++ pioneers-0.12.2/debian/rules @@ -0,0 +1,102 @@ +#!/usr/bin/make -f +# Based on sample debian/rules by Joey Hess. + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + +export AUTOMAKE = automake-1.10 +export ACLOCAL = aclocal-1.10 + +LIBFLAGS = GNOME2_LIBS=-lgnome-2 GTK2_LIBS=-lgtk-x11-2.0 GLIB2_LIBS=-lglib-2.0 + +CFLAGS = -Wall -g + +ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) + CFLAGS += -O0 +else + CFLAGS += -O2 +endif + +ifneq (,$(findstring debug,$(DEB_BUILD_OPTIONS))) + CONFIGUREFLAGS += --enable-maintainer-mode +endif + +DEB_HOST_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE) +DEB_BUILD_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE) + +ifeq ($(DEB_BUILD_GNU_TYPE), $(DEB_HOST_GNU_TYPE)) + CONFIGUREFLAGS += --build $(DEB_HOST_GNU_TYPE) +else + CONFIGUREFLAGS += --build $(DEB_BUILD_GNU_TYPE) --host $(DEB_HOST_GNU_TYPE) +endif + + +AUTO_JUNK = config.guess config.sub configure depcomp INSTALL acinclude.m4 \ + install-sh ltmain.sh missing mkinstalldirs aclocal.m4 config.h.in \ + compile + +build: build-stamp +build-stamp: + dh_testdir + if diff debian/copyright AUTHORS | grep ^'>' >&2 ; then \ + echo >&2 "The above lines are present in the AUTHORS file, but not in debian/copyright. Please fix this" ; \ + exit 1 ; \ + fi + # Commands to compile the package. + # --enable-maintainer-mode is implicit for autogen.sh + # So don't run configure from it. + NOCONFIGURE=true ./autogen.sh + ./configure --prefix=/usr --bindir=/usr/games --mandir=/usr/share/man \ + $(CONFIGUREFLAGS) --enable-warnings \ + CFLAGS="$(CFLAGS)" --disable-dependency-tracking + $(MAKE) $(LIBFLAGS) + rsvg --width 32 --height 32 client/gtk/data/pioneers.svg pioneers32.png + convert pioneers32.png pioneers.xpm + rm pioneers32.png + rsvg --width 32 --height 32 server/gtk/pioneers-server.svg pioneers-server32.png + convert pioneers-server32.png pioneers-server.xpm + rm pioneers-server32.png + rsvg --width 32 --height 32 editor/gtk/pioneers-editor.svg pioneers-editor32.png + convert pioneers-editor32.png pioneers-editor.xpm + rm pioneers-editor32.png + touch build-stamp + +clean: + # Commands to clean up after the build process. + dh_testdir + dh_testroot + rm -f build-stamp install-stamp pioneers.xpm pioneers-server.xpm pioneers-editor.xpm debian/po/templates.pot +ifneq ($(wildcard Makefile),) + $(MAKE) maintainer-clean +endif +ifneq ($(wildcard ${AUTO_JUNK}),) + rm $(wildcard ${AUTO_JUNK}) +endif + find . -name Makefile.in -exec rm {} \; + dh clean + # Translators insist on having templates.pot in the source package, + # so it must be created during clean. + debconf-updatepo + +install: install-stamp +install-stamp: build-stamp + dh_testdir + dh_testroot + dh_prep + dh_installdirs + # Commands to install the package into debian/tmp. + $(MAKE) DESTDIR=$(CURDIR)/debian/tmp install $(LIBFLAGS) + install -D -m644 server/*.game debian/tmp/usr/share/games/pioneers + install -D -m644 pioneers.xpm debian/tmp/usr/share/pixmaps/pioneers-client.xpm + install -D -m644 pioneers-server.xpm debian/tmp/usr/share/pixmaps/pioneers-server.xpm + install -D -m644 pioneers-editor.xpm debian/tmp/usr/share/pixmaps/pioneers-editor.xpm + dh_install --fail-missing -X usr/share/man/man6/ + dh_installman + dh_installdocs -A README + touch install-stamp + +# Build architecture-independent files here. +binary-indep binary-arch binary: build install + dh $@ + +.PHONY: build clean binary-indep binary-arch binary install --- pioneers-0.12.2.orig/debian/pioneers-console.config +++ pioneers-0.12.2/debian/pioneers-console.config @@ -0,0 +1,67 @@ +#!/bin/sh -e + +CONFIG_FILE=/etc/default/pioneers-console + +. /usr/share/debconf/confmodule + +# Get current values of the settings. +if [ -r "$CONFIG_FILE" ] ; then + . "$CONFIG_FILE" +fi + +# This function will read variable $1 and set it as default to debconf +# question $2. If the variable $1 is unset or empty, the template's default +# will be used. +conffile_parse () +{ + variable="$1" + question="$2" + # Read the default from the config file. + default="`eval 'echo $'"$variable"`" + + # Correct boolean values so debconf understands them. + if [ "$default" ] ; then + db_metaget "$question" type + if [ "$RET" = boolean ] ; then + case "$default" in + yes|Yes|YES|true|True|TRUE|1) + default=true + ;; + no|No|NO|false|False|FALSE|0) + default=false + ;; + *) + echo "Warning: value '$default' of variable '$variable' not a boolean: ignored." + default= + ;; + esac + fi + fi + + # If we still have a default to set, do so. + if [ "$default" ] ; then + db_set "$question" "$default" + fi +} + +# Parse values from the config file and use them as defaults. +conffile_parse PORT_RANGE pioneers-console/meta-server-ports low +conffile_parse META_SERVER_NAME pioneers-console/meta-server-name low +conffile_parse META_SERVER_ARGS pioneers-meta-server/meta-server-args low +conffile_parse RUN_META_SERVER pioneers-console/run-meta-server low + +# Ask the questions. +db_input low pioneers-console/run-meta-server || true +db_go +db_get pioneers-console/run-meta-server +if [ "$RET" = false ] ; then exit 0 ; fi + +db_input low pioneers-console/meta-server-ports || true +db_go + +db_get pioneers-console/meta-server-ports +if [ ! -z "$RET" ] ; then + db_input low pioneers-console/meta-server-name || true +fi +db_input low pioneers-meta-server/meta-server-args || true +db_go --- pioneers-0.12.2.orig/debian/release-checklist +++ pioneers-0.12.2/debian/release-checklist @@ -0,0 +1,57 @@ +#!/bin/sh -ex +# What to do for a release of a new version in Debian: +#- Get released tarball +cd "`dirname "$0"`"/.. +uscan +dir="`mktemp -d`" +name="`cd .. && echo pioneers*orig.tar.gz`" +if [ -z "${name##*\**}" ] ; then + # Not a new release, use the old one + (cd "$dir" && apt-get source --download-only pioneers) +else + cp ../pioneers*orig.tar.gz "$dir/" +fi +name="`cd "$dir" && echo pioneers*orig.tar.gz`" +tar -xzf - -C "$dir" < "$dir/$name" +pdir="`cd "$dir" && echo pioneers-[0-9]*`" + +#- Copy debian directory from subversion +svn export debian "$dir/$pdir/debian" + +cd "$dir/$pdir" + +#- dch, mark bugs as closed +dch -i + +#- pdebuild +pdebuild + +#- read ../pioneers*diff.gz +vim ../pioneers*diff.gz + +# remove changes file generated by pdebuild, so a new one is created +rm ../pioneers*changes + +#- debuild +debuild -uc -us + +# sign +cd .. +debsign -k627CCF95 *changes + +#- install, test +sudo dpkg -i *deb +pioneers-server-console & +pioneersai & +pioneersai & +pioneersai & +pioneers + +#- piuparts +piuparts *deb + +#- upload +#- update subversion debian directory +#- svn copy https://svn.sourceforge.net/svnroot/pio/trunk/pioneers/debian \ +# https://svn.sourceforge.net/svnroot/pio/tags/debian-release-X.XX.XX-1 \ +# -m "tag debian release" --- pioneers-0.12.2.orig/debian/pioneers-console.postinst +++ pioneers-0.12.2/debian/pioneers-console.postinst @@ -0,0 +1,49 @@ +#!/bin/sh -e + +CONFIG_FILE=/etc/default/pioneers-console + +. /usr/share/debconf/confmodule + +# Get current values of the settings. +if test -e "$CONFIG_FILE" ; then + . "$CONFIG_FILE" +else + cat > "$CONFIG_FILE" << EOF +# This file contains the settings for the pioneers meta-server. +# It is used by /etc/init.d/pioneers-console, for starting and stopping +# the meta-server. +# See /etc/init.d/pioneers-console for possible variables to assign. +# If no value is given here, the default from that file is used. +# +# This file is sourced as a shell script, so no spaces are allowed +# around the = sign. +EOF +fi + +# This function will change variable $1 to the result of debconf question $2. +# If it already had the right setting, the file is not touched. +conffile_edit () +{ + variable="$1" + question="$2" + # Get the answer to the debconf question. + db_get "$question" || return 0 + # Do nothing if the value hasn't changed. + test "$RET" != "`eval 'echo $'"$variable"`" || return 0 + + # If the setting isn't in the conffile yet, add it. + if [ ! -r "$CONFIG_FILE" ] || ! grep -q "^$variable=" "$CONFIG_FILE" ; then + echo "$variable='$RET'" >> "$CONFIG_FILE" + return 0 + fi + + # Otherwise, edit the conffile to contain the new setting. + sed -i "s/^\($variable=\).*\$/\\1'$RET'/" "$CONFIG_FILE" +} + +conffile_edit RUN_META_SERVER pioneers-console/run-meta-server +conffile_edit PORT_RANGE pioneers-console/meta-server-ports +conffile_edit META_SERVER_NAME pioneers-console/meta-server-name +conffile_edit META_SERVER_ARGS pioneers-console/meta-server-args + +#DEBHELPER# --- pioneers-0.12.2.orig/debian/pioneers-console-data.install +++ pioneers-0.12.2/debian/pioneers-console-data.install @@ -0,0 +1,3 @@ +debian/tmp/usr/share/locale +debian/tmp/usr/share/games/pioneers/*.game +debian/tmp/usr/share/games/pioneers/computer_names --- pioneers-0.12.2.orig/debian/pioneers-console.manpages +++ pioneers-0.12.2/debian/pioneers-console.manpages @@ -0,0 +1,3 @@ +debian/tmp/usr/share/man/man6/pioneers-server-console.6 +debian/tmp/usr/share/man/man6/pioneersai.6 +debian/tmp/usr/share/man/man6/pioneers-meta-server.6 --- pioneers-0.12.2.orig/debian/pioneers-data.install +++ pioneers-0.12.2/debian/pioneers-data.install @@ -0,0 +1,7 @@ +debian/tmp/usr/share/games/pioneers/themes +debian/tmp/usr/share/gnome/help/pioneers +debian/tmp/usr/share/omf/pioneers +debian/tmp/usr/share/pixmaps/pioneers +debian/tmp/usr/share/pixmaps/pioneers-editor.png +debian/tmp/usr/share/pixmaps/pioneers-server.png +debian/tmp/usr/share/pixmaps/pioneers.png --- pioneers-0.12.2.orig/debian/copyright +++ pioneers-0.12.2/debian/copyright @@ -0,0 +1,53 @@ +This package was first debianized by Dave Cole dave@dccs.com.au on +Sat, 8 May 1999 20:35:36 +1000. + +It was downloaded from + http://sourceforge.net/project/showfiles.php?group_id=5095 + +Although the debian packaging is not in the release tarball, it is part of the +upstream source, and is covered by the same license. Copyright holders of the +packaging are: +Dave Cole +Andy Heroff +Jeff Breidenbach +Bas Wijnen + +This software is copyright (c) 2000-2006 by: +Dave Cole +Andy Heroff +Roman Hodek +Dan Egnor +Steve Langasek +Bibek Sahu +Roderick Schertler +Jeff Breidenbach +David Fallon +Matt Waggoner +Geoff Hanson +Bas Wijnen +Roland Clobus +Brian Wellington + +This program is free software; you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation; either version 2 of the License, or +(at your option) any later version. + +This program is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with this program; if not, write to the Free Software +Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + +On Debian systems, the complete text of the GNU General Public +License can be found in the following files: +Version 2: /usr/share/common-licenses/GPL-2 +Version 3: /usr/share/common-licenses/GPL-3 +The latest version: /usr/share/common-licenses/GPL + +Note that you can choose any version later than 3 as well once they are +released. The above links are only provided for your convenience, not to +suggest an complete list. --- pioneers-0.12.2.orig/debian/compat +++ pioneers-0.12.2/debian/compat @@ -0,0 +1 @@ +7 --- pioneers-0.12.2.orig/debian/pioneers-help.debhelper.log +++ pioneers-0.12.2/debian/pioneers-help.debhelper.log @@ -0,0 +1 @@ +dh_scrollkeeper --- pioneers-0.12.2.orig/debian/pioneers.manpages +++ pioneers-0.12.2/debian/pioneers.manpages @@ -0,0 +1,3 @@ +debian/tmp/usr/share/man/man6/pioneers.6 +debian/tmp/usr/share/man/man6/pioneers-server-gtk.6 +debian/tmp/usr/share/man/man6/pioneers-editor.6 --- pioneers-0.12.2.orig/debian/pioneers-console.install +++ pioneers-0.12.2/debian/pioneers-console.install @@ -0,0 +1,3 @@ +debian/tmp/usr/games/pioneersai +debian/tmp/usr/games/pioneers-server-console +debian/tmp/usr/games/pioneers-meta-server --- pioneers-0.12.2.orig/debian/pioneers-console.templates +++ pioneers-0.12.2/debian/pioneers-console.templates @@ -0,0 +1,37 @@ +Template: pioneers-console/run-meta-server +Type: boolean +Default: false +_Description: Run the pioneers meta-server? + Pioneers contains a meta-server, which can be used to find networked games. + The meta-server needs to run in a central location, so that all players can + find it. There is a public meta-server at pioneers.debian.net. Most people + do not need to run a meta-server on their computer. + +Template: pioneers-console/meta-server-ports +Type: string +Default: 5560-5569 +_Description: Port range for creating new games on the meta-server: + The meta-server can create new games, so players don't need to install and + run the pioneers server. The ports which are used for these games can be + specified. If this field is left empty, the meta-server will disable its + game creation functionality. + . + If the value is not empty, it must be two port numbers, separated by a minus + sign. + +Template: pioneers-console/meta-server-name +Type: string +Default: +_Description: Server name for created games: + In some cases, the name the meta-server uses for itself when creating new + games is incorrect. If this field is not left empty, it is used to override + the detected hostname. + +Template: pioneers-console/meta-server-arguments +Type: string +Default: +_Description: Extra arguments to pass to the meta-server: + These arguments are passed to the meta-server. There are only two sensible + arguments: + * --syslog-debug: Send debugging output to syslog + * --redirect: Redirect clients to another meta-server --- pioneers-0.12.2.orig/debian/pioneers-console.init +++ pioneers-0.12.2/debian/pioneers-console.init @@ -0,0 +1,121 @@ +#! /bin/sh + +### BEGIN INIT INFO +# Provides: pioneers-console +# Required-Start: $syslog $network +# Required-Stop: $syslog $network +# Default-Start: 2 3 4 5 +# Default-Stop: 0 1 6 +# Short-Description: Meta-server for Pioneers +# Description: Start a meta-server for Pioneers, to allow +# clients to find servers. +### END INIT INFO + +# The defaults below can be overridden in /etc/default/pioneers-console +CONFIG_FILE=/etc/default/pioneers-console + +# Set this to "true" (in $CONFIG_FILE) to actually run the meta-server +RUN_META_SERVER="false" + +# Port range +PORT_RANGE="5560-5569" + +# Arguments to meta-server. +META_SERVER_ARGS="" + +# Reported hostname for servers started by the meta-server. +META_SERVER_NAME="`dnsdomainname --fqdn`" + +# Arguments to start-stop-daemon. +ARGS="--make-pidfile --quiet --chuid nobody:nogroup" + +# File for storing the pid. You probably don't need to change this. +PIDFILE=/var/run/pioneers-meta-server.pid + +# End of variable list. + +if test -r $CONFIG_FILE; then + . $CONFIG_FILE +fi + +test -z "$PORT_RANGE" || PORT_RANGE="--port-range $PORT_RANGE" +test -z "$META_SERVER_NAME" || META_SERVER_NAME="`dnsdomainname --fqdn`" + +export PIONEERS_META_SERVER +NAME="Pioneers meta-server" +DAEMON=/usr/games/pioneers-meta-server +ARGS="--pidfile $PIDFILE --exec $DAEMON $ARGS" +START_ARGS="--start $ARGS -- --daemon $PORT_RANGE $META_SERVER_ARGS --servername $META_SERVER_NAME" +STOP_ARGS="--stop $ARGS" + +if test ! -x "$DAEMON"; then + echo "$DAEMON does not exist" + exit 0 +fi + +case "$1" in + start) + if test ! "$RUN_META_SERVER" = "true"; then + echo "Pioneers meta server is disabled in $CONFIG_FILE." + exit 0 + fi + if start-stop-daemon --test $START_ARGS; then + echo -n "Starting $NAME..." + if start-stop-daemon $START_ARGS; then + echo "done." + else + echo "failed." + fi + else + echo "Not starting $NAME: already running" + fi + ;; + stop) + echo -n "Stopping $NAME: pioneers-meta-server..." + if start-stop-daemon $STOP_ARGS ; then + echo "done." + else + echo "failed." + fi + ;; + restart|force-reload) + if test ! "$RUN_META_SERVER" = "true"; then + echo "Pioneers meta server is disabled in $CONFIG_FILE." + exit 0 + fi + echo -n "Restarting $NAME..." + if start-stop-daemon $STOP_ARGS --oknodo ; then + sleep 2 + if start-stop-daemon $START_ARGS; then + echo "done." + else + echo "failed." + fi + else + echo "failed." + fi + ;; + status) + if start-stop-daemon --test $START_ARGS; then + echo "$NAME is not running." + # Use proper exit codes, see LSB 3.1.0 + if [ -e $PIDFILE ] ; then + exit 1 # not running, but pidfile exists + else + exit 3 # not running + fi + elif start-stop-daemon --test $STOP_ARGS >/dev/null ; then + echo "$NAME is running." + exit 0 # running + else + echo "Cannot get status of $NAME." + exit 4 # status is unknown + fi + ;; + *) + echo "Usage: /etc/init.d/pioneers-console {start|stop|restart|force-reload|status}" + exit 1 + ;; +esac + +exit 0 --- pioneers-0.12.2.orig/debian/pioneers.install +++ pioneers-0.12.2/debian/pioneers.install @@ -0,0 +1,9 @@ +debian/tmp/usr/games/pioneers +debian/tmp/usr/games/pioneers-server-gtk +debian/tmp/usr/games/pioneers-editor +debian/tmp/usr/share/pixmaps/pioneers-client.xpm +debian/tmp/usr/share/pixmaps/pioneers-server.xpm +debian/tmp/usr/share/pixmaps/pioneers-editor.xpm +debian/tmp/usr/share/applications/pioneers-editor.desktop +debian/tmp/usr/share/applications/pioneers-server.desktop +debian/tmp/usr/share/applications/pioneers.desktop --- pioneers-0.12.2.orig/debian/control +++ pioneers-0.12.2/debian/control @@ -0,0 +1,63 @@ +Source: pioneers +Section: games +Priority: optional +Maintainer: Bas Wijnen +Uploaders: Steve Langasek , Roman Hodek +Build-Depends: debhelper (>= 7.0.0), libgnome2-dev, scrollkeeper, gnome-common, imagemagick, librsvg2-bin, netpbm, libgtk2.0-dev, automake1.10, autoconf (>= 2.60), po-debconf +Standards-Version: 3.8.2 +Homepage: http://pio.sourceforge.net/ +Vcs-Svn: https://pio.svn.sourceforge.net/svnroot/pio/trunk/pioneers +Vcs-Browser: http://pio.svn.sourceforge.net/viewvc/pio/trunk/pioneers/ + +Package: pioneers +Architecture: any +Depends: pioneers-console (=${binary:Version}), pioneers-data (=${source:Version}), ${shlibs:Depends}, ${misc:Depends} +Recommends: yelp +Provides: pioneers-server-gtk, pioneers-client, pioneers-help +Conflicts: pioneers-server-gtk (<< 0.12), pioneers-client (<< 0.12), pioneers-help (<< 0.12) +Replaces: pioneers-server-gtk (<< 0.12), pioneers-client (<< 0.12), pioneers-help (<< 0.12) +Description: the Settlers of Catan board game + Pioneers is a computer implementation of the Settlers of Catan board game. + It can be played over the internet. + . + The game includes a server, a client, a computer player, an editor and a + meta-server (for locating running servers). + +Package: pioneers-console +Architecture: any +Depends: pioneers-console-data (=${source:Version}), ${shlibs:Depends}, ${misc:Depends} +Suggests: pioneers +Provides: pioneers-ai, pioneers-meta-server, pioneers-server-console +Conflicts: pioneers-ai (<< 0.12), pioneers-meta-server (<< 0.12), pioneers-server-console (<< 0.12) +Replaces: pioneers-ai (<< 0.12), pioneers-meta-server (<< 0.12), pioneers-server-console (<< 0.12) +Description: the Settlers of Catan board game - console parts + Pioneers is a computer implementation of the Settlers of Catan board game. + It can be played over the internet. + . + This package contains the console-parts of the game: the computer player, the + console server and the meta-server. + +Package: pioneers-data +Architecture: all +Depends: ${misc:Depends} +Recommends: pioneers +Conflicts: pioneers-server-data (<< 0.12) +Replaces: pioneers-server-data (<< 0.12) +Description: the Settlers of Catan board game - data files + Pioneers is a computer implementation of the Settlers of Catan board game. + It can be played over the internet. + . + This package contains architecture independent data for the game. + +Package: pioneers-console-data +Architecture: all +Depends: ${misc:Depends} +Recommends: pioneers-console +Conflicts: pioneers-server-data (<< 0.12), pioneers-console (<< 0.11.2) +Replaces: pioneers-server-data (<< 0.12), pioneers-console (<< 0.11.2) +Description: the Settlers of Catan board game - data files + Pioneers is a computer implementation of the Settlers of Catan board game. + It can be played over the internet. + . + This package contains architecture independent data for the console parts + of the game. --- pioneers-0.12.2.orig/debian/changelog +++ pioneers-0.12.2/debian/changelog @@ -0,0 +1,559 @@ +pioneers (0.12.2-5) unstable; urgency=low + + * Don't ship non-conffile configuration file /etc/default/pioneers-console. + Generate it if it doesn't exist (closes: #533597). + * Stop generating transitional packages. + * Make meta-server init script more verbose; don't restart meta-server when + it's already running. + * Update standards version to 3.8.2. + * Remove long-obsolete source and diff targets from debian/rules. + + -- Bas Wijnen Thu, 25 Jun 2009 15:59:08 +0200 + +pioneers (0.12.2-4) unstable; urgency=low + + * Add French translation. (closes: #486075) + * Add manual page for pioneers-editor. + * Updated standards version to 3.8.0 (no changes needed). + + -- Bas Wijnen Fri, 27 Jun 2008 18:46:13 +0200 + +pioneers (0.12.2-3) unstable; urgency=low + + * Put templates.pot in source package, because translators don't want it any + other way. + * Fix bashisms in maintainer scripts. (closes: 485511) + + -- Bas Wijnen Tue, 10 Jun 2008 20:05:41 +0200 + +pioneers (0.12.2-2) unstable; urgency=low + + * Add Russion debconf translation. (closes: #484332) + + -- Bas Wijnen Wed, 04 Jun 2008 13:13:33 +0200 + +pioneers (0.12.2-1) unstable; urgency=low + + * New upstream release. (closes: #480527) + * Let init script depend on $syslog. (closes: #472336) + * Add dummy packages for easy upgrading. (closes: #466387) + * Add debconf questions to edit /etc/default/pioneers-console for + Galician (closes: #480963), + Basque (closes: #481023), + Vietnamese (closes: #481475), + German (closes: #482451), + Portuguese (closes: #482603), + Czech (closes: #482802), + * Improved debconf template, thanks to Helge Kreutzmann (closes: #482452). + * The debconf questions caused a new lintian warning, for which a bug is + filed (#482795). + + -- Bas Wijnen Sun, 25 May 2008 10:34:21 +0200 + +pioneers (0.11.4-1) unstable; urgency=low + + * New upstream release. + * Use automake 1.10, upgrade autoconf dependency to >= 2.60 for that. + * Upgraded to standards version 3.7.3 (no changes needed). + * Add transitional packages for upgrades from Etch. (closes: #466387) + * Remove XS- prefix from Vcs fields in debian/control. + * Add $network as requirement for meta-server init script. (closes: #472336) + + -- Bas Wijnen Wed, 02 Apr 2008 20:31:03 +0200 + +pioneers (0.11.3-1) unstable; urgency=low + + * New upstream security release (Closes: #449541). + * Fix bashism in init script (Closes: #447379). + + -- Bas Wijnen Mon, 12 Nov 2007 08:23:14 +0100 + +pioneers (0.11.2-2) unstable; urgency=low + + * Let pioneers-console depend on pioneers-console-data, not on + pioneers-data. (Closes: #441759) + + -- Bas Wijnen Tue, 11 Sep 2007 12:30:34 +0200 + +pioneers (0.11.2-1) unstable; urgency=low + + * New upstream release. (Closes: #436296, #392129, #398157) + * Restructure packaging into fewer packages. + * Add pioneers-editor to package. + * Update debian/copyright to be more clear about license choice. + + -- Bas Wijnen Fri, 07 Sep 2007 00:35:00 +0200 + +pioneers (0.10.2-3) unstable; urgency=low + + * Updated Swedish translation. + * Added Afrikaans and Japanese translations. + + -- Bas Wijnen Mon, 15 Jan 2007 15:56:41 +0100 + +pioneers (0.10.2-2) unstable; urgency=low + + * Use CFLAGS, so DEB_BUILD_OPTIONS=noopt actually works. (Thanks to A + Mennucc, Closes: #389165) + + -- Bas Wijnen Sat, 11 Nov 2006 01:05:28 +0100 + +pioneers (0.10.2-1) unstable; urgency=low + + * New upstream release. (Closes: #386425) + * Change debian/rules to avoid the need for patching the code for linking + only directly used libraries. + * Change maintainer e-mail to my new debian.org address. + * Make meta-server init script LSB compliant (add comment block and status + command). + + -- Bas Wijnen Tue, 19 Sep 2006 11:44:45 +0200 + +pioneers (0.10.1-1) unstable; urgency=low + + * New upstream release. (Closes: #373673, #367568, #380262) + * Include workaround for bashism in gnome-autogen.sh. (Closes: #378196) + + -- Bas Wijnen Tue, 29 Aug 2006 11:03:33 +0200 + +pioneers (0.9.64-1) unstable; urgency=low + + * New upstream release. (Closes: #371086) + + -- Bas Wijnen Wed, 7 Jun 2006 20:31:48 +0200 + +pioneers (0.9.63-1) unstable; urgency=low + + * New upstream release. (Closes: #367042) + * Optimize for one-time build. + + -- Bas Wijnen Wed, 31 May 2006 16:33:16 +0200 + +pioneers (0.9.61-1) unstable; urgency=low + + * Upstream svn snapshot release. (Closes: #359924, #331291) + * Reset maintainer to myself. + * Exclude all editor-related things instead of specific files. + * Improved debian/copyright. + * Allow cross-compiling. + * Add autoconf as a direct dependency. + * Force the use of automake-1.9. + * Added full list of authors to debian/copyright, and a check for + completeness to debian/rules. + * Clean up build process. + * Updated to policy version 3.7.2. (No changes needed.) + * Improved meta-server init script, added /etc/default script with settings. + + -- Bas Wijnen Wed, 10 May 2006 09:04:32 +0200 + +pioneers (0.9.55-1) unstable; urgency=high + + * Upstream CVS snapshot release. (Closes: #351034) + * Fix for meta-server remote crash possibility (Closes: #351986) + + -- Bas Wijnen Wed, 9 Feb 2006 11:19:00 +0100 + +pioneers (0.9.49-1) unstable; urgency=high + + * Moved maintainance address to Debian games team. + * New upstream url in copyright file. (Closes: #346472) + * New location for desktop files. + * Extra icons and descriptions for menus. + * Close denial of service hole. (Closes: #350237) + * Upstream CVS snapshot release. (Closes: #347214) + + -- Bas Wijnen Sat, 28 Jan 2006 7:08:45 +0100 + +pioneers (0.9.33-1) unstable; urgency=low + + * Upstream CVS snapshot release. (Closes: #328880, #289048, #327165) + + -- Bas Wijnen Thu, 2 Oct 2005 22:12:10 +0200 + +pioneers (0.9.23-1) unstable; urgency=low + + * Snapshot from upstream CVS. (Closes: #322704, #322737) + + -- Bas Wijnen Thu, 18 Aug 2005 00:02:32 +0200 + +pioneers (0.9.19-2) unstable; urgency=low + + * Made short descriptions more descriptive (Closes: #320870) + * Updated some Depends: and Recommends:. + + -- Bas Wijnen Fri, 5 Aug 2005 00:32:12 +0200 + +pioneers (0.9.19-1) unstable; urgency=low + + * Snapshot from upstream CVS. + + -- Bas Wijnen Fri, 15 Jul 2005 11:30:02 +0200 + +pioneers (0.9.17-2) unstable; urgency=low + + * Upstream rename due to trademark concerns. + + -- Steve Langasek Sat, 25 Jun 2005 05:28:02 -0700 + +gnocatan (0.9.17-1) unstable; urgency=low + + * New maintainer, adjust the package a bit to my liking. + + -- Bas Wijnen Thu, 16 Jun 2005 17:54:12 +0200 + +gnocatan (0.8.1.59-1) unstable; urgency=low + + * New upstream release + + -- Jeff Breidenbach Mon, 21 Mar 2005 22:11:10 -0800 + +gnocatan (0.8.1.54-1) unstable; urgency=medium + + * New upstream release + * Medium urgency because users are anxious about + a trading bug, which this release (hopefully) fixes. + + -- Jeff Breidenbach Thu, 3 Mar 2005 21:11:42 -0800 + +gnocatan (0.8.1.53-1) unstable; urgency=low + + * new upstream + + -- Jeff Breidenbach Sun, 6 Feb 2005 21:26:18 -0800 + +gnocatan (0.8.1.45-1) unstable; urgency=low + + * new upstream + + -- Jeff Breidenbach Mon, 6 Dec 2004 19:07:19 -0800 + +gnocatan (0.8.1.42-1) unstable; urgency=low + + * try to fix the packaging catastrophe from 0.8.1.41-1 + + -- Jeff Breidenbach Fri, 12 Nov 2004 13:39:57 -0800 + +gnocatan (0.8.1.41-1) unstable; urgency=low + + * snapshot from upstream CVS (basically 0.8.1.42, but + upstream is a little behind on updating version numbers) + + -- Jeff Breidenbach Wed, 10 Nov 2004 00:51:41 -0800 + +gnocatan (0.8.1.38-1) unstable; urgency=low + + * snapshot from upstream CVS + * stop doing the native package thing + + -- Jeff Breidenbach Mon, 11 Oct 2004 21:50:31 -0700 + +gnocatan (0.8.1.35) unstable; urgency=low + + * snapshot from upstream CVS + + -- Jeff Breidenbach Fri, 10 Sep 2004 17:22:43 -0700 + +gnocatan (0.8.1.34) unstable; urgency=low + + * Change version numbering to make Lintian happier. + + -- Jeff Breidenbach Fri, 3 Sep 2004 21:04:02 -0700 + +gnocatan (0.8.1-7) unstable; urgency=low + + * snapshot from upstream CVS. + + -- Jeff Breidenbach Mon, 30 Aug 2004 11:43:58 -0700 + +gnocatan (0.8.1-6) unstable; urgency=low + + * added yelp dependency + * snapshot from upstream CVS. Minor bugfixes. + * fix some lintian warnings + + -- Jeff Breidenbach Sat, 21 Aug 2004 13:11:02 -0700 + +gnocatan (0.8.1-5) unstable; urgency=low + + * snapshot from upstream CVS. + + -- Jeff Breidenbach Thu, 8 Jul 2004 17:49:57 -0700 + +gnocatan (0.8.1-4) unstable; urgency=low + + * snapshot from upstream CVS. + - New trade window design (Closes: #201100) + - AI trade/crash bug fixed (Closes: #243827) + + -- Jeff Breidenbach Fri, 2 Jul 2004 17:54:04 -0700 + +gnocatan (0.8.1-3) unstable; urgency=low + + * snapshot from upstream CVS. Can now build on gtk2.4. + + -- Jeff Breidenbach Wed, 26 May 2004 09:58:15 -0700 + +gnocatan (0.8.1-2) unstable; urgency=low + + * snapshot from upstream CVS. + + -- Jeff Breidenbach Sun, 25 Apr 2004 22:35:18 -0700 + +gnocatan (0.8.1-1) unstable; urgency=low + + * New upstream version + + -- Jeff Breidenbach Fri, 16 Jan 2004 14:05:25 -0800 + +gnocatan (0.8.0-4) unstable; urgency=low + + * Snapshot from upstream CVS. + + -- Jeff Breidenbach Sat, 15 Nov 2003 15:40:27 -0800 + +gnocatan (0.8.0-3) unstable; urgency=low + + * Better documentation packaging. + + -- Jeff Breidenbach Sun, 26 Oct 2003 21:54:46 -0800 + +gnocatan (0.8.0-2) unstable; urgency=low + + * Added scrollkeeper as a build dependency + + -- Jeff Breidenbach Mon, 13 Oct 2003 22:01:31 -0700 + +gnocatan (0.8.0-1) unstable; urgency=low + + * New upstream version + + -- Jeff Breidenbach Sun, 12 Oct 2003 01:35:29 -0700 + +gnocatan (0.7.1.90-3) unstable; urgency=low + + * Test snapshot. + * shuffle files around, to comply with the FHS (closes: #143972). + * add a GNOME menu entry for the GTK server (closes: #169667). + * add manpages as needed (closes: #67271, #67272). + * fix gnocatanai to not use GNOME libs, since it has no GUI (closes: + #176205). + * Adjust build script so we only run './configure' instead of + './autogen.sh' for the package build. + + -- Jeff Breidenbach Fri, 21 Feb 2003 00:20:58 -0800 + +gnocatan (0.7.1.90-2) unstable; urgency=low + + * closes: #168854, #174691 + + -- Jeff Breidenbach Wed, 1 Jan 2003 21:27:54 -0800 + +gnocatan (0.7.1.90-1) unstable; urgency=low + + * Test snapshot. + + -- Roman Hodek Wed, 25 Dec 2002 17:52:51 +0100 + +gnocatan (0.7.1-2) unstable; urgency=low + + * Build tweak + + -- Jeff Breidenbach Thu, 25 Jul 2002 00:19:47 -0700 + +gnocatan (0.7.1-1) unstable; urgency=low + + * New upstream version. + + -- Roman Hodek Sun, 21 Jul 2002 14:28:43 +0200 + +gnocatan (0.7.0-5) unstable; urgency=low + + * Snapshot against today's CVS, closes: #151707, #149307 + + -- Jeff Breidenbach Sun, 23 Jun 2002 14:22:16 -0700 + +gnocatan (0.7.0-4) unstable; urgency=low + + * Never mind, this one didn't pass the autobuilders. + + -- Jeff Breidenbach Sun, 23 Jun 2002 14:21:44 -0700 + +gnocatan (0.7.0-3) unstable; urgency=low + + * restore original server/metaserver name resolution + + * adjust package recommendations, closes: #149144 + + -- Jeff Breidenbach Wed, 5 Jun 2002 15:48:49 -0700 + +gnocatan (0.7.0-2) unstable; urgency=low + + * a little post-release touchup paint + + -- Jeff Breidenbach Tue, 28 May 2002 23:27:29 -0700 + +gnocatan (0.7.0-1) unstable; urgency=low + + * New upstream version. + + -- Roman Hodek Mon, 27 May 2002 21:15:03 +0200 + +gnocatan (0.6.99.1-1) unstable; urgency=low + + * Another upstream beta candidate. + - during first connect, show a splash screen + - fix bug that gtk server couldn't start AI players + - made histogram dialog nicer + - let clients exit if net connection lost + - updated docs + - fix a few Debian bugs, + + -- Roman Hodek Tue, 21 May 2002 21:59:45 +0200 + +gnocatan (0.6.99-2) unstable; urgency=low + + * CVS snapshot from 05/20, 19:15 UTC + + -- Roman Hodek Mon, 20 May 2002 21:15:32 +0200 + +gnocatan (0.6.99-1) unstable; urgency=low + + * Beta of upstream 0.7.0. + + -- Roman Hodek Thu, 16 May 2002 00:01:48 +0200 + +gnocatan (0.6.1-6) unstable; urgency=low + + * Merge metaserver softcoding patch, closes: #140722 + + -- Jeff Breidenbach Sun, 21 Apr 2002 13:29:10 -0700 + +gnocatan (0.6.1-5) unstable; urgency=low + + * Fix IPv6 problem with server (nobody reported the bug, leading + me to believe nobody is playing gnocatan) + + -- Jeff Breidenbach Mon, 1 Apr 2002 21:43:15 -0800 + +gnocatan (0.6.1-4) unstable; urgency=low + + * Added IPv6 patch from Guus Sliepen + + * Consolodated maintainer email address (for spam prevention) + + * Referenced modern policy to make lintian shut up + + * Adjusted Build-depends: + + -- Jeff Breidenbach Sun, 17 Mar 2002 12:37:07 -0800 + +gnocatan (0.6.1-3) unstable; urgency=low + + * Fix build bug (#115072) + + -- Jeff Breidenbach Sun, 21 Oct 2001 19:09:43 -0700 + +gnocatan (0.6.1-2) unstable; urgency=low + + * Fixed bug #70831 (gnocatan-server.menu outdated) + + -- Jeff Breidenbach Thu, 2 Nov 2000 19:29:52 -0800 + +gnocatan (0.6.1-1) unstable; urgency=low + + * New upstream release, incorporates all debian diffs + + -- Jeff Breidenbach Fri, 25 Aug 2000 19:31:28 -0700 + +gnocatan (0.6.0-2) unstable; urgency=low + + * Removed README.debian + + * Added Build-Requires line to control file; addresses bug #67287 + + -- Jeff Breidenbach Sat, 15 Jul 2000 21:06:25 -0700 + +gnocatan (0.6.0-1) unstable; urgency=low + + * Correcting version numbers + + -- Jeff Breidenbach Thu, 29 Jun 2000 19:42:42 -0700 + +gnocatan (0.5.6-1) unstable; urgency=low + + * New upstream release + + -- Jeff Breidenbach Sun, 18 Jun 2000 17:17:15 -0700 + +gnocatan (0.5.0-1) unstable; urgency=low + + * SourceForge realease + + -- Andy Heroff Mon, 1 May 2000 23:00:00 -0500 + +gnocatan (0.4.0-1) unstable; urgency=low + + * Experimental package + + -- Dave Cole Fri, 3 Sep 1999 23:41:45 +1000 + +gnocatan (0.3.3-1) unstable; urgency=low + + * Fixed trade problems for real + + -- Dave Cole Tue, 8 Jun 1999 20:03:40 +1000 + +gnocatan (0.32-1) unstable; urgency=low + + * Fixed trade problems + + -- Dave Cole Fri, 28 May 1999 23:48:32 +1000 + +gnocatan (0.31-1) unstable; urgency=low + + * Updated documentation + * Fixed segfault in domestic trade + + -- Dave Cole Sat, 22 May 1999 23:57:56 +1000 + +gnocatan (0.30-1) unstable; urgency=low + + * Feature complete game at last + * Improved meta-server behaviour with masquerading firewalls + + -- Dave Cole Sat, 22 May 1999 00:49:54 +1000 + +gnocatan (0.25-1) unstable; urgency=low + + * Added better setup handling. + + -- Dave Cole Tue, 11 May 1999 16:57:42 +1000 + +gnocatan (0.24-1) unstable; urgency=low + + * Fixed long standing "dropped message bug" + + -- Dave Cole Sun, 9 May 1999 23:14:43 +1000 + +gnocatan (0.23-1) unstable; urgency=low + + * Added Gnome icon and desktop + + -- Dave Cole Sun, 9 May 1999 16:56:09 +1000 + +gnocatan (0.22-2) unstable; urgency=low + + * Fixed up some of the Debian control fields + * Fixed order of debhelper commands to allow single pass build. + + -- Dave Cole Sun, 9 May 1999 11:32:04 +1000 + +gnocatan (0.22-1) unstable; urgency=low + + * Initial release. + + -- Dave Cole Sat, 8 May 1999 20:35:36 +1000 + +Local variables: +mode: debian-changelog +End: --- pioneers-0.12.2.orig/debian/pioneers.menu +++ pioneers-0.12.2/debian/pioneers.menu @@ -0,0 +1,14 @@ +?package(pioneers):needs="X11" section="Games/Board"\ + title="Pioneers" longtitle="Play a game of Pioneers"\ + command="/usr/games/pioneers" \ + icon="/usr/share/pixmaps/pioneers-client.xpm" + +?package(pioneers):needs="X11" section="Games/Board"\ + title="Pioneers Server" longtitle="Host a game of Pioneers"\ + command="/usr/games/pioneers-server-gtk"\ + icon="/usr/share/pixmaps/pioneers-server.xpm" + +?package(pioneers):needs="X11" section="Games/Board"\ + title="Pioneers Editor" longtitle="Edit a map for Pioneers"\ + command="/usr/games/pioneers-editor"\ + icon="/usr/share/pixmaps/pioneers-editor.xpm" --- pioneers-0.12.2.orig/debian/watch +++ pioneers-0.12.2/debian/watch @@ -0,0 +1,5 @@ +# format version number, currently 3; this line is compulsory! +version=3 + +# Pioneers is at SourceForge +http://sf.net/pio/pioneers-(.*)\.tar\.gz --- pioneers-0.12.2.orig/debian/pioneers-console.postrm +++ pioneers-0.12.2/debian/pioneers-console.postrm @@ -0,0 +1,9 @@ +#!/bin/sh -e + +CONFIG_FILE=/etc/default/pioneers-console + +if test "$1" = "purge" ; then + rm -f "$CONFIG_FILE" +fi + +#DEBHELPER# --- pioneers-0.12.2.orig/debian/po/templates.pot +++ pioneers-0.12.2/debian/po/templates.pot @@ -0,0 +1,88 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: pioneers@packages.debian.org\n" +"POT-Creation-Date: 2009-06-25 20:30+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=CHARSET\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: boolean +#. Description +#: ../pioneers-console.templates:1001 +msgid "Run the pioneers meta-server?" +msgstr "" + +#. Type: boolean +#. Description +#: ../pioneers-console.templates:1001 +msgid "" +"Pioneers contains a meta-server, which can be used to find networked games. " +"The meta-server needs to run in a central location, so that all players can " +"find it. There is a public meta-server at pioneers.debian.net. Most people " +"do not need to run a meta-server on their computer." +msgstr "" + +#. Type: string +#. Description +#: ../pioneers-console.templates:2001 +msgid "Port range for creating new games on the meta-server:" +msgstr "" + +#. Type: string +#. Description +#: ../pioneers-console.templates:2001 +msgid "" +"The meta-server can create new games, so players don't need to install and " +"run the pioneers server. The ports which are used for these games can be " +"specified. If this field is left empty, the meta-server will disable its " +"game creation functionality." +msgstr "" + +#. Type: string +#. Description +#: ../pioneers-console.templates:2001 +msgid "" +"If the value is not empty, it must be two port numbers, separated by a minus " +"sign." +msgstr "" + +#. Type: string +#. Description +#: ../pioneers-console.templates:3001 +msgid "Server name for created games:" +msgstr "" + +#. Type: string +#. Description +#: ../pioneers-console.templates:3001 +msgid "" +"In some cases, the name the meta-server uses for itself when creating new " +"games is incorrect. If this field is not left empty, it is used to override " +"the detected hostname." +msgstr "" + +#. Type: string +#. Description +#: ../pioneers-console.templates:4001 +msgid "Extra arguments to pass to the meta-server:" +msgstr "" + +#. Type: string +#. Description +#: ../pioneers-console.templates:4001 +msgid "" +"These arguments are passed to the meta-server. There are only two sensible " +"arguments:\n" +" * --syslog-debug: Send debugging output to syslog\n" +" * --redirect: Redirect clients to another meta-server" +msgstr "" --- pioneers-0.12.2.orig/debian/po/pt.po +++ pioneers-0.12.2/debian/po/pt.po @@ -0,0 +1,104 @@ +# Portugues translation of pioneer's debconf messages. +# Copyright 2008 Ricardo Silva . +# This file is distributed under the same license as the pioneers package. +# +msgid "" +msgstr "" +"Project-Id-Version: pioneers 0.12.2-1\n" +"Report-Msgid-Bugs-To: pioneers@packages.debian.org\n" +"POT-Creation-Date: 2008-05-25 08:09+0200\n" +"PO-Revision-Date: 2008-05-13 11:00+0100\n" +"Last-Translator: Ricardo Silva \n" +"Language-Team: Portuguese \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: boolean +#. Description +#: ../pioneers-console.templates:1001 +msgid "Run the pioneers meta-server?" +msgstr "Correr o meta-servidor pioneers?" + +#. Type: boolean +#. Description +#: ../pioneers-console.templates:1001 +msgid "" +"Pioneers contains a meta-server, which can be used to find networked games. " +"The meta-server needs to run in a central location, so that all players can " +"find it. There is a public meta-server at pioneers.debian.net. Most people " +"do not need to run a meta-server on their computer." +msgstr "" +"O Pioneers vem com um meta-servidor, que pode ser usado para encontrar jogos " +"em rede. O meta-servidor precisa de ser corrido numa localização central, " +"para que todos os jogadores o consigam encontrar. Há um meta-servidor " +"público em pioneers.debian.net. A maioria dos utilizadores não precisará de " +"correr o meta-servidor no seu computador." + +#. Type: string +#. Description +#: ../pioneers-console.templates:2001 +msgid "Port range for creating new games on the meta-server:" +msgstr "Intervalo de portos para criar novos jogos no meta-servidor:" + +#. Type: string +#. Description +#: ../pioneers-console.templates:2001 +msgid "" +"The meta-server can create new games, so players don't need to install and " +"run the pioneers server. The ports which are used for these games can be " +"specified. If this field is left empty, the meta-server will disable its " +"game creation functionality." +msgstr "" +"O meta-servidor pode criar novos jogos, para que os jogadores não precisem " +"de instalar e correr o servidor pioneers. Os portos que são usados para " +"estes jogos podem ser especificados. Se este campo for deixado vazio, o meta-" +"servidor vai desactivar a funcionalidade de criação de jogos." + +#. Type: string +#. Description +#: ../pioneers-console.templates:2001 +msgid "" +"If the value is not empty, it must be two port numbers, separated by a minus " +"sign." +msgstr "" +"Se o valor não for vazio, deve ser especificado como dois números, separados " +"por um sinal de menos." + +#. Type: string +#. Description +#: ../pioneers-console.templates:3001 +msgid "Server name for created games:" +msgstr "Nome do servidor para os jogos criados:" + +#. Type: string +#. Description +#: ../pioneers-console.templates:3001 +msgid "" +"In some cases, the name the meta-server uses for itself when creating new " +"games is incorrect. If this field is not left empty, it is used to override " +"the detected hostname." +msgstr "" +"Em alguns casos, o nome que o meta-servidor usa para si próprio é incorrecto " +"para se criarem novos jogos. Se este campo não for deixado em branco, é " +"usado para se sobrepor ao hostname detectado." + +#. Type: string +#. Description +#: ../pioneers-console.templates:4001 +msgid "Extra arguments to pass to the meta-server:" +msgstr "Argumentos extra para passar ao meta-servidor:" + +#. Type: string +#. Description +#: ../pioneers-console.templates:4001 +msgid "" +"These arguments are passed to the meta-server. There are only two sensible " +"arguments:\n" +" * --syslog-debug: Send debugging output to syslog\n" +" * --redirect: Redirect clients to another meta-server" +msgstr "" +"Estes argumentos são passados ao meta-servidor. Apenas dois argumentos são " +"relevantes:\n" +" * --syslog-debug: Enviar o output de depuração para o syslog\n" +" * --redirect: Redireccionar clientes para outro meta-servidor" --- pioneers-0.12.2.orig/debian/po/fr.po +++ pioneers-0.12.2/debian/po/fr.po @@ -0,0 +1,108 @@ +# Debconf translations for Pioneers. +# Copyright 2008 Christian Perrier . +# This file is distributed under the same license as the pioneers package. +# +# Christian Perrier , 2008. +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: pioneers@packages.debian.org\n" +"POT-Creation-Date: 2008-05-12 23:22+0200\n" +"PO-Revision-Date: 2008-05-13 08:04+0200\n" +"Last-Translator: Christian Perrier \n" +"Language-Team: French \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: KBabel 1.11.4\n" + +#. Type: boolean +#. Description +#: ../pioneers-console.templates:1001 +msgid "Run the pioneers meta-server?" +msgstr "Faut-il exécuter le métaserveur de pioneers ?" + +#. Type: boolean +#. Description +#: ../pioneers-console.templates:1001 +msgid "" +"Pioneers contains a meta-server, which can be used to find networked games. " +"The meta-server needs to run in a central location, so that all players can " +"find it. There is a public meta-server at pioneers.debian.net. Most people " +"do not need to run a meta-server on their computer." +msgstr "" +"Pioneers fournit un « métaserveur » qui sert à trouver des parties en cours " +"sur le réseau. Ce serveur tourne à un endroit central afin que tous les " +"joueurs puissent le trouver. Un métaserveur public existe sur pioneers." +"debian.net. L'utilisation du métaserveur est inutile pour la plupart des " +"utilisateurs." + +#. Type: string +#. Description +#: ../pioneers-console.templates:2001 +msgid "Port range for creating new games on the meta-server:" +msgstr "" +"Plage de ports pour la création de nouvelles parties sur le métaserveur :" + +#. Type: string +#. Description +#: ../pioneers-console.templates:2001 +msgid "" +"The meta-server can create new games, so players don't need to install and " +"run the pioneers server. The ports which are used for these games can be " +"specified. If this field is left empty, the meta-server will disable its " +"game creation functionality." +msgstr "" +"Le métaserveur peut créer de nouvelle parties, ce qui évite aux joueurs " +"d'installer et d'exécuter le serveur de pioneers. Veuillez indiquer les ports " +"qui pourront être utilsiés pour cela. Si vous laissez ce champ vide, la " +"création de nouvelles parties sera désactivée." + +#. Type: string +#. Description +#: ../pioneers-console.templates:2001 +msgid "" +"If the value is not empty, it must be two port numbers, separated by a minus " +"sign." +msgstr "" +"Pour que cette valeur soit valable, elle doit comporter deux nombres entiers " +"séparés par un tiret." + +#. Type: string +#. Description +#: ../pioneers-console.templates:3001 +msgid "Server name for created games:" +msgstr "Nom du serveur pour les nouvelles parties :" + +#. Type: string +#. Description +#: ../pioneers-console.templates:3001 +msgid "" +"In some cases, the name the meta-server uses for itself when creating new " +"games is incorrect. If this field is not left empty, it is used to override " +"the detected hostname." +msgstr "" +"Dans certains cas, le nom utilisé par le métaserveur pour créer de nouvelles " +"parties n'est pas valable. Si ce champ est renseigné, sa valeur remplacera " +"le nom d'hôte pour nommer les nouvelles parties." + +#. Type: string +#. Description +#: ../pioneers-console.templates:4001 +msgid "Extra arguments to pass to the meta-server:" +msgstr "Paramètres supplémentaires à utiliser avec le métaserveur :" + +#. Type: string +#. Description +#: ../pioneers-console.templates:4001 +msgid "" +"These arguments are passed to the meta-server. There are only two sensible " +"arguments:\n" +" * --syslog-debug: Send debugging output to syslog\n" +" * --redirect: Redirect clients to another meta-server" +msgstr "" +"Veuillez indiquer les paramètres supplémentaires que vous souhaitez utiliser " +"avec le métaserveur. Deux paramètres uniquement sont importants :\n" +" --syslog-debug : journalisation via la journalisation du système " +"(syslog) ;\n" +" --redirect  : redirection des clients vers un autre métaserveur." --- pioneers-0.12.2.orig/debian/po/de.po +++ pioneers-0.12.2/debian/po/de.po @@ -0,0 +1,105 @@ +# Translation of pioneers debconf templates to German +# Copyright Helge Kreutzmann , 2008. +# This file is distributed under the same license as the pioneers package. +# +msgid "" +msgstr "" +"Project-Id-Version: pioneers 0.12.2-1\n" +"Report-Msgid-Bugs-To: pioneers@packages.debian.org\n" +"POT-Creation-Date: 2008-05-25 08:09+0200\n" +"PO-Revision-Date: 2008-05-22 22:42+0200\n" +"Last-Translator: Helge Kreutzmann \n" +"Language-Team: de \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ISO-8859-15\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: boolean +#. Description +#: ../pioneers-console.templates:1001 +msgid "Run the pioneers meta-server?" +msgstr "Soll der Meta-Server von Pioneers ausgefhrt werden?" + +#. Type: boolean +#. Description +#: ../pioneers-console.templates:1001 +msgid "" +"Pioneers contains a meta-server, which can be used to find networked games. " +"The meta-server needs to run in a central location, so that all players can " +"find it. There is a public meta-server at pioneers.debian.net. Most people " +"do not need to run a meta-server on their computer." +msgstr "" +"Pioneers enthlt einen Meta-Server, der zum Auffinden von vernetzten Spielen " +"verwendet werden kann. Der Meta-Server muss an einem zentralen Ort " +"ausgefhrt werden, so dass ihn alle Spieler finden knnen. Es gibt unter " +"pioneers.debian.net. einen ffentlichen Meta-Server. Die meisten Leute " +"werden keinen Meta-Server auf ihrem Rechner ausfhren mssen." + +#. Type: string +#. Description +#: ../pioneers-console.templates:2001 +msgid "Port range for creating new games on the meta-server:" +msgstr "Port-Bereich, um neue Spiele auf dem Meta-Server zu erstellen:" + +#. Type: string +#. Description +#: ../pioneers-console.templates:2001 +msgid "" +"The meta-server can create new games, so players don't need to install and " +"run the pioneers server. The ports which are used for these games can be " +"specified. If this field is left empty, the meta-server will disable its " +"game creation functionality." +msgstr "" +"Der Meta-Server kann neue Spiele erstellen, daher mssen die Spieler den " +"Pioneers-Server nicht installieren und ausfhren. Die fr diese Spiele zu " +"verwendenden Ports knnen angegeben werden. Falls dieses Feld leer bleibt, " +"wird der Meta-Server seine Funktionalitt zum Erstellen von Spielen " +"deaktivieren." + +#. Type: string +#. Description +#: ../pioneers-console.templates:2001 +msgid "" +"If the value is not empty, it must be two port numbers, separated by a minus " +"sign." +msgstr "" +"Falls der Wert nicht leer ist muss er zwei Portnummern, getrennt durch ein " +"Minuszeichen, umfassen." + +#. Type: string +#. Description +#: ../pioneers-console.templates:3001 +msgid "Server name for created games:" +msgstr "Servername fr erstellte Spiele:" + +#. Type: string +#. Description +#: ../pioneers-console.templates:3001 +msgid "" +"In some cases, the name the meta-server uses for itself when creating new " +"games is incorrect. If this field is not left empty, it is used to override " +"the detected hostname." +msgstr "" +"In einigen Fllen ist der Name, den der Meta-Server fr sich beim Erstellen " +"von Spielen verwendet, falsch. Falls dieses Feld nicht leer gelassen wird, " +"berschreibt der Wert den erkannten Namen des Rechners." + +#. Type: string +#. Description +#: ../pioneers-console.templates:4001 +msgid "Extra arguments to pass to the meta-server:" +msgstr "Zustzliche Argumente, die an den Meta-Server bergeben werden sollen:" + +#. Type: string +#. Description +#: ../pioneers-console.templates:4001 +msgid "" +"These arguments are passed to the meta-server. There are only two sensible " +"arguments:\n" +" * --syslog-debug: Send debugging output to syslog\n" +" * --redirect: Redirect clients to another meta-server" +msgstr "" +"Diese Argumente werden an den Meta-Server bergeben. Es gibt nur zwei " +"sinnvolle Argumente:\n" +" * --syslog-debug: Schicke Debugging-Ausgaben an Syslog\n" +" * --redirect: Leite Clients an einen anderen Meta-Server weiter" --- pioneers-0.12.2.orig/debian/po/cs.po +++ pioneers-0.12.2/debian/po/cs.po @@ -0,0 +1,101 @@ +# Czech translation of pioneers debconf messages. +# Copyright 2008 Miroslav Kure +# This file is distributed under the same license as the pioneers package. +# +msgid "" +msgstr "" +"Project-Id-Version: pioneers\n" +"Report-Msgid-Bugs-To: pioneers@packages.debian.org\n" +"POT-Creation-Date: 2008-05-25 10:30+0200\n" +"PO-Revision-Date: 2008-05-25 10:09+0200\n" +"Last-Translator: Miroslav Kure \n" +"Language-Team: Czech \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: boolean +#. Description +#: ../pioneers-console.templates:1001 +msgid "Run the pioneers meta-server?" +msgstr "Spustit pioneers metaserver?" + +#. Type: boolean +#. Description +#: ../pioneers-console.templates:1001 +msgid "" +"Pioneers contains a meta-server, which can be used to find networked games. " +"The meta-server needs to run in a central location, so that all players can " +"find it. There is a public meta-server at pioneers.debian.net. Most people " +"do not need to run a meta-server on their computer." +msgstr "" +"Pioneers obsahují metaserver, který lze použít pro zjišťování síťových her. " +"Metaserver musí běžet na nějakém centrálním místě, kam se mohou připojit " +"všichni hráči. Jeden veřejný metaserver běží na pioneers.debian.net. Většina " +"uživatelů nepotřebuje mít metaserver spuštěný na svém počítači." + +#. Type: string +#. Description +#: ../pioneers-console.templates:2001 +msgid "Port range for creating new games on the meta-server:" +msgstr "Rozsah portů pro vytváření nových her na metaserveru:" + +#. Type: string +#. Description +#: ../pioneers-console.templates:2001 +msgid "" +"The meta-server can create new games, so players don't need to install and " +"run the pioneers server. The ports which are used for these games can be " +"specified. If this field is left empty, the meta-server will disable its " +"game creation functionality." +msgstr "" +"Metaserver může vytvářet nové hry, takže hráči nemusí instalovat a " +"provozovat vlastní server pro pioneers. Můžete zadat rozsah portů, které se " +"mají použít pro nové hry. Ponecháte-li prázdné, metaserver zakáže vytváření " +"nových her." + +#. Type: string +#. Description +#: ../pioneers-console.templates:2001 +msgid "" +"If the value is not empty, it must be two port numbers, separated by a minus " +"sign." +msgstr "Hodnota se musí skládat ze dvou čísel portů oddělených znakem mínus." + +#. Type: string +#. Description +#: ../pioneers-console.templates:3001 +msgid "Server name for created games:" +msgstr "Jméno serveru pro vytvořené hry:" + +#. Type: string +#. Description +#: ../pioneers-console.templates:3001 +msgid "" +"In some cases, the name the meta-server uses for itself when creating new " +"games is incorrect. If this field is not left empty, it is used to override " +"the detected hostname." +msgstr "" +"V některých případech metaserver chybně rozpozná jméno, které pak používá " +"pro vytváření nových her. Pokud toto pole není prázdné, použije se jeho " +"hodnota místo rozpoznaného jména počítače." + +#. Type: string +#. Description +#: ../pioneers-console.templates:4001 +msgid "Extra arguments to pass to the meta-server:" +msgstr "Další argumentu, které se mají předat metaserveru:" + +#. Type: string +#. Description +#: ../pioneers-console.templates:4001 +msgid "" +"These arguments are passed to the meta-server. There are only two sensible " +"arguments:\n" +" * --syslog-debug: Send debugging output to syslog\n" +" * --redirect: Redirect clients to another meta-server" +msgstr "" +"Tyto argumenty se předají metaserveru. Smysluplné argumenty jsou v podstatě " +"dva:\n" +" * --syslog-debug: pošle ladicí výstup do syslogu\n" +" * --redirect: přesměruje klienty na jiný metaserver" --- pioneers-0.12.2.orig/debian/po/POTFILES.in +++ pioneers-0.12.2/debian/po/POTFILES.in @@ -0,0 +1 @@ +[type: gettext/rfc822deb] pioneers-console.templates --- pioneers-0.12.2.orig/debian/po/eu.po +++ pioneers-0.12.2/debian/po/eu.po @@ -0,0 +1,106 @@ +# translation of pioneers-eu.po to Euskara +# Copyright 2008 Piarres Beobide +# This file is distributed under the same license as the pioneers package. +# +# Piarres Beobide , 2008. +msgid "" +msgstr "" +"Project-Id-Version: pioneers-eu\n" +"Report-Msgid-Bugs-To: pioneers@packages.debian.org\n" +"POT-Creation-Date: 2008-05-25 08:09+0200\n" +"PO-Revision-Date: 2008-05-13 10:09+0200\n" +"Last-Translator: Piarres Beobide \n" +"Language-Team: Euskara \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: KBabel 1.11.4\n" + +#. Type: boolean +#. Description +#: ../pioneers-console.templates:1001 +msgid "Run the pioneers meta-server?" +msgstr "Exekutatu pioneers meta-zerbitzaria?" + +#. Type: boolean +#. Description +#: ../pioneers-console.templates:1001 +msgid "" +"Pioneers contains a meta-server, which can be used to find networked games. " +"The meta-server needs to run in a central location, so that all players can " +"find it. There is a public meta-server at pioneers.debian.net. Most people " +"do not need to run a meta-server on their computer." +msgstr "" +"Sare bidezko jokoak aurkitzeko erabili daitekeen meta-zerbitzari bat du " +"pioneers-ek. Meta-zerbitzari hau kokaleku zentralizatu batetan exekutatu " +"behar da, honela jokalariak aurkitzeko gai izan daitezen. Meta-zerbitzari " +"publiko bat dago pioneers.debian.net-en. Jende gehienak ez du meta-" +"zerbitzaria bere ordenagailuan exekutatzeko beharrik." + +#. Type: string +#. Description +#: ../pioneers-console.templates:2001 +msgid "Port range for creating new games on the meta-server:" +msgstr "Meta-zerbitzarian joko berriak sortzeko ataka bitartea:" + +#. Type: string +#. Description +#: ../pioneers-console.templates:2001 +msgid "" +"The meta-server can create new games, so players don't need to install and " +"run the pioneers server. The ports which are used for these games can be " +"specified. If this field is left empty, the meta-server will disable its " +"game creation functionality." +msgstr "" +"Meta-zerbitzaria joko berriak sortzeko gai da erabiltzaileek pioneers " +"zerbitzaria instalatu eta abiarazi behar ez dezaten. Joko hauetarako " +"erabiliko diren atakak zehaztu daitezke. Eremu hau zurian uzten baduzu meta-" +"zerbitzariak jokoak sortzeko ezaugarria ezgaitu egingo du." + +#. Type: string +#. Description +#: ../pioneers-console.templates:2001 +msgid "" +"If the value is not empty, it must be two port numbers, separated by a minus " +"sign." +msgstr "" +"Balioa hutsik ez badago ken ikur batez bereiziriko bi ataka zenbaki eduki " +"behar ditu." + +#. Type: string +#. Description +#: ../pioneers-console.templates:3001 +msgid "Server name for created games:" +msgstr "Sorturiko jokoen zerbitzari izena:" + +#. Type: string +#. Description +#: ../pioneers-console.templates:3001 +msgid "" +"In some cases, the name the meta-server uses for itself when creating new " +"games is incorrect. If this field is not left empty, it is used to override " +"the detected hostname." +msgstr "" +"Kasu batzuetan okerra izan daiteke meta-zerbitzariaren izena erabiltzea joko " +"berriak sortzean. Eremu hau hutsik uzten ez bada atzemandako ostalari izena " +"gainidazteko erabiliko da." + +#. Type: string +#. Description +#: ../pioneers-console.templates:4001 +msgid "Extra arguments to pass to the meta-server:" +msgstr "Meta-zerbitzarira bidaltzeko argumentu gehigarriak:" + +#. Type: string +#. Description +#: ../pioneers-console.templates:4001 +msgid "" +"These arguments are passed to the meta-server. There are only two sensible " +"arguments:\n" +" * --syslog-debug: Send debugging output to syslog\n" +" * --redirect: Redirect clients to another meta-server" +msgstr "" +"Argumentu hauek meta-zerbitzarira bidaliko dira. Bi argumentu erabilgarri " +"bakarrik daude:\n" +" * --syslog-debug: Bidali arazpen irteera syslog-era\n" +" * --redirect: Birbidali bezeroak beste meta-zerbitzari batetara" --- pioneers-0.12.2.orig/debian/po/nl.po +++ pioneers-0.12.2/debian/po/nl.po @@ -0,0 +1,106 @@ +# Dutch translation for pioneers debconf templates. +# Copyright 2008 Bas Wijnen +# This file is distributed under the same license as the pioneers package. +# +msgid "" +msgstr "" +"Project-Id-Version: 0.12.2-1\n" +"Report-Msgid-Bugs-To: pioneers@packages.debian.org\n" +"POT-Creation-Date: 2008-05-25 08:22+0200\n" +"PO-Revision-Date: 2008-05-25 09:22+0200\n" +"Last-Translator: Bas Wijnen \n" +"Language-Team: nl \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: boolean +#. Description +#: ../pioneers-console.templates:1001 +msgid "Run the pioneers meta-server?" +msgstr "Moet de meta-server van pioneers opgestart worden?" + +#. Type: boolean +#. Description +#: ../pioneers-console.templates:1001 +msgid "" +"Pioneers contains a meta-server, which can be used to find networked games. " +"The meta-server needs to run in a central location, so that all players can " +"find it. There is a public meta-server at pioneers.debian.net. Most people " +"do not need to run a meta-server on their computer." +msgstr "" +"Pioneers bevat een meta-server, die gebruikt kan worden om netwerkspellen " +"te vinden. De meta-server moet op een centrale plek draaien, zodat alle " +"spelers hem kunnen vinden. Er draait een publieke meta-server op " +"pioneers.debian.net. Voor de meeste mensen is het niet nodig om de " +"meta-server op hun eigen computer op te starten." + +#. Type: string +#. Description +#: ../pioneers-console.templates:2001 +msgid "Port range for creating new games on the meta-server:" +msgstr "" +"Poorten om te gebruiken voor het starten van nieuwe spellen door de " +"meta-server:" + +#. Type: string +#. Description +#: ../pioneers-console.templates:2001 +msgid "" +"The meta-server can create new games, so players don't need to install and " +"run the pioneers server. The ports which are used for these games can be " +"specified. If this field is left empty, the meta-server will disable its " +"game creation functionality." +msgstr "" +"De meta-server kan nieuwe spellen starten. Spelers hoeven dan de pioneers " +"server niet te draaien. De poorten die gebruikt worden voor deze spellen " +"kunnen worden ingesteld. Wordt dit veld leeg gelaten, dan zal de " +"meta-server geen spellen opstarten." + +#. Type: string +#. Description +#: ../pioneers-console.templates:2001 +msgid "" +"If the value is not empty, it must be two port numbers, separated by a minus " +"sign." +msgstr "" +"Als het veld niet leeg is, moet het twee poortnummers zijn, gescheiden door " +"een minteken." + +#. Type: string +#. Description +#: ../pioneers-console.templates:3001 +msgid "Server name for created games:" +msgstr "Servernaam voor opgestarte spellen:" + +#. Type: string +#. Description +#: ../pioneers-console.templates:3001 +msgid "" +"In some cases, the name the meta-server uses for itself when creating new " +"games is incorrect. If this field is not left empty, it is used to override " +"the detected hostname." +msgstr "" +"In sommige gevallen is de naam die de meta-server zichzelf geeft bij het " +"starten van nieuwe spellen incorrect. Als dit veld niet leeg is, wordt de " +"waarde gebruikt in plaats van de gedetecteede computernaam." + +#. Type: string +#. Description +#: ../pioneers-console.templates:4001 +msgid "Extra arguments to pass to the meta-server:" +msgstr "Extra argumenten voor de meta-server:" + +#. Type: string +#. Description +#: ../pioneers-console.templates:4001 +msgid "" +"These arguments are passed to the meta-server. There are only two sensible " +"arguments:\n" +" * --syslog-debug: Send debugging output to syslog\n" +" * --redirect: Redirect clients to another meta-server" +msgstr "" +"Deze argumenten worden meegegeven aan de meta-server. Er zijn twee zinnige " +"argumenten:\n" +" * --syslog-debug: Stuur debug-uitvoer naar het systeemlogboek.\n" +" * --redirect: Verwijs clients naar een andere meta-server." --- pioneers-0.12.2.orig/debian/po/vi.po +++ pioneers-0.12.2/debian/po/vi.po @@ -0,0 +1,105 @@ +# Vietnamese translation for Pioneers (debconf template). +# Copyright © 2008 Free Software Foundation, Inc. +# Clytie Siddall , 2008. +# +msgid "" +msgstr "" +"Project-Id-Version: pioneers 0.12.2-1\n" +"Report-Msgid-Bugs-To: pioneers@packages.debian.org\n" +"POT-Creation-Date: 2008-05-25 08:09+0200\n" +"PO-Revision-Date: 2008-05-16 21:18+0930\n" +"Last-Translator: Clytie Siddall \n" +"Language-Team: Vietnamese \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: LocFactoryEditor 1.7b3\n" + +#. Type: boolean +#. Description +#: ../pioneers-console.templates:1001 +msgid "Run the pioneers meta-server?" +msgstr "Chạy siêu trình phục vụ pioneers không?" + +#. Type: boolean +#. Description +#: ../pioneers-console.templates:1001 +msgid "" +"Pioneers contains a meta-server, which can be used to find networked games. " +"The meta-server needs to run in a central location, so that all players can " +"find it. There is a public meta-server at pioneers.debian.net. Most people " +"do not need to run a meta-server on their computer." +msgstr "" +"Pioneers chứa một siêu trình phục vụ, mà có thể được dùng để tìm trò chơi " +"chạy qua mạng. Siêu trình phục vụ này cần phải chạy ở một vị trí trung tâm, " +"để mọi người chơi tìm được. Có một siêu máy phục vụ công cộng ở « pioneers." +"debian.org ». Phần lớn người không cần chạy một siêu trình phục vụ trên máy " +"riêng của họ." + +#. Type: string +#. Description +#: ../pioneers-console.templates:2001 +msgid "Port range for creating new games on the meta-server:" +msgstr "Phạm vi cổng để tạo lượt chơi mới trên siêu trình phục vụ :" + +#. Type: string +#. Description +#: ../pioneers-console.templates:2001 +msgid "" +"The meta-server can create new games, so players don't need to install and " +"run the pioneers server. The ports which are used for these games can be " +"specified. If this field is left empty, the meta-server will disable its " +"game creation functionality." +msgstr "" +"Siêu trình phục vụ có thể tạo các lượt chơi mới, do đó người chơi không cần " +"cài đặt và chạy trình phục vụ pioneers. Cũng có thể ghi rõ những cổng được " +"dùng cho các lượt chơi này. Bỏ trống trường này thì siêu trình phục vụ sẽ " +"tựM tắt chức năng tạo lượt chơi." + +#. Type: string +#. Description +#: ../pioneers-console.templates:2001 +msgid "" +"If the value is not empty, it must be two port numbers, separated by a minus " +"sign." +msgstr "" +"Giá trị không rỗng phải là hai số thứ tự cổng định giới bằng một dấu trừ." + +#. Type: string +#. Description +#: ../pioneers-console.templates:3001 +msgid "Server name for created games:" +msgstr "Tên trình phục vụ cho các lượt chơi đã tạo :" + +#. Type: string +#. Description +#: ../pioneers-console.templates:3001 +msgid "" +"In some cases, the name the meta-server uses for itself when creating new " +"games is incorrect. If this field is not left empty, it is used to override " +"the detected hostname." +msgstr "" +"Trong một số trường hợp nào đó, tên được siêu trình phục vụ dùng khi tạo " +"lượt chơi mới không phải là đúng. Nếu trường này không rỗng, nó được dùng để " +"ghi đè lên tên máy đã phát hiện." + +#. Type: string +#. Description +#: ../pioneers-console.templates:4001 +msgid "Extra arguments to pass to the meta-server:" +msgstr "Các đối số thêm cần gửi cho siêu trình phục vụ :" + +#. Type: string +#. Description +#: ../pioneers-console.templates:4001 +msgid "" +"These arguments are passed to the meta-server. There are only two sensible " +"arguments:\n" +" * --syslog-debug: Send debugging output to syslog\n" +" * --redirect: Redirect clients to another meta-server" +msgstr "" +"Những đối số này được gửi cho siêu trình phục vụ. Chỉ có hai đối số hữu " +"ích:\n" +" • --syslog-debug\t\tGửi kết xuất gỡ lỗi cho syslog\n" +" • --redirect\t\t\tChuyển tiếp trình khách tới siêu trình phục vụ khác." --- pioneers-0.12.2.orig/debian/po/gl.po +++ pioneers-0.12.2/debian/po/gl.po @@ -0,0 +1,104 @@ +# Galician translation of pioneers's debconf templates +# This file is distributed under the same license as the pioneers package. +# Copyright 2008 Jacobo Tarrio . +# +msgid "" +msgstr "" +"Project-Id-Version: pioneers\n" +"Report-Msgid-Bugs-To: pioneers@packages.debian.org\n" +"POT-Creation-Date: 2008-05-25 08:09+0200\n" +"PO-Revision-Date: 2008-05-12 23:52+0100\n" +"Last-Translator: Jacobo Tarrio \n" +"Language-Team: Galician \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: boolean +#. Description +#: ../pioneers-console.templates:1001 +msgid "Run the pioneers meta-server?" +msgstr "¿Executar o metaservidor de pioneers?" + +#. Type: boolean +#. Description +#: ../pioneers-console.templates:1001 +msgid "" +"Pioneers contains a meta-server, which can be used to find networked games. " +"The meta-server needs to run in a central location, so that all players can " +"find it. There is a public meta-server at pioneers.debian.net. Most people " +"do not need to run a meta-server on their computer." +msgstr "" +"Pioneers contén un metaservidor, que se pode empregar para buscar xogos en " +"rede. O metaservidor precisa de se executar nunha ubicación central na que " +"tódolos xogadores o poidan atopar. Hai un metaservidor público en pioneers." +"debian.net. A maioría da xente non precisa de ter un metaservidor no seu " +"ordenador." + +#. Type: string +#. Description +#: ../pioneers-console.templates:2001 +msgid "Port range for creating new games on the meta-server:" +msgstr "Rango de portos para a creación de novos xogos no metaservidor:" + +#. Type: string +#. Description +#: ../pioneers-console.templates:2001 +msgid "" +"The meta-server can create new games, so players don't need to install and " +"run the pioneers server. The ports which are used for these games can be " +"specified. If this field is left empty, the meta-server will disable its " +"game creation functionality." +msgstr "" +"O metaservidor pode crear novos xogos, de xeito que os xogadores non " +"precisan de instalar e executar o servidor de pioneers. Pódense especificar " +"os portos a usar para eses xogos. Se se deixa o campo baleiro, o " +"metaservidor ha desactivar a funcionalidade de creación de xogos." + +#. Type: string +#. Description +#: ../pioneers-console.templates:2001 +msgid "" +"If the value is not empty, it must be two port numbers, separated by a minus " +"sign." +msgstr "" +"Se o valor non está baleiro, debe consistir en dous números de porto " +"separados por un guión (-)." + +#. Type: string +#. Description +#: ../pioneers-console.templates:3001 +msgid "Server name for created games:" +msgstr "Nome do servidor para os xogos creados:" + +#. Type: string +#. Description +#: ../pioneers-console.templates:3001 +msgid "" +"In some cases, the name the meta-server uses for itself when creating new " +"games is incorrect. If this field is not left empty, it is used to override " +"the detected hostname." +msgstr "" +"Nalgúns casos, o nome que emprega o metaservidor para si mesmo ao crear " +"novos xogos é incorrecto. Se este campo non se deixa baleiro, hase empregar " +"para empregar no canto do nome detectado." + +#. Type: string +#. Description +#: ../pioneers-console.templates:4001 +msgid "Extra arguments to pass to the meta-server:" +msgstr "Argumentos adicionais a pasar ao metaservidor:" + +#. Type: string +#. Description +#: ../pioneers-console.templates:4001 +msgid "" +"These arguments are passed to the meta-server. There are only two sensible " +"arguments:\n" +" * --syslog-debug: Send debugging output to syslog\n" +" * --redirect: Redirect clients to another meta-server" +msgstr "" +"Hanse pasar estes argumentos ao metaservidor. Só hai dous argumentos " +"útiles:\n" +" * --syslog-debug: Enviar información de depuración a syslog\n" +" * --redirect: Redirixir os clientes a outro metaservidor" --- pioneers-0.12.2.orig/debian/po/ru.po +++ pioneers-0.12.2/debian/po/ru.po @@ -0,0 +1,107 @@ +# translation of ru.po to Russian +# Copyright 2008 Yuri Kozlov . +# This file is distributed under the same license as the pioneers package. +# +msgid "" +msgstr "" +"Project-Id-Version: pioneers 0.12.2-1\n" +"Report-Msgid-Bugs-To: pioneers@packages.debian.org\n" +"POT-Creation-Date: 2008-05-12 23:22+0200\n" +"PO-Revision-Date: 2008-06-03 21:56+0400\n" +"Last-Translator: Yuri Kozlov \n" +"Language-Team: Russian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: KBabel 1.11.4\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#. Type: boolean +#. Description +#: ../pioneers-console.templates:1001 +msgid "Run the pioneers meta-server?" +msgstr "Запустить мета-сервер pioneers?" + +#. Type: boolean +#. Description +#: ../pioneers-console.templates:1001 +msgid "" +"Pioneers contains a meta-server, which can be used to find networked games. " +"The meta-server needs to run in a central location, so that all players can " +"find it. There is a public meta-server at pioneers.debian.net. Most people " +"do not need to run a meta-server on their computer." +msgstr "" +"Pioneers содержит мета-сервер, который может быть использован для " +"поиска сетевых игр. Мета-сервер нужно запускать на известном сайте, " +"чтобы игроки могли его найти. Открыт публичный мета-сервер на " +"pioneers.debian.net. Большинству людей ненужно запускать мета-сервер " +"на своём компьютере." + +#. Type: string +#. Description +#: ../pioneers-console.templates:2001 +msgid "Port range for creating new games on the meta-server:" +msgstr "Диапазон портов для создания новых игр на мета-сервере:" + +#. Type: string +#. Description +#: ../pioneers-console.templates:2001 +msgid "" +"The meta-server can create new games, so players don't need to install and " +"run the pioneers server. The ports which are used for these games can be " +"specified. If this field is left empty, the meta-server will disable its " +"game creation functionality." +msgstr "" +"Мета-сервер может создавать новые игры, поэтому игрокам ненужно " +"устанавливать и запускать сервер pioneers. Можно указать диапазон портов, " +"которые будут использоваться под эти игры. Если оставить поле пустым, то " +"возможность создания игр на мета-сервере будет выключена." + +#. Type: string +#. Description +#: ../pioneers-console.templates:2001 +msgid "" +"If the value is not empty, it must be two port numbers, separated by a minus " +"sign." +msgstr "" +"Если значение не пустое, то оно должно содержать два числа (порты), " +"разделённые знаком минус." + +#. Type: string +#. Description +#: ../pioneers-console.templates:3001 +msgid "Server name for created games:" +msgstr "Имя сервера для создаваемых игр:" + +#. Type: string +#. Description +#: ../pioneers-console.templates:3001 +msgid "" +"In some cases, the name the meta-server uses for itself when creating new " +"games is incorrect. If this field is not left empty, it is used to override " +"the detected hostname." +msgstr "" +"В некоторых случаях, при создании новых игр мета-сервер выбирает неправильное " +"имя. Если это поле не пустое, то его значение заменит используемое имя " +"хоста." + +#. Type: string +#. Description +#: ../pioneers-console.templates:4001 +msgid "Extra arguments to pass to the meta-server:" +msgstr "Дополнительные параметры для передачи мета-серверу:" + +#. Type: string +#. Description +#: ../pioneers-console.templates:4001 +msgid "" +"These arguments are passed to the meta-server. There are only two sensible " +"arguments:\n" +" * --syslog-debug: Send debugging output to syslog\n" +" * --redirect: Redirect clients to another meta-server" +msgstr "" +"Мета-сервер принимает некоторые параметры. Вот два " +"полезных параметра:\n" +" * --syslog-debug: отправлять отладочную информацию в syslog\n" +" * --redirect: перенаправлять клиентов на другой мета-сервер" +