--- smbind-0.4.7.orig/debian/copyright +++ smbind-0.4.7/debian/copyright @@ -0,0 +1,30 @@ +This package was debianized by Giuseppe Iuculano on +Mon, 9 Jun 2008 18:51:37 +0200. + +It was downloaded from http://sourceforge.net/projects/smbind + +Upstream Author: Ole Myhre , Ben Lentz + +Copyright: Ole Myhre (C) 2004-2007 http://sourceforge.net/projects/smbind + +License: + + This package 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 package 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 package; 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 `/usr/share/common-licenses/GPL'. + +The Debian packaging is (C) 2008, Giuseppe Iuculano and +is licensed under the GPL, see above. --- smbind-0.4.7.orig/debian/apache.conf +++ smbind-0.4.7/debian/apache.conf @@ -0,0 +1,9 @@ +Alias /smbind /usr/share/smbind/php + + + Options FollowSymLinks + AllowOverride Limit + + DirectoryIndex index.php + + --- smbind-0.4.7.orig/debian/config +++ smbind-0.4.7/debian/config @@ -0,0 +1,17 @@ +#!/bin/sh + +set -e +#set -x + +# source debconf stuff +if [ -f /usr/share/debconf/confmodule ]; then + . /usr/share/debconf/confmodule +fi + +# source dbconfig-common stuff +if [ -f /usr/share/dbconfig-common/dpkg/config ]; then + dbc_dbtypes="mysql, pgsql" + dbc_authmethod_user="password" + . /usr/share/dbconfig-common/dpkg/config + dbc_go smbind $@ +fi --- smbind-0.4.7.orig/debian/watch +++ smbind-0.4.7/debian/watch @@ -0,0 +1,3 @@ +# Compulsory line, this is a version 3 file +version=3 +http://sf.net/smbind/smbind-([\d\.]+)\.tar\.gz --- smbind-0.4.7.orig/debian/postinst +++ smbind-0.4.7/debian/postinst @@ -0,0 +1,93 @@ +#!/bin/sh + +set -e +#set -x + +. /usr/share/debconf/confmodule +. /usr/share/dbconfig-common/dpkg/postinst +dbc_generate_include=php:/etc/smbind/config-db.php +dbc_go smbind $@ + +# summary of how this script can be called: +# * `configure' +# * `abort-upgrade' +# * `abort-remove' `in-favour' +# +# * `abort-deconfigure' `in-favour' +# `removing' +# + +case "$1" in + configure) + + chown -R www-data:www-data /usr/share/smbind/php + chown -R www-data:bind /etc/smbind + chown -R www-data:www-data /etc/smbind/smbind.conf + chmod 774 /etc/smbind/zones/ + chown www-data:www-data /etc/smbind/config-db.php + chmod 640 /etc/smbind/config-db.php + # Webservers to test for + webservers="apache apache-ssl apache-perl apache2" + restart="" + found="false" + + for webserver in $webservers; do + webserver=${webserver%,} + + # Test for the webserver + test -x /usr/sbin/$webserver || continue + test -d /etc/$webserver/conf.d || continue + + # Create link to config snippet + if [ ! -f /etc/$webserver/conf.d/smbind.conf ] && [ ! -h /etc/$webserver/conf.d/smbind.conf ]; then + ln -s /etc/smbind/apache.conf /etc/$webserver/conf.d/smbind.conf + fi + + # Prompt for restarting the webserver + found="true" + db_reset smbind/restart-webserver || true + db_subst smbind/restart-webserver webserver "$webserver" + db_input high smbind/restart-webserver || true + db_go + db_get smbind/restart-webserver + if [ "$RET" = "true" ]; then + restart="$restart $webserver" + fi + done + + if [ "$found" = "false" ] ; then + db_input high smbind/unsupported-webserver || true + db_go + fi + + # Tell debconf to stop so it doesn't get confused + db_stop + + for webserver in $restart; do + webserver=${webserver%,} + + # Restart the webserver + if [ -x /usr/sbin/invoke-rc.d ]; then + invoke-rc.d $webserver restart >&2 + else + /etc/init.d/$webserver restart >&2 + fi + done + + ;; + + abort-upgrade|abort-remove|abort-deconfigure) + + ;; + + *) + echo "postinst called with unknown argument \`$1'" >&2 + exit 1 + ;; +esac + +# dh_installdeb will replace this with shell code automatically +# generated by other debhelper scripts. + +#DEBHELPER# + --- smbind-0.4.7.orig/debian/compat +++ smbind-0.4.7/debian/compat @@ -0,0 +1 @@ +5 --- smbind-0.4.7.orig/debian/lighttpd.conf +++ smbind-0.4.7/debian/lighttpd.conf @@ -0,0 +1 @@ +alias.url += ("/smbind/" => "/usr/share/smbind/php/") --- smbind-0.4.7.orig/debian/lintian-overrides +++ smbind-0.4.7/debian/lintian-overrides @@ -0,0 +1,4 @@ +# smbind uses variable subsitution in debconf to ease translation (like phpmyadmin) +smbind binary: postinst-uses-db-input +#templates_c is empty (smarty requires it) +smbind binary: package-contains-empty-directory usr/share/smbind/php/templates_c/ --- smbind-0.4.7.orig/debian/install +++ smbind-0.4.7/debian/install @@ -0,0 +1,10 @@ +# Web files +php/* usr/share/smbind/php + +# Database config files for documentation +smbind-mysql.sql usr/share/doc/smbind/dbfiles +smbind-pg.sql usr/share/doc/smbind/dbfiles + +# Webserver config files +debian/apache.conf etc/smbind +debian/lighttpd.conf etc/smbind --- smbind-0.4.7.orig/debian/dirs +++ smbind-0.4.7/debian/dirs @@ -0,0 +1,18 @@ +# Config directory +etc/smbind +etc/smbind/zones + +# Web files +usr/share/smbind + +# Database config files +usr/share/dbconfig-common/data/smbind/install +#usr/share/dbconfig-common/data/smbind/upgrade/mysql +#usr/share/dbconfig-common/data/smbind/upgrade/pgsql + +# Documentation +usr/share/doc/smbind +usr/share/doc/smbind/dbfiles + +# Lintian overrides +usr/share/lintian/overrides --- smbind-0.4.7.orig/debian/templates +++ smbind-0.4.7/debian/templates @@ -0,0 +1,19 @@ +Template: smbind/restart-webserver +Type: boolean +Default: false +_Description: Should ${webserver} be restarted? + Remember that in order to activate the new configuration + ${webserver} has to be restarted. You can also restart ${webserver} + by manually executing invoke-rc.d ${webserver} restart. + +Template: smbind/unsupported-webserver +Type: note +_Description: No supported webserver was found + A supported webserver was not found to automatically configure. + This package can only automatically configure apache webservers + to use the program. If you are using a different webserver, you + will need to point it to the smbind files in + /usr/share/smbind/php (see the webserver config files in + /etc/smbind/apache.conf for examples) and possibly + restart the webserver during installation, and then remove the + configuration when removing the package. --- smbind-0.4.7.orig/debian/postrm +++ smbind-0.4.7/debian/postrm @@ -0,0 +1,50 @@ +#!/bin/sh + +set -e +#set -x + +if [ -f /usr/share/debconf/confmodule ]; then + . /usr/share/debconf/confmodule +fi +if [ -f /usr/share/dbconfig-common/dpkg/postrm ]; then + . /usr/share/dbconfig-common/dpkg/postrm + dbc_go smbind $@ +fi + +# summary of how this script can be called: +# * `remove' +# * `purge' +# * `upgrade' +# * `failed-upgrade' +# * `abort-install' +# * `abort-install' +# * `abort-upgrade' +# * `disappear' overwrit>r> +# for details, see http://www.debian.org/doc/debian-policy/ or +# the debian-policy package + + +case "$1" in + purge) + + rm -f /etc/smbind/config-db.php + rm -rf /usr/share/smbind/php/templates_c/* + rm -f /etc/smbind/zones/* + ucf --purge /etc/smbind/config-db.php + rmdir --ignore-fail-on-non-empty /etc/smbind || true + + ;; + remove|upgrade|failed-upgrade|abort-install|abort-upgrade|disappear) + + + ;; + + *) + echo "postrm called with unknown argument \`$1'" >&2 + exit 1 + +esac + + +#DEBHELPER# + --- smbind-0.4.7.orig/debian/rules +++ smbind-0.4.7/debian/rules @@ -0,0 +1,58 @@ +#!/usr/bin/make -f +# -*- makefile -*- +# Sample debian/rules that uses debhelper. +# This file was originally written by Joey Hess and Craig Small. +# As a special exception, when this file is copied by dh-make into a +# dh-make output file, you may use that output file without restriction. +# This special exception was added by Craig Small in version 0.37 of dh-make. + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + +include /usr/share/dpatch/dpatch.make + +build: build-stamp + +build-stamp: patch-stamp + dh_testdir + touch $@ + +clean: unpatch + dh_testdir + dh_testroot + rm -f build-stamp configure-stamp + dh_clean + debconf-updatepo + +install: build + dh_testdir + dh_testroot + dh_clean -k + dh_installdirs + + + +# Build architecture-independent files here. +binary-indep: build install + dh_testdir + dh_testroot + dh_installchangelogs CHANGELOG + dh_installdocs + dh_install + dh_installmenu + dh_installdebconf + # dbconfig-common section + cp smbind-mysql.sql debian/smbind/usr/share/dbconfig-common/data/smbind/install/mysql + cp smbind-pg.sql debian/smbind/usr/share/dbconfig-common/data/smbind/install/pgsql + touch debian/smbind/etc/smbind/smbind.conf + # Add the lintian override file + cp debian/lintian-overrides debian/smbind/usr/share/lintian/overrides/smbind + dh_compress + dh_fixperms + dh_installdeb + dh_gencontrol + dh_md5sums + dh_builddeb + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary install configure --- smbind-0.4.7.orig/debian/docs +++ smbind-0.4.7/debian/docs @@ -0,0 +1,2 @@ +README +UPGRADE --- smbind-0.4.7.orig/debian/control +++ smbind-0.4.7/debian/control @@ -0,0 +1,24 @@ +Source: smbind +Section: web +Priority: optional +Maintainer: Giuseppe Iuculano +Build-Depends: debhelper (>= 5), dpatch, po-debconf +Standards-Version: 3.8.0 +Homepage: http://sourceforge.net/projects/smbind + +Package: smbind +Architecture: all +Depends: ${misc:Depends}, apache2 | httpd, php5 | php5-cgi, php5-mysql | php5-pgsql, bind9, dbconfig-common, mysql-server | postgresql, libphp-adodb, smarty, php-pear, php-db +Description: PHP-based tool for managing DNS zones for BIND + Smbind is a PHP-based tool for managing DNS zones for BIND via the web. + Supports per-user administration of zones, error checking, + and a PEAR DB database backend. + . + This tool will enable you to administer your bind-based DNS server without + having to touch your zone files with a text editor, while also providing + a redundant backup of the data stored in both a PEAR DB database and in the + normal text configuration files. + . + Since it is web-accessible, those without shell access or command-line skills + (or whom are just plain lazy) can enjoy DNS administration from the comfort + of a remote browser. --- smbind-0.4.7.orig/debian/changelog +++ smbind-0.4.7/debian/changelog @@ -0,0 +1,58 @@ +smbind (0.4.7-3+lenny1build0.9.04.1) jaunty-security; urgency=low + + * fake sync from Debian + + -- Kees Cook Fri, 01 Oct 2010 17:42:48 -0700 + +smbind (0.4.7-3+lenny1) stable-security; urgency=high + + * Fix sql injection in src/include.php + + -- Giuseppe Iuculano Sun, 05 Sep 2010 22:23:59 +0200 + +smbind (0.4.7-3) unstable; urgency=low + + * debian/prerm: Fix the bad priority setting on the restart webserver + debconf question + * Added Spanish debconf translation, thanks to Ignacio Mondino + (Closes: #501956) + + -- Giuseppe Iuculano Sun, 12 Oct 2008 02:56:51 +0200 + +smbind (0.4.7-2) unstable; urgency=low + + * Removed var/www from debian/dirs + * debian/rules: Added debconf-updatepo to the clean target + * debian/control: + + Added po-debconf to Build-Depends + + Removed php5-mysqli from Depends + * debian/watch: Fix watch pattern so that smbind-view is not matched + * Added Swedish debconf translation, thanks to Martin Bagge + (Closes: #488220) + * Added French debconf translation, thanks to Christian Perrier + (Closes: #488331) + * Added Czech debconf translation, thanks to Miroslav Kure + (Closes: #488370) + * Added Galician debconf translation, thanks to Jacobo Tarrio + (Closes: #488378) + * Added Portuguese debconf translation, thanks to Américo Monteiro + (Closes: #488400) + * Added German debconf translation, thanks to Helge Kreutzmann + (Closes: #488718) + * Added Russian debconf translation, thanks to Yuri Kozlov + (Closes: #489280) + * Added Turkish debconf translation, thanks to Mert Dirik + (Closes: #489290) + * Added Vietnamese debconf translation, thanks to Clytie Siddall + (Closes: #489398) + * Added Basque debconf translation, thanks to Xabier Bilbao + (Closes: #489585) + + -- Giuseppe Iuculano Mon, 07 Jul 2008 17:53:49 +0200 + +smbind (0.4.7-1) unstable; urgency=low + + * Initial release (Closes: #485513) + + -- Giuseppe Iuculano Mon, 9 Jun 2008 18:51:37 +0200 + --- smbind-0.4.7.orig/debian/prerm +++ smbind-0.4.7/debian/prerm @@ -0,0 +1,64 @@ +#!/bin/sh + +set -e +#set -x + +. /usr/share/debconf/confmodule +. /usr/share/dbconfig-common/dpkg/prerm.mysql +dbc_go smbind $@ + +if [ "$1" = "remove" ] || [ "$1" = "purge" ]; then + # Webservers to check for + webservers="apache apache-ssl apache-perl apache2" + restart="" + found="false" + + for webserver in $webservers; do + webserver=${webserver%,} + + # Remove the apache config snippet link + rm -f /etc/$webserver/conf.d/smbind.conf + + # Test for the webserver + test -x /usr/sbin/$webserver || continue + test -d /etc/$webserver/conf.d || continue + + # Prompt for webserver restart + found="true" + db_reset smbind/restart-webserver || true + db_subst smbind/restart-webserver webserver "$webserver" + db_input high smbind/restart-webserver || true + db_go + db_get smbind/restart-webserver + if [ "$RET" = "true" ]; then + restart="$restart $webserver" + fi + done + + if [ "$found" = "false" ] ; then + db_input high smbind/unsupported-webserver || true + db_go + fi + + # Tell debconf to stop so it doesn't get confused + db_stop + + for webserver in $restart; do + webserver=${webserver%,} + + # Restart the webserver + if [ -x /usr/sbin/invoke-rc.d ]; then + invoke-rc.d $webserver restart >&2 + else + /etc/init.d/$webserver restart >&2 + fi + done +fi + +# dh_installdeb will replace this with shell code automatically +# generated by other debhelper scripts. + +#DEBHELPER# + +exit 0 + --- smbind-0.4.7.orig/debian/README.Debian +++ smbind-0.4.7/debian/README.Debian @@ -0,0 +1,42 @@ +smbind for Debian +----------------- + +* REMEMBER TO CHANGE THE ADMIN PASSWORD !!! +============================================================================ + + + +* GETTING STARTED +================= + +Using dbconfig-common for the database install is highly recommended. +If you have chosen not to use it, you can find the SQL files used to +install and upgrade the database in /usr/share/doc/smbind/dbfiles. +You will need to use these files to manually install/upgrade the +database yourself. + +* WHAT TO DO AFTER INSTALLATION: +================================ + +1. Add the user that runs your web server (default in debian is www-data) + to the group that runs the BIND server (default in debian is bind), for example: + usermod -G bind www-data +2. Restart your web server: + /etc/init.d/apache2 restart +3. Include /etc/smbind/smbind.conf in your bind configuration: + echo 'include "/etc/smbind/smbind.conf";' >> /etc/bind/named.conf.local +4. Restart bind + /etc/init.d/bind9 restart + +* PASSWORDS: +============ + +Once the package is installed, point your browser to +http://localhost/smbind/ +Smbind will ask you for a user name and password, Login to the web interface +with the user 'admin' and password 'admin'. (You should change admin +password *immediately*) + + + + -- Giuseppe Iuculano Mon, 9 Jun 2008 18:51:37 +0200 --- smbind-0.4.7.orig/debian/patches/02_fix_path.dpatch +++ smbind-0.4.7/debian/patches/02_fix_path.dpatch @@ -0,0 +1,30 @@ +#! /bin/sh /usr/share/dpatch/dpatch-run +## 02_sones_path.dpatch by Giuseppe Iuculano +## +## All lines beginning with `## DP:' are a description of the patch. +## DP: Fix some path in config + +@DPATCH@ +diff -urNad smbind-0.4.7~/php/config.php smbind-0.4.7/php/config.php +--- smbind-0.4.7~/php/config.php 2008-06-10 19:32:57.000000000 +0200 ++++ smbind-0.4.7/php/config.php 2008-06-10 19:33:12.000000000 +0200 +@@ -1,8 +1,8 @@ + +## +## All lines beginning with `## DP:' are a description of the patch. +## DP: Fixed a bug in commit.php, we need the zone path + +@DPATCH@ +diff -urNad smbind-0.4.7~/php/src/commit.php smbind-0.4.7/php/src/commit.php +--- smbind-0.4.7~/php/src/commit.php 2007-01-07 07:02:03.000000000 +0100 ++++ smbind-0.4.7/php/src/commit.php 2008-06-10 20:06:07.000000000 +0200 +@@ -98,7 +98,7 @@ + while($conf = $confres->fetchrow()) { + $cout .= "zone \"" . $conf[0] . "\" { + type master; +- file \"" . preg_replace('/\//','-',$conf[0]) . "\"; ++ file \"" . $_CONF['path'] . preg_replace('/\//','-',$conf[0]) . "\"; + };\n\n"; + } + $fd = fopen($_CONF['conf'],"w"); --- smbind-0.4.7.orig/debian/patches/00list +++ smbind-0.4.7/debian/patches/00list @@ -0,0 +1,4 @@ +01_dbconfig-common.dpatch +02_fix_path.dpatch +03_fix_commit.dpatch +04_sql_injection --- smbind-0.4.7.orig/debian/patches/01_dbconfig-common.dpatch +++ smbind-0.4.7/debian/patches/01_dbconfig-common.dpatch @@ -0,0 +1,31 @@ +#! /bin/sh /usr/share/dpatch/dpatch-run +## 01_dbconfig-common.dpatch by Giuseppe Iuculano +## +## All lines beginning with `## DP:' are a description of the patch. +## DP: Patch for using dbconfig-common + +@DPATCH@ +diff -urNad smbind-0.4.7~/php/config.php smbind-0.4.7/php/config.php +--- smbind-0.4.7~/php/config.php 2006-11-13 03:07:15.000000000 +0100 ++++ smbind-0.4.7/php/config.php 2008-06-10 12:22:10.000000000 +0200 +@@ -1,14 +1,15 @@ + +## +## All lines beginning with `## DP:' are a description of the patch. +## DP: No description. + +@DPATCH@ +diff -urNad '--exclude=CVS' '--exclude=.svn' '--exclude=.git' '--exclude=.arch' '--exclude=.hg' '--exclude=_darcs' '--exclude=.bzr' smbind~/php/src/include.php smbind/php/src/include.php +--- smbind~/php/src/include.php 2010-09-05 21:09:07.000000000 +0200 ++++ smbind/php/src/include.php 2010-09-05 22:21:13.000000000 +0200 +@@ -23,7 +23,10 @@ + if((!filter("alphanum", $_POST['username'])) or (!filter("alphanum", $_POST['password']))) { + die("Username and password must contain only letters and numbers."); + } +- $_SESSION['username'] = $_POST['username']; ++ if ($dbtype == "mysql") ++ $_SESSION['username'] = mysql_real_escape_string($_POST['username']); ++ else ++ $_SESSION['username'] = pg_escape_string($_POST['username']); + $_SESSION['password'] = $_POST['password']; + } + --- smbind-0.4.7.orig/debian/po/ru.po +++ smbind-0.4.7/debian/po/ru.po @@ -0,0 +1,63 @@ +# translation of ru.po to Russian +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Yuri Kozlov , 2008. +msgid "" +msgstr "" +"Project-Id-Version: smbind NEW\n" +"Report-Msgid-Bugs-To: giuseppe@iuculano.it\n" +"POT-Creation-Date: 2008-06-10 15:17+0200\n" +"PO-Revision-Date: 2008-07-04 21:29+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" +"Language: ru\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 +#: ../templates:1001 +msgid "Should ${webserver} be restarted?" +msgstr "Перезапустить ${webserver}?" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "" +"Remember that in order to activate the new configuration ${webserver} has to " +"be restarted. You can also restart ${webserver} by manually executing invoke-" +"rc.d ${webserver} restart." +msgstr "" +"Чтобы новые настройки начали работать требуется перезапустить ${webserver}. " +"Также вы можете перезапустить ${webserver} вручную выполнив invoke-rc.d " +"${webserver} restart." + +#. Type: note +#. Description +#: ../templates:2001 +msgid "No supported webserver was found" +msgstr "Поддерживаемых веб-серверов не найдено" + +#. Type: note +#. Description +#: ../templates:2001 +msgid "" +"A supported webserver was not found to automatically configure. This package " +"can only automatically configure apache webservers to use the program. If " +"you are using a different webserver, you will need to point it to the smbind " +"files in /usr/share/smbind/php (see the webserver config files in /etc/" +"smbind/apache.conf for examples) and possibly restart the webserver during " +"installation, and then remove the configuration when removing the package." +msgstr "" +"Поддерживаемый веб-сервер для автоматической настройки не найден. Этот пакет " +"может настраивать автоматически только веб-серверы apache. Если вы " +"используете другой веб-сервер, то вам нужно указать в нём, что файлы smbind " +"находятся в каталоге /usr/share/smbind/php (для примера смотрите файлы " +"настройки в /etc/smbind/apache.conf) и, возможно, перезапустить веб-сервер " +"после установки. При удалении пакета нужно будет убрать настройки " +"самостоятельно." --- smbind-0.4.7.orig/debian/po/fr.po +++ smbind-0.4.7/debian/po/fr.po @@ -0,0 +1,61 @@ +# Translation of smbind debconf templates to French +# Copyright (C) 2008 Christian Perrier +# This file is distributed under the same license as the smbind package. +# +# Christian Perrier , 2008. +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: giuseppe@iuculano.it\n" +"POT-Creation-Date: 2008-06-10 15:17+0200\n" +"PO-Revision-Date: 2008-06-27 19:55+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" +"Language: fr\n" +"X-Generator: KBabel 1.11.4\n" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "Should ${webserver} be restarted?" +msgstr "Faut-il redémarrer ${webserver} ?" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "" +"Remember that in order to activate the new configuration ${webserver} has to " +"be restarted. You can also restart ${webserver} by manually executing invoke-" +"rc.d ${webserver} restart." +msgstr "" +"Veuillez noter que pour activer la nouvelle configuration, ${webserver} doit " +"être redémarré. Vous pouvez également le redémarrer vous-même avec la " +"commande « invoke-rc.d ${webserver} restart »." + +#. Type: note +#. Description +#: ../templates:2001 +msgid "No supported webserver was found" +msgstr "Pas de serveur web géré" + +#. Type: note +#. Description +#: ../templates:2001 +msgid "" +"A supported webserver was not found to automatically configure. This package " +"can only automatically configure apache webservers to use the program. If " +"you are using a different webserver, you will need to point it to the smbind " +"files in /usr/share/smbind/php (see the webserver config files in /etc/" +"smbind/apache.conf for examples) and possibly restart the webserver during " +"installation, and then remove the configuration when removing the package." +msgstr "" +"Aucun serveur web pouvant être configuré automatiquement n'a été trouvé. La " +"configuration automatique n'est possible que pour les serveurs de type " +"Apache. Si vous utilisez un autre serveur web, vous devrez le pointer vers " +"les fichiers de smbind dans /usr/share/smbind/php (vous pouvez prendre " +"exemple sur le fichier /etc/smbind/apache.conf) puis éventuellement le " +"redémarrer durant l'installation. Il sera également nécessaire de supprimer " +"la configuration spécifique pour smbind si le paquet est supprimé." --- smbind-0.4.7.orig/debian/po/vi.po +++ smbind-0.4.7/debian/po/vi.po @@ -0,0 +1,62 @@ +# Vietnamese translation for SMBind. +# Copyright © 2008 Free Software Foundation, Inc. +# Clytie Siddall , 2008. +# +msgid "" +msgstr "" +"Project-Id-Version: smbind\n" +"Report-Msgid-Bugs-To: giuseppe@iuculano.it\n" +"POT-Creation-Date: 2008-06-10 15:17+0200\n" +"PO-Revision-Date: 2008-07-05 22:36+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" +"Language: vi\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: LocFactoryEditor 1.7b3\n" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "Should ${webserver} be restarted?" +msgstr "Có nên khởi chạy lại ${webserver} không?" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "" +"Remember that in order to activate the new configuration ${webserver} has to " +"be restarted. You can also restart ${webserver} by manually executing invoke-" +"rc.d ${webserver} restart." +msgstr "" +"Ghi nhớ rằng để kích hoạt cấu hình mới thì cần phải khởi chạy lại trình phục " +"vụ Web ${webserver}. Bạn cũng có thể khởi chạy lại ${webserver} bằng cách tự " +"chạy câu lệnh « invoke-rc.d ${webserver} restart »." + +#. Type: note +#. Description +#: ../templates:2001 +msgid "No supported webserver was found" +msgstr "Không tìm thấy trình phục vụ Web được hỗ trợ" + +#. Type: note +#. Description +#: ../templates:2001 +msgid "" +"A supported webserver was not found to automatically configure. This package " +"can only automatically configure apache webservers to use the program. If " +"you are using a different webserver, you will need to point it to the smbind " +"files in /usr/share/smbind/php (see the webserver config files in /etc/" +"smbind/apache.conf for examples) and possibly restart the webserver during " +"installation, and then remove the configuration when removing the package." +msgstr "" +"Không tìm thấy một trình phục vụ được hỗ trợ để tự động cấu hình. Gói này " +"chỉ có khả năng tự động cấu hình trình phục vụ apache để sử dụng chương " +"trình này. Nếu bạn đang chạy một trình phục vụ khác, bạn cũng cần phải:\n" +" 1. chỉ nó tới các tập tin smbind trong thư mục « n /usr/share/smbind/php »\n" +"\t(xem các tập tin cấu hình trình phục vụ trong tập tin\n" +"\t« /etc/smbind/apache.conf » để so sánh)\n" +" 2. (có thể) khởi chạy trình phục vụ Web trong khi cài đặt 3. gỡ bỏ cấu hình " +"trong khi gỡ bỏ gói" --- smbind-0.4.7.orig/debian/po/de.po +++ smbind-0.4.7/debian/po/de.po @@ -0,0 +1,59 @@ +# Translation of smbind debconf templates to German +# Copyright (C) Helge Kreutzmann , 2008. +# This file is distributed under the same license as the smbind package. +# +msgid "" +msgstr "" +"Project-Id-Version: smbind\n" +"Report-Msgid-Bugs-To: giuseppe@iuculano.it\n" +"POT-Creation-Date: 2008-06-10 15:17+0200\n" +"PO-Revision-Date: 2008-06-29 09:16+0200\n" +"Last-Translator: Helge Kreutzmann \n" +"Language-Team: de \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: \n" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "Should ${webserver} be restarted?" +msgstr "Soll ${webserver} neu gestartet werden?" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "" +"Remember that in order to activate the new configuration ${webserver} has to " +"be restarted. You can also restart ${webserver} by manually executing invoke-" +"rc.d ${webserver} restart." +msgstr "" +"Beachten Sie, dass zum Aktivieren der neuen Konfiguration ${webserver} neu " +"gestartet werden muss. Sie können ${webserver} auch manuell mittels »invoke-" +"rc.d ${webserver} restart« neu starten." + +#. Type: note +#. Description +#: ../templates:2001 +msgid "No supported webserver was found" +msgstr "Keine unterstützten Webserver gefunden" + +#. Type: note +#. Description +#: ../templates:2001 +msgid "" +"A supported webserver was not found to automatically configure. This package " +"can only automatically configure apache webservers to use the program. If " +"you are using a different webserver, you will need to point it to the smbind " +"files in /usr/share/smbind/php (see the webserver config files in /etc/" +"smbind/apache.conf for examples) and possibly restart the webserver during " +"installation, and then remove the configuration when removing the package." +msgstr "" +"Es wurde kein unterstützter Webserver zrm automatischen Konfiguration " +"gefunden. Dies Paket kann nur Apache-Webserver für seinen Einsatz " +"automatisch konfigurieren. Falls Sie einen anderen Webserver verwenden, " +"müssen Sie ihn auf die Smbind-Dateien in /usr/share/smbind/php verweisen " +"(Beispiele finden Sie in den Konfigurationsdateien unter /etc/smbind/apache." +"conf) und möglicherweise den Webserver während der Installation neu starten. " +"Wenn Sie das Paket entfernen, müssen Sie auch die Konfiguration entfernen." --- smbind-0.4.7.orig/debian/po/gl.po +++ smbind-0.4.7/debian/po/gl.po @@ -0,0 +1,60 @@ +# Galician translation of smbind's debconf templates +# This file is distributed under the same license as the smbind package. +# Jacobo Tarrio , 2008. +# +msgid "" +msgstr "" +"Project-Id-Version: smbind\n" +"Report-Msgid-Bugs-To: giuseppe@iuculano.it\n" +"POT-Creation-Date: 2008-06-10 15:17+0200\n" +"PO-Revision-Date: 2008-06-28 14:20+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" +"Language: gl\n" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "Should ${webserver} be restarted?" +msgstr "¿Debería reiniciarse ${webserver}?" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "" +"Remember that in order to activate the new configuration ${webserver} has to " +"be restarted. You can also restart ${webserver} by manually executing invoke-" +"rc.d ${webserver} restart." +msgstr "" +"Lembre que para activar a nova configuración hai que reiniciar ${webserver}. " +"Tamén pode reiniciar ${webserver} á man executando \"invoke-rc.d " +"${webserver} restart\"." + +#. Type: note +#. Description +#: ../templates:2001 +msgid "No supported webserver was found" +msgstr "Non se atopou un servidor web soportado" + +#. Type: note +#. Description +#: ../templates:2001 +msgid "" +"A supported webserver was not found to automatically configure. This package " +"can only automatically configure apache webservers to use the program. If " +"you are using a different webserver, you will need to point it to the smbind " +"files in /usr/share/smbind/php (see the webserver config files in /etc/" +"smbind/apache.conf for examples) and possibly restart the webserver during " +"installation, and then remove the configuration when removing the package." +msgstr "" +"Non se atopou un servidor web soportado que se poida configurar " +"automaticamente. Este paquete só pode configurar automaticamente os " +"servidores web apache para poder usar o programa. Se emprega un servidor web " +"diferente, ha ter que o facer apuntar aos ficheiros de smbind en /usr/share/" +"smbind/php (consulte os ficheiros de configuración do servidor web en /etc/" +"smbind/apache.conf para ver exemplos), e, probablemente, ha ter que " +"reiniciar o servidor web durante a instalación, e despois, cando elimine o " +"paquete, ha ter que eliminar a configuración." --- smbind-0.4.7.orig/debian/po/tr.po +++ smbind-0.4.7/debian/po/tr.po @@ -0,0 +1,60 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# Mert Dirik , 2008. +# +msgid "" +msgstr "" +"Project-Id-Version: smbind\n" +"Report-Msgid-Bugs-To: giuseppe@iuculano.it\n" +"POT-Creation-Date: 2008-06-10 15:17+0200\n" +"PO-Revision-Date: 2008-07-03 18:28+0200\n" +"Last-Translator: Mert Dirik \n" +"Language-Team: Debian L10n Turkish \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: \n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "Should ${webserver} be restarted?" +msgstr "${webserver} yeniden başlatılsın mı?" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "" +"Remember that in order to activate the new configuration ${webserver} has to " +"be restarted. You can also restart ${webserver} by manually executing invoke-" +"rc.d ${webserver} restart." +msgstr "" +"Yeni yapılandırmayı etkinleştirmek için ${webserver} web sunucunuzun yeniden " +"başlatılması gerektiğini unutmayın. Web sunucunuzu elle invoke-rc.d " +"${webserver} restart komutunu vererek de yeniden başlatabilirsiniz." + +#. Type: note +#. Description +#: ../templates:2001 +msgid "No supported webserver was found" +msgstr "Desteklenen bir web sunucusu bulunamadı" + +#. Type: note +#. Description +#: ../templates:2001 +msgid "" +"A supported webserver was not found to automatically configure. This package " +"can only automatically configure apache webservers to use the program. If " +"you are using a different webserver, you will need to point it to the smbind " +"files in /usr/share/smbind/php (see the webserver config files in /etc/" +"smbind/apache.conf for examples) and possibly restart the webserver during " +"installation, and then remove the configuration when removing the package." +msgstr "" +"Otomatik olarak yapılandırmak için desteklenen bir web sunucusu bulunamadı. " +"Bu paket sadece apache web sunucularını otomatik olarak yapılandırabilir. " +"Eğer başka bir web sunucusu kullanıyorsanız, sunucunuzu /usr/share/smbind/" +"php konumundaki smbind dosyalarına yöneltmeli (örnek yapılandırma dosyaları " +"için /etc/smbind/apache.conf'a bakın) ve web sunucusunu yeniden başlatmalı; " +"paketi kaldırırken de bu yapılandırmayı kaldırmalısınız." --- smbind-0.4.7.orig/debian/po/eu.po +++ smbind-0.4.7/debian/po/eu.po @@ -0,0 +1,63 @@ +# translation of smbind debconf template to Euskara +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Xabier Bilbao , 2008. +# Piarres Beobide , 2008. +msgid "" +msgstr "" +"Project-Id-Version: smbind-eu\n" +"Report-Msgid-Bugs-To: giuseppe@iuculano.it\n" +"POT-Creation-Date: 2008-06-10 15:17+0200\n" +"PO-Revision-Date: 2008-07-05 22:44+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" +"Language: \n" +"X-Generator: KBabel 1.11.4\n" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "Should ${webserver} be restarted?" +msgstr "${webserver} berrabiarazi egin behar al da?" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "" +"Remember that in order to activate the new configuration ${webserver} has to " +"be restarted. You can also restart ${webserver} by manually executing invoke-" +"rc.d ${webserver} restart." +msgstr "" +"Gogoan izan konfigurazio berria aktibatzeko, ${webserver} berriro abiarazi " +"behar dela. Eskuz ere abiarazi dezakezu berriro ${webserver}'invoke-rc.d " +"${webserver} restart' exekutatuaz." + +#. Type: note +#. Description +#: ../templates:2001 +msgid "No supported webserver was found" +msgstr "Ez da onarturiko web-zerbitzaririk aurkitu" + +#. Type: note +#. Description +#: ../templates:2001 +msgid "" +"A supported webserver was not found to automatically configure. This package " +"can only automatically configure apache webservers to use the program. If " +"you are using a different webserver, you will need to point it to the smbind " +"files in /usr/share/smbind/php (see the webserver config files in /etc/" +"smbind/apache.conf for examples) and possibly restart the webserver during " +"installation, and then remove the configuration when removing the package." +msgstr "" +"Ez da onarturiko web-zerbitzaririk aurkitu automatikoki konfiguratzeko. " +"Pakete honek programa hau erabiltzeko apache web-zerbitzariak soilik " +"konfigura ditzake automatikoki. Zuk bestelako web-zerbitzariren bat " +"erabiltzen baduzu, bideratu egin beharko duzu /usr/share/smbind/php-n " +"kokaturiko smbind fitxategietara (adibideak ikusteko, jo ezazu /etc/smbind/" +"apache.conf-eko web-zerbitzari konfigurazio fitxategietara), gero, ziurrenik " +"berriro abiarazi beharko duzu web-zerbitzaria instalazio egitean, eta " +"konfigurazioa kendu paketea kentzean." --- smbind-0.4.7.orig/debian/po/pt.po +++ smbind-0.4.7/debian/po/pt.po @@ -0,0 +1,62 @@ +# translation of smbind debconf to Portuguese +# Copyright (C) 2008 Américo Monteiro +# This file is distributed under the same license as the smbind package. +# +# Américo Monteiro , 2008. +msgid "" +msgstr "" +"Project-Id-Version: smbind\n" +"Report-Msgid-Bugs-To: giuseppe@iuculano.it\n" +"POT-Creation-Date: 2008-06-10 15:17+0200\n" +"PO-Revision-Date: 2008-06-27 17:51+0100\n" +"Last-Translator: Américo Monteiro \n" +"Language-Team: Portuguese \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: pt\n" +"X-Generator: KBabel 1.11.4\n" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "Should ${webserver} be restarted?" +msgstr "Deve o ${webserver} ser reiniciado?" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "" +"Remember that in order to activate the new configuration ${webserver} has to " +"be restarted. You can also restart ${webserver} by manually executing invoke-" +"rc.d ${webserver} restart." +msgstr "" +"Lembre-se que para activar a nova configuração, o ${webserver} tem que ser " +"reiniciado. Você também pode reiniciar o ${webserver} manualmente executando " +"invoke-rc.d ${webserver} restart." + +#. Type: note +#. Description +#: ../templates:2001 +msgid "No supported webserver was found" +msgstr "Não foi encontrado nenhum servidor web suportado." + +#. Type: note +#. Description +#: ../templates:2001 +msgid "" +"A supported webserver was not found to automatically configure. This package " +"can only automatically configure apache webservers to use the program. If " +"you are using a different webserver, you will need to point it to the smbind " +"files in /usr/share/smbind/php (see the webserver config files in /etc/" +"smbind/apache.conf for examples) and possibly restart the webserver during " +"installation, and then remove the configuration when removing the package." +msgstr "" +"Não foi encontrado um servidor web suportado para configurar " +"automaticamente. Este pacote apenas pode configurar automaticamente " +"servidores web apache para usarem o programa. Se está a usar um servidor web " +"diferente, você precisa indicá-lo nos ficheiros do smbind em /usr/share/" +"smbind/php (veja os ficheiros de configuração de servidor web em /etc/smbind/" +"apache.conf para obter exemplos) e possivelmente reiniciar o servidor web " +"durante a instalação, e depois remover a configuração quando remover este " +"pacote." --- smbind-0.4.7.orig/debian/po/POTFILES.in +++ smbind-0.4.7/debian/po/POTFILES.in @@ -0,0 +1 @@ +[type: gettext/rfc822deb] templates --- smbind-0.4.7.orig/debian/po/es.po +++ smbind-0.4.7/debian/po/es.po @@ -0,0 +1,78 @@ +# smbind translation to spanish +# Copyright (C) 2008 Software in the Public Interest +# This file is distributed under the same license as the smbind package. +# Changes: +# - Initial translation +# Ignacio Mondino , 2008 +# Traductores, si no conoce 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: smbind 0.4.7-2\n" +"Report-Msgid-Bugs-To: giuseppe@iuculano.it\n" +"POT-Creation-Date: 2008-06-10 15:17+0200\n" +"PO-Revision-Date: 2008-10-11 19:18-0300\n" +"Last-Translator: Ignacio Mondino \n" +"Language-Team: Debian Spanish team \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: \n" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "Should ${webserver} be restarted?" +msgstr "¿Desea reiniciar ${webserver}?" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "" +"Remember that in order to activate the new configuration ${webserver} has to " +"be restarted. You can also restart ${webserver} by manually executing invoke-" +"rc.d ${webserver} restart." +msgstr "" +"Recuerde que para activar la nueva configuración debe reiniciar " +"${webserver}. También puede reiniciar ${webserver} ejecutando manualmente " +"«invoke-rc.d ${webserver} restart»." + +#. Type: note +#. Description +#: ../templates:2001 +msgid "No supported webserver was found" +msgstr "No se ha encontrado ningún servidor web compatible." + +#. Type: note +#. Description +#: ../templates:2001 +msgid "" +"A supported webserver was not found to automatically configure. This package " +"can only automatically configure apache webservers to use the program. If " +"you are using a different webserver, you will need to point it to the smbind " +"files in /usr/share/smbind/php (see the webserver config files in /etc/" +"smbind/apache.conf for examples) and possibly restart the webserver during " +"installation, and then remove the configuration when removing the package." +msgstr "" +"No se ha encontrado un servidor web compatible para configurar " +"automáticamente. Este paquete sólo puede configurar automáticamente " +"servidores web apache para usar el programa. Si utiliza un servidor web " +"diferente, necesitará dirigirlo hacia los archivos pertenecientes a smbind " +"en «/etc/smbind/apache.conf» (vea los archivos de configuración en «/etc/" +"smbind/apache.conf» para más información) y posiblemente reiniciar el " +"servidor web durante la instalación, como así también remover la " +"configuración al eliminar el paquete." --- smbind-0.4.7.orig/debian/po/it.po +++ smbind-0.4.7/debian/po/it.po @@ -0,0 +1,61 @@ +# translation of smbind.po to italian +# Copyright (C) 2008 +# This file is distributed under the same license as the dmbind package. +# +# Giuseppe Iuculano , 2008. +msgid "" +msgstr "" +"Project-Id-Version: smbind\n" +"Report-Msgid-Bugs-To: giuseppe@iuculano.it\n" +"POT-Creation-Date: 2008-06-10 15:17+0200\n" +"PO-Revision-Date: 2008-07-07 12:41+0200\n" +"Last-Translator: Giuseppe Iuculano \n" +"Language-Team: Italian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: it\n" +"X-Generator: KBabel 1.11.4\n" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "Should ${webserver} be restarted?" +msgstr "Riavviare ${webserver}?" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "" +"Remember that in order to activate the new configuration ${webserver} has to " +"be restarted. You can also restart ${webserver} by manually executing invoke-" +"rc.d ${webserver} restart." +msgstr "" +"Per attivare la nuova configurazione è necessario riavviare ${webserver}. È " +"possibile anche riavviare ${webserver} manualmente usando \"invoke-rc.d " +"${webserver} restart\"." + +#. Type: note +#. Description +#: ../templates:2001 +msgid "No supported webserver was found" +msgstr "Non è stato trovato un server web supportato" + +#. Type: note +#. Description +#: ../templates:2001 +msgid "" +"A supported webserver was not found to automatically configure. This package " +"can only automatically configure apache webservers to use the program. If " +"you are using a different webserver, you will need to point it to the smbind " +"files in /usr/share/smbind/php (see the webserver config files in /etc/" +"smbind/apache.conf for examples) and possibly restart the webserver during " +"installation, and then remove the configuration when removing the package." +msgstr "" +"Non è stato trovato un server web per il quale sia supportata la " +"configurazione automatica. Questo pacchetto può configurare automaticamente " +"solo i server web apache; se si usa un server web diverso, è necessario " +"fargli puntare i file di smbind in /usr/share/smbind/php (si veda come " +"esempio i file di configurazione del server web in /etc/smbind/apache.conf) " +"e, se possibile, riavviare il server web durante l'installazione e rimuovere " +"tale configurazione alla rimozione del pacchetto." --- smbind-0.4.7.orig/debian/po/cs.po +++ smbind-0.4.7/debian/po/cs.po @@ -0,0 +1,60 @@ +# Czech translation of smbind debconf messages. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the smbind package. +# Miroslav Kure , 2008 +# +msgid "" +msgstr "" +"Project-Id-Version: smbind\n" +"Report-Msgid-Bugs-To: giuseppe@iuculano.it\n" +"POT-Creation-Date: 2008-06-10 15:17+0200\n" +"PO-Revision-Date: 2008-06-28 12:21+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" +"Language: cs\n" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "Should ${webserver} be restarted?" +msgstr "Má se ${webserver} restartovat?" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "" +"Remember that in order to activate the new configuration ${webserver} has to " +"be restarted. You can also restart ${webserver} by manually executing invoke-" +"rc.d ${webserver} restart." +msgstr "" +"Aby se nové nastavení aktivovalo, musí se ${webserver} restartovat. " +"${webserver} také můžete restartovat ručně příkazem invoke-rc.d ${webserver} " +"restart." + +#. Type: note +#. Description +#: ../templates:2001 +msgid "No supported webserver was found" +msgstr "Podporovaný webový server nenalezen" + +#. Type: note +#. Description +#: ../templates:2001 +msgid "" +"A supported webserver was not found to automatically configure. This package " +"can only automatically configure apache webservers to use the program. If " +"you are using a different webserver, you will need to point it to the smbind " +"files in /usr/share/smbind/php (see the webserver config files in /etc/" +"smbind/apache.conf for examples) and possibly restart the webserver during " +"installation, and then remove the configuration when removing the package." +msgstr "" +"Nebyl nalezen žádný podporovaný webový server. Tento balík umí automaticky " +"nastavit pouze webové servery apache. Používáte-li jiný webový server, " +"budete jej muset ručně odkázat na soubory smbindu v adresáři /usr/share/" +"smbind/php (příklady konfigurace naleznete v /etc/smbind/apache.conf) a poté " +"jej nejspíš restartovat. A pokud se později rozhodnete torrentflux " +"odstranit, budete muset vrátit konfiguraci webového serveru do původního " +"stavu ručně." --- smbind-0.4.7.orig/debian/po/templates.pot +++ smbind-0.4.7/debian/po/templates.pot @@ -0,0 +1,50 @@ +# 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: giuseppe@iuculano.it\n" +"POT-Creation-Date: 2008-06-10 15:17+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 +#: ../templates:1001 +msgid "Should ${webserver} be restarted?" +msgstr "" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "" +"Remember that in order to activate the new configuration ${webserver} has to " +"be restarted. You can also restart ${webserver} by manually executing invoke-" +"rc.d ${webserver} restart." +msgstr "" + +#. Type: note +#. Description +#: ../templates:2001 +msgid "No supported webserver was found" +msgstr "" + +#. Type: note +#. Description +#: ../templates:2001 +msgid "" +"A supported webserver was not found to automatically configure. This package " +"can only automatically configure apache webservers to use the program. If " +"you are using a different webserver, you will need to point it to the smbind " +"files in /usr/share/smbind/php (see the webserver config files in /etc/" +"smbind/apache.conf for examples) and possibly restart the webserver during " +"installation, and then remove the configuration when removing the package." +msgstr "" --- smbind-0.4.7.orig/debian/po/sv.po +++ smbind-0.4.7/debian/po/sv.po @@ -0,0 +1,61 @@ +# translation of smbind.po to swedish +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Martin Bagge , 2008. +msgid "" +msgstr "" +"Project-Id-Version: smbind\n" +"Report-Msgid-Bugs-To: giuseppe@iuculano.it\n" +"POT-Creation-Date: 2008-06-10 15:17+0200\n" +"PO-Revision-Date: 2008-06-27 09:36+0200\n" +"Last-Translator: Martin Bagge \n" +"Language-Team: swedish \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: \n" +"X-Generator: KBabel 1.11.4\n" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "Should ${webserver} be restarted?" +msgstr "Vill du starta om ${webserver}?" + +#. Type: boolean +#. Description +#: ../templates:1001 +msgid "" +"Remember that in order to activate the new configuration ${webserver} has to " +"be restarted. You can also restart ${webserver} by manually executing invoke-" +"rc.d ${webserver} restart." +msgstr "" +"För att aktivera de nya inställningarna för ${webserver} så den startas om. " +"Du kan också starta om ${webserver} manuellt genom att köra 'invoke-rc.d " +"${webserver} restart'." + +#. Type: note +#. Description +#: ../templates:2001 +msgid "No supported webserver was found" +msgstr "Hittade ingen webbserver som paketet kan ställa in automatiskt." + +#. Type: note +#. Description +#: ../templates:2001 +msgid "" +"A supported webserver was not found to automatically configure. This package " +"can only automatically configure apache webservers to use the program. If " +"you are using a different webserver, you will need to point it to the smbind " +"files in /usr/share/smbind/php (see the webserver config files in /etc/" +"smbind/apache.conf for examples) and possibly restart the webserver during " +"installation, and then remove the configuration when removing the package." +msgstr "" +"Hittade ingen webbserver som paketet kan ställa in automatiskt. Detta " +"paketet kan bara göra inställningar för Apache. Om du använder en annan " +"webbserver så måste du ställa in den manuellt. Filerna för smbind finns i /" +"usr/share/smbind/php (jämför med inställningarna i /etc/smbind/apache). Du " +"måste förmodligen dessutom starta om webbservern för att de ska börja " +"gälla.\n" +"Om du tar bor det här paketet måste du ta bort inställningarna manuellt."