Control: tags -1 - moreinfo
> Jonathan Wiltshire:
>> This all looks reasonable except that if you want to use maintscript
>> helpers you need appropriate pre-depends on dpkg. I think
>> ${misc:Pre-Depends} is populated for you, but you should test that.
The change you requested is now in the pool.
Attached is the full diff against testing:
phamm_0.6.2-1.2_vs_phamm_0.6.2-1.diff
I'm also attaching a diff against previous submission, as I understand
you already did most of the review:
phamm_0.6.2-1.2_vs_phamm_0.6.2-1.1.diff
unblock phamm/0.6.2-1.2
Best regards,
--
Nirgal
diff -Nru phamm-0.6.2/debian/changelog phamm-0.6.2/debian/changelog
--- phamm-0.6.2/debian/changelog 2014-11-14 19:17:21.000000000 +0100
+++ phamm-0.6.2/debian/changelog 2014-12-04 01:24:31.000000000 +0100
@@ -1,3 +1,11 @@
+phamm (0.6.2-1.2) unstable; urgency=medium
+
+ * Non-maintainer upload.
+ * d/contol: Add Pre-Depends on dpkg >= 1.15.7.2 in phamm package to ensure
+ we are not using an obsolete dpkg with d/phamm.maintscript.
+
+ -- Jean-Michel Nirgal Vourgère <jmv_deb@nirgal.com> Thu, 04 Dec 2014 00:24:35 +0100
+
phamm (0.6.2-1.1) unstable; urgency=medium
* Non-maintainer upload.
diff -Nru phamm-0.6.2/debian/control phamm-0.6.2/debian/control
--- phamm-0.6.2/debian/control 2014-11-14 17:04:31.000000000 +0100
+++ phamm-0.6.2/debian/control 2014-12-04 01:22:58.000000000 +0100
@@ -9,6 +9,7 @@
Package: phamm
Architecture: all
+Pre-Depends: dpkg (>= 1.15.7.2)
Depends: php5, php5-ldap, debconf (>= 0.5) | debconf-2.0, ${shlibs:Depends}, ${misc:Depends}
Recommends: phamm-ldap, ${misc:Recommends}
Description: PHP front-end to manage virtual services on LDAP - main package
diff -Nru phamm-0.6.2/debian/changelog phamm-0.6.2/debian/changelog
--- phamm-0.6.2/debian/changelog 2014-07-15 08:04:53.000000000 +0200
+++ phamm-0.6.2/debian/changelog 2014-12-04 01:24:31.000000000 +0100
@@ -1,3 +1,25 @@
+phamm (0.6.2-1.2) unstable; urgency=medium
+
+ * Non-maintainer upload.
+ * d/contol: Add Pre-Depends on dpkg >= 1.15.7.2 in phamm package to ensure
+ we are not using an obsolete dpkg with d/phamm.maintscript.
+
+ -- Jean-Michel Nirgal Vourgère <jmv_deb@nirgal.com> Thu, 04 Dec 2014 00:24:35 +0100
+
+phamm (0.6.2-1.1) unstable; urgency=medium
+
+ * Non-maintainer upload.
+ * Add support for apache2.4 (Closes: #669841):
+ - Move conffile from /etc/phamm/apache.conf to
+ /etc/apache2/conf-available/phamm.conf
+ - let dh_apache2 handle the conffile
+ - drop debconf entries reconfigure-webserver and restart-webserver: Only
+ apache2 is supported, and dh_apache2 causes automatic reload.
+ - Remove obsolete apache1 and apache2.2 conf.d/ links on upgrade.
+ * Added Dutch translation (Closes: #763643). Thanks Frans Spiesschaert.
+
+ -- Jean-Michel Nirgal Vourgère <jmv_deb@nirgal.com> Fri, 14 Nov 2014 16:15:52 +0100
+
phamm (0.6.2-1) unstable; urgency=low
* New upstream release (Closes: #750518)
diff -Nru phamm-0.6.2/debian/conf/apache.conf phamm-0.6.2/debian/conf/apache.conf
--- phamm-0.6.2/debian/conf/apache.conf 2014-07-15 07:38:41.000000000 +0200
+++ phamm-0.6.2/debian/conf/apache.conf 1970-01-01 01:00:00.000000000 +0100
@@ -1,48 +0,0 @@
-# Define /phamm alias, this is the default
-<IfModule mod_alias.c>
- Alias /phamm /usr/share/phamm/public
-</IfModule>
-
-# You can also use phpLDAPadmin as a VirtualHost
-# <VirtualHost *:*>
-# ServerName ldap.example.com
-# ServerAdmin root@example.com
-# DocumentRoot /usr/share/phamm
-# ErrorLog logs/ldap.example.com-error.log
-# CustomLog logs/ldap.example.com-access.log common
-# </VirtualHost>
-
-<Directory /usr/share/phamm/public/>
-
- DirectoryIndex index.php
- Options +FollowSymLinks
- AllowOverride None
-
- Order allow,deny
- Allow from all
-
- <IfModule mod_mime.c>
-
- <IfModule mod_php5.c>
- AddType application/x-httpd-php .php
-
- php_flag magic_quotes_gpc Off
- php_flag track_vars On
- php_flag register_globals Off
- php_value include_path .
- </IfModule>
-
- <IfModule !mod_php5.c>
- <IfModule mod_actions.c>
- <IfModule mod_cgi.c>
- AddType application/x-httpd-php .php
-
- Action application/x-httpd-php /cgi-bin/php5
- </IfModule>
- </IfModule>
- </IfModule>
-
- </IfModule>
-
-</Directory>
-
diff -Nru phamm-0.6.2/debian/conf/phamm.conf phamm-0.6.2/debian/conf/phamm.conf
--- phamm-0.6.2/debian/conf/phamm.conf 1970-01-01 01:00:00.000000000 +0100
+++ phamm-0.6.2/debian/conf/phamm.conf 2014-07-15 07:38:41.000000000 +0200
@@ -0,0 +1,48 @@
+# Define /phamm alias, this is the default
+<IfModule mod_alias.c>
+ Alias /phamm /usr/share/phamm/public
+</IfModule>
+
+# You can also use phpLDAPadmin as a VirtualHost
+# <VirtualHost *:*>
+# ServerName ldap.example.com
+# ServerAdmin root@example.com
+# DocumentRoot /usr/share/phamm
+# ErrorLog logs/ldap.example.com-error.log
+# CustomLog logs/ldap.example.com-access.log common
+# </VirtualHost>
+
+<Directory /usr/share/phamm/public/>
+
+ DirectoryIndex index.php
+ Options +FollowSymLinks
+ AllowOverride None
+
+ Order allow,deny
+ Allow from all
+
+ <IfModule mod_mime.c>
+
+ <IfModule mod_php5.c>
+ AddType application/x-httpd-php .php
+
+ php_flag magic_quotes_gpc Off
+ php_flag track_vars On
+ php_flag register_globals Off
+ php_value include_path .
+ </IfModule>
+
+ <IfModule !mod_php5.c>
+ <IfModule mod_actions.c>
+ <IfModule mod_cgi.c>
+ AddType application/x-httpd-php .php
+
+ Action application/x-httpd-php /cgi-bin/php5
+ </IfModule>
+ </IfModule>
+ </IfModule>
+
+ </IfModule>
+
+</Directory>
+
diff -Nru phamm-0.6.2/debian/control phamm-0.6.2/debian/control
--- phamm-0.6.2/debian/control 2014-07-15 08:05:01.000000000 +0200
+++ phamm-0.6.2/debian/control 2014-12-04 01:22:58.000000000 +0100
@@ -3,15 +3,15 @@
Priority: extra
Maintainer: Phamm Team <team@phamm.org>
Uploaders: Alessandro De Zorzi <lota@nonlontano.it>, Mirko Grava <ops@klez.it>
-Build-Depends: debhelper (>= 5), po-debconf, perl
+Build-Depends: debhelper (>= 5), po-debconf, perl, dh-apache2 | apache2-dev
Standards-Version: 3.9.5
Homepage: http://www.phamm.org
Package: phamm
Architecture: all
+Pre-Depends: dpkg (>= 1.15.7.2)
Depends: php5, php5-ldap, debconf (>= 0.5) | debconf-2.0, ${shlibs:Depends}, ${misc:Depends}
-Recommends: phamm-ldap
-Suggests: apache2
+Recommends: phamm-ldap, ${misc:Recommends}
Description: PHP front-end to manage virtual services on LDAP - main package
Phamm is a useful PHP front-end providing role-based administrative
access to virtual services using an LDAP back-end.
diff -Nru phamm-0.6.2/debian/phamm.apache2 phamm-0.6.2/debian/phamm.apache2
--- phamm-0.6.2/debian/phamm.apache2 1970-01-01 01:00:00.000000000 +0100
+++ phamm-0.6.2/debian/phamm.apache2 2014-11-14 16:31:32.000000000 +0100
@@ -0,0 +1 @@
+conf debian/conf/phamm.conf
diff -Nru phamm-0.6.2/debian/phamm.maintscript phamm-0.6.2/debian/phamm.maintscript
--- phamm-0.6.2/debian/phamm.maintscript 1970-01-01 01:00:00.000000000 +0100
+++ phamm-0.6.2/debian/phamm.maintscript 2014-12-04 00:34:52.000000000 +0100
@@ -0,0 +1 @@
+mv_conffile /etc/phamm/apache.conf /etc/apache2/conf-available/phamm.conf 0.6.2-1.1~
diff -Nru phamm-0.6.2/debian/phamm.postinst phamm-0.6.2/debian/phamm.postinst
--- phamm-0.6.2/debian/phamm.postinst 2010-03-29 15:50:59.000000000 +0200
+++ phamm-0.6.2/debian/phamm.postinst 2014-11-14 19:12:47.000000000 +0100
@@ -13,30 +13,36 @@
if [ "$1" = "configure" ]; then
+ if dpkg --compare-versions "$2" le-nl "0.6.2-1.1"; then
+ # remove links for obsolete versions of httpd
+ for webserver in apache apache-perl apache-ssl apache2; do
+ if [ -L /etc/$webserver/conf.d/phamm ]; then
+ rm /etc/$webserver/conf.d/phamm
+ fi
+ done
+
+ # Clean debconf registry of obsolete questions
+ db_unregister phamm/reconfigure-webserver || true
+ db_unregister phamm/restart-webserver || true
+ fi
+
if [ ! -f /var/log/phamm.log ]; then
touch /var/log/phamm.log
chown www-data:adm /var/log/phamm.log
chmod 640 /var/log/phamm.log
fi
- if [ ! -f $CONFFILE ]; then
- cp /usr/share/phamm/config.inc.example.php $CONFFILE
- chown -R root:www-data $CONFFILE
- chmod 0640 $CONFFILE
- if [ ! -e /usr/share/phamm/config.inc.php ]; then
- ln -s $CONFFILE /usr/share/phamm/config.inc.php
- fi
- else
- # Solve a non-link file in 0.5.9-*
- if [ ! -e /usr/share/phamm/config.inc.php ]; then
- ln -s $CONFFILE /usr/share/phamm/config.inc.php
- fi
- exit 0
+ if [ ! -f $CONFFILE ]; then
+ cp /usr/share/phamm/config.inc.example.php $CONFFILE
+ chown -R root:www-data $CONFFILE
+ chmod 0640 $CONFFILE
+ if [ ! -e /usr/share/phamm/config.inc.php ]; then
+ ln -s $CONFFILE /usr/share/phamm/config.inc.php
fi
db_get phamm/ldap-server || true
ldapserver="$RET"
- perl -i -p -e "s/\('LDAP_HOST_NAME','127.0.0.1'\)/\('LDAP_HOST_NAME','$ldapserver'\)/" $CONFFILE 2> /dev/null
+ perl -i -p -e "s/\('LDAP_HOST_NAME','127.0.0.1'\)/\('LDAP_HOST_NAME','$ldapserver'\)/" $CONFFILE 2> /dev/null
db_get phamm/ldap-tls || true
@@ -44,110 +50,38 @@
if [ "$tls" = "true" ]; then
perl -i -p -e "s/\('LDAP_HOST_NAME','/\('LDAP_HOST_NAME','ldaps:\/\//" $CONFFILE 2> /dev/null
perl -i -p -e "s/\('LDAP_PORT','389'\)/\('LDAP_PORT','636'\)/" $CONFFILE 2> /dev/null
-
+
fi
db_get phamm/ldap-basedn || true
basedn="$RET"
- perl -i -p -e "s/\('SUFFIX','dc=example,dc=tld'\)/\('SUFFIX','$basedn'\)/" $CONFFILE 2> /dev/null
+ perl -i -p -e "s/\('SUFFIX','dc=example,dc=tld'\)/\('SUFFIX','$basedn'\)/" $CONFFILE 2> /dev/null
db_get phamm/ldap-binddn || true
binddn="$RET"
perl -i -p -e "s/\('BINDDN','cn=admin,dc=example,dc=tld'\)/\('BINDDN','$binddn'\)/" $CONFFILE 2> /dev/null
-
+
perl -i -p -e "s/\('LDAP_BASE','o=hosting,dc=example,dc=tld'\)/\('LDAP_BASE','o=hosting,$basedn'\)/" $CONFFILE 2> /dev/null
-
+
perl -i -p -e "s/\('PHAMM_LOG',0\)/\('PHAMM_LOG',1\)/" $CONFFILE 2> /dev/null
+ else
+ # Solve a non-link file in 0.5.9-*
+ if [ ! -e /usr/share/phamm/config.inc.php ]; then
+ ln -s $CONFFILE /usr/share/phamm/config.inc.php
+ fi
+ fi
- # Autoconfiguration for apache*
- db_get phamm/reconfigure-webserver || true
- webservers="$RET"
- restart=""
-
- for webserver in $webservers; do
- webserver=${webserver%,}
- test -x /usr/sbin/$webserver || continue
-
- case "$webserver" in
- apache|apache-perl|apache-ssl)
- if [ -x /usr/sbin/modules-config ]; then
- if [ -f /usr/lib/apache/1.3/libphp5.so ]; then
- if ! grep "^LoadModule php5_module " /etc/$webserver/modules.conf > /dev/null 2>&1; then
- modules-config $webserver enable mod_php5
- fi
- elif [ -f /usr/lib/apache/1.3/libphp4.so ]; then
- if ! grep "^LoadModule php4_module " /etc/$webserver/modules.conf > /dev/null 2>&1; then
- modules-config $webserver enable mod_php4
- fi
- else
- if [ -f /usr/lib/apache/1.3/mod_actions.so ]; then
- if ! grep "^LoadModule action_module " /etc/$webserver/modules.conf > /dev/null 2>&1; then
- modules-config $webserver enable mod_actions
- fi
- fi
- if [ -f /usr/lib/apache/1.3/mod_cgi.so ]; then
- if ! grep "^LoadModule cgi_module " /etc/$webserver/modules.conf > /dev/null 2>&1; then
- modules-config $webserver enable mod_cgi
- fi
- fi
- fi
- fi
- if grep "^Include /etc/phamm/apache.conf" /etc/$webserver/httpd.conf > /dev/null 2>&1; then
- mv -f /etc/$webserver/httpd.conf /etc/$webserver/httpd.conf.old.phamm
- grep -v "^Include /etc/phamm/apache.conf" /etc/$webserver/httpd.conf.old.phamm \
- > /etc/$webserver/httpd.conf
- fi
- if ! grep "^Include /etc/$webserver/conf.d" /etc/$webserver/httpd.conf > /dev/null 2>&1; then
- cp -f /etc/$webserver/httpd.conf /etc/$webserver/httpd.conf.old.phamm
- echo "Include /etc/$webserver/conf.d" >> /etc/$webserver/httpd.conf
- fi
- if [ -f /etc/$webserver/httpd.conf.old.phamm ] && [ ! -f /etc/$webserver/httpd.conf.old ]; then
- mv -f /etc/$webserver/httpd.conf.old.phamm /etc/$webserver/httpd.conf.old
- fi
- mkdir -p /etc/$webserver/conf.d
- ;;
- apache2)
- if [ -d /etc/$webserver/mods-enabled ]; then
- if [ ! -f /etc/$webserver/mods-enabled/actions.load ] && [ ! -h /etc/$webserver/mods-enabled/actions.load ]; then
- ln -s /etc/$webserver/mods-available/actions.load /etc/$webserver/mods-enabled/actions.load
- fi
- if [ -f /etc/apache2/mods-available/php5.load ]; then
- if [ ! -f /etc/$webserver/mods-enabled/php5.load ] && [ ! -h /etc/$webserver/mods-enabled/php5.load ]; then
- ln -s /etc/$webserver/mods-available/php5.load /etc/$webserver/mods-enabled/php5.load
- fi
- elif [ -f /etc/apache2/mods-available/php4.load ]; then
- if [ ! -f /etc/$webserver/mods-enabled/php4.load ] && [ ! -h /etc/$webserver/mods-enabled/php4.load ]; then
- ln -s /etc/$webserver/mods-available/php4.load /etc/$webserver/mods-enabled/php4.load
- fi
- else
- if [ ! -f /etc/$webserver/mods-enabled/cgi.load ] && [ ! -h /etc/$webserver/mods-enabled/cgi.load ]; then
- ln -s /etc/$webserver/mods-available/cgi.load /etc/$webserver/mods-enabled/cgi.load
- fi
- fi
- fi
- ;;
- esac
-
- if [ ! -f /etc/$webserver/conf.d/phamm ] && [ ! -h /etc/$webserver/conf.d/phamm ]; then
- ln -s /etc/phamm/apache.conf /etc/$webserver/conf.d/phamm
- restart="$restart $webserver"
- fi
- done
-
- db_get phamm/restart-webserver || true
- res="$RET"
- db_stop || true
- if [ "$res" = "true" ]; then
- for webserver in $restart; do
- webserver=${webserver%,}
- if [ -x /usr/sbin/invoke-rc.d ]; then
- invoke-rc.d $webserver restart
- else
- /etc/init.d/$webserver restart
- fi
- done
+
+ # Configuration for apache2
+ if [ -e /usr/share/apache2/apache2-maintscript-helper ] ; then
+ . /usr/share/apache2/apache2-maintscript-helper
+ if ! a2query -qm actions ; then
+ apache2_invoke enmod actions
+ fi
+ if ! a2query -qm cgi ; then
+ apache2_invoke enmod cgi
+ fi
fi
-
fi
#DEBHELPER#
diff -Nru phamm-0.6.2/debian/phamm.postrm phamm-0.6.2/debian/phamm.postrm
--- phamm-0.6.2/debian/phamm.postrm 2008-07-26 12:32:26.000000000 +0200
+++ phamm-0.6.2/debian/phamm.postrm 2014-11-14 17:35:09.000000000 +0100
@@ -5,42 +5,7 @@
case "$1" in
remove)
- . /usr/share/debconf/confmodule
- db_version 2.0 || [ $? -lt 30 ]
-
- rm -f /usr/share/phamm/config.inc.php
-
- db_get phamm/reconfigure-webserver
- webservers="$RET"
- restart=""
-
- for webserver in $webservers; do
- webserver=${webserver%,}
-
- case "$webserver" in
- apache|apache-perl|apache-ssl|apache2)
- rm -f /etc/$webserver/conf.d/phamm
- test -x /usr/sbin/$webserver || continue
- restart="$restart $webserver"
- ;;
- *)
- ;;
- esac
- done
-
- db_get phamm/restart-webserver
- res="$RET"
- db_stop || true
- if [ "$res" = "true" ]; then
- for webserver in $restart; do
- webserver=${webserver%,}
- if [ -x /usr/sbin/invoke-rc.d ]; then
- invoke-rc.d $webserver restart
- else
- /etc/init.d/$webserver restart
- fi
- done
- fi
+ rm -f /usr/share/phamm/config.inc.php
;;
purge)
diff -Nru phamm-0.6.2/debian/phamm.templates phamm-0.6.2/debian/phamm.templates
--- phamm-0.6.2/debian/phamm.templates 2008-07-26 12:32:27.000000000 +0200
+++ phamm-0.6.2/debian/phamm.templates 2014-11-14 16:33:29.000000000 +0100
@@ -30,17 +30,3 @@
to log in to the LDAP server. If you use form-based authentication
this will be the default login DN. In this case leaving it empty will
prevent the creation of a default login DN.
-
-Template: phamm/reconfigure-webserver
-Type: multiselect
-Choices: apache, apache-ssl, apache-perl, apache2
-Default: apache, apache-ssl, apache-perl, apache2
-_Description: Web server to reconfigure automatically:
- Phamm supports any web server that PHP does, but this automatic
- configuration process only supports Apache.
-
-Template: phamm/restart-webserver
-Type: boolean
-Default: true
-_Description: Restart the webserver(s)?
- In order to apply the changes, the webserver(s) must be restarted.
diff -Nru phamm-0.6.2/debian/po/cs.po phamm-0.6.2/debian/po/cs.po
--- phamm-0.6.2/debian/po/cs.po 2010-11-14 10:30:02.000000000 +0100
+++ phamm-0.6.2/debian/po/cs.po 2014-11-14 16:58:42.000000000 +0100
@@ -7,7 +7,7 @@
msgstr ""
"Project-Id-Version: phamm\n"
"Report-Msgid-Bugs-To: phamm@packages.debian.org\n"
-"POT-Creation-Date: 2010-11-14 10:30+0100\n"
+"POT-Creation-Date: 2014-11-14 16:58+0100\n"
"PO-Revision-Date: 2008-07-26 17:38+0200\n"
"Last-Translator: Miroslav Kure <kurem@debian.cz>\n"
"Language-Team: Czech <debian-l10n-czech@lists.debian.org>\n"
@@ -71,34 +71,6 @@
"pÅ?ihlaÅ¡ovacà DN. Jestliže ponecháte prázdné, výchozà pÅ?ihlaÅ¡ovacà DN se "
"nevytvoÅ?Ã."
-#. Type: multiselect
-#. Description
-#: ../phamm.templates:5001
-msgid "Web server to reconfigure automatically:"
-msgstr "Webový server, který se má nastavit automaticky:"
-
-#. Type: multiselect
-#. Description
-#: ../phamm.templates:5001
-msgid ""
-"Phamm supports any web server that PHP does, but this automatic "
-"configuration process only supports Apache."
-msgstr ""
-"Phamm podporuje stejné webové servery jako PHP, ovšem automatické nastavenà "
-"zvládá pouze s Apachem."
-
-#. Type: boolean
-#. Description
-#: ../phamm.templates:6001
-msgid "Restart the webserver(s)?"
-msgstr "Restartovat webový server?"
-
-#. Type: boolean
-#. Description
-#: ../phamm.templates:6001
-msgid "In order to apply the changes, the webserver(s) must be restarted."
-msgstr "Aby se zmÄ?ny provedly, musà se webový server (servery) restartovat."
-
#. Type: boolean
#. Description
#: ../phamm-ldap.templates:2001
@@ -134,6 +106,22 @@
"Zadejte prosÃm heslo pro uživatele â??phammâ??, které se použije pro pÅ?ipojenà k "
"LDAP serveru s omezenými oprávnÄ?nÃmi."
+#~ msgid "Web server to reconfigure automatically:"
+#~ msgstr "Webový server, který se má nastavit automaticky:"
+
+#~ msgid ""
+#~ "Phamm supports any web server that PHP does, but this automatic "
+#~ "configuration process only supports Apache."
+#~ msgstr ""
+#~ "Phamm podporuje stejné webové servery jako PHP, ovšem automatické "
+#~ "nastavenà zvládá pouze s Apachem."
+
+#~ msgid "Restart the webserver(s)?"
+#~ msgstr "Restartovat webový server?"
+
+#~ msgid "In order to apply the changes, the webserver(s) must be restarted."
+#~ msgstr "Aby se zmÄ?ny provedly, musà se webový server (servery) restartovat."
+
#~| msgid "Restart the webserver(s)?"
#~ msgid "Restart the LDAP server?"
#~ msgstr "Restartovat LDAP server?"
diff -Nru phamm-0.6.2/debian/po/de.po phamm-0.6.2/debian/po/de.po
--- phamm-0.6.2/debian/po/de.po 2010-11-14 10:30:02.000000000 +0100
+++ phamm-0.6.2/debian/po/de.po 2014-11-14 16:58:42.000000000 +0100
@@ -7,7 +7,7 @@
msgstr ""
"Project-Id-Version: phamm\n"
"Report-Msgid-Bugs-To: phamm@packages.debian.org\n"
-"POT-Creation-Date: 2010-11-14 10:30+0100\n"
+"POT-Creation-Date: 2014-11-14 16:58+0100\n"
"PO-Revision-Date: 2008-07-28 15:16+0200\n"
"Last-Translator: Tobias Quathamer <t.quathamer@gmx.net>\n"
"Language-Team: German <debian-l10n-german@lists.debian.org>\n"
@@ -73,36 +73,6 @@
"Authentisierung benutzen, wird dies der voreingestellte Anmelde-DN. Es wird "
"kein voreingestellter Anmelde-DN erstellt, wenn Sie dieses Feld leer lassen."
-#. Type: multiselect
-#. Description
-#: ../phamm.templates:5001
-msgid "Web server to reconfigure automatically:"
-msgstr "Webserver, der automatisch rekonfiguriert werden soll:"
-
-#. Type: multiselect
-#. Description
-#: ../phamm.templates:5001
-msgid ""
-"Phamm supports any web server that PHP does, but this automatic "
-"configuration process only supports Apache."
-msgstr ""
-"Phamm unterstützt jeden Webserver, der von PHP unterstützt wird, aber die "
-"automatische Konfiguration kann nur für Apache durchgeführt werden."
-
-#. Type: boolean
-#. Description
-#: ../phamm.templates:6001
-msgid "Restart the webserver(s)?"
-msgstr "Den/die Webserver neu starten?"
-
-#. Type: boolean
-#. Description
-#: ../phamm.templates:6001
-msgid "In order to apply the changes, the webserver(s) must be restarted."
-msgstr ""
-"Um die Ã?nderungen wirksam werden zu lassen, muss ein Neustart des/der "
-"Webserver(s) durchgeführt werden."
-
#. Type: boolean
#. Description
#: ../phamm-ldap.templates:2001
@@ -140,6 +110,24 @@
"Bitte geben Sie das Passwort für »phamm user« ein. Dies ist praktisch, um "
"eine Anmeldung mit eingeschränkten Rechten durchzuführen."
+#~ msgid "Web server to reconfigure automatically:"
+#~ msgstr "Webserver, der automatisch rekonfiguriert werden soll:"
+
+#~ msgid ""
+#~ "Phamm supports any web server that PHP does, but this automatic "
+#~ "configuration process only supports Apache."
+#~ msgstr ""
+#~ "Phamm unterstützt jeden Webserver, der von PHP unterstützt wird, aber die "
+#~ "automatische Konfiguration kann nur für Apache durchgeführt werden."
+
+#~ msgid "Restart the webserver(s)?"
+#~ msgstr "Den/die Webserver neu starten?"
+
+#~ msgid "In order to apply the changes, the webserver(s) must be restarted."
+#~ msgstr ""
+#~ "Um die Ã?nderungen wirksam werden zu lassen, muss ein Neustart des/der "
+#~ "Webserver(s) durchgeführt werden."
+
#~ msgid "Restart the LDAP server?"
#~ msgstr "Den LDAP-Server neu starten?"
diff -Nru phamm-0.6.2/debian/po/es.po phamm-0.6.2/debian/po/es.po
--- phamm-0.6.2/debian/po/es.po 2010-11-14 10:30:02.000000000 +0100
+++ phamm-0.6.2/debian/po/es.po 2014-11-14 16:58:42.000000000 +0100
@@ -31,7 +31,7 @@
msgstr ""
"Project-Id-Version: phamm 0.5.15-1\n"
"Report-Msgid-Bugs-To: phamm@packages.debian.org\n"
-"POT-Creation-Date: 2010-11-14 10:30+0100\n"
+"POT-Creation-Date: 2014-11-14 16:58+0100\n"
"PO-Revision-Date: 2010-01-19 16:30+0100\n"
"Last-Translator: Francisco Javier Cuadrado <fcocuadrado@gmail.com>\n"
"Language-Team: Debian l10n Spanish <debian-l10n-spanish@lists.debian.org>\n"
@@ -94,35 +94,6 @@
"será la identificación DN predeterminada. En ese caso dejar en blanco este "
"campo, evitará la creación de una identificación DN predeterminada."
-#. Type: multiselect
-#. Description
-#: ../phamm.templates:5001
-msgid "Web server to reconfigure automatically:"
-msgstr "Servidor web a reconfigurar automáticamente:"
-
-#. Type: multiselect
-#. Description
-#: ../phamm.templates:5001
-msgid ""
-"Phamm supports any web server that PHP does, but this automatic "
-"configuration process only supports Apache."
-msgstr ""
-"Phamm permite usar cualquier servidor web que pueda usar PHP, pero este "
-"proceso de configuración automática sólo se puede realizar sobre Apache."
-
-#. Type: boolean
-#. Description
-#: ../phamm.templates:6001
-msgid "Restart the webserver(s)?"
-msgstr "¿Desea reiniciar el/los servidor/es web?"
-
-#. Type: boolean
-#. Description
-#: ../phamm.templates:6001
-msgid "In order to apply the changes, the webserver(s) must be restarted."
-msgstr ""
-"Para poder aplicar los cambios, se debe/n reiniciar el/los servidor/es web."
-
#. Type: boolean
#. Description
#: ../phamm-ldap.templates:2001
@@ -160,6 +131,24 @@
"Introduzca la contraseña del «usuario phamm», es útil para enlazar con "
"privilegios limitados."
+#~ msgid "Web server to reconfigure automatically:"
+#~ msgstr "Servidor web a reconfigurar automáticamente:"
+
+#~ msgid ""
+#~ "Phamm supports any web server that PHP does, but this automatic "
+#~ "configuration process only supports Apache."
+#~ msgstr ""
+#~ "Phamm permite usar cualquier servidor web que pueda usar PHP, pero este "
+#~ "proceso de configuración automática sólo se puede realizar sobre Apache."
+
+#~ msgid "Restart the webserver(s)?"
+#~ msgstr "¿Desea reiniciar el/los servidor/es web?"
+
+#~ msgid "In order to apply the changes, the webserver(s) must be restarted."
+#~ msgstr ""
+#~ "Para poder aplicar los cambios, se debe/n reiniciar el/los servidor/es "
+#~ "web."
+
#~ msgid "Restart the LDAP server?"
#~ msgstr "¿Desea reiniciar el servidor de LDAP?"
diff -Nru phamm-0.6.2/debian/po/eu.po phamm-0.6.2/debian/po/eu.po
--- phamm-0.6.2/debian/po/eu.po 2010-11-14 10:30:02.000000000 +0100
+++ phamm-0.6.2/debian/po/eu.po 2014-11-14 16:58:42.000000000 +0100
@@ -7,7 +7,7 @@
msgstr ""
"Project-Id-Version: phamm_templates_eu\n"
"Report-Msgid-Bugs-To: phamm@packages.debian.org\n"
-"POT-Creation-Date: 2010-11-14 10:30+0100\n"
+"POT-Creation-Date: 2014-11-14 16:58+0100\n"
"PO-Revision-Date: 2008-11-04 22:09+0100\n"
"Last-Translator: Iñaki Larrañaga Murgoitio <dooteo@euskalgnu.org>\n"
"Language-Team: Euskara <debian-l10n-basque@lists.debian.org>\n"
@@ -71,34 +71,6 @@
"hau izango da saio-hasierako DN lehenetsia. Kasu honetan, hau hutsik utziz "
"gero saio-hasierako DN lehenetsia sortzea saihestuko da."
-#. Type: multiselect
-#. Description
-#: ../phamm.templates:5001
-msgid "Web server to reconfigure automatically:"
-msgstr "Automatikoki birkonfiguratzeko web zerbitzaria:"
-
-#. Type: multiselect
-#. Description
-#: ../phamm.templates:5001
-msgid ""
-"Phamm supports any web server that PHP does, but this automatic "
-"configuration process only supports Apache."
-msgstr ""
-"Phamm-ek PHPek onartzen dituen edozein web zerbitzari onartzen dituen arren, "
-"konfigurazio automatiko honek Apache soilik onartzen du."
-
-#. Type: boolean
-#. Description
-#: ../phamm.templates:6001
-msgid "Restart the webserver(s)?"
-msgstr "Web zerbitzaria(k) berrabiarazi?"
-
-#. Type: boolean
-#. Description
-#: ../phamm.templates:6001
-msgid "In order to apply the changes, the webserver(s) must be restarted."
-msgstr "Aldaketak aplikatzeko web zerbitzariak berrabiarazi egin behar dira."
-
#. Type: boolean
#. Description
#: ../phamm-ldap.templates:2001
@@ -134,6 +106,23 @@
"Sartu \"phamm erabiltzailearen\" pasahitza murriztutako pribilegioekin "
"esleitzeko."
+#~ msgid "Web server to reconfigure automatically:"
+#~ msgstr "Automatikoki birkonfiguratzeko web zerbitzaria:"
+
+#~ msgid ""
+#~ "Phamm supports any web server that PHP does, but this automatic "
+#~ "configuration process only supports Apache."
+#~ msgstr ""
+#~ "Phamm-ek PHPek onartzen dituen edozein web zerbitzari onartzen dituen "
+#~ "arren, konfigurazio automatiko honek Apache soilik onartzen du."
+
+#~ msgid "Restart the webserver(s)?"
+#~ msgstr "Web zerbitzaria(k) berrabiarazi?"
+
+#~ msgid "In order to apply the changes, the webserver(s) must be restarted."
+#~ msgstr ""
+#~ "Aldaketak aplikatzeko web zerbitzariak berrabiarazi egin behar dira."
+
#~ msgid "Restart the LDAP server?"
#~ msgstr "LDAP zerbitzaria berrabiarazi?"
diff -Nru phamm-0.6.2/debian/po/fi.po phamm-0.6.2/debian/po/fi.po
--- phamm-0.6.2/debian/po/fi.po 2010-11-14 10:30:02.000000000 +0100
+++ phamm-0.6.2/debian/po/fi.po 2014-11-14 16:58:42.000000000 +0100
@@ -2,7 +2,7 @@
msgstr ""
"Project-Id-Version: phamm\n"
"Report-Msgid-Bugs-To: phamm@packages.debian.org\n"
-"POT-Creation-Date: 2010-11-14 10:30+0100\n"
+"POT-Creation-Date: 2014-11-14 16:58+0100\n"
"PO-Revision-Date: 2008-07-26 22:09+0200\n"
"Last-Translator: Esko Arajärvi <edu@iki.fi>\n"
"Language-Team: Finnish <debian-l10n-finnish@lists.debian.org>\n"
@@ -67,35 +67,6 @@
"Tässä tapauksessa kentän jättäminen tyhjäksi estää oletuskirjautumis-DN:n "
"luonnin."
-#. Type: multiselect
-#. Description
-#: ../phamm.templates:5001
-msgid "Web server to reconfigure automatically:"
-msgstr "Verkkopalvelimet, joiden asetukset tehdään uudelleen automaattisesti:"
-
-#. Type: multiselect
-#. Description
-#: ../phamm.templates:5001
-msgid ""
-"Phamm supports any web server that PHP does, but this automatic "
-"configuration process only supports Apache."
-msgstr ""
-"Phamm tukee mitä tahansa verkkopalvelinta, joka tukee PHP:tä, mutta tämä "
-"automaattinen asetusprosessi tukee vain Apachea."
-
-#. Type: boolean
-#. Description
-#: ../phamm.templates:6001
-msgid "Restart the webserver(s)?"
-msgstr "Käynnistetäänkö verkkopalvelimet uudelleen?"
-
-#. Type: boolean
-#. Description
-#: ../phamm.templates:6001
-msgid "In order to apply the changes, the webserver(s) must be restarted."
-msgstr ""
-"Verkkopalvelimet täytyy käynnistää uudelleen muutosten käyttöönottamiseksi."
-
#. Type: boolean
#. Description
#: ../phamm-ldap.templates:2001
@@ -131,6 +102,25 @@
"Anna salasana phamm-tunnukselle, joka on kätevä yhdistämisiin rajoitetuilla "
"oikeuksilla."
+#~ msgid "Web server to reconfigure automatically:"
+#~ msgstr ""
+#~ "Verkkopalvelimet, joiden asetukset tehdään uudelleen automaattisesti:"
+
+#~ msgid ""
+#~ "Phamm supports any web server that PHP does, but this automatic "
+#~ "configuration process only supports Apache."
+#~ msgstr ""
+#~ "Phamm tukee mitä tahansa verkkopalvelinta, joka tukee PHP:tä, mutta tämä "
+#~ "automaattinen asetusprosessi tukee vain Apachea."
+
+#~ msgid "Restart the webserver(s)?"
+#~ msgstr "Käynnistetäänkö verkkopalvelimet uudelleen?"
+
+#~ msgid "In order to apply the changes, the webserver(s) must be restarted."
+#~ msgstr ""
+#~ "Verkkopalvelimet täytyy käynnistää uudelleen muutosten "
+#~ "käyttöönottamiseksi."
+
#~ msgid "Restart the LDAP server?"
#~ msgstr "Käynnistetäänkö LDAP-palvelin uudelleen?"
diff -Nru phamm-0.6.2/debian/po/fr.po phamm-0.6.2/debian/po/fr.po
--- phamm-0.6.2/debian/po/fr.po 2010-11-14 10:30:02.000000000 +0100
+++ phamm-0.6.2/debian/po/fr.po 2014-11-14 16:58:42.000000000 +0100
@@ -7,7 +7,7 @@
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: phamm@packages.debian.org\n"
-"POT-Creation-Date: 2010-11-14 10:30+0100\n"
+"POT-Creation-Date: 2014-11-14 16:58+0100\n"
"PO-Revision-Date: 2008-07-29 20:08+0200\n"
"Last-Translator: Christian Perrier <bubulle@debian.org>\n"
"Language-Team: French <debian-l10n-french@lists.debian.org>\n"
@@ -73,36 +73,6 @@
"défaut. Dans ce cas, le laisser vide permettra d'éviter la création d'un "
"identifiant de connexion par défaut."
-#. Type: multiselect
-#. Description
-#: ../phamm.templates:5001
-msgid "Web server to reconfigure automatically:"
-msgstr "Serveur web à reconfigurer automatiquement :"
-
-#. Type: multiselect
-#. Description
-#: ../phamm.templates:5001
-msgid ""
-"Phamm supports any web server that PHP does, but this automatic "
-"configuration process only supports Apache."
-msgstr ""
-"Phamm gère tous les serveurs web gérés par PHP, mais seul Apache peut être "
-"configuré automatiquement."
-
-#. Type: boolean
-#. Description
-#: ../phamm.templates:6001
-msgid "Restart the webserver(s)?"
-msgstr "Faut-il redémarrer le(s) serveur(s) web ?"
-
-#. Type: boolean
-#. Description
-#: ../phamm.templates:6001
-msgid "In order to apply the changes, the webserver(s) must be restarted."
-msgstr ""
-"Afin de prendre en compte les modifications, il est nécessaire de redémarrer "
-"le(s) serveur(s)."
-
#. Type: boolean
#. Description
#: ../phamm-ldap.templates:2001
@@ -140,6 +110,24 @@
"Veuillez indiquer le mot de passe à utiliser pour l'« utilisateur phamm », "
"utile pour des connexions LDAP avec privilèges limités."
+#~ msgid "Web server to reconfigure automatically:"
+#~ msgstr "Serveur web à reconfigurer automatiquement :"
+
+#~ msgid ""
+#~ "Phamm supports any web server that PHP does, but this automatic "
+#~ "configuration process only supports Apache."
+#~ msgstr ""
+#~ "Phamm gère tous les serveurs web gérés par PHP, mais seul Apache peut "
+#~ "être configuré automatiquement."
+
+#~ msgid "Restart the webserver(s)?"
+#~ msgstr "Faut-il redémarrer le(s) serveur(s) web ?"
+
+#~ msgid "In order to apply the changes, the webserver(s) must be restarted."
+#~ msgstr ""
+#~ "Afin de prendre en compte les modifications, il est nécessaire de "
+#~ "redémarrer le(s) serveur(s)."
+
#~| msgid "Restart the webserver(s)?"
#~ msgid "Restart the LDAP server?"
#~ msgstr "Faut-il redémarrer le serveur LDAP ?"
diff -Nru phamm-0.6.2/debian/po/gl.po phamm-0.6.2/debian/po/gl.po
--- phamm-0.6.2/debian/po/gl.po 2010-11-14 10:30:02.000000000 +0100
+++ phamm-0.6.2/debian/po/gl.po 2014-11-14 16:58:42.000000000 +0100
@@ -6,7 +6,7 @@
msgstr ""
"Project-Id-Version: phamm\n"
"Report-Msgid-Bugs-To: phamm@packages.debian.org\n"
-"POT-Creation-Date: 2010-11-14 10:30+0100\n"
+"POT-Creation-Date: 2014-11-14 16:58+0100\n"
"PO-Revision-Date: 2008-07-27 19:10+0100\n"
"Last-Translator: Jacobo Tarrio <jtarrio@debian.org>\n"
"Language-Team: Galician <proxecto@trasno.net>\n"
@@ -69,34 +69,6 @@
"DN de identificación por defecto. Neste caso, se o deixa baleiro hase "
"impedir a creación dun DN de identificación por defecto."
-#. Type: multiselect
-#. Description
-#: ../phamm.templates:5001
-msgid "Web server to reconfigure automatically:"
-msgstr "Servidor web a reconfigurar automaticamente:"
-
-#. Type: multiselect
-#. Description
-#: ../phamm.templates:5001
-msgid ""
-"Phamm supports any web server that PHP does, but this automatic "
-"configuration process only supports Apache."
-msgstr ""
-"Phamm soporta os mesmos servidores web que PHP, pero este proceso automático "
-"de configuración só soporta Apache."
-
-#. Type: boolean
-#. Description
-#: ../phamm.templates:6001
-msgid "Restart the webserver(s)?"
-msgstr "¿Reiniciar o(s) servidor(es) web?"
-
-#. Type: boolean
-#. Description
-#: ../phamm.templates:6001
-msgid "In order to apply the changes, the webserver(s) must be restarted."
-msgstr "Para aplicar os cambios hai que reiniciar o(s) servidor(es) web."
-
#. Type: boolean
#. Description
#: ../phamm-ldap.templates:2001
@@ -133,6 +105,22 @@
"Introduza o contrasinal do usuario phamm para se conectar con privilexios "
"limitados."
+#~ msgid "Web server to reconfigure automatically:"
+#~ msgstr "Servidor web a reconfigurar automaticamente:"
+
+#~ msgid ""
+#~ "Phamm supports any web server that PHP does, but this automatic "
+#~ "configuration process only supports Apache."
+#~ msgstr ""
+#~ "Phamm soporta os mesmos servidores web que PHP, pero este proceso "
+#~ "automático de configuración só soporta Apache."
+
+#~ msgid "Restart the webserver(s)?"
+#~ msgstr "¿Reiniciar o(s) servidor(es) web?"
+
+#~ msgid "In order to apply the changes, the webserver(s) must be restarted."
+#~ msgstr "Para aplicar os cambios hai que reiniciar o(s) servidor(es) web."
+
#~| msgid "Restart the webserver(s)?"
#~ msgid "Restart the LDAP server?"
#~ msgstr "¿Reiniciar o servidor LDAP?"
diff -Nru phamm-0.6.2/debian/po/it.po phamm-0.6.2/debian/po/it.po
--- phamm-0.6.2/debian/po/it.po 2010-11-14 10:30:02.000000000 +0100
+++ phamm-0.6.2/debian/po/it.po 2014-11-14 16:58:42.000000000 +0100
@@ -7,7 +7,7 @@
msgstr ""
"Project-Id-Version: phamm 0.5.12-1\n"
"Report-Msgid-Bugs-To: phamm@packages.debian.org\n"
-"POT-Creation-Date: 2010-11-14 10:30+0100\n"
+"POT-Creation-Date: 2014-11-14 16:58+0100\n"
"PO-Revision-Date: 2008-07-26 14:50+0200\n"
"Last-Translator: Alessandro De Zorzi <lota@nonlontano.it>\n"
"Language-Team: Italia <team@phamm.org>\n"
@@ -68,35 +68,6 @@
"Indicare il DN per dell'account di amministrazione che sarà utilizzato per "
"collegarsi al server LDAP."
-#. Type: multiselect
-#. Description
-#: ../phamm.templates:5001
-msgid "Web server to reconfigure automatically:"
-msgstr "Server web che saranno configurati automaticamente:"
-
-#. Type: multiselect
-#. Description
-#: ../phamm.templates:5001
-msgid ""
-"Phamm supports any web server that PHP does, but this automatic "
-"configuration process only supports Apache."
-msgstr ""
-"Phamm può funzionare con tutti i server web che supportano PHP ma la "
-"configurazione automatica tiene conto solo di Apache."
-
-#. Type: boolean
-#. Description
-#: ../phamm.templates:6001
-msgid "Restart the webserver(s)?"
-msgstr "Riavviare i server web?"
-
-#. Type: boolean
-#. Description
-#: ../phamm.templates:6001
-msgid "In order to apply the changes, the webserver(s) must be restarted."
-msgstr ""
-"Per rendere effettive le modifiche, il server web deve essere riavviato."
-
#. Type: boolean
#. Description
#: ../phamm-ldap.templates:2001
@@ -132,6 +103,23 @@
"Inserire la password per l'utente \"phamm user\" che potrà essere usato per "
"il bind con privilegi limitati."
+#~ msgid "Web server to reconfigure automatically:"
+#~ msgstr "Server web che saranno configurati automaticamente:"
+
+#~ msgid ""
+#~ "Phamm supports any web server that PHP does, but this automatic "
+#~ "configuration process only supports Apache."
+#~ msgstr ""
+#~ "Phamm può funzionare con tutti i server web che supportano PHP ma la "
+#~ "configurazione automatica tiene conto solo di Apache."
+
+#~ msgid "Restart the webserver(s)?"
+#~ msgstr "Riavviare i server web?"
+
+#~ msgid "In order to apply the changes, the webserver(s) must be restarted."
+#~ msgstr ""
+#~ "Per rendere effettive le modifiche, il server web deve essere riavviato."
+
#~ msgid "Restart the LDAP server?"
#~ msgstr "Rivviare il server LDAP?"
diff -Nru phamm-0.6.2/debian/po/ja.po phamm-0.6.2/debian/po/ja.po
--- phamm-0.6.2/debian/po/ja.po 2010-11-14 10:30:02.000000000 +0100
+++ phamm-0.6.2/debian/po/ja.po 2014-11-14 16:58:42.000000000 +0100
@@ -6,7 +6,7 @@
msgstr ""
"Project-Id-Version: phamm 0.5.15-1\n"
"Report-Msgid-Bugs-To: phamm@packages.debian.org\n"
-"POT-Creation-Date: 2010-11-14 10:30+0100\n"
+"POT-Creation-Date: 2014-11-14 16:58+0100\n"
"PO-Revision-Date: 2009-11-06 06:26+0900\n"
"Last-Translator: Hideki Yamane (Debian-JP) <henrich@debian.or.jp>\n"
"Language-Team: Japanese <debian-japanese@lists.debian.org>\n"
@@ -68,34 +68,6 @@
"ã??ã?¼ã?¹èª?証ã??使ã??å ´å??ã?¯ã??ã??ã??ã??ã??ã??ã?©ã?«ã??ã?®ã?ã?°ã?¤ã?³ DN ã?«ã?ªã??ã?¾ã??ã??空ã?®ã?¾ã?¾ã?«"
"ã??ã?¦ã??ã??ã??å ´å??ã?¯ã??ã??ã??ã?©ã?«ã??ã?®ã?ã?°ã?¤ã?³ DN ã?®ä½?æ??ã??è¡?ã??ã?¾ã??ã??ã??"
-#. Type: multiselect
-#. Description
-#: ../phamm.templates:5001
-msgid "Web server to reconfigure automatically:"
-msgstr "è?ªå??ç??ã?«å??è¨å®?ã??ã??ã?¦ã?§ã??ã?µã?¼ã??:"
-
-#. Type: multiselect
-#. Description
-#: ../phamm.templates:5001
-msgid ""
-"Phamm supports any web server that PHP does, but this automatic "
-"configuration process only supports Apache."
-msgstr ""
-"Phamm ã?¯ PHP ã??å??ä½?ã??ã??ã?¦ã?§ã??ã?µã?¼ã??ã?§ã??ã??ã?°ã?µã??ã?¼ã??ã??ã?¾ã??ã??ã??ã??ã?®è?ªå??è¨å®?ã?¯ "
-"Apache ã?®ã?¿ã??ã?µã??ã?¼ã??ã??ã?¦ã??ã?¾ã??ã??"
-
-#. Type: boolean
-#. Description
-#: ../phamm.templates:6001
-msgid "Restart the webserver(s)?"
-msgstr "ã?¦ã?§ã??ã?µã?¼ã??ã??å??èµ·å??ã??ã?¾ã??ã???"
-
-#. Type: boolean
-#. Description
-#: ../phamm.templates:6001
-msgid "In order to apply the changes, the webserver(s) must be restarted."
-msgstr "å¤?æ?´ã??å??æ? ã??ã??ã?«ã?¯ã?¦ã?§ã??ã?µã?¼ã??ã??å??èµ·å??ã??ã??å¿?è¦?ã??ã??ã??ã?¾ã??ã??"
-
#. Type: boolean
#. Description
#: ../phamm-ldap.templates:2001
@@ -131,6 +103,22 @@
"é??å®?ã??ã??ã??権é??ã??ä»?ä¸?ã??ã??ã?®ã?«ä¾¿å?©ã?ªã??phamm userã??ã?®ã??ã?¹ã?¯ã?¼ã??ã??å?¥å??ã??ã?¦ã??ã? ã??"
"ã??ã??"
+#~ msgid "Web server to reconfigure automatically:"
+#~ msgstr "è?ªå??ç??ã?«å??è¨å®?ã??ã??ã?¦ã?§ã??ã?µã?¼ã??:"
+
+#~ msgid ""
+#~ "Phamm supports any web server that PHP does, but this automatic "
+#~ "configuration process only supports Apache."
+#~ msgstr ""
+#~ "Phamm ã?¯ PHP ã??å??ä½?ã??ã??ã?¦ã?§ã??ã?µã?¼ã??ã?§ã??ã??ã?°ã?µã??ã?¼ã??ã??ã?¾ã??ã??ã??ã??ã?®è?ªå??è¨å®?"
+#~ "ã?¯ Apache ã?®ã?¿ã??ã?µã??ã?¼ã??ã??ã?¦ã??ã?¾ã??ã??"
+
+#~ msgid "Restart the webserver(s)?"
+#~ msgstr "ã?¦ã?§ã??ã?µã?¼ã??ã??å??èµ·å??ã??ã?¾ã??ã???"
+
+#~ msgid "In order to apply the changes, the webserver(s) must be restarted."
+#~ msgstr "å¤?æ?´ã??å??æ? ã??ã??ã?«ã?¯ã?¦ã?§ã??ã?µã?¼ã??ã??å??èµ·å??ã??ã??å¿?è¦?ã??ã??ã??ã?¾ã??ã??"
+
#~ msgid "Restart the LDAP server?"
#~ msgstr "LDAP ã?µã?¼ã??ã??å??èµ·å??ã??ã?¾ã??ã???"
diff -Nru phamm-0.6.2/debian/po/nb.po phamm-0.6.2/debian/po/nb.po
--- phamm-0.6.2/debian/po/nb.po 2010-11-14 10:30:02.000000000 +0100
+++ phamm-0.6.2/debian/po/nb.po 2014-11-14 16:58:42.000000000 +0100
@@ -7,7 +7,7 @@
msgstr ""
"Project-Id-Version: templates.pot_[E2rD1b]\n"
"Report-Msgid-Bugs-To: phamm@packages.debian.org\n"
-"POT-Creation-Date: 2010-11-14 10:30+0100\n"
+"POT-Creation-Date: 2014-11-14 16:58+0100\n"
"PO-Revision-Date: 2008-01-27 12:27+0100\n"
"Last-Translator: Bjørn Steensrud <bjornst@skogkatt.homelinux.org>\n"
"Language-Team: Norwegian Bokmål <i18n-nb@lister.ping.uio.no>\n"
@@ -71,35 +71,6 @@
"login DN. I dette tilfelle kan det ikke lages et standard login DN hvis "
"denne feltet står tomt."
-#. Type: multiselect
-#. Description
-#: ../phamm.templates:5001
-msgid "Web server to reconfigure automatically:"
-msgstr "Nett-tjener som skal få oppsettet oppdatert automatisk:"
-
-#. Type: multiselect
-#. Description
-#: ../phamm.templates:5001
-msgid ""
-"Phamm supports any web server that PHP does, but this automatic "
-"configuration process only supports Apache."
-msgstr ""
-"Phamm støtter alle nett-tjenere som PHP støtter, men denne automatiske "
-"oppsettsprosessen støtter bare Apache."
-
-#. Type: boolean
-#. Description
-#: ../phamm.templates:6001
-msgid "Restart the webserver(s)?"
-msgstr "Skal nett-tjeneren/tjenerne startes på nyt?"
-
-#. Type: boolean
-#. Description
-#: ../phamm.templates:6001
-msgid "In order to apply the changes, the webserver(s) must be restarted."
-msgstr ""
-"For at endringene skal få virkning må nett-tjeneren/tjenerne startes på nytt."
-
#. Type: boolean
#. Description
#: ../phamm-ldap.templates:2001
@@ -138,6 +109,24 @@
"privileges."
msgstr "Oppgi passordet som vil bli brukt til å logge inn på LDAP-tjeneren."
+#~ msgid "Web server to reconfigure automatically:"
+#~ msgstr "Nett-tjener som skal få oppsettet oppdatert automatisk:"
+
+#~ msgid ""
+#~ "Phamm supports any web server that PHP does, but this automatic "
+#~ "configuration process only supports Apache."
+#~ msgstr ""
+#~ "Phamm støtter alle nett-tjenere som PHP støtter, men denne automatiske "
+#~ "oppsettsprosessen støtter bare Apache."
+
+#~ msgid "Restart the webserver(s)?"
+#~ msgstr "Skal nett-tjeneren/tjenerne startes på nyt?"
+
+#~ msgid "In order to apply the changes, the webserver(s) must be restarted."
+#~ msgstr ""
+#~ "For at endringene skal få virkning må nett-tjeneren/tjenerne startes på "
+#~ "nytt."
+
#, fuzzy
#~| msgid "Restart the webserver(s)?"
#~ msgid "Restart the LDAP server?"
diff -Nru phamm-0.6.2/debian/po/nl.po phamm-0.6.2/debian/po/nl.po
--- phamm-0.6.2/debian/po/nl.po 2010-11-14 10:30:02.000000000 +0100
+++ phamm-0.6.2/debian/po/nl.po 2014-11-14 16:58:42.000000000 +0100
@@ -7,7 +7,7 @@
msgstr ""
"Project-Id-Version: phamm\n"
"Report-Msgid-Bugs-To: phamm@packages.debian.org\n"
-"POT-Creation-Date: 2010-11-14 10:30+0100\n"
+"POT-Creation-Date: 2014-11-14 16:58+0100\n"
"PO-Revision-Date: 2008-01-30 18:04+0100\n"
"Last-Translator: Bart Cornelis <cobaco@skolelinux.no>\n"
"Language-Team: debian-l10n-dutch <debian-l10n-dutch@lists.debian.org>\n"
@@ -71,35 +71,6 @@
"de standaard aanmeld-DN. Dit veld blanco laten zorgt er dan voor dat er geen "
"standaard aanmeld-DN aangemaakt wordt."
-#. Type: multiselect
-#. Description
-#: ../phamm.templates:5001
-msgid "Web server to reconfigure automatically:"
-msgstr "Automatisch te herconfigureren webserver:"
-
-#. Type: multiselect
-#. Description
-#: ../phamm.templates:5001
-msgid ""
-"Phamm supports any web server that PHP does, but this automatic "
-"configuration process only supports Apache."
-msgstr ""
-"Phamm ondersteunt elke webserver die PHP aan kan. Dit automatische "
-"configuratieproces daarentegen ondersteunt enkel Apache."
-
-#. Type: boolean
-#. Description
-#: ../phamm.templates:6001
-msgid "Restart the webserver(s)?"
-msgstr "Wilt u de webserver(s) herstarten?"
-
-#. Type: boolean
-#. Description
-#: ../phamm.templates:6001
-msgid "In order to apply the changes, the webserver(s) must be restarted."
-msgstr ""
-"Om de aanpassingen door te voeren dienen de webservers herstart te worden."
-
#. Type: boolean
#. Description
#: ../phamm-ldap.templates:2001
@@ -142,6 +113,23 @@
"Wat is het wachtwoord dat gebruikt zal worden om aan te melden bij de LDAP-"
"server?"
+#~ msgid "Web server to reconfigure automatically:"
+#~ msgstr "Automatisch te herconfigureren webserver:"
+
+#~ msgid ""
+#~ "Phamm supports any web server that PHP does, but this automatic "
+#~ "configuration process only supports Apache."
+#~ msgstr ""
+#~ "Phamm ondersteunt elke webserver die PHP aan kan. Dit automatische "
+#~ "configuratieproces daarentegen ondersteunt enkel Apache."
+
+#~ msgid "Restart the webserver(s)?"
+#~ msgstr "Wilt u de webserver(s) herstarten?"
+
+#~ msgid "In order to apply the changes, the webserver(s) must be restarted."
+#~ msgstr ""
+#~ "Om de aanpassingen door te voeren dienen de webservers herstart te worden."
+
#, fuzzy
#~| msgid "Restart the webserver(s)?"
#~ msgid "Restart the LDAP server?"
diff -Nru phamm-0.6.2/debian/po/pt.po phamm-0.6.2/debian/po/pt.po
--- phamm-0.6.2/debian/po/pt.po 2010-11-14 10:30:02.000000000 +0100
+++ phamm-0.6.2/debian/po/pt.po 2014-11-14 16:58:42.000000000 +0100
@@ -7,7 +7,7 @@
msgstr ""
"Project-Id-Version: phamm 0.5.12-2\n"
"Report-Msgid-Bugs-To: phamm@packages.debian.org\n"
-"POT-Creation-Date: 2010-11-14 10:30+0100\n"
+"POT-Creation-Date: 2014-11-14 16:58+0100\n"
"PO-Revision-Date: 2008-07-26 15:02+0100\n"
"Last-Translator: Américo Monteiro <a_monteiro@netcabo.pt>\n"
"Language-Team: Portuguese <traduz@debianpt.org>\n"
@@ -71,36 +71,6 @@
"formulários este será o login DN prédefinido. Neste caso, deixando-o vazio, "
"irá prevenir a criação dum login DN prédefinido."
-#. Type: multiselect
-#. Description
-#: ../phamm.templates:5001
-msgid "Web server to reconfigure automatically:"
-msgstr "Servidor Web a reconfigurar automaticamente:"
-
-#. Type: multiselect
-#. Description
-#: ../phamm.templates:5001
-msgid ""
-"Phamm supports any web server that PHP does, but this automatic "
-"configuration process only supports Apache."
-msgstr ""
-"O Phamm suporta qualquer servidor Web que o PHP suporte, mas este processo "
-"de configuração automático apenas suporta o Apache."
-
-#. Type: boolean
-#. Description
-#: ../phamm.templates:6001
-msgid "Restart the webserver(s)?"
-msgstr "Reiniciar o(s) servidor(es) Web?"
-
-#. Type: boolean
-#. Description
-#: ../phamm.templates:6001
-msgid "In order to apply the changes, the webserver(s) must be restarted."
-msgstr ""
-"Para se aplicar as alterações, o(s) servidor(es) Web precisam ser "
-"reiniciados."
-
#. Type: boolean
#. Description
#: ../phamm-ldap.templates:2001
@@ -138,6 +108,24 @@
"Por favor indique a palavra-chave para o \"utilizador de phamm\", útil para "
"ligações com privilégios limitados."
+#~ msgid "Web server to reconfigure automatically:"
+#~ msgstr "Servidor Web a reconfigurar automaticamente:"
+
+#~ msgid ""
+#~ "Phamm supports any web server that PHP does, but this automatic "
+#~ "configuration process only supports Apache."
+#~ msgstr ""
+#~ "O Phamm suporta qualquer servidor Web que o PHP suporte, mas este "
+#~ "processo de configuração automático apenas suporta o Apache."
+
+#~ msgid "Restart the webserver(s)?"
+#~ msgstr "Reiniciar o(s) servidor(es) Web?"
+
+#~ msgid "In order to apply the changes, the webserver(s) must be restarted."
+#~ msgstr ""
+#~ "Para se aplicar as alterações, o(s) servidor(es) Web precisam ser "
+#~ "reiniciados."
+
#~| msgid "Restart the webserver(s)?"
#~ msgid "Restart the LDAP server?"
#~ msgstr "Reiniciar o servidor LDAP?"
diff -Nru phamm-0.6.2/debian/po/ru.po phamm-0.6.2/debian/po/ru.po
--- phamm-0.6.2/debian/po/ru.po 2010-11-14 10:30:02.000000000 +0100
+++ phamm-0.6.2/debian/po/ru.po 2014-11-14 16:58:42.000000000 +0100
@@ -7,7 +7,7 @@
msgstr ""
"Project-Id-Version: ru\n"
"Report-Msgid-Bugs-To: phamm@packages.debian.org\n"
-"POT-Creation-Date: 2010-11-14 10:30+0100\n"
+"POT-Creation-Date: 2014-11-14 16:58+0100\n"
"PO-Revision-Date: 2008-08-27 21:25+0400\n"
"Last-Translator: Yuri Kozlov <kozlov.y@gmail.com>\n"
"Language-Team: Russian <debian-l10n-russian@lists.debian.org>\n"
@@ -73,34 +73,6 @@
"на Ñ?оÑ?ме, Ñ?о Ñ?Ñ?о бÑ?деÑ? Ñ?Ñ?Ñ?Ñ?наÑ? запиÑ?Ñ? DN длÑ? вÑ?ода по Ñ?молÑ?аниÑ?. Ð?Ñ?ли "
"оÑ?Ñ?авиÑ?Ñ? поле пÑ?Ñ?Ñ?Ñ?м, Ñ?о Ñ?Ñ?Ñ?Ñ?наÑ? запиÑ?Ñ? DN по Ñ?молÑ?аниÑ? Ñ?оздана не бÑ?деÑ?."
-#. Type: multiselect
-#. Description
-#: ../phamm.templates:5001
-msgid "Web server to reconfigure automatically:"
-msgstr "Ð?еб-Ñ?еÑ?веÑ? длÑ? авÑ?омаÑ?иÑ?еÑ?кой пеÑ?енаÑ?Ñ?Ñ?ойки:"
-
-#. Type: multiselect
-#. Description
-#: ../phamm.templates:5001
-msgid ""
-"Phamm supports any web server that PHP does, but this automatic "
-"configuration process only supports Apache."
-msgstr ""
-"Phamm Ñ?абоÑ?аеÑ? на лÑ?бом веб-Ñ?еÑ?веÑ?е, поддеÑ?живаÑ?Ñ?ем PHP, но авÑ?омаÑ?иÑ?еÑ?каÑ? "
-"наÑ?Ñ?Ñ?ойка возможна Ñ?олÑ?ко длÑ? Apache."
-
-#. Type: boolean
-#. Description
-#: ../phamm.templates:6001
-msgid "Restart the webserver(s)?"
-msgstr "Ð?еÑ?езапÑ?Ñ?Ñ?иÑ?Ñ? веб-Ñ?еÑ?веÑ?(Ñ?)?"
-
-#. Type: boolean
-#. Description
-#: ../phamm.templates:6001
-msgid "In order to apply the changes, the webserver(s) must be restarted."
-msgstr "ЧÑ?обÑ? акÑ?ивиÑ?оваÑ?Ñ? изменениÑ?, необÑ?одимо пеÑ?езапÑ?Ñ?Ñ?иÑ?Ñ? веб-Ñ?еÑ?веÑ?(Ñ?)."
-
#. Type: boolean
#. Description
#: ../phamm-ldap.templates:2001
@@ -136,6 +108,23 @@
"Ð?ведиÑ?е паÑ?олÑ? длÑ? \"полÑ?зоваÑ?елÑ? phamm\", коÑ?оÑ?Ñ?й бÑ?деÑ? иÑ?полÑ?зован длÑ? "
"вÑ?ода на Ñ?еÑ?веÑ? LDAP."
+#~ msgid "Web server to reconfigure automatically:"
+#~ msgstr "Ð?еб-Ñ?еÑ?веÑ? длÑ? авÑ?омаÑ?иÑ?еÑ?кой пеÑ?енаÑ?Ñ?Ñ?ойки:"
+
+#~ msgid ""
+#~ "Phamm supports any web server that PHP does, but this automatic "
+#~ "configuration process only supports Apache."
+#~ msgstr ""
+#~ "Phamm Ñ?абоÑ?аеÑ? на лÑ?бом веб-Ñ?еÑ?веÑ?е, поддеÑ?живаÑ?Ñ?ем PHP, но "
+#~ "авÑ?омаÑ?иÑ?еÑ?каÑ? наÑ?Ñ?Ñ?ойка возможна Ñ?олÑ?ко длÑ? Apache."
+
+#~ msgid "Restart the webserver(s)?"
+#~ msgstr "Ð?еÑ?езапÑ?Ñ?Ñ?иÑ?Ñ? веб-Ñ?еÑ?веÑ?(Ñ?)?"
+
+#~ msgid "In order to apply the changes, the webserver(s) must be restarted."
+#~ msgstr ""
+#~ "ЧÑ?обÑ? акÑ?ивиÑ?оваÑ?Ñ? изменениÑ?, необÑ?одимо пеÑ?езапÑ?Ñ?Ñ?иÑ?Ñ? веб-Ñ?еÑ?веÑ?(Ñ?)."
+
#~ msgid "Restart the LDAP server?"
#~ msgstr "Ð?еÑ?езапÑ?Ñ?Ñ?иÑ?Ñ? Ñ?еÑ?веÑ? LDAP?"
diff -Nru phamm-0.6.2/debian/po/sv.po phamm-0.6.2/debian/po/sv.po
--- phamm-0.6.2/debian/po/sv.po 2010-11-14 10:30:02.000000000 +0100
+++ phamm-0.6.2/debian/po/sv.po 2014-11-14 16:58:42.000000000 +0100
@@ -7,7 +7,7 @@
msgstr ""
"Project-Id-Version: phamm_0.5.9-2_templates\n"
"Report-Msgid-Bugs-To: phamm@packages.debian.org\n"
-"POT-Creation-Date: 2010-11-14 10:30+0100\n"
+"POT-Creation-Date: 2014-11-14 16:58+0100\n"
"PO-Revision-Date: 2008-07-27 23:17+0100\n"
"Last-Translator: Martin Bagge <brother@bsnet.se>\n"
"Language-Team: swedish <debian-l10n-swedish@lists.debian.org>\n"
@@ -74,35 +74,6 @@
"inloggning. I sådana fall bör du lämna fältet tomt för att förhindra "
"skapandet av ett standard DN för inloggning."
-#. Type: multiselect
-#. Description
-#: ../phamm.templates:5001
-msgid "Web server to reconfigure automatically:"
-msgstr "Webbserver att ställa in automatiskt:"
-
-#. Type: multiselect
-#. Description
-#: ../phamm.templates:5001
-msgid ""
-"Phamm supports any web server that PHP does, but this automatic "
-"configuration process only supports Apache."
-msgstr ""
-"Phamm stödjer alla webbservrar som PHP stödjer men kan bara ställa in Apache "
-"automatiskt."
-
-#. Type: boolean
-#. Description
-#: ../phamm.templates:6001
-msgid "Restart the webserver(s)?"
-msgstr "Starta om webserver/-rar"
-
-#. Type: boolean
-#. Description
-#: ../phamm.templates:6001
-msgid "In order to apply the changes, the webserver(s) must be restarted."
-msgstr ""
-"För att ändringarna ska träda i kraft måste webbservern/-rarna startas om."
-
#. Type: boolean
#. Description
#: ../phamm-ldap.templates:2001
@@ -138,6 +109,23 @@
"Ange lösenordet som \"phamm-användaren\" ska använda för att logga in i LDAP-"
"servern med begränsade rättigheter."
+#~ msgid "Web server to reconfigure automatically:"
+#~ msgstr "Webbserver att ställa in automatiskt:"
+
+#~ msgid ""
+#~ "Phamm supports any web server that PHP does, but this automatic "
+#~ "configuration process only supports Apache."
+#~ msgstr ""
+#~ "Phamm stödjer alla webbservrar som PHP stödjer men kan bara ställa in "
+#~ "Apache automatiskt."
+
+#~ msgid "Restart the webserver(s)?"
+#~ msgstr "Starta om webserver/-rar"
+
+#~ msgid "In order to apply the changes, the webserver(s) must be restarted."
+#~ msgstr ""
+#~ "För att ändringarna ska träda i kraft måste webbservern/-rarna startas om."
+
#~| msgid "Restart the webserver(s)?"
#~ msgid "Restart the LDAP server?"
#~ msgstr "Starta om LDAP-server?"
diff -Nru phamm-0.6.2/debian/po/templates.pot phamm-0.6.2/debian/po/templates.pot
--- phamm-0.6.2/debian/po/templates.pot 2010-11-14 10:30:02.000000000 +0100
+++ phamm-0.6.2/debian/po/templates.pot 2014-11-14 16:58:42.000000000 +0100
@@ -6,9 +6,9 @@
#, fuzzy
msgid ""
msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
+"Project-Id-Version: phamm\n"
"Report-Msgid-Bugs-To: phamm@packages.debian.org\n"
-"POT-Creation-Date: 2010-11-14 10:30+0100\n"
+"POT-Creation-Date: 2014-11-14 16:58+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -62,32 +62,6 @@
"a default login DN."
msgstr ""
-#. Type: multiselect
-#. Description
-#: ../phamm.templates:5001
-msgid "Web server to reconfigure automatically:"
-msgstr ""
-
-#. Type: multiselect
-#. Description
-#: ../phamm.templates:5001
-msgid ""
-"Phamm supports any web server that PHP does, but this automatic "
-"configuration process only supports Apache."
-msgstr ""
-
-#. Type: boolean
-#. Description
-#: ../phamm.templates:6001
-msgid "Restart the webserver(s)?"
-msgstr ""
-
-#. Type: boolean
-#. Description
-#: ../phamm.templates:6001
-msgid "In order to apply the changes, the webserver(s) must be restarted."
-msgstr ""
-
#. Type: boolean
#. Description
#: ../phamm-ldap.templates:2001
diff -Nru phamm-0.6.2/debian/po/vi.po phamm-0.6.2/debian/po/vi.po
--- phamm-0.6.2/debian/po/vi.po 2010-11-14 10:30:02.000000000 +0100
+++ phamm-0.6.2/debian/po/vi.po 2014-11-14 16:58:42.000000000 +0100
@@ -6,7 +6,7 @@
msgstr ""
"Project-Id-Version: phamm 0.5.12-3.1\n"
"Report-Msgid-Bugs-To: phamm@packages.debian.org\n"
-"POT-Creation-Date: 2010-11-14 10:30+0100\n"
+"POT-Creation-Date: 2014-11-14 16:58+0100\n"
"PO-Revision-Date: 2009-01-28 20:59+1030\n"
"Last-Translator: Clytie Siddall <clytie@riverland.net.au>\n"
"Language-Team: Vietnamese <vi-VN@googlegroups.com>\n"
@@ -71,35 +71,6 @@
"DN Ä?Ä?ng nháºp mặc Ä?á»?nh. Trong trưá»?ng hợp nà y, Ä?Æ¡n giản bá»? trá»?ng trưá»?ng nà y sẽ "
"ngÄ?n cản tạo má»?t DN Ä?Ä?ng nháºp mặc Ä?á»?nh."
-#. Type: multiselect
-#. Description
-#: ../phamm.templates:5001
-msgid "Web server to reconfigure automatically:"
-msgstr "Trình phục vụ Web cần tá»± Ä?á»?ng cấu hình lại:"
-
-#. Type: multiselect
-#. Description
-#: ../phamm.templates:5001
-msgid ""
-"Phamm supports any web server that PHP does, but this automatic "
-"configuration process only supports Apache."
-msgstr ""
-"Phamm há»? trợ bất cứ trình phục vụ nà o cÅ©ng Ä?ược PHP há»? trợ. Tuy nhiên, tiến "
-"trình tá»± Ä?á»?ng cấu hình nà y chá»? há»? trợ Apache."
-
-#. Type: boolean
-#. Description
-#: ../phamm.templates:6001
-msgid "Restart the webserver(s)?"
-msgstr "Kh�i chạy lại (các) trình phục vụ Web không?"
-
-#. Type: boolean
-#. Description
-#: ../phamm.templates:6001
-msgid "In order to apply the changes, the webserver(s) must be restarted."
-msgstr ""
-"Ä?á»? áp dụng các thay Ä?á»?i, (các) trình phục vụ Web cần phải Ä?ược khá»?i chạy."
-
#. Type: boolean
#. Description
#: ../phamm-ldap.templates:2001
@@ -135,6 +106,23 @@
"Hãy nháºp máºt khẩu cho « phamm user » hữu Ãch Ä?á»? Ä?óng kết vá»?i quyá»?n truy cáºp "
"b� hạn chế."
+#~ msgid "Web server to reconfigure automatically:"
+#~ msgstr "Trình phục vụ Web cần tá»± Ä?á»?ng cấu hình lại:"
+
+#~ msgid ""
+#~ "Phamm supports any web server that PHP does, but this automatic "
+#~ "configuration process only supports Apache."
+#~ msgstr ""
+#~ "Phamm há»? trợ bất cứ trình phục vụ nà o cÅ©ng Ä?ược PHP há»? trợ. Tuy nhiên, "
+#~ "tiến trình tá»± Ä?á»?ng cấu hình nà y chá»? há»? trợ Apache."
+
+#~ msgid "Restart the webserver(s)?"
+#~ msgstr "Kh�i chạy lại (các) trình phục vụ Web không?"
+
+#~ msgid "In order to apply the changes, the webserver(s) must be restarted."
+#~ msgstr ""
+#~ "Ä?á»? áp dụng các thay Ä?á»?i, (các) trình phục vụ Web cần phải Ä?ược khá»?i chạy."
+
#~| msgid "Restart the webserver(s)?"
#~ msgid "Restart the LDAP server?"
#~ msgstr "Kh�i chạy lại trình phục vụ LDAP ?"
diff -Nru phamm-0.6.2/debian/po/zh_TW.po phamm-0.6.2/debian/po/zh_TW.po
--- phamm-0.6.2/debian/po/zh_TW.po 2010-11-14 10:30:02.000000000 +0100
+++ phamm-0.6.2/debian/po/zh_TW.po 2014-11-14 16:58:42.000000000 +0100
@@ -7,7 +7,7 @@
msgstr ""
"Project-Id-Version: 0.5.12-3\n"
"Report-Msgid-Bugs-To: phamm@packages.debian.org\n"
-"POT-Creation-Date: 2010-11-14 10:30+0100\n"
+"POT-Creation-Date: 2014-11-14 16:58+0100\n"
"PO-Revision-Date: 2008-11-03 10:51+0800\n"
"Last-Translator: Kanru Chen <koster@debian.org.tw>\n"
"Language-Team: Debian-user in Chinese [Big5] <debian-chinese-big5@lists."
@@ -66,34 +66,6 @@
"è«?輸å?¥ç?»å?¥ LDAP 伺æ??å?¨ç?¨ç??辨è?å??稱 (DN)ã??å¦?æ??æ?¨ä½¿ç?¨è¡¨å?®èª?è?ç??話ï¼?é??å°?æ??æ?¯é ?è¨"
"ç??ç?»å?¥ DNã??è?¥ç??ä¸?空ç?½å??ä¸?æ??ç?¢ç??é ?è¨ç??ç?»å?¥ç?¨ DNã??"
-#. Type: multiselect
-#. Description
-#: ../phamm.templates:5001
-msgid "Web server to reconfigure automatically:"
-msgstr "è¦?è?ªå??é??æ?°è¨å®?ç??ç¶²é ?伺æ??å?¨ï¼?"
-
-#. Type: multiselect
-#. Description
-#: ../phamm.templates:5001
-msgid ""
-"Phamm supports any web server that PHP does, but this automatic "
-"configuration process only supports Apache."
-msgstr ""
-"Phamm æ?¯æ??ä»»ä½? PHP æ?¯æ??ç??ç¶²é ?伺æ??å?¨ï¼?ä½?æ?¯é??å??è?ªå??é??æ?°è¨å®?ç??æ¥é©?å?ªæ?¯æ?? "
-"Apacheã??"
-
-#. Type: boolean
-#. Description
-#: ../phamm.templates:6001
-msgid "Restart the webserver(s)?"
-msgstr "é??æ?°å??å??ç¶²é ?伺æ??å?¨å??ï¼?"
-
-#. Type: boolean
-#. Description
-#: ../phamm.templates:6001
-msgid "In order to apply the changes, the webserver(s) must be restarted."
-msgstr "ç?ºäº?使æ?¹è®?ç??æ??ï¼?å¿?é ?é??æ?°å??å??ç¶²é ?伺æ??å?¨ã??"
-
#. Type: boolean
#. Description
#: ../phamm-ldap.templates:2001
@@ -127,6 +99,22 @@
"privileges."
msgstr "è«?輸å?¥ä¾? \"phamm user\" ç?¨ä¾?以å??é??ç??æ¬?é??ç?»å?¥ LDAP 伺æ??å?¨ç?¨ç??å¯?碼ã??"
+#~ msgid "Web server to reconfigure automatically:"
+#~ msgstr "è¦?è?ªå??é??æ?°è¨å®?ç??ç¶²é ?伺æ??å?¨ï¼?"
+
+#~ msgid ""
+#~ "Phamm supports any web server that PHP does, but this automatic "
+#~ "configuration process only supports Apache."
+#~ msgstr ""
+#~ "Phamm æ?¯æ??ä»»ä½? PHP æ?¯æ??ç??ç¶²é ?伺æ??å?¨ï¼?ä½?æ?¯é??å??è?ªå??é??æ?°è¨å®?ç??æ¥é©?å?ªæ?¯æ?? "
+#~ "Apacheã??"
+
+#~ msgid "Restart the webserver(s)?"
+#~ msgstr "é??æ?°å??å??ç¶²é ?伺æ??å?¨å??ï¼?"
+
+#~ msgid "In order to apply the changes, the webserver(s) must be restarted."
+#~ msgstr "ç?ºäº?使æ?¹è®?ç??æ??ï¼?å¿?é ?é??æ?°å??å??ç¶²é ?伺æ??å?¨ã??"
+
#~ msgid "Restart the LDAP server?"
#~ msgstr "é??æ?°å??å?? LDAP 伺æ??å?¨å??ï¼?"
diff -Nru phamm-0.6.2/debian/rules phamm-0.6.2/debian/rules
--- phamm-0.6.2/debian/rules 2010-04-13 09:12:22.000000000 +0200
+++ phamm-0.6.2/debian/rules 2014-11-14 16:32:01.000000000 +0100
@@ -67,8 +67,8 @@
dh_installlogrotate
dh_compress
dh_install
+ dh_apache2
dh_fixperms
- dh_install -pphamm debian/conf/apache.conf /etc/phamm/
dh_link -pphamm /etc/phamm/plugins /usr/share/phamm/plugins
dh_link -pphamm /usr/share/doc/phamm /usr/share/phamm/doc
dh_installdebconf
Attachment:
signature.asc
Description: OpenPGP digital signature