[Pkg-citadel-commit] r248 - citadel/tags citadel/tags/7.42-1/debian citadel/tags/7.42-1/debian/po libcitadel/tags webcit/tags
meskes at alioth.debian.org
meskes at alioth.debian.org
Mon Mar 2 12:29:32 UTC 2009
Author: meskes
Date: 2009-03-02 12:29:31 +0000 (Mon, 02 Mar 2009)
New Revision: 248
Added:
citadel/tags/7.42-1/
citadel/tags/7.42-1/debian/citadel-server.config
citadel/tags/7.42-1/debian/citadel-server.postinst
citadel/tags/7.42-1/debian/citadel-server.templates
citadel/tags/7.42-1/debian/po/ar.po
citadel/tags/7.42-1/debian/po/cs.po
citadel/tags/7.42-1/debian/po/de.po
citadel/tags/7.42-1/debian/po/fi.po
citadel/tags/7.42-1/debian/po/fr.po
citadel/tags/7.42-1/debian/po/pt.po
citadel/tags/7.42-1/debian/po/ru.po
citadel/tags/7.42-1/debian/po/sv.po
citadel/tags/7.42-1/debian/po/templates.pot
citadel/tags/7.42-1/debian/po/vi.po
libcitadel/tags/7.42-1/
webcit/tags/7.42-dfsg-1/
Removed:
citadel/tags/7.42-1/debian/citadel-server.config
citadel/tags/7.42-1/debian/citadel-server.postinst
citadel/tags/7.42-1/debian/citadel-server.templates
citadel/tags/7.42-1/debian/po/ar.po
citadel/tags/7.42-1/debian/po/cs.po
citadel/tags/7.42-1/debian/po/de.po
citadel/tags/7.42-1/debian/po/fi.po
citadel/tags/7.42-1/debian/po/fr.po
citadel/tags/7.42-1/debian/po/pt.po
citadel/tags/7.42-1/debian/po/ru.po
citadel/tags/7.42-1/debian/po/sv.po
citadel/tags/7.42-1/debian/po/templates.pot
citadel/tags/7.42-1/debian/po/vi.po
Log:
Released 7.42 packages.
Copied: citadel/tags/7.42-1 (from rev 244, citadel/trunk)
Deleted: citadel/tags/7.42-1/debian/citadel-server.config
===================================================================
--- citadel/trunk/debian/citadel-server.config 2009-03-01 20:59:31 UTC (rev 244)
+++ citadel/tags/7.42-1/debian/citadel-server.config 2009-03-02 12:29:31 UTC (rev 248)
@@ -1,55 +0,0 @@
-#!/bin/sh
-set -e
-
-# source debconf stuff
-. /usr/share/debconf/confmodule
-db_version 2.0
-
-db_capb backup
-
-DO_CONFIGURE=no
-
-if test -n "$2"; then
-# do we want to reconfigure?
- if test "`echo $2 | sed -e 's/[.-]//g' -e 's;ubuntu;;'`" -lt 127 \
- -o "$1" = reconfigure
- then
- DO_CONFIGURE=yes
- fi
-else
-# are we in first install?
- if test "$1" = "configure"; then
- DO_CONFIGURE=yes
- fi
-fi
-
-
-if test "$DO_CONFIGURE" = "yes"; then
- STATE=1
- LASTSTATE=3
- while [ "$STATE" != 0 -a "$STATE" -le "$LASTSTATE" ]; do
-
- case "$STATE" in
- 1)
- db_input high citadel/ServerIPAddress || true
- ;;
- 2)
- db_input high citadel/Administrator || true
- ;;
- 3)
- db_input high citadel/LoginType || true
- ;;
-
-
- esac
- if db_go; then
- STATE=$(($STATE + 1))
- else
- STATE=$(($STATE - 1))
- fi
-
- done
-
-fi
-
-exit 0
Copied: citadel/tags/7.42-1/debian/citadel-server.config (from rev 246, citadel/trunk/debian/citadel-server.config)
===================================================================
--- citadel/tags/7.42-1/debian/citadel-server.config (rev 0)
+++ citadel/tags/7.42-1/debian/citadel-server.config 2009-03-02 12:29:31 UTC (rev 248)
@@ -0,0 +1,102 @@
+#!/bin/sh
+set -e
+
+# source debconf stuff
+. /usr/share/debconf/confmodule
+db_version 2.0
+
+db_capb backup
+
+DO_CONFIGURE=no
+LASTSTATE=3
+
+if test -n "$2"; then
+# do we want to reconfigure?
+ if test "`echo $2 | sed -e 's/[.-]//g' -e 's;ubuntu;;'`" -lt 127 \
+ -o "$1" = reconfigure
+ then
+ DO_CONFIGURE=yes
+ fi
+else
+# are we in first install?
+ if test "$1" = "configure"; then
+ DO_CONFIGURE=yes
+ LASTSTATE=5
+ fi
+fi
+
+
+if test "$DO_CONFIGURE" = "yes"; then
+ STATE=1
+ while [ "$STATE" != 0 -a "$STATE" -le "$LASTSTATE" ]; do
+
+ case "$STATE" in
+ 1)
+ db_input high citadel/ServerIPAddress || true
+ ;;
+ 2)
+ db_input high citadel/LoginType || true
+ ;;
+ 3)
+ db_input high citadel/Administrator || true
+ ;;
+ 4)
+ db_input high citadel/Password || true
+ ;;
+ 5)
+ db_input high citadel/Password_again || true
+ ;;
+ esac
+
+ if db_go; then
+ case "$STATE" in
+ 1)
+ ;;
+ 2)
+ db_get citadel/LoginType
+ LoginType=$RET
+ if [ "$LoginType" = "true" ]; then
+ # external authentification, user has to exist
+ LASTSTATE=3
+ fi
+ ;;
+ 3)
+ if [ "$LoginType" = "true" ]; then
+ db_get citadel/Administrator
+ if ! getent passwd $RET >/dev/null; then
+ # user doesn't exist
+ db_fset citadel/BadUser seen false
+ db_input critical citadel/BadUser || true
+ db_go
+ STATE=$(($STATE - 1))
+ fi
+ fi
+ ;;
+ 4)
+ db_get citadel/Password
+ PW=$RET
+ if [ -z "$PW" ]; then
+ # empty password, no need to ask again
+ LASTSTATE=4
+ fi
+ ;;
+ 5)
+ db_get citadel/Password_again
+ # check if passwords match
+ if [ "$RET" != "$PW" ]; then
+ # try again
+ STATE=$(($STATE - 2))
+ PW=' '
+ fi
+ ;;
+ esac
+ STATE=$(($STATE + 1))
+ else
+ STATE=$(($STATE - 1))
+ fi
+
+ done
+
+fi
+
+exit 0
Deleted: citadel/tags/7.42-1/debian/citadel-server.postinst
===================================================================
--- citadel/trunk/debian/citadel-server.postinst 2009-03-01 20:59:31 UTC (rev 244)
+++ citadel/tags/7.42-1/debian/citadel-server.postinst 2009-03-02 12:29:31 UTC (rev 248)
@@ -1,94 +0,0 @@
-#!/bin/sh
-# postinst script for citadel-server
-
-set -e
-
-# source debconf stuff
-. /usr/share/debconf/confmodule
-db_version 2.0
-
-move_file()
-{
- [ ! -f $1 ] && return
- [ -f $2 ] && return
- mv -f $1 $2
-}
-
-case "$1" in
- configure)
- chown -R citadel:citadel /etc/citadel
- chown -R citadel:citadel /var/lib/citadel /var/spool/citadel
-
- move_file /var/run/refcount_adjustments.dat /etc/citadel/data/refcount_adjustments.dat
- move_file /etc/citadel/citadel.control /var/lib/citadel/data/citadel.control
- move_file /etc/citadel/citadel.config /var/lib/citadel/data/citadel.config
-
- db_get citadel/Administrator && admin="$RET"
- db_get citadel/ServerIPAddress && ip_addr="$RET"
- db_get citadel/LoginType && deb_enable_unix_auth="$RET"
-
- if test "$deb_enable_unix_auth" = "true"; then
- export ENABLE_UNIX_AUTH=yes
- else
- export ENABLE_UNIX_AUTH=no
- fi
-
- export IP_ADDR=$ip_addr
- export CITADEL_INSTALLER=yes
- export ACT_AS_MTA=no
- export SYSADMIN_NAME=$admin
- export CREATE_XINETD_ENTRY=no
- export CREATE_INITTAB_ENTRY=no
- export NO_INIT_SCRIPTS=yes
-
- echo "applying your settings."
- /usr/lib/citadel-server/setup -q
-
- # we're in a fresh install, so we send the welcome message.
- if test -z "$2"; then
- export SUPPRESS_DBVERSION_CHECK=yes
- /usr/lib/citadel-server/migrate_aliases.sh /etc/citadel/mail.aliases
- i=0;
- while test ! -S /var/run/citadel/lmtp.socket -a "$i" -lt "10"; do
- sleep 1
- i=$(($i + 1))
- done
- if test -S /var/run/citadel/lmtp.socket -a -x /usr/sbin/citmail ; then
- export SEPERATOR=2600908b3f21ae7f692b973ed26e212d
- export WELCOMEHTML=/usr/share/doc/citadel-server/welcomemail.html
- export WELCOMETXT=/usr/share/doc/citadel-server/welcomemail.txt
- export FROM=room_citadel_stats at uncensored.citadel.org
- export TO=room_lobby
- (
- printf "MIME-Version: 1.0\r\nContent-Type: multipart/alternative; \r\n boundary=$SEPERATOR\r\n\r\nThis is a multi-part message in MIME format.\r\n\r\n--$SEPERATOR\r\nContent-Type: text/plain; charset=utf-8\r\nContent-Transfer-Encoding: quoted-printable\r\n\r\n";
- cat $WELCOMETXT
- printf "\r\n\r\n--$SEPERATOR\r\nContent-Type: text/html; charset=US-ASCII\r\nContent-Transfer-Encoding: quoted-printable\r\n\r\n"
- cat $WELCOMEHTML;
- printf "\r\n\r\n--$SEPERATOR--\r\n\r\n") | \
- citmail -bm -r "$FROM" "$TO"
- fi
- fi
-
- if test -S /var/run/citadel/citadel.socket; then
- sendcommand "DOWN"
- fi
-
- while test -S /var/run/citadel/citadel.socket; do
- sleep 1
- done
-
- db_stop
- ;;
-
- abort-upgrade|abort-remove|abort-deconfigure)
- ;;
-
- *)
- echo "postinst called with unknown argument \`$1'" >&2
- exit 1
- ;;
-esac
-
-#DEBHELPER#
-
-exit 0
Copied: citadel/tags/7.42-1/debian/citadel-server.postinst (from rev 246, citadel/trunk/debian/citadel-server.postinst)
===================================================================
--- citadel/tags/7.42-1/debian/citadel-server.postinst (rev 0)
+++ citadel/tags/7.42-1/debian/citadel-server.postinst 2009-03-02 12:29:31 UTC (rev 248)
@@ -0,0 +1,99 @@
+#!/bin/sh
+# postinst script for citadel-server
+
+set -e
+
+# source debconf stuff
+. /usr/share/debconf/confmodule
+db_version 2.0
+
+move_file()
+{
+ [ ! -f $1 ] && return
+ [ -f $2 ] && return
+ mv -f $1 $2
+}
+
+case "$1" in
+ configure)
+ chown -R citadel:citadel /etc/citadel
+ chown -R citadel:citadel /var/lib/citadel /var/spool/citadel
+
+ move_file /var/run/refcount_adjustments.dat /etc/citadel/data/refcount_adjustments.dat
+ move_file /etc/citadel/citadel.control /var/lib/citadel/data/citadel.control
+ move_file /etc/citadel/citadel.config /var/lib/citadel/data/citadel.config
+
+ db_get citadel/Administrator && admin="$RET"
+ db_get citadel/ServerIPAddress && ip_addr="$RET"
+ db_get citadel/LoginType && deb_enable_unix_auth="$RET"
+
+ if test "$deb_enable_unix_auth" = "true"; then
+ export ENABLE_UNIX_AUTH=yes
+ else
+ export ENABLE_UNIX_AUTH=no
+ # we're in a fresh install, so we have to set the password for the new user
+ if test -z "$2"; then
+ db_get citadel/Password && pw="$RET"
+ export SYSADMIN_PW=$pw
+ fi
+ fi
+
+ export IP_ADDR=$ip_addr
+ export CITADEL_INSTALLER=yes
+ export ACT_AS_MTA=no
+ export SYSADMIN_NAME=$admin
+ export CREATE_XINETD_ENTRY=no
+ export CREATE_INITTAB_ENTRY=no
+ export NO_INIT_SCRIPTS=yes
+
+ echo "applying your settings."
+ /usr/lib/citadel-server/setup -q
+
+ # we're in a fresh install, so we send the welcome message.
+ if test -z "$2"; then
+ export SUPPRESS_DBVERSION_CHECK=yes
+ /usr/lib/citadel-server/migrate_aliases.sh /etc/citadel/mail.aliases
+ i=0;
+ while test ! -S /var/run/citadel/lmtp.socket -a "$i" -lt "10"; do
+ sleep 1
+ i=$(($i + 1))
+ done
+ if test -S /var/run/citadel/lmtp.socket -a -x /usr/sbin/citmail ; then
+ export SEPERATOR=2600908b3f21ae7f692b973ed26e212d
+ export WELCOMEHTML=/usr/share/doc/citadel-server/welcomemail.html
+ export WELCOMETXT=/usr/share/doc/citadel-server/welcomemail.txt
+ export FROM=room_citadel_stats at uncensored.citadel.org
+ export TO=room_lobby
+ (
+ printf "MIME-Version: 1.0\r\nContent-Type: multipart/alternative; \r\n boundary=$SEPERATOR\r\n\r\nThis is a multi-part message in MIME format.\r\n\r\n--$SEPERATOR\r\nContent-Type: text/plain; charset=utf-8\r\nContent-Transfer-Encoding: quoted-printable\r\n\r\n";
+ cat $WELCOMETXT
+ printf "\r\n\r\n--$SEPERATOR\r\nContent-Type: text/html; charset=US-ASCII\r\nContent-Transfer-Encoding: quoted-printable\r\n\r\n"
+ cat $WELCOMEHTML;
+ printf "\r\n\r\n--$SEPERATOR--\r\n\r\n") | \
+ citmail -bm -r "$FROM" "$TO"
+ fi
+ fi
+
+ if test -S /var/run/citadel/citadel.socket; then
+ sendcommand "DOWN"
+ fi
+
+ while test -S /var/run/citadel/citadel.socket; do
+ sleep 1
+ done
+
+ db_stop
+ ;;
+
+ abort-upgrade|abort-remove|abort-deconfigure)
+ ;;
+
+ *)
+ echo "postinst called with unknown argument \`$1'" >&2
+ exit 1
+ ;;
+esac
+
+#DEBHELPER#
+
+exit 0
Deleted: citadel/tags/7.42-1/debian/citadel-server.templates
===================================================================
--- citadel/trunk/debian/citadel-server.templates 2009-03-01 20:59:31 UTC (rev 244)
+++ citadel/tags/7.42-1/debian/citadel-server.templates 2009-03-02 12:29:31 UTC (rev 248)
@@ -1,28 +0,0 @@
-Template: citadel/ServerIPAddress
-Type: string
-Default: 0.0.0.0
-_Description: Listening address for the Citadel server:
- Please specify the IP address which the server should be listening to. If you
- specify 0.0.0.0, the server will listen on all addresses.
- .
- This can usually be left to the default unless multiple instances
- of Citadel are running on the same computer.
-
-Template: citadel/LoginType
-Type: boolean
-Default: false
-_Description: Enable external authentication mode?
- Please choose the user authentication mode. By default Citadel will
- use its own internal user accounts database. If you accept this
- option, Citadel users will have accounts on the host system,
- authenticated via /etc/passwd (or LDAP).
- .
- Do not accept this option unless you are sure it is required, since
- changing back requires a full reinstall of Citadel.
-
-Template: citadel/Administrator
-Type: string
-Default: Administrator
-_Description: Citadel administrator username:
- Please enter the name of the Citadel user account that should be granted
- administrative privileges once created.
Copied: citadel/tags/7.42-1/debian/citadel-server.templates (from rev 246, citadel/trunk/debian/citadel-server.templates)
===================================================================
--- citadel/tags/7.42-1/debian/citadel-server.templates (rev 0)
+++ citadel/tags/7.42-1/debian/citadel-server.templates 2009-03-02 12:29:31 UTC (rev 248)
@@ -0,0 +1,44 @@
+Template: citadel/ServerIPAddress
+Type: string
+Default: 0.0.0.0
+_Description: Listening address for the Citadel server:
+ Please specify the IP address which the server should be listening to. If you
+ specify 0.0.0.0, the server will listen on all addresses.
+ .
+ This can usually be left to the default unless multiple instances
+ of Citadel are running on the same computer.
+
+Template: citadel/LoginType
+Type: boolean
+Default: false
+_Description: Enable external authentication mode?
+ Please choose the user authentication mode. By default Citadel will
+ use its own internal user accounts database. If you accept this
+ option, Citadel users will have accounts on the host system,
+ authenticated via /etc/passwd (or LDAP).
+ .
+ Do not accept this option unless you are sure it is required, since
+ changing back requires a full reinstall of Citadel.
+
+Template: citadel/Administrator
+Type: string
+Default: admin
+_Description: Citadel administrator username:
+ Please enter the name of the Citadel user account that should be granted
+ administrative privileges once created.
+ If using internal authentification this user account will be created if it does
+ not exist. For external authentification this user account has to exist.
+
+Template: citadel/Password
+Type: password
+_Description: Administrator password:
+ While not mandatory, it is highly recommended that you set a password
+ for the administrator user.
+
+Template: citadel/Password_again
+Type: password
+Description: Repeat password for the administrator user:
+
+Template: citadel/BadUser
+Type: error
+Description: User does not exist.
Deleted: citadel/tags/7.42-1/debian/po/ar.po
===================================================================
--- citadel/trunk/debian/po/ar.po 2009-03-01 20:59:31 UTC (rev 244)
+++ citadel/tags/7.42-1/debian/po/ar.po 2009-03-02 12:29:31 UTC (rev 248)
@@ -1,121 +0,0 @@
-# translation of ar.po to Arabic
-# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the PACKAGE package.
-#
-# Ossama M. Khayat <okhayat at yahoo.com>, 2008.
-msgid ""
-msgstr ""
-"Project-Id-Version: ar\n"
-"Report-Msgid-Bugs-To: citadel at packages.debian.org\n"
-"POT-Creation-Date: 2008-08-15 13:43+0200\n"
-"PO-Revision-Date: 2008-04-03 17:55+0300\n"
-"Last-Translator: Ossama M. Khayat <okhayat at yahoo.com>\n"
-"Language-Team: Arabic <support at arabeyes.org>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: KBabel 1.11.4\n"
-
-#. Type: string
-#. Description
-#: ../citadel-server.templates:1001
-#, fuzzy
-#| msgid "Listen IP for Citadel:"
-msgid "Listening address for the Citadel server:"
-msgstr "عÙÙØ§Ù IP اÙÙ
خصص ÙØ®Ø§Ø¯Ù
Citadel:"
-
-#. Type: string
-#. Description
-#: ../citadel-server.templates:1001
-#, fuzzy
-#| msgid ""
-#| "Specify the IP address on which your server will run. If you specify "
-#| "0.0.0.0, Citadel will listen on all addresses. You can usually skip this "
-#| "unless you are running multiple instances of Citadel on the same computer."
-msgid ""
-"Please specify the IP address which the server should be listening to. If "
-"you specify 0.0.0.0, the server will listen on all addresses."
-msgstr ""
-"ØØ¯Ø¯ عÙÙØ§Ù IP Ø§ÙØ°Ù سÙÙØµØª Ø¥ÙÙÙ Ø§ÙØ®Ø§Ø¯Ù
. Ø¥Ù ÙÙ
ت Ø¨ØªØØ¯Ùد Ø§ÙØ¹ÙÙØ§Ù 0.0.0.0Ø ÙØ³ÙÙØµØª "
-"Citadel Ø¥Ù٠جÙ
ÙØ¹ Ø§ÙØ¹ÙاÙÙÙ. ÙÙ
ÙÙ٠عادة ØªØ®Ø·Ù ÙØ°Ù Ø§ÙØ®Ø·ÙØ© Ù
ا ÙÙ
ÙÙÙ ÙØ¯Ù٠عدة "
-"Ø£Ù
ثا٠Ù
Ù Citadel عÙÙ ÙÙØ³ Ø§ÙØ¬Ùاز."
-
-#. Type: string
-#. Description
-#: ../citadel-server.templates:1001
-msgid ""
-"This can usually be left to the default unless multiple instances of Citadel "
-"are running on the same computer."
-msgstr ""
-
-#. Type: boolean
-#. Description
-#: ../citadel-server.templates:2001
-msgid "Enable external authentication mode?"
-msgstr "ØªØ±ÙØ¯ تÙ
ÙÙÙ ÙØ¶Ø¹ اÙÙ
ØµØ§Ø¯ÙØ© Ø§ÙØ®Ø§Ø±Ø¬ÙØ©Ø"
-
-#. Type: boolean
-#. Description
-#: ../citadel-server.templates:2001
-msgid ""
-"Please choose the user authentication mode. By default Citadel will use its "
-"own internal user accounts database. If you accept this option, Citadel "
-"users will have accounts on the host system, authenticated via /etc/passwd "
-"(or LDAP)."
-msgstr ""
-
-#. Type: boolean
-#. Description
-#: ../citadel-server.templates:2001
-msgid ""
-"Do not accept this option unless you are sure it is required, since changing "
-"back requires a full reinstall of Citadel."
-msgstr ""
-
-#. Type: string
-#. Description
-#: ../citadel-server.templates:3001
-#, fuzzy
-#| msgid "Citadel administrator:"
-msgid "Citadel administrator username:"
-msgstr "Ù
Ø¯ÙØ± Citadel:"
-
-#. Type: string
-#. Description
-#: ../citadel-server.templates:3001
-#, fuzzy
-#| msgid ""
-#| "Enter the name of the Citadel administrator (which is probably you). When "
-#| "an account is created with this name, it will automatically be given "
-#| "administrator-level access."
-msgid ""
-"Please enter the name of the Citadel user account that should be granted "
-"administrative privileges once created."
-msgstr ""
-"أدخ٠اسÙ
Ù
Ø¯ÙØ± Citadel (ÙØ§Ùذ٠ÙÙ Ø§ÙØª ØºØ§ÙØ¨Ø§Ù). Ø¹ÙØ¯Ù
ا ÙØªÙ
Ø¥ÙØ´Ø§Ø¡ ØØ³Ø§Ø¨ اÙÙ
ستخدÙ
"
-"Ø¨ÙØ°Ø§ Ø§ÙØ§Ø³Ù
Ø Ø³ÙÙØ¹Ø·Ù ØµÙØ§ØÙات ÙØµÙ٠اÙÙ
Ø¯ÙØ± تÙÙØ§Ø¦ÙاÙ."
-
-#~ msgid ""
-#~ "Specify the way authentication is done, either host based or Citadel "
-#~ "internal. Host based authentication could be /etc/passwd or an LDAP "
-#~ "directory. WARNING: do not change this setting once your system is "
-#~ "installed. Answer \"no\" unless you completely understand this option."
-#~ msgstr ""
-#~ "ØØ¯Ø¯ Ø§ÙØ·Ø±ÙÙØ© Ø§ÙØªÙ تتÙ
Ø¨ÙØ§ اÙÙ
ØµØ§Ø¯ÙØ©Ø Ø¥Ù
ا عبر اسÙ
اÙÙ
ضÙ٠أ٠طرÙÙØ© Citadel "
-#~ "Ø§ÙØ®Ø§ØµØ©. تÙÙÙ Ù
ØµØ§Ø¯ÙØ© اÙÙ
ضÙ٠عبر /etc/passwd أ٠دÙÙÙ LDAP. ØªÙØ¨ÙÙ: ÙØ§ ØªÙØºÙÙØ± "
-#~ "ÙØ°Ø§ Ø§ÙØ®Ùار Ø¹ÙØ¨ ØªØ«Ø¨ÙØª ÙØ¸Ø§Ù
Ù. أجب باÙÙÙÙ Ù
ا ÙÙ
تÙ٠تÙÙÙ
ÙØ°Ø§ Ø§ÙØ®Ùار تÙ
اÙ
اÙ."
-
-#~ msgid "Citadel/UX"
-#~ msgstr "Citadel/UX"
-
-#~ msgid ""
-#~ "For post configuring your Citadel Server, use citadel-webcit with your "
-#~ "browser, log in as the user you specified as the Administrator, and "
-#~ "review the Points under the Administration menu. If you have further "
-#~ "questions review www.citadel.org, especially the FAQ and Documentation "
-#~ "section."
-#~ msgstr ""
-#~ "Ù٠تÙÙÙ
بتÙÙØ¦Ø© خادÙ
Citadel ÙØ§ØÙØ§ÙØ استخدÙ
citadel-webcit Ù
Ù Ø®ÙØ§Ù Ù
ØªØµÙØÙØ "
-#~ "ادخ٠باسÙ
اÙÙ
ستخدÙ
Ø§ÙØ°Ù ØØ¯Ø¯ØªÙ ÙÙ
Ø¯ÙØ±Ø ÙØ§Ø³ØªØ¹Ø±Ø¶ اÙÙÙØ§Ø· ضÙ
Ù ÙØ§Ø¦Ù
Ø© Ø§ÙØ¥Ø¯Ø§Ø±Ø©. Ø¥Ù "
-#~ "ÙØ§Ùت ÙØ¯ÙÙ Ø£Ø³Ø¦ÙØ© Ø£Ø®Ø±Ù Ø±Ø¬Ø§Ø¡Ù Ø²ÙØ± اÙÙ
ÙÙØ¹ www.citadel.orgØ ÙØ¨Ø§ÙØªØØ¯Ùد ÙØ³Ù
"
-#~ "Ø§ÙØ£Ø³Ø¦ÙØ© اÙÙ
ØªÙØ±Ø±Ø© ÙØ§ÙØªÙØ«ÙÙ."
Copied: citadel/tags/7.42-1/debian/po/ar.po (from rev 247, citadel/trunk/debian/po/ar.po)
===================================================================
--- citadel/tags/7.42-1/debian/po/ar.po (rev 0)
+++ citadel/tags/7.42-1/debian/po/ar.po 2009-03-02 12:29:31 UTC (rev 248)
@@ -0,0 +1,142 @@
+# translation of ar.po to Arabic
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+#
+# Ossama M. Khayat <okhayat at yahoo.com>, 2008.
+msgid ""
+msgstr ""
+"Project-Id-Version: ar\n"
+"Report-Msgid-Bugs-To: citadel at packages.debian.org\n"
+"POT-Creation-Date: 2009-03-02 13:17+0100\n"
+"PO-Revision-Date: 2008-04-03 17:55+0300\n"
+"Last-Translator: Ossama M. Khayat <okhayat at yahoo.com>\n"
+"Language-Team: Arabic <support at arabeyes.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: KBabel 1.11.4\n"
+
+#. Type: string
+#. Description
+#: ../citadel-server.templates:1001
+#, fuzzy
+#| msgid "Listen IP for Citadel:"
+msgid "Listening address for the Citadel server:"
+msgstr "عÙÙØ§Ù IP اÙÙ
خصص ÙØ®Ø§Ø¯Ù
Citadel:"
+
+#. Type: string
+#. Description
+#: ../citadel-server.templates:1001
+#, fuzzy
+#| msgid ""
+#| "Specify the IP address on which your server will run. If you specify "
+#| "0.0.0.0, Citadel will listen on all addresses. You can usually skip this "
+#| "unless you are running multiple instances of Citadel on the same computer."
+msgid ""
+"Please specify the IP address which the server should be listening to. If "
+"you specify 0.0.0.0, the server will listen on all addresses."
+msgstr ""
+"ØØ¯Ø¯ عÙÙØ§Ù IP Ø§ÙØ°Ù سÙÙØµØª Ø¥ÙÙÙ Ø§ÙØ®Ø§Ø¯Ù
. Ø¥Ù ÙÙ
ت Ø¨ØªØØ¯Ùد Ø§ÙØ¹ÙÙØ§Ù 0.0.0.0Ø ÙØ³ÙÙØµØª "
+"Citadel Ø¥Ù٠جÙ
ÙØ¹ Ø§ÙØ¹ÙاÙÙÙ. ÙÙ
ÙÙ٠عادة ØªØ®Ø·Ù ÙØ°Ù Ø§ÙØ®Ø·ÙØ© Ù
ا ÙÙ
ÙÙÙ ÙØ¯Ù٠عدة "
+"Ø£Ù
ثا٠Ù
Ù Citadel عÙÙ ÙÙØ³ Ø§ÙØ¬Ùاز."
+
+#. Type: string
+#. Description
+#: ../citadel-server.templates:1001
+msgid ""
+"This can usually be left to the default unless multiple instances of Citadel "
+"are running on the same computer."
+msgstr ""
+
+#. Type: boolean
+#. Description
+#: ../citadel-server.templates:2001
+msgid "Enable external authentication mode?"
+msgstr "ØªØ±ÙØ¯ تÙ
ÙÙÙ ÙØ¶Ø¹ اÙÙ
ØµØ§Ø¯ÙØ© Ø§ÙØ®Ø§Ø±Ø¬ÙØ©Ø"
+
+#. Type: boolean
+#. Description
+#: ../citadel-server.templates:2001
+msgid ""
+"Please choose the user authentication mode. By default Citadel will use its "
+"own internal user accounts database. If you accept this option, Citadel "
+"users will have accounts on the host system, authenticated via /etc/passwd "
+"(or LDAP)."
+msgstr ""
+
+#. Type: boolean
+#. Description
+#: ../citadel-server.templates:2001
+msgid ""
+"Do not accept this option unless you are sure it is required, since changing "
+"back requires a full reinstall of Citadel."
+msgstr ""
+
+#. Type: string
+#. Description
+#: ../citadel-server.templates:3001
+#, fuzzy
+#| msgid "Citadel administrator:"
+msgid "Citadel administrator username:"
+msgstr "Ù
Ø¯ÙØ± Citadel:"
+
+#. Type: string
+#. Description
+#: ../citadel-server.templates:3001
+msgid ""
+"Please enter the name of the Citadel user account that should be granted "
+"administrative privileges once created. If using internal authentification "
+"this user account will be created if it does not exist. For external "
+"authentification this user account has to exist."
+msgstr ""
+
+#. Type: password
+#. Description
+#: ../citadel-server.templates:4001
+msgid "Administrator password:"
+msgstr ""
+
+#. Type: password
+#. Description
+#: ../citadel-server.templates:4001
+msgid ""
+"While not mandatory, it is highly recommended that you set a password for "
+"the administrator user."
+msgstr ""
+
+#, fuzzy
+#~| msgid ""
+#~| "Enter the name of the Citadel administrator (which is probably you). "
+#~| "When an account is created with this name, it will automatically be "
+#~| "given administrator-level access."
+#~ msgid ""
+#~ "Please enter the name of the Citadel user account that should be granted "
+#~ "administrative privileges once created."
+#~ msgstr ""
+#~ "أدخ٠اسÙ
Ù
Ø¯ÙØ± Citadel (ÙØ§Ùذ٠ÙÙ Ø§ÙØª ØºØ§ÙØ¨Ø§Ù). Ø¹ÙØ¯Ù
ا ÙØªÙ
Ø¥ÙØ´Ø§Ø¡ ØØ³Ø§Ø¨ اÙÙ
ستخدÙ
"
+#~ "Ø¨ÙØ°Ø§ Ø§ÙØ§Ø³Ù
Ø Ø³ÙÙØ¹Ø·Ù ØµÙØ§ØÙات ÙØµÙ٠اÙÙ
Ø¯ÙØ± تÙÙØ§Ø¦ÙاÙ."
+
+#~ msgid ""
+#~ "Specify the way authentication is done, either host based or Citadel "
+#~ "internal. Host based authentication could be /etc/passwd or an LDAP "
+#~ "directory. WARNING: do not change this setting once your system is "
+#~ "installed. Answer \"no\" unless you completely understand this option."
+#~ msgstr ""
+#~ "ØØ¯Ø¯ Ø§ÙØ·Ø±ÙÙØ© Ø§ÙØªÙ تتÙ
Ø¨ÙØ§ اÙÙ
ØµØ§Ø¯ÙØ©Ø Ø¥Ù
ا عبر اسÙ
اÙÙ
ضÙ٠أ٠طرÙÙØ© Citadel "
+#~ "Ø§ÙØ®Ø§ØµØ©. تÙÙÙ Ù
ØµØ§Ø¯ÙØ© اÙÙ
ضÙ٠عبر /etc/passwd أ٠دÙÙÙ LDAP. ØªÙØ¨ÙÙ: ÙØ§ ØªÙØºÙÙØ± "
+#~ "ÙØ°Ø§ Ø§ÙØ®Ùار Ø¹ÙØ¨ ØªØ«Ø¨ÙØª ÙØ¸Ø§Ù
Ù. أجب باÙÙÙÙ Ù
ا ÙÙ
تÙ٠تÙÙÙ
ÙØ°Ø§ Ø§ÙØ®Ùار تÙ
اÙ
اÙ."
+
+#~ msgid "Citadel/UX"
+#~ msgstr "Citadel/UX"
+
+#~ msgid ""
+#~ "For post configuring your Citadel Server, use citadel-webcit with your "
+#~ "browser, log in as the user you specified as the Administrator, and "
+#~ "review the Points under the Administration menu. If you have further "
+#~ "questions review www.citadel.org, especially the FAQ and Documentation "
+#~ "section."
+#~ msgstr ""
+#~ "Ù٠تÙÙÙ
بتÙÙØ¦Ø© خادÙ
Citadel ÙØ§ØÙØ§ÙØ استخدÙ
citadel-webcit Ù
Ù Ø®ÙØ§Ù Ù
ØªØµÙØÙØ "
+#~ "ادخ٠باسÙ
اÙÙ
ستخدÙ
Ø§ÙØ°Ù ØØ¯Ø¯ØªÙ ÙÙ
Ø¯ÙØ±Ø ÙØ§Ø³ØªØ¹Ø±Ø¶ اÙÙÙØ§Ø· ضÙ
Ù ÙØ§Ø¦Ù
Ø© Ø§ÙØ¥Ø¯Ø§Ø±Ø©. Ø¥Ù "
+#~ "ÙØ§Ùت ÙØ¯ÙÙ Ø£Ø³Ø¦ÙØ© Ø£Ø®Ø±Ù Ø±Ø¬Ø§Ø¡Ù Ø²ÙØ± اÙÙ
ÙÙØ¹ www.citadel.orgØ ÙØ¨Ø§ÙØªØØ¯Ùد ÙØ³Ù
"
+#~ "Ø§ÙØ£Ø³Ø¦ÙØ© اÙÙ
ØªÙØ±Ø±Ø© ÙØ§ÙØªÙØ«ÙÙ."
Deleted: citadel/tags/7.42-1/debian/po/cs.po
===================================================================
--- citadel/trunk/debian/po/cs.po 2009-03-01 20:59:31 UTC (rev 244)
+++ citadel/tags/7.42-1/debian/po/cs.po 2009-03-02 12:29:31 UTC (rev 248)
@@ -1,127 +0,0 @@
-# Czech translation of citadel debconf messages.
-# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the citadel package.
-# Miroslav Kure <kurem at debian.cz>, 2008
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: citadel\n"
-"Report-Msgid-Bugs-To: citadel at packages.debian.org\n"
-"POT-Creation-Date: 2008-08-15 13:43+0200\n"
-"PO-Revision-Date: 2008-05-08 16:10+0200\n"
-"Last-Translator: Miroslav Kure <kurem at debian.cz>\n"
-"Language-Team: Czech <debian-l10n-czech at lists.debian.org>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#. Type: string
-#. Description
-#: ../citadel-server.templates:1001
-#, fuzzy
-#| msgid "Listen IP for Citadel:"
-msgid "Listening address for the Citadel server:"
-msgstr "IP adresa, na které má Citadel naslouchat:"
-
-#. Type: string
-#. Description
-#: ../citadel-server.templates:1001
-msgid ""
-"Please specify the IP address which the server should be listening to. If "
-"you specify 0.0.0.0, the server will listen on all addresses."
-msgstr ""
-
-#. Type: string
-#. Description
-#: ../citadel-server.templates:1001
-msgid ""
-"This can usually be left to the default unless multiple instances of Citadel "
-"are running on the same computer."
-msgstr ""
-
-#. Type: boolean
-#. Description
-#: ../citadel-server.templates:2001
-#, fuzzy
-#| msgid "Enable external accounting mode?"
-msgid "Enable external authentication mode?"
-msgstr "Povolit externà správu úÄtů?"
-
-#. Type: boolean
-#. Description
-#: ../citadel-server.templates:2001
-msgid ""
-"Please choose the user authentication mode. By default Citadel will use its "
-"own internal user accounts database. If you accept this option, Citadel "
-"users will have accounts on the host system, authenticated via /etc/passwd "
-"(or LDAP)."
-msgstr ""
-
-#. Type: boolean
-#. Description
-#: ../citadel-server.templates:2001
-msgid ""
-"Do not accept this option unless you are sure it is required, since changing "
-"back requires a full reinstall of Citadel."
-msgstr ""
-
-#. Type: string
-#. Description
-#: ../citadel-server.templates:3001
-#, fuzzy
-#| msgid "Citadel administrator:"
-msgid "Citadel administrator username:"
-msgstr "Správce Citadel:"
-
-#. Type: string
-#. Description
-#: ../citadel-server.templates:3001
-msgid ""
-"Please enter the name of the Citadel user account that should be granted "
-"administrative privileges once created."
-msgstr ""
-
-#~ msgid ""
-#~ "Specify the IP address on which your server will run. If you specify "
-#~ "0.0.0.0, Citadel will listen on all addresses. You can usually skip this "
-#~ "unless you are running multiple instances of Citadel on the same computer."
-#~ msgstr ""
-#~ "Zadejte IP adresu, na které má server naslouchat. Zadáte-li 0.0.0.0, bude "
-#~ "Citadel naslouchat na vÅ¡ech adresách. Pokud na tomto poÄÃtaÄi nemáte vÃce "
-#~ "instancà Citadel, nejspÃÅ¡ můžete otázku pÅeskoÄit."
-
-#~ msgid ""
-#~ "Specify the way authentication is done, either host based or Citadel "
-#~ "internal. Host based accounting could be /etc/passwd or an LDAP "
-#~ "directory. WARNING: do not change this setting once your system is "
-#~ "installed. Answer \"no\" unless you completely understand this option."
-#~ msgstr ""
-#~ "Zadejte způsob autentizace - buÄ založený na mechanismech hostitelského "
-#~ "poÄÃtaÄe, nebo na internà správÄ pÅÃmo v Citadel. OvÄÅovánÃm podle "
-#~ "hostitelského poÄÃtaÄe se myslà /etc/passwd nebo LDAP adresáÅ. VAROVÃNÃ: "
-#~ "po instalaci systému již toto nastavenà nemÄÅte. Pokud si nejste zcela "
-#~ "jisti, zda otázce rozumÃte, odpovÄzte âneâ."
-
-#~ msgid ""
-#~ "Enter the name of the Citadel administrator (which is probably you). When "
-#~ "an account is created with this name, it will automatically be given "
-#~ "administrator-level access."
-#~ msgstr ""
-#~ "Zadejte jméno správce Citadel (což budete pravdÄpodobnÄ vy). PÅi "
-#~ "vytvoÅenà úÄtu se zadaným jménem mu budou automaticky pÅidána správcovská "
-#~ "oprávnÄnÃ."
-
-#~ msgid "Citadel/UX"
-#~ msgstr "Citadel/UX"
-
-#~ msgid ""
-#~ "For post configuring your Citadel Server, use citadel-webcit with your "
-#~ "browser, log in as the user you specified as the Administrator, and "
-#~ "review the Points under the Administration menu. If you have further "
-#~ "questions review www.citadel.org, specialy the FAQ and Documentation "
-#~ "section."
-#~ msgstr ""
-#~ "Pro poinstalaÄnà nastavenà Citadel serveru si nainstalujte balÃk citadel-"
-#~ "webcit. Ve webovém prohlÞeÄi se pÅihlaste pod uživatelem, kterého jste "
-#~ "zvolili za správce a projdÄte si menu Administration. Máte-li dalšà "
-#~ "otázky, podÃvejte se na http://www.citadel.org do Äástà Dokumentace a FAQ."
Copied: citadel/tags/7.42-1/debian/po/cs.po (from rev 247, citadel/trunk/debian/po/cs.po)
===================================================================
--- citadel/tags/7.42-1/debian/po/cs.po (rev 0)
+++ citadel/tags/7.42-1/debian/po/cs.po 2009-03-02 12:29:31 UTC (rev 248)
@@ -0,0 +1,143 @@
+# Czech translation of citadel debconf messages.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the citadel package.
+# Miroslav Kure <kurem at debian.cz>, 2008
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: citadel\n"
+"Report-Msgid-Bugs-To: citadel at packages.debian.org\n"
+"POT-Creation-Date: 2009-03-02 13:17+0100\n"
+"PO-Revision-Date: 2008-05-08 16:10+0200\n"
+"Last-Translator: Miroslav Kure <kurem at debian.cz>\n"
+"Language-Team: Czech <debian-l10n-czech at lists.debian.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#. Type: string
+#. Description
+#: ../citadel-server.templates:1001
+#, fuzzy
+#| msgid "Listen IP for Citadel:"
+msgid "Listening address for the Citadel server:"
+msgstr "IP adresa, na které má Citadel naslouchat:"
+
+#. Type: string
+#. Description
+#: ../citadel-server.templates:1001
+msgid ""
+"Please specify the IP address which the server should be listening to. If "
+"you specify 0.0.0.0, the server will listen on all addresses."
+msgstr ""
+
+#. Type: string
+#. Description
+#: ../citadel-server.templates:1001
+msgid ""
+"This can usually be left to the default unless multiple instances of Citadel "
+"are running on the same computer."
+msgstr ""
+
+#. Type: boolean
+#. Description
+#: ../citadel-server.templates:2001
+#, fuzzy
+#| msgid "Enable external accounting mode?"
+msgid "Enable external authentication mode?"
+msgstr "Povolit externà správu úÄtů?"
+
+#. Type: boolean
+#. Description
+#: ../citadel-server.templates:2001
+msgid ""
+"Please choose the user authentication mode. By default Citadel will use its "
+"own internal user accounts database. If you accept this option, Citadel "
+"users will have accounts on the host system, authenticated via /etc/passwd "
+"(or LDAP)."
+msgstr ""
+
+#. Type: boolean
+#. Description
+#: ../citadel-server.templates:2001
+msgid ""
+"Do not accept this option unless you are sure it is required, since changing "
+"back requires a full reinstall of Citadel."
+msgstr ""
+
+#. Type: string
+#. Description
+#: ../citadel-server.templates:3001
+#, fuzzy
+#| msgid "Citadel administrator:"
+msgid "Citadel administrator username:"
+msgstr "Správce Citadel:"
+
+#. Type: string
+#. Description
+#: ../citadel-server.templates:3001
+msgid ""
+"Please enter the name of the Citadel user account that should be granted "
+"administrative privileges once created. If using internal authentification "
+"this user account will be created if it does not exist. For external "
+"authentification this user account has to exist."
+msgstr ""
+
+#. Type: password
+#. Description
+#: ../citadel-server.templates:4001
+msgid "Administrator password:"
+msgstr ""
+
+#. Type: password
+#. Description
+#: ../citadel-server.templates:4001
+msgid ""
+"While not mandatory, it is highly recommended that you set a password for "
+"the administrator user."
+msgstr ""
+
+#~ msgid ""
+#~ "Specify the IP address on which your server will run. If you specify "
+#~ "0.0.0.0, Citadel will listen on all addresses. You can usually skip this "
+#~ "unless you are running multiple instances of Citadel on the same computer."
+#~ msgstr ""
+#~ "Zadejte IP adresu, na které má server naslouchat. Zadáte-li 0.0.0.0, bude "
+#~ "Citadel naslouchat na vÅ¡ech adresách. Pokud na tomto poÄÃtaÄi nemáte vÃce "
+#~ "instancà Citadel, nejspÃÅ¡ můžete otázku pÅeskoÄit."
+
+#~ msgid ""
+#~ "Specify the way authentication is done, either host based or Citadel "
+#~ "internal. Host based accounting could be /etc/passwd or an LDAP "
+#~ "directory. WARNING: do not change this setting once your system is "
+#~ "installed. Answer \"no\" unless you completely understand this option."
+#~ msgstr ""
+#~ "Zadejte způsob autentizace - buÄ založený na mechanismech hostitelského "
+#~ "poÄÃtaÄe, nebo na internà správÄ pÅÃmo v Citadel. OvÄÅovánÃm podle "
+#~ "hostitelského poÄÃtaÄe se myslà /etc/passwd nebo LDAP adresáÅ. VAROVÃNÃ: "
+#~ "po instalaci systému již toto nastavenà nemÄÅte. Pokud si nejste zcela "
+#~ "jisti, zda otázce rozumÃte, odpovÄzte âneâ."
+
+#~ msgid ""
+#~ "Enter the name of the Citadel administrator (which is probably you). When "
+#~ "an account is created with this name, it will automatically be given "
+#~ "administrator-level access."
+#~ msgstr ""
+#~ "Zadejte jméno správce Citadel (což budete pravdÄpodobnÄ vy). PÅi "
+#~ "vytvoÅenà úÄtu se zadaným jménem mu budou automaticky pÅidána správcovská "
+#~ "oprávnÄnÃ."
+
+#~ msgid "Citadel/UX"
+#~ msgstr "Citadel/UX"
+
+#~ msgid ""
+#~ "For post configuring your Citadel Server, use citadel-webcit with your "
+#~ "browser, log in as the user you specified as the Administrator, and "
+#~ "review the Points under the Administration menu. If you have further "
+#~ "questions review www.citadel.org, specialy the FAQ and Documentation "
+#~ "section."
+#~ msgstr ""
+#~ "Pro poinstalaÄnà nastavenà Citadel serveru si nainstalujte balÃk citadel-"
+#~ "webcit. Ve webovém prohlÞeÄi se pÅihlaste pod uživatelem, kterého jste "
+#~ "zvolili za správce a projdÄte si menu Administration. Máte-li dalšà "
+#~ "otázky, podÃvejte se na http://www.citadel.org do Äástà Dokumentace a FAQ."
Deleted: citadel/tags/7.42-1/debian/po/de.po
===================================================================
--- citadel/trunk/debian/po/de.po 2009-03-01 20:59:31 UTC (rev 244)
+++ citadel/tags/7.42-1/debian/po/de.po 2009-03-02 12:29:31 UTC (rev 248)
@@ -1,118 +0,0 @@
-# Translation of citadel debconf templates to German
-# Copyright (C) Helge Kreutzmann <debian at helgefjell.de>, 2008.
-# This file is distributed under the same license as the citadel package.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: citadel 7.33-5\n"
-"Report-Msgid-Bugs-To: citadel at packages.debian.org\n"
-"POT-Creation-Date: 2008-08-15 13:43+0200\n"
-"PO-Revision-Date: 2008-04-22 19:03+0200\n"
-"Last-Translator: Helge Kreutzmann <debian at helgefjell.de>\n"
-"Language-Team: de <debian-l10n-german at lists.debian.org>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=ISO-8859-15\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#. Type: string
-#. Description
-#: ../citadel-server.templates:1001
-msgid "Listening address for the Citadel server:"
-msgstr "Adresse, auf der Citadel auf Anfragen wartet:"
-
-#. Type: string
-#. Description
-#: ../citadel-server.templates:1001
-msgid ""
-"Please specify the IP address which the server should be listening to. If "
-"you specify 0.0.0.0, the server will listen on all addresses."
-msgstr ""
-"Bitte geben Sie die IP-Adressen an, auf der der Server auf Anfragen warten "
-"soll. Falls Sie 0.0.0.0 angeben, wird der Server auf allen Adressen auf "
-"Anfragen warten."
-
-#. Type: string
-#. Description
-#: ../citadel-server.templates:1001
-msgid ""
-"This can usually be left to the default unless multiple instances of Citadel "
-"are running on the same computer."
-msgstr ""
-"Normalerweise können Sie die Vorgabe beibehalten, falls Sie nicht mehrere "
-"Instanzen von Citadel auf dem gleichen Computer betreiben."
-
-#. Type: boolean
-#. Description
-#: ../citadel-server.templates:2001
-msgid "Enable external authentication mode?"
-msgstr "Externen Authentifizierungsmodus aktivieren?"
-
-#. Type: boolean
-#. Description
-#: ../citadel-server.templates:2001
-msgid ""
-"Please choose the user authentication mode. By default Citadel will use its "
-"own internal user accounts database. If you accept this option, Citadel "
-"users will have accounts on the host system, authenticated via /etc/passwd "
-"(or LDAP)."
-msgstr ""
-"Bitte wählen Sie die Authentifizierungsmethode für Benutzer. Standardmäßig "
-"wird Citadel seine interne Benutzerkontendatenbank verwenden. Falls Sie "
-"dieser Option zustimmen, werden die Benutzer von Citadel Konten auf dem "
-"Gastsystem haben und via /etc/passwd (oder LDAP) authentifiziert werden."
-
-#. Type: boolean
-#. Description
-#: ../citadel-server.templates:2001
-msgid ""
-"Do not accept this option unless you are sure it is required, since changing "
-"back requires a full reinstall of Citadel."
-msgstr ""
-"Stimmen Sie dieser Option nur zu, wenn Sie sich sicher sind, dass Sie sie "
-"benötigen. Das Zurücksetzen dieser Option benötigt eine komplette "
-"Neuinstallation von Citadel."
-
-#. Type: string
-#. Description
-#: ../citadel-server.templates:3001
-msgid "Citadel administrator username:"
-msgstr "Benutzername des Citadel-Administrators:"
-
-#. Type: string
-#. Description
-#: ../citadel-server.templates:3001
-msgid ""
-"Please enter the name of the Citadel user account that should be granted "
-"administrative privileges once created."
-msgstr ""
-"Geben Sie den Namen des Citadel-Benutzerkontos ein, dem nach der Erstellung "
-"administrative Privilegien gewährt werden sollen."
-
-#~ msgid ""
-#~ "Specify the way authentication is done, either host based or Citadel "
-#~ "internal. Host based authentication could be /etc/passwd or an LDAP "
-#~ "directory. WARNING: do not change this setting once your system is "
-#~ "installed. Answer \"no\" unless you completely understand this option."
-#~ msgstr ""
-#~ "Geben Sie an, wie die Authentifizierung läuft, entweder Rechner-basiert "
-#~ "oder Citadel-intern. Rechner-basierte Authentifizierung könnte /etc/"
-#~ "passwd oder ein LDAP-Verzeichnis sein. WARNUNG: Ändern Sie diese Option "
-#~ "nicht, nachdem Ihr System installiert ist. Antworten Sie »Nein« falls Sie "
-#~ "diese Option nicht komplett verstehen."
-
-#~ msgid "Citadel/UX"
-#~ msgstr "Citadel/UX"
-
-#~ msgid ""
-#~ "For post configuring your Citadel Server, use citadel-webcit with your "
-#~ "browser, log in as the user you specified as the Administrator, and "
-#~ "review the Points under the Administration menu. If you have further "
-#~ "questions review www.citadel.org, especially the FAQ and Documentation "
-#~ "section."
-#~ msgstr ""
-#~ "Für die weitere Konfiguration Ihres Citadel-Servers verwenden Sie bitte "
-#~ "citadel-webcit in Ihrem Browser. Melden Sie sich dort als den Benutzer "
-#~ "an, den Sie eben als Administrator angegeben haben und schauen Sie dann "
-#~ "die Punkte im Administrations-Menü durch. Falls Sie weitere Fragen haben, "
-#~ "lesen Sie www.citadel.org, insbesondere die FAQ und den Dokumentations-"
-#~ "Abschnitt."
Copied: citadel/tags/7.42-1/debian/po/de.po (from rev 247, citadel/trunk/debian/po/de.po)
===================================================================
--- citadel/tags/7.42-1/debian/po/de.po (rev 0)
+++ citadel/tags/7.42-1/debian/po/de.po 2009-03-02 12:29:31 UTC (rev 248)
@@ -0,0 +1,139 @@
+# Translation of citadel debconf templates to German
+# Copyright (C) Helge Kreutzmann <debian at helgefjell.de>, 2008.
+# This file is distributed under the same license as the citadel package.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: citadel 7.33-5\n"
+"Report-Msgid-Bugs-To: citadel at packages.debian.org\n"
+"POT-Creation-Date: 2009-03-02 13:17+0100\n"
+"PO-Revision-Date: 2008-04-22 19:03+0200\n"
+"Last-Translator: Helge Kreutzmann <debian at helgefjell.de>\n"
+"Language-Team: de <debian-l10n-german at lists.debian.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=ISO-8859-15\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#. Type: string
+#. Description
+#: ../citadel-server.templates:1001
+msgid "Listening address for the Citadel server:"
+msgstr "Adresse, auf der Citadel auf Anfragen wartet:"
+
+#. Type: string
+#. Description
+#: ../citadel-server.templates:1001
+msgid ""
+"Please specify the IP address which the server should be listening to. If "
+"you specify 0.0.0.0, the server will listen on all addresses."
+msgstr ""
+"Bitte geben Sie die IP-Adressen an, auf der der Server auf Anfragen warten "
+"soll. Falls Sie 0.0.0.0 angeben, wird der Server auf allen Adressen auf "
+"Anfragen warten."
+
+#. Type: string
+#. Description
+#: ../citadel-server.templates:1001
+msgid ""
+"This can usually be left to the default unless multiple instances of Citadel "
+"are running on the same computer."
+msgstr ""
+"Normalerweise können Sie die Vorgabe beibehalten, falls Sie nicht mehrere "
+"Instanzen von Citadel auf dem gleichen Computer betreiben."
+
+#. Type: boolean
+#. Description
+#: ../citadel-server.templates:2001
+msgid "Enable external authentication mode?"
+msgstr "Externen Authentifizierungsmodus aktivieren?"
+
+#. Type: boolean
+#. Description
+#: ../citadel-server.templates:2001
+msgid ""
+"Please choose the user authentication mode. By default Citadel will use its "
+"own internal user accounts database. If you accept this option, Citadel "
+"users will have accounts on the host system, authenticated via /etc/passwd "
+"(or LDAP)."
+msgstr ""
+"Bitte wählen Sie die Authentifizierungsmethode für Benutzer. Standardmäßig "
+"wird Citadel seine interne Benutzerkontendatenbank verwenden. Falls Sie "
+"dieser Option zustimmen, werden die Benutzer von Citadel Konten auf dem "
+"Gastsystem haben und via /etc/passwd (oder LDAP) authentifiziert werden."
+
+#. Type: boolean
+#. Description
+#: ../citadel-server.templates:2001
+msgid ""
+"Do not accept this option unless you are sure it is required, since changing "
+"back requires a full reinstall of Citadel."
+msgstr ""
+"Stimmen Sie dieser Option nur zu, wenn Sie sich sicher sind, dass Sie sie "
+"benötigen. Das Zurücksetzen dieser Option benötigt eine komplette "
+"Neuinstallation von Citadel."
+
+#. Type: string
+#. Description
+#: ../citadel-server.templates:3001
+msgid "Citadel administrator username:"
+msgstr "Benutzername des Citadel-Administrators:"
+
+#. Type: string
+#. Description
+#: ../citadel-server.templates:3001
+msgid ""
+"Please enter the name of the Citadel user account that should be granted "
+"administrative privileges once created. If using internal authentification "
+"this user account will be created if it does not exist. For external "
+"authentification this user account has to exist."
+msgstr ""
+
+#. Type: password
+#. Description
+#: ../citadel-server.templates:4001
+msgid "Administrator password:"
+msgstr ""
+
+#. Type: password
+#. Description
+#: ../citadel-server.templates:4001
+msgid ""
+"While not mandatory, it is highly recommended that you set a password for "
+"the administrator user."
+msgstr ""
+
+#~ msgid ""
+#~ "Please enter the name of the Citadel user account that should be granted "
+#~ "administrative privileges once created."
+#~ msgstr ""
+#~ "Geben Sie den Namen des Citadel-Benutzerkontos ein, dem nach der "
+#~ "Erstellung administrative Privilegien gewährt werden sollen."
+
+#~ msgid ""
+#~ "Specify the way authentication is done, either host based or Citadel "
+#~ "internal. Host based authentication could be /etc/passwd or an LDAP "
+#~ "directory. WARNING: do not change this setting once your system is "
+#~ "installed. Answer \"no\" unless you completely understand this option."
+#~ msgstr ""
+#~ "Geben Sie an, wie die Authentifizierung läuft, entweder Rechner-basiert "
+#~ "oder Citadel-intern. Rechner-basierte Authentifizierung könnte /etc/"
+#~ "passwd oder ein LDAP-Verzeichnis sein. WARNUNG: Ändern Sie diese Option "
+#~ "nicht, nachdem Ihr System installiert ist. Antworten Sie »Nein« falls Sie "
+#~ "diese Option nicht komplett verstehen."
+
+#~ msgid "Citadel/UX"
+#~ msgstr "Citadel/UX"
+
+#~ msgid ""
+#~ "For post configuring your Citadel Server, use citadel-webcit with your "
+#~ "browser, log in as the user you specified as the Administrator, and "
+#~ "review the Points under the Administration menu. If you have further "
+#~ "questions review www.citadel.org, especially the FAQ and Documentation "
+#~ "section."
+#~ msgstr ""
+#~ "Für die weitere Konfiguration Ihres Citadel-Servers verwenden Sie bitte "
+#~ "citadel-webcit in Ihrem Browser. Melden Sie sich dort als den Benutzer "
+#~ "an, den Sie eben als Administrator angegeben haben und schauen Sie dann "
+#~ "die Punkte im Administrations-Menü durch. Falls Sie weitere Fragen haben, "
+#~ "lesen Sie www.citadel.org, insbesondere die FAQ und den Dokumentations-"
+#~ "Abschnitt."
Deleted: citadel/tags/7.42-1/debian/po/fi.po
===================================================================
--- citadel/trunk/debian/po/fi.po 2009-03-01 20:59:31 UTC (rev 244)
+++ citadel/tags/7.42-1/debian/po/fi.po 2009-03-02 12:29:31 UTC (rev 248)
@@ -1,82 +0,0 @@
-msgid ""
-msgstr ""
-"Project-Id-Version: citadel\n"
-"Report-Msgid-Bugs-To: citadel at packages.debian.org\n"
-"POT-Creation-Date: 2008-08-15 13:43+0200\n"
-"PO-Revision-Date: 2008-07-27 21:26+0200\n"
-"Last-Translator: Esko Arajärvi <edu at iki.fi>\n"
-"Language-Team: Finnish <debian-l10n-finnish at lists.debian.org>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Poedit-Country: FINLAND\n"
-
-#. Type: string
-#. Description
-#: ../citadel-server.templates:1001
-msgid "Listening address for the Citadel server:"
-msgstr "Osoite, jota Citadel-palvelin kuuntelee:"
-
-#. Type: string
-#. Description
-#: ../citadel-server.templates:1001
-msgid ""
-"Please specify the IP address which the server should be listening to. If "
-"you specify 0.0.0.0, the server will listen on all addresses."
-msgstr ""
-"Anna IP-osoite, jota palvelin kuuntelee. Jos syötät 0.0.0.0 palvelin "
-"kuuntelee kaikkia osoitteita."
-
-#. Type: string
-#. Description
-#: ../citadel-server.templates:1001
-msgid ""
-"This can usually be left to the default unless multiple instances of Citadel "
-"are running on the same computer."
-msgstr ""
-"Oletusarvoa voidaan yleensä käyttää, ellei samalla koneella ajeta useampia "
-"Citadel-instansseja."
-
-#. Type: boolean
-#. Description
-#: ../citadel-server.templates:2001
-msgid "Enable external authentication mode?"
-msgstr "Otetaanko ulkoinen tunnistautumistapa käyttöön?"
-
-#. Type: boolean
-#. Description
-#: ../citadel-server.templates:2001
-msgid ""
-"Please choose the user authentication mode. By default Citadel will use its "
-"own internal user accounts database. If you accept this option, Citadel "
-"users will have accounts on the host system, authenticated via /etc/passwd "
-"(or LDAP)."
-msgstr ""
-"Valitse käyttäjien tunnistautumistapa. Oletuksena Citadel käyttää omaa "
-"sisäistä käyttäjätunnustietokantaa. Jos tämä vaihtoehto valitaan, Citadel-"
-"käyttäjille tehdään tunnukset isäntäkoneelle ja tunnistautuminen tapahtuu "
-"tiedoston /etc/passwd (tai LDAP:n) avulla."
-
-#. Type: boolean
-#. Description
-#: ../citadel-server.templates:2001
-msgid ""
-"Do not accept this option unless you are sure it is required, since changing "
-"back requires a full reinstall of Citadel."
-msgstr ""
-"Ãlä valitse tätä vaihtoehtoa, ellet ole varma, että sitä tarvitaan, koska "
-"takaisin vaihtaminen vaatii, että Citadel asennetaan täysin uudelleen."
-
-#. Type: string
-#. Description
-#: ../citadel-server.templates:3001
-msgid "Citadel administrator username:"
-msgstr "Citadel-ylläpitäjän käyttäjätunnus:"
-
-#. Type: string
-#. Description
-#: ../citadel-server.templates:3001
-msgid ""
-"Please enter the name of the Citadel user account that should be granted "
-"administrative privileges once created."
-msgstr "Anna Citadel-tunnus, jolle annetaan luotaessa ylläpito-oikeudet."
Copied: citadel/tags/7.42-1/debian/po/fi.po (from rev 247, citadel/trunk/debian/po/fi.po)
===================================================================
--- citadel/tags/7.42-1/debian/po/fi.po (rev 0)
+++ citadel/tags/7.42-1/debian/po/fi.po 2009-03-02 12:29:31 UTC (rev 248)
@@ -0,0 +1,103 @@
+msgid ""
+msgstr ""
+"Project-Id-Version: citadel\n"
+"Report-Msgid-Bugs-To: citadel at packages.debian.org\n"
+"POT-Creation-Date: 2009-03-02 13:17+0100\n"
+"PO-Revision-Date: 2008-07-27 21:26+0200\n"
+"Last-Translator: Esko Arajärvi <edu at iki.fi>\n"
+"Language-Team: Finnish <debian-l10n-finnish at lists.debian.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Poedit-Country: FINLAND\n"
+
+#. Type: string
+#. Description
+#: ../citadel-server.templates:1001
+msgid "Listening address for the Citadel server:"
+msgstr "Osoite, jota Citadel-palvelin kuuntelee:"
+
+#. Type: string
+#. Description
+#: ../citadel-server.templates:1001
+msgid ""
+"Please specify the IP address which the server should be listening to. If "
+"you specify 0.0.0.0, the server will listen on all addresses."
+msgstr ""
+"Anna IP-osoite, jota palvelin kuuntelee. Jos syötät 0.0.0.0 palvelin "
+"kuuntelee kaikkia osoitteita."
+
+#. Type: string
+#. Description
+#: ../citadel-server.templates:1001
+msgid ""
+"This can usually be left to the default unless multiple instances of Citadel "
+"are running on the same computer."
+msgstr ""
+"Oletusarvoa voidaan yleensä käyttää, ellei samalla koneella ajeta useampia "
+"Citadel-instansseja."
+
+#. Type: boolean
+#. Description
+#: ../citadel-server.templates:2001
+msgid "Enable external authentication mode?"
+msgstr "Otetaanko ulkoinen tunnistautumistapa käyttöön?"
+
+#. Type: boolean
+#. Description
+#: ../citadel-server.templates:2001
+msgid ""
+"Please choose the user authentication mode. By default Citadel will use its "
+"own internal user accounts database. If you accept this option, Citadel "
+"users will have accounts on the host system, authenticated via /etc/passwd "
+"(or LDAP)."
+msgstr ""
+"Valitse käyttäjien tunnistautumistapa. Oletuksena Citadel käyttää omaa "
+"sisäistä käyttäjätunnustietokantaa. Jos tämä vaihtoehto valitaan, Citadel-"
+"käyttäjille tehdään tunnukset isäntäkoneelle ja tunnistautuminen tapahtuu "
+"tiedoston /etc/passwd (tai LDAP:n) avulla."
+
+#. Type: boolean
+#. Description
+#: ../citadel-server.templates:2001
+msgid ""
+"Do not accept this option unless you are sure it is required, since changing "
+"back requires a full reinstall of Citadel."
+msgstr ""
+"Ãlä valitse tätä vaihtoehtoa, ellet ole varma, että sitä tarvitaan, koska "
+"takaisin vaihtaminen vaatii, että Citadel asennetaan täysin uudelleen."
+
+#. Type: string
+#. Description
+#: ../citadel-server.templates:3001
+msgid "Citadel administrator username:"
+msgstr "Citadel-ylläpitäjän käyttäjätunnus:"
+
+#. Type: string
+#. Description
+#: ../citadel-server.templates:3001
+msgid ""
+"Please enter the name of the Citadel user account that should be granted "
+"administrative privileges once created. If using internal authentification "
+"this user account will be created if it does not exist. For external "
+"authentification this user account has to exist."
+msgstr ""
+
+#. Type: password
+#. Description
+#: ../citadel-server.templates:4001
+msgid "Administrator password:"
+msgstr ""
+
+#. Type: password
+#. Description
+#: ../citadel-server.templates:4001
+msgid ""
+"While not mandatory, it is highly recommended that you set a password for "
+"the administrator user."
+msgstr ""
+
+#~ msgid ""
+#~ "Please enter the name of the Citadel user account that should be granted "
+#~ "administrative privileges once created."
+#~ msgstr "Anna Citadel-tunnus, jolle annetaan luotaessa ylläpito-oikeudet."
Deleted: citadel/tags/7.42-1/debian/po/fr.po
===================================================================
--- citadel/trunk/debian/po/fr.po 2009-03-01 20:59:31 UTC (rev 244)
+++ citadel/tags/7.42-1/debian/po/fr.po 2009-03-02 12:29:31 UTC (rev 248)
@@ -1,91 +0,0 @@
-# Translation of citadel debconf templates to French
-# Copyright (C) 2008 Jean-Luc Coulon (f5ibh) <jean-luc.coulon at wanadoo.fr>
-# This file is distributed under the same license as the gpsd package.
-#
-# Jean-Luc Coulon (f5ibh) <jean-luc.coulon at wanadoo.fr>
-#
-# Christian Perrier <bubulle at debian.org>, 2008.
-msgid ""
-msgstr ""
-"Project-Id-Version: \n"
-"Report-Msgid-Bugs-To: citadel at packages.debian.org\n"
-"POT-Creation-Date: 2008-08-15 13:43+0200\n"
-"PO-Revision-Date: 2008-05-08 10:25+0200\n"
-"Last-Translator: Christian Perrier <bubulle at debian.org>\n"
-"Language-Team: French <debian-l10n-french at lists.debian.org>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: KBabel 1.11.4\n"
-
-#. Type: string
-#. Description
-#: ../citadel-server.templates:1001
-msgid "Listening address for the Citadel server:"
-msgstr "Adresse IP où Citadel sera à l'écoute :"
-
-#. Type: string
-#. Description
-#: ../citadel-server.templates:1001
-msgid ""
-"Please specify the IP address which the server should be listening to. If "
-"you specify 0.0.0.0, the server will listen on all addresses."
-msgstr ""
-"Veuillez indiquer l'adresses IP sur laquelle le serveur sera actif. Si vous "
-"indiquez 0.0.0.0, Citadel sera à l'écoute de toutes les adresses."
-
-#. Type: string
-#. Description
-#: ../citadel-server.templates:1001
-msgid ""
-"This can usually be left to the default unless multiple instances of Citadel "
-"are running on the same computer."
-msgstr ""
-"Vous pouvez normalement sauter cette étape à moins que plusieurs instances "
-"de Citadel ne tournent sur le même ordinateur."
-
-#. Type: boolean
-#. Description
-#: ../citadel-server.templates:2001
-msgid "Enable external authentication mode?"
-msgstr "Faut-il activer le mode d'authentification ?"
-
-#. Type: boolean
-#. Description
-#: ../citadel-server.templates:2001
-msgid ""
-"Please choose the user authentication mode. By default Citadel will use its "
-"own internal user accounts database. If you accept this option, Citadel "
-"users will have accounts on the host system, authenticated via /etc/passwd "
-"(or LDAP)."
-msgstr ""
-"Veuille choisir le mode d'authentification des utilisateurs. Par défaut, "
-"Citadel utilise son système interne de comptes. Si vous choisissez cette "
-"option, les comptes du système hôte seront utilisés, avec authentification "
-"par /etc/passwd (ou LDAP)."
-
-#. Type: boolean
-#. Description
-#: ../citadel-server.templates:2001
-msgid ""
-"Do not accept this option unless you are sure it is required, since changing "
-"back requires a full reinstall of Citadel."
-msgstr ""
-"Ne choisissez cette option que si elle est indispensable car il n'est pas "
-"possible de la modifier sans entièrement réinstaller Citadel."
-
-#. Type: string
-#. Description
-#: ../citadel-server.templates:3001
-msgid "Citadel administrator username:"
-msgstr "Identifiant de l'administrateur de Citadel :"
-
-#. Type: string
-#. Description
-#: ../citadel-server.templates:3001
-msgid ""
-"Please enter the name of the Citadel user account that should be granted "
-"administrative privileges once created."
-msgstr ""
-"Veuillez indiquer l'identifiant qui bénéficiera des privilèges "
-"d'administration de Citadel."
Copied: citadel/tags/7.42-1/debian/po/fr.po (from rev 247, citadel/trunk/debian/po/fr.po)
===================================================================
--- citadel/tags/7.42-1/debian/po/fr.po (rev 0)
+++ citadel/tags/7.42-1/debian/po/fr.po 2009-03-02 12:29:31 UTC (rev 248)
@@ -0,0 +1,112 @@
+# Translation of citadel debconf templates to French
+# Copyright (C) 2008 Jean-Luc Coulon (f5ibh) <jean-luc.coulon at wanadoo.fr>
+# This file is distributed under the same license as the gpsd package.
+#
+# Jean-Luc Coulon (f5ibh) <jean-luc.coulon at wanadoo.fr>
+#
+# Christian Perrier <bubulle at debian.org>, 2008.
+msgid ""
+msgstr ""
+"Project-Id-Version: \n"
+"Report-Msgid-Bugs-To: citadel at packages.debian.org\n"
+"POT-Creation-Date: 2009-03-02 13:17+0100\n"
+"PO-Revision-Date: 2008-05-08 10:25+0200\n"
+"Last-Translator: Christian Perrier <bubulle at debian.org>\n"
+"Language-Team: French <debian-l10n-french at lists.debian.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: KBabel 1.11.4\n"
+
+#. Type: string
+#. Description
+#: ../citadel-server.templates:1001
+msgid "Listening address for the Citadel server:"
+msgstr "Adresse IP où Citadel sera à l'écoute :"
+
+#. Type: string
+#. Description
+#: ../citadel-server.templates:1001
+msgid ""
+"Please specify the IP address which the server should be listening to. If "
+"you specify 0.0.0.0, the server will listen on all addresses."
+msgstr ""
+"Veuillez indiquer l'adresses IP sur laquelle le serveur sera actif. Si vous "
+"indiquez 0.0.0.0, Citadel sera à l'écoute de toutes les adresses."
+
+#. Type: string
+#. Description
+#: ../citadel-server.templates:1001
+msgid ""
+"This can usually be left to the default unless multiple instances of Citadel "
+"are running on the same computer."
+msgstr ""
+"Vous pouvez normalement sauter cette étape à moins que plusieurs instances "
+"de Citadel ne tournent sur le même ordinateur."
+
+#. Type: boolean
+#. Description
+#: ../citadel-server.templates:2001
+msgid "Enable external authentication mode?"
+msgstr "Faut-il activer le mode d'authentification ?"
+
+#. Type: boolean
+#. Description
+#: ../citadel-server.templates:2001
+msgid ""
+"Please choose the user authentication mode. By default Citadel will use its "
+"own internal user accounts database. If you accept this option, Citadel "
+"users will have accounts on the host system, authenticated via /etc/passwd "
+"(or LDAP)."
+msgstr ""
+"Veuille choisir le mode d'authentification des utilisateurs. Par défaut, "
+"Citadel utilise son système interne de comptes. Si vous choisissez cette "
+"option, les comptes du système hôte seront utilisés, avec authentification "
+"par /etc/passwd (ou LDAP)."
+
+#. Type: boolean
+#. Description
+#: ../citadel-server.templates:2001
+msgid ""
+"Do not accept this option unless you are sure it is required, since changing "
+"back requires a full reinstall of Citadel."
+msgstr ""
+"Ne choisissez cette option que si elle est indispensable car il n'est pas "
+"possible de la modifier sans entièrement réinstaller Citadel."
+
+#. Type: string
+#. Description
+#: ../citadel-server.templates:3001
+msgid "Citadel administrator username:"
+msgstr "Identifiant de l'administrateur de Citadel :"
+
+#. Type: string
+#. Description
+#: ../citadel-server.templates:3001
+msgid ""
+"Please enter the name of the Citadel user account that should be granted "
+"administrative privileges once created. If using internal authentification "
+"this user account will be created if it does not exist. For external "
+"authentification this user account has to exist."
+msgstr ""
+
+#. Type: password
+#. Description
+#: ../citadel-server.templates:4001
+msgid "Administrator password:"
+msgstr ""
+
+#. Type: password
+#. Description
+#: ../citadel-server.templates:4001
+msgid ""
+"While not mandatory, it is highly recommended that you set a password for "
+"the administrator user."
+msgstr ""
+
+#~ msgid ""
+#~ "Please enter the name of the Citadel user account that should be granted "
+#~ "administrative privileges once created."
+#~ msgstr ""
+#~ "Veuillez indiquer l'identifiant qui bénéficiera des privilèges "
+#~ "d'administration de Citadel."
Deleted: citadel/tags/7.42-1/debian/po/pt.po
===================================================================
--- citadel/trunk/debian/po/pt.po 2009-03-01 20:59:31 UTC (rev 244)
+++ citadel/tags/7.42-1/debian/po/pt.po 2009-03-02 12:29:31 UTC (rev 248)
@@ -1,117 +0,0 @@
-# Portuguese translation of citadel's debconf messages.
-# Copyright (C) 2008, Pedro Ribeiro
-# This file is distributed under the same license as the citadel package.
-# Pedro Ribeiro <p.m42.ribeiro at gmail.com>, 2008.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: citadel-7.33-5\n"
-"Report-Msgid-Bugs-To: citadel at packages.debian.org\n"
-"POT-Creation-Date: 2008-08-15 13:43+0200\n"
-"PO-Revision-Date: 2008-04-23 10:46+0100\n"
-"Last-Translator: Pedro Ribeiro <p.m42.ribeiro at gmail.com>\n"
-"Language-Team: Portuguese <traduz at debianpt.org>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=utf-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#. Type: string
-#. Description
-#: ../citadel-server.templates:1001
-msgid "Listening address for the Citadel server:"
-msgstr "Endereço de escuta para o Citadel:"
-
-#. Type: string
-#. Description
-#: ../citadel-server.templates:1001
-msgid ""
-"Please specify the IP address which the server should be listening to. If "
-"you specify 0.0.0.0, the server will listen on all addresses."
-msgstr ""
-"Por favor, indique o endereço IP no qual o seu servidor irá correr. Se "
-"indicar 0.0.0.0 o Citadel irá escutar em todos os endereços. "
-
-#. Type: string
-#. Description
-#: ../citadel-server.templates:1001
-msgid ""
-"This can usually be left to the default unless multiple instances of Citadel "
-"are running on the same computer."
-msgstr ""
-"Pode normalmente deixar o valor pré-definido a não ser que execute múltiplas "
-"instâncias do Citadel no mesmo computador."
-
-#. Type: boolean
-#. Description
-#: ../citadel-server.templates:2001
-msgid "Enable external authentication mode?"
-msgstr "Habilitar modo de autenticação externo?"
-
-#. Type: boolean
-#. Description
-#: ../citadel-server.templates:2001
-msgid ""
-"Please choose the user authentication mode. By default Citadel will use its "
-"own internal user accounts database. If you accept this option, Citadel "
-"users will have accounts on the host system, authenticated via /etc/passwd "
-"(or LDAP)."
-msgstr ""
-"Por favor, escolha o método de autenticação de utilizadores. Por omissão o "
-"Citadel irá usar a base de dados interna de contas de utilizador. Se aceitar "
-"esta opção, os utilzadores do Citadel irão ter contas no sistema, com "
-"autenticação via /etc/passwd (ou LDAP)."
-
-#. Type: boolean
-#. Description
-#: ../citadel-server.templates:2001
-msgid ""
-"Do not accept this option unless you are sure it is required, since changing "
-"back requires a full reinstall of Citadel."
-msgstr ""
-"Não aceite esta opção a não ser que esteja seguro da sua necessidade, uma "
-"vezque mudá-la irá requerer uma re-instalação do Citadel."
-
-#. Type: string
-#. Description
-#: ../citadel-server.templates:3001
-msgid "Citadel administrator username:"
-msgstr "Nome de utilizador do administrador Citadel:"
-
-#. Type: string
-#. Description
-#: ../citadel-server.templates:3001
-msgid ""
-"Please enter the name of the Citadel user account that should be granted "
-"administrative privileges once created."
-msgstr ""
-"Indique o nome da conta de utilizador do Citadel à qual serão "
-"automaticamente atribuÃdos privilégios administrativos aquando da sua "
-"criação."
-
-#~ msgid ""
-#~ "Specify the way authentication is done, either host based or Citadel "
-#~ "internal. Host based authentication could be /etc/passwd or an LDAP "
-#~ "directory. WARNING: do not change this setting once your system is "
-#~ "installed. Answer \"no\" unless you completely understand this option."
-#~ msgstr ""
-#~ "Indique o modo como a autenticação é efectuada, ou pela máquina ou "
-#~ "internamente pelo Citadel. A autenticação pela máquina pode ser através "
-#~ "de/etc/passwd ou dum directório LDAP. ATENÃÃO: não mude esta opção após o "
-#~ "seusistema estar instalado. Responda \"no\" a não ser que entenda "
-#~ "completamente esta opção."
-
-#~ msgid "Citadel/UX"
-#~ msgstr "Citadel/UX"
-
-#~ msgid ""
-#~ "For post configuring your Citadel Server, use citadel-webcit with your "
-#~ "browser, log in as the user you specified as the Administrator, and "
-#~ "review the Points under the Administration menu. If you have further "
-#~ "questions review www.citadel.org, especially the FAQ and Documentation "
-#~ "section."
-#~ msgstr ""
-#~ "Para configuração posterior do seu servidor Citadel, use o citadel-webcit "
-#~ "com o seu browser, entre com o nome de utilazdor designado como "
-#~ "Administrator, e reveja 'Points' no menu 'Administration'. Se tem mais "
-#~ "dúvidas reveja www.citadel.org, especialmente o FAQ e a secção de "
-#~ "Documentação."
Copied: citadel/tags/7.42-1/debian/po/pt.po (from rev 247, citadel/trunk/debian/po/pt.po)
===================================================================
--- citadel/tags/7.42-1/debian/po/pt.po (rev 0)
+++ citadel/tags/7.42-1/debian/po/pt.po 2009-03-02 12:29:31 UTC (rev 248)
@@ -0,0 +1,138 @@
+# Portuguese translation of citadel's debconf messages.
+# Copyright (C) 2008, Pedro Ribeiro
+# This file is distributed under the same license as the citadel package.
+# Pedro Ribeiro <p.m42.ribeiro at gmail.com>, 2008.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: citadel-7.33-5\n"
+"Report-Msgid-Bugs-To: citadel at packages.debian.org\n"
+"POT-Creation-Date: 2009-03-02 13:17+0100\n"
+"PO-Revision-Date: 2008-04-23 10:46+0100\n"
+"Last-Translator: Pedro Ribeiro <p.m42.ribeiro at gmail.com>\n"
+"Language-Team: Portuguese <traduz at debianpt.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=utf-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#. Type: string
+#. Description
+#: ../citadel-server.templates:1001
+msgid "Listening address for the Citadel server:"
+msgstr "Endereço de escuta para o Citadel:"
+
+#. Type: string
+#. Description
+#: ../citadel-server.templates:1001
+msgid ""
+"Please specify the IP address which the server should be listening to. If "
+"you specify 0.0.0.0, the server will listen on all addresses."
+msgstr ""
+"Por favor, indique o endereço IP no qual o seu servidor irá correr. Se "
+"indicar 0.0.0.0 o Citadel irá escutar em todos os endereços. "
+
+#. Type: string
+#. Description
+#: ../citadel-server.templates:1001
+msgid ""
+"This can usually be left to the default unless multiple instances of Citadel "
+"are running on the same computer."
+msgstr ""
+"Pode normalmente deixar o valor pré-definido a não ser que execute múltiplas "
+"instâncias do Citadel no mesmo computador."
+
+#. Type: boolean
+#. Description
+#: ../citadel-server.templates:2001
+msgid "Enable external authentication mode?"
+msgstr "Habilitar modo de autenticação externo?"
+
+#. Type: boolean
+#. Description
+#: ../citadel-server.templates:2001
+msgid ""
+"Please choose the user authentication mode. By default Citadel will use its "
+"own internal user accounts database. If you accept this option, Citadel "
+"users will have accounts on the host system, authenticated via /etc/passwd "
+"(or LDAP)."
+msgstr ""
+"Por favor, escolha o método de autenticação de utilizadores. Por omissão o "
+"Citadel irá usar a base de dados interna de contas de utilizador. Se aceitar "
+"esta opção, os utilzadores do Citadel irão ter contas no sistema, com "
+"autenticação via /etc/passwd (ou LDAP)."
+
+#. Type: boolean
+#. Description
+#: ../citadel-server.templates:2001
+msgid ""
+"Do not accept this option unless you are sure it is required, since changing "
+"back requires a full reinstall of Citadel."
+msgstr ""
+"Não aceite esta opção a não ser que esteja seguro da sua necessidade, uma "
+"vezque mudá-la irá requerer uma re-instalação do Citadel."
+
+#. Type: string
+#. Description
+#: ../citadel-server.templates:3001
+msgid "Citadel administrator username:"
+msgstr "Nome de utilizador do administrador Citadel:"
+
+#. Type: string
+#. Description
+#: ../citadel-server.templates:3001
+msgid ""
+"Please enter the name of the Citadel user account that should be granted "
+"administrative privileges once created. If using internal authentification "
+"this user account will be created if it does not exist. For external "
+"authentification this user account has to exist."
+msgstr ""
+
+#. Type: password
+#. Description
+#: ../citadel-server.templates:4001
+msgid "Administrator password:"
+msgstr ""
+
+#. Type: password
+#. Description
+#: ../citadel-server.templates:4001
+msgid ""
+"While not mandatory, it is highly recommended that you set a password for "
+"the administrator user."
+msgstr ""
+
+#~ msgid ""
+#~ "Please enter the name of the Citadel user account that should be granted "
+#~ "administrative privileges once created."
+#~ msgstr ""
+#~ "Indique o nome da conta de utilizador do Citadel à qual serão "
+#~ "automaticamente atribuÃdos privilégios administrativos aquando da sua "
+#~ "criação."
+
+#~ msgid ""
+#~ "Specify the way authentication is done, either host based or Citadel "
+#~ "internal. Host based authentication could be /etc/passwd or an LDAP "
+#~ "directory. WARNING: do not change this setting once your system is "
+#~ "installed. Answer \"no\" unless you completely understand this option."
+#~ msgstr ""
+#~ "Indique o modo como a autenticação é efectuada, ou pela máquina ou "
+#~ "internamente pelo Citadel. A autenticação pela máquina pode ser através "
+#~ "de/etc/passwd ou dum directório LDAP. ATENÃÃO: não mude esta opção após o "
+#~ "seusistema estar instalado. Responda \"no\" a não ser que entenda "
+#~ "completamente esta opção."
+
+#~ msgid "Citadel/UX"
+#~ msgstr "Citadel/UX"
+
+#~ msgid ""
+#~ "For post configuring your Citadel Server, use citadel-webcit with your "
+#~ "browser, log in as the user you specified as the Administrator, and "
+#~ "review the Points under the Administration menu. If you have further "
+#~ "questions review www.citadel.org, especially the FAQ and Documentation "
+#~ "section."
+#~ msgstr ""
+#~ "Para configuração posterior do seu servidor Citadel, use o citadel-webcit "
+#~ "com o seu browser, entre com o nome de utilazdor designado como "
+#~ "Administrator, e reveja 'Points' no menu 'Administration'. Se tem mais "
+#~ "dúvidas reveja www.citadel.org, especialmente o FAQ e a secção de "
+#~ "Documentação."
Deleted: citadel/tags/7.42-1/debian/po/ru.po
===================================================================
--- citadel/trunk/debian/po/ru.po 2009-03-01 20:59:31 UTC (rev 244)
+++ citadel/tags/7.42-1/debian/po/ru.po 2009-03-02 12:29:31 UTC (rev 248)
@@ -1,93 +0,0 @@
-# translation of ru.po to Russian
-# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the PACKAGE package.
-#
-# Yuri Kozlov <kozlov.y at gmail.com>, 2008.
-msgid ""
-msgstr ""
-"Project-Id-Version: ru\n"
-"Report-Msgid-Bugs-To: citadel at packages.debian.org\n"
-"POT-Creation-Date: 2008-08-15 13:43+0200\n"
-"PO-Revision-Date: 2008-07-25 22:06+0400\n"
-"Last-Translator: Yuri Kozlov <kozlov.y at gmail.com>\n"
-"Language-Team: Russian <debian-l10n-russian at lists.debian.org>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: KBabel 1.11.4\n"
-"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%"
-"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
-
-#. Type: string
-#. Description
-#: ../citadel-server.templates:1001
-msgid "Listening address for the Citadel server:"
-msgstr "ÐÑоÑлÑÑиваемÑй адÑÐµÑ Ð´Ð»Ñ ÑеÑвеÑа Citadel:"
-
-#. Type: string
-#. Description
-#: ../citadel-server.templates:1001
-msgid ""
-"Please specify the IP address which the server should be listening to. If "
-"you specify 0.0.0.0, the server will listen on all addresses."
-msgstr ""
-"ÐведиÑе IP-адÑеÑ, коÑоÑÑй бÑÐ´ÐµÑ Ð¸ÑполÑзоваÑÑ ÑеÑÐ²ÐµÑ Ð´Ð»Ñ Ð¾Ð¶Ð¸Ð´Ð°Ð½Ð¸Ñ "
-"подклÑÑений. ÐÑли ÑказаÑÑ 0.0.0.0, Ñо Citadel бÑÐ´ÐµÑ Ð¾Ð¶Ð¸Ð´Ð°ÑÑ Ð¿Ð¾Ð´ÐºÐ»ÑÑÐµÐ½Ð¸Ñ Ð½Ð° "
-"лÑбой адÑеÑ."
-
-#. Type: string
-#. Description
-#: ../citadel-server.templates:1001
-msgid ""
-"This can usually be left to the default unless multiple instances of Citadel "
-"are running on the same computer."
-msgstr ""
-"ÐбÑÑно, можно оÑÑавиÑÑ Ð·Ð½Ð°Ñение по ÑмолÑаниÑ, еÑли Ð²Ñ Ð½Ðµ запÑÑкаеÑе "
-"неÑколÑко ÑкземплÑÑов Citadel на одном компÑÑÑеÑе."
-
-#. Type: boolean
-#. Description
-#: ../citadel-server.templates:2001
-msgid "Enable external authentication mode?"
-msgstr "ÐклÑÑиÑÑ Ñежим внеÑней аÑÑенÑиÑикаÑии?"
-
-#. Type: boolean
-#. Description
-#: ../citadel-server.templates:2001
-msgid ""
-"Please choose the user authentication mode. By default Citadel will use its "
-"own internal user accounts database. If you accept this option, Citadel "
-"users will have accounts on the host system, authenticated via /etc/passwd "
-"(or LDAP)."
-msgstr ""
-"ÐÑбеÑиÑе Ñежим полÑзоваÑелÑÑкой аÑÑенÑиÑикаÑии. Ðо ÑмолÑÐ°Ð½Ð¸Ñ Citadel "
-"иÑполÑзÑÐµÑ ÑÐ²Ð¾Ñ ÑобÑÑвеннÑÑ Ð²Ð½ÑÑÑеннÑÑ Ð±Ð°Ð·Ñ Ð´Ð°Ð½Ð½ÑÑ
ÑÑÑÑнÑÑ
запиÑей. ÐÑли Ð²Ñ "
-"оÑвеÑиÑе ÑÑвеÑдиÑелÑно, Ñо полÑзоваÑелÑÑкими ÑÑÑÑнÑми запиÑÑми Citadel бÑдÑÑ "
-"ÑÑиÑаÑÑÑÑ ÑÑÑÑнÑе запиÑи маÑинÑ, на коÑоÑой он ÑÑÑановлен, а Ð´Ð»Ñ "
-"аÑÑенÑиÑикаÑии бÑÐ´ÐµÑ Ð¸ÑполÑзоваÑÑÑÑ Ñайл /etc/passwd (или каÑалог LDAP)."
-
-#. Type: boolean
-#. Description
-#: ../citadel-server.templates:2001
-msgid ""
-"Do not accept this option unless you are sure it is required, since changing "
-"back requires a full reinstall of Citadel."
-msgstr ""
-"Ðе оÑвеÑайÑе ÑÑвеÑдиÑелÑно, еÑли не ÑвеÑенÑ, ÑÑо ÑÑо дейÑÑвиÑелÑно нÑжно, "
-"Ñак как изменение поÑÑебÑÐµÑ Ð¿Ð¾Ð»Ð½ÑÑ Ð¿ÐµÑеÑÑÐ°Ð½Ð¾Ð²ÐºÑ Citadel."
-
-#. Type: string
-#. Description
-#: ../citadel-server.templates:3001
-msgid "Citadel administrator username:"
-msgstr "ÐÐ¼Ñ Ð¿Ð¾Ð»ÑзоваÑÐµÐ»Ñ Ð°Ð´Ð¼Ð¸Ð½Ð¸ÑÑÑаÑоÑа Citadel:"
-
-#. Type: string
-#. Description
-#: ../citadel-server.templates:3001
-msgid ""
-"Please enter the name of the Citadel user account that should be granted "
-"administrative privileges once created."
-msgstr ""
-"ÐведиÑе название ÑÑÑÑной запиÑи админиÑÑÑаÑоÑа Citadel, коÑоÑой бÑдÑÑ Ð´Ð°Ð½Ñ "
-"админиÑÑÑаÑивнÑе пÑава поÑле ÑозданиÑ."
Copied: citadel/tags/7.42-1/debian/po/ru.po (from rev 247, citadel/trunk/debian/po/ru.po)
===================================================================
--- citadel/tags/7.42-1/debian/po/ru.po (rev 0)
+++ citadel/tags/7.42-1/debian/po/ru.po 2009-03-02 12:29:31 UTC (rev 248)
@@ -0,0 +1,114 @@
+# translation of ru.po to Russian
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+#
+# Yuri Kozlov <kozlov.y at gmail.com>, 2008.
+msgid ""
+msgstr ""
+"Project-Id-Version: ru\n"
+"Report-Msgid-Bugs-To: citadel at packages.debian.org\n"
+"POT-Creation-Date: 2009-03-02 13:17+0100\n"
+"PO-Revision-Date: 2008-07-25 22:06+0400\n"
+"Last-Translator: Yuri Kozlov <kozlov.y at gmail.com>\n"
+"Language-Team: Russian <debian-l10n-russian at lists.debian.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: KBabel 1.11.4\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%"
+"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
+
+#. Type: string
+#. Description
+#: ../citadel-server.templates:1001
+msgid "Listening address for the Citadel server:"
+msgstr "ÐÑоÑлÑÑиваемÑй адÑÐµÑ Ð´Ð»Ñ ÑеÑвеÑа Citadel:"
+
+#. Type: string
+#. Description
+#: ../citadel-server.templates:1001
+msgid ""
+"Please specify the IP address which the server should be listening to. If "
+"you specify 0.0.0.0, the server will listen on all addresses."
+msgstr ""
+"ÐведиÑе IP-адÑеÑ, коÑоÑÑй бÑÐ´ÐµÑ Ð¸ÑполÑзоваÑÑ ÑеÑÐ²ÐµÑ Ð´Ð»Ñ Ð¾Ð¶Ð¸Ð´Ð°Ð½Ð¸Ñ "
+"подклÑÑений. ÐÑли ÑказаÑÑ 0.0.0.0, Ñо Citadel бÑÐ´ÐµÑ Ð¾Ð¶Ð¸Ð´Ð°ÑÑ Ð¿Ð¾Ð´ÐºÐ»ÑÑÐµÐ½Ð¸Ñ Ð½Ð° "
+"лÑбой адÑеÑ."
+
+#. Type: string
+#. Description
+#: ../citadel-server.templates:1001
+msgid ""
+"This can usually be left to the default unless multiple instances of Citadel "
+"are running on the same computer."
+msgstr ""
+"ÐбÑÑно, можно оÑÑавиÑÑ Ð·Ð½Ð°Ñение по ÑмолÑаниÑ, еÑли Ð²Ñ Ð½Ðµ запÑÑкаеÑе "
+"неÑколÑко ÑкземплÑÑов Citadel на одном компÑÑÑеÑе."
+
+#. Type: boolean
+#. Description
+#: ../citadel-server.templates:2001
+msgid "Enable external authentication mode?"
+msgstr "ÐклÑÑиÑÑ Ñежим внеÑней аÑÑенÑиÑикаÑии?"
+
+#. Type: boolean
+#. Description
+#: ../citadel-server.templates:2001
+msgid ""
+"Please choose the user authentication mode. By default Citadel will use its "
+"own internal user accounts database. If you accept this option, Citadel "
+"users will have accounts on the host system, authenticated via /etc/passwd "
+"(or LDAP)."
+msgstr ""
+"ÐÑбеÑиÑе Ñежим полÑзоваÑелÑÑкой аÑÑенÑиÑикаÑии. Ðо ÑмолÑÐ°Ð½Ð¸Ñ Citadel "
+"иÑполÑзÑÐµÑ ÑÐ²Ð¾Ñ ÑобÑÑвеннÑÑ Ð²Ð½ÑÑÑеннÑÑ Ð±Ð°Ð·Ñ Ð´Ð°Ð½Ð½ÑÑ
ÑÑÑÑнÑÑ
запиÑей. ÐÑли Ð²Ñ "
+"оÑвеÑиÑе ÑÑвеÑдиÑелÑно, Ñо полÑзоваÑелÑÑкими ÑÑÑÑнÑми запиÑÑми Citadel бÑдÑÑ "
+"ÑÑиÑаÑÑÑÑ ÑÑÑÑнÑе запиÑи маÑинÑ, на коÑоÑой он ÑÑÑановлен, а Ð´Ð»Ñ "
+"аÑÑенÑиÑикаÑии бÑÐ´ÐµÑ Ð¸ÑполÑзоваÑÑÑÑ Ñайл /etc/passwd (или каÑалог LDAP)."
+
+#. Type: boolean
+#. Description
+#: ../citadel-server.templates:2001
+msgid ""
+"Do not accept this option unless you are sure it is required, since changing "
+"back requires a full reinstall of Citadel."
+msgstr ""
+"Ðе оÑвеÑайÑе ÑÑвеÑдиÑелÑно, еÑли не ÑвеÑенÑ, ÑÑо ÑÑо дейÑÑвиÑелÑно нÑжно, "
+"Ñак как изменение поÑÑебÑÐµÑ Ð¿Ð¾Ð»Ð½ÑÑ Ð¿ÐµÑеÑÑÐ°Ð½Ð¾Ð²ÐºÑ Citadel."
+
+#. Type: string
+#. Description
+#: ../citadel-server.templates:3001
+msgid "Citadel administrator username:"
+msgstr "ÐÐ¼Ñ Ð¿Ð¾Ð»ÑзоваÑÐµÐ»Ñ Ð°Ð´Ð¼Ð¸Ð½Ð¸ÑÑÑаÑоÑа Citadel:"
+
+#. Type: string
+#. Description
+#: ../citadel-server.templates:3001
+msgid ""
+"Please enter the name of the Citadel user account that should be granted "
+"administrative privileges once created. If using internal authentification "
+"this user account will be created if it does not exist. For external "
+"authentification this user account has to exist."
+msgstr ""
+
+#. Type: password
+#. Description
+#: ../citadel-server.templates:4001
+msgid "Administrator password:"
+msgstr ""
+
+#. Type: password
+#. Description
+#: ../citadel-server.templates:4001
+msgid ""
+"While not mandatory, it is highly recommended that you set a password for "
+"the administrator user."
+msgstr ""
+
+#~ msgid ""
+#~ "Please enter the name of the Citadel user account that should be granted "
+#~ "administrative privileges once created."
+#~ msgstr ""
+#~ "ÐведиÑе название ÑÑÑÑной запиÑи админиÑÑÑаÑоÑа Citadel, коÑоÑой бÑдÑÑ "
+#~ "Ð´Ð°Ð½Ñ Ð°Ð´Ð¼Ð¸Ð½Ð¸ÑÑÑаÑивнÑе пÑава поÑле ÑозданиÑ."
Deleted: citadel/tags/7.42-1/debian/po/sv.po
===================================================================
--- citadel/trunk/debian/po/sv.po 2009-03-01 20:59:31 UTC (rev 244)
+++ citadel/tags/7.42-1/debian/po/sv.po 2009-03-02 12:29:31 UTC (rev 248)
@@ -1,88 +0,0 @@
-# translation of citadel.po to swedish
-# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the PACKAGE package.
-#
-# Martin Bagge <brother at bsnet.se>, 2008.
-msgid ""
-msgstr ""
-"Project-Id-Version: citadel\n"
-"Report-Msgid-Bugs-To: citadel at packages.debian.org\n"
-"POT-Creation-Date: 2008-04-11 21:46+0200\n"
-"PO-Revision-Date: 2008-11-22 20:33+0100\n"
-"Last-Translator: Martin Bagge <brother at bsnet.se>\n"
-"Language-Team: swedish <debian-l10n-swedish at lists.debian.org>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: KBabel 1.11.4\n"
-
-#. Type: string
-#. Description
-#: ../citadel-server.templates:1001
-msgid "Listening address for the Citadel server:"
-msgstr "Adress som Citadel-servern ska lyssna på:"
-
-#. Type: string
-#. Description
-#: ../citadel-server.templates:1001
-msgid ""
-"Please specify the IP address which the server should be listening to. If "
-"you specify 0.0.0.0, the server will listen on all addresses."
-msgstr ""
-"Ange IP-adressen som servern ska lyssna på. Om du anger 0.0.0.0 kommer "
-"servern att lyssna på alla adresser."
-
-#. Type: string
-#. Description
-#: ../citadel-server.templates:1001
-msgid ""
-"This can usually be left to the default unless multiple instances of Citadel "
-"are running on the same computer."
-msgstr ""
-"Standardvalet fungerar utmärkt för alla som endast kör en instans av Citadel "
-"på samma dator."
-
-#. Type: boolean
-#. Description
-#: ../citadel-server.templates:2001
-msgid "Enable external authentication mode?"
-msgstr "Aktivera det externa identifieringsläget?"
-
-#. Type: boolean
-#. Description
-#: ../citadel-server.templates:2001
-msgid ""
-"Please choose the user authentication mode. By default Citadel will use its "
-"own internal user accounts database. If you accept this option, Citadel "
-"users will have accounts on the host system, authenticated via /etc/passwd "
-"(or LDAP)."
-msgstr ""
-"Ange vilket identifieringsläge som ska användas. Standardvalet är att "
-"Citadel använder sin interna kontodatabase. Genom att välja detta alternativ "
-"kommer Citadelanvändarna ha konton på värdsystemet och identifieras via /etc/"
-"passwd (eller LDAP)."
-
-#. Type: boolean
-#. Description
-#: ../citadel-server.templates:2001
-msgid ""
-"Do not accept this option unless you are sure it is required, since changing "
-"back requires a full reinstall of Citadel."
-msgstr ""
-"Välj inte detta alternativ om du inte är helt säker på att det är vad du "
-"behöver ha, att byta till annat läge kräver att hela Citadel installeras om."
-
-#. Type: string
-#. Description
-#: ../citadel-server.templates:3001
-msgid "Citadel administrator username:"
-msgstr "Användarnamn för Citadel-administratören:"
-
-#. Type: string
-#. Description
-#: ../citadel-server.templates:3001
-msgid ""
-"Please enter the name of the Citadel user account that should be granted "
-"administrative privileges once created."
-msgstr ""
-"Ange namnet på det Citadel-konto som ska agera adminstratör när det skapats."
Copied: citadel/tags/7.42-1/debian/po/sv.po (from rev 247, citadel/trunk/debian/po/sv.po)
===================================================================
--- citadel/tags/7.42-1/debian/po/sv.po (rev 0)
+++ citadel/tags/7.42-1/debian/po/sv.po 2009-03-02 12:29:31 UTC (rev 248)
@@ -0,0 +1,110 @@
+# translation of citadel.po to swedish
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+#
+# Martin Bagge <brother at bsnet.se>, 2008.
+msgid ""
+msgstr ""
+"Project-Id-Version: citadel\n"
+"Report-Msgid-Bugs-To: citadel at packages.debian.org\n"
+"POT-Creation-Date: 2009-03-02 13:17+0100\n"
+"PO-Revision-Date: 2008-11-22 20:33+0100\n"
+"Last-Translator: Martin Bagge <brother at bsnet.se>\n"
+"Language-Team: swedish <debian-l10n-swedish at lists.debian.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: KBabel 1.11.4\n"
+
+#. Type: string
+#. Description
+#: ../citadel-server.templates:1001
+msgid "Listening address for the Citadel server:"
+msgstr "Adress som Citadel-servern ska lyssna på:"
+
+#. Type: string
+#. Description
+#: ../citadel-server.templates:1001
+msgid ""
+"Please specify the IP address which the server should be listening to. If "
+"you specify 0.0.0.0, the server will listen on all addresses."
+msgstr ""
+"Ange IP-adressen som servern ska lyssna på. Om du anger 0.0.0.0 kommer "
+"servern att lyssna på alla adresser."
+
+#. Type: string
+#. Description
+#: ../citadel-server.templates:1001
+msgid ""
+"This can usually be left to the default unless multiple instances of Citadel "
+"are running on the same computer."
+msgstr ""
+"Standardvalet fungerar utmärkt för alla som endast kör en instans av Citadel "
+"på samma dator."
+
+#. Type: boolean
+#. Description
+#: ../citadel-server.templates:2001
+msgid "Enable external authentication mode?"
+msgstr "Aktivera det externa identifieringsläget?"
+
+#. Type: boolean
+#. Description
+#: ../citadel-server.templates:2001
+msgid ""
+"Please choose the user authentication mode. By default Citadel will use its "
+"own internal user accounts database. If you accept this option, Citadel "
+"users will have accounts on the host system, authenticated via /etc/passwd "
+"(or LDAP)."
+msgstr ""
+"Ange vilket identifieringsläge som ska användas. Standardvalet är att "
+"Citadel använder sin interna kontodatabase. Genom att välja detta alternativ "
+"kommer Citadelanvändarna ha konton på värdsystemet och identifieras via /etc/"
+"passwd (eller LDAP)."
+
+#. Type: boolean
+#. Description
+#: ../citadel-server.templates:2001
+msgid ""
+"Do not accept this option unless you are sure it is required, since changing "
+"back requires a full reinstall of Citadel."
+msgstr ""
+"Välj inte detta alternativ om du inte är helt säker på att det är vad du "
+"behöver ha, att byta till annat läge kräver att hela Citadel installeras om."
+
+#. Type: string
+#. Description
+#: ../citadel-server.templates:3001
+msgid "Citadel administrator username:"
+msgstr "Användarnamn för Citadel-administratören:"
+
+#. Type: string
+#. Description
+#: ../citadel-server.templates:3001
+msgid ""
+"Please enter the name of the Citadel user account that should be granted "
+"administrative privileges once created. If using internal authentification "
+"this user account will be created if it does not exist. For external "
+"authentification this user account has to exist."
+msgstr ""
+
+#. Type: password
+#. Description
+#: ../citadel-server.templates:4001
+msgid "Administrator password:"
+msgstr ""
+
+#. Type: password
+#. Description
+#: ../citadel-server.templates:4001
+msgid ""
+"While not mandatory, it is highly recommended that you set a password for "
+"the administrator user."
+msgstr ""
+
+#~ msgid ""
+#~ "Please enter the name of the Citadel user account that should be granted "
+#~ "administrative privileges once created."
+#~ msgstr ""
+#~ "Ange namnet på det Citadel-konto som ska agera adminstratör när det "
+#~ "skapats."
Deleted: citadel/tags/7.42-1/debian/po/templates.pot
===================================================================
--- citadel/trunk/debian/po/templates.pot 2009-03-01 20:59:31 UTC (rev 244)
+++ citadel/tags/7.42-1/debian/po/templates.pot 2009-03-02 12:29:31 UTC (rev 248)
@@ -1,77 +0,0 @@
-# SOME DESCRIPTIVE TITLE.
-# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the PACKAGE package.
-# FIRST AUTHOR <EMAIL at ADDRESS>, YEAR.
-#
-#, fuzzy
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: citadel at packages.debian.org\n"
-"POT-Creation-Date: 2008-04-11 21:46+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
-"Language-Team: LANGUAGE <LL at li.org>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=CHARSET\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#. Type: string
-#. Description
-#: ../citadel-server.templates:1001
-msgid "Listening address for the Citadel server:"
-msgstr ""
-
-#. Type: string
-#. Description
-#: ../citadel-server.templates:1001
-msgid ""
-"Please specify the IP address which the server should be listening to. If "
-"you specify 0.0.0.0, the server will listen on all addresses."
-msgstr ""
-
-#. Type: string
-#. Description
-#: ../citadel-server.templates:1001
-msgid ""
-"This can usually be left to the default unless multiple instances of Citadel "
-"are running on the same computer."
-msgstr ""
-
-#. Type: boolean
-#. Description
-#: ../citadel-server.templates:2001
-msgid "Enable external authentication mode?"
-msgstr ""
-
-#. Type: boolean
-#. Description
-#: ../citadel-server.templates:2001
-msgid ""
-"Please choose the user authentication mode. By default Citadel will use its "
-"own internal user accounts database. If you accept this option, Citadel "
-"users will have accounts on the host system, authenticated via /etc/passwd "
-"(or LDAP)."
-msgstr ""
-
-#. Type: boolean
-#. Description
-#: ../citadel-server.templates:2001
-msgid ""
-"Do not accept this option unless you are sure it is required, since changing "
-"back requires a full reinstall of Citadel."
-msgstr ""
-
-#. Type: string
-#. Description
-#: ../citadel-server.templates:3001
-msgid "Citadel administrator username:"
-msgstr ""
-
-#. Type: string
-#. Description
-#: ../citadel-server.templates:3001
-msgid ""
-"Please enter the name of the Citadel user account that should be granted "
-"administrative privileges once created."
-msgstr ""
Copied: citadel/tags/7.42-1/debian/po/templates.pot (from rev 247, citadel/trunk/debian/po/templates.pot)
===================================================================
--- citadel/tags/7.42-1/debian/po/templates.pot (rev 0)
+++ citadel/tags/7.42-1/debian/po/templates.pot 2009-03-02 12:29:31 UTC (rev 248)
@@ -0,0 +1,93 @@
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+# FIRST AUTHOR <EMAIL at ADDRESS>, YEAR.
+#
+#, fuzzy
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: citadel at packages.debian.org\n"
+"POT-Creation-Date: 2009-03-02 13:17+0100\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
+"Language-Team: LANGUAGE <LL at li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=CHARSET\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#. Type: string
+#. Description
+#: ../citadel-server.templates:1001
+msgid "Listening address for the Citadel server:"
+msgstr ""
+
+#. Type: string
+#. Description
+#: ../citadel-server.templates:1001
+msgid ""
+"Please specify the IP address which the server should be listening to. If "
+"you specify 0.0.0.0, the server will listen on all addresses."
+msgstr ""
+
+#. Type: string
+#. Description
+#: ../citadel-server.templates:1001
+msgid ""
+"This can usually be left to the default unless multiple instances of Citadel "
+"are running on the same computer."
+msgstr ""
+
+#. Type: boolean
+#. Description
+#: ../citadel-server.templates:2001
+msgid "Enable external authentication mode?"
+msgstr ""
+
+#. Type: boolean
+#. Description
+#: ../citadel-server.templates:2001
+msgid ""
+"Please choose the user authentication mode. By default Citadel will use its "
+"own internal user accounts database. If you accept this option, Citadel "
+"users will have accounts on the host system, authenticated via /etc/passwd "
+"(or LDAP)."
+msgstr ""
+
+#. Type: boolean
+#. Description
+#: ../citadel-server.templates:2001
+msgid ""
+"Do not accept this option unless you are sure it is required, since changing "
+"back requires a full reinstall of Citadel."
+msgstr ""
+
+#. Type: string
+#. Description
+#: ../citadel-server.templates:3001
+msgid "Citadel administrator username:"
+msgstr ""
+
+#. Type: string
+#. Description
+#: ../citadel-server.templates:3001
+msgid ""
+"Please enter the name of the Citadel user account that should be granted "
+"administrative privileges once created. If using internal authentification "
+"this user account will be created if it does not exist. For external "
+"authentification this user account has to exist."
+msgstr ""
+
+#. Type: password
+#. Description
+#: ../citadel-server.templates:4001
+msgid "Administrator password:"
+msgstr ""
+
+#. Type: password
+#. Description
+#: ../citadel-server.templates:4001
+msgid ""
+"While not mandatory, it is highly recommended that you set a password for "
+"the administrator user."
+msgstr ""
Deleted: citadel/tags/7.42-1/debian/po/vi.po
===================================================================
--- citadel/trunk/debian/po/vi.po 2009-03-01 20:59:31 UTC (rev 244)
+++ citadel/tags/7.42-1/debian/po/vi.po 2009-03-02 12:29:31 UTC (rev 248)
@@ -1,95 +0,0 @@
-# Vietnamese translation for Citadel.
-# Copyright © 2009 Free Software Foundation, Inc.
-# Clytie Siddall <clytie at riverland.net.au>, 2008-2009.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: citadel 7.38-1\n"
-"Report-Msgid-Bugs-To: citadel at packages.debian.org\n"
-"POT-Creation-Date: 2008-04-11 21:46+0200\n"
-"PO-Revision-Date: 2009-02-18 15:34+1030\n"
-"Last-Translator: Clytie Siddall <clytie at riverland.net.au>\n"
-"Language-Team: Vietnamese <vi-VN at googlegroups.com>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=1; plural=0;\n"
-"X-Generator: LocFactoryEditor 1.8\n"
-
-#. Type: string
-#. Description
-#: ../citadel-server.templates:1001
-msgid "Listening address for the Citadel server:"
-msgstr "Äá»a chá» lắng nghe cho trình phục vụ Citadel:"
-
-#. Type: string
-#. Description
-#: ../citadel-server.templates:1001
-msgid ""
-"Please specify the IP address which the server should be listening to. If "
-"you specify 0.0.0.0, the server will listen on all addresses."
-msgstr ""
-"Hãy chá» Äá»nh Äá»a chá» IP trên Äó trình phục vụ nên lắng nghe. Äặt Äá»a chỠ« "
-"0.0.0.0 » thì trình phục vụ lắng nghe trên má»i Äá»a chá»."
-
-#. Type: string
-#. Description
-#: ../citadel-server.templates:1001
-msgid ""
-"This can usually be left to the default unless multiple instances of Citadel "
-"are running on the same computer."
-msgstr ""
-"Giá trá» mặc Äá»nh thưá»ng là thÃch hợp nếu chá» có má»t tiến trình Citadel Äang "
-"chạy trên máy nà y."
-
-#. Type: boolean
-#. Description
-#: ../citadel-server.templates:2001
-msgid "Enable external authentication mode?"
-msgstr "Báºt chế Äá» xác thá»±c bên ngoà i không?"
-
-#. Type: boolean
-#. Description
-#: ../citadel-server.templates:2001
-#, fuzzy
-#| msgid ""
-#| "Please choose the user authentication mode. By default Citadel will use "
-#| "its own internal user accounts database. If you accept this option, "
-#| "Citadel users will have accounts on the host system, authenticated via /"
-#| "etc/passwd (or LDAP)."
-msgid ""
-"Please choose the user authentication mode. By default Citadel will use its "
-"own internal user accounts database. If you accept this option, Citadel "
-"users will have accounts on the host system, authenticated via /etc/passwd "
-"(or LDAP)."
-msgstr ""
-"Hãy chá»n chế Äá» xác thá»±c ngưá»i dùng. Mặc Äá»nh là Citadel dùng cÆ¡ sá» dữ liá»u "
-"tà i khoản ngưá»i dùng ná»i bá» cá»§a chÃnh nó. Báºt tùy chá»n nà y thì má»i ngưá»i "
-"dùng Citadel sẽ có tà i khoản trên há» thá»ng gá»c, xác thá»±c thông qua « /etc/"
-"passwd » (hay LDAP)."
-
-#. Type: boolean
-#. Description
-#: ../citadel-server.templates:2001
-msgid ""
-"Do not accept this option unless you are sure it is required, since changing "
-"back requires a full reinstall of Citadel."
-msgstr ""
-"Chưa chắc thì không nên báºt tuỳ chá»n nà y, vì viá»c hoà n nguyên cần thiết cà i "
-"Äặt lại hoà n toà n Citadel."
-
-#. Type: string
-#. Description
-#: ../citadel-server.templates:3001
-msgid "Citadel administrator username:"
-msgstr "Tên ngưá»i dùng quản trá» Citadel:"
-
-#. Type: string
-#. Description
-#: ../citadel-server.templates:3001
-msgid ""
-"Please enter the name of the Citadel user account that should be granted "
-"administrative privileges once created."
-msgstr ""
-"Hãy nháºp tên cá»§a tà i khoản ngưá»i dùng Citadel nên có quyá»n quản trá» má»t khi "
-"ÄÆ°á»£c tạo."
Copied: citadel/tags/7.42-1/debian/po/vi.po (from rev 247, citadel/trunk/debian/po/vi.po)
===================================================================
--- citadel/tags/7.42-1/debian/po/vi.po (rev 0)
+++ citadel/tags/7.42-1/debian/po/vi.po 2009-03-02 12:29:31 UTC (rev 248)
@@ -0,0 +1,116 @@
+# Vietnamese translation for Citadel.
+# Copyright © 2009 Free Software Foundation, Inc.
+# Clytie Siddall <clytie at riverland.net.au>, 2008-2009.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: citadel 7.38-1\n"
+"Report-Msgid-Bugs-To: citadel at packages.debian.org\n"
+"POT-Creation-Date: 2009-03-02 13:17+0100\n"
+"PO-Revision-Date: 2009-02-18 15:34+1030\n"
+"Last-Translator: Clytie Siddall <clytie at riverland.net.au>\n"
+"Language-Team: Vietnamese <vi-VN at googlegroups.com>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=1; plural=0;\n"
+"X-Generator: LocFactoryEditor 1.8\n"
+
+#. Type: string
+#. Description
+#: ../citadel-server.templates:1001
+msgid "Listening address for the Citadel server:"
+msgstr "Äá»a chá» lắng nghe cho trình phục vụ Citadel:"
+
+#. Type: string
+#. Description
+#: ../citadel-server.templates:1001
+msgid ""
+"Please specify the IP address which the server should be listening to. If "
+"you specify 0.0.0.0, the server will listen on all addresses."
+msgstr ""
+"Hãy chá» Äá»nh Äá»a chá» IP trên Äó trình phục vụ nên lắng nghe. Äặt Äá»a chỠ« "
+"0.0.0.0 » thì trình phục vụ lắng nghe trên má»i Äá»a chá»."
+
+#. Type: string
+#. Description
+#: ../citadel-server.templates:1001
+msgid ""
+"This can usually be left to the default unless multiple instances of Citadel "
+"are running on the same computer."
+msgstr ""
+"Giá trá» mặc Äá»nh thưá»ng là thÃch hợp nếu chá» có má»t tiến trình Citadel Äang "
+"chạy trên máy nà y."
+
+#. Type: boolean
+#. Description
+#: ../citadel-server.templates:2001
+msgid "Enable external authentication mode?"
+msgstr "Báºt chế Äá» xác thá»±c bên ngoà i không?"
+
+#. Type: boolean
+#. Description
+#: ../citadel-server.templates:2001
+#, fuzzy
+#| msgid ""
+#| "Please choose the user authentication mode. By default Citadel will use "
+#| "its own internal user accounts database. If you accept this option, "
+#| "Citadel users will have accounts on the host system, authenticated via /"
+#| "etc/passwd (or LDAP)."
+msgid ""
+"Please choose the user authentication mode. By default Citadel will use its "
+"own internal user accounts database. If you accept this option, Citadel "
+"users will have accounts on the host system, authenticated via /etc/passwd "
+"(or LDAP)."
+msgstr ""
+"Hãy chá»n chế Äá» xác thá»±c ngưá»i dùng. Mặc Äá»nh là Citadel dùng cÆ¡ sá» dữ liá»u "
+"tà i khoản ngưá»i dùng ná»i bá» cá»§a chÃnh nó. Báºt tùy chá»n nà y thì má»i ngưá»i "
+"dùng Citadel sẽ có tà i khoản trên há» thá»ng gá»c, xác thá»±c thông qua « /etc/"
+"passwd » (hay LDAP)."
+
+#. Type: boolean
+#. Description
+#: ../citadel-server.templates:2001
+msgid ""
+"Do not accept this option unless you are sure it is required, since changing "
+"back requires a full reinstall of Citadel."
+msgstr ""
+"Chưa chắc thì không nên báºt tuỳ chá»n nà y, vì viá»c hoà n nguyên cần thiết cà i "
+"Äặt lại hoà n toà n Citadel."
+
+#. Type: string
+#. Description
+#: ../citadel-server.templates:3001
+msgid "Citadel administrator username:"
+msgstr "Tên ngưá»i dùng quản trá» Citadel:"
+
+#. Type: string
+#. Description
+#: ../citadel-server.templates:3001
+msgid ""
+"Please enter the name of the Citadel user account that should be granted "
+"administrative privileges once created. If using internal authentification "
+"this user account will be created if it does not exist. For external "
+"authentification this user account has to exist."
+msgstr ""
+
+#. Type: password
+#. Description
+#: ../citadel-server.templates:4001
+msgid "Administrator password:"
+msgstr ""
+
+#. Type: password
+#. Description
+#: ../citadel-server.templates:4001
+msgid ""
+"While not mandatory, it is highly recommended that you set a password for "
+"the administrator user."
+msgstr ""
+
+#~ msgid ""
+#~ "Please enter the name of the Citadel user account that should be granted "
+#~ "administrative privileges once created."
+#~ msgstr ""
+#~ "Hãy nháºp tên cá»§a tà i khoản ngưá»i dùng Citadel nên có quyá»n quản trá» má»t "
+#~ "khi ÄÆ°á»£c tạo."
Copied: libcitadel/tags/7.42-1 (from rev 244, libcitadel/trunk)
Copied: webcit/tags/7.42-dfsg-1 (from rev 244, webcit/trunk)
More information about the Pkg-citadel-commit
mailing list