Rename liblemonldap-ng-conf-perl to liblemonldap-ng-common-perl

Closes: #632
This commit is contained in:
Xavier Guimard 2013-10-28 20:35:33 +00:00
parent 6649edf9a9
commit 7fdf76c74b
24 changed files with 249 additions and 247 deletions

View File

@ -66,7 +66,7 @@ libraries which are installed in /usr/share/perl5/Lemonldap/NG/
---------------------------
If you have build Debian packages, configuration is done by Debconf. See
/usr/share/doc/liblemonldap-ng-conf/README.Debian to use it.
/usr/share/doc/liblemonldap-ng-common/README.Debian to use it.
After build, you have a new file named example/apache.conf. You just have to
include this file in Apache configuration:

10
debian/control vendored
View File

@ -84,7 +84,7 @@ Architecture: all
Depends: ${misc:Depends},
${perl:Depends},
libapache2-mod-perl2,
liblemonldap-ng-conf-perl (= ${binary:Version}),
liblemonldap-ng-common-perl (= ${binary:Version}),
libwww-perl
Recommends: libhttp-message-perl | libwww-perl (<< 6),
liblwp-protocol-https-perl | libwww-perl (<< 6)
@ -106,7 +106,9 @@ Description: Lemonldap::NG Apache handler part
This package installs the Apache module part (handler) used to protect web
areas.
Package: liblemonldap-ng-conf-perl
Package: liblemonldap-ng-common-perl
Conflicts: liblemonldap-ng-conf-perl
Provides: liblemonldap-ng-conf-perl
Architecture: all
Depends: ${misc:Depends},
${perl:Depends},
@ -148,7 +150,7 @@ Depends: ${misc:Depends},
libcrypt-openssl-rsa-perl,
libhtml-template-perl,
libjson-perl,
liblemonldap-ng-conf-perl (= ${binary:Version}),
liblemonldap-ng-common-perl (= ${binary:Version}),
liblemonldap-ng-handler-perl (= ${binary:Version}),
libwww-perl,
libxml-libxml-perl,
@ -178,7 +180,7 @@ Depends: ${misc:Depends},
${perl:Depends},
libclone-perl,
libhtml-template-perl,
liblemonldap-ng-conf-perl (= ${binary:Version}),
liblemonldap-ng-common-perl (= ${binary:Version}),
libmime-lite-perl,
libnet-ldap-perl,
libregexp-assemble-perl,

View File

@ -0,0 +1,25 @@
#!/bin/sh
set -e
. /usr/share/debconf/confmodule
db_input medium liblemonldap-ng-common-perl/domain || true
db_input medium liblemonldap-ng-common-perl/ldapServer || true
db_input medium liblemonldap-ng-common-perl/ldapPort || true
db_input medium liblemonldap-ng-common-perl/ldapBase || true
db_input medium liblemonldap-ng-common-perl/managerDn || true
db_input medium liblemonldap-ng-common-perl/managerPassword || true
db_input medium liblemonldap-ng-common-perl/portal || true
if dpkg --compare-versions $2 lt 1.0; then
db_input high liblemonldap-ng-common-perl/migrate || true
fi
db_go || true

View File

@ -1,13 +1,13 @@
# lemonldap-ng.ini must be readable by www-data but not by other (db passwords
# can be set here
liblemonldap-ng-conf-perl: non-standard-file-perm etc/lemonldap-ng/lemonldap-ng.ini 0640 != 0644
liblemonldap-ng-common-perl: non-standard-file-perm etc/lemonldap-ng/lemonldap-ng.ini 0640 != 0644
# If file storage is used for configuration, DB passwords can be stored here
# so this directory must not be readable by all
liblemonldap-ng-conf-perl: non-standard-dir-perm var/lib/lemonldap-ng/conf/ 0750 != 0755
liblemonldap-ng-common-perl: non-standard-dir-perm var/lib/lemonldap-ng/conf/ 0750 != 0755
# If file storage is used for configuration, later configuration files will be
# in 0640 mode. So the first is adjusted so
liblemonldap-ng-conf-perl: non-standard-file-perm var/lib/lemonldap-ng/conf/lmConf-1 0640 != 0644
liblemonldap-ng-common-perl: non-standard-file-perm var/lib/lemonldap-ng/conf/lmConf-1 0640 != 0644
# If file storage is used for sessions, user passord may be stored in this
# directory, so it must not be readable by all but must be writable by www-data
liblemonldap-ng-conf-perl: non-standard-dir-perm var/lib/lemonldap-ng/sessions/ 0770 != 0755
liblemonldap-ng-conf-perl: non-standard-dir-perm var/lib/lemonldap-ng/sessions/lock/ 0770 != 0755
liblemonldap-ng-common-perl: non-standard-dir-perm var/lib/lemonldap-ng/sessions/ 0770 != 0755
liblemonldap-ng-common-perl: non-standard-dir-perm var/lib/lemonldap-ng/sessions/lock/ 0770 != 0755

View File

@ -14,7 +14,7 @@ MIGRATION=/usr/share/lemonldap-ng/bin/lmMigrateConfFiles2ini
if [ "$1" == "configure" ]
then
for i in domain ldapServer ldapPort ldapBase managerDn managerPassword portal; do
db_get liblemonldap-ng-conf-perl/$i || true
db_get liblemonldap-ng-common-perl/$i || true
perl -000 -i -pe "s#^$i(\\n\\s+)('?)[^\\n]*?('?)\$#$i\${1}\${2}$RET\${3}#m" $FIRSTCONFFILE
done
@ -22,7 +22,7 @@ then
if [ "$2" != "" ]; then
if dpkg --compare-versions $2 lt 1.0; then
if [ -e $CONFDIR/storage.conf -o -e $CONFDIR/apply.conf -o -e $CONFDIR/apps-list.xml ] ; then
db_get liblemonldap-ng-conf-perl/migrate
db_get liblemonldap-ng-common-perl/migrate
if [ "$RET" ]; then
$MIGRATION 2>&1 > /dev/null || :
fi

View File

@ -1,4 +1,4 @@
Template: liblemonldap-ng-conf-perl/ldapServer
Template: liblemonldap-ng-common-perl/ldapServer
Type: string
Default: localhost
_Description: LDAP server:
@ -6,48 +6,48 @@ _Description: LDAP server:
Lemonldap::NG.
You can modify this value later using the Lemonldap::NG manager.
Template: liblemonldap-ng-conf-perl/domain
Template: liblemonldap-ng-common-perl/domain
Type: string
Default: example.com
_Description: Lemonldap::NG DNS domain:
Set here the main domain protected by Lemonldap::NG.
You can modify this value later using the Lemonldap::NG manager.
Template: liblemonldap-ng-conf-perl/portal
Template: liblemonldap-ng-common-perl/portal
Type: string
Default: http://auth.example.com/
_Description: Lemonldap::NG portal:
Set here the Lemonldap::NG portal URL.
You can modify this value later using the Lemonldap::NG manager.
Template: liblemonldap-ng-conf-perl/ldapPort
Template: liblemonldap-ng-common-perl/ldapPort
Type: string
Default: 389
_Description: LDAP server port:
Set here the port used by the LDAP server.
You can modify this value later using the Lemonldap::NG manager.
Template: liblemonldap-ng-conf-perl/ldapBase
Template: liblemonldap-ng-common-perl/ldapBase
Type: string
Default: dc=example,dc=com
_Description: LDAP search base:
Set here the search base to use in LDAP queries.
You can modify this value later using the Lemonldap::NG manager.
Template: liblemonldap-ng-conf-perl/managerDn
Template: liblemonldap-ng-common-perl/managerDn
Type: string
_Description: LDAP account:
Set here the account that Lemonldap::NG has to use for its LDAP requests.
Leaving it blank causes Lemonldap::NG to use anonymous connections.
You can modify this value later using the Lemonldap::NG manager.
Template: liblemonldap-ng-conf-perl/managerPassword
Template: liblemonldap-ng-common-perl/managerPassword
Type: string
_Description: LDAP password:
Set here the password for the Lemonldap::NG LDAP account.
You can modify this value later using the Lemonldap::NG manager.
Template: liblemonldap-ng-conf-perl/migrate
Template: liblemonldap-ng-common-perl/migrate
Type: boolean
_Description: Lemonldap::NG configuration files have changed, try to migrate your files?

View File

@ -1,25 +0,0 @@
#!/bin/sh
set -e
. /usr/share/debconf/confmodule
db_input medium liblemonldap-ng-conf-perl/domain || true
db_input medium liblemonldap-ng-conf-perl/ldapServer || true
db_input medium liblemonldap-ng-conf-perl/ldapPort || true
db_input medium liblemonldap-ng-conf-perl/ldapBase || true
db_input medium liblemonldap-ng-conf-perl/managerDn || true
db_input medium liblemonldap-ng-conf-perl/managerPassword || true
db_input medium liblemonldap-ng-conf-perl/portal || true
if dpkg --compare-versions $2 lt 1.0; then
db_input high liblemonldap-ng-conf-perl/migrate || true
fi
db_go || true

View File

@ -1 +1 @@
[type: gettext/rfc822deb] liblemonldap-ng-conf-perl.templates
[type: gettext/rfc822deb] liblemonldap-ng-common-perl.templates

30
debian/po/cs.po vendored
View File

@ -15,13 +15,13 @@ msgstr ""
#. Type: string
#. Description
#: ../liblemonldap-ng-conf-perl.templates:1001
#: ../liblemonldap-ng-common-perl.templates:1001
msgid "LDAP server:"
msgstr "LDAP server:"
#. Type: string
#. Description
#: ../liblemonldap-ng-conf-perl.templates:1001
#: ../liblemonldap-ng-common-perl.templates:1001
msgid ""
"Set here name or IP address of the LDAP server that has to be used by "
"Lemonldap::NG. You can modify this value later using the Lemonldap::NG "
@ -32,13 +32,13 @@ msgstr ""
#. Type: string
#. Description
#: ../liblemonldap-ng-conf-perl.templates:2001
#: ../liblemonldap-ng-common-perl.templates:2001
msgid "Lemonldap::NG DNS domain:"
msgstr "Lemonldap::NG DNS doména:"
#. Type: string
#. Description
#: ../liblemonldap-ng-conf-perl.templates:2001
#: ../liblemonldap-ng-common-perl.templates:2001
msgid ""
"Set here the main domain protected by Lemonldap::NG. You can modify this "
"value later using the Lemonldap::NG manager."
@ -48,13 +48,13 @@ msgstr ""
#. Type: string
#. Description
#: ../liblemonldap-ng-conf-perl.templates:3001
#: ../liblemonldap-ng-common-perl.templates:3001
msgid "Lemonldap::NG portal:"
msgstr "Lemonldap::NG portál:"
#. Type: string
#. Description
#: ../liblemonldap-ng-conf-perl.templates:3001
#: ../liblemonldap-ng-common-perl.templates:3001
msgid ""
"Set here the Lemonldap::NG portal URL. You can modify this value later using "
"the Lemonldap::NG manager."
@ -64,13 +64,13 @@ msgstr ""
#. Type: string
#. Description
#: ../liblemonldap-ng-conf-perl.templates:4001
#: ../liblemonldap-ng-common-perl.templates:4001
msgid "LDAP server port:"
msgstr "Port LDAP serveru:"
#. Type: string
#. Description
#: ../liblemonldap-ng-conf-perl.templates:4001
#: ../liblemonldap-ng-common-perl.templates:4001
msgid ""
"Set here the port used by the LDAP server. You can modify this value later "
"using the Lemonldap::NG manager."
@ -80,13 +80,13 @@ msgstr ""
#. Type: string
#. Description
#: ../liblemonldap-ng-conf-perl.templates:5001
#: ../liblemonldap-ng-common-perl.templates:5001
msgid "LDAP search base:"
msgstr "Kořen LDAP stromu pro prohledávání:"
#. Type: string
#. Description
#: ../liblemonldap-ng-conf-perl.templates:5001
#: ../liblemonldap-ng-common-perl.templates:5001
msgid ""
"Set here the search base to use in LDAP queries. You can modify this value "
"later using the Lemonldap::NG manager."
@ -96,13 +96,13 @@ msgstr ""
#. Type: string
#. Description
#: ../liblemonldap-ng-conf-perl.templates:6001
#: ../liblemonldap-ng-common-perl.templates:6001
msgid "LDAP account:"
msgstr "LDAP účet:"
#. Type: string
#. Description
#: ../liblemonldap-ng-conf-perl.templates:6001
#: ../liblemonldap-ng-common-perl.templates:6001
msgid ""
"Set here the account that Lemonldap::NG has to use for its LDAP requests. "
"Leaving it blank causes Lemonldap::NG to use anonymous connections. You can "
@ -114,13 +114,13 @@ msgstr ""
#. Type: string
#. Description
#: ../liblemonldap-ng-conf-perl.templates:7001
#: ../liblemonldap-ng-common-perl.templates:7001
msgid "LDAP password:"
msgstr "LDAP heslo:"
#. Type: string
#. Description
#: ../liblemonldap-ng-conf-perl.templates:7001
#: ../liblemonldap-ng-common-perl.templates:7001
msgid ""
"Set here the password for the Lemonldap::NG LDAP account. You can modify "
"this value later using the Lemonldap::NG manager."
@ -130,7 +130,7 @@ msgstr ""
#. Type: boolean
#. Description
#: ../liblemonldap-ng-conf-perl.templates:8001
#: ../liblemonldap-ng-common-perl.templates:8001
msgid ""
"Lemonldap::NG configuration files have changed, try to migrate your files?"
msgstr ""

30
debian/po/da.po vendored
View File

@ -18,13 +18,13 @@ msgstr ""
#. Type: string
#. Description
#: ../liblemonldap-ng-conf-perl.templates:1001
#: ../liblemonldap-ng-common-perl.templates:1001
msgid "LDAP server:"
msgstr "LDAP-server:"
#. Type: string
#. Description
#: ../liblemonldap-ng-conf-perl.templates:1001
#: ../liblemonldap-ng-common-perl.templates:1001
msgid ""
"Set here name or IP address of the LDAP server that has to be used by "
"Lemonldap::NG. You can modify this value later using the Lemonldap::NG "
@ -36,13 +36,13 @@ msgstr ""
#. Type: string
#. Description
#: ../liblemonldap-ng-conf-perl.templates:2001
#: ../liblemonldap-ng-common-perl.templates:2001
msgid "Lemonldap::NG DNS domain:"
msgstr "DNS-domæne for Lemonldap::NG:"
#. Type: string
#. Description
#: ../liblemonldap-ng-conf-perl.templates:2001
#: ../liblemonldap-ng-common-perl.templates:2001
msgid ""
"Set here the main domain protected by Lemonldap::NG. You can modify this "
"value later using the Lemonldap::NG manager."
@ -52,13 +52,13 @@ msgstr ""
#. Type: string
#. Description
#: ../liblemonldap-ng-conf-perl.templates:3001
#: ../liblemonldap-ng-common-perl.templates:3001
msgid "Lemonldap::NG portal:"
msgstr "Lemonldap::NG-portal:"
#. Type: string
#. Description
#: ../liblemonldap-ng-conf-perl.templates:3001
#: ../liblemonldap-ng-common-perl.templates:3001
msgid ""
"Set here the Lemonldap::NG portal URL. You can modify this value later using "
"the Lemonldap::NG manager."
@ -68,13 +68,13 @@ msgstr ""
#. Type: string
#. Description
#: ../liblemonldap-ng-conf-perl.templates:4001
#: ../liblemonldap-ng-common-perl.templates:4001
msgid "LDAP server port:"
msgstr "LDAP-serverport:"
#. Type: string
#. Description
#: ../liblemonldap-ng-conf-perl.templates:4001
#: ../liblemonldap-ng-common-perl.templates:4001
msgid ""
"Set here the port used by the LDAP server. You can modify this value later "
"using the Lemonldap::NG manager."
@ -84,13 +84,13 @@ msgstr ""
#. Type: string
#. Description
#: ../liblemonldap-ng-conf-perl.templates:5001
#: ../liblemonldap-ng-common-perl.templates:5001
msgid "LDAP search base:"
msgstr "LDAP-søgebase:"
#. Type: string
#. Description
#: ../liblemonldap-ng-conf-perl.templates:5001
#: ../liblemonldap-ng-common-perl.templates:5001
msgid ""
"Set here the search base to use in LDAP queries. You can modify this value "
"later using the Lemonldap::NG manager."
@ -100,13 +100,13 @@ msgstr ""
#. Type: string
#. Description
#: ../liblemonldap-ng-conf-perl.templates:6001
#: ../liblemonldap-ng-common-perl.templates:6001
msgid "LDAP account:"
msgstr "LDAP-konto:"
#. Type: string
#. Description
#: ../liblemonldap-ng-conf-perl.templates:6001
#: ../liblemonldap-ng-common-perl.templates:6001
msgid ""
"Set here the account that Lemonldap::NG has to use for its LDAP requests. "
"Leaving it blank causes Lemonldap::NG to use anonymous connections. You can "
@ -118,13 +118,13 @@ msgstr ""
#. Type: string
#. Description
#: ../liblemonldap-ng-conf-perl.templates:7001
#: ../liblemonldap-ng-common-perl.templates:7001
msgid "LDAP password:"
msgstr "LDAP-adgangskode:"
#. Type: string
#. Description
#: ../liblemonldap-ng-conf-perl.templates:7001
#: ../liblemonldap-ng-common-perl.templates:7001
msgid ""
"Set here the password for the Lemonldap::NG LDAP account. You can modify "
"this value later using the Lemonldap::NG manager."
@ -134,7 +134,7 @@ msgstr ""
#. Type: boolean
#. Description
#: ../liblemonldap-ng-conf-perl.templates:8001
#: ../liblemonldap-ng-common-perl.templates:8001
msgid ""
"Lemonldap::NG configuration files have changed, try to migrate your files?"
msgstr ""

30
debian/po/de.po vendored
View File

@ -16,13 +16,13 @@ msgstr ""
#. Type: string
#. Description
#: ../liblemonldap-ng-conf-perl.templates:1001
#: ../liblemonldap-ng-common-perl.templates:1001
msgid "LDAP server:"
msgstr "LDAP-Server:"
#. Type: string
#. Description
#: ../liblemonldap-ng-conf-perl.templates:1001
#: ../liblemonldap-ng-common-perl.templates:1001
msgid ""
"Set here name or IP address of the LDAP server that has to be used by "
"Lemonldap::NG. You can modify this value later using the Lemonldap::NG "
@ -34,13 +34,13 @@ msgstr ""
#. Type: string
#. Description
#: ../liblemonldap-ng-conf-perl.templates:2001
#: ../liblemonldap-ng-common-perl.templates:2001
msgid "Lemonldap::NG DNS domain:"
msgstr "Lemonldap::NG DNS-Domain:"
#. Type: string
#. Description
#: ../liblemonldap-ng-conf-perl.templates:2001
#: ../liblemonldap-ng-common-perl.templates:2001
msgid ""
"Set here the main domain protected by Lemonldap::NG. You can modify this "
"value later using the Lemonldap::NG manager."
@ -50,13 +50,13 @@ msgstr ""
#. Type: string
#. Description
#: ../liblemonldap-ng-conf-perl.templates:3001
#: ../liblemonldap-ng-common-perl.templates:3001
msgid "Lemonldap::NG portal:"
msgstr "Lemonldap::NG-Portal:"
#. Type: string
#. Description
#: ../liblemonldap-ng-conf-perl.templates:3001
#: ../liblemonldap-ng-common-perl.templates:3001
msgid ""
"Set here the Lemonldap::NG portal URL. You can modify this value later using "
"the Lemonldap::NG manager."
@ -66,13 +66,13 @@ msgstr ""
#. Type: string
#. Description
#: ../liblemonldap-ng-conf-perl.templates:4001
#: ../liblemonldap-ng-common-perl.templates:4001
msgid "LDAP server port:"
msgstr "Port des LDAP-Servers:"
#. Type: string
#. Description
#: ../liblemonldap-ng-conf-perl.templates:4001
#: ../liblemonldap-ng-common-perl.templates:4001
msgid ""
"Set here the port used by the LDAP server. You can modify this value later "
"using the Lemonldap::NG manager."
@ -82,13 +82,13 @@ msgstr ""
#. Type: string
#. Description
#: ../liblemonldap-ng-conf-perl.templates:5001
#: ../liblemonldap-ng-common-perl.templates:5001
msgid "LDAP search base:"
msgstr "LDAP-Suchbasis:"
#. Type: string
#. Description
#: ../liblemonldap-ng-conf-perl.templates:5001
#: ../liblemonldap-ng-common-perl.templates:5001
msgid ""
"Set here the search base to use in LDAP queries. You can modify this value "
"later using the Lemonldap::NG manager."
@ -98,13 +98,13 @@ msgstr ""
#. Type: string
#. Description
#: ../liblemonldap-ng-conf-perl.templates:6001
#: ../liblemonldap-ng-common-perl.templates:6001
msgid "LDAP account:"
msgstr "LDAP-Konto:"
#. Type: string
#. Description
#: ../liblemonldap-ng-conf-perl.templates:6001
#: ../liblemonldap-ng-common-perl.templates:6001
msgid ""
"Set here the account that Lemonldap::NG has to use for its LDAP requests. "
"Leaving it blank causes Lemonldap::NG to use anonymous connections. You can "
@ -117,13 +117,13 @@ msgstr ""
#. Type: string
#. Description
#: ../liblemonldap-ng-conf-perl.templates:7001
#: ../liblemonldap-ng-common-perl.templates:7001
msgid "LDAP password:"
msgstr "LDAP-Passwort:"
#. Type: string
#. Description
#: ../liblemonldap-ng-conf-perl.templates:7001
#: ../liblemonldap-ng-common-perl.templates:7001
msgid ""
"Set here the password for the Lemonldap::NG LDAP account. You can modify "
"this value later using the Lemonldap::NG manager."
@ -133,7 +133,7 @@ msgstr ""
#. Type: boolean
#. Description
#: ../liblemonldap-ng-conf-perl.templates:8001
#: ../liblemonldap-ng-common-perl.templates:8001
msgid ""
"Lemonldap::NG configuration files have changed, try to migrate your files?"
msgstr ""

30
debian/po/es.po vendored
View File

@ -43,13 +43,13 @@ msgstr ""
#. Type: string
#. Description
#: ../liblemonldap-ng-conf-perl.templates:1001
#: ../liblemonldap-ng-common-perl.templates:1001
msgid "LDAP server:"
msgstr "Servidor LDAP:"
#. Type: string
#. Description
#: ../liblemonldap-ng-conf-perl.templates:1001
#: ../liblemonldap-ng-common-perl.templates:1001
msgid ""
"Set here name or IP address of the LDAP server that has to be used by "
"Lemonldap::NG. You can modify this value later using the Lemonldap::NG "
@ -61,13 +61,13 @@ msgstr ""
#. Type: string
#. Description
#: ../liblemonldap-ng-conf-perl.templates:2001
#: ../liblemonldap-ng-common-perl.templates:2001
msgid "Lemonldap::NG DNS domain:"
msgstr "Dominio DNS de Lemonldap::NG:"
#. Type: string
#. Description
#: ../liblemonldap-ng-conf-perl.templates:2001
#: ../liblemonldap-ng-common-perl.templates:2001
msgid ""
"Set here the main domain protected by Lemonldap::NG. You can modify this "
"value later using the Lemonldap::NG manager."
@ -77,13 +77,13 @@ msgstr ""
#. Type: string
#. Description
#: ../liblemonldap-ng-conf-perl.templates:3001
#: ../liblemonldap-ng-common-perl.templates:3001
msgid "Lemonldap::NG portal:"
msgstr "Portal de Lemonldap::NG:"
#. Type: string
#. Description
#: ../liblemonldap-ng-conf-perl.templates:3001
#: ../liblemonldap-ng-common-perl.templates:3001
msgid ""
"Set here the Lemonldap::NG portal URL. You can modify this value later using "
"the Lemonldap::NG manager."
@ -93,13 +93,13 @@ msgstr ""
#. Type: string
#. Description
#: ../liblemonldap-ng-conf-perl.templates:4001
#: ../liblemonldap-ng-common-perl.templates:4001
msgid "LDAP server port:"
msgstr "Puerto del servidor LDAP:"
#. Type: string
#. Description
#: ../liblemonldap-ng-conf-perl.templates:4001
#: ../liblemonldap-ng-common-perl.templates:4001
msgid ""
"Set here the port used by the LDAP server. You can modify this value later "
"using the Lemonldap::NG manager."
@ -109,13 +109,13 @@ msgstr ""
#. Type: string
#. Description
#: ../liblemonldap-ng-conf-perl.templates:5001
#: ../liblemonldap-ng-common-perl.templates:5001
msgid "LDAP search base:"
msgstr "Base de búsqueda LDAP:"
#. Type: string
#. Description
#: ../liblemonldap-ng-conf-perl.templates:5001
#: ../liblemonldap-ng-common-perl.templates:5001
msgid ""
"Set here the search base to use in LDAP queries. You can modify this value "
"later using the Lemonldap::NG manager."
@ -125,13 +125,13 @@ msgstr ""
#. Type: string
#. Description
#: ../liblemonldap-ng-conf-perl.templates:6001
#: ../liblemonldap-ng-common-perl.templates:6001
msgid "LDAP account:"
msgstr "Cuenta LDAP:"
#. Type: string
#. Description
#: ../liblemonldap-ng-conf-perl.templates:6001
#: ../liblemonldap-ng-common-perl.templates:6001
msgid ""
"Set here the account that Lemonldap::NG has to use for its LDAP requests. "
"Leaving it blank causes Lemonldap::NG to use anonymous connections. You can "
@ -143,13 +143,13 @@ msgstr ""
#. Type: string
#. Description
#: ../liblemonldap-ng-conf-perl.templates:7001
#: ../liblemonldap-ng-common-perl.templates:7001
msgid "LDAP password:"
msgstr "Contraseña LDAP:"
#. Type: string
#. Description
#: ../liblemonldap-ng-conf-perl.templates:7001
#: ../liblemonldap-ng-common-perl.templates:7001
msgid ""
"Set here the password for the Lemonldap::NG LDAP account. You can modify "
"this value later using the Lemonldap::NG manager."
@ -159,7 +159,7 @@ msgstr ""
#. Type: boolean
#. Description
#: ../liblemonldap-ng-conf-perl.templates:8001
#: ../liblemonldap-ng-common-perl.templates:8001
msgid ""
"Lemonldap::NG configuration files have changed, try to migrate your files?"
msgstr ""

30
debian/po/fi.po vendored
View File

@ -19,13 +19,13 @@ msgstr ""
#. Type: string
#. Description
#: ../liblemonldap-ng-conf-perl.templates:1001
#: ../liblemonldap-ng-common-perl.templates:1001
msgid "LDAP server:"
msgstr "LDAP-palvelin:"
#. Type: string
#. Description
#: ../liblemonldap-ng-conf-perl.templates:1001
#: ../liblemonldap-ng-common-perl.templates:1001
msgid ""
"Set here name or IP address of the LDAP server that has to be used by "
"Lemonldap::NG. You can modify this value later using the Lemonldap::NG "
@ -37,13 +37,13 @@ msgstr ""
#. Type: string
#. Description
#: ../liblemonldap-ng-conf-perl.templates:2001
#: ../liblemonldap-ng-common-perl.templates:2001
msgid "Lemonldap::NG DNS domain:"
msgstr "Lemonldap::NGn DNS-verkkoalue:"
#. Type: string
#. Description
#: ../liblemonldap-ng-conf-perl.templates:2001
#: ../liblemonldap-ng-common-perl.templates:2001
msgid ""
"Set here the main domain protected by Lemonldap::NG. You can modify this "
"value later using the Lemonldap::NG manager."
@ -53,13 +53,13 @@ msgstr ""
#. Type: string
#. Description
#: ../liblemonldap-ng-conf-perl.templates:3001
#: ../liblemonldap-ng-common-perl.templates:3001
msgid "Lemonldap::NG portal:"
msgstr "Lemonldap::NGn portaali:"
#. Type: string
#. Description
#: ../liblemonldap-ng-conf-perl.templates:3001
#: ../liblemonldap-ng-common-perl.templates:3001
msgid ""
"Set here the Lemonldap::NG portal URL. You can modify this value later using "
"the Lemonldap::NG manager."
@ -69,13 +69,13 @@ msgstr ""
#. Type: string
#. Description
#: ../liblemonldap-ng-conf-perl.templates:4001
#: ../liblemonldap-ng-common-perl.templates:4001
msgid "LDAP server port:"
msgstr "LDAP-palvelimen portti:"
#. Type: string
#. Description
#: ../liblemonldap-ng-conf-perl.templates:4001
#: ../liblemonldap-ng-common-perl.templates:4001
msgid ""
"Set here the port used by the LDAP server. You can modify this value later "
"using the Lemonldap::NG manager."
@ -85,13 +85,13 @@ msgstr ""
#. Type: string
#. Description
#: ../liblemonldap-ng-conf-perl.templates:5001
#: ../liblemonldap-ng-common-perl.templates:5001
msgid "LDAP search base:"
msgstr "LDAP-hakukanta:"
#. Type: string
#. Description
#: ../liblemonldap-ng-conf-perl.templates:5001
#: ../liblemonldap-ng-common-perl.templates:5001
msgid ""
"Set here the search base to use in LDAP queries. You can modify this value "
"later using the Lemonldap::NG manager."
@ -101,13 +101,13 @@ msgstr ""
#. Type: string
#. Description
#: ../liblemonldap-ng-conf-perl.templates:6001
#: ../liblemonldap-ng-common-perl.templates:6001
msgid "LDAP account:"
msgstr "LDAP-tunnus:"
#. Type: string
#. Description
#: ../liblemonldap-ng-conf-perl.templates:6001
#: ../liblemonldap-ng-common-perl.templates:6001
msgid ""
"Set here the account that Lemonldap::NG has to use for its LDAP requests. "
"Leaving it blank causes Lemonldap::NG to use anonymous connections. You can "
@ -119,13 +119,13 @@ msgstr ""
#. Type: string
#. Description
#: ../liblemonldap-ng-conf-perl.templates:7001
#: ../liblemonldap-ng-common-perl.templates:7001
msgid "LDAP password:"
msgstr "LDAP-salasana:"
#. Type: string
#. Description
#: ../liblemonldap-ng-conf-perl.templates:7001
#: ../liblemonldap-ng-common-perl.templates:7001
msgid ""
"Set here the password for the Lemonldap::NG LDAP account. You can modify "
"this value later using the Lemonldap::NG manager."
@ -135,7 +135,7 @@ msgstr ""
#. Type: boolean
#. Description
#: ../liblemonldap-ng-conf-perl.templates:8001
#: ../liblemonldap-ng-common-perl.templates:8001
msgid ""
"Lemonldap::NG configuration files have changed, try to migrate your files?"
msgstr ""

30
debian/po/fr.po vendored
View File

@ -21,13 +21,13 @@ msgstr ""
#. Type: string
#. Description
#: ../liblemonldap-ng-conf-perl.templates:1001
#: ../liblemonldap-ng-common-perl.templates:1001
msgid "LDAP server:"
msgstr "Serveur LDAP :"
#. Type: string
#. Description
#: ../liblemonldap-ng-conf-perl.templates:1001
#: ../liblemonldap-ng-common-perl.templates:1001
msgid ""
"Set here name or IP address of the LDAP server that has to be used by "
"Lemonldap::NG. You can modify this value later using the Lemonldap::NG "
@ -39,13 +39,13 @@ msgstr ""
#. Type: string
#. Description
#: ../liblemonldap-ng-conf-perl.templates:2001
#: ../liblemonldap-ng-common-perl.templates:2001
msgid "Lemonldap::NG DNS domain:"
msgstr "Domaine DNS pour Lemonldap::NG :"
#. Type: string
#. Description
#: ../liblemonldap-ng-conf-perl.templates:2001
#: ../liblemonldap-ng-common-perl.templates:2001
msgid ""
"Set here the main domain protected by Lemonldap::NG. You can modify this "
"value later using the Lemonldap::NG manager."
@ -56,13 +56,13 @@ msgstr ""
#. Type: string
#. Description
#: ../liblemonldap-ng-conf-perl.templates:3001
#: ../liblemonldap-ng-common-perl.templates:3001
msgid "Lemonldap::NG portal:"
msgstr "Portail de Lemonldap::NG :"
#. Type: string
#. Description
#: ../liblemonldap-ng-conf-perl.templates:3001
#: ../liblemonldap-ng-common-perl.templates:3001
msgid ""
"Set here the Lemonldap::NG portal URL. You can modify this value later using "
"the Lemonldap::NG manager."
@ -72,13 +72,13 @@ msgstr ""
#. Type: string
#. Description
#: ../liblemonldap-ng-conf-perl.templates:4001
#: ../liblemonldap-ng-common-perl.templates:4001
msgid "LDAP server port:"
msgstr "Port du serveur LDAP :"
#. Type: string
#. Description
#: ../liblemonldap-ng-conf-perl.templates:4001
#: ../liblemonldap-ng-common-perl.templates:4001
msgid ""
"Set here the port used by the LDAP server. You can modify this value later "
"using the Lemonldap::NG manager."
@ -88,13 +88,13 @@ msgstr ""
#. Type: string
#. Description
#: ../liblemonldap-ng-conf-perl.templates:5001
#: ../liblemonldap-ng-common-perl.templates:5001
msgid "LDAP search base:"
msgstr "Base de recherche LDAP :"
#. Type: string
#. Description
#: ../liblemonldap-ng-conf-perl.templates:5001
#: ../liblemonldap-ng-common-perl.templates:5001
msgid ""
"Set here the search base to use in LDAP queries. You can modify this value "
"later using the Lemonldap::NG manager."
@ -104,13 +104,13 @@ msgstr ""
#. Type: string
#. Description
#: ../liblemonldap-ng-conf-perl.templates:6001
#: ../liblemonldap-ng-common-perl.templates:6001
msgid "LDAP account:"
msgstr "Identifiant de connexion LDAP :"
#. Type: string
#. Description
#: ../liblemonldap-ng-conf-perl.templates:6001
#: ../liblemonldap-ng-common-perl.templates:6001
msgid ""
"Set here the account that Lemonldap::NG has to use for its LDAP requests. "
"Leaving it blank causes Lemonldap::NG to use anonymous connections. You can "
@ -123,13 +123,13 @@ msgstr ""
#. Type: string
#. Description
#: ../liblemonldap-ng-conf-perl.templates:7001
#: ../liblemonldap-ng-common-perl.templates:7001
msgid "LDAP password:"
msgstr "Mot de passe de connexion LDAP :"
#. Type: string
#. Description
#: ../liblemonldap-ng-conf-perl.templates:7001
#: ../liblemonldap-ng-common-perl.templates:7001
msgid ""
"Set here the password for the Lemonldap::NG LDAP account. You can modify "
"this value later using the Lemonldap::NG manager."
@ -140,7 +140,7 @@ msgstr ""
#. Type: boolean
#. Description
#: ../liblemonldap-ng-conf-perl.templates:8001
#: ../liblemonldap-ng-common-perl.templates:8001
msgid ""
"Lemonldap::NG configuration files have changed, try to migrate your files?"
msgstr ""

30
debian/po/ja.po vendored
View File

@ -17,13 +17,13 @@ msgstr ""
#. Type: string
#. Description
#: ../liblemonldap-ng-conf-perl.templates:1001
#: ../liblemonldap-ng-common-perl.templates:1001
msgid "LDAP server:"
msgstr "LDAP サーバ:"
#. Type: string
#. Description
#: ../liblemonldap-ng-conf-perl.templates:1001
#: ../liblemonldap-ng-common-perl.templates:1001
msgid ""
"Set here name or IP address of the LDAP server that has to be used by "
"Lemonldap::NG. You can modify this value later using the Lemonldap::NG "
@ -34,13 +34,13 @@ msgstr ""
#. Type: string
#. Description
#: ../liblemonldap-ng-conf-perl.templates:2001
#: ../liblemonldap-ng-common-perl.templates:2001
msgid "Lemonldap::NG DNS domain:"
msgstr "Lemonldap::NG DNS ドメイン名:"
#. Type: string
#. Description
#: ../liblemonldap-ng-conf-perl.templates:2001
#: ../liblemonldap-ng-common-perl.templates:2001
msgid ""
"Set here the main domain protected by Lemonldap::NG. You can modify this "
"value later using the Lemonldap::NG manager."
@ -50,13 +50,13 @@ msgstr ""
#. Type: string
#. Description
#: ../liblemonldap-ng-conf-perl.templates:3001
#: ../liblemonldap-ng-common-perl.templates:3001
msgid "Lemonldap::NG portal:"
msgstr "Lemonldap::NG ポータル::"
#. Type: string
#. Description
#: ../liblemonldap-ng-conf-perl.templates:3001
#: ../liblemonldap-ng-common-perl.templates:3001
msgid ""
"Set here the Lemonldap::NG portal URL. You can modify this value later using "
"the Lemonldap::NG manager."
@ -66,13 +66,13 @@ msgstr ""
#. Type: string
#. Description
#: ../liblemonldap-ng-conf-perl.templates:4001
#: ../liblemonldap-ng-common-perl.templates:4001
msgid "LDAP server port:"
msgstr "LDAP サーバのポート番号:"
#. Type: string
#. Description
#: ../liblemonldap-ng-conf-perl.templates:4001
#: ../liblemonldap-ng-common-perl.templates:4001
msgid ""
"Set here the port used by the LDAP server. You can modify this value later "
"using the Lemonldap::NG manager."
@ -82,13 +82,13 @@ msgstr ""
#. Type: string
#. Description
#: ../liblemonldap-ng-conf-perl.templates:5001
#: ../liblemonldap-ng-common-perl.templates:5001
msgid "LDAP search base:"
msgstr "LDAP 検索ベース:"
#. Type: string
#. Description
#: ../liblemonldap-ng-conf-perl.templates:5001
#: ../liblemonldap-ng-common-perl.templates:5001
msgid ""
"Set here the search base to use in LDAP queries. You can modify this value "
"later using the Lemonldap::NG manager."
@ -98,13 +98,13 @@ msgstr ""
#. Type: string
#. Description
#: ../liblemonldap-ng-conf-perl.templates:6001
#: ../liblemonldap-ng-common-perl.templates:6001
msgid "LDAP account:"
msgstr "LDAP アカウント:"
#. Type: string
#. Description
#: ../liblemonldap-ng-conf-perl.templates:6001
#: ../liblemonldap-ng-common-perl.templates:6001
msgid ""
"Set here the account that Lemonldap::NG has to use for its LDAP requests. "
"Leaving it blank causes Lemonldap::NG to use anonymous connections. You can "
@ -117,13 +117,13 @@ msgstr ""
#. Type: string
#. Description
#: ../liblemonldap-ng-conf-perl.templates:7001
#: ../liblemonldap-ng-common-perl.templates:7001
msgid "LDAP password:"
msgstr "LDAP パスワード:"
#. Type: string
#. Description
#: ../liblemonldap-ng-conf-perl.templates:7001
#: ../liblemonldap-ng-common-perl.templates:7001
msgid ""
"Set here the password for the Lemonldap::NG LDAP account. You can modify "
"this value later using the Lemonldap::NG manager."
@ -133,7 +133,7 @@ msgstr ""
#. Type: boolean
#. Description
#: ../liblemonldap-ng-conf-perl.templates:8001
#: ../liblemonldap-ng-common-perl.templates:8001
msgid ""
"Lemonldap::NG configuration files have changed, try to migrate your files?"
msgstr ""

30
debian/po/pt.po vendored
View File

@ -20,13 +20,13 @@ msgstr ""
#. Type: string
#. Description
#: ../liblemonldap-ng-conf-perl.templates:1001
#: ../liblemonldap-ng-common-perl.templates:1001
msgid "LDAP server:"
msgstr "Servidor LDAP:"
#. Type: string
#. Description
#: ../liblemonldap-ng-conf-perl.templates:1001
#: ../liblemonldap-ng-common-perl.templates:1001
msgid ""
"Set here name or IP address of the LDAP server that has to be used by "
"Lemonldap::NG. You can modify this value later using the Lemonldap::NG "
@ -38,13 +38,13 @@ msgstr ""
#. Type: string
#. Description
#: ../liblemonldap-ng-conf-perl.templates:2001
#: ../liblemonldap-ng-common-perl.templates:2001
msgid "Lemonldap::NG DNS domain:"
msgstr "Domínio DNS do Lemonldap::NG:"
#. Type: string
#. Description
#: ../liblemonldap-ng-conf-perl.templates:2001
#: ../liblemonldap-ng-common-perl.templates:2001
msgid ""
"Set here the main domain protected by Lemonldap::NG. You can modify this "
"value later using the Lemonldap::NG manager."
@ -54,13 +54,13 @@ msgstr ""
#. Type: string
#. Description
#: ../liblemonldap-ng-conf-perl.templates:3001
#: ../liblemonldap-ng-common-perl.templates:3001
msgid "Lemonldap::NG portal:"
msgstr "Portal do Lemonldap::NG."
#. Type: string
#. Description
#: ../liblemonldap-ng-conf-perl.templates:3001
#: ../liblemonldap-ng-common-perl.templates:3001
msgid ""
"Set here the Lemonldap::NG portal URL. You can modify this value later using "
"the Lemonldap::NG manager."
@ -70,13 +70,13 @@ msgstr ""
#. Type: string
#. Description
#: ../liblemonldap-ng-conf-perl.templates:4001
#: ../liblemonldap-ng-common-perl.templates:4001
msgid "LDAP server port:"
msgstr "Porto do servidor LDAP:"
#. Type: string
#. Description
#: ../liblemonldap-ng-conf-perl.templates:4001
#: ../liblemonldap-ng-common-perl.templates:4001
msgid ""
"Set here the port used by the LDAP server. You can modify this value later "
"using the Lemonldap::NG manager."
@ -86,13 +86,13 @@ msgstr ""
#. Type: string
#. Description
#: ../liblemonldap-ng-conf-perl.templates:5001
#: ../liblemonldap-ng-common-perl.templates:5001
msgid "LDAP search base:"
msgstr "Base de busca LDAP:"
#. Type: string
#. Description
#: ../liblemonldap-ng-conf-perl.templates:5001
#: ../liblemonldap-ng-common-perl.templates:5001
msgid ""
"Set here the search base to use in LDAP queries. You can modify this value "
"later using the Lemonldap::NG manager."
@ -102,13 +102,13 @@ msgstr ""
#. Type: string
#. Description
#: ../liblemonldap-ng-conf-perl.templates:6001
#: ../liblemonldap-ng-common-perl.templates:6001
msgid "LDAP account:"
msgstr "Conta LDAP:"
#. Type: string
#. Description
#: ../liblemonldap-ng-conf-perl.templates:6001
#: ../liblemonldap-ng-common-perl.templates:6001
msgid ""
"Set here the account that Lemonldap::NG has to use for its LDAP requests. "
"Leaving it blank causes Lemonldap::NG to use anonymous connections. You can "
@ -121,13 +121,13 @@ msgstr ""
#. Type: string
#. Description
#: ../liblemonldap-ng-conf-perl.templates:7001
#: ../liblemonldap-ng-common-perl.templates:7001
msgid "LDAP password:"
msgstr "Palavra passe do LDAP:"
#. Type: string
#. Description
#: ../liblemonldap-ng-conf-perl.templates:7001
#: ../liblemonldap-ng-common-perl.templates:7001
msgid ""
"Set here the password for the Lemonldap::NG LDAP account. You can modify "
"this value later using the Lemonldap::NG manager."
@ -137,7 +137,7 @@ msgstr ""
#. Type: boolean
#. Description
#: ../liblemonldap-ng-conf-perl.templates:8001
#: ../liblemonldap-ng-common-perl.templates:8001
msgid ""
"Lemonldap::NG configuration files have changed, try to migrate your files?"
msgstr ""

30
debian/po/pt_BR.po vendored
View File

@ -19,13 +19,13 @@ msgstr ""
#. Type: string
#. Description
#: ../liblemonldap-ng-conf-perl.templates:1001
#: ../liblemonldap-ng-common-perl.templates:1001
msgid "LDAP server:"
msgstr "Servidor LDAP:"
#. Type: string
#. Description
#: ../liblemonldap-ng-conf-perl.templates:1001
#: ../liblemonldap-ng-common-perl.templates:1001
msgid ""
"Set here name or IP address of the LDAP server that has to be used by "
"Lemonldap::NG. You can modify this value later using the Lemonldap::NG "
@ -37,13 +37,13 @@ msgstr ""
#. Type: string
#. Description
#: ../liblemonldap-ng-conf-perl.templates:2001
#: ../liblemonldap-ng-common-perl.templates:2001
msgid "Lemonldap::NG DNS domain:"
msgstr "Domínio DNS do Lemonldap::NG:"
#. Type: string
#. Description
#: ../liblemonldap-ng-conf-perl.templates:2001
#: ../liblemonldap-ng-common-perl.templates:2001
msgid ""
"Set here the main domain protected by Lemonldap::NG. You can modify this "
"value later using the Lemonldap::NG manager."
@ -53,13 +53,13 @@ msgstr ""
#. Type: string
#. Description
#: ../liblemonldap-ng-conf-perl.templates:3001
#: ../liblemonldap-ng-common-perl.templates:3001
msgid "Lemonldap::NG portal:"
msgstr "Portal do Lemonldap::NG:"
#. Type: string
#. Description
#: ../liblemonldap-ng-conf-perl.templates:3001
#: ../liblemonldap-ng-common-perl.templates:3001
msgid ""
"Set here the Lemonldap::NG portal URL. You can modify this value later using "
"the Lemonldap::NG manager."
@ -69,13 +69,13 @@ msgstr ""
#. Type: string
#. Description
#: ../liblemonldap-ng-conf-perl.templates:4001
#: ../liblemonldap-ng-common-perl.templates:4001
msgid "LDAP server port:"
msgstr "Porta do servidor LDAP:"
#. Type: string
#. Description
#: ../liblemonldap-ng-conf-perl.templates:4001
#: ../liblemonldap-ng-common-perl.templates:4001
msgid ""
"Set here the port used by the LDAP server. You can modify this value later "
"using the Lemonldap::NG manager."
@ -85,13 +85,13 @@ msgstr ""
#. Type: string
#. Description
#: ../liblemonldap-ng-conf-perl.templates:5001
#: ../liblemonldap-ng-common-perl.templates:5001
msgid "LDAP search base:"
msgstr "Base de busca LDAP:"
#. Type: string
#. Description
#: ../liblemonldap-ng-conf-perl.templates:5001
#: ../liblemonldap-ng-common-perl.templates:5001
msgid ""
"Set here the search base to use in LDAP queries. You can modify this value "
"later using the Lemonldap::NG manager."
@ -102,13 +102,13 @@ msgstr ""
#. Type: string
#. Description
#: ../liblemonldap-ng-conf-perl.templates:6001
#: ../liblemonldap-ng-common-perl.templates:6001
msgid "LDAP account:"
msgstr "Conta LDAP:"
#. Type: string
#. Description
#: ../liblemonldap-ng-conf-perl.templates:6001
#: ../liblemonldap-ng-common-perl.templates:6001
msgid ""
"Set here the account that Lemonldap::NG has to use for its LDAP requests. "
"Leaving it blank causes Lemonldap::NG to use anonymous connections. You can "
@ -121,13 +121,13 @@ msgstr ""
#. Type: string
#. Description
#: ../liblemonldap-ng-conf-perl.templates:7001
#: ../liblemonldap-ng-common-perl.templates:7001
msgid "LDAP password:"
msgstr "Senha LDAP:"
#. Type: string
#. Description
#: ../liblemonldap-ng-conf-perl.templates:7001
#: ../liblemonldap-ng-common-perl.templates:7001
msgid ""
"Set here the password for the Lemonldap::NG LDAP account. You can modify "
"this value later using the Lemonldap::NG manager."
@ -137,7 +137,7 @@ msgstr ""
#. Type: boolean
#. Description
#: ../liblemonldap-ng-conf-perl.templates:8001
#: ../liblemonldap-ng-common-perl.templates:8001
msgid ""
"Lemonldap::NG configuration files have changed, try to migrate your files?"
msgstr ""

30
debian/po/ru.po vendored
View File

@ -21,13 +21,13 @@ msgstr ""
#. Type: string
#. Description
#: ../liblemonldap-ng-conf-perl.templates:1001
#: ../liblemonldap-ng-common-perl.templates:1001
msgid "LDAP server:"
msgstr "Сервер LDAP:"
#. Type: string
#. Description
#: ../liblemonldap-ng-conf-perl.templates:1001
#: ../liblemonldap-ng-common-perl.templates:1001
msgid ""
"Set here name or IP address of the LDAP server that has to be used by "
"Lemonldap::NG. You can modify this value later using the Lemonldap::NG "
@ -38,13 +38,13 @@ msgstr ""
#. Type: string
#. Description
#: ../liblemonldap-ng-conf-perl.templates:2001
#: ../liblemonldap-ng-common-perl.templates:2001
msgid "Lemonldap::NG DNS domain:"
msgstr "DNS домен Lemonldap::NG:"
#. Type: string
#. Description
#: ../liblemonldap-ng-conf-perl.templates:2001
#: ../liblemonldap-ng-common-perl.templates:2001
msgid ""
"Set here the main domain protected by Lemonldap::NG. You can modify this "
"value later using the Lemonldap::NG manager."
@ -54,13 +54,13 @@ msgstr ""
#. Type: string
#. Description
#: ../liblemonldap-ng-conf-perl.templates:3001
#: ../liblemonldap-ng-common-perl.templates:3001
msgid "Lemonldap::NG portal:"
msgstr "Портал Lemonldap::NG:"
#. Type: string
#. Description
#: ../liblemonldap-ng-conf-perl.templates:3001
#: ../liblemonldap-ng-common-perl.templates:3001
msgid ""
"Set here the Lemonldap::NG portal URL. You can modify this value later using "
"the Lemonldap::NG manager."
@ -70,13 +70,13 @@ msgstr ""
#. Type: string
#. Description
#: ../liblemonldap-ng-conf-perl.templates:4001
#: ../liblemonldap-ng-common-perl.templates:4001
msgid "LDAP server port:"
msgstr "Порт сервера LDAP:"
#. Type: string
#. Description
#: ../liblemonldap-ng-conf-perl.templates:4001
#: ../liblemonldap-ng-common-perl.templates:4001
msgid ""
"Set here the port used by the LDAP server. You can modify this value later "
"using the Lemonldap::NG manager."
@ -86,13 +86,13 @@ msgstr ""
#. Type: string
#. Description
#: ../liblemonldap-ng-conf-perl.templates:5001
#: ../liblemonldap-ng-common-perl.templates:5001
msgid "LDAP search base:"
msgstr "База поиска LDAP:"
#. Type: string
#. Description
#: ../liblemonldap-ng-conf-perl.templates:5001
#: ../liblemonldap-ng-common-perl.templates:5001
msgid ""
"Set here the search base to use in LDAP queries. You can modify this value "
"later using the Lemonldap::NG manager."
@ -102,13 +102,13 @@ msgstr ""
#. Type: string
#. Description
#: ../liblemonldap-ng-conf-perl.templates:6001
#: ../liblemonldap-ng-common-perl.templates:6001
msgid "LDAP account:"
msgstr "Учётная запись в LDAP:"
#. Type: string
#. Description
#: ../liblemonldap-ng-conf-perl.templates:6001
#: ../liblemonldap-ng-common-perl.templates:6001
msgid ""
"Set here the account that Lemonldap::NG has to use for its LDAP requests. "
"Leaving it blank causes Lemonldap::NG to use anonymous connections. You can "
@ -120,13 +120,13 @@ msgstr ""
#. Type: string
#. Description
#: ../liblemonldap-ng-conf-perl.templates:7001
#: ../liblemonldap-ng-common-perl.templates:7001
msgid "LDAP password:"
msgstr "Пароль к LDAP:"
#. Type: string
#. Description
#: ../liblemonldap-ng-conf-perl.templates:7001
#: ../liblemonldap-ng-common-perl.templates:7001
msgid ""
"Set here the password for the Lemonldap::NG LDAP account. You can modify "
"this value later using the Lemonldap::NG manager."
@ -136,7 +136,7 @@ msgstr ""
#. Type: boolean
#. Description
#: ../liblemonldap-ng-conf-perl.templates:8001
#: ../liblemonldap-ng-common-perl.templates:8001
msgid ""
"Lemonldap::NG configuration files have changed, try to migrate your files?"
msgstr ""

30
debian/po/sk.po vendored
View File

@ -21,13 +21,13 @@ msgstr ""
#. Type: string
#. Description
#: ../liblemonldap-ng-conf-perl.templates:1001
#: ../liblemonldap-ng-common-perl.templates:1001
msgid "LDAP server:"
msgstr "LDAP server:"
#. Type: string
#. Description
#: ../liblemonldap-ng-conf-perl.templates:1001
#: ../liblemonldap-ng-common-perl.templates:1001
msgid ""
"Set here name or IP address of the LDAP server that has to be used by "
"Lemonldap::NG. You can modify this value later using the Lemonldap::NG "
@ -38,13 +38,13 @@ msgstr ""
#. Type: string
#. Description
#: ../liblemonldap-ng-conf-perl.templates:2001
#: ../liblemonldap-ng-common-perl.templates:2001
msgid "Lemonldap::NG DNS domain:"
msgstr "Lemonldap::NG DNS doména:"
#. Type: string
#. Description
#: ../liblemonldap-ng-conf-perl.templates:2001
#: ../liblemonldap-ng-common-perl.templates:2001
msgid ""
"Set here the main domain protected by Lemonldap::NG. You can modify this "
"value later using the Lemonldap::NG manager."
@ -54,13 +54,13 @@ msgstr ""
#. Type: string
#. Description
#: ../liblemonldap-ng-conf-perl.templates:3001
#: ../liblemonldap-ng-common-perl.templates:3001
msgid "Lemonldap::NG portal:"
msgstr "Lemonldap::NG portál:"
#. Type: string
#. Description
#: ../liblemonldap-ng-conf-perl.templates:3001
#: ../liblemonldap-ng-common-perl.templates:3001
msgid ""
"Set here the Lemonldap::NG portal URL. You can modify this value later using "
"the Lemonldap::NG manager."
@ -70,13 +70,13 @@ msgstr ""
#. Type: string
#. Description
#: ../liblemonldap-ng-conf-perl.templates:4001
#: ../liblemonldap-ng-common-perl.templates:4001
msgid "LDAP server port:"
msgstr "Port LDAP servera:"
#. Type: string
#. Description
#: ../liblemonldap-ng-conf-perl.templates:4001
#: ../liblemonldap-ng-common-perl.templates:4001
msgid ""
"Set here the port used by the LDAP server. You can modify this value later "
"using the Lemonldap::NG manager."
@ -86,13 +86,13 @@ msgstr ""
#. Type: string
#. Description
#: ../liblemonldap-ng-conf-perl.templates:5001
#: ../liblemonldap-ng-common-perl.templates:5001
msgid "LDAP search base:"
msgstr "Koreň LDAP vyhľadávania:"
#. Type: string
#. Description
#: ../liblemonldap-ng-conf-perl.templates:5001
#: ../liblemonldap-ng-common-perl.templates:5001
msgid ""
"Set here the search base to use in LDAP queries. You can modify this value "
"later using the Lemonldap::NG manager."
@ -102,13 +102,13 @@ msgstr ""
#. Type: string
#. Description
#: ../liblemonldap-ng-conf-perl.templates:6001
#: ../liblemonldap-ng-common-perl.templates:6001
msgid "LDAP account:"
msgstr "LDAP účet:"
#. Type: string
#. Description
#: ../liblemonldap-ng-conf-perl.templates:6001
#: ../liblemonldap-ng-common-perl.templates:6001
msgid ""
"Set here the account that Lemonldap::NG has to use for its LDAP requests. "
"Leaving it blank causes Lemonldap::NG to use anonymous connections. You can "
@ -120,13 +120,13 @@ msgstr ""
#. Type: string
#. Description
#: ../liblemonldap-ng-conf-perl.templates:7001
#: ../liblemonldap-ng-common-perl.templates:7001
msgid "LDAP password:"
msgstr "LDAP heslo:"
#. Type: string
#. Description
#: ../liblemonldap-ng-conf-perl.templates:7001
#: ../liblemonldap-ng-common-perl.templates:7001
msgid ""
"Set here the password for the Lemonldap::NG LDAP account. You can modify "
"this value later using the Lemonldap::NG manager."
@ -136,7 +136,7 @@ msgstr ""
#. Type: boolean
#. Description
#: ../liblemonldap-ng-conf-perl.templates:8001
#: ../liblemonldap-ng-common-perl.templates:8001
msgid ""
"Lemonldap::NG configuration files have changed, try to migrate your files?"
msgstr ""

30
debian/po/sv.po vendored
View File

@ -21,13 +21,13 @@ msgstr ""
#. Type: string
#. Description
#: ../liblemonldap-ng-conf-perl.templates:1001
#: ../liblemonldap-ng-common-perl.templates:1001
msgid "LDAP server:"
msgstr "LDAP-server:"
#. Type: string
#. Description
#: ../liblemonldap-ng-conf-perl.templates:1001
#: ../liblemonldap-ng-common-perl.templates:1001
msgid ""
"Set here name or IP address of the LDAP server that has to be used by "
"Lemonldap::NG. You can modify this value later using the Lemonldap::NG "
@ -38,13 +38,13 @@ msgstr ""
#. Type: string
#. Description
#: ../liblemonldap-ng-conf-perl.templates:2001
#: ../liblemonldap-ng-common-perl.templates:2001
msgid "Lemonldap::NG DNS domain:"
msgstr "Lemonldap::NG DNS domän:"
#. Type: string
#. Description
#: ../liblemonldap-ng-conf-perl.templates:2001
#: ../liblemonldap-ng-common-perl.templates:2001
msgid ""
"Set here the main domain protected by Lemonldap::NG. You can modify this "
"value later using the Lemonldap::NG manager."
@ -54,13 +54,13 @@ msgstr ""
#. Type: string
#. Description
#: ../liblemonldap-ng-conf-perl.templates:3001
#: ../liblemonldap-ng-common-perl.templates:3001
msgid "Lemonldap::NG portal:"
msgstr "Lemonldap::NG-portal:"
#. Type: string
#. Description
#: ../liblemonldap-ng-conf-perl.templates:3001
#: ../liblemonldap-ng-common-perl.templates:3001
msgid ""
"Set here the Lemonldap::NG portal URL. You can modify this value later using "
"the Lemonldap::NG manager."
@ -70,13 +70,13 @@ msgstr ""
#. Type: string
#. Description
#: ../liblemonldap-ng-conf-perl.templates:4001
#: ../liblemonldap-ng-common-perl.templates:4001
msgid "LDAP server port:"
msgstr "LDAP-server-port:"
#. Type: string
#. Description
#: ../liblemonldap-ng-conf-perl.templates:4001
#: ../liblemonldap-ng-common-perl.templates:4001
msgid ""
"Set here the port used by the LDAP server. You can modify this value later "
"using the Lemonldap::NG manager."
@ -86,13 +86,13 @@ msgstr ""
#. Type: string
#. Description
#: ../liblemonldap-ng-conf-perl.templates:5001
#: ../liblemonldap-ng-common-perl.templates:5001
msgid "LDAP search base:"
msgstr "Sökbas för LDAP:"
#. Type: string
#. Description
#: ../liblemonldap-ng-conf-perl.templates:5001
#: ../liblemonldap-ng-common-perl.templates:5001
msgid ""
"Set here the search base to use in LDAP queries. You can modify this value "
"later using the Lemonldap::NG manager."
@ -102,13 +102,13 @@ msgstr ""
#. Type: string
#. Description
#: ../liblemonldap-ng-conf-perl.templates:6001
#: ../liblemonldap-ng-common-perl.templates:6001
msgid "LDAP account:"
msgstr "LDAP-konto:"
#. Type: string
#. Description
#: ../liblemonldap-ng-conf-perl.templates:6001
#: ../liblemonldap-ng-common-perl.templates:6001
msgid ""
"Set here the account that Lemonldap::NG has to use for its LDAP requests. "
"Leaving it blank causes Lemonldap::NG to use anonymous connections. You can "
@ -120,13 +120,13 @@ msgstr ""
#. Type: string
#. Description
#: ../liblemonldap-ng-conf-perl.templates:7001
#: ../liblemonldap-ng-common-perl.templates:7001
msgid "LDAP password:"
msgstr "LDAP-lösenord:"
#. Type: string
#. Description
#: ../liblemonldap-ng-conf-perl.templates:7001
#: ../liblemonldap-ng-common-perl.templates:7001
msgid ""
"Set here the password for the Lemonldap::NG LDAP account. You can modify "
"this value later using the Lemonldap::NG manager."
@ -136,7 +136,7 @@ msgstr ""
#. Type: boolean
#. Description
#: ../liblemonldap-ng-conf-perl.templates:8001
#: ../liblemonldap-ng-common-perl.templates:8001
msgid ""
"Lemonldap::NG configuration files have changed, try to migrate your files?"
msgstr ""

View File

@ -19,13 +19,13 @@ msgstr ""
#. Type: string
#. Description
#: ../liblemonldap-ng-conf-perl.templates:1001
#: ../liblemonldap-ng-common-perl.templates:1001
msgid "LDAP server:"
msgstr ""
#. Type: string
#. Description
#: ../liblemonldap-ng-conf-perl.templates:1001
#: ../liblemonldap-ng-common-perl.templates:1001
msgid ""
"Set here name or IP address of the LDAP server that has to be used by "
"Lemonldap::NG. You can modify this value later using the Lemonldap::NG "
@ -34,13 +34,13 @@ msgstr ""
#. Type: string
#. Description
#: ../liblemonldap-ng-conf-perl.templates:2001
#: ../liblemonldap-ng-common-perl.templates:2001
msgid "Lemonldap::NG DNS domain:"
msgstr ""
#. Type: string
#. Description
#: ../liblemonldap-ng-conf-perl.templates:2001
#: ../liblemonldap-ng-common-perl.templates:2001
msgid ""
"Set here the main domain protected by Lemonldap::NG. You can modify this "
"value later using the Lemonldap::NG manager."
@ -48,13 +48,13 @@ msgstr ""
#. Type: string
#. Description
#: ../liblemonldap-ng-conf-perl.templates:3001
#: ../liblemonldap-ng-common-perl.templates:3001
msgid "Lemonldap::NG portal:"
msgstr ""
#. Type: string
#. Description
#: ../liblemonldap-ng-conf-perl.templates:3001
#: ../liblemonldap-ng-common-perl.templates:3001
msgid ""
"Set here the Lemonldap::NG portal URL. You can modify this value later using "
"the Lemonldap::NG manager."
@ -62,13 +62,13 @@ msgstr ""
#. Type: string
#. Description
#: ../liblemonldap-ng-conf-perl.templates:4001
#: ../liblemonldap-ng-common-perl.templates:4001
msgid "LDAP server port:"
msgstr ""
#. Type: string
#. Description
#: ../liblemonldap-ng-conf-perl.templates:4001
#: ../liblemonldap-ng-common-perl.templates:4001
msgid ""
"Set here the port used by the LDAP server. You can modify this value later "
"using the Lemonldap::NG manager."
@ -76,13 +76,13 @@ msgstr ""
#. Type: string
#. Description
#: ../liblemonldap-ng-conf-perl.templates:5001
#: ../liblemonldap-ng-common-perl.templates:5001
msgid "LDAP search base:"
msgstr ""
#. Type: string
#. Description
#: ../liblemonldap-ng-conf-perl.templates:5001
#: ../liblemonldap-ng-common-perl.templates:5001
msgid ""
"Set here the search base to use in LDAP queries. You can modify this value "
"later using the Lemonldap::NG manager."
@ -90,13 +90,13 @@ msgstr ""
#. Type: string
#. Description
#: ../liblemonldap-ng-conf-perl.templates:6001
#: ../liblemonldap-ng-common-perl.templates:6001
msgid "LDAP account:"
msgstr ""
#. Type: string
#. Description
#: ../liblemonldap-ng-conf-perl.templates:6001
#: ../liblemonldap-ng-common-perl.templates:6001
msgid ""
"Set here the account that Lemonldap::NG has to use for its LDAP requests. "
"Leaving it blank causes Lemonldap::NG to use anonymous connections. You can "
@ -105,13 +105,13 @@ msgstr ""
#. Type: string
#. Description
#: ../liblemonldap-ng-conf-perl.templates:7001
#: ../liblemonldap-ng-common-perl.templates:7001
msgid "LDAP password:"
msgstr ""
#. Type: string
#. Description
#: ../liblemonldap-ng-conf-perl.templates:7001
#: ../liblemonldap-ng-common-perl.templates:7001
msgid ""
"Set here the password for the Lemonldap::NG LDAP account. You can modify "
"this value later using the Lemonldap::NG manager."
@ -119,7 +119,7 @@ msgstr ""
#. Type: boolean
#. Description
#: ../liblemonldap-ng-conf-perl.templates:8001
#: ../liblemonldap-ng-common-perl.templates:8001
msgid ""
"Lemonldap::NG configuration files have changed, try to migrate your files?"
msgstr ""

12
debian/rules vendored
View File

@ -60,11 +60,11 @@ override_dh_fixperms:
chown www-data:www-data \
debian/*/$(SESSIONSDIR) \
debian/*/$(SESSIONSDIR)/lock \
debian/liblemonldap-ng-conf-perl/$(CONFSTORAGEDIR) \
debian/liblemonldap-ng-common-perl/$(CONFSTORAGEDIR) \
debian/liblemonldap-ng-portal-perl/$(CAPTCHADIR)
chgrp www-data debian/liblemonldap-ng-conf-perl/$(LMINIFILE) \
debian/liblemonldap-ng-conf-perl/$(FIRSTCONFFILE)
chgrp www-data debian/liblemonldap-ng-common-perl/$(LMINIFILE) \
debian/liblemonldap-ng-common-perl/$(FIRSTCONFFILE)
chmod 770 debian/*/$(SESSIONSDIR) debian/*/$(SESSIONSDIR)/lock
chmod 750 debian/liblemonldap-ng-conf-perl/$(CONFSTORAGEDIR)
chmod 640 debian/liblemonldap-ng-conf-perl/$(FIRSTCONFFILE) \
debian/liblemonldap-ng-conf-perl/$(LMINIFILE)
chmod 750 debian/liblemonldap-ng-common-perl/$(CONFSTORAGEDIR)
chmod 640 debian/liblemonldap-ng-common-perl/$(FIRSTCONFFILE) \
debian/liblemonldap-ng-common-perl/$(LMINIFILE)