[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