This is an automated email from the git hooks/post-receive script. olek-guest pushed a commit to branch updates in repository cyphesis-cpp.
commit 96cf7ce1f2ecc233d46cfc2439e4e3eee34586c0 Author: Olek Wojnar <[email protected]> Date: Mon Jul 4 22:31:04 2016 -0400 Remove debconf The level of complexity vastly outweighed the slight simplification for user setup. In the end, a user running a server can be expected to have enough technical savvy to configure the server using the conf file. If not, there are much larger pitfalls in store with this program! --- debian/README.Debian | 19 +- debian/changelog | 6 + debian/control | 7 +- debian/copyright | 2 +- debian/cyphesis-cpp.config | 56 ------ debian/cyphesis-cpp.postinst | 25 +-- debian/cyphesis-cpp.templates | 59 ------- .../patches/do-not-register-with-metaserver.patch | 18 ++ debian/patches/series | 1 + debian/po/POTFILES.in | 1 - debian/po/cs.po | 153 ----------------- debian/po/da.po | 155 ----------------- debian/po/de.po | 171 ------------------ debian/po/es.po | 191 --------------------- debian/po/fr.po | 183 -------------------- debian/po/it.po | 157 ----------------- debian/po/ja.po | 164 ------------------ debian/po/nl.po | 182 -------------------- debian/po/pl.po | 160 ----------------- debian/po/pt.po | 165 ------------------ debian/po/ru.po | 160 ----------------- debian/po/sv.po | 164 ------------------ debian/po/templates.pot | 137 --------------- debian/po/vi.po | 163 ------------------ debian/rules | 4 - 25 files changed, 41 insertions(+), 2462 deletions(-) diff --git a/debian/README.Debian b/debian/README.Debian index e82c715..ef3abac 100644 --- a/debian/README.Debian +++ b/debian/README.Debian @@ -37,14 +37,15 @@ That's all for initializing the server for the first time. Now the appropriate client can connect to it and play Mason. -Daemon ------- +Daemon and other settings +------------------------- The cyphesis-cpp daemon is configured by default to not -start automatically. This can be changed as follows: - -1) As root execute: "dpkg-reconfigure cyphesis-cpp" - -2) When asked if the server should start automatically, select "yes." - -The server will now start automatically when the machine boots. +start automatically. This can be changed by setting +daemon="true" in the cyphesis.vconf file in /etc or by +adding that line to a .cyphesis.vconf file in the home +directory of the user who will be running the cyphesis +server. + +The server will now start automatically when the machine boots. +Other server setting can be adjusted in the same way. diff --git a/debian/changelog b/debian/changelog index 41ade21..a05d8f0 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +cyphesis-cpp (0.6.0-4) unstable; urgency=high + + * Remove debconf (Closes: ##794948) + + -- Olek Wojnar <[email protected]> Mon, 04 Jul 2016 22:05:12 -0400 + cyphesis-cpp (0.6.0-3) unstable; urgency=medium * Prevent d/postinst from violating policy (Closes: #767818) diff --git a/debian/control b/debian/control index df2ce17..09dfb96 100644 --- a/debian/control +++ b/debian/control @@ -18,12 +18,11 @@ Build-Depends: debhelper (>= 9), libskstream-0.3-dev, libvarconf-dev, libwfmath-1.0-dev (>= 1.0.0), - po-debconf, python-dev -Standards-Version: 3.9.6 +Standards-Version: 3.9.8 Homepage: http://www.worldforge.org/ -Vcs-Git: git://anonscm.debian.org/pkg-games/cyphesis-cpp.git -Vcs-Browser: http://anonscm.debian.org/cgit/pkg-games/cyphesis-cpp.git +Vcs-Git: https://anonscm.debian.org/git/pkg-games/cyphesis-cpp.git +Vcs-Browser: https://anonscm.debian.org/cgit/pkg-games/cyphesis-cpp.git Package: cyphesis-cpp Architecture: any diff --git a/debian/copyright b/debian/copyright index a9aca74..941814b 100644 --- a/debian/copyright +++ b/debian/copyright @@ -33,7 +33,7 @@ License: LGPL-2.1+ Files: debian/* Copyright: 2002-2009, Michael Koch <[email protected]> - 2013-2014, Olek Wojnar <[email protected]> + 2013-2016, Olek Wojnar <[email protected]> License: GPL-2+ License: GPL-2+ diff --git a/debian/cyphesis-cpp.config b/debian/cyphesis-cpp.config deleted file mode 100644 index 630f133..0000000 --- a/debian/cyphesis-cpp.config +++ /dev/null @@ -1,56 +0,0 @@ -#!/bin/sh - -set -e - -CONFFILE="/etc/cyphesis/cyphesis.vconf" - -# source debconf library -. /usr/share/debconf/confmodule - -# set default values -DB_HOST="localhost" -DB_NAME="cyphesis" -DB_USER="cyphesis" -DB_PWD="" -USE_META="false" -AUTOSTART="false" - -# set actual values -db_set cyphesis-cpp/postgresql/server $DB_HOST -db_set cyphesis-cpp/postgresql/database $DB_NAME -db_set cyphesis-cpp/postgresql/username $DB_USER -db_set cyphesis-cpp/postgresql/password $DB_PWD -db_set cyphesis-cpp/usemetaserver $USE_META -db_set cyphesis-cpp/autostart $AUTOSTART - -# questions about database connection -db_input high cyphesis-cpp/postgresql/note || true -db_go - -db_input medium cyphesis-cpp/postgresql/local_server || true -db_go - -db_input medium cyphesis-cpp/autostart || true -db_go - -db_get cyphesis-cpp/postgresql/local_server - -if [ "x$RET" != xtrue ] ; -then - - db_input medium cyphesis-cpp/postgresql/server || true - db_go - - db_input medium cyphesis-cpp/postgresql/database || true - db_go - - db_input medium cyphesis-cpp/postgresql/username || true - db_go - - db_input medium cyphesis-cpp/postgresql/password || true - db_go - - db_input medium cyphesis-cpp/usemetaserver || true - db_go - -fi diff --git a/debian/cyphesis-cpp.postinst b/debian/cyphesis-cpp.postinst index c42e168..5f3001d 100644 --- a/debian/cyphesis-cpp.postinst +++ b/debian/cyphesis-cpp.postinst @@ -2,36 +2,15 @@ set -e -. /usr/share/debconf/confmodule - if [ "$1" = configure ] ; then # Add user cyphesis as system user adduser --system --quiet --no-create-home --home /usr/share/games/cyphesis --gecos "Cyphesis C++ Administrator" --force-badname Cyphesis - # Get the return values - db_get cyphesis-cpp/autostart - AUTOSTART=$RET - - # This is a little ugly but otherwise lintian complains - update-rc.d cyphesis-cpp defaults >/dev/null - if [ "x$AUTOSTART" != xtrue ] ; then - update_rc="disable" - invoke_rc="stop" - else - update_rc="enable" - invoke_rc="start" - fi - - # Clear password from debconf database - db_reset cyphesis-cpp/postgresql/password - - update-rc.d cyphesis-cpp $update_rc >/dev/null - invoke-rc.d cyphesis-cpp $invoke_rc || exit $? + update-rc.d cyphesis-cpp enable >/dev/null + invoke-rc.d cyphesis-cpp start || exit $? fi -db_stop - #DEBHELPER# diff --git a/debian/cyphesis-cpp.templates b/debian/cyphesis-cpp.templates deleted file mode 100644 index 7cd0a24..0000000 --- a/debian/cyphesis-cpp.templates +++ /dev/null @@ -1,59 +0,0 @@ -Template: cyphesis-cpp/postgresql/note -Type: note -_Description: Configuration note - In order to use cyphesis-cpp you must have access to a postgresql server. - The server does not have to be installed on the same host as cyphesis-cpp - but it has to be reachable over a network and you have to have access to it. - . - For further configuration information please read - /usr/share/doc/cyphesis-cpp/README.Debian. - -Template: cyphesis-cpp/postgresql/local_server -Type: boolean -Default: true -_Description: Use a local postgresql server? - Cyphesis-cpp can use a local postgresql server over unix sockets instead - over a network. The database server doesn't need to listen to the network then. - This is recommended for local usage as it's thought to be more secure. - -Template: cyphesis-cpp/postgresql/server -Type: string -Default: localhost -_Description: Database server: - The host on which the postgresql database server is located. This will be - used by cyphesis-cpp to store its internal data. - -Template: cyphesis-cpp/postgresql/database -Type: string -Default: cyphesis -_Description: Database name: - The database name cyphesis-cpp should use on the database server. - -Template: cyphesis-cpp/postgresql/username -Type: string -Default: cyphesis -_Description: Database user: - Please type in the username for the database server - -Template: cyphesis-cpp/postgresql/password -Type: password -_Description: Password: - Please type in the password to use to access the database server - -Template: cyphesis-cpp/usemetaserver -Type: boolean -Default: false -_Description: Register with the WorldForge metaserver? - Cyphesis-cpp can use the metaserver of the WorldForge project to announce - itself to the world. Players will detect your server automatically when - starting their client. - -Template: cyphesis-cpp/autostart -Type: boolean -Default: false -_Description: Automatically start the Cyphesis server on boot? - Cyphesis-cpp can start automatically when your computer boots. However, - unless you're running a dedicated server, this is probably not the - behavior you are looking for. By default, you will need to manually - start Cyphesis-cpp from the command line so that it does not run when - it is not needed. diff --git a/debian/patches/do-not-register-with-metaserver.patch b/debian/patches/do-not-register-with-metaserver.patch new file mode 100644 index 0000000..a151927 --- /dev/null +++ b/debian/patches/do-not-register-with-metaserver.patch @@ -0,0 +1,18 @@ +Description: Do not register with metaserver + The vast majority of users will not want to advertise their server. Users who + are ready to run a public server will easily be able to reenable this setting. +Forwarded: not-needed +Author: Olek Wojnar <[email protected]> +Last-Update: 2016-07-04 + +--- a/data/cyphesis.vconf ++++ b/data/cyphesis.vconf +@@ -19,7 +19,7 @@ + # Resticted mode prevents creation of user accounts + restricted="false" + # Register server with the meta server +-usemetaserver="true" ++usemetaserver="false" + metaserver="metaserver.worldforge.org" + # Run in daemon mode + daemon="false" diff --git a/debian/patches/series b/debian/patches/series index e80842d..56f8a92 100644 --- a/debian/patches/series +++ b/debian/patches/series @@ -3,3 +3,4 @@ fix-broken-PythonArithmeticScripttest.patch man_pages_to_section_6.patch add-missing-man-pages.patch fix-broken-install-data-hook-target.patch +do-not-register-with-metaserver.patch diff --git a/debian/po/POTFILES.in b/debian/po/POTFILES.in deleted file mode 100644 index 1ac1c18..0000000 --- a/debian/po/POTFILES.in +++ /dev/null @@ -1 +0,0 @@ -[type: gettext/rfc822deb] cyphesis-cpp.templates diff --git a/debian/po/cs.po b/debian/po/cs.po deleted file mode 100644 index 4875283..0000000 --- a/debian/po/cs.po +++ /dev/null @@ -1,153 +0,0 @@ -# Czech translation of cyphesis templates -# -msgid "" -msgstr "" -"Project-Id-Version: cyphesis-cpp\n" -"Report-Msgid-Bugs-To: [email protected]\n" -"POT-Creation-Date: 2014-04-30 01:26-0500\n" -"PO-Revision-Date: 2014-05-02 09:08+0200\n" -"Last-Translator: Martin Sin <[email protected]>\n" -"Language-Team: Czech <[email protected]>\n" -"Language: cs\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -#. Type: note -#. Description -#: ../cyphesis-cpp.templates:1001 -msgid "Configuration note" -msgstr "Konfigurační poznámka" - -#. Type: note -#. Description -#: ../cyphesis-cpp.templates:1001 -msgid "" -"In order to use cyphesis-cpp you must have access to a postgresql server. " -"The server does not have to be installed on the same host as cyphesis-cpp " -"but it has to be reachable over a network and you have to have access to it." -msgstr "" -"Pro používání cyphesis-cpp musíte mít přístup k serveru postgresql. Server " -"nemusí být nainstalován na stejném počítači jako cyphesis-cpp, ale musí být " -"dostupný přes síť a je třeba na něj mít přístup." - -#. Type: note -#. Description -#: ../cyphesis-cpp.templates:1001 -msgid "" -"For further configuration information please read /usr/share/doc/cyphesis-" -"cpp/README.Debian." -msgstr "" -"Pro další konfigurační informace si prosím přečtěte /usr/share/doc/cyphesis-" -"cpp/README.Debian." - -#. Type: boolean -#. Description -#: ../cyphesis-cpp.templates:2001 -msgid "Use a local postgresql server?" -msgstr "Použít místní server postgresql?" - -#. Type: boolean -#. Description -#: ../cyphesis-cpp.templates:2001 -msgid "" -"Cyphesis-cpp can use a local postgresql server over unix sockets instead " -"over a network. The database server doesn't need to listen to the network " -"then. This is recommended for local usage as it's thought to be more secure." -msgstr "" -"Cyphesis-cpp může využít ke spojení s místním serverem postgresql místo sítě " -"unixové sockety. Databázový server pak nemusí poslouchat na síti, což je pro " -"místní použití doporučená možnost, protože je považována za bezpečnější." - -#. Type: string -#. Description -#: ../cyphesis-cpp.templates:3001 -msgid "Database server:" -msgstr "Databázový server:" - -#. Type: string -#. Description -#: ../cyphesis-cpp.templates:3001 -msgid "" -"The host on which the postgresql database server is located. This will be " -"used by cyphesis-cpp to store its internal data." -msgstr "" -"Počítač s databázovým serverem postgresql. Cyphesis-cpp jej používá k " -"uložení svých vnitřních dat." - -#. Type: string -#. Description -#: ../cyphesis-cpp.templates:4001 -msgid "Database name:" -msgstr "Jméno databáze:" - -#. Type: string -#. Description -#: ../cyphesis-cpp.templates:4001 -msgid "The database name cyphesis-cpp should use on the database server." -msgstr "Jméno databáze cyphesis-cpp na databázovém serveru." - -#. Type: string -#. Description -#: ../cyphesis-cpp.templates:5001 -msgid "Database user:" -msgstr "Uživatel databáze:" - -#. Type: string -#. Description -#: ../cyphesis-cpp.templates:5001 -msgid "Please type in the username for the database server" -msgstr "Zadejte prosím uživatelské jméno pro databázový server" - -#. Type: password -#. Description -#: ../cyphesis-cpp.templates:6001 -msgid "Password:" -msgstr "Heslo:" - -#. Type: password -#. Description -#: ../cyphesis-cpp.templates:6001 -msgid "Please type in the password to use to access the database server" -msgstr "Zadejte prosím heslo pro přístup k databázovému serveru" - -#. Type: boolean -#. Description -#: ../cyphesis-cpp.templates:7001 -msgid "Register with the WorldForge metaserver?" -msgstr "Registrovat se pomocí metaserveru WorldForge?" - -#. Type: boolean -#. Description -#: ../cyphesis-cpp.templates:7001 -msgid "" -"Cyphesis-cpp can use the metaserver of the WorldForge project to announce " -"itself to the world. Players will detect your server automatically when " -"starting their client." -msgstr "" -"Cyphesis-cpp může pro oznamování do světa použít metaserver z projektu " -"Worldforge. Hráči pak naleznou váš server automaticky hned při spuštění " -"svých klientů." - -#. Type: boolean -#. Description -#: ../cyphesis-cpp.templates:8001 -msgid "Automatically start the Cyphesis server on boot?" -msgstr "Spustit server Cyphesis automaticky po startu počítače?" - -#. Type: boolean -#. Description -#: ../cyphesis-cpp.templates:8001 -msgid "" -"Cyphesis-cpp can start automatically when your computer boots. However, " -"unless you're running a dedicated server, this is probably not the behavior " -"you are looking for. By default, you will need to manually start Cyphesis-" -"cpp from the command line so that it does not run when it is not needed." -msgstr "" -"Cyphesis-cpp je možno spouštět automaticky při startu počítače. Samozřemě, " -"pokud zrovna neprovozujete server k tomu určený, pravděpodobně to nebudete " -"chtít zapnout. Ve výchozím nastaví je třeba Cyphesis-cpp spustit přímo z " -"příkazové řádky a pokud to není nutné program tedy neběží." - -#~ msgid "Use a metaserver?" -#~ msgstr "Použít metaserver?" diff --git a/debian/po/da.po b/debian/po/da.po deleted file mode 100644 index 6fc76c7..0000000 --- a/debian/po/da.po +++ /dev/null @@ -1,155 +0,0 @@ -# Danish translation cyphesis-cpp. -# Copyright (C) 2014 cyphesis-cpp. -# This file is distributed under the same license as the cyphesis-cpp package. -# Joe Hansen <[email protected]>, 2014. -# -msgid "" -msgstr "" -"Project-Id-Version: cyphesis-cpp\n" -"Report-Msgid-Bugs-To: [email protected]\n" -"POT-Creation-Date: 2014-04-30 01:26-0500\n" -"PO-Revision-Date: 2014-05-08 20:27+0200\n" -"Last-Translator: Joe Hansen <[email protected]>\n" -"Language-Team: Danish <[email protected]>\n" -"Language: da\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -#. Type: note -#. Description -#: ../cyphesis-cpp.templates:1001 -msgid "Configuration note" -msgstr "Konfigurationsbemærkning" - -#. Type: note -#. Description -#: ../cyphesis-cpp.templates:1001 -msgid "" -"In order to use cyphesis-cpp you must have access to a postgresql server. " -"The server does not have to be installed on the same host as cyphesis-cpp " -"but it has to be reachable over a network and you have to have access to it." -msgstr "" -"For at bruge cyphesis-cpp skal du have adgang til en postgresql-server. " -"Serveren skal ikke være installeret på den samme vært som cyphesis-cpp, " -"men den skal kunne nås over et netværk og du skal have adgang til den." - -#. Type: note -#. Description -#: ../cyphesis-cpp.templates:1001 -msgid "" -"For further configuration information please read /usr/share/doc/cyphesis-" -"cpp/README.Debian." -msgstr "" -"For yderligere konfigurationsinformation så læs venligst /ursr/share/doc" -"/cyphesis-cpp/README.Debian." - -#. Type: boolean -#. Description -#: ../cyphesis-cpp.templates:2001 -msgid "Use a local postgresql server?" -msgstr "Brug en lokal postgresql-server?" - -#. Type: boolean -#. Description -#: ../cyphesis-cpp.templates:2001 -msgid "" -"Cyphesis-cpp can use a local postgresql server over unix sockets instead " -"over a network. The database server doesn't need to listen to the network " -"then. This is recommended for local usage as it's thought to be more secure." -msgstr "" -"Cyphesis-cpp kan bruge en lokal postgresql-server over Unix-sokler i stedet " -"for over et netværk. Databaseserveren skal ikke nødvendigvis lytte på netværket " -"i dette tilfælde. Dette anbefales for lokal brug, da det anses for at være " -"mere sikkert." - -#. Type: string -#. Description -#: ../cyphesis-cpp.templates:3001 -msgid "Database server:" -msgstr "Databaseserver:" - -#. Type: string -#. Description -#: ../cyphesis-cpp.templates:3001 -msgid "" -"The host on which the postgresql database server is located. This will be " -"used by cyphesis-cpp to store its internal data." -msgstr "" -"Værten som postgresql-databaseserveren er placeret på. Dette vil blive " -"brugt af cyphesis-cpp til at lagre sine interne data." - -#. Type: string -#. Description -#: ../cyphesis-cpp.templates:4001 -msgid "Database name:" -msgstr "Databasenavn:" - -#. Type: string -#. Description -#: ../cyphesis-cpp.templates:4001 -msgid "The database name cyphesis-cpp should use on the database server." -msgstr "Databasenavnet som cyphesis-cpp skal bruge på databaseserveren." - -#. Type: string -#. Description -#: ../cyphesis-cpp.templates:5001 -msgid "Database user:" -msgstr "Databasebruger:" - -#. Type: string -#. Description -#: ../cyphesis-cpp.templates:5001 -msgid "Please type in the username for the database server" -msgstr "Indtast venligst brugernavnet for databaseserveren" - -#. Type: password -#. Description -#: ../cyphesis-cpp.templates:6001 -msgid "Password:" -msgstr "Adgangskode:" - -#. Type: password -#. Description -#: ../cyphesis-cpp.templates:6001 -msgid "Please type in the password to use to access the database server" -msgstr "Indtast venligst adgangskoden der skal bruges for at tilgå databaseserveren" - -#. Type: boolean -#. Description -#: ../cyphesis-cpp.templates:7001 -msgid "Register with the WorldForge metaserver?" -msgstr "Registrer med WorldForge-metaserveren?" - -#. Type: boolean -#. Description -#: ../cyphesis-cpp.templates:7001 -msgid "" -"Cyphesis-cpp can use the metaserver of the WorldForge project to announce " -"itself to the world. Players will detect your server automatically when " -"starting their client." -msgstr "" -"Cyphesis-cpp kan bruge metaserveren for WorldForge-projektet til at " -"annoncere sig selv for verdenen. Spillere vil detektere din server automatisk " -"når de starter deres klient." - -#. Type: boolean -#. Description -#: ../cyphesis-cpp.templates:8001 -msgid "Automatically start the Cyphesis server on boot?" -msgstr "Start automatisk Cyphesis-serveren ved opstart?" - -#. Type: boolean -#. Description -#: ../cyphesis-cpp.templates:8001 -msgid "" -"Cyphesis-cpp can start automatically when your computer boots. However, " -"unless you're running a dedicated server, this is probably not the behavior " -"you are looking for. By default, you will need to manually start Cyphesis-" -"cpp from the command line so that it does not run when it is not needed." -msgstr "" -"Cyphesis-cpp kan starte automatisk når din computer opstartes. Det er dog " -"sikkert ikke den opførsel du er på udkig efter, med mindre at du kører " -"en dedikeret server. Som standard skal du starte Cyphesis-cpp manuelt fra " -"kommandolinjen, så programmet ikke kører, når der ikke er brug for det." - diff --git a/debian/po/de.po b/debian/po/de.po deleted file mode 100644 index f130ed0..0000000 --- a/debian/po/de.po +++ /dev/null @@ -1,171 +0,0 @@ -# German translation of cyphesis-cpp. -# -# Translators, if you are not familiar with the PO format, gettext -# documentation is worth reading, especially sections dedicated to -# this format, e.g. by running: -# info -n '(gettext)PO Files' -# info -n '(gettext)Header Entry' -# -# Some information specific to po-debconf are available at -# /usr/share/doc/po-debconf/README-trans -# or http://www.debian.org/intl/l10n/po-debconf/README-trans -# -# Developers do not need to manually edit POT or PO files. -# Michael Koch <[email protected]>, 2005. -# Mario Blättermann <[email protected]>, 2014. -# -msgid "" -msgstr "" -"Project-Id-Version: cyphesis-cpp\n" -"Report-Msgid-Bugs-To: [email protected]\n" -"POT-Creation-Date: 2014-04-30 01:26-0500\n" -"PO-Revision-Date: 2014-05-11 17:54+0100\n" -"Last-Translator: Mario Blättermann <[email protected]>\n" -"Language-Team: German <[email protected]>\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Poedit 1.5.4\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"Language: de\n" - -#. Type: note -#. Description -#: ../cyphesis-cpp.templates:1001 -msgid "Configuration note" -msgstr "Konfigurationshinweis" - -#. Type: note -#. Description -#: ../cyphesis-cpp.templates:1001 -msgid "" -"In order to use cyphesis-cpp you must have access to a postgresql server. " -"The server does not have to be installed on the same host as cyphesis-cpp " -"but it has to be reachable over a network and you have to have access to it." -msgstr "" -"Um cyphesis-cpp benutzen zu können, müssen Sie Zugriff auf einen PostgreSQL-" -"Server haben. Dieser Server muss nicht auf dem selben Rechner wie cyphesis-" -"cpp installiert sein, er muss nur über das Netzwerk erreichbar sein und Sie " -"müssen Zugriffsrechte auf ihm besitzen." - -#. Type: note -#. Description -#: ../cyphesis-cpp.templates:1001 -msgid "" -"For further configuration information please read /usr/share/doc/cyphesis-" -"cpp/README.Debian." -msgstr "" -"Für weitere Informationen lesen Sie bitte die Datei /usr/share/doc/cyphesis-" -"cpp/README.Debian." - -#. Type: boolean -#. Description -#: ../cyphesis-cpp.templates:2001 -msgid "Use a local postgresql server?" -msgstr "Lokalen PostgreSQL-Server benutzen?" - -#. Type: boolean -#. Description -#: ../cyphesis-cpp.templates:2001 -msgid "" -"Cyphesis-cpp can use a local postgresql server over unix sockets instead " -"over a network. The database server doesn't need to listen to the network " -"then. This is recommended for local usage as it's thought to be more secure." -msgstr "" -"Cyphesis-cpp kann auf einen lokalen PostgreSQL-Server über UNIX-Sockets " -"statt über das Netzwerk zugreifen. Der Datenbankserver braucht dann nicht am " -"Netzwerk auf Anfragen zu warten. Dies wird für lokale Benutzung empfohlen, " -"weil es als sicherer angesehen wird." - -#. Type: string -#. Description -#: ../cyphesis-cpp.templates:3001 -msgid "Database server:" -msgstr "Datenbankserver:" - -#. Type: string -#. Description -#: ../cyphesis-cpp.templates:3001 -msgid "" -"The host on which the postgresql database server is located. This will be " -"used by cyphesis-cpp to store its internal data." -msgstr "" -"Der Rechner, auf dem sich der PostgreSQL-Datenbankserver befindet. Dieser " -"wird von cyphesis-cpp zum Speichern interner Daten verwendet." - -#. Type: string -#. Description -#: ../cyphesis-cpp.templates:4001 -msgid "Database name:" -msgstr "Datenbankname:" - -#. Type: string -#. Description -#: ../cyphesis-cpp.templates:4001 -msgid "The database name cyphesis-cpp should use on the database server." -msgstr "" -"Der Name der Datenbank, die cyphesis-cpp auf dem Datenbankserver benutzen " -"soll." - -#. Type: string -#. Description -#: ../cyphesis-cpp.templates:5001 -msgid "Database user:" -msgstr "Datenbankbenutzer:" - -#. Type: string -#. Description -#: ../cyphesis-cpp.templates:5001 -msgid "Please type in the username for the database server" -msgstr "Name des Benutzers für den Datenbankzugriff" - -#. Type: password -#. Description -#: ../cyphesis-cpp.templates:6001 -msgid "Password:" -msgstr "Passwort:" - -#. Type: password -#. Description -#: ../cyphesis-cpp.templates:6001 -msgid "Please type in the password to use to access the database server" -msgstr "Passwort des Benutzers für den Datenbankzugriff" - -#. Type: boolean -#. Description -#: ../cyphesis-cpp.templates:7001 -msgid "Register with the WorldForge metaserver?" -msgstr "Auf dem WorldForge-Metaserver registrieren?" - -#. Type: boolean -#. Description -#: ../cyphesis-cpp.templates:7001 -msgid "" -"Cyphesis-cpp can use the metaserver of the WorldForge project to announce " -"itself to the world. Players will detect your server automatically when " -"starting their client." -msgstr "" -"Cyphesis-cpp kann sich beim Metaserver des Worldforge-Projektes anmelden, um " -"sich der Welt bekannt zu machen. Spieler werden dann Ihren Server " -"automatisch entdecken, wenn sie ihren Client starten." - -#. Type: boolean -#. Description -#: ../cyphesis-cpp.templates:8001 -msgid "Automatically start the Cyphesis server on boot?" -msgstr "Cyphesis-Server automatisch beim Systemstart aufrufen?" - -#. Type: boolean -#. Description -#: ../cyphesis-cpp.templates:8001 -msgid "" -"Cyphesis-cpp can start automatically when your computer boots. However, " -"unless you're running a dedicated server, this is probably not the behavior " -"you are looking for. By default, you will need to manually start Cyphesis-" -"cpp from the command line so that it does not run when it is not needed." -msgstr "" -"Cyphesis-cpp kann automatisch aufgerufen werden, wenn der Rechner startet. " -"Allerdings ist das möglicherweise nicht das erwünschte Verhalten, es sei " -"denn, Sie nutzen einen dedizierten Server. Standardmäßig müssen Sie cyphesis-" -"cpp manuell auf der Befehlszeile starten, so dass der Server nur dann läuft, " -"wenn er benötigt wird." diff --git a/debian/po/es.po b/debian/po/es.po deleted file mode 100644 index bac0db1..0000000 --- a/debian/po/es.po +++ /dev/null @@ -1,191 +0,0 @@ -# cyphesis-cpp po-debconf translation to Spanish -# Copyright (C) 2005, 2014 Software in the Public Interest -# This file is distributed under the same license as the cyphesis-cpp package. -# -# Changes: -# - Initial translation -# César Gómez Martín <[email protected]>, 2005 -# -# - Updates -# Francisco Javier Cuadrado <[email protected]>, 2009 -# Matías Bellone <[email protected]>, 2014 -# -# Traductores, si no conocen el formato PO, merece la pena leer la -# documentación de gettext, especialmente las secciones dedicadas a este -# formato, por ejemplo ejecutando: -# info -n '(gettext)PO Files' -# info -n '(gettext)Header Entry' -# -# Equipo de traducción al español, por favor, lean antes de traducir -# los siguientes documentos: -# -# - El proyecto de traducción de Debian al español -# http://www.debian.org/intl/spanish/ -# especialmente las notas de traducción en -# http://www.debian.org/intl/spanish/notas -# -# - La guía de traducción de po's de debconf: -# /usr/share/doc/po-debconf/README-trans -# o http://www.debian.org/intl/l10n/po-debconf/README-trans -# -msgid "" -msgstr "" -"Project-Id-Version: cyphesis-cpp 0.5.16-1\n" -"Report-Msgid-Bugs-To: [email protected]\n" -"POT-Creation-Date: 2014-04-30 01:26-0500\n" -"PO-Revision-Date: 2014-06-13 21:15-0300\n" -"Last-Translator: Matías Bellone <[email protected]>\n" -"Language-Team: Debian l10n Spanish <[email protected]>\n" -"Language: es\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -#. Type: note -#. Description -#: ../cyphesis-cpp.templates:1001 -msgid "Configuration note" -msgstr "Nota sobre la configuración" - -#. Type: note -#. Description -#: ../cyphesis-cpp.templates:1001 -msgid "" -"In order to use cyphesis-cpp you must have access to a postgresql server. " -"The server does not have to be installed on the same host as cyphesis-cpp " -"but it has to be reachable over a network and you have to have access to it." -msgstr "" -"Para poder usar cyphesis-cpp debe tener acceso a un servidor postgresql. " -"No es necesario que el servidor esté instalado en la misma máquina que " -"cyphesis-cpp, pero tiene que ser accesible a través de la red y debe tener " -"acceso al mismo." - -#. Type: note -#. Description -#: ../cyphesis-cpp.templates:1001 -msgid "" -"For further configuration information please read /usr/share/doc/cyphesis-" -"cpp/README.Debian." -msgstr "" -"Consulte «/usr/share/doc/cyphesis-cpp/README.Debian» para más información " -"sobre la configuración." - -#. Type: boolean -#. Description -#: ../cyphesis-cpp.templates:2001 -msgid "Use a local postgresql server?" -msgstr "¿Desea utilizar un servidor postgresql local?" - -#. Type: boolean -#. Description -#: ../cyphesis-cpp.templates:2001 -msgid "" -"Cyphesis-cpp can use a local postgresql server over unix sockets instead " -"over a network. The database server doesn't need to listen to the network " -"then. This is recommended for local usage as it's thought to be more secure." -msgstr "" -"Cyphesis-cpp puede utilizar un servidor postgresql local mediante zócalos " -"(«sockets») unix en lugar de la red. En este caso el servidor no necesitará " -"estar escuchando en la red. Esto es recomendable para uso local, ya que se " -"lo considera más seguro." - -#. Type: string -#. Description -#: ../cyphesis-cpp.templates:3001 -msgid "Database server:" -msgstr "Servidor de base de datos:" - -#. Type: string -#. Description -#: ../cyphesis-cpp.templates:3001 -#| msgid "" -#| "On which host is the postgresql database server located, which will be " -#| "used by cyphesis-cpp to store its internal data?" -msgid "" -"The host on which the postgresql database server is located. This will be " -"used by cyphesis-cpp to store its internal data." -msgstr "" -"Equipo en el que se encuentra el servidor de base de datos postgresql. " -"cyphesis-cpp lo utilizará para almacenar sus datos internos." - -#. Type: string -#. Description -#: ../cyphesis-cpp.templates:4001 -msgid "Database name:" -msgstr "Nombre de la base de datos:" - -#. Type: string -#. Description -#: ../cyphesis-cpp.templates:4001 -#| msgid "" -#| "What is the database name cyphesis-cpp should use on the database server?" -msgid "The database name cyphesis-cpp should use on the database server." -msgstr "" -"Nombre de la base de datos que cyphesis-cpp utilizará en el servidor de " -"base de datos." - -#. Type: string -#. Description -#: ../cyphesis-cpp.templates:5001 -msgid "Database user:" -msgstr "Usuario de la base de datos:" - -#. Type: string -#. Description -#: ../cyphesis-cpp.templates:5001 -msgid "Please type in the username for the database server" -msgstr "Introduzca el nombre de usuario para el servidor de base de datos" - -#. Type: password -#. Description -#: ../cyphesis-cpp.templates:6001 -msgid "Password:" -msgstr "Contraseña:" - -#. Type: password -#. Description -#: ../cyphesis-cpp.templates:6001 -msgid "Please type in the password to use to access the database server" -msgstr "Introduzca la contraseña para acceder al servidor de base de datos" - -#. Type: boolean -#. Description -#: ../cyphesis-cpp.templates:7001 -msgid "Register with the WorldForge metaserver?" -msgstr "¿Desea registrarse con el metaservidor WorldForge?" - -#. Type: boolean -#. Description -#: ../cyphesis-cpp.templates:7001 -msgid "" -"Cyphesis-cpp can use the metaserver of the WorldForge project to announce " -"itself to the world. Players will detect your server automatically when " -"starting their client." -msgstr "" -"Cyphesis-cpp puede utilizar el metaservidor del proyecto Worldforge para " -"anunciarse al mundo. Los jugadores detectarán su servidor automáticamente " -"cuando inicien sus clientes." - -#. Type: boolean -#. Description -#: ../cyphesis-cpp.templates:8001 -msgid "Automatically start the Cyphesis server on boot?" -msgstr "" -"¿Desea iniciar el servidor Cyphesis automáticamente al arrancar el equipo?" - -#. Type: boolean -#. Description -#: ../cyphesis-cpp.templates:8001 -msgid "" -"Cyphesis-cpp can start automatically when your computer boots. However, " -"unless you're running a dedicated server, this is probably not the behavior " -"you are looking for. By default, you will need to manually start Cyphesis-" -"cpp from the command line so that it does not run when it is not needed." -msgstr "" -"Cyphesis-cpp puede iniciarse automáticamente cuando arranque el equipo. Sin " -"embargo, a menos que esté ejecutando un servidor dedicado, probablemente no " -"sea el comportamiendo que desee. De forma predeterminada deberá iniciar " -"Cyphesis-cpp manualmente para que no esté ejecutando cuando no es necesario." - -#~ msgid "Use a metaserver?" -#~ msgstr "¿Desea utilizar un metaservidor («metaserver»)?" diff --git a/debian/po/fr.po b/debian/po/fr.po deleted file mode 100644 index 2946ad7..0000000 --- a/debian/po/fr.po +++ /dev/null @@ -1,183 +0,0 @@ -# translation of fr.po to French -# -# Translators, if you are not familiar with the PO format, gettext -# documentation is worth reading, especially sections dedicated to -# this format, e.g. by running: -# info -n '(gettext)PO Files' -# info -n '(gettext)Header Entry' -# -# Some information specific to po-debconf are available at -# /usr/share/doc/po-debconf/README-trans -# or http://www.debian.org/intl/l10n/po-debconf/README-trans -# -# Developers do not need to manually edit POT or PO files. -# -# Christian Perrier <[email protected]>, 2005, 2014. -msgid "" -msgstr "" -"Project-Id-Version: fr\n" -"Report-Msgid-Bugs-To: [email protected]\n" -"POT-Creation-Date: 2014-04-30 01:26-0500\n" -"PO-Revision-Date: 2014-05-02 07:42+0200\n" -"Last-Translator: Christian Perrier <[email protected]>\n" -"Language-Team: French <[email protected]>\n" -"Language: fr\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Lokalize 1.5\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" - -#. Type: note -#. Description -#: ../cyphesis-cpp.templates:1001 -msgid "Configuration note" -msgstr "Note de configuration" - -#. Type: note -#. Description -#: ../cyphesis-cpp.templates:1001 -msgid "" -"In order to use cyphesis-cpp you must have access to a postgresql server. " -"The server does not have to be installed on the same host as cyphesis-cpp " -"but it has to be reachable over a network and you have to have access to it." -msgstr "" -"Pour pouvoir utiliser cyphesis-cpp, vous devez pouvoir accéder à un serveur " -"PostgreSQL. Le serveur ne doit pas nécessairement fonctionner sur le même " -"hôte que cyphesis-cpp, mais doit pouvoir être accessible via le réseau. Vous " -"devez être autorisé à y accéder." - -#. Type: note -#. Description -#: ../cyphesis-cpp.templates:1001 -msgid "" -"For further configuration information please read /usr/share/doc/cyphesis-" -"cpp/README.Debian." -msgstr "" -"Veuillez consulter le fichier /usr/share/doc/cyphesis-cpp/README.Debian pour " -"obtenir plus d'informations à propos de la configuration." - -#. Type: boolean -#. Description -#: ../cyphesis-cpp.templates:2001 -msgid "Use a local postgresql server?" -msgstr "Faut-il utiliser un serveur PostgreSQL local ?" - -#. Type: boolean -#. Description -#: ../cyphesis-cpp.templates:2001 -msgid "" -"Cyphesis-cpp can use a local postgresql server over unix sockets instead " -"over a network. The database server doesn't need to listen to the network " -"then. This is recommended for local usage as it's thought to be more secure." -msgstr "" -"Cyphesis-cpp peut utiliser un serveur PostgreSQL local par l'intermédiaire " -"de sockets Unix plutôt que via le réseau. Le serveur de bases de données ne " -"doit alors pas nécessairement être à l'écoute sur le réseau. Ce mode de " -"fonctionnement est recommandé pour une utilisation locale car il est reconnu " -"comme plus sûr." - -#. Type: string -#. Description -#: ../cyphesis-cpp.templates:3001 -msgid "Database server:" -msgstr "Serveur de bases de données :" - -#. Type: string -#. Description -#: ../cyphesis-cpp.templates:3001 -#| msgid "" -#| "On which host is the postgresql database server located, which will be " -#| "used by cyphesis-cpp to store its internal data?" -msgid "" -"The host on which the postgresql database server is located. This will be " -"used by cyphesis-cpp to store its internal data." -msgstr "" -"Veuillez indiquer l'hôte du serveur de bases de données PostgreSQL où seront " -"conservées les données internes de cyphesis-cpp." - -#. Type: string -#. Description -#: ../cyphesis-cpp.templates:4001 -msgid "Database name:" -msgstr "Nom de la base de données :" - -#. Type: string -#. Description -#: ../cyphesis-cpp.templates:4001 -#| msgid "" -#| "What is the database name cyphesis-cpp should use on the database server?" -msgid "The database name cyphesis-cpp should use on the database server." -msgstr "" -"Veuillez indiquer le nom de la base de données où cyphesis-cpp conservera " -"ses informations." - -#. Type: string -#. Description -#: ../cyphesis-cpp.templates:5001 -msgid "Database user:" -msgstr "Propriétaire de la base de données :" - -#. Type: string -#. Description -#: ../cyphesis-cpp.templates:5001 -msgid "Please type in the username for the database server" -msgstr "" -"Veuillez indiquer le nom du propriétaire de la base de données de cyphesis-" -"cpp." - -#. Type: password -#. Description -#: ../cyphesis-cpp.templates:6001 -msgid "Password:" -msgstr "Mot de passe du propriétaire de la base de données :" - -#. Type: password -#. Description -#: ../cyphesis-cpp.templates:6001 -msgid "Please type in the password to use to access the database server" -msgstr "" -"Veuillez indiquez le mot de passe de l'utilisateur propriétaire de le base " -"de données." - -#. Type: boolean -#. Description -#: ../cyphesis-cpp.templates:7001 -msgid "Register with the WorldForge metaserver?" -msgstr "Faut-il s'enregistrer sur le méta-serveur WorldForge ?" - -#. Type: boolean -#. Description -#: ../cyphesis-cpp.templates:7001 -msgid "" -"Cyphesis-cpp can use the metaserver of the WorldForge project to announce " -"itself to the world. Players will detect your server automatically when " -"starting their client." -msgstr "" -"Cyphesis-cpp peut utiliser le meta-serveur du projet Worldforge pour " -"s'annoncer publiquement. Les joueurs détecteront automatiquement votre " -"serveur lors du démarrage de leur client." - -#. Type: boolean -#. Description -#: ../cyphesis-cpp.templates:8001 -msgid "Automatically start the Cyphesis server on boot?" -msgstr "Faut-il démarrer cyphesis-cpp au lancement du système ?" - -#. Type: boolean -#. Description -#: ../cyphesis-cpp.templates:8001 -msgid "" -"Cyphesis-cpp can start automatically when your computer boots. However, " -"unless you're running a dedicated server, this is probably not the behavior " -"you are looking for. By default, you will need to manually start Cyphesis-" -"cpp from the command line so that it does not run when it is not needed." -msgstr "" -"Il est possible de démarrer Cyphesis-cpp au lancement du système. Cependant, " -"à moins d'une utilisation en tant que serveur dédié, c'est rarement le " -"comportement recherché. Si vous ne choisissez pas cette option, Cyphesis-cpp " -"devra être démarré manuellement en ligne de commande afin de n'être " -"exécuté que lorsqu'il est utile." - -#~ msgid "Use a metaserver?" -#~ msgstr "Faut-il utiliser un meta-serveur ?" diff --git a/debian/po/it.po b/debian/po/it.po deleted file mode 100644 index fc62bff..0000000 --- a/debian/po/it.po +++ /dev/null @@ -1,157 +0,0 @@ -# Italian translation of cyphesis-cpp messages -# Copyright (C) 2014, cyphesis-cpp package copyright holder -# This file is distributed under the same license as the cyphesis-cpp package. -# Beatrice Torracca <[email protected]>, 2014. -msgid "" -msgstr "" -"Project-Id-Version: cyphesis-cpp\n" -"Report-Msgid-Bugs-To: [email protected]\n" -"POT-Creation-Date: 2014-04-30 01:26-0500\n" -"PO-Revision-Date: 2014-05-02 10:30+0200\n" -"Last-Translator: Beatrice Torracca <[email protected]>\n" -"Language-Team: Italian <[email protected]>\n" -"Language: it\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Virtaal 0.7.1\n" - -#. Type: note -#. Description -#: ../cyphesis-cpp.templates:1001 -msgid "Configuration note" -msgstr "Nota di configurazione" - -#. Type: note -#. Description -#: ../cyphesis-cpp.templates:1001 -msgid "" -"In order to use cyphesis-cpp you must have access to a postgresql server. " -"The server does not have to be installed on the same host as cyphesis-cpp " -"but it has to be reachable over a network and you have to have access to it." -msgstr "" -"Per poter usare cyphesis-cpp è richiesto l'accesso ad un server postgresql. " -"Il server non deve necessariamente essere installato sullo stesso host di " -"cyphesis-cpp, ma deve essere raggiungibile attraverso una rete e si deve " -"poter accedere ad esso." - -#. Type: note -#. Description -#: ../cyphesis-cpp.templates:1001 -msgid "" -"For further configuration information please read /usr/share/doc/cyphesis-" -"cpp/README.Debian." -msgstr "" -"Per ulteriori informazioni sulla configurazione leggere /usr/share/doc" -"/cyphesis-cpp/README.Debian." - -#. Type: boolean -#. Description -#: ../cyphesis-cpp.templates:2001 -msgid "Use a local postgresql server?" -msgstr "Usare un server postgresql locale?" - -#. Type: boolean -#. Description -#: ../cyphesis-cpp.templates:2001 -msgid "" -"Cyphesis-cpp can use a local postgresql server over unix sockets instead " -"over a network. The database server doesn't need to listen to the network " -"then. This is recommended for local usage as it's thought to be more secure." -msgstr "" -"cyphesis-cpp può usare un server postgresql locale usando i socket UNIX " -"invece della rete. In questo caso il server di database non deve rimanere in " -"ascolto sulla rete. Ciò viene raccomandato per l'uso locale perché è " -"considerato più sicuro." - -#. Type: string -#. Description -#: ../cyphesis-cpp.templates:3001 -msgid "Database server:" -msgstr "Server di database:" - -#. Type: string -#. Description -#: ../cyphesis-cpp.templates:3001 -msgid "" -"The host on which the postgresql database server is located. This will be " -"used by cyphesis-cpp to store its internal data." -msgstr "" -"L'host su cui è posizionato il server di database postgresql. Verrà usato da " -"cyphesis-cpp per archiviare i suoi dati interni." - -#. Type: string -#. Description -#: ../cyphesis-cpp.templates:4001 -msgid "Database name:" -msgstr "Nome del database:" - -#. Type: string -#. Description -#: ../cyphesis-cpp.templates:4001 -msgid "The database name cyphesis-cpp should use on the database server." -msgstr "Il nome del dabase che cyphesis-cpp deve usare nel server di database." - -#. Type: string -#. Description -#: ../cyphesis-cpp.templates:5001 -msgid "Database user:" -msgstr "Utente del database:" - -#. Type: string -#. Description -#: ../cyphesis-cpp.templates:5001 -msgid "Please type in the username for the database server" -msgstr "Inserire il nome utente per il server di database" - -#. Type: password -#. Description -#: ../cyphesis-cpp.templates:6001 -msgid "Password:" -msgstr "Password:" - -#. Type: password -#. Description -#: ../cyphesis-cpp.templates:6001 -msgid "Please type in the password to use to access the database server" -msgstr "Inserire la password da usare per accedere al server di database" - -#. Type: boolean -#. Description -#: ../cyphesis-cpp.templates:7001 -msgid "Register with the WorldForge metaserver?" -msgstr "Registrarsi nel metaserver di WorldForge?" - -#. Type: boolean -#. Description -#: ../cyphesis-cpp.templates:7001 -msgid "" -"Cyphesis-cpp can use the metaserver of the WorldForge project to announce " -"itself to the world. Players will detect your server automatically when " -"starting their client." -msgstr "" -"cyphesis-cpp può usare il metaserver del progetto WorldForge per annunciare " -"se stesso all'esterno. I giocatori rileveranno automaticamente questo server " -"quando avvieranno il loro client." - -#. Type: boolean -#. Description -#: ../cyphesis-cpp.templates:8001 -msgid "Automatically start the Cyphesis server on boot?" -msgstr "Avviare automaticamente il server Cyphesis all'avvio?" - -#. Type: boolean -#. Description -#: ../cyphesis-cpp.templates:8001 -msgid "" -"Cyphesis-cpp can start automatically when your computer boots. However, " -"unless you're running a dedicated server, this is probably not the behavior " -"you are looking for. By default, you will need to manually start Cyphesis-" -"cpp from the command line so that it does not run when it is not needed." -msgstr "" -"cyphesis-cpp può avviarsi automaticamente quando viene avviato il computer. " -"Tuttavia, a meno che non si stia eseguendo un server dedicato, questo " -"probabilmente non è il comportamento desiderato. In modo predefinito è " -"necessario avviare manualmente cyphesis-cpp dalla riga di comando in modo " -"che non sia in esecuzione quando non è necessario." diff --git a/debian/po/ja.po b/debian/po/ja.po deleted file mode 100644 index eebc526..0000000 --- a/debian/po/ja.po +++ /dev/null @@ -1,164 +0,0 @@ -# -# Translators, if you are not familiar with the PO format, gettext -# documentation is worth reading, especially sections dedicated to -# this format, e.g. by running: -# info -n '(gettext)PO Files' -# info -n '(gettext)Header Entry' -# -# Some information specific to po-debconf are available at -# /usr/share/doc/po-debconf/README-trans -# or http://www.debian.org/intl/l10n/po-debconf/README-trans -# -# Developers do not need to manually edit POT or PO files. -# -# -msgid "" -msgstr "" -"Project-Id-Version: cyphesis-cpp 0.3.5-1\n" -"Report-Msgid-Bugs-To: [email protected]\n" -"POT-Creation-Date: 2014-04-30 01:26-0500\n" -"PO-Revision-Date: 2014-04-30 15:26+0900\n" -"Last-Translator: Hideki Yamane (Debian-JP) <[email protected]>\n" -"Language-Team: Japanese <[email protected]>\n" -"Language: ja\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -#. Type: note -#. Description -#: ../cyphesis-cpp.templates:1001 -msgid "Configuration note" -msgstr "設定の際の注意点について" - -#. Type: note -#. Description -#: ../cyphesis-cpp.templates:1001 -msgid "" -"In order to use cyphesis-cpp you must have access to a postgresql server. " -"The server does not have to be installed on the same host as cyphesis-cpp " -"but it has to be reachable over a network and you have to have access to it." -msgstr "" -"cyphesis-cpp を使うには postgresql サーバにアクセスする必要があります。サーバ" -"は cyphesis-cpp と同じホストにインストールする必要はありませんが、接続可能な" -"ネットワークに存在していてアクセスが可能である必要があります。" - -#. Type: note -#. Description -#: ../cyphesis-cpp.templates:1001 -msgid "" -"For further configuration information please read /usr/share/doc/cyphesis-" -"cpp/README.Debian." -msgstr "" -"設定の詳細な情報については /usr/share/doc/cyphesis-cpp/README.Debian を参照し" -"てください。" - -#. Type: boolean -#. Description -#: ../cyphesis-cpp.templates:2001 -msgid "Use a local postgresql server?" -msgstr "ローカルの postgresql サーバを利用しますか?" - -#. Type: boolean -#. Description -#: ../cyphesis-cpp.templates:2001 -msgid "" -"Cyphesis-cpp can use a local postgresql server over unix sockets instead " -"over a network. The database server doesn't need to listen to the network " -"then. This is recommended for local usage as it's thought to be more secure." -msgstr "" -"cyphesis-cpp は、ネットワーク経由ではなく unix ソケットを使ってローカルの " -"postgresql サーバを使うことができます。その場合、データベースサーバはネット" -"ワークに対して listen する必要はありません。よりセキュアなので、これがローカ" -"ルでの利用にはお勧めです。" - -#. Type: string -#. Description -#: ../cyphesis-cpp.templates:3001 -msgid "Database server:" -msgstr "データベースサーバ:" - -#. Type: string -#. Description -#: ../cyphesis-cpp.templates:3001 -msgid "" -"The host on which the postgresql database server is located. This will be " -"used by cyphesis-cpp to store its internal data." -msgstr "" -"postgresql データベースサーバが置かれているホストです。cyphesis-cpp が内部デー" -"タを保存するのに使います。" - -#. Type: string -#. Description -#: ../cyphesis-cpp.templates:4001 -msgid "Database name:" -msgstr "データベース名:" - -#. Type: string -#. Description -#: ../cyphesis-cpp.templates:4001 -msgid "The database name cyphesis-cpp should use on the database server." -msgstr "データベースサーバで cyphesis-cpp が使うデータベース名です。" - -#. Type: string -#. Description -#: ../cyphesis-cpp.templates:5001 -msgid "Database user:" -msgstr "データベースユーザ:" - -#. Type: string -#. Description -#: ../cyphesis-cpp.templates:5001 -msgid "Please type in the username for the database server" -msgstr "データベースサーバのユーザ名を入力してください。" - -#. Type: password -#. Description -#: ../cyphesis-cpp.templates:6001 -msgid "Password:" -msgstr "パスワード:" - -#. Type: password -#. Description -#: ../cyphesis-cpp.templates:6001 -msgid "Please type in the password to use to access the database server" -msgstr "" -"データベースサーバにアクセスする際に利用するパスワードを入力してください。" - -#. Type: boolean -#. Description -#: ../cyphesis-cpp.templates:7001 -msgid "Register with the WorldForge metaserver?" -msgstr "WorldForge metaserver に登録しますか?" - -#. Type: boolean -#. Description -#: ../cyphesis-cpp.templates:7001 -msgid "" -"Cyphesis-cpp can use the metaserver of the WorldForge project to announce " -"itself to the world. Players will detect your server automatically when " -"starting their client." -msgstr "" -"cyphesis-cpp は、自身を世界へアナウンスするために Worldforge プロジェクトの " -"metaserver を使えます。プレイヤーは、クライアント起動時に自動的に貴方のサーバ" -"を認識するようになります。" - -#. Type: boolean -#. Description -#: ../cyphesis-cpp.templates:8001 -msgid "Automatically start the Cyphesis server on boot?" -msgstr "ブート時に Cyphesis サーバを自動的に起動させますか?" - -#. Type: boolean -#. Description -#: ../cyphesis-cpp.templates:8001 -msgid "" -"Cyphesis-cpp can start automatically when your computer boots. However, " -"unless you're running a dedicated server, this is probably not the behavior " -"you are looking for. By default, you will need to manually start Cyphesis-" -"cpp from the command line so that it does not run when it is not needed." -msgstr "" -"Cyphesis-cpp はコンピュータのブート時に自動的に開始できます。しかし、実行して" -"いるのが専用サーバでもなければこれは恐らく望む挙動ではないでしょう。デフォルト" -"ではコマンドラインから手作業により Cyphesis-cpp を起動させる必要があり、必要な" -"く実行するようにはなっていません。" diff --git a/debian/po/nl.po b/debian/po/nl.po deleted file mode 100644 index 186dd3c..0000000 --- a/debian/po/nl.po +++ /dev/null @@ -1,182 +0,0 @@ -# translation of cyphesis-cpp 0.5.6-1_templates.po to Dutch -# This file is distributed under the same license as the cyphesis-cpp package. -# Please see debian/copyright. -# -# Translators, if you are not familiar with the PO format, gettext -# documentation is worth reading, especially sections dedicated to -# this format, e.g. by running: -# info -n '(gettext)PO Files' -# info -n '(gettext)Header Entry' -# -# Some information specific to po-debconf are available at -# /usr/share/doc/po-debconf/README-trans -# or http://www.debian.org/intl/l10n/po-debconf/README-trans -# -# Developers do not need to manually edit POT or PO files. -# -# Luk Claes <luk.claes(AT)ugent(DOT)be>, 2004 -# Kurt De Bree <kdebree(AT)telenet(DOT)be>, 2006 -# This is an unofficial translation -# Frans Spiesschaert <[email protected]>, 2014. -# -msgid "" -msgstr "" -"Project-Id-Version: cyphesis-cpp 0.5.6-1\n" -"Report-Msgid-Bugs-To: [email protected]\n" -"POT-Creation-Date: 2014-04-30 01:26-0500\n" -"PO-Revision-Date: 2014-11-04 14:18+0100\n" -"Last-Translator: Frans Spiesschaert <[email protected]>\n" -"Language-Team: Debian Dutch l10n Team <[email protected]>\n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#. Type: note -#. Description -#: ../cyphesis-cpp.templates:1001 -msgid "Configuration note" -msgstr "Configuratie-opmerking" - -#. Type: note -#. Description -#: ../cyphesis-cpp.templates:1001 -msgid "" -"In order to use cyphesis-cpp you must have access to a postgresql server. " -"The server does not have to be installed on the same host as cyphesis-cpp " -"but it has to be reachable over a network and you have to have access to it." -msgstr "" -"Om cyphesis-cpp te gebruiken, moet u toegang hebben tot een postgresql-" -"server. Deze server hoeft niet geïnstalleerd te zijn op dezelfde computer " -"als cyphesis-cpp, maar hij moet bereikbaar zijn over het netwerk en u moet " -"er toegang toe hebben." - -#. Type: note -#. Description -#: ../cyphesis-cpp.templates:1001 -msgid "" -"For further configuration information please read /usr/share/doc/cyphesis-" -"cpp/README.Debian." -msgstr "" -"Lees voor verdere configuratie-informatie /usr/share/doc/cyphesis-cpp/README." -"Debian." - -#. Type: boolean -#. Description -#: ../cyphesis-cpp.templates:2001 -msgid "Use a local postgresql server?" -msgstr "Een lokale postgresql-server gebruiken?" - -#. Type: boolean -#. Description -#: ../cyphesis-cpp.templates:2001 -msgid "" -"Cyphesis-cpp can use a local postgresql server over unix sockets instead " -"over a network. The database server doesn't need to listen to the network " -"then. This is recommended for local usage as it's thought to be more secure." -msgstr "" -"Cyphesis-cpp kan een lokale postgresql-server gebruiken over unix-sockets in " -"plaats van over het netwerk. De databaseserver moet dan niet naar het " -"netwerk luisteren. Dit wordt aanbevolen voor lokaal gebruik omdat algemeen " -"aangenomen wordt dat dit veiliger is." - -#. Type: string -#. Description -#: ../cyphesis-cpp.templates:3001 -msgid "Database server:" -msgstr "Databaseserver:" - -#. Type: string -#. Description -#: ../cyphesis-cpp.templates:3001 -#| msgid "" -#| "On which host is the postgresql database server located, which will be " -#| "used by cyphesis-cpp to store its internal data?" -msgid "" -"The host on which the postgresql database server is located. This will be " -"used by cyphesis-cpp to store its internal data." -msgstr "" -"De computer waarop zich de postgresql-databaseserver bevindt en die door " -"cyphesis-cpp gebruikt zal worden om interne gegevens op te slaan." - -#. Type: string -#. Description -#: ../cyphesis-cpp.templates:4001 -msgid "Database name:" -msgstr "Naam van de databank:" - -#. Type: string -#. Description -#: ../cyphesis-cpp.templates:4001 -#| msgid "" -#| "What is the database name cyphesis-cpp should use on the database server?" -msgid "The database name cyphesis-cpp should use on the database server." -msgstr "" -"De naam van de databank die cyphesis-cpp moet gebruiken op de databaseserver." - -#. Type: string -#. Description -#: ../cyphesis-cpp.templates:5001 -msgid "Database user:" -msgstr "Databankgebruiker:" - -#. Type: string -#. Description -#: ../cyphesis-cpp.templates:5001 -msgid "Please type in the username for the database server" -msgstr "Geef de gebruikersnaam voor de databaseserver" - -#. Type: password -#. Description -#: ../cyphesis-cpp.templates:6001 -msgid "Password:" -msgstr "Wachtwoord:" - -#. Type: password -#. Description -#: ../cyphesis-cpp.templates:6001 -msgid "Please type in the password to use to access the database server" -msgstr "Geef het wachtwoord om toegang te krijgen tot de databaseserver" - -#. Type: boolean -#. Description -#: ../cyphesis-cpp.templates:7001 -msgid "Register with the WorldForge metaserver?" -msgstr "U melden bij de metaserver van WorldForge?" - -#. Type: boolean -#. Description -#: ../cyphesis-cpp.templates:7001 -msgid "" -"Cyphesis-cpp can use the metaserver of the WorldForge project to announce " -"itself to the world. Players will detect your server automatically when " -"starting their client." -msgstr "" -"Cyphesis-cpp kan de metaserver van het Worldforge-project gebruiken om zich " -"bekend te maken op het netwerk. Spelers zullen uw server automatisch " -"detecteren wanneer ze hun client starten." - -#. Type: boolean -#. Description -#: ../cyphesis-cpp.templates:8001 -msgid "Automatically start the Cyphesis server on boot?" -msgstr "" -"Bij het opstarten van de computer de Cyphesis-server automatisch starten?" - -#. Type: boolean -#. Description -#: ../cyphesis-cpp.templates:8001 -msgid "" -"Cyphesis-cpp can start automatically when your computer boots. However, " -"unless you're running a dedicated server, this is probably not the behavior " -"you are looking for. By default, you will need to manually start Cyphesis-" -"cpp from the command line so that it does not run when it is not needed." -msgstr "" -"Cyphesis-cpp kan automatisch gestart worden bij het opstarten van de " -"computer. Maar tenzij het een gereserveerde server betreft, is dit wellicht " -"niet het gewenste gedrag. Standaard moet u Cyphesis-cpp handmatig opstarten " -"vanaf de commandolijn, zodat het niet onnodig actief is." - -#~ msgid "Use a metaserver?" -#~ msgstr "Een metaserver gebruiken?" diff --git a/debian/po/pl.po b/debian/po/pl.po deleted file mode 100644 index 9aac59c..0000000 --- a/debian/po/pl.po +++ /dev/null @@ -1,160 +0,0 @@ -# Translation of cyphesis-cpp debconf templates to Polish. -# Copyright (C) 2014 -# This file is distributed under the same license as the cyphesis-cpp package. -# -# Michał Kułach <[email protected]>, 2014. -msgid "" -msgstr "" -"Project-Id-Version: cyphesis-cpp\n" -"Report-Msgid-Bugs-To: [email protected]\n" -"POT-Creation-Date: 2014-04-30 01:26-0500\n" -"PO-Revision-Date: 2014-05-11 23:04+0200\n" -"Last-Translator: Michał Kułach <[email protected]>\n" -"Language-Team: Polish <[email protected]>\n" -"Language: pl\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " -"|| n%100>=20) ? 1 : 2);\n" -"X-Generator: Lokalize 1.4\n" - -#. Type: note -#. Description -#: ../cyphesis-cpp.templates:1001 -msgid "Configuration note" -msgstr "Uwaga nt. konfiguracji" - -#. Type: note -#. Description -#: ../cyphesis-cpp.templates:1001 -msgid "" -"In order to use cyphesis-cpp you must have access to a postgresql server. " -"The server does not have to be installed on the same host as cyphesis-cpp " -"but it has to be reachable over a network and you have to have access to it." -msgstr "" -"Do korzystania z cyphesis-cpp konieczny jest dostęp do serwera postgresql. " -"Serwer nie musi być zainstalowany na tym samym komputerze co cyphesis-cpp, " -"lecz musi być osiągalny w sieci i dostępny dla użytkownika." - -#. Type: note -#. Description -#: ../cyphesis-cpp.templates:1001 -msgid "" -"For further configuration information please read /usr/share/doc/cyphesis-" -"cpp/README.Debian." -msgstr "" -"Więcej informacji o konfiguracji można znaleźć w pliku " -"/usr/share/doc/cyphesis-cpp/README.Debian." - -#. Type: boolean -#. Description -#: ../cyphesis-cpp.templates:2001 -msgid "Use a local postgresql server?" -msgstr "Użyć lokalnego serwera postgresql?" - -#. Type: boolean -#. Description -#: ../cyphesis-cpp.templates:2001 -msgid "" -"Cyphesis-cpp can use a local postgresql server over unix sockets instead " -"over a network. The database server doesn't need to listen to the network " -"then. This is recommended for local usage as it's thought to be more secure." -msgstr "" -"Cyphesis-cpp może korzystać z lokalnego serwera postgresql przez gniazda " -"uniksowe zamiast poprzez sieć. Serwer bazy danych nie musi wówczas prowadzić " -"nasłuchu sieciowego. Jest to zalecane ustawienie przy serwerze lokalnym, jako " -"że jest bezpieczniejsze." - -#. Type: string -#. Description -#: ../cyphesis-cpp.templates:3001 -msgid "Database server:" -msgstr "Serwer bazy danych:" - -#. Type: string -#. Description -#: ../cyphesis-cpp.templates:3001 -msgid "" -"The host on which the postgresql database server is located. This will be " -"used by cyphesis-cpp to store its internal data." -msgstr "" -"Host na którym zainstalowany jest serwer bazy danych postgresql. Będzie " -"używany przez cyphesis-cpp do przechowywania jego wewnętrznych danych." - -#. Type: string -#. Description -#: ../cyphesis-cpp.templates:4001 -msgid "Database name:" -msgstr "Nazwa bazy danych:" - -#. Type: string -#. Description -#: ../cyphesis-cpp.templates:4001 -msgid "The database name cyphesis-cpp should use on the database server." -msgstr "Nazwa bazy danych jaką cyphesis-cpp ma użyć na serwerze bazy danych." - -#. Type: string -#. Description -#: ../cyphesis-cpp.templates:5001 -msgid "Database user:" -msgstr "Użytkownik bazy danych:" - -#. Type: string -#. Description -#: ../cyphesis-cpp.templates:5001 -msgid "Please type in the username for the database server" -msgstr "Proszę wprowadzić nazwę użytkownika serwera bazy danych" - -#. Type: password -#. Description -#: ../cyphesis-cpp.templates:6001 -msgid "Password:" -msgstr "Hasło:" - -#. Type: password -#. Description -#: ../cyphesis-cpp.templates:6001 -msgid "Please type in the password to use to access the database server" -msgstr "Proszę wprowadzić hasło do serwera bazy danych" - -#. Type: boolean -#. Description -#: ../cyphesis-cpp.templates:7001 -msgid "Register with the WorldForge metaserver?" -msgstr "Zarejestrować się w metaserwerze WorldForge?" - -#. Type: boolean -#. Description -#: ../cyphesis-cpp.templates:7001 -msgid "" -"Cyphesis-cpp can use the metaserver of the WorldForge project to announce " -"itself to the world. Players will detect your server automatically when " -"starting their client." -msgstr "" -"Cyphesis-cpp może korzystać z metaserwera projektu WorldForge do rozgłaszania " -"informacji o sobie. Gracze wykryją ten serwer automatycznie po uruchomieniu " -"ich klientów." - -#. Type: boolean -#. Description -#: ../cyphesis-cpp.templates:8001 -msgid "Automatically start the Cyphesis server on boot?" -msgstr "Uruchomić serwer Cyphesis automatycznie przy rozruchu systemu?" - -#. Type: boolean -#. Description -#: ../cyphesis-cpp.templates:8001 -msgid "" -"Cyphesis-cpp can start automatically when your computer boots. However, " -"unless you're running a dedicated server, this is probably not the behavior " -"you are looking for. By default, you will need to manually start Cyphesis-" -"cpp from the command line so that it does not run when it is not needed." -msgstr "" -"Cyphesis-cpp może uruchamiać się automatycznie przy rozruchu systemu. Jeśli " -"jednak nie prowadzi się specjalnego serwera, to takie działanie " -"prawdopodobnie " -"nie jest pożądane. Domyślnie konieczne jest ręczne uruchamianie Cyphesis-cpp " -"z wiersza poleceń. W ten sposób serwer nie działa gdy nie ma takiej potrzeby." - - diff --git a/debian/po/pt.po b/debian/po/pt.po deleted file mode 100644 index bb30f0b..0000000 --- a/debian/po/pt.po +++ /dev/null @@ -1,165 +0,0 @@ -# translation of cyphesis-cpp debconf to Portuguese -# Copyright (C) 2007 the cyphesis-cpp copyright holder -# This file is distributed under the same license as the cyphesis-cpp package. -# -# Américo Monteiro <[email protected]>, 2007, 2014. -msgid "" -msgstr "" -"Project-Id-Version: cyphesis-cpp n/a\n" -"Report-Msgid-Bugs-To: [email protected]\n" -"POT-Creation-Date: 2014-04-30 01:26-0500\n" -"PO-Revision-Date: 2014-05-02 17:50+0100\n" -"Last-Translator: Américo Monteiro <[email protected]>\n" -"Language-Team: Portuguese <[email protected]>\n" -"Language: pt\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Lokalize 1.4\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#. Type: note -#. Description -#: ../cyphesis-cpp.templates:1001 -msgid "Configuration note" -msgstr "Nota de configuração" - -#. Type: note -#. Description -#: ../cyphesis-cpp.templates:1001 -msgid "" -"In order to use cyphesis-cpp you must have access to a postgresql server. " -"The server does not have to be installed on the same host as cyphesis-cpp " -"but it has to be reachable over a network and you have to have access to it." -msgstr "" -"Para poder utilizar o cyphesis-cpp você precisa ter acesso a um servidor " -"postgresql. O servidor não precisa estar instalado na mesma máquina que o " -"cyphesis-cpp mas precisa ser acessível por uma rede e você precisa ter " -"acesso a ele." - -#. Type: note -#. Description -#: ../cyphesis-cpp.templates:1001 -msgid "" -"For further configuration information please read /usr/share/doc/cyphesis-" -"cpp/README.Debian." -msgstr "" -"Para mais informação sobre configuração, por favor leia /usr/share/doc/" -"cyphesis-cpp/README.Debian." - -#. Type: boolean -#. Description -#: ../cyphesis-cpp.templates:2001 -msgid "Use a local postgresql server?" -msgstr "Usar um servidor postgresql local?" - -#. Type: boolean -#. Description -#: ../cyphesis-cpp.templates:2001 -msgid "" -"Cyphesis-cpp can use a local postgresql server over unix sockets instead " -"over a network. The database server doesn't need to listen to the network " -"then. This is recommended for local usage as it's thought to be more secure." -msgstr "" -"O Cyphesis-cpp pode usar um servidor postgresql local sobre sockets unix em " -"vez de em rede. Então o servidor de base de dados não precisa de escutar a " -"rede. Isto é recomendado para utilização local porque entende-se que seja " -"mais seguro." - -#. Type: string -#. Description -#: ../cyphesis-cpp.templates:3001 -msgid "Database server:" -msgstr "Servidor da base de dados:" - -#. Type: string -#. Description -#: ../cyphesis-cpp.templates:3001 -msgid "" -"The host on which the postgresql database server is located. This will be " -"used by cyphesis-cpp to store its internal data." -msgstr "" -"A máquina onde está localizado o servidor de base de dados postgresql. Isto " -"será usado pelo cyphesis-cpp para guardar os seus dados internos." - -#. Type: string -#. Description -#: ../cyphesis-cpp.templates:4001 -msgid "Database name:" -msgstr "Nome da base de dados:" - -#. Type: string -#. Description -#: ../cyphesis-cpp.templates:4001 -msgid "The database name cyphesis-cpp should use on the database server." -msgstr "" -"O nome da base de dados que o cyphesis-cpp deverá usar no servidor de base " -"de dados." - -#. Type: string -#. Description -#: ../cyphesis-cpp.templates:5001 -msgid "Database user:" -msgstr "Utilizador da base de dados:" - -#. Type: string -#. Description -#: ../cyphesis-cpp.templates:5001 -msgid "Please type in the username for the database server" -msgstr "Por favor escreva o nome de utilizador do servidor da base de dados." - -#. Type: password -#. Description -#: ../cyphesis-cpp.templates:6001 -msgid "Password:" -msgstr "Palavra passe:" - -#. Type: password -#. Description -#: ../cyphesis-cpp.templates:6001 -msgid "Please type in the password to use to access the database server" -msgstr "" -"Por favor escreva a palavra-passe a usar ao aceder ao servidor da base de " -"dados." - -#. Type: boolean -#. Description -#: ../cyphesis-cpp.templates:7001 -msgid "Register with the WorldForge metaserver?" -msgstr "Registar com o meta-servidor WorldForge?" - -#. Type: boolean -#. Description -#: ../cyphesis-cpp.templates:7001 -msgid "" -"Cyphesis-cpp can use the metaserver of the WorldForge project to announce " -"itself to the world. Players will detect your server automatically when " -"starting their client." -msgstr "" -"O Cyphesis-cpp pode usar o 'metaserver' do projecto WorldForge para se " -"anunciar ao mundo. Os jogadores irão detectar o seu servidor automaticamente " -"quando arrancarem os seus clientes." - -#. Type: boolean -#. Description -#: ../cyphesis-cpp.templates:8001 -msgid "Automatically start the Cyphesis server on boot?" -msgstr "Arrancar automaticamente o servidor Cyphesis no arranque da máquina?" - -#. Type: boolean -#. Description -#: ../cyphesis-cpp.templates:8001 -msgid "" -"Cyphesis-cpp can start automatically when your computer boots. However, " -"unless you're running a dedicated server, this is probably not the behavior " -"you are looking for. By default, you will need to manually start Cyphesis-" -"cpp from the command line so that it does not run when it is not needed." -msgstr "" -"O Cyphesis-cpp pode arrancar automaticamente quando o seu computador " -"arranca. No entanto, a menos que você esteja a correr um servidor dedicado, " -"este não é provavelmente o comportamento que lhe interessa. Por " -"predefinição, você precisa de iniciar manualmente o Cyphesis-cpp a partir da " -"linha de comandos para que ele não trabalhe quando não é preciso." - -#~ msgid "Use a metaserver?" -#~ msgstr "Usar um 'metaserver'?" diff --git a/debian/po/ru.po b/debian/po/ru.po deleted file mode 100644 index 2a1a3f9..0000000 --- a/debian/po/ru.po +++ /dev/null @@ -1,160 +0,0 @@ -# translation of cyphesis-cpp_0.5.21-1_ru.po to Russian -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the cyphesis-cpp package. -# -# Yuri Kozlov <[email protected]>, 2009, 2014. -msgid "" -msgstr "" -"Project-Id-Version: cyphesis-cpp 0.5.21-1.1\n" -"Report-Msgid-Bugs-To: [email protected]\n" -"POT-Creation-Date: 2014-04-30 01:26-0500\n" -"PO-Revision-Date: 2014-05-02 10:33+0400\n" -"Last-Translator: Yuri Kozlov <[email protected]>\n" -"Language-Team: Russian <[email protected]>\n" -"Language: ru\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Lokalize 1.5\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: note -#. Description -#: ../cyphesis-cpp.templates:1001 -msgid "Configuration note" -msgstr "Замечание по настройке" - -#. Type: note -#. Description -#: ../cyphesis-cpp.templates:1001 -msgid "" -"In order to use cyphesis-cpp you must have access to a postgresql server. " -"The server does not have to be installed on the same host as cyphesis-cpp " -"but it has to be reachable over a network and you have to have access to it." -msgstr "" -"Чтобы использовать cyphesis-cpp, вам нужен доступ к серверу postgresql. " -"Сервер не будет установлен на той же машине что и cyphesis-cpp, но должен " -"быть доступен по сети." - -#. Type: note -#. Description -#: ../cyphesis-cpp.templates:1001 -msgid "" -"For further configuration information please read /usr/share/doc/cyphesis-" -"cpp/README.Debian." -msgstr "" -"Дальнейшую информацию по настройке смотрите в /usr/share/doc/cyphesis-cpp/" -"README.Debian." - -#. Type: boolean -#. Description -#: ../cyphesis-cpp.templates:2001 -msgid "Use a local postgresql server?" -msgstr "Использовать локальный сервер postgresql?" - -#. Type: boolean -#. Description -#: ../cyphesis-cpp.templates:2001 -msgid "" -"Cyphesis-cpp can use a local postgresql server over unix sockets instead " -"over a network. The database server doesn't need to listen to the network " -"then. This is recommended for local usage as it's thought to be more secure." -msgstr "" -"Cyphesis-cpp может использовать локальный сервер postgresql через сокеты " -"unix, а не через сеть. Поэтому серверу БД не требуется принимать запросы из " -"сети. Рекомендуем использовать локальный сервер, так как это более безопасно." - -#. Type: string -#. Description -#: ../cyphesis-cpp.templates:3001 -msgid "Database server:" -msgstr "Сервер баз данных:" - -#. Type: string -#. Description -#: ../cyphesis-cpp.templates:3001 -msgid "" -"The host on which the postgresql database server is located. This will be " -"used by cyphesis-cpp to store its internal data." -msgstr "" -"Узел, на котором находится сервер баз данных postgresql. Он будет " -"использоваться cyphesis-cpp для хранения внутренних данных." - -#. Type: string -#. Description -#: ../cyphesis-cpp.templates:4001 -msgid "Database name:" -msgstr "Имя базы данных:" - -#. Type: string -#. Description -#: ../cyphesis-cpp.templates:4001 -msgid "The database name cyphesis-cpp should use on the database server." -msgstr "" -"Имя базы данных, которое cyphesis-cpp будет использовать на сервере БД." - -#. Type: string -#. Description -#: ../cyphesis-cpp.templates:5001 -msgid "Database user:" -msgstr "Пользователь БД:" - -#. Type: string -#. Description -#: ../cyphesis-cpp.templates:5001 -msgid "Please type in the username for the database server" -msgstr "Введите имя пользователя сервера БД." - -#. Type: password -#. Description -#: ../cyphesis-cpp.templates:6001 -msgid "Password:" -msgstr "Пароль:" - -#. Type: password -#. Description -#: ../cyphesis-cpp.templates:6001 -msgid "Please type in the password to use to access the database server" -msgstr "Введите пароль для доступа к серверу БД." - -#. Type: boolean -#. Description -#: ../cyphesis-cpp.templates:7001 -msgid "Register with the WorldForge metaserver?" -msgstr "Зарегистрироваться с помощью метасервера WorldForge?" - -#. Type: boolean -#. Description -#: ../cyphesis-cpp.templates:7001 -msgid "" -"Cyphesis-cpp can use the metaserver of the WorldForge project to announce " -"itself to the world. Players will detect your server automatically when " -"starting their client." -msgstr "" -"Cyphesis-cpp может использовать метасервер проекта WorldForge для объявления " -"о себе в мире. Игроки смогут обнаруживать ваш сервер автоматически при " -"запуске клиента." - -#. Type: boolean -#. Description -#: ../cyphesis-cpp.templates:8001 -msgid "Automatically start the Cyphesis server on boot?" -msgstr "Запускать сервер Cyphesis при загрузке автоматически?" - -#. Type: boolean -#. Description -#: ../cyphesis-cpp.templates:8001 -msgid "" -"Cyphesis-cpp can start automatically when your computer boots. However, " -"unless you're running a dedicated server, this is probably not the behavior " -"you are looking for. By default, you will need to manually start Cyphesis-" -"cpp from the command line so that it does not run when it is not needed." -msgstr "" -"Cyphesis-cpp может запускаться автоматически при включении компьютера. " -"Однако, если вы запускаете его не на отдельном сервере, то лучше этого не " -"делать. По умолчанию вы должны запускать cyphesis-cpp вручную из командной " -"строки, чтобы он не работал, когда не нужен." - -#~ msgid "Use a metaserver?" -#~ msgstr "Использовать метасервер?" diff --git a/debian/po/sv.po b/debian/po/sv.po deleted file mode 100644 index 3fb463b..0000000 --- a/debian/po/sv.po +++ /dev/null @@ -1,164 +0,0 @@ -# Swedish translation for cyphesis-cpp. -# Copyright (C) 2005, 2014 the cyphesis-cpp copyright holder -# This file is distributed under the same license as the cyphesis-cpp package. -# Daniel Nylander <[email protected]>, 2005. -# Anders Jonsson <[email protected]>, 2014. -# -msgid "" -msgstr "" -"Project-Id-Version: cyphesis-cpp\n" -"Report-Msgid-Bugs-To: [email protected]\n" -"POT-Creation-Date: 2014-04-30 01:26-0500\n" -"PO-Revision-Date: 2014-05-06 00:33+0100\n" -"Last-Translator: Anders Jonsson <[email protected]>\n" -"Language-Team: Swedish <[email protected]>\n" -"Language: sv\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=iso-8859-1\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Poedit 1.6.4\n" - -#. Type: note -#. Description -#: ../cyphesis-cpp.templates:1001 -msgid "Configuration note" -msgstr "Konfigurationsnotering" - -#. Type: note -#. Description -#: ../cyphesis-cpp.templates:1001 -msgid "" -"In order to use cyphesis-cpp you must have access to a postgresql server. " -"The server does not have to be installed on the same host as cyphesis-cpp " -"but it has to be reachable over a network and you have to have access to it." -msgstr "" -"För att använda cyphesis-cpp måste du ha tillgång till en PostgreSQL-server. " -"Servern måste inte vara installerad på samma värd som cyphesis-cpp men den " -"måste vara nåbar över ett nätverk och du måste ha tillgång till den." - -#. Type: note -#. Description -#: ../cyphesis-cpp.templates:1001 -msgid "" -"For further configuration information please read /usr/share/doc/cyphesis-" -"cpp/README.Debian." -msgstr "" -"För mer information om konfigurationen, vänligen läs /usr/share/doc/cyphesis-" -"cpp/README.Debian." - -#. Type: boolean -#. Description -#: ../cyphesis-cpp.templates:2001 -msgid "Use a local postgresql server?" -msgstr "Använda en lokal PostgreSQL-server?" - -#. Type: boolean -#. Description -#: ../cyphesis-cpp.templates:2001 -msgid "" -"Cyphesis-cpp can use a local postgresql server over unix sockets instead " -"over a network. The database server doesn't need to listen to the network " -"then. This is recommended for local usage as it's thought to be more secure." -msgstr "" -"Cyphesis-cpp kan använda en lokal PostgreSQL-server för Unix-sockets " -"istället för över ett nätverk. Databasservern behöver då inte lyssna på " -"nätverket. Det är rekommenderat för lokal användning eftersom det är tänkt " -"att vara säkrare." - -#. Type: string -#. Description -#: ../cyphesis-cpp.templates:3001 -msgid "Database server:" -msgstr "Databasserver:" - -#. Type: string -#. Description -#: ../cyphesis-cpp.templates:3001 -#| msgid "" -#| "On which host is the postgresql database server located, which will be " -#| "used by cyphesis-cpp to store its internal data?" -msgid "" -"The host on which the postgresql database server is located. This will be " -"used by cyphesis-cpp to store its internal data." -msgstr "" -"Värden på vilken PostgreSQL-databasen är placerad. Denna kommer att användas " -"av cyphesis-cpp för att lagra dess interna data." - -#. Type: string -#. Description -#: ../cyphesis-cpp.templates:4001 -msgid "Database name:" -msgstr "Databasnamn:" - -#. Type: string -#. Description -#: ../cyphesis-cpp.templates:4001 -#| msgid "" -#| "What is the database name cyphesis-cpp should use on the database server?" -msgid "The database name cyphesis-cpp should use on the database server." -msgstr "Databasnamnet som cyphesis-cpp ska använda på databasservern." - -#. Type: string -#. Description -#: ../cyphesis-cpp.templates:5001 -msgid "Database user:" -msgstr "Databasanvändare:" - -#. Type: string -#. Description -#: ../cyphesis-cpp.templates:5001 -msgid "Please type in the username for the database server" -msgstr "Ange användarnamnet för databasservern" - -#. Type: password -#. Description -#: ../cyphesis-cpp.templates:6001 -msgid "Password:" -msgstr "Lösenord:" - -#. Type: password -#. Description -#: ../cyphesis-cpp.templates:6001 -msgid "Please type in the password to use to access the database server" -msgstr "Ange lösenordet att användas för tillgång till databasservern" - -#. Type: boolean -#. Description -#: ../cyphesis-cpp.templates:7001 -msgid "Register with the WorldForge metaserver?" -msgstr "Registrera mot metaservern för WorldForge?" - -#. Type: boolean -#. Description -#: ../cyphesis-cpp.templates:7001 -msgid "" -"Cyphesis-cpp can use the metaserver of the WorldForge project to announce " -"itself to the world. Players will detect your server automatically when " -"starting their client." -msgstr "" -"Cyphesis-cpp kan använda metaservern för WorldForge-projektet för att " -"informera om sig själv för världen. Spelare kommer att hitta din server " -"automatiskt när de startar sin klient." - -#. Type: boolean -#. Description -#: ../cyphesis-cpp.templates:8001 -msgid "Automatically start the Cyphesis server on boot?" -msgstr "Starta Cyphesis-servern automatiskt vid uppstart?" - -#. Type: boolean -#. Description -#: ../cyphesis-cpp.templates:8001 -msgid "" -"Cyphesis-cpp can start automatically when your computer boots. However, " -"unless you're running a dedicated server, this is probably not the behavior " -"you are looking for. By default, you will need to manually start Cyphesis-" -"cpp from the command line so that it does not run when it is not needed." -msgstr "" -"Cyphesis-cpp kan starta automatiskt vid uppstart av din dator. Detta är dock " -"troligen inte det önskade beteendet om du inte kör en dedikerad server. " -"Standardbeteendet är att du måste starta Cyphesis-cpp från kommandoraden så " -"att det inte körs förutom då det behövs." - -#~ msgid "Use a metaserver?" -#~ msgstr "Använda en metaserver?" diff --git a/debian/po/templates.pot b/debian/po/templates.pot deleted file mode 100644 index 31cf3f1..0000000 --- a/debian/po/templates.pot +++ /dev/null @@ -1,137 +0,0 @@ -# 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 <EMAIL@ADDRESS>, YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: cyphesis-cpp\n" -"Report-Msgid-Bugs-To: [email protected]\n" -"POT-Creation-Date: 2014-04-30 01:26-0500\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: LANGUAGE <[email protected]>\n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=CHARSET\n" -"Content-Transfer-Encoding: 8bit\n" - -#. Type: note -#. Description -#: ../cyphesis-cpp.templates:1001 -msgid "Configuration note" -msgstr "" - -#. Type: note -#. Description -#: ../cyphesis-cpp.templates:1001 -msgid "" -"In order to use cyphesis-cpp you must have access to a postgresql server. " -"The server does not have to be installed on the same host as cyphesis-cpp " -"but it has to be reachable over a network and you have to have access to it." -msgstr "" - -#. Type: note -#. Description -#: ../cyphesis-cpp.templates:1001 -msgid "" -"For further configuration information please read /usr/share/doc/cyphesis-" -"cpp/README.Debian." -msgstr "" - -#. Type: boolean -#. Description -#: ../cyphesis-cpp.templates:2001 -msgid "Use a local postgresql server?" -msgstr "" - -#. Type: boolean -#. Description -#: ../cyphesis-cpp.templates:2001 -msgid "" -"Cyphesis-cpp can use a local postgresql server over unix sockets instead " -"over a network. The database server doesn't need to listen to the network " -"then. This is recommended for local usage as it's thought to be more secure." -msgstr "" - -#. Type: string -#. Description -#: ../cyphesis-cpp.templates:3001 -msgid "Database server:" -msgstr "" - -#. Type: string -#. Description -#: ../cyphesis-cpp.templates:3001 -msgid "" -"The host on which the postgresql database server is located. This will be " -"used by cyphesis-cpp to store its internal data." -msgstr "" - -#. Type: string -#. Description -#: ../cyphesis-cpp.templates:4001 -msgid "Database name:" -msgstr "" - -#. Type: string -#. Description -#: ../cyphesis-cpp.templates:4001 -msgid "The database name cyphesis-cpp should use on the database server." -msgstr "" - -#. Type: string -#. Description -#: ../cyphesis-cpp.templates:5001 -msgid "Database user:" -msgstr "" - -#. Type: string -#. Description -#: ../cyphesis-cpp.templates:5001 -msgid "Please type in the username for the database server" -msgstr "" - -#. Type: password -#. Description -#: ../cyphesis-cpp.templates:6001 -msgid "Password:" -msgstr "" - -#. Type: password -#. Description -#: ../cyphesis-cpp.templates:6001 -msgid "Please type in the password to use to access the database server" -msgstr "" - -#. Type: boolean -#. Description -#: ../cyphesis-cpp.templates:7001 -msgid "Register with the WorldForge metaserver?" -msgstr "" - -#. Type: boolean -#. Description -#: ../cyphesis-cpp.templates:7001 -msgid "" -"Cyphesis-cpp can use the metaserver of the WorldForge project to announce " -"itself to the world. Players will detect your server automatically when " -"starting their client." -msgstr "" - -#. Type: boolean -#. Description -#: ../cyphesis-cpp.templates:8001 -msgid "Automatically start the Cyphesis server on boot?" -msgstr "" - -#. Type: boolean -#. Description -#: ../cyphesis-cpp.templates:8001 -msgid "" -"Cyphesis-cpp can start automatically when your computer boots. However, " -"unless you're running a dedicated server, this is probably not the behavior " -"you are looking for. By default, you will need to manually start Cyphesis-" -"cpp from the command line so that it does not run when it is not needed." -msgstr "" diff --git a/debian/po/vi.po b/debian/po/vi.po deleted file mode 100644 index 4228348..0000000 --- a/debian/po/vi.po +++ /dev/null @@ -1,163 +0,0 @@ -# Vietnamese translation for Cyphesis CPP. -# Copyright © 2009 Free Software Foundation, Inc. -# Clytie Siddall <[email protected]>, 2005-2009. -# -msgid "" -msgstr "" -"Project-Id-Version: cyphesis-cpp 0.5.16-1\n" -"Report-Msgid-Bugs-To: [email protected]\n" -"POT-Creation-Date: 2014-04-30 01:26-0500\n" -"PO-Revision-Date: 2009-02-18 16:12+1030\n" -"Last-Translator: Clytie Siddall <[email protected]>\n" -"Language-Team: Vietnamese <[email protected]>\n" -"Language: vi\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.8\n" - -#. Type: note -#. Description -#: ../cyphesis-cpp.templates:1001 -msgid "Configuration note" -msgstr "Ghi chú cấu hình" - -#. Type: note -#. Description -#: ../cyphesis-cpp.templates:1001 -msgid "" -"In order to use cyphesis-cpp you must have access to a postgresql server. " -"The server does not have to be installed on the same host as cyphesis-cpp " -"but it has to be reachable over a network and you have to have access to it." -msgstr "" -"Để sử dụng trình cyphesis-cpp thì cần truy cập đến một trình phục vụ " -"PostgreSQL. Trình phục vụ này không cần phải được cài đặt trong cùng một máy " -"với cyphesis-cpp, nhưng mà phải có thể tới nó qua mạng, và bạn phải có khả " -"năng truy cập đến nó." - -#. Type: note -#. Description -#: ../cyphesis-cpp.templates:1001 -msgid "" -"For further configuration information please read /usr/share/doc/cyphesis-" -"cpp/README.Debian." -msgstr "" -"Để tìm thêm thông tin cấu hình, xem tập tin Đọc Đi « /usr/share/doc/cyphesis-" -"cpp/README.Debian » ." - -#. Type: boolean -#. Description -#: ../cyphesis-cpp.templates:2001 -msgid "Use a local postgresql server?" -msgstr "Dùng trình phục vụ PostgreSQL cục bộ ?" - -#. Type: boolean -#. Description -#: ../cyphesis-cpp.templates:2001 -msgid "" -"Cyphesis-cpp can use a local postgresql server over unix sockets instead " -"over a network. The database server doesn't need to listen to the network " -"then. This is recommended for local usage as it's thought to be more secure." -msgstr "" -"Trình cyphesis-cpp có khả năng sử dụng một trình phục vụ PostgreSQL cục bộ " -"qua ổ cắm UNIX thay vào qua mạng. Trong trường hợp đó, trình phục vụ cơ sở " -"dữ liệu không cần lắng nghe trên mạng. Không cần liên lạc với máy phục vụ " -"bên ngoài thì khuyên bạn sử dụng tuỳ chọn bảo mật hơn này." - -#. Type: string -#. Description -#: ../cyphesis-cpp.templates:3001 -msgid "Database server:" -msgstr "Trình phục vụ cơ sở dữ liệu :" - -#. Type: string -#. Description -#: ../cyphesis-cpp.templates:3001 -#, fuzzy -#| msgid "" -#| "On which host is the postgresql database server located, which will be " -#| "used by cyphesis-cpp to store its internal data?" -msgid "" -"The host on which the postgresql database server is located. This will be " -"used by cyphesis-cpp to store its internal data." -msgstr "" -"Trình cyphesis-cpp sẽ cất giữ dữ liệu nội bộ dùng trình phục vụ cơ sở dữ " -"liệu PostgreSQL trên máy nào?" - -#. Type: string -#. Description -#: ../cyphesis-cpp.templates:4001 -msgid "Database name:" -msgstr "Tên cơ sở dữ liệu :" - -#. Type: string -#. Description -#: ../cyphesis-cpp.templates:4001 -#, fuzzy -#| msgid "" -#| "What is the database name cyphesis-cpp should use on the database server?" -msgid "The database name cyphesis-cpp should use on the database server." -msgstr "" -"Trên máy phục vụ cơ sở dữ liệu, cyphesis-cpp nên dùng cơ sở dữ liệu tên nào?" - -#. Type: string -#. Description -#: ../cyphesis-cpp.templates:5001 -msgid "Database user:" -msgstr "Người dùng cơ sở dữ liệu :" - -#. Type: string -#. Description -#: ../cyphesis-cpp.templates:5001 -msgid "Please type in the username for the database server" -msgstr "Hãy gõ tên người dùng cho trình phục vụ cơ sở dữ liệu" - -#. Type: password -#. Description -#: ../cyphesis-cpp.templates:6001 -msgid "Password:" -msgstr "Mật khẩu :" - -#. Type: password -#. Description -#: ../cyphesis-cpp.templates:6001 -msgid "Please type in the password to use to access the database server" -msgstr "Hãy gõ mật khẩu được dùng để truy cập đến máy phục vụ cơ sở dữ liệu." - -#. Type: boolean -#. Description -#: ../cyphesis-cpp.templates:7001 -msgid "Register with the WorldForge metaserver?" -msgstr "" - -#. Type: boolean -#. Description -#: ../cyphesis-cpp.templates:7001 -msgid "" -"Cyphesis-cpp can use the metaserver of the WorldForge project to announce " -"itself to the world. Players will detect your server automatically when " -"starting their client." -msgstr "" -"Cyphesis-cpp có khả năng dùng siêu trình phục vụ của dự án Worldforge để tự " -"thông báo cho thế giới. Khởi chạy ứng dụng khách thì người chơi cũng tự động " -"phát hiện máy phục vụ của bạn." - -#. Type: boolean -#. Description -#: ../cyphesis-cpp.templates:8001 -msgid "Automatically start the Cyphesis server on boot?" -msgstr "" - -#. Type: boolean -#. Description -#: ../cyphesis-cpp.templates:8001 -msgid "" -"Cyphesis-cpp can start automatically when your computer boots. However, " -"unless you're running a dedicated server, this is probably not the behavior " -"you are looking for. By default, you will need to manually start Cyphesis-" -"cpp from the command line so that it does not run when it is not needed." -msgstr "" - -#~ msgid "Use a metaserver?" -#~ msgstr "Sử dụng siêu trình phục vụ ?" diff --git a/debian/rules b/debian/rules index a29ccaa..42a6433 100755 --- a/debian/rules +++ b/debian/rules @@ -17,10 +17,6 @@ override_dh_strip: done dh_strip -s --remaining-packages -override_dh_clean: - debconf-updatepo - dh_clean - override_dh_installinit: dh_installinit --noscripts -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-games/cyphesis-cpp.git _______________________________________________ Pkg-games-commits mailing list [email protected] http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-games-commits

