Merge branch 'master' of ssh://git.citadel.org/appl/gitroot/citadel
authorArt Cancro <ajc@citadel.org>
Tue, 28 Sep 2010 15:39:54 +0000 (11:39 -0400)
committerArt Cancro <ajc@citadel.org>
Tue, 28 Sep 2010 15:39:54 +0000 (11:39 -0400)
22 files changed:
citadel/.gitignore
citadel/Makefile.in
citadel/configure.ac
citadel/debian/citadel-server.install
citadel/debian/control
citadel/debian/rules
citadel/po/Makefile.in [new file with mode: 0644]
citadel/po/ar.po [new file with mode: 0644]
citadel/po/citadel-setup.pot [new file with mode: 0644]
citadel/po/create-pot.sh [new file with mode: 0755]
citadel/po/cs.po [new file with mode: 0644]
citadel/po/de.po [new file with mode: 0644]
citadel/po/es.po [new file with mode: 0644]
citadel/po/fi.po [new file with mode: 0644]
citadel/po/fr.po [new file with mode: 0644]
citadel/po/ja.po [new file with mode: 0644]
citadel/po/pt.po [new file with mode: 0644]
citadel/po/ru.po [new file with mode: 0644]
citadel/po/sv.po [new file with mode: 0644]
citadel/po/vi.po [new file with mode: 0644]
citadel/utils/setup.c
webcit/gettext.c

index 5c55734a17aea77503a1ffeaa93d2b28e8135067..29d2dba6b389e4737152f67863f5353ccee51da6 100644 (file)
@@ -3,6 +3,8 @@
 Make_modules
 Make_sources
 Makefile
+Makefile.in
+locale
 aclocal.m4
 aidepost
 base64
index 89895dfa0e6c7d3efb3555e99f90aa955f3e61fe..304596f70b27bd9a97d8756308c897ffe3cf38de 100644 (file)
@@ -66,6 +66,7 @@ SERVER_LDFLAGS=@SERVER_LDFLAGS@
 SERVER_LIBS=@SERVER_LIBS@
 SETUP_LIBS=@SETUP_LIBS@
 YACC=@YACC@
+LOCALEDIR=@LOCALEDIR@
 
 # End configuration section
 
@@ -103,6 +104,7 @@ mkdir-init:
                (mkdir -p user_modules/$$d ) ; \
        done
        mkdir -p utils utillib textclient
+       mkdir locale
 
 svn_revision.c: ${SOURCES}
        $(srcdir)/scripts/mk_svn_revision.sh
@@ -224,13 +226,23 @@ msgform$(EXEEXT): utils/msgform.o
 
 .PHONY: install-data install-doc install-exec clean cleaner distclean
 
-install: install-exec install-data install-doc
+install-locale:
+       cd po; $(MAKE)
+       for i in `find locale -type d | grep -v .svn` \
+               ; do \
+               test -d $(DESTDIR)$(LOCALEDIR)/$$i || mkdir -p $(DESTDIR)$(LOCALEDIR)/$$i; \
+       done
+       for i in `find locale -type f | grep -v .svn`; do \
+               $(INSTALL) $$i $(DESTDIR)$(LOCALEDIR)/$$i; \
+       done
+
+install: install-exec install-data install-doc install-locale
        @echo 
        @echo Installation is complete.
        @echo Now go to your Citadel directory and run 'setup'.
        @echo 
 
-install-new: install-exec-new install-data-new install-doc-new
+install-new: install-exec-new install-data-new install-doc-new install-locale
        @echo 
        @echo Installation is complete.
        @echo Now go to your Citadel directory and run 'setup'.
@@ -381,6 +393,7 @@ install-exec-new: all
        done
 
 clean:
+       rm -fr locale/*
        rm -f *.o 
        rm -f utils/*.o ;\
        rm -f utillib/*.o ;\
@@ -402,6 +415,7 @@ cleaner: clean
 
 distclean: cleaner
        find . -name '*~' -o -name '.#*' | xargs rm -f
+       rm -f po/Makefile 
        rm -f Makefile sysdep.h config.cache config.log config.status *.d 
        rm -f utils/*.d ;
        rm -f utillib/*.d ;
index db8b1b6a947ebbca38acb34884c3ea2cd72897f0..f59fe78e69fdf8d7dcca2d86164aa9daba859a15 100644 (file)
@@ -9,9 +9,11 @@ AC_PREFIX_DEFAULT(/usr/local/citadel)
 if test "$prefix" = NONE; then
        AC_DEFINE_UNQUOTED(CTDLDIR, "$ac_default_prefix", [define this to the Citadel home directory])
        ssl_dir="$ac_default_prefix/keys"
+       localedir=$ac_default_prefix
 else
        AC_DEFINE_UNQUOTED(CTDLDIR, "$prefix", [define this to the Citadel home directory])
        ssl_dir="$prefix/keys"
+       localedir=$prefix
 fi
 
 dnl Make sure we see all GNU and Solaris extensions.
@@ -154,6 +156,19 @@ AC_ARG_WITH(docdir,
                        ]
 )
 
+dnl where to put the locale files
+AC_ARG_WITH(localedir, 
+                   [  --with-localedir          directory to put the locale files to],
+                       [ if test "x$withval" != "xno" ; then
+                           localedir=$withval
+                         fi
+                       ]
+)
+AC_DEFINE_UNQUOTED(LOCALEDIR, "$localedir",[where to find our pot files])
+LOCALEDIR=$localedir
+AC_SUBST(LOCALEDIR)
+
+
 
 dnl Checks for the zlib compression library.
 if test "x$with_zlib" != xno ; then
@@ -422,11 +437,11 @@ if test "$ok_nls" != "no"; then
 fi
 
 if test "$ok_nls" != "no"; then
-       AC_MSG_RESULT(WebCit will be built with national language support.)
+       AC_MSG_RESULT(citadel will be built with national language support.)
        AC_DEFINE(ENABLE_NLS, [], [whether we have NLS support])
        PROG_SUBDIRS="$PROG_SUBDIRS po"
 else
-       AC_MSG_RESULT(WebCit will be built without national language support.)
+       AC_MSG_RESULT(citadel will be built without national language support.)
 fi
 
 dnl disable backtrace if we don't want it.
@@ -1012,7 +1027,7 @@ AC_SUBST(SERVER_LDFLAGS)
 AC_SUBST(SERVER_LIBS)
 AC_SUBST(SETUP_LIBS)
 AC_CONFIG_FILES([Makefile])
-AC_OUTPUT(database_cleanup.sh)
+AC_OUTPUT(database_cleanup.sh po/Makefile)
 
 if test -z "$DATABASE"; then
        AC_MSG_WARN([No database driver was found. Please install Berkeley DB.])
index 7afb6bb8ca470e6b78bc641704ffb93c498c9d73..3b44c214cffe647a420381a8d60b84dca86b8088 100644 (file)
@@ -20,3 +20,4 @@ usr/sbin/sendcommand
 usr/share/doc/citadel-server/examples/database_cleanup.sh
 usr/share/doc/citadel-server/welcomemail.html
 usr/share/doc/citadel-server/welcomemail.txt
+usr/share/locale
index b2a0492bb90cb8a504061ddcd02d6f5660c88d21..265e37b0c46e7887fd0d43d9a2247de6237e630f 100644 (file)
@@ -3,16 +3,16 @@ Section: mail
 Priority: extra
 Maintainer: Wilfried Goesgens <w.goesgens@outgesourced.org>
 Build-Depends: debhelper (>= 4), po-debconf, bison, autotools-dev,
- libdb-dev, libical-dev (>=0.43), libldap2-dev,
+ libdb-dev, libical-dev (>=0.43), libldap2-dev, gettext, locales,
  libpam0g-dev, libsieve2-dev, libssl-dev, libexpat1-dev, libcitadel-dev (>= 7.42),
  libcurl4-openssl-dev | libcurl3-openssl-dev, zlib1g-dev
 Standards-Version: 3.8.0
 
 Package: citadel-server
 Architecture: any
-Depends: ${shlibs:Depends}, ${misc:Depends}, adduser, citadel-common, openssl
+Depends: ${shlibs:Depends}, ${misc:Depends}, adduser, citadel-common, openssl, locales
 Recommends: db4.4-util | db4.3-util, shared-mime-info
-Suggests: postfix | exim4 | citadel-mta | mail-transport-agent
+Suggests: postfix | exim4 | citadel-mta | mail-transport-agent, localepurge
 Conflicts: pop3-server, imap-server
 Provides: pop3-server, imap-server
 Description: complete and feature-rich groupware server
index c1065eab26aa93e31b99c5b706b2d2c7faada677..b5fe2dd9e191b99d1ff641f2ba11772886515088 100755 (executable)
@@ -60,6 +60,7 @@ configure-stamp:
                --with-ssldir=/etc/ssl/citadel/ \
                --with-utility-bindir=/usr/lib/citadel-server/ \
                --with-autosysconfdir=/var/lib/citadel/data/ \
+                --with-localedir=/usr/share/ \
                --with-pam \
                --with-db \
                --enable-debug $(EXTRA_ARGS) $(PROFILE_ARGS) $(THREAD_ARGS)
@@ -107,6 +108,7 @@ install-arch: build-arch
        dh_clean -k -s 
        dh_installdirs -s
 
+       $(MAKE) install-locale DESTDIR=$(DEB_DESTDIR)
        $(MAKE) DESTDIR=$(DEB_DESTDIR) install-exec-new install-data-new
 
        install -D -p -m0755 database_cleanup.sh \
diff --git a/citadel/po/Makefile.in b/citadel/po/Makefile.in
new file mode 100644 (file)
index 0000000..e52afae
--- /dev/null
@@ -0,0 +1,31 @@
+include ../Make_sources
+
+
+SRCS:=  $(wildcard *.po)
+OBJS:=  $(patsubst %.po, \
+       ../locale/%/LC_MESSAGES/citadel-setup.mo, \
+       $(SRCS))
+#      ../locale/%/LC_MESSAGES/citadel_client.mo, \
+#      ../locale/%/LC_MESSAGES/citadel_server.mo, \
+
+.SUFFIXES: .po .mo
+
+.PHONY: all
+
+all: $(OBJS)
+
+clean:
+       rm -r ../locale/*
+
+../locale/%/LC_MESSAGES/citadel-setup.mo: %.po
+       mkdir -p $(patsubst %.po, ../locale/%/LC_MESSAGES, $<)
+       msgfmt -o $@ $<
+
+#../locale/%/LC_MESSAGES/citadel_client.mo: %.po
+#      mkdir -p $(patsubst %.po, ../locale/%/LC_MESSAGES, $<)
+#      msgfmt -o $@ $<
+#
+#../locale/%/LC_MESSAGES/citadel_server.mo: %.po
+#      mkdir -p $(patsubst %.po, ../locale/%/LC_MESSAGES, $<)
+#      msgfmt -o $@ $<
+#
diff --git a/citadel/po/ar.po b/citadel/po/ar.po
new file mode 100644 (file)
index 0000000..fdc233c
--- /dev/null
@@ -0,0 +1,456 @@
+# 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@yahoo.com>, 2008, 2010.
+msgid ""
+msgstr ""
+"Project-Id-Version: ar\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2010-09-28 00:22+0200\n"
+"PO-Revision-Date: 2010-09-09 06:22+0300\n"
+"Last-Translator: Ossama M. Khayat <okhayat@yahoo.com>\n"
+"Language-Team: Arabic <support@arabeyes.org>\n"
+"Language: ar\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: Lokalize 1.0\n"
+"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 "
+"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
+
+#: ../utils/setup.c:119
+#, fuzzy
+msgid "Citadel Home Directory"
+msgstr "Active Directory"
+
+#: ../utils/setup.c:122
+msgid ""
+"Enter the full pathname of the directory in which the Citadel\n"
+"installation you are creating or updating resides.  If you\n"
+"specify a directory other than the default, you will need to\n"
+"specify the -h flag to the server when you start it up.\n"
+msgstr ""
+
+#: ../utils/setup.c:128
+msgid ""
+"Enter the subdirectory name for an alternate installation of Citadel. To do "
+"a default installation just leave it blank.If you specify a directory other "
+"than the default, you will need to\n"
+"specify the -h flag to the server when you start it up.\n"
+"note that it may not have a leading /"
+msgstr ""
+
+#: ../utils/setup.c:135
+msgid "Citadel administrator username:"
+msgstr "كلمة مرور مدير Citadel:"
+
+#: ../utils/setup.c:137
+msgid ""
+"Please enter the name of the Citadel user account that should be granted "
+"administrative privileges once created. If using internal authentication "
+"this user account will be created if it does not exist. For external "
+"authentication this user account has to exist."
+msgstr ""
+"رجاء أدخل اسم حساب مستخدم Citadel الذي يجب أن يحصل على الصلاحيات الإدارية "
+"عند إنشاءه. إن كنت تستخدم المصادقة الداخلية فسيتم إنشاء هذا الحساب إن لم يكن "
+"موجوداً. أما في حالة المصادقة الخارجية، فيجب أن يكون حساب المستخدم موجود "
+"مسبقاً."
+
+#: ../utils/setup.c:143
+msgid "Administrator password:"
+msgstr "كلمة مرور المدير:"
+
+#: ../utils/setup.c:145
+msgid ""
+"Enter a password for the system administrator. When setup\n"
+"completes it will attempt to create the administrator user\n"
+"and set the password specified here.\n"
+msgstr ""
+
+#: ../utils/setup.c:149
+#, fuzzy
+msgid "Citadel User ID:"
+msgstr "Citadel/UX"
+
+#: ../utils/setup.c:151
+msgid ""
+"Citadel needs to run under its own user ID.  This would\n"
+"typically be called \"citadel\", but if you are running Citadel\n"
+"as a public BBS, you might also call it \"bbs\" or \"guest\".\n"
+"The server will run under this user ID.  Please specify that\n"
+"user ID here.  You may specify either a user name or a numeric\n"
+"UID.\n"
+msgstr ""
+
+#: ../utils/setup.c:158
+msgid "Listening address for the Citadel server:"
+msgstr "عنوان الإصغاء لخادم Citadel:"
+
+#: ../utils/setup.c:160
+msgid ""
+"Please specify the IP address which the server should be listening to. You "
+"can name a specific IPv4 or IPv6 address, or you can specify\n"
+"'*' for 'any address', '::' for 'any IPv6 address', or '0.0.0.0'\n"
+"for 'any IPv4 address'. If you leave this blank, Citadel will\n"
+"listen on all addresses. This can usually be left to the default unless "
+"multiple instances of Citadel are running on the same computer."
+msgstr ""
+
+#: ../utils/setup.c:168
+#, fuzzy
+msgid "Server port number:"
+msgstr "رقم منفذ LDAP:"
+
+#: ../utils/setup.c:170
+msgid ""
+"Specify the TCP port number on which your server will run.\n"
+"Normally, this will be port 504, which is the official port\n"
+"assigned by the IANA for Citadel servers.  You will only need\n"
+"to specify a different port number if you run multiple instances\n"
+"of Citadel on the same computer and there is something else\n"
+"already using port 504.\n"
+msgstr ""
+
+#: ../utils/setup.c:177
+msgid "Authentication method to use:"
+msgstr "طريقة المصادقة المطلوب استخدامها:"
+
+#: ../utils/setup.c:179
+#, fuzzy
+msgid ""
+"Please choose the user authentication mode. By default Citadel will use its "
+"own internal user accounts database. If you choose Host, Citadel users will "
+"have accounts on the host system, authenticated via /etc/passwd or a PAM "
+"source. LDAP chooses an RFC 2307 compliant directory server, the last option "
+"chooses the nonstandard MS Active Directory LDAP scheme.\n"
+"Do not change this option unless you are sure it is required, since changing "
+"back requires a full reinstall of Citadel.\n"
+" 0. Self contained authentication\n"
+" 1. Host system integrated authentication\n"
+" 2. External LDAP - RFC 2307 compliant directory\n"
+" 3. External LDAP - nonstandard MS Active Directory\n"
+"\n"
+"For help: http://www.citadel.org/doku.php/faq:installation:authmodes\n"
+"\n"
+"ANSWER \"0\" UNLESS YOU COMPLETELY UNDERSTAND THIS OPTION.\n"
+msgstr ""
+"رجاء اختر وضع مصادقة المستخدمين. سيستخدم Citadel قاعدة بياناته الداخلية بشكل "
+"افتراضي. إن اخترت استخدام مضيف، تكون حسابات مستخدمي Citadel على النظام "
+"المضيف، وتتم مصادقتهم عبر /etc/passwd أو مصدر PAM. خيار LDAP يستخدم خادم "
+"الدليل المتوافق مع RFC 2307، والخيار الأخير يستخدم خدمة ميكروسوفت Active "
+"Directory LDAP الغير قياسية."
+
+#: ../utils/setup.c:197
+msgid "LDAP host:"
+msgstr "مضيف LDAP:"
+
+#: ../utils/setup.c:199
+#, fuzzy
+msgid "Please enter the host name or IP address of your LDAP server.\n"
+msgstr "رجاء أدخل اسم المضيف أو عنوان IP لخادم LDAP الخاص بك."
+
+#: ../utils/setup.c:201
+msgid "LDAP port number:"
+msgstr "رقم منفذ LDAP:"
+
+#: ../utils/setup.c:203
+#, fuzzy
+msgid "Please enter the port number of the LDAP service (usually 389).\n"
+msgstr "الرجاء إدخال رقم المنفذ لخدمة LDAP (عادة 389)"
+
+#: ../utils/setup.c:205
+msgid "LDAP base DN:"
+msgstr "LDAP base DN:"
+
+#: ../utils/setup.c:207
+#, fuzzy
+msgid ""
+"Please enter the Base DN to search for authentication\n"
+"(for example: dc=example,dc=com)\n"
+msgstr "رجاء أدخل قيمة Base DN للبحث عن المصادقة (مثال: dc=example,dc=com)."
+
+#: ../utils/setup.c:210
+msgid "LDAP bind DN:"
+msgstr "LDAP bind DN:"
+
+#: ../utils/setup.c:212
+#, fuzzy
+msgid ""
+"Please enter the DN of an account to use for binding to the LDAP server for "
+"performing queries. The account does not require any other privileges. If "
+"your LDAP server allows anonymous queries, you can leave this blank.Please "
+"enter the DN of an account to use for binding to the LDAP server\n"
+"for performing queries.  The account does not require any other\n"
+"privileges.  If your LDAP server allows anonymous queries, you can\n"
+"leave this blank.\n"
+msgstr ""
+"رجاء اكتب قيمة DN للحساب المطلوب استخدامه للربط بخادم LDAP لتنفيذ "
+"الاستعلامات. لا يتطلب هذا الحساب أي صلاحيات أخرى. إن كان خادم LDAP الخاص بك "
+"يسمح بالاستعلامات من قبل أي مستخدم، فيمكنك ترك هذه القيمة فارغة."
+
+#: ../utils/setup.c:220
+msgid "LDAP bind password:"
+msgstr "كلمة مرور LDAP bind:"
+
+#: ../utils/setup.c:222
+#, fuzzy
+msgid ""
+"If you entered a Bind DN in the previous question, you must now enter\n"
+"the password associated with that account.  Otherwise, you can leave this\n"
+"blank.\n"
+msgstr ""
+"إن أدخلت قيمة Bind DN في السؤال السابق، فيجب الآن أن تكتب كلمة المرور "
+"المرتبطة بذلك الحساب. وإلا، يمكنك ترك هذه فارغة."
+
+#: ../utils/setup.c:299
+msgid "Yes/No"
+msgstr ""
+
+#: ../utils/setup.c:300
+msgid "Yes"
+msgstr ""
+
+#: ../utils/setup.c:300
+msgid "No"
+msgstr ""
+
+#: ../utils/setup.c:346
+msgid "Press return to continue..."
+msgstr ""
+
+#: ../utils/setup.c:364
+msgid "Important Message"
+msgstr ""
+
+#: ../utils/setup.c:379
+msgid "Error"
+msgstr ""
+
+#: ../utils/setup.c:459
+msgid "Adding service entry..."
+msgstr ""
+
+#. Other errors might mean something really did go wrong.
+#.
+#: ../utils/setup.c:463 ../utils/setup.c:510 ../utils/setup.c:518
+msgid "Cannot open"
+msgstr ""
+
+#: ../utils/setup.c:569
+msgid ""
+"Citadel already appears to be configured to start at boot.\n"
+"Would you like to keep your boot configuration as is?\n"
+msgstr ""
+
+#: ../utils/setup.c:577
+msgid "Would you like to automatically start Citadel at boot?\n"
+msgstr ""
+
+#: ../utils/setup.c:583
+msgid "Cannot create"
+msgstr ""
+
+#: ../utils/setup.c:682
+#, c-format
+msgid ""
+"Setup can configure the \"xinetd\" service to automatically\n"
+"connect incoming telnet sessions to Citadel, bypassing the\n"
+"host system login: prompt.  Would you like to do this?\n"
+msgstr ""
+
+#: ../utils/setup.c:740
+msgid "You appear to have the "
+msgstr ""
+
+#: ../utils/setup.c:742
+msgid ""
+" email program\n"
+"running on your system.  If you want Citadel mail\n"
+"connected with "
+msgstr ""
+
+#: ../utils/setup.c:746
+msgid ""
+" you will have to manually integrate\n"
+"them.  It is preferable to disable "
+msgstr ""
+
+#: ../utils/setup.c:749
+msgid ""
+", and use Citadel's\n"
+"SMTP, POP3, and IMAP services.\n"
+"\n"
+"May we disable "
+msgstr ""
+
+#: ../utils/setup.c:753
+msgid ""
+"so that Citadel has access to ports\n"
+"25, 110, and 143?\n"
+msgstr ""
+
+#: ../utils/setup.c:863
+msgid "This is currently set to:"
+msgstr ""
+
+#: ../utils/setup.c:864
+msgid "Enter new value or press return to leave unchanged:"
+msgstr ""
+
+#: ../utils/setup.c:1067 ../utils/setup.c:1072 ../utils/setup.c:1384
+msgid "setup: cannot open"
+msgstr ""
+
+#: ../utils/setup.c:1175
+#, c-format
+msgid ""
+"\n"
+"/etc/nsswitch.conf is configured to use the 'db' module for\n"
+"one or more services.  This is not necessary on most systems,\n"
+"and it is known to crash the Citadel server when delivering\n"
+"mail to the Internet.\n"
+"\n"
+"Do you want this module to be automatically disabled?\n"
+"\n"
+msgstr ""
+
+#: ../utils/setup.c:1236 ../utils/setup.c:1252
+msgid "Setup finished"
+msgstr ""
+
+#: ../utils/setup.c:1237
+msgid ""
+"Setup of the Citadel server is complete.\n"
+"If you will be using WebCit, please run its\n"
+"setup program now; otherwise, run './citadel'\n"
+"to log in.\n"
+msgstr ""
+
+#: ../utils/setup.c:1243
+msgid "Setup failed"
+msgstr ""
+
+#: ../utils/setup.c:1244
+msgid ""
+"Setup is finished, but the Citadel server failed to start.\n"
+"Go back and check your configuration.\n"
+msgstr ""
+
+#: ../utils/setup.c:1253
+msgid "Setup is finished.  You may now start the server."
+msgstr ""
+
+#: ../utils/setup.c:1279
+msgid "My System"
+msgstr ""
+
+#: ../utils/setup.c:1282
+msgid "US 800 555 1212"
+msgstr ""
+
+#: ../utils/setup.c:1368 ../utils/setup.c:1373
+msgid "setup: cannot append"
+msgstr ""
+
+#: ../utils/setup.c:1450 ../utils/setup.c:1457 ../utils/setup.c:1472
+#: ../utils/setup.c:1512
+#, fuzzy
+msgid "Citadel Setup"
+msgstr "Citadel/UX"
+
+#: ../utils/setup.c:1459
+msgid "The directory you specified does not exist"
+msgstr ""
+
+#: ../utils/setup.c:1473
+msgid ""
+"The Citadel service is still running.\n"
+"Please stop the service manually and run setup again."
+msgstr ""
+
+#: ../utils/setup.c:1485
+#, fuzzy
+msgid "Citadel setup program"
+msgstr "Active Directory"
+
+#: ../utils/setup.c:1513
+msgid "This Citadel installation is too old to be upgraded."
+msgstr ""
+
+#: ../utils/setup.c:1552 ../utils/setup.c:1554 ../utils/setup.c:1556
+msgid "Setting file permissions"
+msgstr ""
+
+#~ 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، فسيصغي الخادم لجميع العناوين."
+
+#~ msgid ""
+#~ "This can usually be left to the default unless multiple instances of "
+#~ "Citadel are running on the same computer."
+#~ msgstr ""
+#~ "يمكن ترك هذه القيمة الافتراضية إلا إن كان هناك أكثر من نسخة Citadel تعمل "
+#~ "على نفس الجهاز."
+
+#~ msgid "Internal"
+#~ msgstr "داخلي"
+
+#~ msgid "Host"
+#~ msgstr "مضيف"
+
+#~ msgid "LDAP"
+#~ msgstr "LDAP"
+
+#~ msgid ""
+#~ "Do not change this option unless you are sure it is required, since "
+#~ "changing back requires a full reinstall of Citadel."
+#~ msgstr ""
+#~ "لا تغير هذا الخيار ما لم تكن متأكداً من أنه مطلوب، حيث  أن استعادة قيمته "
+#~ "للحالية يتطلب إعادة تثبيت Citadel بالكامل."
+
+#~ msgid ""
+#~ "While not mandatory, it is highly recommended that you set a password for "
+#~ "the administrator user."
+#~ msgstr ""
+#~ "مع أنه ليس إلزامياً، ولكن من المستحسن جداً تعيين كلمة مرور للمستخدم المدير."
+
+#~ msgid "Enable external authentication mode?"
+#~ 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 ""
+#~ "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، وبالتحديد قسم "
+#~ "الأسئلة المتكررة والتوثيق."
diff --git a/citadel/po/citadel-setup.pot b/citadel/po/citadel-setup.pot
new file mode 100644 (file)
index 0000000..95c9360
--- /dev/null
@@ -0,0 +1,356 @@
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR The Citadel Project - http://www.citadel.org
+# This file is distributed under the same license as the PACKAGE package.
+# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
+#
+#, fuzzy
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2010-09-28 00:22+0200\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"Language: \n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=CHARSET\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#: ../utils/setup.c:119
+msgid "Citadel Home Directory"
+msgstr ""
+
+#: ../utils/setup.c:122
+msgid ""
+"Enter the full pathname of the directory in which the Citadel\n"
+"installation you are creating or updating resides.  If you\n"
+"specify a directory other than the default, you will need to\n"
+"specify the -h flag to the server when you start it up.\n"
+msgstr ""
+
+#: ../utils/setup.c:128
+msgid ""
+"Enter the subdirectory name for an alternate installation of Citadel. To do "
+"a default installation just leave it blank.If you specify a directory other "
+"than the default, you will need to\n"
+"specify the -h flag to the server when you start it up.\n"
+"note that it may not have a leading /"
+msgstr ""
+
+#: ../utils/setup.c:135
+msgid "Citadel administrator username:"
+msgstr ""
+
+#: ../utils/setup.c:137
+msgid ""
+"Please enter the name of the Citadel user account that should be granted "
+"administrative privileges once created. If using internal authentication "
+"this user account will be created if it does not exist. For external "
+"authentication this user account has to exist."
+msgstr ""
+
+#: ../utils/setup.c:143
+msgid "Administrator password:"
+msgstr ""
+
+#: ../utils/setup.c:145
+msgid ""
+"Enter a password for the system administrator. When setup\n"
+"completes it will attempt to create the administrator user\n"
+"and set the password specified here.\n"
+msgstr ""
+
+#: ../utils/setup.c:149
+msgid "Citadel User ID:"
+msgstr ""
+
+#: ../utils/setup.c:151
+msgid ""
+"Citadel needs to run under its own user ID.  This would\n"
+"typically be called \"citadel\", but if you are running Citadel\n"
+"as a public BBS, you might also call it \"bbs\" or \"guest\".\n"
+"The server will run under this user ID.  Please specify that\n"
+"user ID here.  You may specify either a user name or a numeric\n"
+"UID.\n"
+msgstr ""
+
+#: ../utils/setup.c:158
+msgid "Listening address for the Citadel server:"
+msgstr ""
+
+#: ../utils/setup.c:160
+msgid ""
+"Please specify the IP address which the server should be listening to. You "
+"can name a specific IPv4 or IPv6 address, or you can specify\n"
+"'*' for 'any address', '::' for 'any IPv6 address', or '0.0.0.0'\n"
+"for 'any IPv4 address'. If you leave this blank, Citadel will\n"
+"listen on all addresses. This can usually be left to the default unless "
+"multiple instances of Citadel are running on the same computer."
+msgstr ""
+
+#: ../utils/setup.c:168
+msgid "Server port number:"
+msgstr ""
+
+#: ../utils/setup.c:170
+msgid ""
+"Specify the TCP port number on which your server will run.\n"
+"Normally, this will be port 504, which is the official port\n"
+"assigned by the IANA for Citadel servers.  You will only need\n"
+"to specify a different port number if you run multiple instances\n"
+"of Citadel on the same computer and there is something else\n"
+"already using port 504.\n"
+msgstr ""
+
+#: ../utils/setup.c:177
+msgid "Authentication method to use:"
+msgstr ""
+
+#: ../utils/setup.c:179
+msgid ""
+"Please choose the user authentication mode. By default Citadel will use its "
+"own internal user accounts database. If you choose Host, Citadel users will "
+"have accounts on the host system, authenticated via /etc/passwd or a PAM "
+"source. LDAP chooses an RFC 2307 compliant directory server, the last option "
+"chooses the nonstandard MS Active Directory LDAP scheme.\n"
+"Do not change this option unless you are sure it is required, since changing "
+"back requires a full reinstall of Citadel.\n"
+" 0. Self contained authentication\n"
+" 1. Host system integrated authentication\n"
+" 2. External LDAP - RFC 2307 compliant directory\n"
+" 3. External LDAP - nonstandard MS Active Directory\n"
+"\n"
+"For help: http://www.citadel.org/doku.php/faq:installation:authmodes\n"
+"\n"
+"ANSWER \"0\" UNLESS YOU COMPLETELY UNDERSTAND THIS OPTION.\n"
+msgstr ""
+
+#: ../utils/setup.c:197
+msgid "LDAP host:"
+msgstr ""
+
+#: ../utils/setup.c:199
+msgid "Please enter the host name or IP address of your LDAP server.\n"
+msgstr ""
+
+#: ../utils/setup.c:201
+msgid "LDAP port number:"
+msgstr ""
+
+#: ../utils/setup.c:203
+msgid "Please enter the port number of the LDAP service (usually 389).\n"
+msgstr ""
+
+#: ../utils/setup.c:205
+msgid "LDAP base DN:"
+msgstr ""
+
+#: ../utils/setup.c:207
+msgid ""
+"Please enter the Base DN to search for authentication\n"
+"(for example: dc=example,dc=com)\n"
+msgstr ""
+
+#: ../utils/setup.c:210
+msgid "LDAP bind DN:"
+msgstr ""
+
+#: ../utils/setup.c:212
+msgid ""
+"Please enter the DN of an account to use for binding to the LDAP server for "
+"performing queries. The account does not require any other privileges. If "
+"your LDAP server allows anonymous queries, you can leave this blank.Please "
+"enter the DN of an account to use for binding to the LDAP server\n"
+"for performing queries.  The account does not require any other\n"
+"privileges.  If your LDAP server allows anonymous queries, you can\n"
+"leave this blank.\n"
+msgstr ""
+
+#: ../utils/setup.c:220
+msgid "LDAP bind password:"
+msgstr ""
+
+#: ../utils/setup.c:222
+msgid ""
+"If you entered a Bind DN in the previous question, you must now enter\n"
+"the password associated with that account.  Otherwise, you can leave this\n"
+"blank.\n"
+msgstr ""
+
+#: ../utils/setup.c:299
+msgid "Yes/No"
+msgstr ""
+
+#: ../utils/setup.c:300
+msgid "Yes"
+msgstr ""
+
+#: ../utils/setup.c:300
+msgid "No"
+msgstr ""
+
+#: ../utils/setup.c:346
+msgid "Press return to continue..."
+msgstr ""
+
+#: ../utils/setup.c:364
+msgid "Important Message"
+msgstr ""
+
+#: ../utils/setup.c:379
+msgid "Error"
+msgstr ""
+
+#: ../utils/setup.c:459
+msgid "Adding service entry..."
+msgstr ""
+
+#. Other errors might mean something really did go wrong.
+#.
+#: ../utils/setup.c:463 ../utils/setup.c:510 ../utils/setup.c:518
+msgid "Cannot open"
+msgstr ""
+
+#: ../utils/setup.c:569
+msgid ""
+"Citadel already appears to be configured to start at boot.\n"
+"Would you like to keep your boot configuration as is?\n"
+msgstr ""
+
+#: ../utils/setup.c:577
+msgid "Would you like to automatically start Citadel at boot?\n"
+msgstr ""
+
+#: ../utils/setup.c:583
+msgid "Cannot create"
+msgstr ""
+
+#: ../utils/setup.c:682
+#, c-format
+msgid ""
+"Setup can configure the \"xinetd\" service to automatically\n"
+"connect incoming telnet sessions to Citadel, bypassing the\n"
+"host system login: prompt.  Would you like to do this?\n"
+msgstr ""
+
+#: ../utils/setup.c:740
+msgid "You appear to have the "
+msgstr ""
+
+#: ../utils/setup.c:742
+msgid ""
+" email program\n"
+"running on your system.  If you want Citadel mail\n"
+"connected with "
+msgstr ""
+
+#: ../utils/setup.c:746
+msgid ""
+" you will have to manually integrate\n"
+"them.  It is preferable to disable "
+msgstr ""
+
+#: ../utils/setup.c:749
+msgid ""
+", and use Citadel's\n"
+"SMTP, POP3, and IMAP services.\n"
+"\n"
+"May we disable "
+msgstr ""
+
+#: ../utils/setup.c:753
+msgid ""
+"so that Citadel has access to ports\n"
+"25, 110, and 143?\n"
+msgstr ""
+
+#: ../utils/setup.c:863
+msgid "This is currently set to:"
+msgstr ""
+
+#: ../utils/setup.c:864
+msgid "Enter new value or press return to leave unchanged:"
+msgstr ""
+
+#: ../utils/setup.c:1067 ../utils/setup.c:1072 ../utils/setup.c:1384
+msgid "setup: cannot open"
+msgstr ""
+
+#: ../utils/setup.c:1175
+#, c-format
+msgid ""
+"\n"
+"/etc/nsswitch.conf is configured to use the 'db' module for\n"
+"one or more services.  This is not necessary on most systems,\n"
+"and it is known to crash the Citadel server when delivering\n"
+"mail to the Internet.\n"
+"\n"
+"Do you want this module to be automatically disabled?\n"
+"\n"
+msgstr ""
+
+#: ../utils/setup.c:1236 ../utils/setup.c:1252
+msgid "Setup finished"
+msgstr ""
+
+#: ../utils/setup.c:1237
+msgid ""
+"Setup of the Citadel server is complete.\n"
+"If you will be using WebCit, please run its\n"
+"setup program now; otherwise, run './citadel'\n"
+"to log in.\n"
+msgstr ""
+
+#: ../utils/setup.c:1243
+msgid "Setup failed"
+msgstr ""
+
+#: ../utils/setup.c:1244
+msgid ""
+"Setup is finished, but the Citadel server failed to start.\n"
+"Go back and check your configuration.\n"
+msgstr ""
+
+#: ../utils/setup.c:1253
+msgid "Setup is finished.  You may now start the server."
+msgstr ""
+
+#: ../utils/setup.c:1279
+msgid "My System"
+msgstr ""
+
+#: ../utils/setup.c:1282
+msgid "US 800 555 1212"
+msgstr ""
+
+#: ../utils/setup.c:1368 ../utils/setup.c:1373
+msgid "setup: cannot append"
+msgstr ""
+
+#: ../utils/setup.c:1450 ../utils/setup.c:1457 ../utils/setup.c:1472
+#: ../utils/setup.c:1512
+msgid "Citadel Setup"
+msgstr ""
+
+#: ../utils/setup.c:1459
+msgid "The directory you specified does not exist"
+msgstr ""
+
+#: ../utils/setup.c:1473
+msgid ""
+"The Citadel service is still running.\n"
+"Please stop the service manually and run setup again."
+msgstr ""
+
+#: ../utils/setup.c:1485
+msgid "Citadel setup program"
+msgstr ""
+
+#: ../utils/setup.c:1513
+msgid "This Citadel installation is too old to be upgraded."
+msgstr ""
+
+#: ../utils/setup.c:1552 ../utils/setup.c:1554 ../utils/setup.c:1556
+msgid "Setting file permissions"
+msgstr ""
diff --git a/citadel/po/create-pot.sh b/citadel/po/create-pot.sh
new file mode 100755 (executable)
index 0000000..eb2888c
--- /dev/null
@@ -0,0 +1,35 @@
+#!/bin/bash
+
+echo Updating citadel.pot from strings in the source code ...
+xgettext \
+       --copyright-holder='The Citadel Project - http://www.citadel.org' \
+        --from-code='utf-8' \
+       -k_ \
+       -o citadel-setup.pot \
+       --add-comments \
+        ../utils/setup.c 
+
+#xgettext \
+#      --copyright-holder='The Citadel Project - http://www.citadel.org' \
+#        --from-code='utf-8' \
+#      -k_ \
+#      -o citadel-server.pot \
+#      --add-comments \
+#      ../*.c \
+#        `cat ../Make_sources | sed  -e "s;.*+= ;;" ` 
+#
+#
+#xgettext \
+#      --copyright-holder='The Citadel Project - http://www.citadel.org' \
+#        --from-code='utf-8' \
+#      -k_ \
+#      -o citadel-client.pot \
+#      --add-comments \
+#      ../*.c \
+#        ../textclient/*.c
+
+for x in *.po
+do
+       echo Merging citadel-setup.pot into $x ...
+       msgmerge $x citadel-setup.pot -o $x
+done
diff --git a/citadel/po/cs.po b/citadel/po/cs.po
new file mode 100644 (file)
index 0000000..804436a
--- /dev/null
@@ -0,0 +1,467 @@
+# 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@debian.cz>, 2008, 2009
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: citadel\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2010-09-28 00:22+0200\n"
+"PO-Revision-Date: 2009-08-16 15:48+0200\n"
+"Last-Translator: Miroslav Kure <kurem@debian.cz>\n"
+"Language-Team: Czech <debian-l10n-czech@lists.debian.org>\n"
+"Language: cs\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#: ../utils/setup.c:119
+#, fuzzy
+msgid "Citadel Home Directory"
+msgstr "Active Directory"
+
+#: ../utils/setup.c:122
+msgid ""
+"Enter the full pathname of the directory in which the Citadel\n"
+"installation you are creating or updating resides.  If you\n"
+"specify a directory other than the default, you will need to\n"
+"specify the -h flag to the server when you start it up.\n"
+msgstr ""
+
+#: ../utils/setup.c:128
+msgid ""
+"Enter the subdirectory name for an alternate installation of Citadel. To do "
+"a default installation just leave it blank.If you specify a directory other "
+"than the default, you will need to\n"
+"specify the -h flag to the server when you start it up.\n"
+"note that it may not have a leading /"
+msgstr ""
+
+#: ../utils/setup.c:135
+msgid "Citadel administrator username:"
+msgstr "Uživatelské jméno správce Citadel:"
+
+#: ../utils/setup.c:137
+msgid ""
+"Please enter the name of the Citadel user account that should be granted "
+"administrative privileges once created. If using internal authentication "
+"this user account will be created if it does not exist. For external "
+"authentication this user account has to exist."
+msgstr ""
+"Zadejte jméno uživatelského účtu Citadel, který bude mít správcovská "
+"oprávnění. Používáte-li interní autentizaci Citadel, bude uživatelský účet v "
+"případě potřeby vytvořen. Pokud používáte externí autentizaci, musí již "
+"uživatelský účet existovat."
+
+#: ../utils/setup.c:143
+msgid "Administrator password:"
+msgstr "Správcovské heslo:"
+
+#: ../utils/setup.c:145
+msgid ""
+"Enter a password for the system administrator. When setup\n"
+"completes it will attempt to create the administrator user\n"
+"and set the password specified here.\n"
+msgstr ""
+
+#: ../utils/setup.c:149
+#, fuzzy
+msgid "Citadel User ID:"
+msgstr "Citadel/UX"
+
+#: ../utils/setup.c:151
+msgid ""
+"Citadel needs to run under its own user ID.  This would\n"
+"typically be called \"citadel\", but if you are running Citadel\n"
+"as a public BBS, you might also call it \"bbs\" or \"guest\".\n"
+"The server will run under this user ID.  Please specify that\n"
+"user ID here.  You may specify either a user name or a numeric\n"
+"UID.\n"
+msgstr ""
+
+#: ../utils/setup.c:158
+msgid "Listening address for the Citadel server:"
+msgstr "IP adresa, na které má Citadel naslouchat:"
+
+#: ../utils/setup.c:160
+msgid ""
+"Please specify the IP address which the server should be listening to. You "
+"can name a specific IPv4 or IPv6 address, or you can specify\n"
+"'*' for 'any address', '::' for 'any IPv6 address', or '0.0.0.0'\n"
+"for 'any IPv4 address'. If you leave this blank, Citadel will\n"
+"listen on all addresses. This can usually be left to the default unless "
+"multiple instances of Citadel are running on the same computer."
+msgstr ""
+
+#: ../utils/setup.c:168
+#, fuzzy
+msgid "Server port number:"
+msgstr "LDAP port:"
+
+#: ../utils/setup.c:170
+msgid ""
+"Specify the TCP port number on which your server will run.\n"
+"Normally, this will be port 504, which is the official port\n"
+"assigned by the IANA for Citadel servers.  You will only need\n"
+"to specify a different port number if you run multiple instances\n"
+"of Citadel on the same computer and there is something else\n"
+"already using port 504.\n"
+msgstr ""
+
+#: ../utils/setup.c:177
+msgid "Authentication method to use:"
+msgstr ""
+
+#: ../utils/setup.c:179
+#, fuzzy
+msgid ""
+"Please choose the user authentication mode. By default Citadel will use its "
+"own internal user accounts database. If you choose Host, Citadel users will "
+"have accounts on the host system, authenticated via /etc/passwd or a PAM "
+"source. LDAP chooses an RFC 2307 compliant directory server, the last option "
+"chooses the nonstandard MS Active Directory LDAP scheme.\n"
+"Do not change this option unless you are sure it is required, since changing "
+"back requires a full reinstall of Citadel.\n"
+" 0. Self contained authentication\n"
+" 1. Host system integrated authentication\n"
+" 2. External LDAP - RFC 2307 compliant directory\n"
+" 3. External LDAP - nonstandard MS Active Directory\n"
+"\n"
+"For help: http://www.citadel.org/doku.php/faq:installation:authmodes\n"
+"\n"
+"ANSWER \"0\" UNLESS YOU COMPLETELY UNDERSTAND THIS OPTION.\n"
+msgstr ""
+"Zvolte si způsob autentizace uživatelů. Ve výchozím nastavení používá "
+"Citadel svou vlastní databázi uživatelských účtů. Zvolíte-li možnost "
+"hostitel, budou mít uživatelé Citadel účty na hostitelském systému a budou "
+"se ověřovat oproti /etc/passwd nebo PAM. Možnost LDAP použije adresářový "
+"server odpovídající RFC 2307. Poslední možnost použije nestandardní LDAP "
+"schéma MS Active Directory."
+
+#: ../utils/setup.c:197
+msgid "LDAP host:"
+msgstr "LDAP server:"
+
+#: ../utils/setup.c:199
+#, fuzzy
+msgid "Please enter the host name or IP address of your LDAP server.\n"
+msgstr "Zadejte jméno nebo IP adresu počítače, na kterém běží LDAP server."
+
+#: ../utils/setup.c:201
+msgid "LDAP port number:"
+msgstr "LDAP port:"
+
+#: ../utils/setup.c:203
+#, fuzzy
+msgid "Please enter the port number of the LDAP service (usually 389).\n"
+msgstr "Zadejte číslo portu, na kterém běží služba LDAP (obvykle 389)."
+
+#: ../utils/setup.c:205
+msgid "LDAP base DN:"
+msgstr "Základní LDAP DN:"
+
+#: ../utils/setup.c:207
+#, fuzzy
+msgid ""
+"Please enter the Base DN to search for authentication\n"
+"(for example: dc=example,dc=com)\n"
+msgstr ""
+"Zadejte základní DN (Distinguished Name), ve kterém se budou hledat "
+"autentizační údaje (například: dc=priklad,dc=cz)."
+
+#: ../utils/setup.c:210
+msgid "LDAP bind DN:"
+msgstr "DN účtu pro LDAP dotazy:"
+
+#: ../utils/setup.c:212
+#, fuzzy
+msgid ""
+"Please enter the DN of an account to use for binding to the LDAP server for "
+"performing queries. The account does not require any other privileges. If "
+"your LDAP server allows anonymous queries, you can leave this blank.Please "
+"enter the DN of an account to use for binding to the LDAP server\n"
+"for performing queries.  The account does not require any other\n"
+"privileges.  If your LDAP server allows anonymous queries, you can\n"
+"leave this blank.\n"
+msgstr ""
+"Zadejte DN účtu, který se bude používat pro dotazy do LDAP serveru. Účet "
+"nevyžaduje žádná speciální oprávnění. Pokud LDAP server umožňuje anonymní "
+"dotazy, můžete ponechat prázdné."
+
+#: ../utils/setup.c:220
+msgid "LDAP bind password:"
+msgstr "Heslo účtu pro LDAP dotazy:"
+
+#: ../utils/setup.c:222
+#, fuzzy
+msgid ""
+"If you entered a Bind DN in the previous question, you must now enter\n"
+"the password associated with that account.  Otherwise, you can leave this\n"
+"blank.\n"
+msgstr ""
+"Pokud jste v předchozí otázce zadali DN účtu pro LDAP dotazy, musíte nyní "
+"zadat heslo tohoto účtu. V opačném případě můžete ponechat prázdné."
+
+#: ../utils/setup.c:299
+msgid "Yes/No"
+msgstr ""
+
+#: ../utils/setup.c:300
+msgid "Yes"
+msgstr ""
+
+#: ../utils/setup.c:300
+msgid "No"
+msgstr ""
+
+#: ../utils/setup.c:346
+msgid "Press return to continue..."
+msgstr ""
+
+#: ../utils/setup.c:364
+msgid "Important Message"
+msgstr ""
+
+#: ../utils/setup.c:379
+msgid "Error"
+msgstr ""
+
+#: ../utils/setup.c:459
+msgid "Adding service entry..."
+msgstr ""
+
+#. Other errors might mean something really did go wrong.
+#.
+#: ../utils/setup.c:463 ../utils/setup.c:510 ../utils/setup.c:518
+msgid "Cannot open"
+msgstr ""
+
+#: ../utils/setup.c:569
+msgid ""
+"Citadel already appears to be configured to start at boot.\n"
+"Would you like to keep your boot configuration as is?\n"
+msgstr ""
+
+#: ../utils/setup.c:577
+msgid "Would you like to automatically start Citadel at boot?\n"
+msgstr ""
+
+#: ../utils/setup.c:583
+msgid "Cannot create"
+msgstr ""
+
+#: ../utils/setup.c:682
+#, c-format
+msgid ""
+"Setup can configure the \"xinetd\" service to automatically\n"
+"connect incoming telnet sessions to Citadel, bypassing the\n"
+"host system login: prompt.  Would you like to do this?\n"
+msgstr ""
+
+#: ../utils/setup.c:740
+msgid "You appear to have the "
+msgstr ""
+
+#: ../utils/setup.c:742
+msgid ""
+" email program\n"
+"running on your system.  If you want Citadel mail\n"
+"connected with "
+msgstr ""
+
+#: ../utils/setup.c:746
+msgid ""
+" you will have to manually integrate\n"
+"them.  It is preferable to disable "
+msgstr ""
+
+#: ../utils/setup.c:749
+msgid ""
+", and use Citadel's\n"
+"SMTP, POP3, and IMAP services.\n"
+"\n"
+"May we disable "
+msgstr ""
+
+#: ../utils/setup.c:753
+msgid ""
+"so that Citadel has access to ports\n"
+"25, 110, and 143?\n"
+msgstr ""
+
+#: ../utils/setup.c:863
+msgid "This is currently set to:"
+msgstr ""
+
+#: ../utils/setup.c:864
+msgid "Enter new value or press return to leave unchanged:"
+msgstr ""
+
+#: ../utils/setup.c:1067 ../utils/setup.c:1072 ../utils/setup.c:1384
+msgid "setup: cannot open"
+msgstr ""
+
+#: ../utils/setup.c:1175
+#, c-format
+msgid ""
+"\n"
+"/etc/nsswitch.conf is configured to use the 'db' module for\n"
+"one or more services.  This is not necessary on most systems,\n"
+"and it is known to crash the Citadel server when delivering\n"
+"mail to the Internet.\n"
+"\n"
+"Do you want this module to be automatically disabled?\n"
+"\n"
+msgstr ""
+
+#: ../utils/setup.c:1236 ../utils/setup.c:1252
+msgid "Setup finished"
+msgstr ""
+
+#: ../utils/setup.c:1237
+msgid ""
+"Setup of the Citadel server is complete.\n"
+"If you will be using WebCit, please run its\n"
+"setup program now; otherwise, run './citadel'\n"
+"to log in.\n"
+msgstr ""
+
+#: ../utils/setup.c:1243
+msgid "Setup failed"
+msgstr ""
+
+#: ../utils/setup.c:1244
+msgid ""
+"Setup is finished, but the Citadel server failed to start.\n"
+"Go back and check your configuration.\n"
+msgstr ""
+
+#: ../utils/setup.c:1253
+msgid "Setup is finished.  You may now start the server."
+msgstr ""
+
+#: ../utils/setup.c:1279
+msgid "My System"
+msgstr ""
+
+#: ../utils/setup.c:1282
+msgid "US 800 555 1212"
+msgstr ""
+
+#: ../utils/setup.c:1368 ../utils/setup.c:1373
+msgid "setup: cannot append"
+msgstr ""
+
+#: ../utils/setup.c:1450 ../utils/setup.c:1457 ../utils/setup.c:1472
+#: ../utils/setup.c:1512
+#, fuzzy
+msgid "Citadel Setup"
+msgstr "Citadel/UX"
+
+#: ../utils/setup.c:1459
+msgid "The directory you specified does not exist"
+msgstr ""
+
+#: ../utils/setup.c:1473
+msgid ""
+"The Citadel service is still running.\n"
+"Please stop the service manually and run setup again."
+msgstr ""
+
+#: ../utils/setup.c:1485
+#, fuzzy
+msgid "Citadel setup program"
+msgstr "Active Directory"
+
+#: ../utils/setup.c:1513
+msgid "This Citadel installation is too old to be upgraded."
+msgstr ""
+
+#: ../utils/setup.c:1552 ../utils/setup.c:1554 ../utils/setup.c:1556
+msgid "Setting file permissions"
+msgstr ""
+
+#~ 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 ""
+#~ "Zadejte IP adresu, na které má server naslouchat. Zadáte-li 0.0.0.0, bude "
+#~ "server naslouchat na všech adresách."
+
+#~ msgid ""
+#~ "This can usually be left to the default unless multiple instances of "
+#~ "Citadel are running on the same computer."
+#~ msgstr ""
+#~ "Pokud na tomto počítači nemáte více instancí Citadel, můžete nejspíš "
+#~ "ponechat výchozí hodnotu."
+
+#~ msgid "Internal"
+#~ msgstr "vlastní"
+
+#~ msgid "Host"
+#~ msgstr "hostitel"
+
+#~ msgid "LDAP"
+#~ msgstr "LDAP"
+
+#~ msgid ""
+#~ "Do not change this option unless you are sure it is required, since "
+#~ "changing back requires a full reinstall of Citadel."
+#~ msgstr ""
+#~ "Pokud si nejste jisti, že tuto možnost opravdu chcete, raději ji neměňte, "
+#~ "protože návrat zpět znamená kompletní reinstalaci Citadel."
+
+#~ msgid ""
+#~ "While not mandatory, it is highly recommended that you set a password for "
+#~ "the administrator user."
+#~ msgstr ""
+#~ "I když není heslo pro správce povinné, důrazně doporučujeme jej nastavit."
+
+#~ msgid "Internal, Host, LDAP, Active Directory"
+#~ msgstr "vlastní, hostitel, LDAP, Active Directory"
+
+#~ msgid "Enable external authentication mode?"
+#~ msgstr "Povolit externí autentizaci?"
+
+#~ 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 ""
+#~ "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."
diff --git a/citadel/po/de.po b/citadel/po/de.po
new file mode 100644 (file)
index 0000000..ed9ff45
--- /dev/null
@@ -0,0 +1,466 @@
+# Translation of citadel debconf templates to German
+# Copyright (C) Helge Kreutzmann <debian@helgefjell.de>, 2008, 2009.
+# This file is distributed under the same license as the citadel package.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: citadel 7.63-1\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2010-09-28 00:22+0200\n"
+"PO-Revision-Date: 2009-09-08 19:40+0200\n"
+"Last-Translator: Helge Kreutzmann <debian@helgefjell.de>\n"
+"Language-Team: de <debian-l10n-german@lists.debian.org>\n"
+"Language: \n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=ISO-8859-15\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#: ../utils/setup.c:119
+#, fuzzy
+msgid "Citadel Home Directory"
+msgstr "Citadel Basis Directory"
+
+#: ../utils/setup.c:122
+msgid ""
+"Enter the full pathname of the directory in which the Citadel\n"
+"installation you are creating or updating resides.  If you\n"
+"specify a directory other than the default, you will need to\n"
+"specify the -h flag to the server when you start it up.\n"
+msgstr ""
+
+#: ../utils/setup.c:128
+msgid ""
+"Enter the subdirectory name for an alternate installation of Citadel. To do "
+"a default installation just leave it blank.If you specify a directory other "
+"than the default, you will need to\n"
+"specify the -h flag to the server when you start it up.\n"
+"note that it may not have a leading /"
+msgstr ""
+
+#: ../utils/setup.c:135
+msgid "Citadel administrator username:"
+msgstr "Benutzername des Citadel-Administrators:"
+
+#: ../utils/setup.c:137
+msgid ""
+"Please enter the name of the Citadel user account that should be granted "
+"administrative privileges once created. If using internal authentication "
+"this user account will be created if it does not exist. For external "
+"authentication this user account has to exist."
+msgstr ""
+"Bitte geben Sie den Namen des Citadel-Benutzerkontos an, dem nach der "
+"Erstellung administrative Privilegien erteilt werden sollen. Falls interne "
+"Authentifizierung verwandt wird und das Benutzerkonto noch nicht existiert, "
+"wird es erstellt. Für externe Authentifizierung muss das Benutzerkonto "
+"existieren."
+
+#: ../utils/setup.c:143
+msgid "Administrator password:"
+msgstr "Administrator-Passwort:"
+
+#: ../utils/setup.c:145
+msgid ""
+"Enter a password for the system administrator. When setup\n"
+"completes it will attempt to create the administrator user\n"
+"and set the password specified here.\n"
+msgstr ""
+
+#
+#: ../utils/setup.c:149
+msgid "Citadel User ID:"
+msgstr "Citadel Benutzer ID:"
+
+#: ../utils/setup.c:151
+msgid ""
+"Citadel needs to run under its own user ID.  This would\n"
+"typically be called \"citadel\", but if you are running Citadel\n"
+"as a public BBS, you might also call it \"bbs\" or \"guest\".\n"
+"The server will run under this user ID.  Please specify that\n"
+"user ID here.  You may specify either a user name or a numeric\n"
+"UID.\n"
+msgstr ""
+
+#: ../utils/setup.c:158
+msgid "Listening address for the Citadel server:"
+msgstr "Adresse, auf der Citadel auf Anfragen wartet:"
+
+#: ../utils/setup.c:160
+msgid ""
+"Please specify the IP address which the server should be listening to. You "
+"can name a specific IPv4 or IPv6 address, or you can specify\n"
+"'*' for 'any address', '::' for 'any IPv6 address', or '0.0.0.0'\n"
+"for 'any IPv4 address'. If you leave this blank, Citadel will\n"
+"listen on all addresses. This can usually be left to the default unless "
+"multiple instances of Citadel are running on the same computer."
+msgstr ""
+
+#
+#: ../utils/setup.c:168
+msgid "Server port number:"
+msgstr "LDAP-Portnummer:"
+
+#: ../utils/setup.c:170
+msgid ""
+"Specify the TCP port number on which your server will run.\n"
+"Normally, this will be port 504, which is the official port\n"
+"assigned by the IANA for Citadel servers.  You will only need\n"
+"to specify a different port number if you run multiple instances\n"
+"of Citadel on the same computer and there is something else\n"
+"already using port 504.\n"
+msgstr ""
+
+#: ../utils/setup.c:177
+msgid "Authentication method to use:"
+msgstr "Zu verwendene Authentifizierungsmethode:"
+
+#: ../utils/setup.c:179
+#, fuzzy
+msgid ""
+"Please choose the user authentication mode. By default Citadel will use its "
+"own internal user accounts database. If you choose Host, Citadel users will "
+"have accounts on the host system, authenticated via /etc/passwd or a PAM "
+"source. LDAP chooses an RFC 2307 compliant directory server, the last option "
+"chooses the nonstandard MS Active Directory LDAP scheme.\n"
+"Do not change this option unless you are sure it is required, since changing "
+"back requires a full reinstall of Citadel.\n"
+" 0. Self contained authentication\n"
+" 1. Host system integrated authentication\n"
+" 2. External LDAP - RFC 2307 compliant directory\n"
+" 3. External LDAP - nonstandard MS Active Directory\n"
+"\n"
+"For help: http://www.citadel.org/doku.php/faq:installation:authmodes\n"
+"\n"
+"ANSWER \"0\" UNLESS YOU COMPLETELY UNDERSTAND THIS OPTION.\n"
+msgstr ""
+"Bitte wählen Sie die Authentifizierungsmethode für Benutzer. Standardmäßig "
+"wird Citadel seine interne Benutzerkontendatenbank verwenden. Falls Sie "
+"»Host« wählen, werden die Benutzer von Citadel Konten auf dem Gastsystem "
+"haben und via /etc/passwd oder einer PAM-Quelle authentifiziert werden. "
+"»LDAP« wählt einen RFC2307-konformen Verzeichnisdienst, die letzte Option "
+"wählt das nicht-standard »MS Active Directory« LDAP-Schema."
+
+#: ../utils/setup.c:197
+msgid "LDAP host:"
+msgstr "LDAP-Host:"
+
+#
+#: ../utils/setup.c:199
+msgid "Please enter the host name or IP address of your LDAP server.\n"
+msgstr ""
+"Bitte geben Sie den Rechnernamen oder die IP-Adresse Ihres LDAP-Servers an.\n"
+
+#: ../utils/setup.c:201
+msgid "LDAP port number:"
+msgstr "LDAP-Portnummer:"
+
+#
+#: ../utils/setup.c:203
+msgid "Please enter the port number of the LDAP service (usually 389).\n"
+msgstr ""
+"Bitte geben Sie die Portnummer Ihres LDAP-Dienstes an (normalerweise 389).\n"
+
+#: ../utils/setup.c:205
+msgid "LDAP base DN:"
+msgstr "LDAP-base-DN:"
+
+#: ../utils/setup.c:207
+#, fuzzy
+msgid ""
+"Please enter the Base DN to search for authentication\n"
+"(for example: dc=example,dc=com)\n"
+msgstr ""
+"Bitte geben Sie die »Base DN«, die zur Authentifizierung durchsucht werden "
+"soll (beispielsweise dc=example,dc=com), an."
+
+#: ../utils/setup.c:210
+msgid "LDAP bind DN:"
+msgstr "LDAP-bind-DN:"
+
+#: ../utils/setup.c:212
+#, fuzzy
+msgid ""
+"Please enter the DN of an account to use for binding to the LDAP server for "
+"performing queries. The account does not require any other privileges. If "
+"your LDAP server allows anonymous queries, you can leave this blank.Please "
+"enter the DN of an account to use for binding to the LDAP server\n"
+"for performing queries.  The account does not require any other\n"
+"privileges.  If your LDAP server allows anonymous queries, you can\n"
+"leave this blank.\n"
+msgstr ""
+"Bitte geben Sie die DN eines Kontos an, das zum Binden an den LDAP-Server "
+"zur Durchführung von Abfragen verwandt wird. Das Konto benötigt keine "
+"weiteren Privilegien. Falls Ihr LDAP-Server anonyme Abfragen erlaubt, können "
+"Sie dies leer lassen."
+
+#: ../utils/setup.c:220
+msgid "LDAP bind password:"
+msgstr "LDAP-bind-Passwort:"
+
+#: ../utils/setup.c:222
+#, fuzzy
+msgid ""
+"If you entered a Bind DN in the previous question, you must now enter\n"
+"the password associated with that account.  Otherwise, you can leave this\n"
+"blank.\n"
+msgstr ""
+"Falls Sie in der vorherigen Frage eine Bind-DN eingegeben haben, müssen Sie "
+"jetzt das zum Konto zugehörige Passwort eingeben. Lassen Sie dies "
+"andernfalls leer."
+
+#: ../utils/setup.c:299
+msgid "Yes/No"
+msgstr ""
+
+#: ../utils/setup.c:300
+msgid "Yes"
+msgstr ""
+
+#: ../utils/setup.c:300
+msgid "No"
+msgstr ""
+
+#: ../utils/setup.c:346
+msgid "Press return to continue..."
+msgstr ""
+
+#: ../utils/setup.c:364
+msgid "Important Message"
+msgstr ""
+
+#: ../utils/setup.c:379
+msgid "Error"
+msgstr ""
+
+#: ../utils/setup.c:459
+msgid "Adding service entry..."
+msgstr ""
+
+#. Other errors might mean something really did go wrong.
+#.
+#: ../utils/setup.c:463 ../utils/setup.c:510 ../utils/setup.c:518
+msgid "Cannot open"
+msgstr ""
+
+#: ../utils/setup.c:569
+msgid ""
+"Citadel already appears to be configured to start at boot.\n"
+"Would you like to keep your boot configuration as is?\n"
+msgstr ""
+
+#: ../utils/setup.c:577
+msgid "Would you like to automatically start Citadel at boot?\n"
+msgstr ""
+
+#: ../utils/setup.c:583
+msgid "Cannot create"
+msgstr ""
+
+#: ../utils/setup.c:682
+#, c-format
+msgid ""
+"Setup can configure the \"xinetd\" service to automatically\n"
+"connect incoming telnet sessions to Citadel, bypassing the\n"
+"host system login: prompt.  Would you like to do this?\n"
+msgstr ""
+
+#: ../utils/setup.c:740
+msgid "You appear to have the "
+msgstr ""
+
+#: ../utils/setup.c:742
+msgid ""
+" email program\n"
+"running on your system.  If you want Citadel mail\n"
+"connected with "
+msgstr ""
+
+#: ../utils/setup.c:746
+msgid ""
+" you will have to manually integrate\n"
+"them.  It is preferable to disable "
+msgstr ""
+
+#: ../utils/setup.c:749
+msgid ""
+", and use Citadel's\n"
+"SMTP, POP3, and IMAP services.\n"
+"\n"
+"May we disable "
+msgstr ""
+
+#: ../utils/setup.c:753
+msgid ""
+"so that Citadel has access to ports\n"
+"25, 110, and 143?\n"
+msgstr ""
+
+#: ../utils/setup.c:863
+msgid "This is currently set to:"
+msgstr ""
+
+#: ../utils/setup.c:864
+msgid "Enter new value or press return to leave unchanged:"
+msgstr ""
+
+#: ../utils/setup.c:1067 ../utils/setup.c:1072 ../utils/setup.c:1384
+msgid "setup: cannot open"
+msgstr ""
+
+#: ../utils/setup.c:1175
+#, c-format
+msgid ""
+"\n"
+"/etc/nsswitch.conf is configured to use the 'db' module for\n"
+"one or more services.  This is not necessary on most systems,\n"
+"and it is known to crash the Citadel server when delivering\n"
+"mail to the Internet.\n"
+"\n"
+"Do you want this module to be automatically disabled?\n"
+"\n"
+msgstr ""
+
+#: ../utils/setup.c:1236 ../utils/setup.c:1252
+msgid "Setup finished"
+msgstr ""
+
+#: ../utils/setup.c:1237
+msgid ""
+"Setup of the Citadel server is complete.\n"
+"If you will be using WebCit, please run its\n"
+"setup program now; otherwise, run './citadel'\n"
+"to log in.\n"
+msgstr ""
+
+#: ../utils/setup.c:1243
+msgid "Setup failed"
+msgstr ""
+
+#: ../utils/setup.c:1244
+msgid ""
+"Setup is finished, but the Citadel server failed to start.\n"
+"Go back and check your configuration.\n"
+msgstr ""
+
+#: ../utils/setup.c:1253
+msgid "Setup is finished.  You may now start the server."
+msgstr ""
+
+#: ../utils/setup.c:1279
+msgid "My System"
+msgstr ""
+
+#: ../utils/setup.c:1282
+msgid "US 800 555 1212"
+msgstr ""
+
+#: ../utils/setup.c:1368 ../utils/setup.c:1373
+msgid "setup: cannot append"
+msgstr ""
+
+#
+#: ../utils/setup.c:1450 ../utils/setup.c:1457 ../utils/setup.c:1472
+#: ../utils/setup.c:1512
+#, fuzzy
+msgid "Citadel Setup"
+msgstr "Citadel Benutzer ID:"
+
+#: ../utils/setup.c:1459
+msgid "The directory you specified does not exist"
+msgstr ""
+
+#: ../utils/setup.c:1473
+msgid ""
+"The Citadel service is still running.\n"
+"Please stop the service manually and run setup again."
+msgstr ""
+
+#: ../utils/setup.c:1485
+#, fuzzy
+msgid "Citadel setup program"
+msgstr "Citadel Basis Directory"
+
+#: ../utils/setup.c:1513
+msgid "This Citadel installation is too old to be upgraded."
+msgstr ""
+
+#: ../utils/setup.c:1552 ../utils/setup.c:1554 ../utils/setup.c:1556
+msgid "Setting file permissions"
+msgstr ""
+
+#~ 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."
+
+#~ 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."
+
+#~ msgid "Internal"
+#~ msgstr "Intern"
+
+#~ msgid "Host"
+#~ msgstr "Host"
+
+#~ msgid "LDAP"
+#~ msgstr "LDAP"
+
+#~ msgid ""
+#~ "Do not change this option unless you are sure it is required, since "
+#~ "changing back requires a full reinstall of Citadel."
+#~ msgstr ""
+#~ "Ändern Sie diese Option nur, falls Sie sich sicher sind, dass Sie sie "
+#~ "benötigen. Das Zurücksetzen dieser Option benötigt eine komplette "
+#~ "Neuinstallation von Citadel."
+
+#~ msgid ""
+#~ "While not mandatory, it is highly recommended that you set a password for "
+#~ "the administrator user."
+#~ msgstr ""
+#~ "Es ist zwar nicht zwingend notwendig, wird aber nachdrücklich empfohlen, "
+#~ "dass Sie für den administrativen Benutzer ein Passwort setzen."
+
+#~ msgid "Internal, Host, LDAP, Active Directory"
+#~ msgstr "Intern, Host, LDAP, Active Directory"
+
+#~ msgid "Enable external authentication mode?"
+#~ msgstr "Externen Authentifizierungsmodus aktivieren?"
+
+#~ 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 ""
+#~ "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."
diff --git a/citadel/po/es.po b/citadel/po/es.po
new file mode 100644 (file)
index 0000000..4a4f114
--- /dev/null
@@ -0,0 +1,452 @@
+# citadel po-debconf translation to Spanish
+# Copyright (C) 2009 Software in the Public Interest
+# This file is distributed under the same license as the citadel package.
+#
+# Changes:
+# - Initial translation
+#       Shukoh <felix_os69@hotmail.com> , 2009
+#
+#
+#  Traductores, si no conoce el formato PO, merece la pena leer la
+#  documentación de gettext, especialmente las secciones dedicadas a este
+#  formato, por ejemplo ejecutando:
+#         info -n '(gettext)PO Files'
+#         info -n '(gettext)Header Entry'
+#
+# Equipo de traducción al español, por favor lean antes de traducir
+# los siguientes documentos:
+#
+# - El proyecto de traducción de Debian al español
+#   http://www.debian.org/intl/spanish/coordinacion
+#   especialmente las notas de traducción en
+#   http://www.debian.org/intl/spanish/notas
+#
+# - La guía de traducción de po's de debconf:
+#   /usr/share/doc/po-debconf/README-trans
+#   o http://www.debian.org/intl/l10n/po-debconf/README-trans
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: citadel-7.66-1\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2010-09-28 00:22+0200\n"
+"PO-Revision-Date: 2009-11-24 16:09+0100\n"
+"Last-Translator: Shuko <felix_os69@hotmail.com>\n"
+"Language-Team: Debian Spanish <debian-l10n-spanish@lists.debian.org>\n"
+"Language: \n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#: ../utils/setup.c:119
+#, fuzzy
+msgid "Citadel Home Directory"
+msgstr "Active Directory"
+
+#: ../utils/setup.c:122
+msgid ""
+"Enter the full pathname of the directory in which the Citadel\n"
+"installation you are creating or updating resides.  If you\n"
+"specify a directory other than the default, you will need to\n"
+"specify the -h flag to the server when you start it up.\n"
+msgstr ""
+
+#: ../utils/setup.c:128
+msgid ""
+"Enter the subdirectory name for an alternate installation of Citadel. To do "
+"a default installation just leave it blank.If you specify a directory other "
+"than the default, you will need to\n"
+"specify the -h flag to the server when you start it up.\n"
+"note that it may not have a leading /"
+msgstr ""
+
+#: ../utils/setup.c:135
+msgid "Citadel administrator username:"
+msgstr "Nombre de usuario del administrador de Citadel:"
+
+#: ../utils/setup.c:137
+msgid ""
+"Please enter the name of the Citadel user account that should be granted "
+"administrative privileges once created. If using internal authentication "
+"this user account will be created if it does not exist. For external "
+"authentication this user account has to exist."
+msgstr ""
+"Por favor, introduzca el nombre de la cuenta de usuario de Citadel a la que "
+"se le deben conceder privilegios de administrador una vez creada. Si emplea "
+"autenticación interna esta cuenta de usuario se creará, si aún no existe. "
+"Para autenticación externa esta cuenta tiene que existir."
+
+#: ../utils/setup.c:143
+msgid "Administrator password:"
+msgstr "Contraseña del administrador:"
+
+#: ../utils/setup.c:145
+msgid ""
+"Enter a password for the system administrator. When setup\n"
+"completes it will attempt to create the administrator user\n"
+"and set the password specified here.\n"
+msgstr ""
+
+#: ../utils/setup.c:149
+msgid "Citadel User ID:"
+msgstr ""
+
+#: ../utils/setup.c:151
+msgid ""
+"Citadel needs to run under its own user ID.  This would\n"
+"typically be called \"citadel\", but if you are running Citadel\n"
+"as a public BBS, you might also call it \"bbs\" or \"guest\".\n"
+"The server will run under this user ID.  Please specify that\n"
+"user ID here.  You may specify either a user name or a numeric\n"
+"UID.\n"
+msgstr ""
+
+#: ../utils/setup.c:158
+msgid "Listening address for the Citadel server:"
+msgstr "Dirección de escucha para el servidor Citadel:"
+
+#: ../utils/setup.c:160
+msgid ""
+"Please specify the IP address which the server should be listening to. You "
+"can name a specific IPv4 or IPv6 address, or you can specify\n"
+"'*' for 'any address', '::' for 'any IPv6 address', or '0.0.0.0'\n"
+"for 'any IPv4 address'. If you leave this blank, Citadel will\n"
+"listen on all addresses. This can usually be left to the default unless "
+"multiple instances of Citadel are running on the same computer."
+msgstr ""
+
+#: ../utils/setup.c:168
+#, fuzzy
+msgid "Server port number:"
+msgstr "Número del puerto de LDAP:"
+
+#: ../utils/setup.c:170
+msgid ""
+"Specify the TCP port number on which your server will run.\n"
+"Normally, this will be port 504, which is the official port\n"
+"assigned by the IANA for Citadel servers.  You will only need\n"
+"to specify a different port number if you run multiple instances\n"
+"of Citadel on the same computer and there is something else\n"
+"already using port 504.\n"
+msgstr ""
+
+#: ../utils/setup.c:177
+msgid "Authentication method to use:"
+msgstr "Método de autenticación a utilizar:"
+
+#: ../utils/setup.c:179
+#, fuzzy
+msgid ""
+"Please choose the user authentication mode. By default Citadel will use its "
+"own internal user accounts database. If you choose Host, Citadel users will "
+"have accounts on the host system, authenticated via /etc/passwd or a PAM "
+"source. LDAP chooses an RFC 2307 compliant directory server, the last option "
+"chooses the nonstandard MS Active Directory LDAP scheme.\n"
+"Do not change this option unless you are sure it is required, since changing "
+"back requires a full reinstall of Citadel.\n"
+" 0. Self contained authentication\n"
+" 1. Host system integrated authentication\n"
+" 2. External LDAP - RFC 2307 compliant directory\n"
+" 3. External LDAP - nonstandard MS Active Directory\n"
+"\n"
+"For help: http://www.citadel.org/doku.php/faq:installation:authmodes\n"
+"\n"
+"ANSWER \"0\" UNLESS YOU COMPLETELY UNDERSTAND THIS OPTION.\n"
+msgstr ""
+"Por favor, elija el método de autenticación del usuario. De forma "
+"predeterminada, Citadel usará su propia base de datos de cuentas de usuario. "
+"Si elije «Host», los usuarios de Citadel tendrán cuentas en el equipo "
+"anfitrión «host» del sistema, autenticado a través de «/etc/psswd» o una "
+"fuente de PAM. LDAP selecciona un servidor de directorios compatible con RFC "
+"2307 y la última opción selecciona el esquema no estándar LDAP de MS Active "
+"Directory."
+
+#: ../utils/setup.c:197
+msgid "LDAP host:"
+msgstr "Equipo de LDAP:"
+
+#: ../utils/setup.c:199
+#, fuzzy
+msgid "Please enter the host name or IP address of your LDAP server.\n"
+msgstr ""
+"Por favor, introduzca el nombre del equipo o la dirección IP de su servidor "
+"LDAP."
+
+#: ../utils/setup.c:201
+msgid "LDAP port number:"
+msgstr "Número del puerto de LDAP:"
+
+#: ../utils/setup.c:203
+#, fuzzy
+msgid "Please enter the port number of the LDAP service (usually 389).\n"
+msgstr ""
+"Por favor, introduzca el número del puerto del servicio LDAP (generalmente "
+"389)."
+
+#: ../utils/setup.c:205
+msgid "LDAP base DN:"
+msgstr "DN base de LDAP:"
+
+#: ../utils/setup.c:207
+#, fuzzy
+msgid ""
+"Please enter the Base DN to search for authentication\n"
+"(for example: dc=example,dc=com)\n"
+msgstr ""
+"Por favor, introduzca el DN base para buscar la autenticación (por ejemplo: "
+"dc=ejemplo, dc=com)."
+
+#: ../utils/setup.c:210
+msgid "LDAP bind DN:"
+msgstr "DN de enlace de LDAP:"
+
+#: ../utils/setup.c:212
+#, fuzzy
+msgid ""
+"Please enter the DN of an account to use for binding to the LDAP server for "
+"performing queries. The account does not require any other privileges. If "
+"your LDAP server allows anonymous queries, you can leave this blank.Please "
+"enter the DN of an account to use for binding to the LDAP server\n"
+"for performing queries.  The account does not require any other\n"
+"privileges.  If your LDAP server allows anonymous queries, you can\n"
+"leave this blank.\n"
+msgstr ""
+"Por favor, introduzca el DN de una cuenta para usarlo como enlace al "
+"servidor LDAP para las consultas realizadas. La cuenta no requiere ningún "
+"otro privilegio. Si el servidor LDAP permite las consultas anónimas, puede "
+"dejar esta opción en blanco."
+
+#: ../utils/setup.c:220
+msgid "LDAP bind password:"
+msgstr "Contraseña para el enlace de LDAP:"
+
+#: ../utils/setup.c:222
+#, fuzzy
+msgid ""
+"If you entered a Bind DN in the previous question, you must now enter\n"
+"the password associated with that account.  Otherwise, you can leave this\n"
+"blank.\n"
+msgstr ""
+"Si ha introducido un DN de enlace en la anterior pregunta, ahora debe "
+"introducir la contraseña asociada con esa cuenta. Si no, puede dejar esta "
+"opción en blanco."
+
+#: ../utils/setup.c:299
+msgid "Yes/No"
+msgstr ""
+
+#: ../utils/setup.c:300
+msgid "Yes"
+msgstr ""
+
+#: ../utils/setup.c:300
+msgid "No"
+msgstr ""
+
+#: ../utils/setup.c:346
+msgid "Press return to continue..."
+msgstr ""
+
+#: ../utils/setup.c:364
+msgid "Important Message"
+msgstr ""
+
+#: ../utils/setup.c:379
+msgid "Error"
+msgstr ""
+
+#: ../utils/setup.c:459
+msgid "Adding service entry..."
+msgstr ""
+
+#. Other errors might mean something really did go wrong.
+#.
+#: ../utils/setup.c:463 ../utils/setup.c:510 ../utils/setup.c:518
+msgid "Cannot open"
+msgstr ""
+
+#: ../utils/setup.c:569
+msgid ""
+"Citadel already appears to be configured to start at boot.\n"
+"Would you like to keep your boot configuration as is?\n"
+msgstr ""
+
+#: ../utils/setup.c:577
+msgid "Would you like to automatically start Citadel at boot?\n"
+msgstr ""
+
+#: ../utils/setup.c:583
+msgid "Cannot create"
+msgstr ""
+
+#: ../utils/setup.c:682
+#, c-format
+msgid ""
+"Setup can configure the \"xinetd\" service to automatically\n"
+"connect incoming telnet sessions to Citadel, bypassing the\n"
+"host system login: prompt.  Would you like to do this?\n"
+msgstr ""
+
+#: ../utils/setup.c:740
+msgid "You appear to have the "
+msgstr ""
+
+#: ../utils/setup.c:742
+msgid ""
+" email program\n"
+"running on your system.  If you want Citadel mail\n"
+"connected with "
+msgstr ""
+
+#: ../utils/setup.c:746
+msgid ""
+" you will have to manually integrate\n"
+"them.  It is preferable to disable "
+msgstr ""
+
+#: ../utils/setup.c:749
+msgid ""
+", and use Citadel's\n"
+"SMTP, POP3, and IMAP services.\n"
+"\n"
+"May we disable "
+msgstr ""
+
+#: ../utils/setup.c:753
+msgid ""
+"so that Citadel has access to ports\n"
+"25, 110, and 143?\n"
+msgstr ""
+
+#: ../utils/setup.c:863
+msgid "This is currently set to:"
+msgstr ""
+
+#: ../utils/setup.c:864
+msgid "Enter new value or press return to leave unchanged:"
+msgstr ""
+
+#: ../utils/setup.c:1067 ../utils/setup.c:1072 ../utils/setup.c:1384
+msgid "setup: cannot open"
+msgstr ""
+
+#: ../utils/setup.c:1175
+#, c-format
+msgid ""
+"\n"
+"/etc/nsswitch.conf is configured to use the 'db' module for\n"
+"one or more services.  This is not necessary on most systems,\n"
+"and it is known to crash the Citadel server when delivering\n"
+"mail to the Internet.\n"
+"\n"
+"Do you want this module to be automatically disabled?\n"
+"\n"
+msgstr ""
+
+#: ../utils/setup.c:1236 ../utils/setup.c:1252
+msgid "Setup finished"
+msgstr ""
+
+#: ../utils/setup.c:1237
+msgid ""
+"Setup of the Citadel server is complete.\n"
+"If you will be using WebCit, please run its\n"
+"setup program now; otherwise, run './citadel'\n"
+"to log in.\n"
+msgstr ""
+
+#: ../utils/setup.c:1243
+msgid "Setup failed"
+msgstr ""
+
+#: ../utils/setup.c:1244
+msgid ""
+"Setup is finished, but the Citadel server failed to start.\n"
+"Go back and check your configuration.\n"
+msgstr ""
+
+#: ../utils/setup.c:1253
+msgid "Setup is finished.  You may now start the server."
+msgstr ""
+
+#: ../utils/setup.c:1279
+msgid "My System"
+msgstr ""
+
+#: ../utils/setup.c:1282
+msgid "US 800 555 1212"
+msgstr ""
+
+#: ../utils/setup.c:1368 ../utils/setup.c:1373
+msgid "setup: cannot append"
+msgstr ""
+
+#: ../utils/setup.c:1450 ../utils/setup.c:1457 ../utils/setup.c:1472
+#: ../utils/setup.c:1512
+msgid "Citadel Setup"
+msgstr ""
+
+#: ../utils/setup.c:1459
+msgid "The directory you specified does not exist"
+msgstr ""
+
+#: ../utils/setup.c:1473
+msgid ""
+"The Citadel service is still running.\n"
+"Please stop the service manually and run setup again."
+msgstr ""
+
+#: ../utils/setup.c:1485
+#, fuzzy
+msgid "Citadel setup program"
+msgstr "Active Directory"
+
+#: ../utils/setup.c:1513
+msgid "This Citadel installation is too old to be upgraded."
+msgstr ""
+
+#: ../utils/setup.c:1552 ../utils/setup.c:1554 ../utils/setup.c:1556
+msgid "Setting file permissions"
+msgstr ""
+
+#~ 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 la dirección IP en la que el servidor debería estar "
+#~ "escuchando. Si indica la 0.0.0.0, el servidor escuchará en todas las "
+#~ "direcciones."
+
+#~ msgid ""
+#~ "This can usually be left to the default unless multiple instances of "
+#~ "Citadel are running on the same computer."
+#~ msgstr ""
+#~ "Normalmente se puede dejar el valor predeterminado, a no ser que tenga "
+#~ "varias instancias de Citadel ejecutándose en el mismo equipo."
+
+#~ msgid "Internal"
+#~ msgstr "Interna"
+
+#~ msgid "Host"
+#~ msgstr "Host"
+
+#~ msgid "LDAP"
+#~ msgstr "LDAP"
+
+#~ msgid ""
+#~ "Do not change this option unless you are sure it is required, since "
+#~ "changing back requires a full reinstall of Citadel."
+#~ msgstr ""
+#~ "No cambie esta opción a no ser que esté seguro de que es necesario, ya "
+#~ "que si lo cambia se deberá reinstalar completamente Citadel para volver "
+#~ "al estado anterior."
+
+#~ msgid ""
+#~ "While not mandatory, it is highly recommended that you set a password for "
+#~ "the administrator user."
+#~ msgstr ""
+#~ "A pesar de que no es obligatorio, es bastante recomendable establecer una "
+#~ "contraseña para el administrador."
+
+#~ msgid "Internal, Host, LDAP, Active Directory"
+#~ msgstr "Interna, Host, LDAP, Active Directory"
diff --git a/citadel/po/fi.po b/citadel/po/fi.po
new file mode 100644 (file)
index 0000000..39c765b
--- /dev/null
@@ -0,0 +1,424 @@
+# Esko Arajärvi <edu@iki.fi>, 2009.
+msgid ""
+msgstr ""
+"Project-Id-Version: citadel\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2010-09-28 00:22+0200\n"
+"PO-Revision-Date: 2009-08-22 21:43+0300\n"
+"Last-Translator: Esko Arajärvi <edu@iki.fi>\n"
+"Language-Team: Finnish <debian-l10n-finnish@lists.debian.org>\n"
+"Language: fi\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Poedit-Country: FINLAND\n"
+"X-Generator: Lokalize 0.3\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#: ../utils/setup.c:119
+#, fuzzy
+msgid "Citadel Home Directory"
+msgstr "Active Directory"
+
+#: ../utils/setup.c:122
+msgid ""
+"Enter the full pathname of the directory in which the Citadel\n"
+"installation you are creating or updating resides.  If you\n"
+"specify a directory other than the default, you will need to\n"
+"specify the -h flag to the server when you start it up.\n"
+msgstr ""
+
+#: ../utils/setup.c:128
+msgid ""
+"Enter the subdirectory name for an alternate installation of Citadel. To do "
+"a default installation just leave it blank.If you specify a directory other "
+"than the default, you will need to\n"
+"specify the -h flag to the server when you start it up.\n"
+"note that it may not have a leading /"
+msgstr ""
+
+#: ../utils/setup.c:135
+msgid "Citadel administrator username:"
+msgstr "Citadel-ylläpitäjän käyttäjätunnus:"
+
+#: ../utils/setup.c:137
+msgid ""
+"Please enter the name of the Citadel user account that should be granted "
+"administrative privileges once created. If using internal authentication "
+"this user account will be created if it does not exist. For external "
+"authentication this user account has to exist."
+msgstr ""
+"Anna sen Citadel-käyttäjätunnuksen nimi, jolle annetaan luotaessa "
+"ylläpitäjän oikeudet. Käytettäessä sisäistä tunnistautumista, tämä "
+"käyttäjätunnus luodaan, jos sitä ei ole. Ulkoista tunnistautumista "
+"käytettäessä tämän käyttäjätunnuksen täytyy olla olemassa."
+
+#: ../utils/setup.c:143
+msgid "Administrator password:"
+msgstr "Ylläpitäjän salasana:"
+
+#: ../utils/setup.c:145
+msgid ""
+"Enter a password for the system administrator. When setup\n"
+"completes it will attempt to create the administrator user\n"
+"and set the password specified here.\n"
+msgstr ""
+
+#: ../utils/setup.c:149
+msgid "Citadel User ID:"
+msgstr ""
+
+#: ../utils/setup.c:151
+msgid ""
+"Citadel needs to run under its own user ID.  This would\n"
+"typically be called \"citadel\", but if you are running Citadel\n"
+"as a public BBS, you might also call it \"bbs\" or \"guest\".\n"
+"The server will run under this user ID.  Please specify that\n"
+"user ID here.  You may specify either a user name or a numeric\n"
+"UID.\n"
+msgstr ""
+
+#: ../utils/setup.c:158
+msgid "Listening address for the Citadel server:"
+msgstr "Osoite, jota Citadel-palvelin kuuntelee:"
+
+#: ../utils/setup.c:160
+msgid ""
+"Please specify the IP address which the server should be listening to. You "
+"can name a specific IPv4 or IPv6 address, or you can specify\n"
+"'*' for 'any address', '::' for 'any IPv6 address', or '0.0.0.0'\n"
+"for 'any IPv4 address'. If you leave this blank, Citadel will\n"
+"listen on all addresses. This can usually be left to the default unless "
+"multiple instances of Citadel are running on the same computer."
+msgstr ""
+
+#: ../utils/setup.c:168
+#, fuzzy
+msgid "Server port number:"
+msgstr "LDAP-portin numero:"
+
+#: ../utils/setup.c:170
+msgid ""
+"Specify the TCP port number on which your server will run.\n"
+"Normally, this will be port 504, which is the official port\n"
+"assigned by the IANA for Citadel servers.  You will only need\n"
+"to specify a different port number if you run multiple instances\n"
+"of Citadel on the same computer and there is something else\n"
+"already using port 504.\n"
+msgstr ""
+
+#: ../utils/setup.c:177
+msgid "Authentication method to use:"
+msgstr ""
+
+#: ../utils/setup.c:179
+#, fuzzy
+msgid ""
+"Please choose the user authentication mode. By default Citadel will use its "
+"own internal user accounts database. If you choose Host, Citadel users will "
+"have accounts on the host system, authenticated via /etc/passwd or a PAM "
+"source. LDAP chooses an RFC 2307 compliant directory server, the last option "
+"chooses the nonstandard MS Active Directory LDAP scheme.\n"
+"Do not change this option unless you are sure it is required, since changing "
+"back requires a full reinstall of Citadel.\n"
+" 0. Self contained authentication\n"
+" 1. Host system integrated authentication\n"
+" 2. External LDAP - RFC 2307 compliant directory\n"
+" 3. External LDAP - nonstandard MS Active Directory\n"
+"\n"
+"For help: http://www.citadel.org/doku.php/faq:installation:authmodes\n"
+"\n"
+"ANSWER \"0\" UNLESS YOU COMPLETELY UNDERSTAND THIS OPTION.\n"
+msgstr ""
+"Valitse käyttäjien tunnistautumistapa. Oletuksena Citadel käyttää omaa "
+"sisäistä käyttäjätunnustietokantaa. Vaihtoehto Isäntä tarkoittaa, että "
+"Citadel-käyttäjille tehdään tunnukset isäntäkoneelle ja tunnistautuminen "
+"tapahtuu tiedoston /etc/passwd tai PAMin kautta. LDAP tarkoittaa RFC 2307 -"
+"yhteensopivaa hakemistopalvelinta ja viimeinen vaihtoehto epästandardia MS "
+"Active Directory LDAP -skeemaa."
+
+#: ../utils/setup.c:197
+msgid "LDAP host:"
+msgstr "LDAP-kone:"
+
+#: ../utils/setup.c:199
+#, fuzzy
+msgid "Please enter the host name or IP address of your LDAP server.\n"
+msgstr "Anna LDAP-palvelimen verkkonimi tai IP-osoite."
+
+#: ../utils/setup.c:201
+msgid "LDAP port number:"
+msgstr "LDAP-portin numero:"
+
+#: ../utils/setup.c:203
+#, fuzzy
+msgid "Please enter the port number of the LDAP service (usually 389).\n"
+msgstr "Anna LDAP-palvelun porttinumero (yleensä 389)."
+
+#: ../utils/setup.c:205
+msgid "LDAP base DN:"
+msgstr "LDAPin kanta-DN (erittelevä nimi):"
+
+#: ../utils/setup.c:207
+#, fuzzy
+msgid ""
+"Please enter the Base DN to search for authentication\n"
+"(for example: dc=example,dc=com)\n"
+msgstr ""
+"Anna erittelevä nimi, josta kirjautumistietoja etsitään (esimerkiksi: "
+"dc=example,dc=com)."
+
+#: ../utils/setup.c:210
+msgid "LDAP bind DN:"
+msgstr "LDAPin yhteys-DN (yhteyden erittelevä nimi):"
+
+#: ../utils/setup.c:212
+#, fuzzy
+msgid ""
+"Please enter the DN of an account to use for binding to the LDAP server for "
+"performing queries. The account does not require any other privileges. If "
+"your LDAP server allows anonymous queries, you can leave this blank.Please "
+"enter the DN of an account to use for binding to the LDAP server\n"
+"for performing queries.  The account does not require any other\n"
+"privileges.  If your LDAP server allows anonymous queries, you can\n"
+"leave this blank.\n"
+msgstr ""
+"Anna sen tunnuksen erittelevä nimi, jota käytetään yhteyden ottamiseen LDAP-"
+"palvelimeen kyselyitä varten. Tunnuksella ei tarvitse olla mitään muita "
+"oikeuksia. Jos LDAP-palvelin sallii anonyymit kyselyt, voit jättää tämän "
+"tyhjäksi."
+
+#: ../utils/setup.c:220
+msgid "LDAP bind password:"
+msgstr "LDAP-yhteyden salasana:"
+
+#: ../utils/setup.c:222
+#, fuzzy
+msgid ""
+"If you entered a Bind DN in the previous question, you must now enter\n"
+"the password associated with that account.  Otherwise, you can leave this\n"
+"blank.\n"
+msgstr ""
+"Jos määrittelit yhteys-DN:n aiemmassa kysymyksessä, syötä tähän tunnuksen "
+"salasana. Voi muussa tapauksessa jättää kentän tyhjäksi."
+
+#: ../utils/setup.c:299
+msgid "Yes/No"
+msgstr ""
+
+#: ../utils/setup.c:300
+msgid "Yes"
+msgstr ""
+
+#: ../utils/setup.c:300
+msgid "No"
+msgstr ""
+
+#: ../utils/setup.c:346
+msgid "Press return to continue..."
+msgstr ""
+
+#: ../utils/setup.c:364
+msgid "Important Message"
+msgstr ""
+
+#: ../utils/setup.c:379
+msgid "Error"
+msgstr ""
+
+#: ../utils/setup.c:459
+msgid "Adding service entry..."
+msgstr ""
+
+#. Other errors might mean something really did go wrong.
+#.
+#: ../utils/setup.c:463 ../utils/setup.c:510 ../utils/setup.c:518
+msgid "Cannot open"
+msgstr ""
+
+#: ../utils/setup.c:569
+msgid ""
+"Citadel already appears to be configured to start at boot.\n"
+"Would you like to keep your boot configuration as is?\n"
+msgstr ""
+
+#: ../utils/setup.c:577
+msgid "Would you like to automatically start Citadel at boot?\n"
+msgstr ""
+
+#: ../utils/setup.c:583
+msgid "Cannot create"
+msgstr ""
+
+#: ../utils/setup.c:682
+#, c-format
+msgid ""
+"Setup can configure the \"xinetd\" service to automatically\n"
+"connect incoming telnet sessions to Citadel, bypassing the\n"
+"host system login: prompt.  Would you like to do this?\n"
+msgstr ""
+
+#: ../utils/setup.c:740
+msgid "You appear to have the "
+msgstr ""
+
+#: ../utils/setup.c:742
+msgid ""
+" email program\n"
+"running on your system.  If you want Citadel mail\n"
+"connected with "
+msgstr ""
+
+#: ../utils/setup.c:746
+msgid ""
+" you will have to manually integrate\n"
+"them.  It is preferable to disable "
+msgstr ""
+
+#: ../utils/setup.c:749
+msgid ""
+", and use Citadel's\n"
+"SMTP, POP3, and IMAP services.\n"
+"\n"
+"May we disable "
+msgstr ""
+
+#: ../utils/setup.c:753
+msgid ""
+"so that Citadel has access to ports\n"
+"25, 110, and 143?\n"
+msgstr ""
+
+#: ../utils/setup.c:863
+msgid "This is currently set to:"
+msgstr ""
+
+#: ../utils/setup.c:864
+msgid "Enter new value or press return to leave unchanged:"
+msgstr ""
+
+#: ../utils/setup.c:1067 ../utils/setup.c:1072 ../utils/setup.c:1384
+msgid "setup: cannot open"
+msgstr ""
+
+#: ../utils/setup.c:1175
+#, c-format
+msgid ""
+"\n"
+"/etc/nsswitch.conf is configured to use the 'db' module for\n"
+"one or more services.  This is not necessary on most systems,\n"
+"and it is known to crash the Citadel server when delivering\n"
+"mail to the Internet.\n"
+"\n"
+"Do you want this module to be automatically disabled?\n"
+"\n"
+msgstr ""
+
+#: ../utils/setup.c:1236 ../utils/setup.c:1252
+msgid "Setup finished"
+msgstr ""
+
+#: ../utils/setup.c:1237
+msgid ""
+"Setup of the Citadel server is complete.\n"
+"If you will be using WebCit, please run its\n"
+"setup program now; otherwise, run './citadel'\n"
+"to log in.\n"
+msgstr ""
+
+#: ../utils/setup.c:1243
+msgid "Setup failed"
+msgstr ""
+
+#: ../utils/setup.c:1244
+msgid ""
+"Setup is finished, but the Citadel server failed to start.\n"
+"Go back and check your configuration.\n"
+msgstr ""
+
+#: ../utils/setup.c:1253
+msgid "Setup is finished.  You may now start the server."
+msgstr ""
+
+#: ../utils/setup.c:1279
+msgid "My System"
+msgstr ""
+
+#: ../utils/setup.c:1282
+msgid "US 800 555 1212"
+msgstr ""
+
+#: ../utils/setup.c:1368 ../utils/setup.c:1373
+msgid "setup: cannot append"
+msgstr ""
+
+#: ../utils/setup.c:1450 ../utils/setup.c:1457 ../utils/setup.c:1472
+#: ../utils/setup.c:1512
+msgid "Citadel Setup"
+msgstr ""
+
+#: ../utils/setup.c:1459
+msgid "The directory you specified does not exist"
+msgstr ""
+
+#: ../utils/setup.c:1473
+msgid ""
+"The Citadel service is still running.\n"
+"Please stop the service manually and run setup again."
+msgstr ""
+
+#: ../utils/setup.c:1485
+#, fuzzy
+msgid "Citadel setup program"
+msgstr "Active Directory"
+
+#: ../utils/setup.c:1513
+msgid "This Citadel installation is too old to be upgraded."
+msgstr ""
+
+#: ../utils/setup.c:1552 ../utils/setup.c:1554 ../utils/setup.c:1556
+msgid "Setting file permissions"
+msgstr ""
+
+#~ 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."
+
+#~ 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."
+
+#~ msgid "Internal"
+#~ msgstr "Sisäinen"
+
+#~ msgid "Host"
+#~ msgstr "Isäntä"
+
+#~ msgid "LDAP"
+#~ msgstr "LDAP"
+
+#~ msgid ""
+#~ "Do not change this option unless you are sure it is required, since "
+#~ "changing back requires a full reinstall of Citadel."
+#~ msgstr ""
+#~ "Älä vaihda tätä valintaa, ellet ole varma, että se on tarpeen, koska "
+#~ "takaisin vaihtaminen vaatii, että Citadel asennetaan täysin uudelleen."
+
+#~ msgid ""
+#~ "While not mandatory, it is highly recommended that you set a password for "
+#~ "the administrator user."
+#~ msgstr ""
+#~ "On erittäin suositeltavaa asettaa ylläpitäjälle salasana, vaikka se ei "
+#~ "olekaan pakollista."
+
+#~ msgid "Internal, Host, LDAP, Active Directory"
+#~ msgstr "Sisäinen, Isäntä, LDAP, Active Directory"
+
+#~ msgid "Enable external authentication mode?"
+#~ msgstr "Otetaanko ulkoinen tunnistautumistapa käyttöön?"
diff --git a/citadel/po/fr.po b/citadel/po/fr.po
new file mode 100644 (file)
index 0000000..2f1dc98
--- /dev/null
@@ -0,0 +1,439 @@
+# Translation of citadel debconf templates to French
+# Copyright (C) 2005-2009 Debian French l10n team <debian-l10n-french@lists.debian.org>
+# This file is distributed under the same license as the citadel package.
+#
+# Translators:
+# Jean-Luc Coulon (f5ibh) <jean-luc.coulon@wanadoo.fr>, 2008.
+# Christian Perrier <bubulle@debian.org>, 2008, 2009.
+msgid ""
+msgstr ""
+"Project-Id-Version: fr-new\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2010-09-28 00:22+0200\n"
+"PO-Revision-Date: 2009-08-13 06:42+0200\n"
+"Last-Translator: Christian Perrier <bubulle@debian.org>\n"
+"Language-Team: French <debian-l10n-french@lists.debian.org>\n"
+"Language: fr\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: Lokalize 0.3\n"
+"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+
+#: ../utils/setup.c:119
+#, fuzzy
+msgid "Citadel Home Directory"
+msgstr "Active Directory"
+
+#: ../utils/setup.c:122
+msgid ""
+"Enter the full pathname of the directory in which the Citadel\n"
+"installation you are creating or updating resides.  If you\n"
+"specify a directory other than the default, you will need to\n"
+"specify the -h flag to the server when you start it up.\n"
+msgstr ""
+
+#: ../utils/setup.c:128
+msgid ""
+"Enter the subdirectory name for an alternate installation of Citadel. To do "
+"a default installation just leave it blank.If you specify a directory other "
+"than the default, you will need to\n"
+"specify the -h flag to the server when you start it up.\n"
+"note that it may not have a leading /"
+msgstr ""
+
+#: ../utils/setup.c:135
+msgid "Citadel administrator username:"
+msgstr "Identifiant de l'administrateur de Citadel :"
+
+#: ../utils/setup.c:137
+msgid ""
+"Please enter the name of the Citadel user account that should be granted "
+"administrative privileges once created. If using internal authentication "
+"this user account will be created if it does not exist. For external "
+"authentication this user account has to exist."
+msgstr ""
+"Veuillez indiquer l'identifiant Citadel qui disposera des privilèges "
+"d'administration après création. Si le système interne d'authentification "
+"est utilisé, ce compte sera créé. Si un système externe d'authentification "
+"est utilisé, ce compte doit déjà y exister."
+
+#: ../utils/setup.c:143
+msgid "Administrator password:"
+msgstr "Mot de passe de l'administrateur :"
+
+#: ../utils/setup.c:145
+msgid ""
+"Enter a password for the system administrator. When setup\n"
+"completes it will attempt to create the administrator user\n"
+"and set the password specified here.\n"
+msgstr ""
+
+#: ../utils/setup.c:149
+msgid "Citadel User ID:"
+msgstr ""
+
+#: ../utils/setup.c:151
+msgid ""
+"Citadel needs to run under its own user ID.  This would\n"
+"typically be called \"citadel\", but if you are running Citadel\n"
+"as a public BBS, you might also call it \"bbs\" or \"guest\".\n"
+"The server will run under this user ID.  Please specify that\n"
+"user ID here.  You may specify either a user name or a numeric\n"
+"UID.\n"
+msgstr ""
+
+#: ../utils/setup.c:158
+msgid "Listening address for the Citadel server:"
+msgstr "Adresse IP où Citadel sera à l'écoute :"
+
+#: ../utils/setup.c:160
+msgid ""
+"Please specify the IP address which the server should be listening to. You "
+"can name a specific IPv4 or IPv6 address, or you can specify\n"
+"'*' for 'any address', '::' for 'any IPv6 address', or '0.0.0.0'\n"
+"for 'any IPv4 address'. If you leave this blank, Citadel will\n"
+"listen on all addresses. This can usually be left to the default unless "
+"multiple instances of Citadel are running on the same computer."
+msgstr ""
+
+#: ../utils/setup.c:168
+#, fuzzy
+msgid "Server port number:"
+msgstr "Port du serveur LDAP :"
+
+#: ../utils/setup.c:170
+msgid ""
+"Specify the TCP port number on which your server will run.\n"
+"Normally, this will be port 504, which is the official port\n"
+"assigned by the IANA for Citadel servers.  You will only need\n"
+"to specify a different port number if you run multiple instances\n"
+"of Citadel on the same computer and there is something else\n"
+"already using port 504.\n"
+msgstr ""
+
+#: ../utils/setup.c:177
+msgid "Authentication method to use:"
+msgstr "Méthode d'authentification à utiliser :"
+
+#: ../utils/setup.c:179
+#, fuzzy
+msgid ""
+"Please choose the user authentication mode. By default Citadel will use its "
+"own internal user accounts database. If you choose Host, Citadel users will "
+"have accounts on the host system, authenticated via /etc/passwd or a PAM "
+"source. LDAP chooses an RFC 2307 compliant directory server, the last option "
+"chooses the nonstandard MS Active Directory LDAP scheme.\n"
+"Do not change this option unless you are sure it is required, since changing "
+"back requires a full reinstall of Citadel.\n"
+" 0. Self contained authentication\n"
+" 1. Host system integrated authentication\n"
+" 2. External LDAP - RFC 2307 compliant directory\n"
+" 3. External LDAP - nonstandard MS Active Directory\n"
+"\n"
+"For help: http://www.citadel.org/doku.php/faq:installation:authmodes\n"
+"\n"
+"ANSWER \"0\" UNLESS YOU COMPLETELY UNDERSTAND THIS OPTION.\n"
+msgstr ""
+"Veuillez choisir le mode d'authentification des utilisateurs. Par défaut, "
+"Citadel utilise son système interne de comptes. Si vous choisissez « Hôte », "
+"les utilisateurs de Citadel doivent avoir des comptes locaux, authentifiés "
+"avec /etc/passwd ou PAM. Le choix « LDAP » utilise un répertoire conforme au "
+"RFC 2307 et l'option « Active Directory » utilise le schéma LDAP non "
+"standard d'Active Directory."
+
+#: ../utils/setup.c:197
+msgid "LDAP host:"
+msgstr "Serveur LDAP :"
+
+#: ../utils/setup.c:199
+#, fuzzy
+msgid "Please enter the host name or IP address of your LDAP server.\n"
+msgstr "Veuillez indiquer le nom d'hôte ou l'adresse IP du serveur LDAP."
+
+#: ../utils/setup.c:201
+msgid "LDAP port number:"
+msgstr "Port du serveur LDAP :"
+
+#: ../utils/setup.c:203
+#, fuzzy
+msgid "Please enter the port number of the LDAP service (usually 389).\n"
+msgstr ""
+"Veuillez indiquer le numéro du port d'écoute pour le serveur LDAP (en "
+"général 389)."
+
+#: ../utils/setup.c:205
+msgid "LDAP base DN:"
+msgstr "DN de base du serveur LDAP :"
+
+#: ../utils/setup.c:207
+#, fuzzy
+msgid ""
+"Please enter the Base DN to search for authentication\n"
+"(for example: dc=example,dc=com)\n"
+msgstr ""
+"Veuillez indiquer la base de recherche pour l'authentification LDAP "
+"(p. ex. dc=example,dc=com)."
+
+#: ../utils/setup.c:210
+msgid "LDAP bind DN:"
+msgstr "Compte de connexion LDAP :"
+
+#: ../utils/setup.c:212
+#, fuzzy
+msgid ""
+"Please enter the DN of an account to use for binding to the LDAP server for "
+"performing queries. The account does not require any other privileges. If "
+"your LDAP server allows anonymous queries, you can leave this blank.Please "
+"enter the DN of an account to use for binding to the LDAP server\n"
+"for performing queries.  The account does not require any other\n"
+"privileges.  If your LDAP server allows anonymous queries, you can\n"
+"leave this blank.\n"
+msgstr ""
+"Veuillez indiquer le compte à utiliser pour la connexion au serveur LDAP, "
+"pour les requêtes qui y seront effectuées. Ce compte a uniquement besoin de "
+"privilèges de lecture et peut ne pas être renseigné si le serveur LDAP "
+"permet les connexions anonymes."
+
+#: ../utils/setup.c:220
+msgid "LDAP bind password:"
+msgstr "Mot de passe de connexion LDAP :"
+
+#: ../utils/setup.c:222
+#, fuzzy
+msgid ""
+"If you entered a Bind DN in the previous question, you must now enter\n"
+"the password associated with that account.  Otherwise, you can leave this\n"
+"blank.\n"
+msgstr ""
+"Si vous avez indiqué un compte de connexion en lecture au serveur LDAP, "
+"veuillez indiquer le mot de passe à utiliser pour ce compte."
+
+#: ../utils/setup.c:299
+msgid "Yes/No"
+msgstr ""
+
+#: ../utils/setup.c:300
+msgid "Yes"
+msgstr ""
+
+#: ../utils/setup.c:300
+msgid "No"
+msgstr ""
+
+#: ../utils/setup.c:346
+msgid "Press return to continue..."
+msgstr ""
+
+#: ../utils/setup.c:364
+msgid "Important Message"
+msgstr ""
+
+#: ../utils/setup.c:379
+msgid "Error"
+msgstr ""
+
+#: ../utils/setup.c:459
+msgid "Adding service entry..."
+msgstr ""
+
+#. Other errors might mean something really did go wrong.
+#.
+#: ../utils/setup.c:463 ../utils/setup.c:510 ../utils/setup.c:518
+msgid "Cannot open"
+msgstr ""
+
+#: ../utils/setup.c:569
+msgid ""
+"Citadel already appears to be configured to start at boot.\n"
+"Would you like to keep your boot configuration as is?\n"
+msgstr ""
+
+#: ../utils/setup.c:577
+msgid "Would you like to automatically start Citadel at boot?\n"
+msgstr ""
+
+#: ../utils/setup.c:583
+msgid "Cannot create"
+msgstr ""
+
+#: ../utils/setup.c:682
+#, c-format
+msgid ""
+"Setup can configure the \"xinetd\" service to automatically\n"
+"connect incoming telnet sessions to Citadel, bypassing the\n"
+"host system login: prompt.  Would you like to do this?\n"
+msgstr ""
+
+#: ../utils/setup.c:740
+msgid "You appear to have the "
+msgstr ""
+
+#: ../utils/setup.c:742
+msgid ""
+" email program\n"
+"running on your system.  If you want Citadel mail\n"
+"connected with "
+msgstr ""
+
+#: ../utils/setup.c:746
+msgid ""
+" you will have to manually integrate\n"
+"them.  It is preferable to disable "
+msgstr ""
+
+#: ../utils/setup.c:749
+msgid ""
+", and use Citadel's\n"
+"SMTP, POP3, and IMAP services.\n"
+"\n"
+"May we disable "
+msgstr ""
+
+#: ../utils/setup.c:753
+msgid ""
+"so that Citadel has access to ports\n"
+"25, 110, and 143?\n"
+msgstr ""
+
+#: ../utils/setup.c:863
+msgid "This is currently set to:"
+msgstr ""
+
+#: ../utils/setup.c:864
+msgid "Enter new value or press return to leave unchanged:"
+msgstr ""
+
+#: ../utils/setup.c:1067 ../utils/setup.c:1072 ../utils/setup.c:1384
+msgid "setup: cannot open"
+msgstr ""
+
+#: ../utils/setup.c:1175
+#, c-format
+msgid ""
+"\n"
+"/etc/nsswitch.conf is configured to use the 'db' module for\n"
+"one or more services.  This is not necessary on most systems,\n"
+"and it is known to crash the Citadel server when delivering\n"
+"mail to the Internet.\n"
+"\n"
+"Do you want this module to be automatically disabled?\n"
+"\n"
+msgstr ""
+
+#: ../utils/setup.c:1236 ../utils/setup.c:1252
+msgid "Setup finished"
+msgstr ""
+
+#: ../utils/setup.c:1237
+msgid ""
+"Setup of the Citadel server is complete.\n"
+"If you will be using WebCit, please run its\n"
+"setup program now; otherwise, run './citadel'\n"
+"to log in.\n"
+msgstr ""
+
+#: ../utils/setup.c:1243
+msgid "Setup failed"
+msgstr ""
+
+#: ../utils/setup.c:1244
+msgid ""
+"Setup is finished, but the Citadel server failed to start.\n"
+"Go back and check your configuration.\n"
+msgstr ""
+
+#: ../utils/setup.c:1253
+msgid "Setup is finished.  You may now start the server."
+msgstr ""
+
+#: ../utils/setup.c:1279
+msgid "My System"
+msgstr ""
+
+#: ../utils/setup.c:1282
+msgid "US 800 555 1212"
+msgstr ""
+
+#: ../utils/setup.c:1368 ../utils/setup.c:1373
+msgid "setup: cannot append"
+msgstr ""
+
+#: ../utils/setup.c:1450 ../utils/setup.c:1457 ../utils/setup.c:1472
+#: ../utils/setup.c:1512
+msgid "Citadel Setup"
+msgstr ""
+
+#: ../utils/setup.c:1459
+msgid "The directory you specified does not exist"
+msgstr ""
+
+#: ../utils/setup.c:1473
+msgid ""
+"The Citadel service is still running.\n"
+"Please stop the service manually and run setup again."
+msgstr ""
+
+#: ../utils/setup.c:1485
+#, fuzzy
+msgid "Citadel setup program"
+msgstr "Active Directory"
+
+#: ../utils/setup.c:1513
+msgid "This Citadel installation is too old to be upgraded."
+msgstr ""
+
+#: ../utils/setup.c:1552 ../utils/setup.c:1554 ../utils/setup.c:1556
+msgid "Setting file permissions"
+msgstr ""
+
+#~ 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'adresse IP sur laquelle le serveur sera actif. Si "
+#~ "vous indiquez 0.0.0.0, Citadel sera à l'écoute de toutes les adresses."
+
+#~ 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."
+
+#~ msgid "Internal"
+#~ msgstr "Interne"
+
+#~ msgid "Host"
+#~ msgstr "Hôte"
+
+#~ msgid "LDAP"
+#~ msgstr "LDAP"
+
+#~ msgid ""
+#~ "Do not change this option unless you are sure it is required, since "
+#~ "changing back requires a full reinstall of Citadel."
+#~ msgstr ""
+#~ "Ne modifiez cette option que si elle est indispensable car il n'est pas "
+#~ "possible de la changer sans entièrement réinstaller Citadel."
+
+#~ msgid ""
+#~ "While not mandatory, it is highly recommended that you set a password for "
+#~ "the administrator user."
+#~ msgstr ""
+#~ "Bien que cela ne soit pas indispensable, il est fortement conseillé de "
+#~ "choisir un mot de passe pour l'utilisateur qui disposera des privilèges "
+#~ "d'administration."
+
+#~ msgid "Internal, Host, LDAP, Active Directory"
+#~ msgstr "Interne, Hôte, LDAP, Active Directory"
+
+#~ msgid "Enable external authentication mode?"
+#~ msgstr "Faut-il activer le mode d'authentification ?"
+
+#~ 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."
diff --git a/citadel/po/ja.po b/citadel/po/ja.po
new file mode 100644 (file)
index 0000000..15306d1
--- /dev/null
@@ -0,0 +1,418 @@
+# Copyright (C) 2009 Debian Citadel Team <pkg-citadel-devel@lists.alioth.debian.org>\r
+# This file is distributed under the same license as citadel package.\r
+# Hideki Yamane (Debian-JP) <henrich@debian.or.jp>, 2009.\r
+# \r
+msgid ""
+msgstr ""
+"Project-Id-Version: citadel 7.66-1\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2010-09-28 00:22+0200\n"
+"PO-Revision-Date: 2009-11-19 14:32+0900\n"
+"Last-Translator: Hideki Yamane (Debian-JP) <henrich@debian.or.jp>\n"
+"Language-Team: Japanese <debian-japanese@lists.debian.org>\n"
+"Language: ja\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#: ../utils/setup.c:119
+#, fuzzy
+msgid "Citadel Home Directory"
+msgstr "Active Directory"
+
+#: ../utils/setup.c:122
+msgid ""
+"Enter the full pathname of the directory in which the Citadel\n"
+"installation you are creating or updating resides.  If you\n"
+"specify a directory other than the default, you will need to\n"
+"specify the -h flag to the server when you start it up.\n"
+msgstr ""
+
+#: ../utils/setup.c:128
+msgid ""
+"Enter the subdirectory name for an alternate installation of Citadel. To do "
+"a default installation just leave it blank.If you specify a directory other "
+"than the default, you will need to\n"
+"specify the -h flag to the server when you start it up.\n"
+"note that it may not have a leading /"
+msgstr ""
+
+#: ../utils/setup.c:135
+msgid "Citadel administrator username:"
+msgstr "Citadel の管理者ユーザ名:"
+
+#: ../utils/setup.c:137
+msgid ""
+"Please enter the name of the Citadel user account that should be granted "
+"administrative privileges once created. If using internal authentication "
+"this user account will be created if it does not exist. For external "
+"authentication this user account has to exist."
+msgstr ""
+"作成後に管理者特権を与える Citadel のユーザアカウント名を入力してください。内"
+"部アカウントでの認証を使う場合、このユーザアカウントが存在しないのであれば作"
+"成されます。外部認証の場合は、このユーザアカウントが存在している必要がありま"
+"す。"
+
+#: ../utils/setup.c:143
+msgid "Administrator password:"
+msgstr "管理者パスワード:"
+
+#: ../utils/setup.c:145
+msgid ""
+"Enter a password for the system administrator. When setup\n"
+"completes it will attempt to create the administrator user\n"
+"and set the password specified here.\n"
+msgstr ""
+
+#: ../utils/setup.c:149
+msgid "Citadel User ID:"
+msgstr ""
+
+#: ../utils/setup.c:151
+msgid ""
+"Citadel needs to run under its own user ID.  This would\n"
+"typically be called \"citadel\", but if you are running Citadel\n"
+"as a public BBS, you might also call it \"bbs\" or \"guest\".\n"
+"The server will run under this user ID.  Please specify that\n"
+"user ID here.  You may specify either a user name or a numeric\n"
+"UID.\n"
+msgstr ""
+
+#: ../utils/setup.c:158
+msgid "Listening address for the Citadel server:"
+msgstr "Citadel サーバの待ち受けアドレス:"
+
+#: ../utils/setup.c:160
+msgid ""
+"Please specify the IP address which the server should be listening to. You "
+"can name a specific IPv4 or IPv6 address, or you can specify\n"
+"'*' for 'any address', '::' for 'any IPv6 address', or '0.0.0.0'\n"
+"for 'any IPv4 address'. If you leave this blank, Citadel will\n"
+"listen on all addresses. This can usually be left to the default unless "
+"multiple instances of Citadel are running on the same computer."
+msgstr ""
+
+#: ../utils/setup.c:168
+#, fuzzy
+msgid "Server port number:"
+msgstr "LDAP のポート番号:"
+
+#: ../utils/setup.c:170
+msgid ""
+"Specify the TCP port number on which your server will run.\n"
+"Normally, this will be port 504, which is the official port\n"
+"assigned by the IANA for Citadel servers.  You will only need\n"
+"to specify a different port number if you run multiple instances\n"
+"of Citadel on the same computer and there is something else\n"
+"already using port 504.\n"
+msgstr ""
+
+#: ../utils/setup.c:177
+msgid "Authentication method to use:"
+msgstr "利用する認証方式:"
+
+#: ../utils/setup.c:179
+#, fuzzy
+msgid ""
+"Please choose the user authentication mode. By default Citadel will use its "
+"own internal user accounts database. If you choose Host, Citadel users will "
+"have accounts on the host system, authenticated via /etc/passwd or a PAM "
+"source. LDAP chooses an RFC 2307 compliant directory server, the last option "
+"chooses the nonstandard MS Active Directory LDAP scheme.\n"
+"Do not change this option unless you are sure it is required, since changing "
+"back requires a full reinstall of Citadel.\n"
+" 0. Self contained authentication\n"
+" 1. Host system integrated authentication\n"
+" 2. External LDAP - RFC 2307 compliant directory\n"
+" 3. External LDAP - nonstandard MS Active Directory\n"
+"\n"
+"For help: http://www.citadel.org/doku.php/faq:installation:authmodes\n"
+"\n"
+"ANSWER \"0\" UNLESS YOU COMPLETELY UNDERSTAND THIS OPTION.\n"
+msgstr ""
+"ユーザ認証モードを選んでください。デフォルトでは、Citadel は自身の内部ユーザ"
+"アカウントデータベースを利用します。「ホスト上」を選んだ場合、Citadel のユー"
+"ザはホストシステム上のアカウントを使い、/etc/passwd か PAM 経由で認証されま"
+"す。「LDAP」の場合は RFC 2307 準拠のディレクトリサーバを、最後の選択肢では非"
+"標準であるマイクロソフトの Active Directory LDAP スキームを使います。"
+
+#: ../utils/setup.c:197
+msgid "LDAP host:"
+msgstr "LDAP ホスト:"
+
+#: ../utils/setup.c:199
+#, fuzzy
+msgid "Please enter the host name or IP address of your LDAP server.\n"
+msgstr "LDAP サーバのホスト名、あるいは IP アドレスを入力してください。"
+
+#: ../utils/setup.c:201
+msgid "LDAP port number:"
+msgstr "LDAP のポート番号:"
+
+#: ../utils/setup.c:203
+#, fuzzy
+msgid "Please enter the port number of the LDAP service (usually 389).\n"
+msgstr "LDAP サービスのポート番号を入力してください (通常は 389 です)。"
+
+#: ../utils/setup.c:205
+msgid "LDAP base DN:"
+msgstr "LDAP ベース DN:"
+
+#: ../utils/setup.c:207
+#, fuzzy
+msgid ""
+"Please enter the Base DN to search for authentication\n"
+"(for example: dc=example,dc=com)\n"
+msgstr ""
+"認証の際、検索に使うベース DN を入力してください (例:dc=example,dc=com)。"
+
+#: ../utils/setup.c:210
+msgid "LDAP bind DN:"
+msgstr "LDAP へのバインドに使う DN:"
+
+#: ../utils/setup.c:212
+#, fuzzy
+msgid ""
+"Please enter the DN of an account to use for binding to the LDAP server for "
+"performing queries. The account does not require any other privileges. If "
+"your LDAP server allows anonymous queries, you can leave this blank.Please "
+"enter the DN of an account to use for binding to the LDAP server\n"
+"for performing queries.  The account does not require any other\n"
+"privileges.  If your LDAP server allows anonymous queries, you can\n"
+"leave this blank.\n"
+msgstr ""
+"クエリの実行の際、LDAP サーバへのバインドに使うアカウントの DN を入力してくだ"
+"さい。アカウントには何も権限を与える必要はありません。LDAP サーバが誰からでも"
+"クエリを許可している場合、この欄は空白のままで構いません。"
+
+#: ../utils/setup.c:220
+msgid "LDAP bind password:"
+msgstr "LDAP へのバインドに使うパスワード:"
+
+#: ../utils/setup.c:222
+#, fuzzy
+msgid ""
+"If you entered a Bind DN in the previous question, you must now enter\n"
+"the password associated with that account.  Otherwise, you can leave this\n"
+"blank.\n"
+msgstr ""
+"前の質問で Bind DN を入力していた場合、このアカウントに対するパスワードをここ"
+"で入力する必要があります。そうでなければ、この欄は空白のままで構いません。"
+
+#: ../utils/setup.c:299
+msgid "Yes/No"
+msgstr ""
+
+#: ../utils/setup.c:300
+msgid "Yes"
+msgstr ""
+
+#: ../utils/setup.c:300
+msgid "No"
+msgstr ""
+
+#: ../utils/setup.c:346
+msgid "Press return to continue..."
+msgstr ""
+
+#: ../utils/setup.c:364
+msgid "Important Message"
+msgstr ""
+
+#: ../utils/setup.c:379
+msgid "Error"
+msgstr ""
+
+#: ../utils/setup.c:459
+msgid "Adding service entry..."
+msgstr ""
+
+#. Other errors might mean something really did go wrong.
+#.
+#: ../utils/setup.c:463 ../utils/setup.c:510 ../utils/setup.c:518
+msgid "Cannot open"
+msgstr ""
+
+#: ../utils/setup.c:569
+msgid ""
+"Citadel already appears to be configured to start at boot.\n"
+"Would you like to keep your boot configuration as is?\n"
+msgstr ""
+
+#: ../utils/setup.c:577
+msgid "Would you like to automatically start Citadel at boot?\n"
+msgstr ""
+
+#: ../utils/setup.c:583
+msgid "Cannot create"
+msgstr ""
+
+#: ../utils/setup.c:682
+#, c-format
+msgid ""
+"Setup can configure the \"xinetd\" service to automatically\n"
+"connect incoming telnet sessions to Citadel, bypassing the\n"
+"host system login: prompt.  Would you like to do this?\n"
+msgstr ""
+
+#: ../utils/setup.c:740
+msgid "You appear to have the "
+msgstr ""
+
+#: ../utils/setup.c:742
+msgid ""
+" email program\n"
+"running on your system.  If you want Citadel mail\n"
+"connected with "
+msgstr ""
+
+#: ../utils/setup.c:746
+msgid ""
+" you will have to manually integrate\n"
+"them.  It is preferable to disable "
+msgstr ""
+
+#: ../utils/setup.c:749
+msgid ""
+", and use Citadel's\n"
+"SMTP, POP3, and IMAP services.\n"
+"\n"
+"May we disable "
+msgstr ""
+
+#: ../utils/setup.c:753
+msgid ""
+"so that Citadel has access to ports\n"
+"25, 110, and 143?\n"
+msgstr ""
+
+#: ../utils/setup.c:863
+msgid "This is currently set to:"
+msgstr ""
+
+#: ../utils/setup.c:864
+msgid "Enter new value or press return to leave unchanged:"
+msgstr ""
+
+#: ../utils/setup.c:1067 ../utils/setup.c:1072 ../utils/setup.c:1384
+msgid "setup: cannot open"
+msgstr ""
+
+#: ../utils/setup.c:1175
+#, c-format
+msgid ""
+"\n"
+"/etc/nsswitch.conf is configured to use the 'db' module for\n"
+"one or more services.  This is not necessary on most systems,\n"
+"and it is known to crash the Citadel server when delivering\n"
+"mail to the Internet.\n"
+"\n"
+"Do you want this module to be automatically disabled?\n"
+"\n"
+msgstr ""
+
+#: ../utils/setup.c:1236 ../utils/setup.c:1252
+msgid "Setup finished"
+msgstr ""
+
+#: ../utils/setup.c:1237
+msgid ""
+"Setup of the Citadel server is complete.\n"
+"If you will be using WebCit, please run its\n"
+"setup program now; otherwise, run './citadel'\n"
+"to log in.\n"
+msgstr ""
+
+#: ../utils/setup.c:1243
+msgid "Setup failed"
+msgstr ""
+
+#: ../utils/setup.c:1244
+msgid ""
+"Setup is finished, but the Citadel server failed to start.\n"
+"Go back and check your configuration.\n"
+msgstr ""
+
+#: ../utils/setup.c:1253
+msgid "Setup is finished.  You may now start the server."
+msgstr ""
+
+#: ../utils/setup.c:1279
+msgid "My System"
+msgstr ""
+
+#: ../utils/setup.c:1282
+msgid "US 800 555 1212"
+msgstr ""
+
+#: ../utils/setup.c:1368 ../utils/setup.c:1373
+msgid "setup: cannot append"
+msgstr ""
+
+#: ../utils/setup.c:1450 ../utils/setup.c:1457 ../utils/setup.c:1472
+#: ../utils/setup.c:1512
+msgid "Citadel Setup"
+msgstr ""
+
+#: ../utils/setup.c:1459
+msgid "The directory you specified does not exist"
+msgstr ""
+
+#: ../utils/setup.c:1473
+msgid ""
+"The Citadel service is still running.\n"
+"Please stop the service manually and run setup again."
+msgstr ""
+
+#: ../utils/setup.c:1485
+#, fuzzy
+msgid "Citadel setup program"
+msgstr "Active Directory"
+
+#: ../utils/setup.c:1513
+msgid "This Citadel installation is too old to be upgraded."
+msgstr ""
+
+#: ../utils/setup.c:1552 ../utils/setup.c:1554 ../utils/setup.c:1556
+msgid "Setting file permissions"
+msgstr ""
+
+#~ 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 を指定した場"
+#~ "合、サーバはすべてのアドレスで待ち受けます。"
+
+#~ msgid ""
+#~ "This can usually be left to the default unless multiple instances of "
+#~ "Citadel are running on the same computer."
+#~ msgstr ""
+#~ "同じコンピュータ上で複数の Citadel インスタンスが動作していなければ、これ"
+#~ "は通常デフォルトのままで構いません。"
+
+#~ msgid "Internal"
+#~ msgstr "内部アカウント"
+
+#~ msgid "Host"
+#~ msgstr "ホスト上"
+
+#~ msgid "LDAP"
+#~ msgstr "LDAP"
+
+#~ msgid ""
+#~ "Do not change this option unless you are sure it is required, since "
+#~ "changing back requires a full reinstall of Citadel."
+#~ msgstr ""
+#~ "何が必要か分かっていない場合は、このオプションを変更しないでください。変更"
+#~ "を元に戻すには Citadel をゼロから再インストールすることが必要です。"
+
+#~ msgid ""
+#~ "While not mandatory, it is highly recommended that you set a password for "
+#~ "the administrator user."
+#~ msgstr ""
+#~ "必須ではないものの、管理者ユーザにパスワードを設定することを強くお勧めしま"
+#~ "す。"
+
+#~ msgid "Internal, Host, LDAP, Active Directory"
+#~ msgstr "内部アカウント, ホスト上, LDAP, Active Directory"
diff --git a/citadel/po/pt.po b/citadel/po/pt.po
new file mode 100644 (file)
index 0000000..848b137
--- /dev/null
@@ -0,0 +1,460 @@
+# 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@gmail.com>, 2008-2010.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: citadel-7.72-1\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2010-09-28 00:22+0200\n"
+"PO-Revision-Date: 2010-03-07 00:30+0100\n"
+"Last-Translator: Pedro Ribeiro <p.m42.ribeiro@gmail.com>\n"
+"Language-Team: Portuguese <traduz@debianpt.org>\n"
+"Language: pt\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=utf-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#: ../utils/setup.c:119
+#, fuzzy
+msgid "Citadel Home Directory"
+msgstr "Active Directory"
+
+#: ../utils/setup.c:122
+msgid ""
+"Enter the full pathname of the directory in which the Citadel\n"
+"installation you are creating or updating resides.  If you\n"
+"specify a directory other than the default, you will need to\n"
+"specify the -h flag to the server when you start it up.\n"
+msgstr ""
+
+#: ../utils/setup.c:128
+msgid ""
+"Enter the subdirectory name for an alternate installation of Citadel. To do "
+"a default installation just leave it blank.If you specify a directory other "
+"than the default, you will need to\n"
+"specify the -h flag to the server when you start it up.\n"
+"note that it may not have a leading /"
+msgstr ""
+
+#: ../utils/setup.c:135
+msgid "Citadel administrator username:"
+msgstr "Nome de utilizador do administrador Citadel:"
+
+#: ../utils/setup.c:137
+msgid ""
+"Please enter the name of the Citadel user account that should be granted "
+"administrative privileges once created. If using internal authentication "
+"this user account will be created if it does not exist. For external "
+"authentication this user account has to exist."
+msgstr ""
+"Indique, por favor, o nome da conta de utilizador do Citadel à qual serão "
+"concedidos privilégios de administração aquando da sua criação. Se usar a "
+"autenticação interna, a conta será criada se não existir. Se usar "
+"autenticação externa, a conta tem que existir."
+
+#: ../utils/setup.c:143
+msgid "Administrator password:"
+msgstr "Palavra-passe de administrador:"
+
+#: ../utils/setup.c:145
+msgid ""
+"Enter a password for the system administrator. When setup\n"
+"completes it will attempt to create the administrator user\n"
+"and set the password specified here.\n"
+msgstr ""
+
+#: ../utils/setup.c:149
+#, fuzzy
+msgid "Citadel User ID:"
+msgstr "Citadel/UX"
+
+#: ../utils/setup.c:151
+msgid ""
+"Citadel needs to run under its own user ID.  This would\n"
+"typically be called \"citadel\", but if you are running Citadel\n"
+"as a public BBS, you might also call it \"bbs\" or \"guest\".\n"
+"The server will run under this user ID.  Please specify that\n"
+"user ID here.  You may specify either a user name or a numeric\n"
+"UID.\n"
+msgstr ""
+
+#: ../utils/setup.c:158
+msgid "Listening address for the Citadel server:"
+msgstr "Endereço de escuta para o Citadel:"
+
+#: ../utils/setup.c:160
+msgid ""
+"Please specify the IP address which the server should be listening to. You "
+"can name a specific IPv4 or IPv6 address, or you can specify\n"
+"'*' for 'any address', '::' for 'any IPv6 address', or '0.0.0.0'\n"
+"for 'any IPv4 address'. If you leave this blank, Citadel will\n"
+"listen on all addresses. This can usually be left to the default unless "
+"multiple instances of Citadel are running on the same computer."
+msgstr ""
+
+#: ../utils/setup.c:168
+#, fuzzy
+msgid "Server port number:"
+msgstr "Número de porto LDAP:"
+
+#: ../utils/setup.c:170
+msgid ""
+"Specify the TCP port number on which your server will run.\n"
+"Normally, this will be port 504, which is the official port\n"
+"assigned by the IANA for Citadel servers.  You will only need\n"
+"to specify a different port number if you run multiple instances\n"
+"of Citadel on the same computer and there is something else\n"
+"already using port 504.\n"
+msgstr ""
+
+#: ../utils/setup.c:177
+msgid "Authentication method to use:"
+msgstr "Método de autenticação a usar:"
+
+#: ../utils/setup.c:179
+#, fuzzy
+msgid ""
+"Please choose the user authentication mode. By default Citadel will use its "
+"own internal user accounts database. If you choose Host, Citadel users will "
+"have accounts on the host system, authenticated via /etc/passwd or a PAM "
+"source. LDAP chooses an RFC 2307 compliant directory server, the last option "
+"chooses the nonstandard MS Active Directory LDAP scheme.\n"
+"Do not change this option unless you are sure it is required, since changing "
+"back requires a full reinstall of Citadel.\n"
+" 0. Self contained authentication\n"
+" 1. Host system integrated authentication\n"
+" 2. External LDAP - RFC 2307 compliant directory\n"
+" 3. External LDAP - nonstandard MS Active Directory\n"
+"\n"
+"For help: http://www.citadel.org/doku.php/faq:installation:authmodes\n"
+"\n"
+"ANSWER \"0\" UNLESS YOU COMPLETELY UNDERSTAND THIS OPTION.\n"
+msgstr ""
+"Por favor, escolha o método de autenticação de utilizadores. Por pré-"
+"definição, o Citadel irá usar a base de dados interna de contas de "
+"utilizador. Se escolher Host, os utilizadores do Citadel irão ter contas no "
+"sistema, autenticados via /etc/passwd ou módulo PAM. LDAP implica usar um "
+"servidor de directório compatível com o RFC 2307, a última opção usa o "
+"esquema LDAP não standard do MS Active Directory."
+
+#: ../utils/setup.c:197
+msgid "LDAP host:"
+msgstr "Servidor LDAP:"
+
+#: ../utils/setup.c:199
+#, fuzzy
+msgid "Please enter the host name or IP address of your LDAP server.\n"
+msgstr "Indique por favor o nome ou endereço IP do servidor LDAP."
+
+#: ../utils/setup.c:201
+msgid "LDAP port number:"
+msgstr "Número de porto LDAP:"
+
+#: ../utils/setup.c:203
+#, fuzzy
+msgid "Please enter the port number of the LDAP service (usually 389).\n"
+msgstr "Indique por favor o número de porto do serviço LDAP (normalmente 389)."
+
+#: ../utils/setup.c:205
+msgid "LDAP base DN:"
+msgstr "DN de base LDAP:"
+
+#: ../utils/setup.c:207
+#, fuzzy
+msgid ""
+"Please enter the Base DN to search for authentication\n"
+"(for example: dc=example,dc=com)\n"
+msgstr ""
+"Indique por favor o DN de Base para procurar por autenticação (por exemplo: "
+"dc=exemplo,dc=com)."
+
+#: ../utils/setup.c:210
+msgid "LDAP bind DN:"
+msgstr "DN ligação LDAP:"
+
+#: ../utils/setup.c:212
+#, fuzzy
+msgid ""
+"Please enter the DN of an account to use for binding to the LDAP server for "
+"performing queries. The account does not require any other privileges. If "
+"your LDAP server allows anonymous queries, you can leave this blank.Please "
+"enter the DN of an account to use for binding to the LDAP server\n"
+"for performing queries.  The account does not require any other\n"
+"privileges.  If your LDAP server allows anonymous queries, you can\n"
+"leave this blank.\n"
+msgstr ""
+"Indique por favor o DN de uma conta de ligação ao servidor LDAP para "
+"executar pesquisas. A conta não necessita de outros privilégios. Se o seu "
+"servidor LDAP permitir consultas anónimas, pode deixar esta opção em branco."
+
+#: ../utils/setup.c:220
+msgid "LDAP bind password:"
+msgstr "Palavra-passe de ligação:"
+
+#: ../utils/setup.c:222
+#, fuzzy
+msgid ""
+"If you entered a Bind DN in the previous question, you must now enter\n"
+"the password associated with that account.  Otherwise, you can leave this\n"
+"blank.\n"
+msgstr ""
+"Se indicou um DN de ligação na questão anterior, deve indicar agora a "
+"palavra-passe associada com essa conta. Caso contrário, pode deixar esta "
+"opção em branco."
+
+#: ../utils/setup.c:299
+msgid "Yes/No"
+msgstr ""
+
+#: ../utils/setup.c:300
+msgid "Yes"
+msgstr ""
+
+#: ../utils/setup.c:300
+msgid "No"
+msgstr ""
+
+#: ../utils/setup.c:346
+msgid "Press return to continue..."
+msgstr ""
+
+#: ../utils/setup.c:364
+msgid "Important Message"
+msgstr ""
+
+#: ../utils/setup.c:379
+msgid "Error"
+msgstr ""
+
+#: ../utils/setup.c:459
+msgid "Adding service entry..."
+msgstr ""
+
+#. Other errors might mean something really did go wrong.
+#.
+#: ../utils/setup.c:463 ../utils/setup.c:510 ../utils/setup.c:518
+msgid "Cannot open"
+msgstr ""
+
+#: ../utils/setup.c:569
+msgid ""
+"Citadel already appears to be configured to start at boot.\n"
+"Would you like to keep your boot configuration as is?\n"
+msgstr ""
+
+#: ../utils/setup.c:577
+msgid "Would you like to automatically start Citadel at boot?\n"
+msgstr ""
+
+#: ../utils/setup.c:583
+msgid "Cannot create"
+msgstr ""
+
+#: ../utils/setup.c:682
+#, c-format
+msgid ""
+"Setup can configure the \"xinetd\" service to automatically\n"
+"connect incoming telnet sessions to Citadel, bypassing the\n"
+"host system login: prompt.  Would you like to do this?\n"
+msgstr ""
+
+#: ../utils/setup.c:740
+msgid "You appear to have the "
+msgstr ""
+
+#: ../utils/setup.c:742
+msgid ""
+" email program\n"
+"running on your system.  If you want Citadel mail\n"
+"connected with "
+msgstr ""
+
+#: ../utils/setup.c:746
+msgid ""
+" you will have to manually integrate\n"
+"them.  It is preferable to disable "
+msgstr ""
+
+#: ../utils/setup.c:749
+msgid ""
+", and use Citadel's\n"
+"SMTP, POP3, and IMAP services.\n"
+"\n"
+"May we disable "
+msgstr ""
+
+#: ../utils/setup.c:753
+msgid ""
+"so that Citadel has access to ports\n"
+"25, 110, and 143?\n"
+msgstr ""
+
+#: ../utils/setup.c:863
+msgid "This is currently set to:"
+msgstr ""
+
+#: ../utils/setup.c:864
+msgid "Enter new value or press return to leave unchanged:"
+msgstr ""
+
+#: ../utils/setup.c:1067 ../utils/setup.c:1072 ../utils/setup.c:1384
+msgid "setup: cannot open"
+msgstr ""
+
+#: ../utils/setup.c:1175
+#, c-format
+msgid ""
+"\n"
+"/etc/nsswitch.conf is configured to use the 'db' module for\n"
+"one or more services.  This is not necessary on most systems,\n"
+"and it is known to crash the Citadel server when delivering\n"
+"mail to the Internet.\n"
+"\n"
+"Do you want this module to be automatically disabled?\n"
+"\n"
+msgstr ""
+
+#: ../utils/setup.c:1236 ../utils/setup.c:1252
+msgid "Setup finished"
+msgstr ""
+
+#: ../utils/setup.c:1237
+msgid ""
+"Setup of the Citadel server is complete.\n"
+"If you will be using WebCit, please run its\n"
+"setup program now; otherwise, run './citadel'\n"
+"to log in.\n"
+msgstr ""
+
+#: ../utils/setup.c:1243
+msgid "Setup failed"
+msgstr ""
+
+#: ../utils/setup.c:1244
+msgid ""
+"Setup is finished, but the Citadel server failed to start.\n"
+"Go back and check your configuration.\n"
+msgstr ""
+
+#: ../utils/setup.c:1253
+msgid "Setup is finished.  You may now start the server."
+msgstr ""
+
+#: ../utils/setup.c:1279
+msgid "My System"
+msgstr ""
+
+#: ../utils/setup.c:1282
+msgid "US 800 555 1212"
+msgstr ""
+
+#: ../utils/setup.c:1368 ../utils/setup.c:1373
+msgid "setup: cannot append"
+msgstr ""
+
+#: ../utils/setup.c:1450 ../utils/setup.c:1457 ../utils/setup.c:1472
+#: ../utils/setup.c:1512
+#, fuzzy
+msgid "Citadel Setup"
+msgstr "Citadel/UX"
+
+#: ../utils/setup.c:1459
+msgid "The directory you specified does not exist"
+msgstr ""
+
+#: ../utils/setup.c:1473
+msgid ""
+"The Citadel service is still running.\n"
+"Please stop the service manually and run setup again."
+msgstr ""
+
+#: ../utils/setup.c:1485
+#, fuzzy
+msgid "Citadel setup program"
+msgstr "Active Directory"
+
+#: ../utils/setup.c:1513
+msgid "This Citadel installation is too old to be upgraded."
+msgstr ""
+
+#: ../utils/setup.c:1552 ../utils/setup.c:1554 ../utils/setup.c:1556
+msgid "Setting file permissions"
+msgstr ""
+
+#~ 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 servidor irá estar à escuta. "
+#~ "Se indicar 0.0.0.0 o servidor irá escutar em todos os endereços."
+
+#~ 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 várias "
+#~ "instâncias do Citadel no mesmo computador."
+
+#~ msgid "Internal"
+#~ msgstr "Interna"
+
+#~ msgid "Host"
+#~ msgstr "Host"
+
+#~ msgid "LDAP"
+#~ msgstr "LDAP"
+
+#~ msgid ""
+#~ "Do not change this option unless you are sure it is required, since "
+#~ "changing back requires a full reinstall of Citadel."
+#~ msgstr ""
+#~ "Não altere esta opção a não ser que esteja seguro da sua necessidade, uma "
+#~ "vez que mudá-la posteriormente necessita de uma reinstalação do Citadel."
+
+#~ msgid ""
+#~ "While not mandatory, it is highly recommended that you set a password for "
+#~ "the administrator user."
+#~ msgstr ""
+#~ "Embora não sendo obrigatória, é altamente recomendado que defina uma "
+#~ "palavra-passe para o administrador."
+
+#~ msgid "Internal, Host, LDAP, Active Directory"
+#~ msgstr "Interna, Host, LDAP, Active Directory"
+
+#~ msgid "Enable external authentication mode?"
+#~ msgstr "Habilitar modo de autenticação externa?"
+
+#~ 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 ""
+#~ "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."
diff --git a/citadel/po/ru.po b/citadel/po/ru.po
new file mode 100644 (file)
index 0000000..9c305d5
--- /dev/null
@@ -0,0 +1,431 @@
+# translation of citadel_7.63-1_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@gmail.com>, 2008.
+# Max Kosmach <max@tcen.ru>, 2009.
+# Yuri Kozlov <yuray@komyakino.ru>, 2009.
+msgid ""
+msgstr ""
+"Project-Id-Version: citadel 7.63-1\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2010-09-28 00:22+0200\n"
+"PO-Revision-Date: 2009-09-10 20:26+0400\n"
+"Last-Translator: Yuri Kozlov <yuray@komyakino.ru>\n"
+"Language-Team: Russian <debian-l10n-russian@lists.debian.org>\n"
+"Language: ru\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"
+
+#: ../utils/setup.c:119
+#, fuzzy
+msgid "Citadel Home Directory"
+msgstr "Active Directory"
+
+#: ../utils/setup.c:122
+msgid ""
+"Enter the full pathname of the directory in which the Citadel\n"
+"installation you are creating or updating resides.  If you\n"
+"specify a directory other than the default, you will need to\n"
+"specify the -h flag to the server when you start it up.\n"
+msgstr ""
+
+#: ../utils/setup.c:128
+msgid ""
+"Enter the subdirectory name for an alternate installation of Citadel. To do "
+"a default installation just leave it blank.If you specify a directory other "
+"than the default, you will need to\n"
+"specify the -h flag to the server when you start it up.\n"
+"note that it may not have a leading /"
+msgstr ""
+
+#: ../utils/setup.c:135
+msgid "Citadel administrator username:"
+msgstr "Имя учётной записи администратора Citadel:"
+
+#: ../utils/setup.c:137
+msgid ""
+"Please enter the name of the Citadel user account that should be granted "
+"administrative privileges once created. If using internal authentication "
+"this user account will be created if it does not exist. For external "
+"authentication this user account has to exist."
+msgstr ""
+"Введите название учётной записи пользователя Citadel, которой будут даны "
+"административные права после создания. Если используется внутренняя "
+"аутентификация, то данная учётная запись будет создана в случае её "
+"отсутствия. При внешней аутентификации пользователь должен существовать."
+
+#: ../utils/setup.c:143
+msgid "Administrator password:"
+msgstr "Пароль к учётной записи администратора:"
+
+#: ../utils/setup.c:145
+msgid ""
+"Enter a password for the system administrator. When setup\n"
+"completes it will attempt to create the administrator user\n"
+"and set the password specified here.\n"
+msgstr ""
+
+#: ../utils/setup.c:149
+msgid "Citadel User ID:"
+msgstr ""
+
+#: ../utils/setup.c:151
+msgid ""
+"Citadel needs to run under its own user ID.  This would\n"
+"typically be called \"citadel\", but if you are running Citadel\n"
+"as a public BBS, you might also call it \"bbs\" or \"guest\".\n"
+"The server will run under this user ID.  Please specify that\n"
+"user ID here.  You may specify either a user name or a numeric\n"
+"UID.\n"
+msgstr ""
+
+#: ../utils/setup.c:158
+msgid "Listening address for the Citadel server:"
+msgstr "Прослушиваемый адрес для сервера Citadel:"
+
+#: ../utils/setup.c:160
+msgid ""
+"Please specify the IP address which the server should be listening to. You "
+"can name a specific IPv4 or IPv6 address, or you can specify\n"
+"'*' for 'any address', '::' for 'any IPv6 address', or '0.0.0.0'\n"
+"for 'any IPv4 address'. If you leave this blank, Citadel will\n"
+"listen on all addresses. This can usually be left to the default unless "
+"multiple instances of Citadel are running on the same computer."
+msgstr ""
+
+#: ../utils/setup.c:168
+#, fuzzy
+msgid "Server port number:"
+msgstr "Номер порта LDAP:"
+
+#: ../utils/setup.c:170
+msgid ""
+"Specify the TCP port number on which your server will run.\n"
+"Normally, this will be port 504, which is the official port\n"
+"assigned by the IANA for Citadel servers.  You will only need\n"
+"to specify a different port number if you run multiple instances\n"
+"of Citadel on the same computer and there is something else\n"
+"already using port 504.\n"
+msgstr ""
+
+#: ../utils/setup.c:177
+msgid "Authentication method to use:"
+msgstr "Используемый метод аутентификации:"
+
+#: ../utils/setup.c:179
+#, fuzzy
+msgid ""
+"Please choose the user authentication mode. By default Citadel will use its "
+"own internal user accounts database. If you choose Host, Citadel users will "
+"have accounts on the host system, authenticated via /etc/passwd or a PAM "
+"source. LDAP chooses an RFC 2307 compliant directory server, the last option "
+"chooses the nonstandard MS Active Directory LDAP scheme.\n"
+"Do not change this option unless you are sure it is required, since changing "
+"back requires a full reinstall of Citadel.\n"
+" 0. Self contained authentication\n"
+" 1. Host system integrated authentication\n"
+" 2. External LDAP - RFC 2307 compliant directory\n"
+" 3. External LDAP - nonstandard MS Active Directory\n"
+"\n"
+"For help: http://www.citadel.org/doku.php/faq:installation:authmodes\n"
+"\n"
+"ANSWER \"0\" UNLESS YOU COMPLETELY UNDERSTAND THIS OPTION.\n"
+msgstr ""
+"Выберите режим аутентификации пользователей. По умолчанию Citadel использует "
+"свою собственную внутреннюю базу данных учётных записей. Если выбрать "
+"\"Машинная\", то пользовательскими учётными записями Citadel будут считаться "
+"учётные записи машины, на которой он установлен, а для аутентификации будет "
+"использоваться файл /etc/passwd или источник PAM. При выборе LDAP "
+"задействуется соответствующий RFC 2307 сервер каталогов, а при выборе "
+"последнего пункта для аутентификации используется нестандартная LDAP-схема "
+"MS Active Directory."
+
+#: ../utils/setup.c:197
+msgid "LDAP host:"
+msgstr "Сервер LDAP:"
+
+#: ../utils/setup.c:199
+#, fuzzy
+msgid "Please enter the host name or IP address of your LDAP server.\n"
+msgstr "Введите имя или IP-адрес сервера LDAP."
+
+#: ../utils/setup.c:201
+msgid "LDAP port number:"
+msgstr "Номер порта LDAP:"
+
+#: ../utils/setup.c:203
+#, fuzzy
+msgid "Please enter the port number of the LDAP service (usually 389).\n"
+msgstr "Введите номер порта службы LDAP (обычно 389)."
+
+#: ../utils/setup.c:205
+msgid "LDAP base DN:"
+msgstr "Базовое DN LDAP:"
+
+#: ../utils/setup.c:207
+#, fuzzy
+msgid ""
+"Please enter the Base DN to search for authentication\n"
+"(for example: dc=example,dc=com)\n"
+msgstr ""
+"Введите базовое DN для поиска, используемое при аутентификации (например: "
+"dc=example,dc=com)."
+
+#: ../utils/setup.c:210
+msgid "LDAP bind DN:"
+msgstr "DN для подключения к серверу LDAP:"
+
+#: ../utils/setup.c:212
+#, fuzzy
+msgid ""
+"Please enter the DN of an account to use for binding to the LDAP server for "
+"performing queries. The account does not require any other privileges. If "
+"your LDAP server allows anonymous queries, you can leave this blank.Please "
+"enter the DN of an account to use for binding to the LDAP server\n"
+"for performing queries.  The account does not require any other\n"
+"privileges.  If your LDAP server allows anonymous queries, you can\n"
+"leave this blank.\n"
+msgstr ""
+"Введите DN учётной записи, которое должно использоваться при подключении к "
+"серверу LDAP для выполнения запросов. От учётной записи не требуется других "
+"привилегий. Если сервер LDAP позволяет выполнять запросы анонимно, то вы "
+"можете оставить поле пустым."
+
+#: ../utils/setup.c:220
+msgid "LDAP bind password:"
+msgstr "Пароль для подключения к LDAP:"
+
+#: ../utils/setup.c:222
+#, fuzzy
+msgid ""
+"If you entered a Bind DN in the previous question, you must now enter\n"
+"the password associated with that account.  Otherwise, you can leave this\n"
+"blank.\n"
+msgstr ""
+"Если вы ввели DN учётной записи в предыдущем вопросе, то теперь вам нужно "
+"указать пароль для этой учётной записи. Иначе можете оставить поле пустым."
+
+#: ../utils/setup.c:299
+msgid "Yes/No"
+msgstr ""
+
+#: ../utils/setup.c:300
+msgid "Yes"
+msgstr ""
+
+#: ../utils/setup.c:300
+msgid "No"
+msgstr ""
+
+#: ../utils/setup.c:346
+msgid "Press return to continue..."
+msgstr ""
+
+#: ../utils/setup.c:364
+msgid "Important Message"
+msgstr ""
+
+#: ../utils/setup.c:379
+msgid "Error"
+msgstr ""
+
+#: ../utils/setup.c:459
+msgid "Adding service entry..."
+msgstr ""
+
+#. Other errors might mean something really did go wrong.
+#.
+#: ../utils/setup.c:463 ../utils/setup.c:510 ../utils/setup.c:518
+msgid "Cannot open"
+msgstr ""
+
+#: ../utils/setup.c:569
+msgid ""
+"Citadel already appears to be configured to start at boot.\n"
+"Would you like to keep your boot configuration as is?\n"
+msgstr ""
+
+#: ../utils/setup.c:577
+msgid "Would you like to automatically start Citadel at boot?\n"
+msgstr ""
+
+#: ../utils/setup.c:583
+msgid "Cannot create"
+msgstr ""
+
+#: ../utils/setup.c:682
+#, c-format
+msgid ""
+"Setup can configure the \"xinetd\" service to automatically\n"
+"connect incoming telnet sessions to Citadel, bypassing the\n"
+"host system login: prompt.  Would you like to do this?\n"
+msgstr ""
+
+#: ../utils/setup.c:740
+msgid "You appear to have the "
+msgstr ""
+
+#: ../utils/setup.c:742
+msgid ""
+" email program\n"
+"running on your system.  If you want Citadel mail\n"
+"connected with "
+msgstr ""
+
+#: ../utils/setup.c:746
+msgid ""
+" you will have to manually integrate\n"
+"them.  It is preferable to disable "
+msgstr ""
+
+#: ../utils/setup.c:749
+msgid ""
+", and use Citadel's\n"
+"SMTP, POP3, and IMAP services.\n"
+"\n"
+"May we disable "
+msgstr ""
+
+#: ../utils/setup.c:753
+msgid ""
+"so that Citadel has access to ports\n"
+"25, 110, and 143?\n"
+msgstr ""
+
+#: ../utils/setup.c:863
+msgid "This is currently set to:"
+msgstr ""
+
+#: ../utils/setup.c:864
+msgid "Enter new value or press return to leave unchanged:"
+msgstr ""
+
+#: ../utils/setup.c:1067 ../utils/setup.c:1072 ../utils/setup.c:1384
+msgid "setup: cannot open"
+msgstr ""
+
+#: ../utils/setup.c:1175
+#, c-format
+msgid ""
+"\n"
+"/etc/nsswitch.conf is configured to use the 'db' module for\n"
+"one or more services.  This is not necessary on most systems,\n"
+"and it is known to crash the Citadel server when delivering\n"
+"mail to the Internet.\n"
+"\n"
+"Do you want this module to be automatically disabled?\n"
+"\n"
+msgstr ""
+
+#: ../utils/setup.c:1236 ../utils/setup.c:1252
+msgid "Setup finished"
+msgstr ""
+
+#: ../utils/setup.c:1237
+msgid ""
+"Setup of the Citadel server is complete.\n"
+"If you will be using WebCit, please run its\n"
+"setup program now; otherwise, run './citadel'\n"
+"to log in.\n"
+msgstr ""
+
+#: ../utils/setup.c:1243
+msgid "Setup failed"
+msgstr ""
+
+#: ../utils/setup.c:1244
+msgid ""
+"Setup is finished, but the Citadel server failed to start.\n"
+"Go back and check your configuration.\n"
+msgstr ""
+
+#: ../utils/setup.c:1253
+msgid "Setup is finished.  You may now start the server."
+msgstr ""
+
+#: ../utils/setup.c:1279
+msgid "My System"
+msgstr ""
+
+#: ../utils/setup.c:1282
+msgid "US 800 555 1212"
+msgstr ""
+
+#: ../utils/setup.c:1368 ../utils/setup.c:1373
+msgid "setup: cannot append"
+msgstr ""
+
+#: ../utils/setup.c:1450 ../utils/setup.c:1457 ../utils/setup.c:1472
+#: ../utils/setup.c:1512
+msgid "Citadel Setup"
+msgstr ""
+
+#: ../utils/setup.c:1459
+msgid "The directory you specified does not exist"
+msgstr ""
+
+#: ../utils/setup.c:1473
+msgid ""
+"The Citadel service is still running.\n"
+"Please stop the service manually and run setup again."
+msgstr ""
+
+#: ../utils/setup.c:1485
+#, fuzzy
+msgid "Citadel setup program"
+msgstr "Active Directory"
+
+#: ../utils/setup.c:1513
+msgid "This Citadel installation is too old to be upgraded."
+msgstr ""
+
+#: ../utils/setup.c:1552 ../utils/setup.c:1554 ../utils/setup.c:1556
+msgid "Setting file permissions"
+msgstr ""
+
+#~ 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 будет ожидать подключения "
+#~ "на адресах всех интерфейсов."
+
+#~ msgid ""
+#~ "This can usually be left to the default unless multiple instances of "
+#~ "Citadel are running on the same computer."
+#~ msgstr ""
+#~ "Если вы не запускаете несколько экземпляров Citadel на одном компьютере, "
+#~ "то можно оставить значение по умолчанию."
+
+#~ msgid "Internal"
+#~ msgstr "Внутренняя"
+
+#~ msgid "Host"
+#~ msgstr "Машинная"
+
+#~ msgid "LDAP"
+#~ msgstr "LDAP"
+
+#~ msgid ""
+#~ "Do not change this option unless you are sure it is required, since "
+#~ "changing back requires a full reinstall of Citadel."
+#~ msgstr ""
+#~ "Не выбирайте других пунктов кроме первого, если не уверены, что это "
+#~ "действительно нужно, так как для изменения потребуется полностью "
+#~ "переустановить Citadel."
+
+#~ msgid ""
+#~ "While not mandatory, it is highly recommended that you set a password for "
+#~ "the administrator user."
+#~ msgstr ""
+#~ "Хотя это необязательно, настоятельно рекомендуется задать пароль для "
+#~ "административного пользователя."
+
+#~ msgid "Internal, Host, LDAP, Active Directory"
+#~ msgstr "Внутренняя, Машинная, LDAP, Active Directory"
diff --git a/citadel/po/sv.po b/citadel/po/sv.po
new file mode 100644 (file)
index 0000000..7fc4912
--- /dev/null
@@ -0,0 +1,435 @@
+# translation of citadel.po to Swedish
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the Citadel package.
+#
+# Martin Bagge <brother@bsnet.se>, 2008.
+msgid ""
+msgstr ""
+"Project-Id-Version: citadel\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2010-09-28 00:22+0200\n"
+"PO-Revision-Date: 2009-10-22 01:30+0100\n"
+"Last-Translator: Martin Bagge <brother@bsnet.se>\n"
+"Language-Team: swedish <debian-l10n-swedish@lists.debian.org>\n"
+"Language: \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"
+"X-Poedit-Language: Swedish\n"
+"X-Poedit-Country: Sweden\n"
+
+#: ../utils/setup.c:119
+#, fuzzy
+msgid "Citadel Home Directory"
+msgstr "Active Directory"
+
+#: ../utils/setup.c:122
+msgid ""
+"Enter the full pathname of the directory in which the Citadel\n"
+"installation you are creating or updating resides.  If you\n"
+"specify a directory other than the default, you will need to\n"
+"specify the -h flag to the server when you start it up.\n"
+msgstr ""
+
+#: ../utils/setup.c:128
+msgid ""
+"Enter the subdirectory name for an alternate installation of Citadel. To do "
+"a default installation just leave it blank.If you specify a directory other "
+"than the default, you will need to\n"
+"specify the -h flag to the server when you start it up.\n"
+"note that it may not have a leading /"
+msgstr ""
+
+#: ../utils/setup.c:135
+msgid "Citadel administrator username:"
+msgstr "Användarnamn för Citadel-administratören:"
+
+#: ../utils/setup.c:137
+msgid ""
+"Please enter the name of the Citadel user account that should be granted "
+"administrative privileges once created. If using internal authentication "
+"this user account will be created if it does not exist. For external "
+"authentication this user account has to exist."
+msgstr ""
+"Ange namnet på det användarkonto i Citadel som ska ha administrativa "
+"rättigheter när det skapas. Om intern autentisering används kommer detta "
+"användarkonto att skapas om det inte existerar. För extern autentisering "
+"måste detta användarkonto existera från början."
+
+#: ../utils/setup.c:143
+msgid "Administrator password:"
+msgstr "Administratörens lösenord:"
+
+#: ../utils/setup.c:145
+msgid ""
+"Enter a password for the system administrator. When setup\n"
+"completes it will attempt to create the administrator user\n"
+"and set the password specified here.\n"
+msgstr ""
+
+#: ../utils/setup.c:149
+msgid "Citadel User ID:"
+msgstr ""
+
+#: ../utils/setup.c:151
+msgid ""
+"Citadel needs to run under its own user ID.  This would\n"
+"typically be called \"citadel\", but if you are running Citadel\n"
+"as a public BBS, you might also call it \"bbs\" or \"guest\".\n"
+"The server will run under this user ID.  Please specify that\n"
+"user ID here.  You may specify either a user name or a numeric\n"
+"UID.\n"
+msgstr ""
+
+#: ../utils/setup.c:158
+msgid "Listening address for the Citadel server:"
+msgstr "Adress som Citadel-servern ska lyssna på:"
+
+#: ../utils/setup.c:160
+msgid ""
+"Please specify the IP address which the server should be listening to. You "
+"can name a specific IPv4 or IPv6 address, or you can specify\n"
+"'*' for 'any address', '::' for 'any IPv6 address', or '0.0.0.0'\n"
+"for 'any IPv4 address'. If you leave this blank, Citadel will\n"
+"listen on all addresses. This can usually be left to the default unless "
+"multiple instances of Citadel are running on the same computer."
+msgstr ""
+
+#: ../utils/setup.c:168
+#, fuzzy
+msgid "Server port number:"
+msgstr "Portnummer för LDAP:"
+
+#: ../utils/setup.c:170
+msgid ""
+"Specify the TCP port number on which your server will run.\n"
+"Normally, this will be port 504, which is the official port\n"
+"assigned by the IANA for Citadel servers.  You will only need\n"
+"to specify a different port number if you run multiple instances\n"
+"of Citadel on the same computer and there is something else\n"
+"already using port 504.\n"
+msgstr ""
+
+#: ../utils/setup.c:177
+msgid "Authentication method to use:"
+msgstr "Identifieringsmetod som ska användas:"
+
+#: ../utils/setup.c:179
+#, fuzzy
+msgid ""
+"Please choose the user authentication mode. By default Citadel will use its "
+"own internal user accounts database. If you choose Host, Citadel users will "
+"have accounts on the host system, authenticated via /etc/passwd or a PAM "
+"source. LDAP chooses an RFC 2307 compliant directory server, the last option "
+"chooses the nonstandard MS Active Directory LDAP scheme.\n"
+"Do not change this option unless you are sure it is required, since changing "
+"back requires a full reinstall of Citadel.\n"
+" 0. Self contained authentication\n"
+" 1. Host system integrated authentication\n"
+" 2. External LDAP - RFC 2307 compliant directory\n"
+" 3. External LDAP - nonstandard MS Active Directory\n"
+"\n"
+"For help: http://www.citadel.org/doku.php/faq:installation:authmodes\n"
+"\n"
+"ANSWER \"0\" UNLESS YOU COMPLETELY UNDERSTAND THIS OPTION.\n"
+msgstr ""
+"Ange vilken identifieringsmetod som ska användas. Standardvalet är att "
+"Citadel använder sin interna kontodatabas. Genom att välja alternativet värd "
+"kommer Citadelanvändarna ha konton på värdsystemet och identifieras via /etc/"
+"passwd eller en PAM-källa. LDAP väljer en katalogserver som följer RFC 2307. "
+"Sista alternativet är den ickestandardiserade lösningen MS Active Directory "
+"LDAP."
+
+#: ../utils/setup.c:197
+msgid "LDAP host:"
+msgstr "LDAP-värd:"
+
+#: ../utils/setup.c:199
+#, fuzzy
+msgid "Please enter the host name or IP address of your LDAP server.\n"
+msgstr "Ange värdnamnet eller IP-adressen för din LDAP-server."
+
+#: ../utils/setup.c:201
+msgid "LDAP port number:"
+msgstr "Portnummer för LDAP:"
+
+#: ../utils/setup.c:203
+#, fuzzy
+msgid "Please enter the port number of the LDAP service (usually 389).\n"
+msgstr "Ange portnummer för din LDAP-server (vanligen 389)."
+
+#: ../utils/setup.c:205
+msgid "LDAP base DN:"
+msgstr "Bas-DN för LDAP:"
+
+#: ../utils/setup.c:207
+#, fuzzy
+msgid ""
+"Please enter the Base DN to search for authentication\n"
+"(for example: dc=example,dc=com)\n"
+msgstr ""
+"Ange det Bas-DN som ska användas vid sökning för identifiering av användare "
+"(ex. dc=example,dc=com)."
+
+#: ../utils/setup.c:210
+msgid "LDAP bind DN:"
+msgstr "DN för förfrågningar till LDAP:"
+
+#: ../utils/setup.c:212
+#, fuzzy
+msgid ""
+"Please enter the DN of an account to use for binding to the LDAP server for "
+"performing queries. The account does not require any other privileges. If "
+"your LDAP server allows anonymous queries, you can leave this blank.Please "
+"enter the DN of an account to use for binding to the LDAP server\n"
+"for performing queries.  The account does not require any other\n"
+"privileges.  If your LDAP server allows anonymous queries, you can\n"
+"leave this blank.\n"
+msgstr ""
+"Ange DN för ett konto som ska användas för att upprätta anslutningen till "
+"LDAP-servern för att genomföra förfrågningar. Kontot behöver inga andra "
+"rättigheter. Om din LDAP-server tillåter anonyma förfrågningar kan du lämna "
+"fältet tomt."
+
+#: ../utils/setup.c:220
+msgid "LDAP bind password:"
+msgstr "Lösenord för förfrågnings-DN:"
+
+#: ../utils/setup.c:222
+#, fuzzy
+msgid ""
+"If you entered a Bind DN in the previous question, you must now enter\n"
+"the password associated with that account.  Otherwise, you can leave this\n"
+"blank.\n"
+msgstr ""
+"Om du angav ett DN för förfrågningar i förra frågan måste du nu ange "
+"lösenordet för kontot. Lämna fältet blankt om du inte angav något DN."
+
+#: ../utils/setup.c:299
+msgid "Yes/No"
+msgstr ""
+
+#: ../utils/setup.c:300
+msgid "Yes"
+msgstr ""
+
+#: ../utils/setup.c:300
+msgid "No"
+msgstr ""
+
+#: ../utils/setup.c:346
+msgid "Press return to continue..."
+msgstr ""
+
+#: ../utils/setup.c:364
+msgid "Important Message"
+msgstr ""
+
+#: ../utils/setup.c:379
+msgid "Error"
+msgstr ""
+
+#: ../utils/setup.c:459
+msgid "Adding service entry..."
+msgstr ""
+
+#. Other errors might mean something really did go wrong.
+#.
+#: ../utils/setup.c:463 ../utils/setup.c:510 ../utils/setup.c:518
+msgid "Cannot open"
+msgstr ""
+
+#: ../utils/setup.c:569
+msgid ""
+"Citadel already appears to be configured to start at boot.\n"
+"Would you like to keep your boot configuration as is?\n"
+msgstr ""
+
+#: ../utils/setup.c:577
+msgid "Would you like to automatically start Citadel at boot?\n"
+msgstr ""
+
+#: ../utils/setup.c:583
+msgid "Cannot create"
+msgstr ""
+
+#: ../utils/setup.c:682
+#, c-format
+msgid ""
+"Setup can configure the \"xinetd\" service to automatically\n"
+"connect incoming telnet sessions to Citadel, bypassing the\n"
+"host system login: prompt.  Would you like to do this?\n"
+msgstr ""
+
+#: ../utils/setup.c:740
+msgid "You appear to have the "
+msgstr ""
+
+#: ../utils/setup.c:742
+msgid ""
+" email program\n"
+"running on your system.  If you want Citadel mail\n"
+"connected with "
+msgstr ""
+
+#: ../utils/setup.c:746
+msgid ""
+" you will have to manually integrate\n"
+"them.  It is preferable to disable "
+msgstr ""
+
+#: ../utils/setup.c:749
+msgid ""
+", and use Citadel's\n"
+"SMTP, POP3, and IMAP services.\n"
+"\n"
+"May we disable "
+msgstr ""
+
+#: ../utils/setup.c:753
+msgid ""
+"so that Citadel has access to ports\n"
+"25, 110, and 143?\n"
+msgstr ""
+
+#: ../utils/setup.c:863
+msgid "This is currently set to:"
+msgstr ""
+
+#: ../utils/setup.c:864
+msgid "Enter new value or press return to leave unchanged:"
+msgstr ""
+
+#: ../utils/setup.c:1067 ../utils/setup.c:1072 ../utils/setup.c:1384
+msgid "setup: cannot open"
+msgstr ""
+
+#: ../utils/setup.c:1175
+#, c-format
+msgid ""
+"\n"
+"/etc/nsswitch.conf is configured to use the 'db' module for\n"
+"one or more services.  This is not necessary on most systems,\n"
+"and it is known to crash the Citadel server when delivering\n"
+"mail to the Internet.\n"
+"\n"
+"Do you want this module to be automatically disabled?\n"
+"\n"
+msgstr ""
+
+#: ../utils/setup.c:1236 ../utils/setup.c:1252
+msgid "Setup finished"
+msgstr ""
+
+#: ../utils/setup.c:1237
+msgid ""
+"Setup of the Citadel server is complete.\n"
+"If you will be using WebCit, please run its\n"
+"setup program now; otherwise, run './citadel'\n"
+"to log in.\n"
+msgstr ""
+
+#: ../utils/setup.c:1243
+msgid "Setup failed"
+msgstr ""
+
+#: ../utils/setup.c:1244
+msgid ""
+"Setup is finished, but the Citadel server failed to start.\n"
+"Go back and check your configuration.\n"
+msgstr ""
+
+#: ../utils/setup.c:1253
+msgid "Setup is finished.  You may now start the server."
+msgstr ""
+
+#: ../utils/setup.c:1279
+msgid "My System"
+msgstr ""
+
+#: ../utils/setup.c:1282
+msgid "US 800 555 1212"
+msgstr ""
+
+#: ../utils/setup.c:1368 ../utils/setup.c:1373
+msgid "setup: cannot append"
+msgstr ""
+
+#: ../utils/setup.c:1450 ../utils/setup.c:1457 ../utils/setup.c:1472
+#: ../utils/setup.c:1512
+msgid "Citadel Setup"
+msgstr ""
+
+#: ../utils/setup.c:1459
+msgid "The directory you specified does not exist"
+msgstr ""
+
+#: ../utils/setup.c:1473
+msgid ""
+"The Citadel service is still running.\n"
+"Please stop the service manually and run setup again."
+msgstr ""
+
+#: ../utils/setup.c:1485
+#, fuzzy
+msgid "Citadel setup program"
+msgstr "Active Directory"
+
+#: ../utils/setup.c:1513
+msgid "This Citadel installation is too old to be upgraded."
+msgstr ""
+
+#: ../utils/setup.c:1552 ../utils/setup.c:1554 ../utils/setup.c:1556
+msgid "Setting file permissions"
+msgstr ""
+
+#~ 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."
+
+#~ 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."
+
+#~ msgid "Internal"
+#~ msgstr "Internt"
+
+#~ msgid "Host"
+#~ msgstr "Värd"
+
+#~ msgid "LDAP"
+#~ msgstr "LDAP"
+
+#~ msgid ""
+#~ "Do not change this option unless you are sure it is required, since "
+#~ "changing back requires a full reinstall of Citadel."
+#~ msgstr ""
+#~ "Ändra inte denna inställning om du inte är helt säker på att det behövs. "
+#~ "För att återställa måste hela Citadel installeras om."
+
+#~ msgid ""
+#~ "While not mandatory, it is highly recommended that you set a password for "
+#~ "the administrator user."
+#~ msgstr ""
+#~ "Det är förvisso inget krav men det är en stark rekomendation att du anger "
+#~ "ett lösenord för den administrativa användaren."
+
+#~ msgid "Internal, Host, LDAP, Active Directory"
+#~ msgstr "Internt, Värd, LDAP, Active Directory"
+
+#~ msgid "Enable external authentication mode?"
+#~ msgstr "Aktivera det externa identifieringsläget?"
+
+#~ 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."
diff --git a/citadel/po/vi.po b/citadel/po/vi.po
new file mode 100644 (file)
index 0000000..88cfdec
--- /dev/null
@@ -0,0 +1,426 @@
+# Vietnamese translation for Citadel.
+# Copyright © 2009 Free Software Foundation, Inc.
+# Clytie Siddall <clytie@riverland.net.au>, 2008-2009.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: citadel 7.61-1\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2010-09-28 00:22+0200\n"
+"PO-Revision-Date: 2009-09-23 18:07+0930\n"
+"Last-Translator: Clytie Siddall <clytie@riverland.net.au>\n"
+"Language-Team: Vietnamese <vi-VN@googlegroups.com>\n"
+"Language: vi\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"
+
+#: ../utils/setup.c:119
+#, fuzzy
+msgid "Citadel Home Directory"
+msgstr "Thư mục Hoạt động"
+
+#: ../utils/setup.c:122
+msgid ""
+"Enter the full pathname of the directory in which the Citadel\n"
+"installation you are creating or updating resides.  If you\n"
+"specify a directory other than the default, you will need to\n"
+"specify the -h flag to the server when you start it up.\n"
+msgstr ""
+
+#: ../utils/setup.c:128
+msgid ""
+"Enter the subdirectory name for an alternate installation of Citadel. To do "
+"a default installation just leave it blank.If you specify a directory other "
+"than the default, you will need to\n"
+"specify the -h flag to the server when you start it up.\n"
+"note that it may not have a leading /"
+msgstr ""
+
+#: ../utils/setup.c:135
+msgid "Citadel administrator username:"
+msgstr "Tên người dùng quản trị Citadel:"
+
+#: ../utils/setup.c:137
+msgid ""
+"Please enter the name of the Citadel user account that should be granted "
+"administrative privileges once created. If using internal authentication "
+"this user account will be created if it does not exist. For external "
+"authentication this user account has to exist."
+msgstr ""
+"Hãy gõ tên của tài khoản người dùng Citadel nên có quyền quản trị. Nếu sử "
+"dụng chức năng xác thực nội bộ thì tài khoản người dùng này không tồn tại sẽ "
+"được tạo. Đối với xác thực từ xa, tài khoản người dùng này phải tồn tại."
+
+#: ../utils/setup.c:143
+msgid "Administrator password:"
+msgstr "Mật khẩu quản trị:"
+
+#: ../utils/setup.c:145
+msgid ""
+"Enter a password for the system administrator. When setup\n"
+"completes it will attempt to create the administrator user\n"
+"and set the password specified here.\n"
+msgstr ""
+
+#: ../utils/setup.c:149
+msgid "Citadel User ID:"
+msgstr ""
+
+#: ../utils/setup.c:151
+msgid ""
+"Citadel needs to run under its own user ID.  This would\n"
+"typically be called \"citadel\", but if you are running Citadel\n"
+"as a public BBS, you might also call it \"bbs\" or \"guest\".\n"
+"The server will run under this user ID.  Please specify that\n"
+"user ID here.  You may specify either a user name or a numeric\n"
+"UID.\n"
+msgstr ""
+
+#: ../utils/setup.c:158
+msgid "Listening address for the Citadel server:"
+msgstr "Địa chỉ lắng nghe cho trình phục vụ Citadel:"
+
+#: ../utils/setup.c:160
+msgid ""
+"Please specify the IP address which the server should be listening to. You "
+"can name a specific IPv4 or IPv6 address, or you can specify\n"
+"'*' for 'any address', '::' for 'any IPv6 address', or '0.0.0.0'\n"
+"for 'any IPv4 address'. If you leave this blank, Citadel will\n"
+"listen on all addresses. This can usually be left to the default unless "
+"multiple instances of Citadel are running on the same computer."
+msgstr ""
+
+#: ../utils/setup.c:168
+#, fuzzy
+msgid "Server port number:"
+msgstr "Số thứ tự cổng LDAP:"
+
+#: ../utils/setup.c:170
+msgid ""
+"Specify the TCP port number on which your server will run.\n"
+"Normally, this will be port 504, which is the official port\n"
+"assigned by the IANA for Citadel servers.  You will only need\n"
+"to specify a different port number if you run multiple instances\n"
+"of Citadel on the same computer and there is something else\n"
+"already using port 504.\n"
+msgstr ""
+
+#: ../utils/setup.c:177
+msgid "Authentication method to use:"
+msgstr ""
+
+#: ../utils/setup.c:179
+#, fuzzy
+msgid ""
+"Please choose the user authentication mode. By default Citadel will use its "
+"own internal user accounts database. If you choose Host, Citadel users will "
+"have accounts on the host system, authenticated via /etc/passwd or a PAM "
+"source. LDAP chooses an RFC 2307 compliant directory server, the last option "
+"chooses the nonstandard MS Active Directory LDAP scheme.\n"
+"Do not change this option unless you are sure it is required, since changing "
+"back requires a full reinstall of Citadel.\n"
+" 0. Self contained authentication\n"
+" 1. Host system integrated authentication\n"
+" 2. External LDAP - RFC 2307 compliant directory\n"
+" 3. External LDAP - nonstandard MS Active Directory\n"
+"\n"
+"For help: http://www.citadel.org/doku.php/faq:installation:authmodes\n"
+"\n"
+"ANSWER \"0\" UNLESS YOU COMPLETELY UNDERSTAND THIS OPTION.\n"
+msgstr ""
+"Hãy chọn chế độ xác thực người dùng:\n"
+" • Nội bộ\t\tCitadel sử dụng cơ sở dữ liệu tài khoản người dùng nội bộ\n"
+"\t\t\tcủa chính nó (mặc định)\n"
+" • Máy chủ\tCác người dùng Citadel có tài khoản trên hệ thống chủ,\n"
+"\t\t\tđược xác thực thông qua « /etc/passwd » hay một nguồn PAM\n"
+" • LDAP\t\tchọn một máy phục vụ sổ ghi tùy theo RFC 2307\n"
+" • Thư mục Hoạt động\tchọn lược đồ LDAP không tiêu chuẩn MS Active Directory"
+
+#: ../utils/setup.c:197
+msgid "LDAP host:"
+msgstr "Máy chủ LDAP:"
+
+#: ../utils/setup.c:199
+#, fuzzy
+msgid "Please enter the host name or IP address of your LDAP server.\n"
+msgstr "Hãy gõ tên máy hay địa chỉ IP của máy phục vụ LDAP nên dùng."
+
+#: ../utils/setup.c:201
+msgid "LDAP port number:"
+msgstr "Số thứ tự cổng LDAP:"
+
+#: ../utils/setup.c:203
+#, fuzzy
+msgid "Please enter the port number of the LDAP service (usually 389).\n"
+msgstr "Hãy gõ số thứ tự cổng của dịch vụ LDAP (thường là 389)."
+
+#: ../utils/setup.c:205
+msgid "LDAP base DN:"
+msgstr "DN cơ bản LDAP:"
+
+#: ../utils/setup.c:207
+#, fuzzy
+msgid ""
+"Please enter the Base DN to search for authentication\n"
+"(for example: dc=example,dc=com)\n"
+msgstr ""
+"Hãy gõ tên phân biệt (DN) cơ bản để tìm kiếm thông tin xác thực (v.d. « "
+"dc=tên_miền,dc=com »)."
+
+#: ../utils/setup.c:210
+msgid "LDAP bind DN:"
+msgstr "DN tổ hợp LDAP:"
+
+#: ../utils/setup.c:212
+#, fuzzy
+msgid ""
+"Please enter the DN of an account to use for binding to the LDAP server for "
+"performing queries. The account does not require any other privileges. If "
+"your LDAP server allows anonymous queries, you can leave this blank.Please "
+"enter the DN of an account to use for binding to the LDAP server\n"
+"for performing queries.  The account does not require any other\n"
+"privileges.  If your LDAP server allows anonymous queries, you can\n"
+"leave this blank.\n"
+msgstr ""
+"Hãy gõ tên phân biệt (DN) của tài khoản cần sử dụng để đóng kết tới trình "
+"phục vụ LDAP, để yêu cầu thông tin. Tài khoản này không cần có quyền đặc "
+"biệt. Nếu trình phục vụ LDAP cho phép yêu cầu nặc danh thì cũng có thể bỏ "
+"trống trường này."
+
+#: ../utils/setup.c:220
+msgid "LDAP bind password:"
+msgstr "Mật khẩu tổ hợp LDAP:"
+
+#: ../utils/setup.c:222
+#, fuzzy
+msgid ""
+"If you entered a Bind DN in the previous question, you must now enter\n"
+"the password associated with that account.  Otherwise, you can leave this\n"
+"blank.\n"
+msgstr ""
+"Nếu bạn đã nhập một tên phân biệt (DN) kiểu đóng kết khi đáp ứng câu hỏi "
+"đằng trước, ở đây cũng cần gõ mật khẩu tương ứng với tài khoản đó. Không thì "
+"bỏ trống trường này."
+
+#: ../utils/setup.c:299
+msgid "Yes/No"
+msgstr ""
+
+#: ../utils/setup.c:300
+msgid "Yes"
+msgstr ""
+
+#: ../utils/setup.c:300
+msgid "No"
+msgstr ""
+
+#: ../utils/setup.c:346
+msgid "Press return to continue..."
+msgstr ""
+
+#: ../utils/setup.c:364
+msgid "Important Message"
+msgstr ""
+
+#: ../utils/setup.c:379
+msgid "Error"
+msgstr ""
+
+#: ../utils/setup.c:459
+msgid "Adding service entry..."
+msgstr ""
+
+#. Other errors might mean something really did go wrong.
+#.
+#: ../utils/setup.c:463 ../utils/setup.c:510 ../utils/setup.c:518
+msgid "Cannot open"
+msgstr ""
+
+#: ../utils/setup.c:569
+msgid ""
+"Citadel already appears to be configured to start at boot.\n"
+"Would you like to keep your boot configuration as is?\n"
+msgstr ""
+
+#: ../utils/setup.c:577
+msgid "Would you like to automatically start Citadel at boot?\n"
+msgstr ""
+
+#: ../utils/setup.c:583
+msgid "Cannot create"
+msgstr ""
+
+#: ../utils/setup.c:682
+#, c-format
+msgid ""
+"Setup can configure the \"xinetd\" service to automatically\n"
+"connect incoming telnet sessions to Citadel, bypassing the\n"
+"host system login: prompt.  Would you like to do this?\n"
+msgstr ""
+
+#: ../utils/setup.c:740
+msgid "You appear to have the "
+msgstr ""
+
+#: ../utils/setup.c:742
+msgid ""
+" email program\n"
+"running on your system.  If you want Citadel mail\n"
+"connected with "
+msgstr ""
+
+#: ../utils/setup.c:746
+msgid ""
+" you will have to manually integrate\n"
+"them.  It is preferable to disable "
+msgstr ""
+
+#: ../utils/setup.c:749
+msgid ""
+", and use Citadel's\n"
+"SMTP, POP3, and IMAP services.\n"
+"\n"
+"May we disable "
+msgstr ""
+
+#: ../utils/setup.c:753
+msgid ""
+"so that Citadel has access to ports\n"
+"25, 110, and 143?\n"
+msgstr ""
+
+#: ../utils/setup.c:863
+msgid "This is currently set to:"
+msgstr ""
+
+#: ../utils/setup.c:864
+msgid "Enter new value or press return to leave unchanged:"
+msgstr ""
+
+#: ../utils/setup.c:1067 ../utils/setup.c:1072 ../utils/setup.c:1384
+msgid "setup: cannot open"
+msgstr ""
+
+#: ../utils/setup.c:1175
+#, c-format
+msgid ""
+"\n"
+"/etc/nsswitch.conf is configured to use the 'db' module for\n"
+"one or more services.  This is not necessary on most systems,\n"
+"and it is known to crash the Citadel server when delivering\n"
+"mail to the Internet.\n"
+"\n"
+"Do you want this module to be automatically disabled?\n"
+"\n"
+msgstr ""
+
+#: ../utils/setup.c:1236 ../utils/setup.c:1252
+msgid "Setup finished"
+msgstr ""
+
+#: ../utils/setup.c:1237
+msgid ""
+"Setup of the Citadel server is complete.\n"
+"If you will be using WebCit, please run its\n"
+"setup program now; otherwise, run './citadel'\n"
+"to log in.\n"
+msgstr ""
+
+#: ../utils/setup.c:1243
+msgid "Setup failed"
+msgstr ""
+
+#: ../utils/setup.c:1244
+msgid ""
+"Setup is finished, but the Citadel server failed to start.\n"
+"Go back and check your configuration.\n"
+msgstr ""
+
+#: ../utils/setup.c:1253
+msgid "Setup is finished.  You may now start the server."
+msgstr ""
+
+#: ../utils/setup.c:1279
+msgid "My System"
+msgstr ""
+
+#: ../utils/setup.c:1282
+msgid "US 800 555 1212"
+msgstr ""
+
+#: ../utils/setup.c:1368 ../utils/setup.c:1373
+msgid "setup: cannot append"
+msgstr ""
+
+#: ../utils/setup.c:1450 ../utils/setup.c:1457 ../utils/setup.c:1472
+#: ../utils/setup.c:1512
+msgid "Citadel Setup"
+msgstr ""
+
+#: ../utils/setup.c:1459
+msgid "The directory you specified does not exist"
+msgstr ""
+
+#: ../utils/setup.c:1473
+msgid ""
+"The Citadel service is still running.\n"
+"Please stop the service manually and run setup again."
+msgstr ""
+
+#: ../utils/setup.c:1485
+#, fuzzy
+msgid "Citadel setup program"
+msgstr "Thư mục Hoạt động"
+
+#: ../utils/setup.c:1513
+msgid "This Citadel installation is too old to be upgraded."
+msgstr ""
+
+#: ../utils/setup.c:1552 ../utils/setup.c:1554 ../utils/setup.c:1556
+msgid "Setting file permissions"
+msgstr ""
+
+#~ 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ỉ."
+
+#~ 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 vẫn thích hợp nếu chỉ có một tiến trình Citadel "
+#~ "đang chạy trên máy này."
+
+#~ msgid "Internal"
+#~ msgstr "Nội bộ"
+
+#~ msgid "Host"
+#~ msgstr "Máy chủ"
+
+#~ msgid "LDAP"
+#~ msgstr "LDAP"
+
+#~ msgid ""
+#~ "Do not change 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 tuỳ chọn "
+#~ "này cần thiết cài đặt lại Citadel một cách hoàn toàn."
+
+#~ msgid ""
+#~ "While not mandatory, it is highly recommended that you set a password for "
+#~ "the administrator user."
+#~ msgstr ""
+#~ "Để bảo vệ máy tính, rất khuyên bạn đặt mật khẩu cho người dùng quản trị."
+
+#~ msgid "Internal, Host, LDAP, Active Directory"
+#~ msgstr "Nội bộ, Máy chủ, LDAP, Thư mục Hoạt động"
+
+#~ msgid "Enable external authentication mode?"
+#~ msgstr "Bật chế độ xác thực bên ngoài không?"
index 51d53fe59871fade8ac43510088d4224536291d2..da770f7d15d9a53130d4275d8d54687b49d13d47 100644 (file)
@@ -70,6 +70,7 @@ typedef enum _SetupStep {
 } eSteupStep;
 
 ///"CREATE_XINETD_ENTRY";
+/* Environment variables, don't translate! */
 const char *EnvNames [eMaxQuestions] = {
         "HOME_DIRECTORY",
        "SYSADMIN_NAME",
@@ -92,95 +93,97 @@ char admin_pass[SIZ];
 char admin_cmd[SIZ];
 
 const char *setup_titles[eMaxQuestions];
+const char *setup_text[eMaxQuestions];
 
-void SetTitles(void)
-{
-       setup_titles[eCitadelHomeDir] = _("Citadel Home Directory");
-       setup_titles[eSysAdminName] = _("Citadel administrator username:");////
-       setup_titles[eSysAdminPW] = _("Administrator password:");//
-       setup_titles[eUID] = _("Citadel User ID:");
-       setup_titles[eIP_ADDR] = _("Listening address for the Citadel server:");///
-       setup_titles[eCTDL_Port] = _("Server port number:");
-       setup_titles[eAuthType] = _("Authentication method to use:");////
-       setup_titles[eLDAP_Host] = _("LDAP host:");///
-       setup_titles[eLDAP_Port] = _("LDAP port number:");////
-       setup_titles[eLDAP_Base_DN] = _("LDAP base DN:");///
-       setup_titles[eLDAP_Bind_DN] = _("LDAP bind DN:");//
-       setup_titles[eLDAP_Bind_PW] = _("LDAP bind password:");//
-}
+/* calculate all our path on a central place */
+/* where to keep our config */
+       
 
-/*
- * print the actual stack frame.
- */
-void cit_backtrace(void)
-{
-#ifdef HAVE_BACKTRACE
-       void *stack_frames[50];
-       size_t size, i;
-       char **strings;
 
-       size = backtrace(stack_frames, sizeof(stack_frames) / sizeof(void*));
-       strings = backtrace_symbols(stack_frames, size);
-       for (i = 0; i < size; i++) {
-               if (strings != NULL)
-                       fprintf(stderr, "%s\n", strings[i]);
-               else
-                       fprintf(stderr, "%p\n", stack_frames[i]);
-       }
-       free(strings);
+void SetTitles(void)
+{
+       char *locale;
+       int have_run_dir;
+#ifndef HAVE_RUN_DIR
+       have_run_dir = 1;
+#else
+       have_run_dir = 0;
 #endif
-}
 
-struct config config;
+       locale = setlocale(LC_MESSAGES, getenv("LANG"));
 
-/* calculate all our path on a central place */
-/* where to keep our config */
-       
+       bindtextdomain("citadel-setup", LOCALEDIR"/locale");
+       textdomain("citadel-setup");
+       bind_textdomain_codeset("citadel-setup","UTF8");
 
-char *setup_text[] = {
-#ifndef HAVE_RUN_DIR
+       setup_titles[eCitadelHomeDir] = _("Citadel Home Directory");
+       if (have_run_dir)
+               setup_text[eCitadelHomeDir] = _(
 "Enter the full pathname of the directory in which the Citadel\n"
 "installation you are creating or updating resides.  If you\n"
 "specify a directory other than the default, you will need to\n"
-"specify the -h flag to the server when you start it up.\n",
-#else
+"specify the -h flag to the server when you start it up.\n");
+       else
+               setup_text[eCitadelHomeDir] = _(
 "Enter the subdirectory name for an alternate installation of "
 "Citadel. To do a default installation just leave it blank."
 "If you specify a directory other than the default, you will need to\n"
 "specify the -h flag to the server when you start it up.\n"
-"note that it may not have a leading /",
-#endif
+"note that it may not have a leading /");
+
 
-"Enter the name of the system administrator (which is probably\n"
-"you).  When an account is created with this name, it will\n"
-"automatically be given administrator-level access.\n",
+       setup_titles[eSysAdminName] = _("Citadel administrator username:");
+       setup_text[eSysAdminName] = _(
+"Please enter the name of the Citadel user account that should be granted "
+"administrative privileges once created. If using internal authentication "
+"this user account will be created if it does not exist. For external "
+"authentication this user account has to exist.");
 
+
+       setup_titles[eSysAdminPW] = _("Administrator password:");
+       setup_text[eSysAdminPW] = _(
 "Enter a password for the system administrator. When setup\n"
 "completes it will attempt to create the administrator user\n"
-"and set the password specified here.\n",
+"and set the password specified here.\n");
 
+       setup_titles[eUID] = _("Citadel User ID:");
+       setup_text[eUID] = _(
 "Citadel needs to run under its own user ID.  This would\n"
 "typically be called \"citadel\", but if you are running Citadel\n"
 "as a public BBS, you might also call it \"bbs\" or \"guest\".\n"
 "The server will run under this user ID.  Please specify that\n"
 "user ID here.  You may specify either a user name or a numeric\n"
-"UID.\n",
+"UID.\n");
 
-"Specify the IP address on which your server will run.\n"
+       setup_titles[eIP_ADDR] = _("Listening address for the Citadel server:");
+       setup_text[eIP_ADDR] = _(
+"Please specify the IP address which the server should be listening to. "
 "You can name a specific IPv4 or IPv6 address, or you can specify\n"
 "'*' for 'any address', '::' for 'any IPv6 address', or '0.0.0.0'\n"
-"for 'any IPv4 address'.  If you leave this blank, Citadel will\n"
-"listen on all addresses.  You can usually skip this unless you are\n"
-"running multiple instances of Citadel on the same computer.\n",
+"for 'any IPv4 address'. If you leave this blank, Citadel will\n"
+"listen on all addresses. "
+"This can usually be left to the default unless multiple instances of Citadel "
+"are running on the same computer.");
 
+       setup_titles[eCTDL_Port] = _("Server port number:");
+       setup_text[eCTDL_Port] = _(
 "Specify the TCP port number on which your server will run.\n"
 "Normally, this will be port 504, which is the official port\n"
 "assigned by the IANA for Citadel servers.  You will only need\n"
 "to specify a different port number if you run multiple instances\n"
 "of Citadel on the same computer and there is something else\n"
-"already using port 504.\n",
-
-"Specify which authentication mode you wish to use.\n"
+"already using port 504.\n");
+
+       setup_titles[eAuthType] = _("Authentication method to use:");
+       setup_text[eAuthType] = _(
+"Please choose the user authentication mode. By default Citadel will use its "
+"own internal user accounts database. If you choose Host, Citadel users will "
+"have accounts on the host system, authenticated via /etc/passwd or a PAM "
+"source. LDAP chooses an RFC 2307 compliant directory server, the last option "
+"chooses the nonstandard MS Active Directory LDAP scheme."
+"\n"
+"Do not change this option unless you are sure it is required, since changing "
+"back requires a full reinstall of Citadel."
 "\n"
 " 0. Self contained authentication\n"
 " 1. Host system integrated authentication\n"
@@ -189,25 +192,75 @@ char *setup_text[] = {
 "\n"
 "For help: http://www.citadel.org/doku.php/faq:installation:authmodes\n"
 "\n"
-"ANSWER \"0\" UNLESS YOU COMPLETELY UNDERSTAND THIS OPTION.\n",
+"ANSWER \"0\" UNLESS YOU COMPLETELY UNDERSTAND THIS OPTION.\n");
 
-"Please enter the host name or IP address of your LDAP server.\n",
+       setup_titles[eLDAP_Host] = _("LDAP host:");
+       setup_text[eLDAP_Host] = _(
+"Please enter the host name or IP address of your LDAP server.\n");
 
-"Please enter the port number of the LDAP service (usually 389).\n",
+       setup_titles[eLDAP_Port] = _("LDAP port number:");
+       setup_text[eLDAP_Port] = _(
+"Please enter the port number of the LDAP service (usually 389).\n");
 
+       setup_titles[eLDAP_Base_DN] = _("LDAP base DN:");
+       setup_text[eLDAP_Base_DN] = _(
 "Please enter the Base DN to search for authentication\n"
-"(for example: dc=example,dc=com)\n",
+"(for example: dc=example,dc=com)\n");
 
+       setup_titles[eLDAP_Bind_DN] = _("LDAP bind DN:");
+       setup_text[eLDAP_Bind_DN] = _(
+"Please enter the DN of an account to use for binding to the LDAP server for "
+"performing queries. The account does not require any other privileges. If "
+"your LDAP server allows anonymous queries, you can leave this blank."
 "Please enter the DN of an account to use for binding to the LDAP server\n"
 "for performing queries.  The account does not require any other\n"
-"privileges.  If your LDAP server allows anonymous queries, you can.\n"
-"leave this blank.\n",
+"privileges.  If your LDAP server allows anonymous queries, you can\n"
+"leave this blank.\n");
 
+       setup_titles[eLDAP_Bind_PW] = _("LDAP bind password:");
+       setup_text[eLDAP_Bind_PW] = _(
 "If you entered a Bind DN in the previous question, you must now enter\n"
 "the password associated with that account.  Otherwise, you can leave this\n"
-"blank.\n"
+"blank.\n");
+
+#if 0
+// Debug loading of locales... Strace does a better job though.
+       printf("Message catalog directory: %s\n", bindtextdomain("citadel-setup", LOCALEDIR"/locale"));
+       printf("Text domain: %s\n", textdomain("citadel-setup"));
+       printf("Text domain Charset: %s\n", bind_textdomain_codeset("citadel-setup","UTF8"));
+       {
+               int i;
+               for (i = 0; i < eMaxQuestions; i++)
+                       printf("%s - %s\n", setup_titles[i], _(setup_titles[i]));
+               exit(0);
+       }
+#endif
+}
+
+/*
+ * print the actual stack frame.
+ */
+void cit_backtrace(void)
+{
+#ifdef HAVE_BACKTRACE
+       void *stack_frames[50];
+       size_t size, i;
+       char **strings;
+
+       size = backtrace(stack_frames, sizeof(stack_frames) / sizeof(void*));
+       strings = backtrace_symbols(stack_frames, size);
+       for (i = 0; i < size; i++) {
+               if (strings != NULL)
+                       fprintf(stderr, "%s\n", strings[i]);
+               else
+                       fprintf(stderr, "%p\n", stack_frames[i]);
+       }
+       free(strings);
+#endif
+}
+
+struct config config;
 
-};
 
 struct config config;
 int direction;
@@ -231,7 +284,7 @@ void title(const char *text)
 
 
 
-int yesno(char *question, int default_value)
+int yesno(const char *question, int default_value)
 {
        int i = 0;
        int answer = 0;
@@ -241,9 +294,10 @@ int yesno(char *question, int default_value)
 
        case UI_TEXT:
                do {
-                       printf("%s\nYes/No [%s] --> ",
-                               question,
-                               ( default_value ? "Yes" : "No" )
+                       printf("%s\n%s [%s] --> ",
+                              question,
+                              _("Yes/No"),
+                              ( default_value ? _("Yes") : _("No") )
                        );
                        if (fgets(buf, sizeof buf, stdin))
                        {
@@ -279,7 +333,7 @@ int yesno(char *question, int default_value)
 }
 
 
-void important_message(char *title, char *msgtext)
+void important_message(const char *title, const char *msgtext)
 {
        char buf[SIZ];
        int rv;
@@ -289,7 +343,7 @@ void important_message(char *title, char *msgtext)
        case UI_TEXT:
                printf("\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n");
                printf("       %s \n\n%s\n\n", title, msgtext);
-               printf("Press return to continue...");
+               printf("%s", _("Press return to continue..."));
                if (fgets(buf, sizeof buf, stdin));
                break;
 
@@ -307,12 +361,23 @@ void important_message(char *title, char *msgtext)
 
 void important_msgnum(int msgnum)
 {
-       important_message("Important Message", setup_text[msgnum]);
+       important_message(_("Important Message"), setup_text[msgnum]);
 }
 
-void display_error(char *error_message)
+void display_error(char *error_message_format, ...)
 {
-       important_message("Error", error_message);
+       StrBuf *Msg;
+       va_list arg_ptr;
+
+       Msg = NewStrBuf();
+       va_start(arg_ptr, error_message_format);
+       StrBufVAppendPrintf(Msg, 
+                           error_message_format, 
+                           arg_ptr);
+       va_end(arg_ptr);
+
+       important_message(_("Error"), ChrPtr(Msg));
+       FreeStrBuf(&Msg);
 }
 
 void progress(char *text, long int curr, long int cmax)
@@ -391,11 +456,11 @@ void check_services_entry(void)
 
        if (getservbyname(SERVICE_NAME, PROTO_NAME) == NULL) {
                for (i=0; i<=2; ++i) {
-                       progress("Adding service entry...", i, 2);
+                       progress(_("Adding service entry..."), i, 2);
                        if (i == 0) {
                                sfp = fopen("/etc/services", "a");
                                if (sfp == NULL) {
-                                       sprintf(errmsg, "Cannot open /etc/services: %s", strerror(errno));
+                                       sprintf(errmsg, "%s /etc/services: %s", _("Cannot open"), strerror(errno));
                                        display_error(errmsg);
                                } else {
                                        fprintf(sfp, "%s                504/tcp\n", SERVICE_NAME);
@@ -442,7 +507,7 @@ void delete_inittab_entry(void)
 
                /* Other errors might mean something really did go wrong.
                 */
-               sprintf(buf, "Cannot open /etc/inittab: %s", strerror(errno));
+               sprintf(buf, "%s /etc/inittab: %s", _("Cannot open"), strerror(errno));
                display_error(buf);
                return;
        }
@@ -450,7 +515,7 @@ void delete_inittab_entry(void)
        strcpy(outfilename, "/tmp/ctdlsetup.XXXXXX");
        outfp = fdopen(mkstemp(outfilename), "w+");
        if (outfp == NULL) {
-               sprintf(buf, "Cannot open %s: %s", outfilename, strerror(errno));
+               sprintf(buf, "%s %s: %s", _("Cannot open"), outfilename, strerror(errno));
                display_error(buf);
                fclose(infp);
                return;
@@ -501,21 +566,21 @@ void install_init_scripts(void)
 
        fp = fopen(initfile, "r");
        if (fp != NULL) {
-               if (yesno("Citadel already appears to be configured to start at boot.\n"
-                         "Would you like to keep your boot configuration as is?\n", 1) == 1) {
+               if (yesno(_("Citadel already appears to be configured to start at boot.\n"
+                           "Would you like to keep your boot configuration as is?\n"), 1) == 1) {
                        return;
                }
                fclose(fp);
                
        }
 
-       if (yesno("Would you like to automatically start Citadel at boot?\n", 1) == 0) {
+       if (yesno(_("Would you like to automatically start Citadel at boot?\n"), 1) == 0) {
                return;
        }
 
        fp = fopen(initfile, "w");
        if (fp == NULL) {
-               display_error("Cannot create /etc/init.d/citadel");
+               display_error("%s /etc/init.d/citadel", _("Cannot create"));
                return;
        }
 
@@ -614,10 +679,10 @@ void check_xinetd_entry(void) {
        }
        else {
                snprintf(buf, sizeof buf,
-                        "Setup can configure the \"xinetd\" service to automatically\n"
-                        "connect incoming telnet sessions to Citadel, bypassing the\n"
-                        "host system login: prompt.  Would you like to do this?\n"
-                       );
+                        _("Setup can configure the \"xinetd\" service to automatically\n"
+                          "connect incoming telnet sessions to Citadel, bypassing the\n"
+                          "host system login: prompt.  Would you like to do this?\n"
+                                ));
                if (yesno(buf, 1) == 0) {
                        return;
                }
@@ -671,14 +736,22 @@ void disable_other_mta(const char *mta) {
        /* Offer to replace other MTA with the vastly superior Citadel :)  */
 
        snprintf(buf, sizeof buf,
-                "You appear to have the \"%s\" email program\n"
-                "running on your system.  If you want Citadel mail\n"
-                "connected with %s, you will have to manually integrate\n"
-                "them.  It is preferable to disable %s, and use Citadel's\n"
-                "SMTP, POP3, and IMAP services.\n\n"
-                "May we disable %s so that Citadel has access to ports\n"
-                "25, 110, and 143?\n",
-                mta, mta, mta, mta
+                "%s \"%s\" %s%s%s%s%s%s%s", 
+                _("You appear to have the "), 
+                mta, 
+                _(" email program\n"
+                  "running on your system.  If you want Citadel mail\n"
+                  "connected with "), 
+                mta,
+                _(" you will have to manually integrate\n"
+                  "them.  It is preferable to disable "), 
+                mta,
+                _(", and use Citadel's\n"
+                  "SMTP, POP3, and IMAP services.\n\n"
+                  "May we disable "), 
+                mta, 
+                _("so that Citadel has access to ports\n"
+                  "25, 110, and 143?\n")
                );
        if (yesno(buf, 1) == 0) {
                return;
@@ -773,7 +846,7 @@ int test_server(char *relhomestr, int relhome) {
        return(-1);
 }
 
-void strprompt(const char *prompt_title, char *prompt_text, char *Target, char *DefValue)
+void strprompt(const char *prompt_title, const char *prompt_text, char *Target, char *DefValue)
 {
        char buf[SIZ] = "";
        char setupmsg[SIZ];
@@ -787,8 +860,8 @@ void strprompt(const char *prompt_title, char *prompt_text, char *Target, char *
        case UI_TEXT:
                title(prompt_title);
                printf("\n%s\n", prompt_text);
-               printf("This is currently set to:\n%s\n", Target);
-               printf("Enter new value or press return to leave unchanged:\n");
+               printf("%s\n%s\n", _("This is currently set to:"), Target);
+               printf("%s\n", _("Enter new value or press return to leave unchanged:"));
                if (fgets(buf, sizeof buf, stdin)){
                        buf[strlen(buf) - 1] = 0;
                }
@@ -991,12 +1064,12 @@ void write_config_to_disk(void)
        int rv;
 
        if ((fd = creat(file_citadel_config, S_IRUSR | S_IWUSR)) == -1) {
-               display_error("setup: cannot open citadel.config");
+               display_error("%s citadel.config [%s][%s]\n", _("setup: cannot open"), file_citadel_config, strerror(errno));
                cleanup(1);
        }
        fp = fdopen(fd, "wb");
        if (fp == NULL) {
-               display_error("setup: cannot open citadel.config");
+               display_error("%s citadel.config [%s][%s]\n", _("setup: cannot open"), file_citadel_config, strerror(errno));
                cleanup(1);
        }
        rv = fwrite((char *) &config, sizeof(struct config), 1, fp);
@@ -1098,14 +1171,16 @@ void fixnss(void) {
        }
 
        snprintf(question, sizeof question,
-               "\n"
-               "/etc/nsswitch.conf is configured to use the 'db' module for\n"
-               "one or more services.  This is not necessary on most systems,\n"
-               "and it is known to crash the Citadel server when delivering\n"
-               "mail to the Internet.\n"
-               "\n"
-               "Do you want this module to be automatically disabled?\n"
-               "\n"
+                _(
+                        "\n"
+                        "/etc/nsswitch.conf is configured to use the 'db' module for\n"
+                        "one or more services.  This is not necessary on most systems,\n"
+                        "and it is known to crash the Citadel server when delivering\n"
+                        "mail to the Internet.\n"
+                        "\n"
+                        "Do you want this module to be automatically disabled?\n"
+                        "\n"
+                        )
        );
 
        if (yesno(question, 1)) {
@@ -1158,24 +1233,24 @@ void check_init_script (char *relhome)
                        }
 
                        if (setup_type != UI_SILENT)
-                               important_message("Setup finished",
-                                                 "Setup of the Citadel server is complete.\n"
-                                                 "If you will be using WebCit, please run its\n"
-                                                 "setup program now; otherwise, run './citadel'\n"
-                                                 "to log in.\n");
+                               important_message(_("Setup finished"),
+                                                 _("Setup of the Citadel server is complete.\n"
+                                                   "If you will be using WebCit, please run its\n"
+                                                   "setup program now; otherwise, run './citadel'\n"
+                                                   "to log in.\n"));
                }
                else {
-                       important_message("Setup failed",
-                               "Setup is finished, but the Citadel server failed to start.\n"
-                               "Go back and check your configuration.\n"
-                       );
+                       important_message(_("Setup failed"),
+                                         _("Setup is finished, but the Citadel server failed to start.\n"
+                                           "Go back and check your configuration.\n")
+                               );
                }
 
        }
 
        else {
-               important_message("Setup finished",
-                       "Setup is finished.  You may now start the server.");
+               important_message(_("Setup finished"),
+                                 _("Setup is finished.  You may now start the server."));
        }
 }
 
@@ -1201,10 +1276,10 @@ void set_default_values(void)
                }
        }
        if (IsEmptyStr(config.c_humannode)) {
-               strcpy(config.c_humannode, "My System");
+               strcpy(config.c_humannode, _("My System"));
        }
        if (IsEmptyStr(config.c_phonenum)) {
-               strcpy(config.c_phonenum, "US 800 555 1212");
+               strcpy(config.c_phonenum, _("US 800 555 1212"));
        }
        if (config.c_initax == 0) {
                config.c_initax = 4;
@@ -1290,12 +1365,12 @@ void get_config (void)
         */
        if ((a = open(file_citadel_config, O_WRONLY | O_CREAT | O_APPEND,
                      S_IRUSR | S_IWUSR)) == -1) {
-               display_error("setup: cannot append citadel.config");
+               display_error("%s citadel.config [%s][%s]\n", _("setup: cannot append"), file_citadel_config, strerror(errno));
                cleanup(errno);
        }
        fp = fdopen(a, "ab");
        if (fp == NULL) {
-               display_error("setup: cannot append citadel.config");
+               display_error("%s citadel.config [%s][%s]\n", _("setup: cannot append"), file_citadel_config, strerror(errno));
                cleanup(errno);
        }
        for (a = 0; a < sizeof(struct config); ++a) {
@@ -1306,7 +1381,7 @@ void get_config (void)
        /* now we re-open it, and read the old or blank configuration */
        fp = fopen(file_citadel_config, "rb");
        if (fp == NULL) {
-               display_error("setup: cannot open citadel.config");
+               display_error("%s citadel.config [%s][%s]\n", _("setup: cannot open"), file_citadel_config, strerror(errno));
                cleanup(errno);
        }
        rv = fread((char *) &config, sizeof(struct config), 1, fp);
@@ -1372,17 +1447,17 @@ int main(int argc, char *argv[])
                setup_type = discover_ui();
        }
        if (info_only == 1) {
-               important_message("Citadel Setup", CITADEL);
+               important_message(_("Citadel Setup"), CITADEL);
                cleanup(0);
        }
 
        enable_home = ( relh | home );
 
        if (chdir(ctdl_run_dir) != 0) {
-               char errmsg[SIZ];
-               sprintf(errmsg, "The directory you specified does not exist: [%s]\n", ctdl_run_dir);
-               
-               important_message("Citadel Setup", errmsg);
+               display_error(_("Citadel Setup"), 
+                             "%s: [%s]\n", 
+                             _("The directory you specified does not exist"), 
+                             ctdl_run_dir);
                cleanup(errno);
        }
 
@@ -1394,10 +1469,10 @@ int main(int argc, char *argv[])
 
        /* Make sure Citadel is not running. */
        if (test_server(relhome, enable_home) == 0) {
-               important_message("Citadel Setup",
-                       "The Citadel service is still running.\n"
-                       "Please stop the service manually and run "
-                       "setup again.");
+               important_message(_("Citadel Setup"),
+                                 _("The Citadel service is still running.\n"
+                                   "Please stop the service manually and run "
+                                   "setup again."));
                cleanup(1);
        }
 
@@ -1406,7 +1481,8 @@ int main(int argc, char *argv[])
 
        case UI_TEXT:
                printf("\n\n\n"
-                       "              *** Citadel setup program ***\n\n");
+                      "               *** %s ***\n\n",
+                      _("Citadel setup program"));
                break;
 
        }
@@ -1433,8 +1509,8 @@ int main(int argc, char *argv[])
 
        if (old_setup_level < 555) {
                important_message(
-                       "Citadel Setup",
-                       "This Citadel installation is too old to be upgraded."
+                       _("Citadel Setup"),
+                       _("This Citadel installation is too old to be upgraded.")
                );
                cleanup(1);
        }
@@ -1473,11 +1549,11 @@ NEW_INST:
        fixnss();               /* Check for the 'db' nss and offer to disable it */
 #endif
 
-       progress("Setting file permissions", 1, 3);
+       progress(_("Setting file permissions"), 1, 3);
        rv = chown(file_citadel_config, config.c_ctdluid, gid);
-       progress("Setting file permissions", 2, 3);
+       progress(_("Setting file permissions"), 2, 3);
        rv = chmod(file_citadel_config, S_IRUSR | S_IWUSR);
-       progress("Setting file permissions", 3, 3);
+       progress(_("Setting file permissions"), 3, 3);
 
        check_init_script(relhome);
        cleanup(0);
index 837fdb87530ec7f5444eea2a3ff07fd2ce56c181..7713ce70dc1ce98a34c4936cd95e36073a7caf9a 100644 (file)
@@ -362,10 +362,6 @@ void initialize_locales(void) {
                AvailLangLoaded[0] = AvailLang[0];
                nLocalesLoaded = 1;
        }
-#ifndef HAVE_USELOCALE
-
-
-#endif
 
 #ifdef ENABLE_NLS
        locale = setlocale(LC_ALL, "");