diff options
author | Jeroen van Meeuwen (Kolab Systems) <vanmeeuwen@kolabsys.com> | 2011-02-21 21:51:04 +0000 |
---|---|---|
committer | Jeroen van Meeuwen (Kolab Systems) <vanmeeuwen@kolabsys.com> | 2011-02-21 21:51:04 +0000 |
commit | d4bbdffe03f54c98ffd34c3a2faeca375f57a6ee (patch) | |
tree | 4e1dd9c07d0b9c293b866f1cb0dc4453d58d3235 | |
parent | cd89058ed3fa4b1def41b6ca97c398c8de6ed1c2 (diff) | |
download | pykolab-d4bbdffe03f54c98ffd34c3a2faeca375f57a6ee.tar.gz |
Add semantics for packaging and localization
-rw-r--r-- | Makefile.am | 26 | ||||
-rw-r--r-- | conf/Makefile.am | 3 | ||||
-rw-r--r-- | configure.ac | 10 | ||||
-rw-r--r-- | kolab/Makefile.am | 2 | ||||
-rw-r--r-- | kolabd/Makefile.am | 2 | ||||
-rw-r--r-- | po/Makefile.in.in | 217 | ||||
-rw-r--r-- | po/POTFILES.in | 46 | ||||
-rw-r--r-- | po/POTFILES.skip | 1 | ||||
-rw-r--r-- | po/bn.po | 563 | ||||
-rw-r--r-- | po/bn_IN.po | 563 | ||||
-rw-r--r-- | po/ca.po | 563 | ||||
-rw-r--r-- | po/cs.po | 563 | ||||
-rw-r--r-- | po/da.po | 563 | ||||
-rw-r--r-- | po/de.po | 563 | ||||
-rw-r--r-- | po/el.po | 563 | ||||
-rw-r--r-- | po/es.po | 563 | ||||
-rw-r--r-- | po/fi.po | 563 | ||||
-rw-r--r-- | po/fr.po | 563 | ||||
-rw-r--r-- | po/gl.po | 563 | ||||
-rw-r--r-- | po/gu.po | 563 | ||||
-rw-r--r-- | po/hi.po | 563 | ||||
-rw-r--r-- | po/hr.po | 563 | ||||
-rw-r--r-- | po/hu.po | 563 | ||||
-rw-r--r-- | po/is.po | 563 | ||||
-rw-r--r-- | po/it.po | 563 | ||||
-rw-r--r-- | po/ja.po | 563 | ||||
-rw-r--r-- | po/ko.po | 563 | ||||
-rw-r--r-- | po/ml.po | 563 | ||||
-rw-r--r-- | po/ms.po | 563 | ||||
-rw-r--r-- | po/nb.po | 563 | ||||
-rw-r--r-- | po/nl.po | 563 | ||||
-rw-r--r-- | po/or.po | 563 | ||||
-rw-r--r-- | po/pa.po | 563 | ||||
-rw-r--r-- | po/pl.po | 563 | ||||
-rw-r--r-- | po/pt.po | 563 | ||||
-rw-r--r-- | po/pt_BR.po | 563 | ||||
-rw-r--r-- | po/pykolab.pot | 563 | ||||
-rw-r--r-- | po/ru.po | 563 | ||||
-rw-r--r-- | po/sk.po | 563 | ||||
-rw-r--r-- | po/sl.po | 563 | ||||
-rw-r--r-- | po/sr.po | 563 | ||||
-rw-r--r-- | po/sr@latin.po | 563 | ||||
-rw-r--r-- | po/stamp-it | 0 | ||||
-rw-r--r-- | po/sv.po | 563 | ||||
-rw-r--r-- | po/ta.po | 563 | ||||
-rw-r--r-- | po/tr.po | 563 | ||||
-rw-r--r-- | po/uk.po | 563 | ||||
-rw-r--r-- | po/zh_CN.po | 563 | ||||
-rw-r--r-- | po/zh_TW.po | 563 | ||||
-rwxr-xr-x | py-compile | 146 | ||||
-rw-r--r-- | pykolab.spec.in | 56 | ||||
-rw-r--r-- | pykolab/Makefile.am | 41 |
52 files changed, 23067 insertions, 3 deletions
diff --git a/Makefile.am b/Makefile.am index c718091..4747210 100644 --- a/Makefile.am +++ b/Makefile.am @@ -3,6 +3,14 @@ DISTCLEANFILES = \ intltool-merge \ intltool-update +INTLTOOL_FILES = \ + intltool-extract.in \ + intltool-merge.in \ + intltool-update.in + +PYTHON_FILES = \ + cyruslib.py + EXTRA_DIST = \ AUTHORS \ ChangeLog \ @@ -10,7 +18,23 @@ EXTRA_DIST = \ INSTALL \ NEWS \ README \ - README.tests + README.tests \ + pykolab.spec \ + pykolab.spec.in \ + $(PYTHON_FILES) + +SUBDIRS = \ + conf \ + kolab \ + kolabd \ + po \ + pykolab + +ChangeLog: + (GIT_DIR=.git git log > .changelog.tmp && mv .changelog.tmp ChangeLog; rm -f .changelog.tmp) || (touch ChangeLog; echo 'git directory not found: installing possibly empty changelog.' >&2) + +srpm: ChangeLog dist + @rpmbuild -ts $(PACKAGE)-$(VERSION).tar.gz execdir = $(sbindir) diff --git a/conf/Makefile.am b/conf/Makefile.am new file mode 100644 index 0000000..67a31d8 --- /dev/null +++ b/conf/Makefile.am @@ -0,0 +1,3 @@ +confdir = $(sysconfdir)/kolab +conf_DATA = \ + kolab.conf diff --git a/configure.ac b/configure.ac index b58ab26..3b4bb20 100644 --- a/configure.ac +++ b/configure.ac @@ -11,15 +11,21 @@ AM_PATH_PYTHON GETTEXT_PACKAGE=pykolab AC_SUBST(GETTEXT_PACKAGE) -#AM_GLIB_GNU_GETTEXT -#AC_PROG_INTLTOOL +AM_GLIB_GNU_GETTEXT +AC_PROG_INTLTOOL AC_PROG_LN_S AC_SUBST(DATESTAMP,`date +"%a %b %d %Y"`) AC_CONFIG_FILES([ Makefile +pykolab.spec +conf/Makefile +kolab/Makefile +kolabd/Makefile +po/Makefile.in pykolab/constants.py +pykolab/Makefile ]) AC_OUTPUT diff --git a/kolab/Makefile.am b/kolab/Makefile.am new file mode 100644 index 0000000..de99da7 --- /dev/null +++ b/kolab/Makefile.am @@ -0,0 +1,2 @@ +kolabdir = $(datadir)/$(package)/kolab +kolab_PYTHON = $(wildcard *.py) diff --git a/kolabd/Makefile.am b/kolabd/Makefile.am new file mode 100644 index 0000000..0c888f8 --- /dev/null +++ b/kolabd/Makefile.am @@ -0,0 +1,2 @@ +kolabddir = $(datadir)/$(package)/kolabd +kolabd_PYTHON = $(wildcard *.py) diff --git a/po/Makefile.in.in b/po/Makefile.in.in new file mode 100644 index 0000000..cc8a222 --- /dev/null +++ b/po/Makefile.in.in @@ -0,0 +1,217 @@ +# Makefile for program source directory in GNU NLS utilities package. +# Copyright (C) 1995, 1996, 1997 by Ulrich Drepper <drepper@gnu.ai.mit.edu> +# Copyright (C) 2004-2008 Rodney Dawes <dobey.pwns@gmail.com> +# +# This file may be copied and used freely without restrictions. It may +# be used in projects which are not available under a GNU Public License, +# but which still want to provide support for the GNU gettext functionality. +# +# - Modified by Owen Taylor <otaylor@redhat.com> to use GETTEXT_PACKAGE +# instead of PACKAGE and to look for po2tbl in ./ not in intl/ +# +# - Modified by jacob berkman <jacob@ximian.com> to install +# Makefile.in.in and po2tbl.sed.in for use with glib-gettextize +# +# - Modified by Rodney Dawes <dobey.pwns@gmail.com> for use with intltool +# +# We have the following line for use by intltoolize: +# INTLTOOL_MAKEFILE + +GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ +PACKAGE = @PACKAGE@ +VERSION = @VERSION@ + +SHELL = @SHELL@ + +srcdir = @srcdir@ +top_srcdir = @top_srcdir@ +top_builddir = @top_builddir@ +VPATH = @srcdir@ + +prefix = @prefix@ +exec_prefix = @exec_prefix@ +datadir = @datadir@ +datarootdir = @datarootdir@ +libdir = @libdir@ +DATADIRNAME = @DATADIRNAME@ +itlocaledir = $(prefix)/$(DATADIRNAME)/locale +subdir = po +install_sh = @install_sh@ +# Automake >= 1.8 provides @mkdir_p@. +# Until it can be supposed, use the safe fallback: +mkdir_p = $(install_sh) -d + +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ + +GMSGFMT = @GMSGFMT@ +MSGFMT = @MSGFMT@ +XGETTEXT = @XGETTEXT@ +INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ +INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ +MSGMERGE = INTLTOOL_EXTRACT=$(INTLTOOL_EXTRACT) srcdir=$(srcdir) $(INTLTOOL_UPDATE) --gettext-package $(GETTEXT_PACKAGE) --dist +GENPOT = INTLTOOL_EXTRACT=$(INTLTOOL_EXTRACT) srcdir=$(srcdir) $(INTLTOOL_UPDATE) --gettext-package $(GETTEXT_PACKAGE) --pot + +ALL_LINGUAS = @ALL_LINGUAS@ + +PO_LINGUAS=$(shell if test -r $(srcdir)/LINGUAS; then grep -v "^\#" $(srcdir)/LINGUAS; else echo "$(ALL_LINGUAS)"; fi) + +USER_LINGUAS=$(shell if test -n "$(LINGUAS)"; then LLINGUAS="$(LINGUAS)"; ALINGUAS="$(ALL_LINGUAS)"; for lang in $$LLINGUAS; do if test -n "`grep \^$$lang$$ $(srcdir)/LINGUAS 2>/dev/null`" -o -n "`echo $$ALINGUAS|tr ' ' '\n'|grep \^$$lang$$`"; then printf "$$lang "; fi; done; fi) + +USE_LINGUAS=$(shell if test -n "$(USER_LINGUAS)" -o -n "$(LINGUAS)"; then LLINGUAS="$(USER_LINGUAS)"; else if test -n "$(PO_LINGUAS)"; then LLINGUAS="$(PO_LINGUAS)"; else LLINGUAS="$(ALL_LINGUAS)"; fi; fi; for lang in $$LLINGUAS; do printf "$$lang "; done) + +POFILES=$(shell LINGUAS="$(PO_LINGUAS)"; for lang in $$LINGUAS; do printf "$$lang.po "; done) + +DISTFILES = Makefile.in.in POTFILES.in $(POFILES) +EXTRA_DISTFILES = ChangeLog POTFILES.skip Makevars LINGUAS + +POTFILES = \ +# This comment gets stripped out + +CATALOGS=$(shell LINGUAS="$(USE_LINGUAS)"; for lang in $$LINGUAS; do printf "$$lang.gmo "; done) + +.SUFFIXES: +.SUFFIXES: .po .pox .gmo .mo .msg .cat + +.po.pox: + $(MAKE) $(GETTEXT_PACKAGE).pot + $(MSGMERGE) $< $(GETTEXT_PACKAGE).pot -o $*.pox + +.po.mo: + $(MSGFMT) -o $@ $< + +.po.gmo: + file=`echo $* | sed 's,.*/,,'`.gmo \ + && rm -f $$file && $(GMSGFMT) -o $$file $< + +.po.cat: + sed -f ../intl/po2msg.sed < $< > $*.msg \ + && rm -f $@ && gencat $@ $*.msg + + +all: all-@USE_NLS@ + +all-yes: $(CATALOGS) +all-no: + +$(GETTEXT_PACKAGE).pot: $(POTFILES) + $(GENPOT) + +install: install-data +install-data: install-data-@USE_NLS@ +install-data-no: all +install-data-yes: all + linguas="$(USE_LINGUAS)"; \ + for lang in $$linguas; do \ + dir=$(DESTDIR)$(itlocaledir)/$$lang/LC_MESSAGES; \ + $(mkdir_p) $$dir; \ + if test -r $$lang.gmo; then \ + $(INSTALL_DATA) $$lang.gmo $$dir/$(GETTEXT_PACKAGE).mo; \ + echo "installing $$lang.gmo as $$dir/$(GETTEXT_PACKAGE).mo"; \ + else \ + $(INSTALL_DATA) $(srcdir)/$$lang.gmo $$dir/$(GETTEXT_PACKAGE).mo; \ + echo "installing $(srcdir)/$$lang.gmo as" \ + "$$dir/$(GETTEXT_PACKAGE).mo"; \ + fi; \ + if test -r $$lang.gmo.m; then \ + $(INSTALL_DATA) $$lang.gmo.m $$dir/$(GETTEXT_PACKAGE).mo.m; \ + echo "installing $$lang.gmo.m as $$dir/$(GETTEXT_PACKAGE).mo.m"; \ + else \ + if test -r $(srcdir)/$$lang.gmo.m ; then \ + $(INSTALL_DATA) $(srcdir)/$$lang.gmo.m \ + $$dir/$(GETTEXT_PACKAGE).mo.m; \ + echo "installing $(srcdir)/$$lang.gmo.m as" \ + "$$dir/$(GETTEXT_PACKAGE).mo.m"; \ + else \ + true; \ + fi; \ + fi; \ + done + +# Empty stubs to satisfy archaic automake needs +dvi info ctags tags CTAGS TAGS ID: + +# Define this as empty until I found a useful application. +install-exec installcheck: + +uninstall: + linguas="$(USE_LINGUAS)"; \ + for lang in $$linguas; do \ + rm -f $(DESTDIR)$(itlocaledir)/$$lang/LC_MESSAGES/$(GETTEXT_PACKAGE).mo; \ + rm -f $(DESTDIR)$(itlocaledir)/$$lang/LC_MESSAGES/$(GETTEXT_PACKAGE).mo.m; \ + done + +check: all $(GETTEXT_PACKAGE).pot + rm -f missing notexist + srcdir=$(srcdir) $(INTLTOOL_UPDATE) -m + if [ -r missing -o -r notexist ]; then \ + exit 1; \ + fi + +mostlyclean: + rm -f *.pox $(GETTEXT_PACKAGE).pot *.old.po cat-id-tbl.tmp + rm -f .intltool-merge-cache + +clean: mostlyclean + +distclean: clean + rm -f Makefile Makefile.in POTFILES stamp-it + rm -f *.mo *.msg *.cat *.cat.m *.gmo + +maintainer-clean: distclean + @echo "This command is intended for maintainers to use;" + @echo "it deletes files that may require special tools to rebuild." + rm -f Makefile.in.in + +distdir = ../$(PACKAGE)-$(VERSION)/$(subdir) +dist distdir: $(DISTFILES) + dists="$(DISTFILES)"; \ + extra_dists="$(EXTRA_DISTFILES)"; \ + for file in $$extra_dists; do \ + test -f $(srcdir)/$$file && dists="$$dists $(srcdir)/$$file"; \ + done; \ + for file in $$dists; do \ + test -f $$file || file="$(srcdir)/$$file"; \ + ln $$file $(distdir) 2> /dev/null \ + || cp -p $$file $(distdir); \ + done + +update-po: Makefile + $(MAKE) $(GETTEXT_PACKAGE).pot + tmpdir=`pwd`; \ + linguas="$(USE_LINGUAS)"; \ + for lang in $$linguas; do \ + echo "$$lang:"; \ + result="`$(MSGMERGE) -o $$tmpdir/$$lang.new.po $$lang`"; \ + if $$result; then \ + if cmp $(srcdir)/$$lang.po $$tmpdir/$$lang.new.po >/dev/null 2>&1; then \ + rm -f $$tmpdir/$$lang.new.po; \ + else \ + if mv -f $$tmpdir/$$lang.new.po $$lang.po; then \ + :; \ + else \ + echo "msgmerge for $$lang.po failed: cannot move $$tmpdir/$$lang.new.po to $$lang.po" 1>&2; \ + rm -f $$tmpdir/$$lang.new.po; \ + exit 1; \ + fi; \ + fi; \ + else \ + echo "msgmerge for $$lang.gmo failed!"; \ + rm -f $$tmpdir/$$lang.new.po; \ + fi; \ + done + +Makefile POTFILES: stamp-it + @if test ! -f $@; then \ + rm -f stamp-it; \ + $(MAKE) stamp-it; \ + fi + +stamp-it: Makefile.in.in $(top_builddir)/config.status POTFILES.in + cd $(top_builddir) \ + && CONFIG_FILES=$(subdir)/Makefile.in CONFIG_HEADERS= CONFIG_LINKS= \ + $(SHELL) ./config.status + +# Tell versions [3.59,3.63) of GNU make not to export all variables. +# Otherwise a system limit (for SysV at least) may be exceeded. +.NOEXPORT: diff --git a/po/POTFILES.in b/po/POTFILES.in new file mode 100644 index 0000000..ffd4bce --- /dev/null +++ b/po/POTFILES.in @@ -0,0 +1,46 @@ +[encoding: UTF-8] +conf.py +cyruslib.py +kolabd/__init__.py +kolabd.py +kolab/__init__.py +kolab.py +kolabtest.py +kwap/__init__.py +kwap/manage.py +kwap/settings.py +kwap/urls.py +pykolab-0.1/cyruslib.py +pykolab-0.1/kolabd/__init__.py +pykolab-0.1/kolab/__init__.py +pykolab/auth/__init__.py +pykolab/auth/ldap/__init__.py +pykolab/base.py +pykolab/cli/__init__.py +pykolab/conf/defaults.py +pykolab/conf/__init__.py +pykolab/conf/runtime.py +pykolab/constants.py +pykolab/imap/__init__.py +pykolab/__init__.py +pykolab/logger.py +pykolab/plugin/defaultfolders/__init__.py +pykolab/plugin/dynamicquota/__init__.py +pykolab/plugin/__init__.py +pykolab/plugin/recipientpolicy/__init__.py +pykolab/plugins.py +pykolab/setup/imap.py +pykolab/setup/__init__.py +pykolab/setup/ldap_setup.py +pykolab/tests/calendar.py +pykolab/tests/constants.py +pykolab/tests/contacts.py +pykolab/tests/create-contacts.py +pykolab/tests/__init__.py +pykolab/tests/mail.py +pykolab/tests/zpush/__init__.py +pykolab/tests/zpush/test_000_000.py +pykolab/tests/zpush/test_000_001.py +pykolab/translate.py +pykolab/utils.py +setup-kolab.py diff --git a/po/POTFILES.skip b/po/POTFILES.skip new file mode 100644 index 0000000..2b8d840 --- /dev/null +++ b/po/POTFILES.skip @@ -0,0 +1 @@ +pykolab/constants.py.in diff --git a/po/bn.po b/po/bn.po new file mode 100644 index 0000000..ae00f78 --- /dev/null +++ b/po/bn.po @@ -0,0 +1,563 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-02-21 21:23+0000\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" + +#: ../conf.py:37 ../kolabd.py:33 ../kolab.py:34 ../kolabtest.py:34 +#: ../setup-kolab.py:36 +msgid "Cannot load pykolab/logger.py:" +msgstr "" + +#: ../kolabd/__init__.py:44 ../pykolab-0.1/kolabd/__init__.py:44 +msgid "Daemon Options" +msgstr "" + +#: ../kolabd/__init__.py:50 ../pykolab-0.1/kolabd/__init__.py:50 +msgid "For to the background." +msgstr "" + +#: ../kolabd/__init__.py:78 ../pykolab-0.1/kolabd/__init__.py:78 +msgid "Interrupted by user" +msgstr "" + +#: ../kolabd/__init__.py:82 ../kolabd/__init__.py:90 +#: ../pykolab-0.1/kolabd/__init__.py:82 ../pykolab-0.1/kolabd/__init__.py:90 +msgid "Traceback occurred, please report a bug at http://issues.kolab.org" +msgstr "" + +#: ../kolabd/__init__.py:86 ../pykolab-0.1/kolabd/__init__.py:86 +#, python-format +msgid "Type Error: %s" +msgstr "" + +#: ../kolabd/__init__.py:95 ../pykolab-0.1/kolabd/__init__.py:95 +msgid "Sleeping for 10 seconds..." +msgstr "" + +#: ../pykolab/auth/ldap/__init__.py:42 +msgid "Connecting to LDAP..." +msgstr "" + +#: ../pykolab/cli/__init__.py:40 +msgid "Domain Options" +msgstr "" + +#: ../pykolab/cli/__init__.py:45 +msgid "Review LDIF before committed" +msgstr "" + +#: ../pykolab/cli/__init__.py:55 +#, python-format +msgid "TODO: self.check_%s()" +msgstr "" + +#: ../pykolab/cli/__init__.py:81 +#, python-format +msgid "Deleting domain %s" +msgstr "" + +#: ../pykolab/cli/__init__.py:93 +#, python-format +msgid "No domain %s exists." +msgstr "" + +#: ../pykolab/cli/__init__.py:99 +msgid "TODO: Figure out where the domain should actually be added." +msgstr "" + +#: ../pykolab/cli/__init__.py:103 +#, python-format +msgid "Adding domain %s" +msgstr "" + +#. The dn of our new entry/object +#: ../pykolab/cli/__init__.py:106 +msgid "TODO: Make the format for a new domain configurable." +msgstr "" + +#. A dict to help build the "body" of the object +#: ../pykolab/cli/__init__.py:110 +msgid "TODO: Make what a domain looks like configurable." +msgstr "" + +#: ../pykolab/cli/__init__.py:122 +msgid "" +"TODO: Prompt for organization name/description. For now, use domain name." +msgstr "" + +#: ../pykolab/cli/__init__.py:130 +msgid "Please ACK or NACK the above LDIF:" +msgstr "" + +#: ../pykolab/cli/__init__.py:146 +#, python-format +msgid "Domain %s already exists." +msgstr "" + +#: ../pykolab/cli/__init__.py:156 +msgid "Actions" +msgstr "" + +#: ../pykolab/conf/__init__.py:81 +#, python-format +msgid "Setting %s to %r (from defaults)" +msgstr "" + +#: ../pykolab/conf/__init__.py:92 +#, python-format +msgid "Setting %s to %r (from runtime)" +msgstr "" + +#: ../pykolab/conf/__init__.py:106 +#, python-format +msgid "Setting %s to %r (from CLI, verified)" +msgstr "" + +#: ../pykolab/conf/__init__.py:109 +#, python-format +msgid "Setting %s to %r (from CLI, not checked)" +msgstr "" + +#: ../pykolab/conf/__init__.py:154 ../pykolab/conf/__init__.py:208 +#, python-format +msgid "Setting %s_%s to '****' (from configuration file)" +msgstr "" + +#: ../pykolab/conf/__init__.py:156 ../pykolab/conf/__init__.py:210 +#, python-format +msgid "Setting %s_%s to %r (from configuration file)" +msgstr "" + +#: ../pykolab/conf/__init__.py:165 +msgid "Setting options from configuration file" +msgstr "" + +#: ../pykolab/conf/__init__.py:224 +#, python-format +msgid "Configuration file %s not readable" +msgstr "" + +#: ../pykolab/conf/__init__.py:227 +#, python-format +msgid "Reading configuration file %s" +msgstr "" + +#: ../pykolab/conf/__init__.py:231 +#, python-format +msgid "Invalid configuration file %s" +msgstr "" + +#: ../pykolab/conf/__init__.py:234 +#, python-format +msgid "No master configuration section [revisor] in configuration file %s" +msgstr "" + +#. # +#. # Runtime Options +#. # +#: ../pykolab/conf/__init__.py:253 +msgid "Runtime Options" +msgstr "" + +#: ../pykolab/conf/__init__.py:258 +msgid "Configuration file to use" +msgstr "" + +#: ../pykolab/conf/__init__.py:264 +msgid "Set the debugging verbosity. Maximum is 99" +msgstr "" + +#: ../pykolab/conf/__init__.py:270 +msgid "Log file to use" +msgstr "" + +#: ../pykolab/conf/__init__.py:276 +msgid "Be quiet." +msgstr "" + +#: ../pykolab/conf/__init__.py:282 +msgid "Answer yes to all questions." +msgstr "" + +#: ../pykolab/conf/__init__.py:310 +msgid "No command supplied" +msgstr "" + +#: ../pykolab/conf/__init__.py:392 +msgid "Insufficient options. Need section, key and value -in that order." +msgstr "" + +#: ../pykolab/conf/__init__.py:395 +#, python-format +msgid "No section '%s' exists." +msgstr "" + +#: ../pykolab/conf/__init__.py:424 +#, python-format +msgid "Setting %s to %r (from the default values for CLI options)" +msgstr "" + +#: ../pykolab/conf/__init__.py:441 +#, python-format +msgid "Option %s/%s does not exist in config file %s, pulling from defaults" +msgstr "" + +#: ../pykolab/conf/__init__.py:449 ../pykolab/conf/__init__.py:452 +msgid "Option does not exist in defaults." +msgstr "" + +#: ../pykolab/conf/__init__.py:450 ../pykolab/conf/__init__.py:453 +msgid "Not available" +msgstr "" + +#: ../pykolab/conf/__init__.py:462 +#, python-format +msgid "Configuration file %s not readable." +msgstr "" + +#: ../pykolab/conf/__init__.py:465 +#, python-format +msgid "Configuration file %s does not exist." +msgstr "" + +#: ../pykolab/conf/__init__.py:470 +msgid "" +"WARNING: A negative debug level value does not make this program be any more " +"silent." +msgstr "" + +#: ../pykolab/conf/__init__.py:476 +msgid "" +"WARNING: This program has 9 levels of verbosity. Using the maximum of 9." +msgstr "" + +#: ../pykolab/conf/__init__.py:486 +msgid "No imaplib library found." +msgstr "" + +#: ../pykolab/conf/__init__.py:496 +msgid "No LMTP class found in the smtplib library." +msgstr "" + +#: ../pykolab/conf/__init__.py:506 +msgid "No SMTP class found in the smtplib library." +msgstr "" + +#: ../pykolab/conf/__init__.py:517 +#, python-format +msgid "Found you specified a specific set of items to test: %s" +msgstr "" + +#: ../pykolab/conf/__init__.py:525 +#, python-format +msgid "Selectively selecting: %s" +msgstr "" + +#: ../pykolab/constants.py:39 +msgid "PyKolab is a Kolab Systems product. For more information " +msgstr "" + +#: ../pykolab/constants.py:53 +msgid "WARNING" +msgstr "" + +#: ../pykolab/constants.py:53 +msgid "The Fully Qualified " +msgstr "" + +#: ../pykolab/constants.py:73 +msgid "389 Directory Server or Red Hat Directory Server" +msgstr "" + +#: ../pykolab/constants.py:77 ../pykolab/constants.py:81 +msgid "OpenLDAP or compatible" +msgstr "" + +#: ../pykolab/imap/__init__.py:74 ../pykolab/imap/__init__.py:79 +#, python-format +msgid "Creating new INBOX for user: %s" +msgstr "" + +#: ../pykolab/imap/__init__.py:145 +#, python-format +msgid "Setting new quota for folder %s to %r" +msgstr "" + +#: ../pykolab/imap/__init__.py:149 +#, python-format +msgid "Quota for %s currently is %s" +msgstr "" + +#: ../pykolab/imap/__init__.py:152 +#, python-format +msgid "Correcting quota for %s to %s (currently %s)" +msgstr "" + +#: ../pykolab/imap/__init__.py:178 +#, python-format +msgid "Folder has no corresponding user (1): %s" +msgstr "" + +#: ../pykolab/imap/__init__.py:181 +#, python-format +msgid "Folder has no corresponding user (2): %s" +msgstr "" + +#: ../pykolab/logger.py:42 +#, python-format +msgid "Cannot log to file %s: %s" +msgstr "" + +#: ../pykolab/logger.py:87 ../pykolab/logger.py:96 +msgid "Do you want to continue? [Y/n]" +msgstr "" + +#: ../pykolab/logger.py:90 ../pykolab/logger.py:99 +msgid "Abort! Abort! Abort!" +msgstr "" + +#: ../pykolab/plugins.py:56 +#, python-format +msgid "ImportError for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:59 +#, python-format +msgid "RuntimeError for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:62 +#, python-format +msgid "Plugin %s failed to load (%s: %s)" +msgstr "" + +#: ../pykolab/plugins.py:89 ../pykolab/plugins.py:91 +#, python-format +msgid "Cannot set defaults for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:93 +#, python-format +msgid "Cannot set defaults for plugin %s: Unknown Error" +msgstr "" + +#: ../pykolab/plugins.py:96 +#, python-format +msgid "Not setting defaults for plugin %s: No function 'set_defaults()'" +msgstr "" + +#: ../pykolab/plugins.py:113 +#, python-format +msgid "Cannot set runtime for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:115 +#, python-format +msgid "Not setting runtime for plugin %s: No function 'set_runtime()'" +msgstr "" + +#: ../pykolab/plugins.py:132 +#, python-format +msgid "Cannot add options for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:134 +#, python-format +msgid "Not adding options for plugin %s: No function 'add_options()'" +msgstr "" + +#: ../pykolab/plugins.py:152 +#, python-format +msgid "Cannot check options for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:154 +#, python-format +msgid "Not checking options for plugin %s: No function 'check_options()'" +msgstr "" + +#: ../pykolab/plugins.py:192 ../pykolab/plugins.py:194 +#, python-format +msgid "Cannot execute hook %s for plugin %s: %s" +msgstr "" + +#: ../pykolab/setup/ldap_setup.py:29 +msgid "Cannot load Python LDAP libraries." +msgstr "" + +#: ../pykolab/setup/ldap_setup.py:53 +#, python-format +msgid "Warning: LDAP Service '%s' is available on " +msgstr "" + +#: ../pykolab/setup/ldap_setup.py:56 +#, python-format +msgid "Found system service %s." +msgstr "" + +#. ldap_uri = utils.ask_question(_("LDAP URI (read/write)"), "ldap://ldap.%s" %(constants.domainname)) +#: ../pykolab/setup/ldap_setup.py:59 +msgid "LDAP URI (read/write)" +msgstr "" + +#. This is a funny input error ("") +#: ../pykolab/setup/ldap_setup.py:69 ../pykolab/setup/ldap_setup.py:76 +msgid "Could not connect to LDAP server due to " +msgstr "" + +#: ../pykolab/setup/ldap_setup.py:73 +msgid "Your username or password are incorrect" +msgstr "" + +#: ../pykolab/tests/calendar.py:146 +#, python-format +msgid "Creating %d Events" +msgstr "" + +#: ../pykolab/tests/calendar.py:177 +#, python-format +msgid "Creating Calendar item number %d" +msgstr "" + +#: ../pykolab/tests/calendar.py:189 ../pykolab/tests/contacts.py:133 +#, python-format +msgid "Sending UID message %s through SMTP targeting user %s@%s" +msgstr "" + +#: ../pykolab/tests/calendar.py:192 ../pykolab/tests/contacts.py:136 +#, python-format +msgid "Sending UID message %s through LMTP targeting user %s@%s" +msgstr "" + +#: ../pykolab/tests/calendar.py:195 ../pykolab/tests/contacts.py:139 +#, python-format +msgid "Saving UID message %s to IMAP (user %s, folder %s)" +msgstr "" + +#: ../pykolab/tests/calendar.py:198 ../pykolab/tests/contacts.py:142 +#: ../pykolab/tests/mail.py:125 +msgid "Somehow ended up NOT sending these messages" +msgstr "" + +#: ../pykolab/tests/contacts.py:97 +#, python-format +msgid "Creating %d Contacts" +msgstr "" + +#: ../pykolab/tests/contacts.py:121 +#, python-format +msgid "Creating Contact item number %d" +msgstr "" + +#: ../pykolab/tests/__init__.py:35 +msgid "Test Options" +msgstr "" + +#: ../pykolab/tests/__init__.py:42 +#, python-format +msgid "Submit a number of items to the %s" +msgstr "" + +#: ../pykolab/tests/__init__.py:48 +msgid "Run tests in suite SUITE. Implies a certain set of items being tested." +msgstr "" + +#: ../pykolab/tests/__init__.py:51 +msgid "Content Delivery Options" +msgstr "" + +#: ../pykolab/tests/__init__.py:57 +msgid "" +"Send messages containing the items through mail (requires proper " +"infrastructure)" +msgstr "" + +#: ../pykolab/tests/__init__.py:63 +msgid "Inject messages containing the items through IMAP (requires imaplib)" +msgstr "" + +#: ../pykolab/tests/__init__.py:69 +msgid "Deliver messages containing the items through LMTP (requires imaplib)" +msgstr "" + +#: ../pykolab/tests/__init__.py:80 +#, python-format +msgid "Tests for suite %s failed to load. Aborting." +msgstr "" + +#: ../pykolab/tests/mail.py:92 +#, python-format +msgid "Creating %d Mails" +msgstr "" + +#: ../pykolab/tests/mail.py:116 +#, python-format +msgid "Sending message %s through SMTP targeting user %s@%s" +msgstr "" + +#: ../pykolab/tests/mail.py:119 +#, python-format +msgid "Sending message %s through LMTP targeting user %s@%s" +msgstr "" + +#: ../pykolab/tests/mail.py:122 +#, python-format +msgid "Saving message %s to IMAP (user %s, folder %s)" +msgstr "" + +#: ../pykolab/tests/zpush/test_000_000.py:96 +#, python-format +msgid "Deleting mailbox: %s" +msgstr "" + +#: ../pykolab/tests/zpush/test_000_000.py:105 +#, python-format +msgid "Creating mailbox: %s" +msgstr "" + +#: ../pykolab/tests/zpush/test_000_000.py:121 +#, python-format +msgid "Authentication failure for %s" +msgstr "" + +#: ../pykolab/tests/zpush/test_000_001.py:48 +#, python-format +msgid "Could not load %sItem from %s, skipping the testing." +msgstr "" + +#: ../pykolab/utils.py:71 +msgid "Please answer 'yes' or 'no'." +msgstr "" + +#: ../setup-kolab.py:52 +#, python-format +msgid "Cannot find %s_setup()." +msgstr "" + +#: ../setup-kolab.py:54 +#, python-format +msgid "Cannot load setup for %s." +msgstr "" + +#. Means we get to ask some questions. +#: ../setup-kolab.py:58 +msgid "Please select the components to set up:" +msgstr "" + +#: ../setup-kolab.py:65 +msgid "Selection" +msgstr "" diff --git a/po/bn_IN.po b/po/bn_IN.po new file mode 100644 index 0000000..ae00f78 --- /dev/null +++ b/po/bn_IN.po @@ -0,0 +1,563 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-02-21 21:23+0000\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" + +#: ../conf.py:37 ../kolabd.py:33 ../kolab.py:34 ../kolabtest.py:34 +#: ../setup-kolab.py:36 +msgid "Cannot load pykolab/logger.py:" +msgstr "" + +#: ../kolabd/__init__.py:44 ../pykolab-0.1/kolabd/__init__.py:44 +msgid "Daemon Options" +msgstr "" + +#: ../kolabd/__init__.py:50 ../pykolab-0.1/kolabd/__init__.py:50 +msgid "For to the background." +msgstr "" + +#: ../kolabd/__init__.py:78 ../pykolab-0.1/kolabd/__init__.py:78 +msgid "Interrupted by user" +msgstr "" + +#: ../kolabd/__init__.py:82 ../kolabd/__init__.py:90 +#: ../pykolab-0.1/kolabd/__init__.py:82 ../pykolab-0.1/kolabd/__init__.py:90 +msgid "Traceback occurred, please report a bug at http://issues.kolab.org" +msgstr "" + +#: ../kolabd/__init__.py:86 ../pykolab-0.1/kolabd/__init__.py:86 +#, python-format +msgid "Type Error: %s" +msgstr "" + +#: ../kolabd/__init__.py:95 ../pykolab-0.1/kolabd/__init__.py:95 +msgid "Sleeping for 10 seconds..." +msgstr "" + +#: ../pykolab/auth/ldap/__init__.py:42 +msgid "Connecting to LDAP..." +msgstr "" + +#: ../pykolab/cli/__init__.py:40 +msgid "Domain Options" +msgstr "" + +#: ../pykolab/cli/__init__.py:45 +msgid "Review LDIF before committed" +msgstr "" + +#: ../pykolab/cli/__init__.py:55 +#, python-format +msgid "TODO: self.check_%s()" +msgstr "" + +#: ../pykolab/cli/__init__.py:81 +#, python-format +msgid "Deleting domain %s" +msgstr "" + +#: ../pykolab/cli/__init__.py:93 +#, python-format +msgid "No domain %s exists." +msgstr "" + +#: ../pykolab/cli/__init__.py:99 +msgid "TODO: Figure out where the domain should actually be added." +msgstr "" + +#: ../pykolab/cli/__init__.py:103 +#, python-format +msgid "Adding domain %s" +msgstr "" + +#. The dn of our new entry/object +#: ../pykolab/cli/__init__.py:106 +msgid "TODO: Make the format for a new domain configurable." +msgstr "" + +#. A dict to help build the "body" of the object +#: ../pykolab/cli/__init__.py:110 +msgid "TODO: Make what a domain looks like configurable." +msgstr "" + +#: ../pykolab/cli/__init__.py:122 +msgid "" +"TODO: Prompt for organization name/description. For now, use domain name." +msgstr "" + +#: ../pykolab/cli/__init__.py:130 +msgid "Please ACK or NACK the above LDIF:" +msgstr "" + +#: ../pykolab/cli/__init__.py:146 +#, python-format +msgid "Domain %s already exists." +msgstr "" + +#: ../pykolab/cli/__init__.py:156 +msgid "Actions" +msgstr "" + +#: ../pykolab/conf/__init__.py:81 +#, python-format +msgid "Setting %s to %r (from defaults)" +msgstr "" + +#: ../pykolab/conf/__init__.py:92 +#, python-format +msgid "Setting %s to %r (from runtime)" +msgstr "" + +#: ../pykolab/conf/__init__.py:106 +#, python-format +msgid "Setting %s to %r (from CLI, verified)" +msgstr "" + +#: ../pykolab/conf/__init__.py:109 +#, python-format +msgid "Setting %s to %r (from CLI, not checked)" +msgstr "" + +#: ../pykolab/conf/__init__.py:154 ../pykolab/conf/__init__.py:208 +#, python-format +msgid "Setting %s_%s to '****' (from configuration file)" +msgstr "" + +#: ../pykolab/conf/__init__.py:156 ../pykolab/conf/__init__.py:210 +#, python-format +msgid "Setting %s_%s to %r (from configuration file)" +msgstr "" + +#: ../pykolab/conf/__init__.py:165 +msgid "Setting options from configuration file" +msgstr "" + +#: ../pykolab/conf/__init__.py:224 +#, python-format +msgid "Configuration file %s not readable" +msgstr "" + +#: ../pykolab/conf/__init__.py:227 +#, python-format +msgid "Reading configuration file %s" +msgstr "" + +#: ../pykolab/conf/__init__.py:231 +#, python-format +msgid "Invalid configuration file %s" +msgstr "" + +#: ../pykolab/conf/__init__.py:234 +#, python-format +msgid "No master configuration section [revisor] in configuration file %s" +msgstr "" + +#. # +#. # Runtime Options +#. # +#: ../pykolab/conf/__init__.py:253 +msgid "Runtime Options" +msgstr "" + +#: ../pykolab/conf/__init__.py:258 +msgid "Configuration file to use" +msgstr "" + +#: ../pykolab/conf/__init__.py:264 +msgid "Set the debugging verbosity. Maximum is 99" +msgstr "" + +#: ../pykolab/conf/__init__.py:270 +msgid "Log file to use" +msgstr "" + +#: ../pykolab/conf/__init__.py:276 +msgid "Be quiet." +msgstr "" + +#: ../pykolab/conf/__init__.py:282 +msgid "Answer yes to all questions." +msgstr "" + +#: ../pykolab/conf/__init__.py:310 +msgid "No command supplied" +msgstr "" + +#: ../pykolab/conf/__init__.py:392 +msgid "Insufficient options. Need section, key and value -in that order." +msgstr "" + +#: ../pykolab/conf/__init__.py:395 +#, python-format +msgid "No section '%s' exists." +msgstr "" + +#: ../pykolab/conf/__init__.py:424 +#, python-format +msgid "Setting %s to %r (from the default values for CLI options)" +msgstr "" + +#: ../pykolab/conf/__init__.py:441 +#, python-format +msgid "Option %s/%s does not exist in config file %s, pulling from defaults" +msgstr "" + +#: ../pykolab/conf/__init__.py:449 ../pykolab/conf/__init__.py:452 +msgid "Option does not exist in defaults." +msgstr "" + +#: ../pykolab/conf/__init__.py:450 ../pykolab/conf/__init__.py:453 +msgid "Not available" +msgstr "" + +#: ../pykolab/conf/__init__.py:462 +#, python-format +msgid "Configuration file %s not readable." +msgstr "" + +#: ../pykolab/conf/__init__.py:465 +#, python-format +msgid "Configuration file %s does not exist." +msgstr "" + +#: ../pykolab/conf/__init__.py:470 +msgid "" +"WARNING: A negative debug level value does not make this program be any more " +"silent." +msgstr "" + +#: ../pykolab/conf/__init__.py:476 +msgid "" +"WARNING: This program has 9 levels of verbosity. Using the maximum of 9." +msgstr "" + +#: ../pykolab/conf/__init__.py:486 +msgid "No imaplib library found." +msgstr "" + +#: ../pykolab/conf/__init__.py:496 +msgid "No LMTP class found in the smtplib library." +msgstr "" + +#: ../pykolab/conf/__init__.py:506 +msgid "No SMTP class found in the smtplib library." +msgstr "" + +#: ../pykolab/conf/__init__.py:517 +#, python-format +msgid "Found you specified a specific set of items to test: %s" +msgstr "" + +#: ../pykolab/conf/__init__.py:525 +#, python-format +msgid "Selectively selecting: %s" +msgstr "" + +#: ../pykolab/constants.py:39 +msgid "PyKolab is a Kolab Systems product. For more information " +msgstr "" + +#: ../pykolab/constants.py:53 +msgid "WARNING" +msgstr "" + +#: ../pykolab/constants.py:53 +msgid "The Fully Qualified " +msgstr "" + +#: ../pykolab/constants.py:73 +msgid "389 Directory Server or Red Hat Directory Server" +msgstr "" + +#: ../pykolab/constants.py:77 ../pykolab/constants.py:81 +msgid "OpenLDAP or compatible" +msgstr "" + +#: ../pykolab/imap/__init__.py:74 ../pykolab/imap/__init__.py:79 +#, python-format +msgid "Creating new INBOX for user: %s" +msgstr "" + +#: ../pykolab/imap/__init__.py:145 +#, python-format +msgid "Setting new quota for folder %s to %r" +msgstr "" + +#: ../pykolab/imap/__init__.py:149 +#, python-format +msgid "Quota for %s currently is %s" +msgstr "" + +#: ../pykolab/imap/__init__.py:152 +#, python-format +msgid "Correcting quota for %s to %s (currently %s)" +msgstr "" + +#: ../pykolab/imap/__init__.py:178 +#, python-format +msgid "Folder has no corresponding user (1): %s" +msgstr "" + +#: ../pykolab/imap/__init__.py:181 +#, python-format +msgid "Folder has no corresponding user (2): %s" +msgstr "" + +#: ../pykolab/logger.py:42 +#, python-format +msgid "Cannot log to file %s: %s" +msgstr "" + +#: ../pykolab/logger.py:87 ../pykolab/logger.py:96 +msgid "Do you want to continue? [Y/n]" +msgstr "" + +#: ../pykolab/logger.py:90 ../pykolab/logger.py:99 +msgid "Abort! Abort! Abort!" +msgstr "" + +#: ../pykolab/plugins.py:56 +#, python-format +msgid "ImportError for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:59 +#, python-format +msgid "RuntimeError for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:62 +#, python-format +msgid "Plugin %s failed to load (%s: %s)" +msgstr "" + +#: ../pykolab/plugins.py:89 ../pykolab/plugins.py:91 +#, python-format +msgid "Cannot set defaults for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:93 +#, python-format +msgid "Cannot set defaults for plugin %s: Unknown Error" +msgstr "" + +#: ../pykolab/plugins.py:96 +#, python-format +msgid "Not setting defaults for plugin %s: No function 'set_defaults()'" +msgstr "" + +#: ../pykolab/plugins.py:113 +#, python-format +msgid "Cannot set runtime for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:115 +#, python-format +msgid "Not setting runtime for plugin %s: No function 'set_runtime()'" +msgstr "" + +#: ../pykolab/plugins.py:132 +#, python-format +msgid "Cannot add options for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:134 +#, python-format +msgid "Not adding options for plugin %s: No function 'add_options()'" +msgstr "" + +#: ../pykolab/plugins.py:152 +#, python-format +msgid "Cannot check options for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:154 +#, python-format +msgid "Not checking options for plugin %s: No function 'check_options()'" +msgstr "" + +#: ../pykolab/plugins.py:192 ../pykolab/plugins.py:194 +#, python-format +msgid "Cannot execute hook %s for plugin %s: %s" +msgstr "" + +#: ../pykolab/setup/ldap_setup.py:29 +msgid "Cannot load Python LDAP libraries." +msgstr "" + +#: ../pykolab/setup/ldap_setup.py:53 +#, python-format +msgid "Warning: LDAP Service '%s' is available on " +msgstr "" + +#: ../pykolab/setup/ldap_setup.py:56 +#, python-format +msgid "Found system service %s." +msgstr "" + +#. ldap_uri = utils.ask_question(_("LDAP URI (read/write)"), "ldap://ldap.%s" %(constants.domainname)) +#: ../pykolab/setup/ldap_setup.py:59 +msgid "LDAP URI (read/write)" +msgstr "" + +#. This is a funny input error ("") +#: ../pykolab/setup/ldap_setup.py:69 ../pykolab/setup/ldap_setup.py:76 +msgid "Could not connect to LDAP server due to " +msgstr "" + +#: ../pykolab/setup/ldap_setup.py:73 +msgid "Your username or password are incorrect" +msgstr "" + +#: ../pykolab/tests/calendar.py:146 +#, python-format +msgid "Creating %d Events" +msgstr "" + +#: ../pykolab/tests/calendar.py:177 +#, python-format +msgid "Creating Calendar item number %d" +msgstr "" + +#: ../pykolab/tests/calendar.py:189 ../pykolab/tests/contacts.py:133 +#, python-format +msgid "Sending UID message %s through SMTP targeting user %s@%s" +msgstr "" + +#: ../pykolab/tests/calendar.py:192 ../pykolab/tests/contacts.py:136 +#, python-format +msgid "Sending UID message %s through LMTP targeting user %s@%s" +msgstr "" + +#: ../pykolab/tests/calendar.py:195 ../pykolab/tests/contacts.py:139 +#, python-format +msgid "Saving UID message %s to IMAP (user %s, folder %s)" +msgstr "" + +#: ../pykolab/tests/calendar.py:198 ../pykolab/tests/contacts.py:142 +#: ../pykolab/tests/mail.py:125 +msgid "Somehow ended up NOT sending these messages" +msgstr "" + +#: ../pykolab/tests/contacts.py:97 +#, python-format +msgid "Creating %d Contacts" +msgstr "" + +#: ../pykolab/tests/contacts.py:121 +#, python-format +msgid "Creating Contact item number %d" +msgstr "" + +#: ../pykolab/tests/__init__.py:35 +msgid "Test Options" +msgstr "" + +#: ../pykolab/tests/__init__.py:42 +#, python-format +msgid "Submit a number of items to the %s" +msgstr "" + +#: ../pykolab/tests/__init__.py:48 +msgid "Run tests in suite SUITE. Implies a certain set of items being tested." +msgstr "" + +#: ../pykolab/tests/__init__.py:51 +msgid "Content Delivery Options" +msgstr "" + +#: ../pykolab/tests/__init__.py:57 +msgid "" +"Send messages containing the items through mail (requires proper " +"infrastructure)" +msgstr "" + +#: ../pykolab/tests/__init__.py:63 +msgid "Inject messages containing the items through IMAP (requires imaplib)" +msgstr "" + +#: ../pykolab/tests/__init__.py:69 +msgid "Deliver messages containing the items through LMTP (requires imaplib)" +msgstr "" + +#: ../pykolab/tests/__init__.py:80 +#, python-format +msgid "Tests for suite %s failed to load. Aborting." +msgstr "" + +#: ../pykolab/tests/mail.py:92 +#, python-format +msgid "Creating %d Mails" +msgstr "" + +#: ../pykolab/tests/mail.py:116 +#, python-format +msgid "Sending message %s through SMTP targeting user %s@%s" +msgstr "" + +#: ../pykolab/tests/mail.py:119 +#, python-format +msgid "Sending message %s through LMTP targeting user %s@%s" +msgstr "" + +#: ../pykolab/tests/mail.py:122 +#, python-format +msgid "Saving message %s to IMAP (user %s, folder %s)" +msgstr "" + +#: ../pykolab/tests/zpush/test_000_000.py:96 +#, python-format +msgid "Deleting mailbox: %s" +msgstr "" + +#: ../pykolab/tests/zpush/test_000_000.py:105 +#, python-format +msgid "Creating mailbox: %s" +msgstr "" + +#: ../pykolab/tests/zpush/test_000_000.py:121 +#, python-format +msgid "Authentication failure for %s" +msgstr "" + +#: ../pykolab/tests/zpush/test_000_001.py:48 +#, python-format +msgid "Could not load %sItem from %s, skipping the testing." +msgstr "" + +#: ../pykolab/utils.py:71 +msgid "Please answer 'yes' or 'no'." +msgstr "" + +#: ../setup-kolab.py:52 +#, python-format +msgid "Cannot find %s_setup()." +msgstr "" + +#: ../setup-kolab.py:54 +#, python-format +msgid "Cannot load setup for %s." +msgstr "" + +#. Means we get to ask some questions. +#: ../setup-kolab.py:58 +msgid "Please select the components to set up:" +msgstr "" + +#: ../setup-kolab.py:65 +msgid "Selection" +msgstr "" diff --git a/po/ca.po b/po/ca.po new file mode 100644 index 0000000..ae00f78 --- /dev/null +++ b/po/ca.po @@ -0,0 +1,563 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-02-21 21:23+0000\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" + +#: ../conf.py:37 ../kolabd.py:33 ../kolab.py:34 ../kolabtest.py:34 +#: ../setup-kolab.py:36 +msgid "Cannot load pykolab/logger.py:" +msgstr "" + +#: ../kolabd/__init__.py:44 ../pykolab-0.1/kolabd/__init__.py:44 +msgid "Daemon Options" +msgstr "" + +#: ../kolabd/__init__.py:50 ../pykolab-0.1/kolabd/__init__.py:50 +msgid "For to the background." +msgstr "" + +#: ../kolabd/__init__.py:78 ../pykolab-0.1/kolabd/__init__.py:78 +msgid "Interrupted by user" +msgstr "" + +#: ../kolabd/__init__.py:82 ../kolabd/__init__.py:90 +#: ../pykolab-0.1/kolabd/__init__.py:82 ../pykolab-0.1/kolabd/__init__.py:90 +msgid "Traceback occurred, please report a bug at http://issues.kolab.org" +msgstr "" + +#: ../kolabd/__init__.py:86 ../pykolab-0.1/kolabd/__init__.py:86 +#, python-format +msgid "Type Error: %s" +msgstr "" + +#: ../kolabd/__init__.py:95 ../pykolab-0.1/kolabd/__init__.py:95 +msgid "Sleeping for 10 seconds..." +msgstr "" + +#: ../pykolab/auth/ldap/__init__.py:42 +msgid "Connecting to LDAP..." +msgstr "" + +#: ../pykolab/cli/__init__.py:40 +msgid "Domain Options" +msgstr "" + +#: ../pykolab/cli/__init__.py:45 +msgid "Review LDIF before committed" +msgstr "" + +#: ../pykolab/cli/__init__.py:55 +#, python-format +msgid "TODO: self.check_%s()" +msgstr "" + +#: ../pykolab/cli/__init__.py:81 +#, python-format +msgid "Deleting domain %s" +msgstr "" + +#: ../pykolab/cli/__init__.py:93 +#, python-format +msgid "No domain %s exists." +msgstr "" + +#: ../pykolab/cli/__init__.py:99 +msgid "TODO: Figure out where the domain should actually be added." +msgstr "" + +#: ../pykolab/cli/__init__.py:103 +#, python-format +msgid "Adding domain %s" +msgstr "" + +#. The dn of our new entry/object +#: ../pykolab/cli/__init__.py:106 +msgid "TODO: Make the format for a new domain configurable." +msgstr "" + +#. A dict to help build the "body" of the object +#: ../pykolab/cli/__init__.py:110 +msgid "TODO: Make what a domain looks like configurable." +msgstr "" + +#: ../pykolab/cli/__init__.py:122 +msgid "" +"TODO: Prompt for organization name/description. For now, use domain name." +msgstr "" + +#: ../pykolab/cli/__init__.py:130 +msgid "Please ACK or NACK the above LDIF:" +msgstr "" + +#: ../pykolab/cli/__init__.py:146 +#, python-format +msgid "Domain %s already exists." +msgstr "" + +#: ../pykolab/cli/__init__.py:156 +msgid "Actions" +msgstr "" + +#: ../pykolab/conf/__init__.py:81 +#, python-format +msgid "Setting %s to %r (from defaults)" +msgstr "" + +#: ../pykolab/conf/__init__.py:92 +#, python-format +msgid "Setting %s to %r (from runtime)" +msgstr "" + +#: ../pykolab/conf/__init__.py:106 +#, python-format +msgid "Setting %s to %r (from CLI, verified)" +msgstr "" + +#: ../pykolab/conf/__init__.py:109 +#, python-format +msgid "Setting %s to %r (from CLI, not checked)" +msgstr "" + +#: ../pykolab/conf/__init__.py:154 ../pykolab/conf/__init__.py:208 +#, python-format +msgid "Setting %s_%s to '****' (from configuration file)" +msgstr "" + +#: ../pykolab/conf/__init__.py:156 ../pykolab/conf/__init__.py:210 +#, python-format +msgid "Setting %s_%s to %r (from configuration file)" +msgstr "" + +#: ../pykolab/conf/__init__.py:165 +msgid "Setting options from configuration file" +msgstr "" + +#: ../pykolab/conf/__init__.py:224 +#, python-format +msgid "Configuration file %s not readable" +msgstr "" + +#: ../pykolab/conf/__init__.py:227 +#, python-format +msgid "Reading configuration file %s" +msgstr "" + +#: ../pykolab/conf/__init__.py:231 +#, python-format +msgid "Invalid configuration file %s" +msgstr "" + +#: ../pykolab/conf/__init__.py:234 +#, python-format +msgid "No master configuration section [revisor] in configuration file %s" +msgstr "" + +#. # +#. # Runtime Options +#. # +#: ../pykolab/conf/__init__.py:253 +msgid "Runtime Options" +msgstr "" + +#: ../pykolab/conf/__init__.py:258 +msgid "Configuration file to use" +msgstr "" + +#: ../pykolab/conf/__init__.py:264 +msgid "Set the debugging verbosity. Maximum is 99" +msgstr "" + +#: ../pykolab/conf/__init__.py:270 +msgid "Log file to use" +msgstr "" + +#: ../pykolab/conf/__init__.py:276 +msgid "Be quiet." +msgstr "" + +#: ../pykolab/conf/__init__.py:282 +msgid "Answer yes to all questions." +msgstr "" + +#: ../pykolab/conf/__init__.py:310 +msgid "No command supplied" +msgstr "" + +#: ../pykolab/conf/__init__.py:392 +msgid "Insufficient options. Need section, key and value -in that order." +msgstr "" + +#: ../pykolab/conf/__init__.py:395 +#, python-format +msgid "No section '%s' exists." +msgstr "" + +#: ../pykolab/conf/__init__.py:424 +#, python-format +msgid "Setting %s to %r (from the default values for CLI options)" +msgstr "" + +#: ../pykolab/conf/__init__.py:441 +#, python-format +msgid "Option %s/%s does not exist in config file %s, pulling from defaults" +msgstr "" + +#: ../pykolab/conf/__init__.py:449 ../pykolab/conf/__init__.py:452 +msgid "Option does not exist in defaults." +msgstr "" + +#: ../pykolab/conf/__init__.py:450 ../pykolab/conf/__init__.py:453 +msgid "Not available" +msgstr "" + +#: ../pykolab/conf/__init__.py:462 +#, python-format +msgid "Configuration file %s not readable." +msgstr "" + +#: ../pykolab/conf/__init__.py:465 +#, python-format +msgid "Configuration file %s does not exist." +msgstr "" + +#: ../pykolab/conf/__init__.py:470 +msgid "" +"WARNING: A negative debug level value does not make this program be any more " +"silent." +msgstr "" + +#: ../pykolab/conf/__init__.py:476 +msgid "" +"WARNING: This program has 9 levels of verbosity. Using the maximum of 9." +msgstr "" + +#: ../pykolab/conf/__init__.py:486 +msgid "No imaplib library found." +msgstr "" + +#: ../pykolab/conf/__init__.py:496 +msgid "No LMTP class found in the smtplib library." +msgstr "" + +#: ../pykolab/conf/__init__.py:506 +msgid "No SMTP class found in the smtplib library." +msgstr "" + +#: ../pykolab/conf/__init__.py:517 +#, python-format +msgid "Found you specified a specific set of items to test: %s" +msgstr "" + +#: ../pykolab/conf/__init__.py:525 +#, python-format +msgid "Selectively selecting: %s" +msgstr "" + +#: ../pykolab/constants.py:39 +msgid "PyKolab is a Kolab Systems product. For more information " +msgstr "" + +#: ../pykolab/constants.py:53 +msgid "WARNING" +msgstr "" + +#: ../pykolab/constants.py:53 +msgid "The Fully Qualified " +msgstr "" + +#: ../pykolab/constants.py:73 +msgid "389 Directory Server or Red Hat Directory Server" +msgstr "" + +#: ../pykolab/constants.py:77 ../pykolab/constants.py:81 +msgid "OpenLDAP or compatible" +msgstr "" + +#: ../pykolab/imap/__init__.py:74 ../pykolab/imap/__init__.py:79 +#, python-format +msgid "Creating new INBOX for user: %s" +msgstr "" + +#: ../pykolab/imap/__init__.py:145 +#, python-format +msgid "Setting new quota for folder %s to %r" +msgstr "" + +#: ../pykolab/imap/__init__.py:149 +#, python-format +msgid "Quota for %s currently is %s" +msgstr "" + +#: ../pykolab/imap/__init__.py:152 +#, python-format +msgid "Correcting quota for %s to %s (currently %s)" +msgstr "" + +#: ../pykolab/imap/__init__.py:178 +#, python-format +msgid "Folder has no corresponding user (1): %s" +msgstr "" + +#: ../pykolab/imap/__init__.py:181 +#, python-format +msgid "Folder has no corresponding user (2): %s" +msgstr "" + +#: ../pykolab/logger.py:42 +#, python-format +msgid "Cannot log to file %s: %s" +msgstr "" + +#: ../pykolab/logger.py:87 ../pykolab/logger.py:96 +msgid "Do you want to continue? [Y/n]" +msgstr "" + +#: ../pykolab/logger.py:90 ../pykolab/logger.py:99 +msgid "Abort! Abort! Abort!" +msgstr "" + +#: ../pykolab/plugins.py:56 +#, python-format +msgid "ImportError for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:59 +#, python-format +msgid "RuntimeError for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:62 +#, python-format +msgid "Plugin %s failed to load (%s: %s)" +msgstr "" + +#: ../pykolab/plugins.py:89 ../pykolab/plugins.py:91 +#, python-format +msgid "Cannot set defaults for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:93 +#, python-format +msgid "Cannot set defaults for plugin %s: Unknown Error" +msgstr "" + +#: ../pykolab/plugins.py:96 +#, python-format +msgid "Not setting defaults for plugin %s: No function 'set_defaults()'" +msgstr "" + +#: ../pykolab/plugins.py:113 +#, python-format +msgid "Cannot set runtime for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:115 +#, python-format +msgid "Not setting runtime for plugin %s: No function 'set_runtime()'" +msgstr "" + +#: ../pykolab/plugins.py:132 +#, python-format +msgid "Cannot add options for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:134 +#, python-format +msgid "Not adding options for plugin %s: No function 'add_options()'" +msgstr "" + +#: ../pykolab/plugins.py:152 +#, python-format +msgid "Cannot check options for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:154 +#, python-format +msgid "Not checking options for plugin %s: No function 'check_options()'" +msgstr "" + +#: ../pykolab/plugins.py:192 ../pykolab/plugins.py:194 +#, python-format +msgid "Cannot execute hook %s for plugin %s: %s" +msgstr "" + +#: ../pykolab/setup/ldap_setup.py:29 +msgid "Cannot load Python LDAP libraries." +msgstr "" + +#: ../pykolab/setup/ldap_setup.py:53 +#, python-format +msgid "Warning: LDAP Service '%s' is available on " +msgstr "" + +#: ../pykolab/setup/ldap_setup.py:56 +#, python-format +msgid "Found system service %s." +msgstr "" + +#. ldap_uri = utils.ask_question(_("LDAP URI (read/write)"), "ldap://ldap.%s" %(constants.domainname)) +#: ../pykolab/setup/ldap_setup.py:59 +msgid "LDAP URI (read/write)" +msgstr "" + +#. This is a funny input error ("") +#: ../pykolab/setup/ldap_setup.py:69 ../pykolab/setup/ldap_setup.py:76 +msgid "Could not connect to LDAP server due to " +msgstr "" + +#: ../pykolab/setup/ldap_setup.py:73 +msgid "Your username or password are incorrect" +msgstr "" + +#: ../pykolab/tests/calendar.py:146 +#, python-format +msgid "Creating %d Events" +msgstr "" + +#: ../pykolab/tests/calendar.py:177 +#, python-format +msgid "Creating Calendar item number %d" +msgstr "" + +#: ../pykolab/tests/calendar.py:189 ../pykolab/tests/contacts.py:133 +#, python-format +msgid "Sending UID message %s through SMTP targeting user %s@%s" +msgstr "" + +#: ../pykolab/tests/calendar.py:192 ../pykolab/tests/contacts.py:136 +#, python-format +msgid "Sending UID message %s through LMTP targeting user %s@%s" +msgstr "" + +#: ../pykolab/tests/calendar.py:195 ../pykolab/tests/contacts.py:139 +#, python-format +msgid "Saving UID message %s to IMAP (user %s, folder %s)" +msgstr "" + +#: ../pykolab/tests/calendar.py:198 ../pykolab/tests/contacts.py:142 +#: ../pykolab/tests/mail.py:125 +msgid "Somehow ended up NOT sending these messages" +msgstr "" + +#: ../pykolab/tests/contacts.py:97 +#, python-format +msgid "Creating %d Contacts" +msgstr "" + +#: ../pykolab/tests/contacts.py:121 +#, python-format +msgid "Creating Contact item number %d" +msgstr "" + +#: ../pykolab/tests/__init__.py:35 +msgid "Test Options" +msgstr "" + +#: ../pykolab/tests/__init__.py:42 +#, python-format +msgid "Submit a number of items to the %s" +msgstr "" + +#: ../pykolab/tests/__init__.py:48 +msgid "Run tests in suite SUITE. Implies a certain set of items being tested." +msgstr "" + +#: ../pykolab/tests/__init__.py:51 +msgid "Content Delivery Options" +msgstr "" + +#: ../pykolab/tests/__init__.py:57 +msgid "" +"Send messages containing the items through mail (requires proper " +"infrastructure)" +msgstr "" + +#: ../pykolab/tests/__init__.py:63 +msgid "Inject messages containing the items through IMAP (requires imaplib)" +msgstr "" + +#: ../pykolab/tests/__init__.py:69 +msgid "Deliver messages containing the items through LMTP (requires imaplib)" +msgstr "" + +#: ../pykolab/tests/__init__.py:80 +#, python-format +msgid "Tests for suite %s failed to load. Aborting." +msgstr "" + +#: ../pykolab/tests/mail.py:92 +#, python-format +msgid "Creating %d Mails" +msgstr "" + +#: ../pykolab/tests/mail.py:116 +#, python-format +msgid "Sending message %s through SMTP targeting user %s@%s" +msgstr "" + +#: ../pykolab/tests/mail.py:119 +#, python-format +msgid "Sending message %s through LMTP targeting user %s@%s" +msgstr "" + +#: ../pykolab/tests/mail.py:122 +#, python-format +msgid "Saving message %s to IMAP (user %s, folder %s)" +msgstr "" + +#: ../pykolab/tests/zpush/test_000_000.py:96 +#, python-format +msgid "Deleting mailbox: %s" +msgstr "" + +#: ../pykolab/tests/zpush/test_000_000.py:105 +#, python-format +msgid "Creating mailbox: %s" +msgstr "" + +#: ../pykolab/tests/zpush/test_000_000.py:121 +#, python-format +msgid "Authentication failure for %s" +msgstr "" + +#: ../pykolab/tests/zpush/test_000_001.py:48 +#, python-format +msgid "Could not load %sItem from %s, skipping the testing." +msgstr "" + +#: ../pykolab/utils.py:71 +msgid "Please answer 'yes' or 'no'." +msgstr "" + +#: ../setup-kolab.py:52 +#, python-format +msgid "Cannot find %s_setup()." +msgstr "" + +#: ../setup-kolab.py:54 +#, python-format +msgid "Cannot load setup for %s." +msgstr "" + +#. Means we get to ask some questions. +#: ../setup-kolab.py:58 +msgid "Please select the components to set up:" +msgstr "" + +#: ../setup-kolab.py:65 +msgid "Selection" +msgstr "" diff --git a/po/cs.po b/po/cs.po new file mode 100644 index 0000000..ae00f78 --- /dev/null +++ b/po/cs.po @@ -0,0 +1,563 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-02-21 21:23+0000\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" + +#: ../conf.py:37 ../kolabd.py:33 ../kolab.py:34 ../kolabtest.py:34 +#: ../setup-kolab.py:36 +msgid "Cannot load pykolab/logger.py:" +msgstr "" + +#: ../kolabd/__init__.py:44 ../pykolab-0.1/kolabd/__init__.py:44 +msgid "Daemon Options" +msgstr "" + +#: ../kolabd/__init__.py:50 ../pykolab-0.1/kolabd/__init__.py:50 +msgid "For to the background." +msgstr "" + +#: ../kolabd/__init__.py:78 ../pykolab-0.1/kolabd/__init__.py:78 +msgid "Interrupted by user" +msgstr "" + +#: ../kolabd/__init__.py:82 ../kolabd/__init__.py:90 +#: ../pykolab-0.1/kolabd/__init__.py:82 ../pykolab-0.1/kolabd/__init__.py:90 +msgid "Traceback occurred, please report a bug at http://issues.kolab.org" +msgstr "" + +#: ../kolabd/__init__.py:86 ../pykolab-0.1/kolabd/__init__.py:86 +#, python-format +msgid "Type Error: %s" +msgstr "" + +#: ../kolabd/__init__.py:95 ../pykolab-0.1/kolabd/__init__.py:95 +msgid "Sleeping for 10 seconds..." +msgstr "" + +#: ../pykolab/auth/ldap/__init__.py:42 +msgid "Connecting to LDAP..." +msgstr "" + +#: ../pykolab/cli/__init__.py:40 +msgid "Domain Options" +msgstr "" + +#: ../pykolab/cli/__init__.py:45 +msgid "Review LDIF before committed" +msgstr "" + +#: ../pykolab/cli/__init__.py:55 +#, python-format +msgid "TODO: self.check_%s()" +msgstr "" + +#: ../pykolab/cli/__init__.py:81 +#, python-format +msgid "Deleting domain %s" +msgstr "" + +#: ../pykolab/cli/__init__.py:93 +#, python-format +msgid "No domain %s exists." +msgstr "" + +#: ../pykolab/cli/__init__.py:99 +msgid "TODO: Figure out where the domain should actually be added." +msgstr "" + +#: ../pykolab/cli/__init__.py:103 +#, python-format +msgid "Adding domain %s" +msgstr "" + +#. The dn of our new entry/object +#: ../pykolab/cli/__init__.py:106 +msgid "TODO: Make the format for a new domain configurable." +msgstr "" + +#. A dict to help build the "body" of the object +#: ../pykolab/cli/__init__.py:110 +msgid "TODO: Make what a domain looks like configurable." +msgstr "" + +#: ../pykolab/cli/__init__.py:122 +msgid "" +"TODO: Prompt for organization name/description. For now, use domain name." +msgstr "" + +#: ../pykolab/cli/__init__.py:130 +msgid "Please ACK or NACK the above LDIF:" +msgstr "" + +#: ../pykolab/cli/__init__.py:146 +#, python-format +msgid "Domain %s already exists." +msgstr "" + +#: ../pykolab/cli/__init__.py:156 +msgid "Actions" +msgstr "" + +#: ../pykolab/conf/__init__.py:81 +#, python-format +msgid "Setting %s to %r (from defaults)" +msgstr "" + +#: ../pykolab/conf/__init__.py:92 +#, python-format +msgid "Setting %s to %r (from runtime)" +msgstr "" + +#: ../pykolab/conf/__init__.py:106 +#, python-format +msgid "Setting %s to %r (from CLI, verified)" +msgstr "" + +#: ../pykolab/conf/__init__.py:109 +#, python-format +msgid "Setting %s to %r (from CLI, not checked)" +msgstr "" + +#: ../pykolab/conf/__init__.py:154 ../pykolab/conf/__init__.py:208 +#, python-format +msgid "Setting %s_%s to '****' (from configuration file)" +msgstr "" + +#: ../pykolab/conf/__init__.py:156 ../pykolab/conf/__init__.py:210 +#, python-format +msgid "Setting %s_%s to %r (from configuration file)" +msgstr "" + +#: ../pykolab/conf/__init__.py:165 +msgid "Setting options from configuration file" +msgstr "" + +#: ../pykolab/conf/__init__.py:224 +#, python-format +msgid "Configuration file %s not readable" +msgstr "" + +#: ../pykolab/conf/__init__.py:227 +#, python-format +msgid "Reading configuration file %s" +msgstr "" + +#: ../pykolab/conf/__init__.py:231 +#, python-format +msgid "Invalid configuration file %s" +msgstr "" + +#: ../pykolab/conf/__init__.py:234 +#, python-format +msgid "No master configuration section [revisor] in configuration file %s" +msgstr "" + +#. # +#. # Runtime Options +#. # +#: ../pykolab/conf/__init__.py:253 +msgid "Runtime Options" +msgstr "" + +#: ../pykolab/conf/__init__.py:258 +msgid "Configuration file to use" +msgstr "" + +#: ../pykolab/conf/__init__.py:264 +msgid "Set the debugging verbosity. Maximum is 99" +msgstr "" + +#: ../pykolab/conf/__init__.py:270 +msgid "Log file to use" +msgstr "" + +#: ../pykolab/conf/__init__.py:276 +msgid "Be quiet." +msgstr "" + +#: ../pykolab/conf/__init__.py:282 +msgid "Answer yes to all questions." +msgstr "" + +#: ../pykolab/conf/__init__.py:310 +msgid "No command supplied" +msgstr "" + +#: ../pykolab/conf/__init__.py:392 +msgid "Insufficient options. Need section, key and value -in that order." +msgstr "" + +#: ../pykolab/conf/__init__.py:395 +#, python-format +msgid "No section '%s' exists." +msgstr "" + +#: ../pykolab/conf/__init__.py:424 +#, python-format +msgid "Setting %s to %r (from the default values for CLI options)" +msgstr "" + +#: ../pykolab/conf/__init__.py:441 +#, python-format +msgid "Option %s/%s does not exist in config file %s, pulling from defaults" +msgstr "" + +#: ../pykolab/conf/__init__.py:449 ../pykolab/conf/__init__.py:452 +msgid "Option does not exist in defaults." +msgstr "" + +#: ../pykolab/conf/__init__.py:450 ../pykolab/conf/__init__.py:453 +msgid "Not available" +msgstr "" + +#: ../pykolab/conf/__init__.py:462 +#, python-format +msgid "Configuration file %s not readable." +msgstr "" + +#: ../pykolab/conf/__init__.py:465 +#, python-format +msgid "Configuration file %s does not exist." +msgstr "" + +#: ../pykolab/conf/__init__.py:470 +msgid "" +"WARNING: A negative debug level value does not make this program be any more " +"silent." +msgstr "" + +#: ../pykolab/conf/__init__.py:476 +msgid "" +"WARNING: This program has 9 levels of verbosity. Using the maximum of 9." +msgstr "" + +#: ../pykolab/conf/__init__.py:486 +msgid "No imaplib library found." +msgstr "" + +#: ../pykolab/conf/__init__.py:496 +msgid "No LMTP class found in the smtplib library." +msgstr "" + +#: ../pykolab/conf/__init__.py:506 +msgid "No SMTP class found in the smtplib library." +msgstr "" + +#: ../pykolab/conf/__init__.py:517 +#, python-format +msgid "Found you specified a specific set of items to test: %s" +msgstr "" + +#: ../pykolab/conf/__init__.py:525 +#, python-format +msgid "Selectively selecting: %s" +msgstr "" + +#: ../pykolab/constants.py:39 +msgid "PyKolab is a Kolab Systems product. For more information " +msgstr "" + +#: ../pykolab/constants.py:53 +msgid "WARNING" +msgstr "" + +#: ../pykolab/constants.py:53 +msgid "The Fully Qualified " +msgstr "" + +#: ../pykolab/constants.py:73 +msgid "389 Directory Server or Red Hat Directory Server" +msgstr "" + +#: ../pykolab/constants.py:77 ../pykolab/constants.py:81 +msgid "OpenLDAP or compatible" +msgstr "" + +#: ../pykolab/imap/__init__.py:74 ../pykolab/imap/__init__.py:79 +#, python-format +msgid "Creating new INBOX for user: %s" +msgstr "" + +#: ../pykolab/imap/__init__.py:145 +#, python-format +msgid "Setting new quota for folder %s to %r" +msgstr "" + +#: ../pykolab/imap/__init__.py:149 +#, python-format +msgid "Quota for %s currently is %s" +msgstr "" + +#: ../pykolab/imap/__init__.py:152 +#, python-format +msgid "Correcting quota for %s to %s (currently %s)" +msgstr "" + +#: ../pykolab/imap/__init__.py:178 +#, python-format +msgid "Folder has no corresponding user (1): %s" +msgstr "" + +#: ../pykolab/imap/__init__.py:181 +#, python-format +msgid "Folder has no corresponding user (2): %s" +msgstr "" + +#: ../pykolab/logger.py:42 +#, python-format +msgid "Cannot log to file %s: %s" +msgstr "" + +#: ../pykolab/logger.py:87 ../pykolab/logger.py:96 +msgid "Do you want to continue? [Y/n]" +msgstr "" + +#: ../pykolab/logger.py:90 ../pykolab/logger.py:99 +msgid "Abort! Abort! Abort!" +msgstr "" + +#: ../pykolab/plugins.py:56 +#, python-format +msgid "ImportError for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:59 +#, python-format +msgid "RuntimeError for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:62 +#, python-format +msgid "Plugin %s failed to load (%s: %s)" +msgstr "" + +#: ../pykolab/plugins.py:89 ../pykolab/plugins.py:91 +#, python-format +msgid "Cannot set defaults for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:93 +#, python-format +msgid "Cannot set defaults for plugin %s: Unknown Error" +msgstr "" + +#: ../pykolab/plugins.py:96 +#, python-format +msgid "Not setting defaults for plugin %s: No function 'set_defaults()'" +msgstr "" + +#: ../pykolab/plugins.py:113 +#, python-format +msgid "Cannot set runtime for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:115 +#, python-format +msgid "Not setting runtime for plugin %s: No function 'set_runtime()'" +msgstr "" + +#: ../pykolab/plugins.py:132 +#, python-format +msgid "Cannot add options for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:134 +#, python-format +msgid "Not adding options for plugin %s: No function 'add_options()'" +msgstr "" + +#: ../pykolab/plugins.py:152 +#, python-format +msgid "Cannot check options for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:154 +#, python-format +msgid "Not checking options for plugin %s: No function 'check_options()'" +msgstr "" + +#: ../pykolab/plugins.py:192 ../pykolab/plugins.py:194 +#, python-format +msgid "Cannot execute hook %s for plugin %s: %s" +msgstr "" + +#: ../pykolab/setup/ldap_setup.py:29 +msgid "Cannot load Python LDAP libraries." +msgstr "" + +#: ../pykolab/setup/ldap_setup.py:53 +#, python-format +msgid "Warning: LDAP Service '%s' is available on " +msgstr "" + +#: ../pykolab/setup/ldap_setup.py:56 +#, python-format +msgid "Found system service %s." +msgstr "" + +#. ldap_uri = utils.ask_question(_("LDAP URI (read/write)"), "ldap://ldap.%s" %(constants.domainname)) +#: ../pykolab/setup/ldap_setup.py:59 +msgid "LDAP URI (read/write)" +msgstr "" + +#. This is a funny input error ("") +#: ../pykolab/setup/ldap_setup.py:69 ../pykolab/setup/ldap_setup.py:76 +msgid "Could not connect to LDAP server due to " +msgstr "" + +#: ../pykolab/setup/ldap_setup.py:73 +msgid "Your username or password are incorrect" +msgstr "" + +#: ../pykolab/tests/calendar.py:146 +#, python-format +msgid "Creating %d Events" +msgstr "" + +#: ../pykolab/tests/calendar.py:177 +#, python-format +msgid "Creating Calendar item number %d" +msgstr "" + +#: ../pykolab/tests/calendar.py:189 ../pykolab/tests/contacts.py:133 +#, python-format +msgid "Sending UID message %s through SMTP targeting user %s@%s" +msgstr "" + +#: ../pykolab/tests/calendar.py:192 ../pykolab/tests/contacts.py:136 +#, python-format +msgid "Sending UID message %s through LMTP targeting user %s@%s" +msgstr "" + +#: ../pykolab/tests/calendar.py:195 ../pykolab/tests/contacts.py:139 +#, python-format +msgid "Saving UID message %s to IMAP (user %s, folder %s)" +msgstr "" + +#: ../pykolab/tests/calendar.py:198 ../pykolab/tests/contacts.py:142 +#: ../pykolab/tests/mail.py:125 +msgid "Somehow ended up NOT sending these messages" +msgstr "" + +#: ../pykolab/tests/contacts.py:97 +#, python-format +msgid "Creating %d Contacts" +msgstr "" + +#: ../pykolab/tests/contacts.py:121 +#, python-format +msgid "Creating Contact item number %d" +msgstr "" + +#: ../pykolab/tests/__init__.py:35 +msgid "Test Options" +msgstr "" + +#: ../pykolab/tests/__init__.py:42 +#, python-format +msgid "Submit a number of items to the %s" +msgstr "" + +#: ../pykolab/tests/__init__.py:48 +msgid "Run tests in suite SUITE. Implies a certain set of items being tested." +msgstr "" + +#: ../pykolab/tests/__init__.py:51 +msgid "Content Delivery Options" +msgstr "" + +#: ../pykolab/tests/__init__.py:57 +msgid "" +"Send messages containing the items through mail (requires proper " +"infrastructure)" +msgstr "" + +#: ../pykolab/tests/__init__.py:63 +msgid "Inject messages containing the items through IMAP (requires imaplib)" +msgstr "" + +#: ../pykolab/tests/__init__.py:69 +msgid "Deliver messages containing the items through LMTP (requires imaplib)" +msgstr "" + +#: ../pykolab/tests/__init__.py:80 +#, python-format +msgid "Tests for suite %s failed to load. Aborting." +msgstr "" + +#: ../pykolab/tests/mail.py:92 +#, python-format +msgid "Creating %d Mails" +msgstr "" + +#: ../pykolab/tests/mail.py:116 +#, python-format +msgid "Sending message %s through SMTP targeting user %s@%s" +msgstr "" + +#: ../pykolab/tests/mail.py:119 +#, python-format +msgid "Sending message %s through LMTP targeting user %s@%s" +msgstr "" + +#: ../pykolab/tests/mail.py:122 +#, python-format +msgid "Saving message %s to IMAP (user %s, folder %s)" +msgstr "" + +#: ../pykolab/tests/zpush/test_000_000.py:96 +#, python-format +msgid "Deleting mailbox: %s" +msgstr "" + +#: ../pykolab/tests/zpush/test_000_000.py:105 +#, python-format +msgid "Creating mailbox: %s" +msgstr "" + +#: ../pykolab/tests/zpush/test_000_000.py:121 +#, python-format +msgid "Authentication failure for %s" +msgstr "" + +#: ../pykolab/tests/zpush/test_000_001.py:48 +#, python-format +msgid "Could not load %sItem from %s, skipping the testing." +msgstr "" + +#: ../pykolab/utils.py:71 +msgid "Please answer 'yes' or 'no'." +msgstr "" + +#: ../setup-kolab.py:52 +#, python-format +msgid "Cannot find %s_setup()." +msgstr "" + +#: ../setup-kolab.py:54 +#, python-format +msgid "Cannot load setup for %s." +msgstr "" + +#. Means we get to ask some questions. +#: ../setup-kolab.py:58 +msgid "Please select the components to set up:" +msgstr "" + +#: ../setup-kolab.py:65 +msgid "Selection" +msgstr "" diff --git a/po/da.po b/po/da.po new file mode 100644 index 0000000..ae00f78 --- /dev/null +++ b/po/da.po @@ -0,0 +1,563 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-02-21 21:23+0000\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" + +#: ../conf.py:37 ../kolabd.py:33 ../kolab.py:34 ../kolabtest.py:34 +#: ../setup-kolab.py:36 +msgid "Cannot load pykolab/logger.py:" +msgstr "" + +#: ../kolabd/__init__.py:44 ../pykolab-0.1/kolabd/__init__.py:44 +msgid "Daemon Options" +msgstr "" + +#: ../kolabd/__init__.py:50 ../pykolab-0.1/kolabd/__init__.py:50 +msgid "For to the background." +msgstr "" + +#: ../kolabd/__init__.py:78 ../pykolab-0.1/kolabd/__init__.py:78 +msgid "Interrupted by user" +msgstr "" + +#: ../kolabd/__init__.py:82 ../kolabd/__init__.py:90 +#: ../pykolab-0.1/kolabd/__init__.py:82 ../pykolab-0.1/kolabd/__init__.py:90 +msgid "Traceback occurred, please report a bug at http://issues.kolab.org" +msgstr "" + +#: ../kolabd/__init__.py:86 ../pykolab-0.1/kolabd/__init__.py:86 +#, python-format +msgid "Type Error: %s" +msgstr "" + +#: ../kolabd/__init__.py:95 ../pykolab-0.1/kolabd/__init__.py:95 +msgid "Sleeping for 10 seconds..." +msgstr "" + +#: ../pykolab/auth/ldap/__init__.py:42 +msgid "Connecting to LDAP..." +msgstr "" + +#: ../pykolab/cli/__init__.py:40 +msgid "Domain Options" +msgstr "" + +#: ../pykolab/cli/__init__.py:45 +msgid "Review LDIF before committed" +msgstr "" + +#: ../pykolab/cli/__init__.py:55 +#, python-format +msgid "TODO: self.check_%s()" +msgstr "" + +#: ../pykolab/cli/__init__.py:81 +#, python-format +msgid "Deleting domain %s" +msgstr "" + +#: ../pykolab/cli/__init__.py:93 +#, python-format +msgid "No domain %s exists." +msgstr "" + +#: ../pykolab/cli/__init__.py:99 +msgid "TODO: Figure out where the domain should actually be added." +msgstr "" + +#: ../pykolab/cli/__init__.py:103 +#, python-format +msgid "Adding domain %s" +msgstr "" + +#. The dn of our new entry/object +#: ../pykolab/cli/__init__.py:106 +msgid "TODO: Make the format for a new domain configurable." +msgstr "" + +#. A dict to help build the "body" of the object +#: ../pykolab/cli/__init__.py:110 +msgid "TODO: Make what a domain looks like configurable." +msgstr "" + +#: ../pykolab/cli/__init__.py:122 +msgid "" +"TODO: Prompt for organization name/description. For now, use domain name." +msgstr "" + +#: ../pykolab/cli/__init__.py:130 +msgid "Please ACK or NACK the above LDIF:" +msgstr "" + +#: ../pykolab/cli/__init__.py:146 +#, python-format +msgid "Domain %s already exists." +msgstr "" + +#: ../pykolab/cli/__init__.py:156 +msgid "Actions" +msgstr "" + +#: ../pykolab/conf/__init__.py:81 +#, python-format +msgid "Setting %s to %r (from defaults)" +msgstr "" + +#: ../pykolab/conf/__init__.py:92 +#, python-format +msgid "Setting %s to %r (from runtime)" +msgstr "" + +#: ../pykolab/conf/__init__.py:106 +#, python-format +msgid "Setting %s to %r (from CLI, verified)" +msgstr "" + +#: ../pykolab/conf/__init__.py:109 +#, python-format +msgid "Setting %s to %r (from CLI, not checked)" +msgstr "" + +#: ../pykolab/conf/__init__.py:154 ../pykolab/conf/__init__.py:208 +#, python-format +msgid "Setting %s_%s to '****' (from configuration file)" +msgstr "" + +#: ../pykolab/conf/__init__.py:156 ../pykolab/conf/__init__.py:210 +#, python-format +msgid "Setting %s_%s to %r (from configuration file)" +msgstr "" + +#: ../pykolab/conf/__init__.py:165 +msgid "Setting options from configuration file" +msgstr "" + +#: ../pykolab/conf/__init__.py:224 +#, python-format +msgid "Configuration file %s not readable" +msgstr "" + +#: ../pykolab/conf/__init__.py:227 +#, python-format +msgid "Reading configuration file %s" +msgstr "" + +#: ../pykolab/conf/__init__.py:231 +#, python-format +msgid "Invalid configuration file %s" +msgstr "" + +#: ../pykolab/conf/__init__.py:234 +#, python-format +msgid "No master configuration section [revisor] in configuration file %s" +msgstr "" + +#. # +#. # Runtime Options +#. # +#: ../pykolab/conf/__init__.py:253 +msgid "Runtime Options" +msgstr "" + +#: ../pykolab/conf/__init__.py:258 +msgid "Configuration file to use" +msgstr "" + +#: ../pykolab/conf/__init__.py:264 +msgid "Set the debugging verbosity. Maximum is 99" +msgstr "" + +#: ../pykolab/conf/__init__.py:270 +msgid "Log file to use" +msgstr "" + +#: ../pykolab/conf/__init__.py:276 +msgid "Be quiet." +msgstr "" + +#: ../pykolab/conf/__init__.py:282 +msgid "Answer yes to all questions." +msgstr "" + +#: ../pykolab/conf/__init__.py:310 +msgid "No command supplied" +msgstr "" + +#: ../pykolab/conf/__init__.py:392 +msgid "Insufficient options. Need section, key and value -in that order." +msgstr "" + +#: ../pykolab/conf/__init__.py:395 +#, python-format +msgid "No section '%s' exists." +msgstr "" + +#: ../pykolab/conf/__init__.py:424 +#, python-format +msgid "Setting %s to %r (from the default values for CLI options)" +msgstr "" + +#: ../pykolab/conf/__init__.py:441 +#, python-format +msgid "Option %s/%s does not exist in config file %s, pulling from defaults" +msgstr "" + +#: ../pykolab/conf/__init__.py:449 ../pykolab/conf/__init__.py:452 +msgid "Option does not exist in defaults." +msgstr "" + +#: ../pykolab/conf/__init__.py:450 ../pykolab/conf/__init__.py:453 +msgid "Not available" +msgstr "" + +#: ../pykolab/conf/__init__.py:462 +#, python-format +msgid "Configuration file %s not readable." +msgstr "" + +#: ../pykolab/conf/__init__.py:465 +#, python-format +msgid "Configuration file %s does not exist." +msgstr "" + +#: ../pykolab/conf/__init__.py:470 +msgid "" +"WARNING: A negative debug level value does not make this program be any more " +"silent." +msgstr "" + +#: ../pykolab/conf/__init__.py:476 +msgid "" +"WARNING: This program has 9 levels of verbosity. Using the maximum of 9." +msgstr "" + +#: ../pykolab/conf/__init__.py:486 +msgid "No imaplib library found." +msgstr "" + +#: ../pykolab/conf/__init__.py:496 +msgid "No LMTP class found in the smtplib library." +msgstr "" + +#: ../pykolab/conf/__init__.py:506 +msgid "No SMTP class found in the smtplib library." +msgstr "" + +#: ../pykolab/conf/__init__.py:517 +#, python-format +msgid "Found you specified a specific set of items to test: %s" +msgstr "" + +#: ../pykolab/conf/__init__.py:525 +#, python-format +msgid "Selectively selecting: %s" +msgstr "" + +#: ../pykolab/constants.py:39 +msgid "PyKolab is a Kolab Systems product. For more information " +msgstr "" + +#: ../pykolab/constants.py:53 +msgid "WARNING" +msgstr "" + +#: ../pykolab/constants.py:53 +msgid "The Fully Qualified " +msgstr "" + +#: ../pykolab/constants.py:73 +msgid "389 Directory Server or Red Hat Directory Server" +msgstr "" + +#: ../pykolab/constants.py:77 ../pykolab/constants.py:81 +msgid "OpenLDAP or compatible" +msgstr "" + +#: ../pykolab/imap/__init__.py:74 ../pykolab/imap/__init__.py:79 +#, python-format +msgid "Creating new INBOX for user: %s" +msgstr "" + +#: ../pykolab/imap/__init__.py:145 +#, python-format +msgid "Setting new quota for folder %s to %r" +msgstr "" + +#: ../pykolab/imap/__init__.py:149 +#, python-format +msgid "Quota for %s currently is %s" +msgstr "" + +#: ../pykolab/imap/__init__.py:152 +#, python-format +msgid "Correcting quota for %s to %s (currently %s)" +msgstr "" + +#: ../pykolab/imap/__init__.py:178 +#, python-format +msgid "Folder has no corresponding user (1): %s" +msgstr "" + +#: ../pykolab/imap/__init__.py:181 +#, python-format +msgid "Folder has no corresponding user (2): %s" +msgstr "" + +#: ../pykolab/logger.py:42 +#, python-format +msgid "Cannot log to file %s: %s" +msgstr "" + +#: ../pykolab/logger.py:87 ../pykolab/logger.py:96 +msgid "Do you want to continue? [Y/n]" +msgstr "" + +#: ../pykolab/logger.py:90 ../pykolab/logger.py:99 +msgid "Abort! Abort! Abort!" +msgstr "" + +#: ../pykolab/plugins.py:56 +#, python-format +msgid "ImportError for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:59 +#, python-format +msgid "RuntimeError for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:62 +#, python-format +msgid "Plugin %s failed to load (%s: %s)" +msgstr "" + +#: ../pykolab/plugins.py:89 ../pykolab/plugins.py:91 +#, python-format +msgid "Cannot set defaults for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:93 +#, python-format +msgid "Cannot set defaults for plugin %s: Unknown Error" +msgstr "" + +#: ../pykolab/plugins.py:96 +#, python-format +msgid "Not setting defaults for plugin %s: No function 'set_defaults()'" +msgstr "" + +#: ../pykolab/plugins.py:113 +#, python-format +msgid "Cannot set runtime for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:115 +#, python-format +msgid "Not setting runtime for plugin %s: No function 'set_runtime()'" +msgstr "" + +#: ../pykolab/plugins.py:132 +#, python-format +msgid "Cannot add options for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:134 +#, python-format +msgid "Not adding options for plugin %s: No function 'add_options()'" +msgstr "" + +#: ../pykolab/plugins.py:152 +#, python-format +msgid "Cannot check options for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:154 +#, python-format +msgid "Not checking options for plugin %s: No function 'check_options()'" +msgstr "" + +#: ../pykolab/plugins.py:192 ../pykolab/plugins.py:194 +#, python-format +msgid "Cannot execute hook %s for plugin %s: %s" +msgstr "" + +#: ../pykolab/setup/ldap_setup.py:29 +msgid "Cannot load Python LDAP libraries." +msgstr "" + +#: ../pykolab/setup/ldap_setup.py:53 +#, python-format +msgid "Warning: LDAP Service '%s' is available on " +msgstr "" + +#: ../pykolab/setup/ldap_setup.py:56 +#, python-format +msgid "Found system service %s." +msgstr "" + +#. ldap_uri = utils.ask_question(_("LDAP URI (read/write)"), "ldap://ldap.%s" %(constants.domainname)) +#: ../pykolab/setup/ldap_setup.py:59 +msgid "LDAP URI (read/write)" +msgstr "" + +#. This is a funny input error ("") +#: ../pykolab/setup/ldap_setup.py:69 ../pykolab/setup/ldap_setup.py:76 +msgid "Could not connect to LDAP server due to " +msgstr "" + +#: ../pykolab/setup/ldap_setup.py:73 +msgid "Your username or password are incorrect" +msgstr "" + +#: ../pykolab/tests/calendar.py:146 +#, python-format +msgid "Creating %d Events" +msgstr "" + +#: ../pykolab/tests/calendar.py:177 +#, python-format +msgid "Creating Calendar item number %d" +msgstr "" + +#: ../pykolab/tests/calendar.py:189 ../pykolab/tests/contacts.py:133 +#, python-format +msgid "Sending UID message %s through SMTP targeting user %s@%s" +msgstr "" + +#: ../pykolab/tests/calendar.py:192 ../pykolab/tests/contacts.py:136 +#, python-format +msgid "Sending UID message %s through LMTP targeting user %s@%s" +msgstr "" + +#: ../pykolab/tests/calendar.py:195 ../pykolab/tests/contacts.py:139 +#, python-format +msgid "Saving UID message %s to IMAP (user %s, folder %s)" +msgstr "" + +#: ../pykolab/tests/calendar.py:198 ../pykolab/tests/contacts.py:142 +#: ../pykolab/tests/mail.py:125 +msgid "Somehow ended up NOT sending these messages" +msgstr "" + +#: ../pykolab/tests/contacts.py:97 +#, python-format +msgid "Creating %d Contacts" +msgstr "" + +#: ../pykolab/tests/contacts.py:121 +#, python-format +msgid "Creating Contact item number %d" +msgstr "" + +#: ../pykolab/tests/__init__.py:35 +msgid "Test Options" +msgstr "" + +#: ../pykolab/tests/__init__.py:42 +#, python-format +msgid "Submit a number of items to the %s" +msgstr "" + +#: ../pykolab/tests/__init__.py:48 +msgid "Run tests in suite SUITE. Implies a certain set of items being tested." +msgstr "" + +#: ../pykolab/tests/__init__.py:51 +msgid "Content Delivery Options" +msgstr "" + +#: ../pykolab/tests/__init__.py:57 +msgid "" +"Send messages containing the items through mail (requires proper " +"infrastructure)" +msgstr "" + +#: ../pykolab/tests/__init__.py:63 +msgid "Inject messages containing the items through IMAP (requires imaplib)" +msgstr "" + +#: ../pykolab/tests/__init__.py:69 +msgid "Deliver messages containing the items through LMTP (requires imaplib)" +msgstr "" + +#: ../pykolab/tests/__init__.py:80 +#, python-format +msgid "Tests for suite %s failed to load. Aborting." +msgstr "" + +#: ../pykolab/tests/mail.py:92 +#, python-format +msgid "Creating %d Mails" +msgstr "" + +#: ../pykolab/tests/mail.py:116 +#, python-format +msgid "Sending message %s through SMTP targeting user %s@%s" +msgstr "" + +#: ../pykolab/tests/mail.py:119 +#, python-format +msgid "Sending message %s through LMTP targeting user %s@%s" +msgstr "" + +#: ../pykolab/tests/mail.py:122 +#, python-format +msgid "Saving message %s to IMAP (user %s, folder %s)" +msgstr "" + +#: ../pykolab/tests/zpush/test_000_000.py:96 +#, python-format +msgid "Deleting mailbox: %s" +msgstr "" + +#: ../pykolab/tests/zpush/test_000_000.py:105 +#, python-format +msgid "Creating mailbox: %s" +msgstr "" + +#: ../pykolab/tests/zpush/test_000_000.py:121 +#, python-format +msgid "Authentication failure for %s" +msgstr "" + +#: ../pykolab/tests/zpush/test_000_001.py:48 +#, python-format +msgid "Could not load %sItem from %s, skipping the testing." +msgstr "" + +#: ../pykolab/utils.py:71 +msgid "Please answer 'yes' or 'no'." +msgstr "" + +#: ../setup-kolab.py:52 +#, python-format +msgid "Cannot find %s_setup()." +msgstr "" + +#: ../setup-kolab.py:54 +#, python-format +msgid "Cannot load setup for %s." +msgstr "" + +#. Means we get to ask some questions. +#: ../setup-kolab.py:58 +msgid "Please select the components to set up:" +msgstr "" + +#: ../setup-kolab.py:65 +msgid "Selection" +msgstr "" diff --git a/po/de.po b/po/de.po new file mode 100644 index 0000000..ae00f78 --- /dev/null +++ b/po/de.po @@ -0,0 +1,563 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-02-21 21:23+0000\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" + +#: ../conf.py:37 ../kolabd.py:33 ../kolab.py:34 ../kolabtest.py:34 +#: ../setup-kolab.py:36 +msgid "Cannot load pykolab/logger.py:" +msgstr "" + +#: ../kolabd/__init__.py:44 ../pykolab-0.1/kolabd/__init__.py:44 +msgid "Daemon Options" +msgstr "" + +#: ../kolabd/__init__.py:50 ../pykolab-0.1/kolabd/__init__.py:50 +msgid "For to the background." +msgstr "" + +#: ../kolabd/__init__.py:78 ../pykolab-0.1/kolabd/__init__.py:78 +msgid "Interrupted by user" +msgstr "" + +#: ../kolabd/__init__.py:82 ../kolabd/__init__.py:90 +#: ../pykolab-0.1/kolabd/__init__.py:82 ../pykolab-0.1/kolabd/__init__.py:90 +msgid "Traceback occurred, please report a bug at http://issues.kolab.org" +msgstr "" + +#: ../kolabd/__init__.py:86 ../pykolab-0.1/kolabd/__init__.py:86 +#, python-format +msgid "Type Error: %s" +msgstr "" + +#: ../kolabd/__init__.py:95 ../pykolab-0.1/kolabd/__init__.py:95 +msgid "Sleeping for 10 seconds..." +msgstr "" + +#: ../pykolab/auth/ldap/__init__.py:42 +msgid "Connecting to LDAP..." +msgstr "" + +#: ../pykolab/cli/__init__.py:40 +msgid "Domain Options" +msgstr "" + +#: ../pykolab/cli/__init__.py:45 +msgid "Review LDIF before committed" +msgstr "" + +#: ../pykolab/cli/__init__.py:55 +#, python-format +msgid "TODO: self.check_%s()" +msgstr "" + +#: ../pykolab/cli/__init__.py:81 +#, python-format +msgid "Deleting domain %s" +msgstr "" + +#: ../pykolab/cli/__init__.py:93 +#, python-format +msgid "No domain %s exists." +msgstr "" + +#: ../pykolab/cli/__init__.py:99 +msgid "TODO: Figure out where the domain should actually be added." +msgstr "" + +#: ../pykolab/cli/__init__.py:103 +#, python-format +msgid "Adding domain %s" +msgstr "" + +#. The dn of our new entry/object +#: ../pykolab/cli/__init__.py:106 +msgid "TODO: Make the format for a new domain configurable." +msgstr "" + +#. A dict to help build the "body" of the object +#: ../pykolab/cli/__init__.py:110 +msgid "TODO: Make what a domain looks like configurable." +msgstr "" + +#: ../pykolab/cli/__init__.py:122 +msgid "" +"TODO: Prompt for organization name/description. For now, use domain name." +msgstr "" + +#: ../pykolab/cli/__init__.py:130 +msgid "Please ACK or NACK the above LDIF:" +msgstr "" + +#: ../pykolab/cli/__init__.py:146 +#, python-format +msgid "Domain %s already exists." +msgstr "" + +#: ../pykolab/cli/__init__.py:156 +msgid "Actions" +msgstr "" + +#: ../pykolab/conf/__init__.py:81 +#, python-format +msgid "Setting %s to %r (from defaults)" +msgstr "" + +#: ../pykolab/conf/__init__.py:92 +#, python-format +msgid "Setting %s to %r (from runtime)" +msgstr "" + +#: ../pykolab/conf/__init__.py:106 +#, python-format +msgid "Setting %s to %r (from CLI, verified)" +msgstr "" + +#: ../pykolab/conf/__init__.py:109 +#, python-format +msgid "Setting %s to %r (from CLI, not checked)" +msgstr "" + +#: ../pykolab/conf/__init__.py:154 ../pykolab/conf/__init__.py:208 +#, python-format +msgid "Setting %s_%s to '****' (from configuration file)" +msgstr "" + +#: ../pykolab/conf/__init__.py:156 ../pykolab/conf/__init__.py:210 +#, python-format +msgid "Setting %s_%s to %r (from configuration file)" +msgstr "" + +#: ../pykolab/conf/__init__.py:165 +msgid "Setting options from configuration file" +msgstr "" + +#: ../pykolab/conf/__init__.py:224 +#, python-format +msgid "Configuration file %s not readable" +msgstr "" + +#: ../pykolab/conf/__init__.py:227 +#, python-format +msgid "Reading configuration file %s" +msgstr "" + +#: ../pykolab/conf/__init__.py:231 +#, python-format +msgid "Invalid configuration file %s" +msgstr "" + +#: ../pykolab/conf/__init__.py:234 +#, python-format +msgid "No master configuration section [revisor] in configuration file %s" +msgstr "" + +#. # +#. # Runtime Options +#. # +#: ../pykolab/conf/__init__.py:253 +msgid "Runtime Options" +msgstr "" + +#: ../pykolab/conf/__init__.py:258 +msgid "Configuration file to use" +msgstr "" + +#: ../pykolab/conf/__init__.py:264 +msgid "Set the debugging verbosity. Maximum is 99" +msgstr "" + +#: ../pykolab/conf/__init__.py:270 +msgid "Log file to use" +msgstr "" + +#: ../pykolab/conf/__init__.py:276 +msgid "Be quiet." +msgstr "" + +#: ../pykolab/conf/__init__.py:282 +msgid "Answer yes to all questions." +msgstr "" + +#: ../pykolab/conf/__init__.py:310 +msgid "No command supplied" +msgstr "" + +#: ../pykolab/conf/__init__.py:392 +msgid "Insufficient options. Need section, key and value -in that order." +msgstr "" + +#: ../pykolab/conf/__init__.py:395 +#, python-format +msgid "No section '%s' exists." +msgstr "" + +#: ../pykolab/conf/__init__.py:424 +#, python-format +msgid "Setting %s to %r (from the default values for CLI options)" +msgstr "" + +#: ../pykolab/conf/__init__.py:441 +#, python-format +msgid "Option %s/%s does not exist in config file %s, pulling from defaults" +msgstr "" + +#: ../pykolab/conf/__init__.py:449 ../pykolab/conf/__init__.py:452 +msgid "Option does not exist in defaults." +msgstr "" + +#: ../pykolab/conf/__init__.py:450 ../pykolab/conf/__init__.py:453 +msgid "Not available" +msgstr "" + +#: ../pykolab/conf/__init__.py:462 +#, python-format +msgid "Configuration file %s not readable." +msgstr "" + +#: ../pykolab/conf/__init__.py:465 +#, python-format +msgid "Configuration file %s does not exist." +msgstr "" + +#: ../pykolab/conf/__init__.py:470 +msgid "" +"WARNING: A negative debug level value does not make this program be any more " +"silent." +msgstr "" + +#: ../pykolab/conf/__init__.py:476 +msgid "" +"WARNING: This program has 9 levels of verbosity. Using the maximum of 9." +msgstr "" + +#: ../pykolab/conf/__init__.py:486 +msgid "No imaplib library found." +msgstr "" + +#: ../pykolab/conf/__init__.py:496 +msgid "No LMTP class found in the smtplib library." +msgstr "" + +#: ../pykolab/conf/__init__.py:506 +msgid "No SMTP class found in the smtplib library." +msgstr "" + +#: ../pykolab/conf/__init__.py:517 +#, python-format +msgid "Found you specified a specific set of items to test: %s" +msgstr "" + +#: ../pykolab/conf/__init__.py:525 +#, python-format +msgid "Selectively selecting: %s" +msgstr "" + +#: ../pykolab/constants.py:39 +msgid "PyKolab is a Kolab Systems product. For more information " +msgstr "" + +#: ../pykolab/constants.py:53 +msgid "WARNING" +msgstr "" + +#: ../pykolab/constants.py:53 +msgid "The Fully Qualified " +msgstr "" + +#: ../pykolab/constants.py:73 +msgid "389 Directory Server or Red Hat Directory Server" +msgstr "" + +#: ../pykolab/constants.py:77 ../pykolab/constants.py:81 +msgid "OpenLDAP or compatible" +msgstr "" + +#: ../pykolab/imap/__init__.py:74 ../pykolab/imap/__init__.py:79 +#, python-format +msgid "Creating new INBOX for user: %s" +msgstr "" + +#: ../pykolab/imap/__init__.py:145 +#, python-format +msgid "Setting new quota for folder %s to %r" +msgstr "" + +#: ../pykolab/imap/__init__.py:149 +#, python-format +msgid "Quota for %s currently is %s" +msgstr "" + +#: ../pykolab/imap/__init__.py:152 +#, python-format +msgid "Correcting quota for %s to %s (currently %s)" +msgstr "" + +#: ../pykolab/imap/__init__.py:178 +#, python-format +msgid "Folder has no corresponding user (1): %s" +msgstr "" + +#: ../pykolab/imap/__init__.py:181 +#, python-format +msgid "Folder has no corresponding user (2): %s" +msgstr "" + +#: ../pykolab/logger.py:42 +#, python-format +msgid "Cannot log to file %s: %s" +msgstr "" + +#: ../pykolab/logger.py:87 ../pykolab/logger.py:96 +msgid "Do you want to continue? [Y/n]" +msgstr "" + +#: ../pykolab/logger.py:90 ../pykolab/logger.py:99 +msgid "Abort! Abort! Abort!" +msgstr "" + +#: ../pykolab/plugins.py:56 +#, python-format +msgid "ImportError for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:59 +#, python-format +msgid "RuntimeError for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:62 +#, python-format +msgid "Plugin %s failed to load (%s: %s)" +msgstr "" + +#: ../pykolab/plugins.py:89 ../pykolab/plugins.py:91 +#, python-format +msgid "Cannot set defaults for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:93 +#, python-format +msgid "Cannot set defaults for plugin %s: Unknown Error" +msgstr "" + +#: ../pykolab/plugins.py:96 +#, python-format +msgid "Not setting defaults for plugin %s: No function 'set_defaults()'" +msgstr "" + +#: ../pykolab/plugins.py:113 +#, python-format +msgid "Cannot set runtime for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:115 +#, python-format +msgid "Not setting runtime for plugin %s: No function 'set_runtime()'" +msgstr "" + +#: ../pykolab/plugins.py:132 +#, python-format +msgid "Cannot add options for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:134 +#, python-format +msgid "Not adding options for plugin %s: No function 'add_options()'" +msgstr "" + +#: ../pykolab/plugins.py:152 +#, python-format +msgid "Cannot check options for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:154 +#, python-format +msgid "Not checking options for plugin %s: No function 'check_options()'" +msgstr "" + +#: ../pykolab/plugins.py:192 ../pykolab/plugins.py:194 +#, python-format +msgid "Cannot execute hook %s for plugin %s: %s" +msgstr "" + +#: ../pykolab/setup/ldap_setup.py:29 +msgid "Cannot load Python LDAP libraries." +msgstr "" + +#: ../pykolab/setup/ldap_setup.py:53 +#, python-format +msgid "Warning: LDAP Service '%s' is available on " +msgstr "" + +#: ../pykolab/setup/ldap_setup.py:56 +#, python-format +msgid "Found system service %s." +msgstr "" + +#. ldap_uri = utils.ask_question(_("LDAP URI (read/write)"), "ldap://ldap.%s" %(constants.domainname)) +#: ../pykolab/setup/ldap_setup.py:59 +msgid "LDAP URI (read/write)" +msgstr "" + +#. This is a funny input error ("") +#: ../pykolab/setup/ldap_setup.py:69 ../pykolab/setup/ldap_setup.py:76 +msgid "Could not connect to LDAP server due to " +msgstr "" + +#: ../pykolab/setup/ldap_setup.py:73 +msgid "Your username or password are incorrect" +msgstr "" + +#: ../pykolab/tests/calendar.py:146 +#, python-format +msgid "Creating %d Events" +msgstr "" + +#: ../pykolab/tests/calendar.py:177 +#, python-format +msgid "Creating Calendar item number %d" +msgstr "" + +#: ../pykolab/tests/calendar.py:189 ../pykolab/tests/contacts.py:133 +#, python-format +msgid "Sending UID message %s through SMTP targeting user %s@%s" +msgstr "" + +#: ../pykolab/tests/calendar.py:192 ../pykolab/tests/contacts.py:136 +#, python-format +msgid "Sending UID message %s through LMTP targeting user %s@%s" +msgstr "" + +#: ../pykolab/tests/calendar.py:195 ../pykolab/tests/contacts.py:139 +#, python-format +msgid "Saving UID message %s to IMAP (user %s, folder %s)" +msgstr "" + +#: ../pykolab/tests/calendar.py:198 ../pykolab/tests/contacts.py:142 +#: ../pykolab/tests/mail.py:125 +msgid "Somehow ended up NOT sending these messages" +msgstr "" + +#: ../pykolab/tests/contacts.py:97 +#, python-format +msgid "Creating %d Contacts" +msgstr "" + +#: ../pykolab/tests/contacts.py:121 +#, python-format +msgid "Creating Contact item number %d" +msgstr "" + +#: ../pykolab/tests/__init__.py:35 +msgid "Test Options" +msgstr "" + +#: ../pykolab/tests/__init__.py:42 +#, python-format +msgid "Submit a number of items to the %s" +msgstr "" + +#: ../pykolab/tests/__init__.py:48 +msgid "Run tests in suite SUITE. Implies a certain set of items being tested." +msgstr "" + +#: ../pykolab/tests/__init__.py:51 +msgid "Content Delivery Options" +msgstr "" + +#: ../pykolab/tests/__init__.py:57 +msgid "" +"Send messages containing the items through mail (requires proper " +"infrastructure)" +msgstr "" + +#: ../pykolab/tests/__init__.py:63 +msgid "Inject messages containing the items through IMAP (requires imaplib)" +msgstr "" + +#: ../pykolab/tests/__init__.py:69 +msgid "Deliver messages containing the items through LMTP (requires imaplib)" +msgstr "" + +#: ../pykolab/tests/__init__.py:80 +#, python-format +msgid "Tests for suite %s failed to load. Aborting." +msgstr "" + +#: ../pykolab/tests/mail.py:92 +#, python-format +msgid "Creating %d Mails" +msgstr "" + +#: ../pykolab/tests/mail.py:116 +#, python-format +msgid "Sending message %s through SMTP targeting user %s@%s" +msgstr "" + +#: ../pykolab/tests/mail.py:119 +#, python-format +msgid "Sending message %s through LMTP targeting user %s@%s" +msgstr "" + +#: ../pykolab/tests/mail.py:122 +#, python-format +msgid "Saving message %s to IMAP (user %s, folder %s)" +msgstr "" + +#: ../pykolab/tests/zpush/test_000_000.py:96 +#, python-format +msgid "Deleting mailbox: %s" +msgstr "" + +#: ../pykolab/tests/zpush/test_000_000.py:105 +#, python-format +msgid "Creating mailbox: %s" +msgstr "" + +#: ../pykolab/tests/zpush/test_000_000.py:121 +#, python-format +msgid "Authentication failure for %s" +msgstr "" + +#: ../pykolab/tests/zpush/test_000_001.py:48 +#, python-format +msgid "Could not load %sItem from %s, skipping the testing." +msgstr "" + +#: ../pykolab/utils.py:71 +msgid "Please answer 'yes' or 'no'." +msgstr "" + +#: ../setup-kolab.py:52 +#, python-format +msgid "Cannot find %s_setup()." +msgstr "" + +#: ../setup-kolab.py:54 +#, python-format +msgid "Cannot load setup for %s." +msgstr "" + +#. Means we get to ask some questions. +#: ../setup-kolab.py:58 +msgid "Please select the components to set up:" +msgstr "" + +#: ../setup-kolab.py:65 +msgid "Selection" +msgstr "" diff --git a/po/el.po b/po/el.po new file mode 100644 index 0000000..ae00f78 --- /dev/null +++ b/po/el.po @@ -0,0 +1,563 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-02-21 21:23+0000\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" + +#: ../conf.py:37 ../kolabd.py:33 ../kolab.py:34 ../kolabtest.py:34 +#: ../setup-kolab.py:36 +msgid "Cannot load pykolab/logger.py:" +msgstr "" + +#: ../kolabd/__init__.py:44 ../pykolab-0.1/kolabd/__init__.py:44 +msgid "Daemon Options" +msgstr "" + +#: ../kolabd/__init__.py:50 ../pykolab-0.1/kolabd/__init__.py:50 +msgid "For to the background." +msgstr "" + +#: ../kolabd/__init__.py:78 ../pykolab-0.1/kolabd/__init__.py:78 +msgid "Interrupted by user" +msgstr "" + +#: ../kolabd/__init__.py:82 ../kolabd/__init__.py:90 +#: ../pykolab-0.1/kolabd/__init__.py:82 ../pykolab-0.1/kolabd/__init__.py:90 +msgid "Traceback occurred, please report a bug at http://issues.kolab.org" +msgstr "" + +#: ../kolabd/__init__.py:86 ../pykolab-0.1/kolabd/__init__.py:86 +#, python-format +msgid "Type Error: %s" +msgstr "" + +#: ../kolabd/__init__.py:95 ../pykolab-0.1/kolabd/__init__.py:95 +msgid "Sleeping for 10 seconds..." +msgstr "" + +#: ../pykolab/auth/ldap/__init__.py:42 +msgid "Connecting to LDAP..." +msgstr "" + +#: ../pykolab/cli/__init__.py:40 +msgid "Domain Options" +msgstr "" + +#: ../pykolab/cli/__init__.py:45 +msgid "Review LDIF before committed" +msgstr "" + +#: ../pykolab/cli/__init__.py:55 +#, python-format +msgid "TODO: self.check_%s()" +msgstr "" + +#: ../pykolab/cli/__init__.py:81 +#, python-format +msgid "Deleting domain %s" +msgstr "" + +#: ../pykolab/cli/__init__.py:93 +#, python-format +msgid "No domain %s exists." +msgstr "" + +#: ../pykolab/cli/__init__.py:99 +msgid "TODO: Figure out where the domain should actually be added." +msgstr "" + +#: ../pykolab/cli/__init__.py:103 +#, python-format +msgid "Adding domain %s" +msgstr "" + +#. The dn of our new entry/object +#: ../pykolab/cli/__init__.py:106 +msgid "TODO: Make the format for a new domain configurable." +msgstr "" + +#. A dict to help build the "body" of the object +#: ../pykolab/cli/__init__.py:110 +msgid "TODO: Make what a domain looks like configurable." +msgstr "" + +#: ../pykolab/cli/__init__.py:122 +msgid "" +"TODO: Prompt for organization name/description. For now, use domain name." +msgstr "" + +#: ../pykolab/cli/__init__.py:130 +msgid "Please ACK or NACK the above LDIF:" +msgstr "" + +#: ../pykolab/cli/__init__.py:146 +#, python-format +msgid "Domain %s already exists." +msgstr "" + +#: ../pykolab/cli/__init__.py:156 +msgid "Actions" +msgstr "" + +#: ../pykolab/conf/__init__.py:81 +#, python-format +msgid "Setting %s to %r (from defaults)" +msgstr "" + +#: ../pykolab/conf/__init__.py:92 +#, python-format +msgid "Setting %s to %r (from runtime)" +msgstr "" + +#: ../pykolab/conf/__init__.py:106 +#, python-format +msgid "Setting %s to %r (from CLI, verified)" +msgstr "" + +#: ../pykolab/conf/__init__.py:109 +#, python-format +msgid "Setting %s to %r (from CLI, not checked)" +msgstr "" + +#: ../pykolab/conf/__init__.py:154 ../pykolab/conf/__init__.py:208 +#, python-format +msgid "Setting %s_%s to '****' (from configuration file)" +msgstr "" + +#: ../pykolab/conf/__init__.py:156 ../pykolab/conf/__init__.py:210 +#, python-format +msgid "Setting %s_%s to %r (from configuration file)" +msgstr "" + +#: ../pykolab/conf/__init__.py:165 +msgid "Setting options from configuration file" +msgstr "" + +#: ../pykolab/conf/__init__.py:224 +#, python-format +msgid "Configuration file %s not readable" +msgstr "" + +#: ../pykolab/conf/__init__.py:227 +#, python-format +msgid "Reading configuration file %s" +msgstr "" + +#: ../pykolab/conf/__init__.py:231 +#, python-format +msgid "Invalid configuration file %s" +msgstr "" + +#: ../pykolab/conf/__init__.py:234 +#, python-format +msgid "No master configuration section [revisor] in configuration file %s" +msgstr "" + +#. # +#. # Runtime Options +#. # +#: ../pykolab/conf/__init__.py:253 +msgid "Runtime Options" +msgstr "" + +#: ../pykolab/conf/__init__.py:258 +msgid "Configuration file to use" +msgstr "" + +#: ../pykolab/conf/__init__.py:264 +msgid "Set the debugging verbosity. Maximum is 99" +msgstr "" + +#: ../pykolab/conf/__init__.py:270 +msgid "Log file to use" +msgstr "" + +#: ../pykolab/conf/__init__.py:276 +msgid "Be quiet." +msgstr "" + +#: ../pykolab/conf/__init__.py:282 +msgid "Answer yes to all questions." +msgstr "" + +#: ../pykolab/conf/__init__.py:310 +msgid "No command supplied" +msgstr "" + +#: ../pykolab/conf/__init__.py:392 +msgid "Insufficient options. Need section, key and value -in that order." +msgstr "" + +#: ../pykolab/conf/__init__.py:395 +#, python-format +msgid "No section '%s' exists." +msgstr "" + +#: ../pykolab/conf/__init__.py:424 +#, python-format +msgid "Setting %s to %r (from the default values for CLI options)" +msgstr "" + +#: ../pykolab/conf/__init__.py:441 +#, python-format +msgid "Option %s/%s does not exist in config file %s, pulling from defaults" +msgstr "" + +#: ../pykolab/conf/__init__.py:449 ../pykolab/conf/__init__.py:452 +msgid "Option does not exist in defaults." +msgstr "" + +#: ../pykolab/conf/__init__.py:450 ../pykolab/conf/__init__.py:453 +msgid "Not available" +msgstr "" + +#: ../pykolab/conf/__init__.py:462 +#, python-format +msgid "Configuration file %s not readable." +msgstr "" + +#: ../pykolab/conf/__init__.py:465 +#, python-format +msgid "Configuration file %s does not exist." +msgstr "" + +#: ../pykolab/conf/__init__.py:470 +msgid "" +"WARNING: A negative debug level value does not make this program be any more " +"silent." +msgstr "" + +#: ../pykolab/conf/__init__.py:476 +msgid "" +"WARNING: This program has 9 levels of verbosity. Using the maximum of 9." +msgstr "" + +#: ../pykolab/conf/__init__.py:486 +msgid "No imaplib library found." +msgstr "" + +#: ../pykolab/conf/__init__.py:496 +msgid "No LMTP class found in the smtplib library." +msgstr "" + +#: ../pykolab/conf/__init__.py:506 +msgid "No SMTP class found in the smtplib library." +msgstr "" + +#: ../pykolab/conf/__init__.py:517 +#, python-format +msgid "Found you specified a specific set of items to test: %s" +msgstr "" + +#: ../pykolab/conf/__init__.py:525 +#, python-format +msgid "Selectively selecting: %s" +msgstr "" + +#: ../pykolab/constants.py:39 +msgid "PyKolab is a Kolab Systems product. For more information " +msgstr "" + +#: ../pykolab/constants.py:53 +msgid "WARNING" +msgstr "" + +#: ../pykolab/constants.py:53 +msgid "The Fully Qualified " +msgstr "" + +#: ../pykolab/constants.py:73 +msgid "389 Directory Server or Red Hat Directory Server" +msgstr "" + +#: ../pykolab/constants.py:77 ../pykolab/constants.py:81 +msgid "OpenLDAP or compatible" +msgstr "" + +#: ../pykolab/imap/__init__.py:74 ../pykolab/imap/__init__.py:79 +#, python-format +msgid "Creating new INBOX for user: %s" +msgstr "" + +#: ../pykolab/imap/__init__.py:145 +#, python-format +msgid "Setting new quota for folder %s to %r" +msgstr "" + +#: ../pykolab/imap/__init__.py:149 +#, python-format +msgid "Quota for %s currently is %s" +msgstr "" + +#: ../pykolab/imap/__init__.py:152 +#, python-format +msgid "Correcting quota for %s to %s (currently %s)" +msgstr "" + +#: ../pykolab/imap/__init__.py:178 +#, python-format +msgid "Folder has no corresponding user (1): %s" +msgstr "" + +#: ../pykolab/imap/__init__.py:181 +#, python-format +msgid "Folder has no corresponding user (2): %s" +msgstr "" + +#: ../pykolab/logger.py:42 +#, python-format +msgid "Cannot log to file %s: %s" +msgstr "" + +#: ../pykolab/logger.py:87 ../pykolab/logger.py:96 +msgid "Do you want to continue? [Y/n]" +msgstr "" + +#: ../pykolab/logger.py:90 ../pykolab/logger.py:99 +msgid "Abort! Abort! Abort!" +msgstr "" + +#: ../pykolab/plugins.py:56 +#, python-format +msgid "ImportError for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:59 +#, python-format +msgid "RuntimeError for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:62 +#, python-format +msgid "Plugin %s failed to load (%s: %s)" +msgstr "" + +#: ../pykolab/plugins.py:89 ../pykolab/plugins.py:91 +#, python-format +msgid "Cannot set defaults for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:93 +#, python-format +msgid "Cannot set defaults for plugin %s: Unknown Error" +msgstr "" + +#: ../pykolab/plugins.py:96 +#, python-format +msgid "Not setting defaults for plugin %s: No function 'set_defaults()'" +msgstr "" + +#: ../pykolab/plugins.py:113 +#, python-format +msgid "Cannot set runtime for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:115 +#, python-format +msgid "Not setting runtime for plugin %s: No function 'set_runtime()'" +msgstr "" + +#: ../pykolab/plugins.py:132 +#, python-format +msgid "Cannot add options for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:134 +#, python-format +msgid "Not adding options for plugin %s: No function 'add_options()'" +msgstr "" + +#: ../pykolab/plugins.py:152 +#, python-format +msgid "Cannot check options for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:154 +#, python-format +msgid "Not checking options for plugin %s: No function 'check_options()'" +msgstr "" + +#: ../pykolab/plugins.py:192 ../pykolab/plugins.py:194 +#, python-format +msgid "Cannot execute hook %s for plugin %s: %s" +msgstr "" + +#: ../pykolab/setup/ldap_setup.py:29 +msgid "Cannot load Python LDAP libraries." +msgstr "" + +#: ../pykolab/setup/ldap_setup.py:53 +#, python-format +msgid "Warning: LDAP Service '%s' is available on " +msgstr "" + +#: ../pykolab/setup/ldap_setup.py:56 +#, python-format +msgid "Found system service %s." +msgstr "" + +#. ldap_uri = utils.ask_question(_("LDAP URI (read/write)"), "ldap://ldap.%s" %(constants.domainname)) +#: ../pykolab/setup/ldap_setup.py:59 +msgid "LDAP URI (read/write)" +msgstr "" + +#. This is a funny input error ("") +#: ../pykolab/setup/ldap_setup.py:69 ../pykolab/setup/ldap_setup.py:76 +msgid "Could not connect to LDAP server due to " +msgstr "" + +#: ../pykolab/setup/ldap_setup.py:73 +msgid "Your username or password are incorrect" +msgstr "" + +#: ../pykolab/tests/calendar.py:146 +#, python-format +msgid "Creating %d Events" +msgstr "" + +#: ../pykolab/tests/calendar.py:177 +#, python-format +msgid "Creating Calendar item number %d" +msgstr "" + +#: ../pykolab/tests/calendar.py:189 ../pykolab/tests/contacts.py:133 +#, python-format +msgid "Sending UID message %s through SMTP targeting user %s@%s" +msgstr "" + +#: ../pykolab/tests/calendar.py:192 ../pykolab/tests/contacts.py:136 +#, python-format +msgid "Sending UID message %s through LMTP targeting user %s@%s" +msgstr "" + +#: ../pykolab/tests/calendar.py:195 ../pykolab/tests/contacts.py:139 +#, python-format +msgid "Saving UID message %s to IMAP (user %s, folder %s)" +msgstr "" + +#: ../pykolab/tests/calendar.py:198 ../pykolab/tests/contacts.py:142 +#: ../pykolab/tests/mail.py:125 +msgid "Somehow ended up NOT sending these messages" +msgstr "" + +#: ../pykolab/tests/contacts.py:97 +#, python-format +msgid "Creating %d Contacts" +msgstr "" + +#: ../pykolab/tests/contacts.py:121 +#, python-format +msgid "Creating Contact item number %d" +msgstr "" + +#: ../pykolab/tests/__init__.py:35 +msgid "Test Options" +msgstr "" + +#: ../pykolab/tests/__init__.py:42 +#, python-format +msgid "Submit a number of items to the %s" +msgstr "" + +#: ../pykolab/tests/__init__.py:48 +msgid "Run tests in suite SUITE. Implies a certain set of items being tested." +msgstr "" + +#: ../pykolab/tests/__init__.py:51 +msgid "Content Delivery Options" +msgstr "" + +#: ../pykolab/tests/__init__.py:57 +msgid "" +"Send messages containing the items through mail (requires proper " +"infrastructure)" +msgstr "" + +#: ../pykolab/tests/__init__.py:63 +msgid "Inject messages containing the items through IMAP (requires imaplib)" +msgstr "" + +#: ../pykolab/tests/__init__.py:69 +msgid "Deliver messages containing the items through LMTP (requires imaplib)" +msgstr "" + +#: ../pykolab/tests/__init__.py:80 +#, python-format +msgid "Tests for suite %s failed to load. Aborting." +msgstr "" + +#: ../pykolab/tests/mail.py:92 +#, python-format +msgid "Creating %d Mails" +msgstr "" + +#: ../pykolab/tests/mail.py:116 +#, python-format +msgid "Sending message %s through SMTP targeting user %s@%s" +msgstr "" + +#: ../pykolab/tests/mail.py:119 +#, python-format +msgid "Sending message %s through LMTP targeting user %s@%s" +msgstr "" + +#: ../pykolab/tests/mail.py:122 +#, python-format +msgid "Saving message %s to IMAP (user %s, folder %s)" +msgstr "" + +#: ../pykolab/tests/zpush/test_000_000.py:96 +#, python-format +msgid "Deleting mailbox: %s" +msgstr "" + +#: ../pykolab/tests/zpush/test_000_000.py:105 +#, python-format +msgid "Creating mailbox: %s" +msgstr "" + +#: ../pykolab/tests/zpush/test_000_000.py:121 +#, python-format +msgid "Authentication failure for %s" +msgstr "" + +#: ../pykolab/tests/zpush/test_000_001.py:48 +#, python-format +msgid "Could not load %sItem from %s, skipping the testing." +msgstr "" + +#: ../pykolab/utils.py:71 +msgid "Please answer 'yes' or 'no'." +msgstr "" + +#: ../setup-kolab.py:52 +#, python-format +msgid "Cannot find %s_setup()." +msgstr "" + +#: ../setup-kolab.py:54 +#, python-format +msgid "Cannot load setup for %s." +msgstr "" + +#. Means we get to ask some questions. +#: ../setup-kolab.py:58 +msgid "Please select the components to set up:" +msgstr "" + +#: ../setup-kolab.py:65 +msgid "Selection" +msgstr "" diff --git a/po/es.po b/po/es.po new file mode 100644 index 0000000..ae00f78 --- /dev/null +++ b/po/es.po @@ -0,0 +1,563 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-02-21 21:23+0000\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" + +#: ../conf.py:37 ../kolabd.py:33 ../kolab.py:34 ../kolabtest.py:34 +#: ../setup-kolab.py:36 +msgid "Cannot load pykolab/logger.py:" +msgstr "" + +#: ../kolabd/__init__.py:44 ../pykolab-0.1/kolabd/__init__.py:44 +msgid "Daemon Options" +msgstr "" + +#: ../kolabd/__init__.py:50 ../pykolab-0.1/kolabd/__init__.py:50 +msgid "For to the background." +msgstr "" + +#: ../kolabd/__init__.py:78 ../pykolab-0.1/kolabd/__init__.py:78 +msgid "Interrupted by user" +msgstr "" + +#: ../kolabd/__init__.py:82 ../kolabd/__init__.py:90 +#: ../pykolab-0.1/kolabd/__init__.py:82 ../pykolab-0.1/kolabd/__init__.py:90 +msgid "Traceback occurred, please report a bug at http://issues.kolab.org" +msgstr "" + +#: ../kolabd/__init__.py:86 ../pykolab-0.1/kolabd/__init__.py:86 +#, python-format +msgid "Type Error: %s" +msgstr "" + +#: ../kolabd/__init__.py:95 ../pykolab-0.1/kolabd/__init__.py:95 +msgid "Sleeping for 10 seconds..." +msgstr "" + +#: ../pykolab/auth/ldap/__init__.py:42 +msgid "Connecting to LDAP..." +msgstr "" + +#: ../pykolab/cli/__init__.py:40 +msgid "Domain Options" +msgstr "" + +#: ../pykolab/cli/__init__.py:45 +msgid "Review LDIF before committed" +msgstr "" + +#: ../pykolab/cli/__init__.py:55 +#, python-format +msgid "TODO: self.check_%s()" +msgstr "" + +#: ../pykolab/cli/__init__.py:81 +#, python-format +msgid "Deleting domain %s" +msgstr "" + +#: ../pykolab/cli/__init__.py:93 +#, python-format +msgid "No domain %s exists." +msgstr "" + +#: ../pykolab/cli/__init__.py:99 +msgid "TODO: Figure out where the domain should actually be added." +msgstr "" + +#: ../pykolab/cli/__init__.py:103 +#, python-format +msgid "Adding domain %s" +msgstr "" + +#. The dn of our new entry/object +#: ../pykolab/cli/__init__.py:106 +msgid "TODO: Make the format for a new domain configurable." +msgstr "" + +#. A dict to help build the "body" of the object +#: ../pykolab/cli/__init__.py:110 +msgid "TODO: Make what a domain looks like configurable." +msgstr "" + +#: ../pykolab/cli/__init__.py:122 +msgid "" +"TODO: Prompt for organization name/description. For now, use domain name." +msgstr "" + +#: ../pykolab/cli/__init__.py:130 +msgid "Please ACK or NACK the above LDIF:" +msgstr "" + +#: ../pykolab/cli/__init__.py:146 +#, python-format +msgid "Domain %s already exists." +msgstr "" + +#: ../pykolab/cli/__init__.py:156 +msgid "Actions" +msgstr "" + +#: ../pykolab/conf/__init__.py:81 +#, python-format +msgid "Setting %s to %r (from defaults)" +msgstr "" + +#: ../pykolab/conf/__init__.py:92 +#, python-format +msgid "Setting %s to %r (from runtime)" +msgstr "" + +#: ../pykolab/conf/__init__.py:106 +#, python-format +msgid "Setting %s to %r (from CLI, verified)" +msgstr "" + +#: ../pykolab/conf/__init__.py:109 +#, python-format +msgid "Setting %s to %r (from CLI, not checked)" +msgstr "" + +#: ../pykolab/conf/__init__.py:154 ../pykolab/conf/__init__.py:208 +#, python-format +msgid "Setting %s_%s to '****' (from configuration file)" +msgstr "" + +#: ../pykolab/conf/__init__.py:156 ../pykolab/conf/__init__.py:210 +#, python-format +msgid "Setting %s_%s to %r (from configuration file)" +msgstr "" + +#: ../pykolab/conf/__init__.py:165 +msgid "Setting options from configuration file" +msgstr "" + +#: ../pykolab/conf/__init__.py:224 +#, python-format +msgid "Configuration file %s not readable" +msgstr "" + +#: ../pykolab/conf/__init__.py:227 +#, python-format +msgid "Reading configuration file %s" +msgstr "" + +#: ../pykolab/conf/__init__.py:231 +#, python-format +msgid "Invalid configuration file %s" +msgstr "" + +#: ../pykolab/conf/__init__.py:234 +#, python-format +msgid "No master configuration section [revisor] in configuration file %s" +msgstr "" + +#. # +#. # Runtime Options +#. # +#: ../pykolab/conf/__init__.py:253 +msgid "Runtime Options" +msgstr "" + +#: ../pykolab/conf/__init__.py:258 +msgid "Configuration file to use" +msgstr "" + +#: ../pykolab/conf/__init__.py:264 +msgid "Set the debugging verbosity. Maximum is 99" +msgstr "" + +#: ../pykolab/conf/__init__.py:270 +msgid "Log file to use" +msgstr "" + +#: ../pykolab/conf/__init__.py:276 +msgid "Be quiet." +msgstr "" + +#: ../pykolab/conf/__init__.py:282 +msgid "Answer yes to all questions." +msgstr "" + +#: ../pykolab/conf/__init__.py:310 +msgid "No command supplied" +msgstr "" + +#: ../pykolab/conf/__init__.py:392 +msgid "Insufficient options. Need section, key and value -in that order." +msgstr "" + +#: ../pykolab/conf/__init__.py:395 +#, python-format +msgid "No section '%s' exists." +msgstr "" + +#: ../pykolab/conf/__init__.py:424 +#, python-format +msgid "Setting %s to %r (from the default values for CLI options)" +msgstr "" + +#: ../pykolab/conf/__init__.py:441 +#, python-format +msgid "Option %s/%s does not exist in config file %s, pulling from defaults" +msgstr "" + +#: ../pykolab/conf/__init__.py:449 ../pykolab/conf/__init__.py:452 +msgid "Option does not exist in defaults." +msgstr "" + +#: ../pykolab/conf/__init__.py:450 ../pykolab/conf/__init__.py:453 +msgid "Not available" +msgstr "" + +#: ../pykolab/conf/__init__.py:462 +#, python-format +msgid "Configuration file %s not readable." +msgstr "" + +#: ../pykolab/conf/__init__.py:465 +#, python-format +msgid "Configuration file %s does not exist." +msgstr "" + +#: ../pykolab/conf/__init__.py:470 +msgid "" +"WARNING: A negative debug level value does not make this program be any more " +"silent." +msgstr "" + +#: ../pykolab/conf/__init__.py:476 +msgid "" +"WARNING: This program has 9 levels of verbosity. Using the maximum of 9." +msgstr "" + +#: ../pykolab/conf/__init__.py:486 +msgid "No imaplib library found." +msgstr "" + +#: ../pykolab/conf/__init__.py:496 +msgid "No LMTP class found in the smtplib library." +msgstr "" + +#: ../pykolab/conf/__init__.py:506 +msgid "No SMTP class found in the smtplib library." +msgstr "" + +#: ../pykolab/conf/__init__.py:517 +#, python-format +msgid "Found you specified a specific set of items to test: %s" +msgstr "" + +#: ../pykolab/conf/__init__.py:525 +#, python-format +msgid "Selectively selecting: %s" +msgstr "" + +#: ../pykolab/constants.py:39 +msgid "PyKolab is a Kolab Systems product. For more information " +msgstr "" + +#: ../pykolab/constants.py:53 +msgid "WARNING" +msgstr "" + +#: ../pykolab/constants.py:53 +msgid "The Fully Qualified " +msgstr "" + +#: ../pykolab/constants.py:73 +msgid "389 Directory Server or Red Hat Directory Server" +msgstr "" + +#: ../pykolab/constants.py:77 ../pykolab/constants.py:81 +msgid "OpenLDAP or compatible" +msgstr "" + +#: ../pykolab/imap/__init__.py:74 ../pykolab/imap/__init__.py:79 +#, python-format +msgid "Creating new INBOX for user: %s" +msgstr "" + +#: ../pykolab/imap/__init__.py:145 +#, python-format +msgid "Setting new quota for folder %s to %r" +msgstr "" + +#: ../pykolab/imap/__init__.py:149 +#, python-format +msgid "Quota for %s currently is %s" +msgstr "" + +#: ../pykolab/imap/__init__.py:152 +#, python-format +msgid "Correcting quota for %s to %s (currently %s)" +msgstr "" + +#: ../pykolab/imap/__init__.py:178 +#, python-format +msgid "Folder has no corresponding user (1): %s" +msgstr "" + +#: ../pykolab/imap/__init__.py:181 +#, python-format +msgid "Folder has no corresponding user (2): %s" +msgstr "" + +#: ../pykolab/logger.py:42 +#, python-format +msgid "Cannot log to file %s: %s" +msgstr "" + +#: ../pykolab/logger.py:87 ../pykolab/logger.py:96 +msgid "Do you want to continue? [Y/n]" +msgstr "" + +#: ../pykolab/logger.py:90 ../pykolab/logger.py:99 +msgid "Abort! Abort! Abort!" +msgstr "" + +#: ../pykolab/plugins.py:56 +#, python-format +msgid "ImportError for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:59 +#, python-format +msgid "RuntimeError for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:62 +#, python-format +msgid "Plugin %s failed to load (%s: %s)" +msgstr "" + +#: ../pykolab/plugins.py:89 ../pykolab/plugins.py:91 +#, python-format +msgid "Cannot set defaults for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:93 +#, python-format +msgid "Cannot set defaults for plugin %s: Unknown Error" +msgstr "" + +#: ../pykolab/plugins.py:96 +#, python-format +msgid "Not setting defaults for plugin %s: No function 'set_defaults()'" +msgstr "" + +#: ../pykolab/plugins.py:113 +#, python-format +msgid "Cannot set runtime for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:115 +#, python-format +msgid "Not setting runtime for plugin %s: No function 'set_runtime()'" +msgstr "" + +#: ../pykolab/plugins.py:132 +#, python-format +msgid "Cannot add options for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:134 +#, python-format +msgid "Not adding options for plugin %s: No function 'add_options()'" +msgstr "" + +#: ../pykolab/plugins.py:152 +#, python-format +msgid "Cannot check options for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:154 +#, python-format +msgid "Not checking options for plugin %s: No function 'check_options()'" +msgstr "" + +#: ../pykolab/plugins.py:192 ../pykolab/plugins.py:194 +#, python-format +msgid "Cannot execute hook %s for plugin %s: %s" +msgstr "" + +#: ../pykolab/setup/ldap_setup.py:29 +msgid "Cannot load Python LDAP libraries." +msgstr "" + +#: ../pykolab/setup/ldap_setup.py:53 +#, python-format +msgid "Warning: LDAP Service '%s' is available on " +msgstr "" + +#: ../pykolab/setup/ldap_setup.py:56 +#, python-format +msgid "Found system service %s." +msgstr "" + +#. ldap_uri = utils.ask_question(_("LDAP URI (read/write)"), "ldap://ldap.%s" %(constants.domainname)) +#: ../pykolab/setup/ldap_setup.py:59 +msgid "LDAP URI (read/write)" +msgstr "" + +#. This is a funny input error ("") +#: ../pykolab/setup/ldap_setup.py:69 ../pykolab/setup/ldap_setup.py:76 +msgid "Could not connect to LDAP server due to " +msgstr "" + +#: ../pykolab/setup/ldap_setup.py:73 +msgid "Your username or password are incorrect" +msgstr "" + +#: ../pykolab/tests/calendar.py:146 +#, python-format +msgid "Creating %d Events" +msgstr "" + +#: ../pykolab/tests/calendar.py:177 +#, python-format +msgid "Creating Calendar item number %d" +msgstr "" + +#: ../pykolab/tests/calendar.py:189 ../pykolab/tests/contacts.py:133 +#, python-format +msgid "Sending UID message %s through SMTP targeting user %s@%s" +msgstr "" + +#: ../pykolab/tests/calendar.py:192 ../pykolab/tests/contacts.py:136 +#, python-format +msgid "Sending UID message %s through LMTP targeting user %s@%s" +msgstr "" + +#: ../pykolab/tests/calendar.py:195 ../pykolab/tests/contacts.py:139 +#, python-format +msgid "Saving UID message %s to IMAP (user %s, folder %s)" +msgstr "" + +#: ../pykolab/tests/calendar.py:198 ../pykolab/tests/contacts.py:142 +#: ../pykolab/tests/mail.py:125 +msgid "Somehow ended up NOT sending these messages" +msgstr "" + +#: ../pykolab/tests/contacts.py:97 +#, python-format +msgid "Creating %d Contacts" +msgstr "" + +#: ../pykolab/tests/contacts.py:121 +#, python-format +msgid "Creating Contact item number %d" +msgstr "" + +#: ../pykolab/tests/__init__.py:35 +msgid "Test Options" +msgstr "" + +#: ../pykolab/tests/__init__.py:42 +#, python-format +msgid "Submit a number of items to the %s" +msgstr "" + +#: ../pykolab/tests/__init__.py:48 +msgid "Run tests in suite SUITE. Implies a certain set of items being tested." +msgstr "" + +#: ../pykolab/tests/__init__.py:51 +msgid "Content Delivery Options" +msgstr "" + +#: ../pykolab/tests/__init__.py:57 +msgid "" +"Send messages containing the items through mail (requires proper " +"infrastructure)" +msgstr "" + +#: ../pykolab/tests/__init__.py:63 +msgid "Inject messages containing the items through IMAP (requires imaplib)" +msgstr "" + +#: ../pykolab/tests/__init__.py:69 +msgid "Deliver messages containing the items through LMTP (requires imaplib)" +msgstr "" + +#: ../pykolab/tests/__init__.py:80 +#, python-format +msgid "Tests for suite %s failed to load. Aborting." +msgstr "" + +#: ../pykolab/tests/mail.py:92 +#, python-format +msgid "Creating %d Mails" +msgstr "" + +#: ../pykolab/tests/mail.py:116 +#, python-format +msgid "Sending message %s through SMTP targeting user %s@%s" +msgstr "" + +#: ../pykolab/tests/mail.py:119 +#, python-format +msgid "Sending message %s through LMTP targeting user %s@%s" +msgstr "" + +#: ../pykolab/tests/mail.py:122 +#, python-format +msgid "Saving message %s to IMAP (user %s, folder %s)" +msgstr "" + +#: ../pykolab/tests/zpush/test_000_000.py:96 +#, python-format +msgid "Deleting mailbox: %s" +msgstr "" + +#: ../pykolab/tests/zpush/test_000_000.py:105 +#, python-format +msgid "Creating mailbox: %s" +msgstr "" + +#: ../pykolab/tests/zpush/test_000_000.py:121 +#, python-format +msgid "Authentication failure for %s" +msgstr "" + +#: ../pykolab/tests/zpush/test_000_001.py:48 +#, python-format +msgid "Could not load %sItem from %s, skipping the testing." +msgstr "" + +#: ../pykolab/utils.py:71 +msgid "Please answer 'yes' or 'no'." +msgstr "" + +#: ../setup-kolab.py:52 +#, python-format +msgid "Cannot find %s_setup()." +msgstr "" + +#: ../setup-kolab.py:54 +#, python-format +msgid "Cannot load setup for %s." +msgstr "" + +#. Means we get to ask some questions. +#: ../setup-kolab.py:58 +msgid "Please select the components to set up:" +msgstr "" + +#: ../setup-kolab.py:65 +msgid "Selection" +msgstr "" diff --git a/po/fi.po b/po/fi.po new file mode 100644 index 0000000..ae00f78 --- /dev/null +++ b/po/fi.po @@ -0,0 +1,563 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-02-21 21:23+0000\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" + +#: ../conf.py:37 ../kolabd.py:33 ../kolab.py:34 ../kolabtest.py:34 +#: ../setup-kolab.py:36 +msgid "Cannot load pykolab/logger.py:" +msgstr "" + +#: ../kolabd/__init__.py:44 ../pykolab-0.1/kolabd/__init__.py:44 +msgid "Daemon Options" +msgstr "" + +#: ../kolabd/__init__.py:50 ../pykolab-0.1/kolabd/__init__.py:50 +msgid "For to the background." +msgstr "" + +#: ../kolabd/__init__.py:78 ../pykolab-0.1/kolabd/__init__.py:78 +msgid "Interrupted by user" +msgstr "" + +#: ../kolabd/__init__.py:82 ../kolabd/__init__.py:90 +#: ../pykolab-0.1/kolabd/__init__.py:82 ../pykolab-0.1/kolabd/__init__.py:90 +msgid "Traceback occurred, please report a bug at http://issues.kolab.org" +msgstr "" + +#: ../kolabd/__init__.py:86 ../pykolab-0.1/kolabd/__init__.py:86 +#, python-format +msgid "Type Error: %s" +msgstr "" + +#: ../kolabd/__init__.py:95 ../pykolab-0.1/kolabd/__init__.py:95 +msgid "Sleeping for 10 seconds..." +msgstr "" + +#: ../pykolab/auth/ldap/__init__.py:42 +msgid "Connecting to LDAP..." +msgstr "" + +#: ../pykolab/cli/__init__.py:40 +msgid "Domain Options" +msgstr "" + +#: ../pykolab/cli/__init__.py:45 +msgid "Review LDIF before committed" +msgstr "" + +#: ../pykolab/cli/__init__.py:55 +#, python-format +msgid "TODO: self.check_%s()" +msgstr "" + +#: ../pykolab/cli/__init__.py:81 +#, python-format +msgid "Deleting domain %s" +msgstr "" + +#: ../pykolab/cli/__init__.py:93 +#, python-format +msgid "No domain %s exists." +msgstr "" + +#: ../pykolab/cli/__init__.py:99 +msgid "TODO: Figure out where the domain should actually be added." +msgstr "" + +#: ../pykolab/cli/__init__.py:103 +#, python-format +msgid "Adding domain %s" +msgstr "" + +#. The dn of our new entry/object +#: ../pykolab/cli/__init__.py:106 +msgid "TODO: Make the format for a new domain configurable." +msgstr "" + +#. A dict to help build the "body" of the object +#: ../pykolab/cli/__init__.py:110 +msgid "TODO: Make what a domain looks like configurable." +msgstr "" + +#: ../pykolab/cli/__init__.py:122 +msgid "" +"TODO: Prompt for organization name/description. For now, use domain name." +msgstr "" + +#: ../pykolab/cli/__init__.py:130 +msgid "Please ACK or NACK the above LDIF:" +msgstr "" + +#: ../pykolab/cli/__init__.py:146 +#, python-format +msgid "Domain %s already exists." +msgstr "" + +#: ../pykolab/cli/__init__.py:156 +msgid "Actions" +msgstr "" + +#: ../pykolab/conf/__init__.py:81 +#, python-format +msgid "Setting %s to %r (from defaults)" +msgstr "" + +#: ../pykolab/conf/__init__.py:92 +#, python-format +msgid "Setting %s to %r (from runtime)" +msgstr "" + +#: ../pykolab/conf/__init__.py:106 +#, python-format +msgid "Setting %s to %r (from CLI, verified)" +msgstr "" + +#: ../pykolab/conf/__init__.py:109 +#, python-format +msgid "Setting %s to %r (from CLI, not checked)" +msgstr "" + +#: ../pykolab/conf/__init__.py:154 ../pykolab/conf/__init__.py:208 +#, python-format +msgid "Setting %s_%s to '****' (from configuration file)" +msgstr "" + +#: ../pykolab/conf/__init__.py:156 ../pykolab/conf/__init__.py:210 +#, python-format +msgid "Setting %s_%s to %r (from configuration file)" +msgstr "" + +#: ../pykolab/conf/__init__.py:165 +msgid "Setting options from configuration file" +msgstr "" + +#: ../pykolab/conf/__init__.py:224 +#, python-format +msgid "Configuration file %s not readable" +msgstr "" + +#: ../pykolab/conf/__init__.py:227 +#, python-format +msgid "Reading configuration file %s" +msgstr "" + +#: ../pykolab/conf/__init__.py:231 +#, python-format +msgid "Invalid configuration file %s" +msgstr "" + +#: ../pykolab/conf/__init__.py:234 +#, python-format +msgid "No master configuration section [revisor] in configuration file %s" +msgstr "" + +#. # +#. # Runtime Options +#. # +#: ../pykolab/conf/__init__.py:253 +msgid "Runtime Options" +msgstr "" + +#: ../pykolab/conf/__init__.py:258 +msgid "Configuration file to use" +msgstr "" + +#: ../pykolab/conf/__init__.py:264 +msgid "Set the debugging verbosity. Maximum is 99" +msgstr "" + +#: ../pykolab/conf/__init__.py:270 +msgid "Log file to use" +msgstr "" + +#: ../pykolab/conf/__init__.py:276 +msgid "Be quiet." +msgstr "" + +#: ../pykolab/conf/__init__.py:282 +msgid "Answer yes to all questions." +msgstr "" + +#: ../pykolab/conf/__init__.py:310 +msgid "No command supplied" +msgstr "" + +#: ../pykolab/conf/__init__.py:392 +msgid "Insufficient options. Need section, key and value -in that order." +msgstr "" + +#: ../pykolab/conf/__init__.py:395 +#, python-format +msgid "No section '%s' exists." +msgstr "" + +#: ../pykolab/conf/__init__.py:424 +#, python-format +msgid "Setting %s to %r (from the default values for CLI options)" +msgstr "" + +#: ../pykolab/conf/__init__.py:441 +#, python-format +msgid "Option %s/%s does not exist in config file %s, pulling from defaults" +msgstr "" + +#: ../pykolab/conf/__init__.py:449 ../pykolab/conf/__init__.py:452 +msgid "Option does not exist in defaults." +msgstr "" + +#: ../pykolab/conf/__init__.py:450 ../pykolab/conf/__init__.py:453 +msgid "Not available" +msgstr "" + +#: ../pykolab/conf/__init__.py:462 +#, python-format +msgid "Configuration file %s not readable." +msgstr "" + +#: ../pykolab/conf/__init__.py:465 +#, python-format +msgid "Configuration file %s does not exist." +msgstr "" + +#: ../pykolab/conf/__init__.py:470 +msgid "" +"WARNING: A negative debug level value does not make this program be any more " +"silent." +msgstr "" + +#: ../pykolab/conf/__init__.py:476 +msgid "" +"WARNING: This program has 9 levels of verbosity. Using the maximum of 9." +msgstr "" + +#: ../pykolab/conf/__init__.py:486 +msgid "No imaplib library found." +msgstr "" + +#: ../pykolab/conf/__init__.py:496 +msgid "No LMTP class found in the smtplib library." +msgstr "" + +#: ../pykolab/conf/__init__.py:506 +msgid "No SMTP class found in the smtplib library." +msgstr "" + +#: ../pykolab/conf/__init__.py:517 +#, python-format +msgid "Found you specified a specific set of items to test: %s" +msgstr "" + +#: ../pykolab/conf/__init__.py:525 +#, python-format +msgid "Selectively selecting: %s" +msgstr "" + +#: ../pykolab/constants.py:39 +msgid "PyKolab is a Kolab Systems product. For more information " +msgstr "" + +#: ../pykolab/constants.py:53 +msgid "WARNING" +msgstr "" + +#: ../pykolab/constants.py:53 +msgid "The Fully Qualified " +msgstr "" + +#: ../pykolab/constants.py:73 +msgid "389 Directory Server or Red Hat Directory Server" +msgstr "" + +#: ../pykolab/constants.py:77 ../pykolab/constants.py:81 +msgid "OpenLDAP or compatible" +msgstr "" + +#: ../pykolab/imap/__init__.py:74 ../pykolab/imap/__init__.py:79 +#, python-format +msgid "Creating new INBOX for user: %s" +msgstr "" + +#: ../pykolab/imap/__init__.py:145 +#, python-format +msgid "Setting new quota for folder %s to %r" +msgstr "" + +#: ../pykolab/imap/__init__.py:149 +#, python-format +msgid "Quota for %s currently is %s" +msgstr "" + +#: ../pykolab/imap/__init__.py:152 +#, python-format +msgid "Correcting quota for %s to %s (currently %s)" +msgstr "" + +#: ../pykolab/imap/__init__.py:178 +#, python-format +msgid "Folder has no corresponding user (1): %s" +msgstr "" + +#: ../pykolab/imap/__init__.py:181 +#, python-format +msgid "Folder has no corresponding user (2): %s" +msgstr "" + +#: ../pykolab/logger.py:42 +#, python-format +msgid "Cannot log to file %s: %s" +msgstr "" + +#: ../pykolab/logger.py:87 ../pykolab/logger.py:96 +msgid "Do you want to continue? [Y/n]" +msgstr "" + +#: ../pykolab/logger.py:90 ../pykolab/logger.py:99 +msgid "Abort! Abort! Abort!" +msgstr "" + +#: ../pykolab/plugins.py:56 +#, python-format +msgid "ImportError for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:59 +#, python-format +msgid "RuntimeError for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:62 +#, python-format +msgid "Plugin %s failed to load (%s: %s)" +msgstr "" + +#: ../pykolab/plugins.py:89 ../pykolab/plugins.py:91 +#, python-format +msgid "Cannot set defaults for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:93 +#, python-format +msgid "Cannot set defaults for plugin %s: Unknown Error" +msgstr "" + +#: ../pykolab/plugins.py:96 +#, python-format +msgid "Not setting defaults for plugin %s: No function 'set_defaults()'" +msgstr "" + +#: ../pykolab/plugins.py:113 +#, python-format +msgid "Cannot set runtime for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:115 +#, python-format +msgid "Not setting runtime for plugin %s: No function 'set_runtime()'" +msgstr "" + +#: ../pykolab/plugins.py:132 +#, python-format +msgid "Cannot add options for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:134 +#, python-format +msgid "Not adding options for plugin %s: No function 'add_options()'" +msgstr "" + +#: ../pykolab/plugins.py:152 +#, python-format +msgid "Cannot check options for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:154 +#, python-format +msgid "Not checking options for plugin %s: No function 'check_options()'" +msgstr "" + +#: ../pykolab/plugins.py:192 ../pykolab/plugins.py:194 +#, python-format +msgid "Cannot execute hook %s for plugin %s: %s" +msgstr "" + +#: ../pykolab/setup/ldap_setup.py:29 +msgid "Cannot load Python LDAP libraries." +msgstr "" + +#: ../pykolab/setup/ldap_setup.py:53 +#, python-format +msgid "Warning: LDAP Service '%s' is available on " +msgstr "" + +#: ../pykolab/setup/ldap_setup.py:56 +#, python-format +msgid "Found system service %s." +msgstr "" + +#. ldap_uri = utils.ask_question(_("LDAP URI (read/write)"), "ldap://ldap.%s" %(constants.domainname)) +#: ../pykolab/setup/ldap_setup.py:59 +msgid "LDAP URI (read/write)" +msgstr "" + +#. This is a funny input error ("") +#: ../pykolab/setup/ldap_setup.py:69 ../pykolab/setup/ldap_setup.py:76 +msgid "Could not connect to LDAP server due to " +msgstr "" + +#: ../pykolab/setup/ldap_setup.py:73 +msgid "Your username or password are incorrect" +msgstr "" + +#: ../pykolab/tests/calendar.py:146 +#, python-format +msgid "Creating %d Events" +msgstr "" + +#: ../pykolab/tests/calendar.py:177 +#, python-format +msgid "Creating Calendar item number %d" +msgstr "" + +#: ../pykolab/tests/calendar.py:189 ../pykolab/tests/contacts.py:133 +#, python-format +msgid "Sending UID message %s through SMTP targeting user %s@%s" +msgstr "" + +#: ../pykolab/tests/calendar.py:192 ../pykolab/tests/contacts.py:136 +#, python-format +msgid "Sending UID message %s through LMTP targeting user %s@%s" +msgstr "" + +#: ../pykolab/tests/calendar.py:195 ../pykolab/tests/contacts.py:139 +#, python-format +msgid "Saving UID message %s to IMAP (user %s, folder %s)" +msgstr "" + +#: ../pykolab/tests/calendar.py:198 ../pykolab/tests/contacts.py:142 +#: ../pykolab/tests/mail.py:125 +msgid "Somehow ended up NOT sending these messages" +msgstr "" + +#: ../pykolab/tests/contacts.py:97 +#, python-format +msgid "Creating %d Contacts" +msgstr "" + +#: ../pykolab/tests/contacts.py:121 +#, python-format +msgid "Creating Contact item number %d" +msgstr "" + +#: ../pykolab/tests/__init__.py:35 +msgid "Test Options" +msgstr "" + +#: ../pykolab/tests/__init__.py:42 +#, python-format +msgid "Submit a number of items to the %s" +msgstr "" + +#: ../pykolab/tests/__init__.py:48 +msgid "Run tests in suite SUITE. Implies a certain set of items being tested." +msgstr "" + +#: ../pykolab/tests/__init__.py:51 +msgid "Content Delivery Options" +msgstr "" + +#: ../pykolab/tests/__init__.py:57 +msgid "" +"Send messages containing the items through mail (requires proper " +"infrastructure)" +msgstr "" + +#: ../pykolab/tests/__init__.py:63 +msgid "Inject messages containing the items through IMAP (requires imaplib)" +msgstr "" + +#: ../pykolab/tests/__init__.py:69 +msgid "Deliver messages containing the items through LMTP (requires imaplib)" +msgstr "" + +#: ../pykolab/tests/__init__.py:80 +#, python-format +msgid "Tests for suite %s failed to load. Aborting." +msgstr "" + +#: ../pykolab/tests/mail.py:92 +#, python-format +msgid "Creating %d Mails" +msgstr "" + +#: ../pykolab/tests/mail.py:116 +#, python-format +msgid "Sending message %s through SMTP targeting user %s@%s" +msgstr "" + +#: ../pykolab/tests/mail.py:119 +#, python-format +msgid "Sending message %s through LMTP targeting user %s@%s" +msgstr "" + +#: ../pykolab/tests/mail.py:122 +#, python-format +msgid "Saving message %s to IMAP (user %s, folder %s)" +msgstr "" + +#: ../pykolab/tests/zpush/test_000_000.py:96 +#, python-format +msgid "Deleting mailbox: %s" +msgstr "" + +#: ../pykolab/tests/zpush/test_000_000.py:105 +#, python-format +msgid "Creating mailbox: %s" +msgstr "" + +#: ../pykolab/tests/zpush/test_000_000.py:121 +#, python-format +msgid "Authentication failure for %s" +msgstr "" + +#: ../pykolab/tests/zpush/test_000_001.py:48 +#, python-format +msgid "Could not load %sItem from %s, skipping the testing." +msgstr "" + +#: ../pykolab/utils.py:71 +msgid "Please answer 'yes' or 'no'." +msgstr "" + +#: ../setup-kolab.py:52 +#, python-format +msgid "Cannot find %s_setup()." +msgstr "" + +#: ../setup-kolab.py:54 +#, python-format +msgid "Cannot load setup for %s." +msgstr "" + +#. Means we get to ask some questions. +#: ../setup-kolab.py:58 +msgid "Please select the components to set up:" +msgstr "" + +#: ../setup-kolab.py:65 +msgid "Selection" +msgstr "" diff --git a/po/fr.po b/po/fr.po new file mode 100644 index 0000000..ae00f78 --- /dev/null +++ b/po/fr.po @@ -0,0 +1,563 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-02-21 21:23+0000\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" + +#: ../conf.py:37 ../kolabd.py:33 ../kolab.py:34 ../kolabtest.py:34 +#: ../setup-kolab.py:36 +msgid "Cannot load pykolab/logger.py:" +msgstr "" + +#: ../kolabd/__init__.py:44 ../pykolab-0.1/kolabd/__init__.py:44 +msgid "Daemon Options" +msgstr "" + +#: ../kolabd/__init__.py:50 ../pykolab-0.1/kolabd/__init__.py:50 +msgid "For to the background." +msgstr "" + +#: ../kolabd/__init__.py:78 ../pykolab-0.1/kolabd/__init__.py:78 +msgid "Interrupted by user" +msgstr "" + +#: ../kolabd/__init__.py:82 ../kolabd/__init__.py:90 +#: ../pykolab-0.1/kolabd/__init__.py:82 ../pykolab-0.1/kolabd/__init__.py:90 +msgid "Traceback occurred, please report a bug at http://issues.kolab.org" +msgstr "" + +#: ../kolabd/__init__.py:86 ../pykolab-0.1/kolabd/__init__.py:86 +#, python-format +msgid "Type Error: %s" +msgstr "" + +#: ../kolabd/__init__.py:95 ../pykolab-0.1/kolabd/__init__.py:95 +msgid "Sleeping for 10 seconds..." +msgstr "" + +#: ../pykolab/auth/ldap/__init__.py:42 +msgid "Connecting to LDAP..." +msgstr "" + +#: ../pykolab/cli/__init__.py:40 +msgid "Domain Options" +msgstr "" + +#: ../pykolab/cli/__init__.py:45 +msgid "Review LDIF before committed" +msgstr "" + +#: ../pykolab/cli/__init__.py:55 +#, python-format +msgid "TODO: self.check_%s()" +msgstr "" + +#: ../pykolab/cli/__init__.py:81 +#, python-format +msgid "Deleting domain %s" +msgstr "" + +#: ../pykolab/cli/__init__.py:93 +#, python-format +msgid "No domain %s exists." +msgstr "" + +#: ../pykolab/cli/__init__.py:99 +msgid "TODO: Figure out where the domain should actually be added." +msgstr "" + +#: ../pykolab/cli/__init__.py:103 +#, python-format +msgid "Adding domain %s" +msgstr "" + +#. The dn of our new entry/object +#: ../pykolab/cli/__init__.py:106 +msgid "TODO: Make the format for a new domain configurable." +msgstr "" + +#. A dict to help build the "body" of the object +#: ../pykolab/cli/__init__.py:110 +msgid "TODO: Make what a domain looks like configurable." +msgstr "" + +#: ../pykolab/cli/__init__.py:122 +msgid "" +"TODO: Prompt for organization name/description. For now, use domain name." +msgstr "" + +#: ../pykolab/cli/__init__.py:130 +msgid "Please ACK or NACK the above LDIF:" +msgstr "" + +#: ../pykolab/cli/__init__.py:146 +#, python-format +msgid "Domain %s already exists." +msgstr "" + +#: ../pykolab/cli/__init__.py:156 +msgid "Actions" +msgstr "" + +#: ../pykolab/conf/__init__.py:81 +#, python-format +msgid "Setting %s to %r (from defaults)" +msgstr "" + +#: ../pykolab/conf/__init__.py:92 +#, python-format +msgid "Setting %s to %r (from runtime)" +msgstr "" + +#: ../pykolab/conf/__init__.py:106 +#, python-format +msgid "Setting %s to %r (from CLI, verified)" +msgstr "" + +#: ../pykolab/conf/__init__.py:109 +#, python-format +msgid "Setting %s to %r (from CLI, not checked)" +msgstr "" + +#: ../pykolab/conf/__init__.py:154 ../pykolab/conf/__init__.py:208 +#, python-format +msgid "Setting %s_%s to '****' (from configuration file)" +msgstr "" + +#: ../pykolab/conf/__init__.py:156 ../pykolab/conf/__init__.py:210 +#, python-format +msgid "Setting %s_%s to %r (from configuration file)" +msgstr "" + +#: ../pykolab/conf/__init__.py:165 +msgid "Setting options from configuration file" +msgstr "" + +#: ../pykolab/conf/__init__.py:224 +#, python-format +msgid "Configuration file %s not readable" +msgstr "" + +#: ../pykolab/conf/__init__.py:227 +#, python-format +msgid "Reading configuration file %s" +msgstr "" + +#: ../pykolab/conf/__init__.py:231 +#, python-format +msgid "Invalid configuration file %s" +msgstr "" + +#: ../pykolab/conf/__init__.py:234 +#, python-format +msgid "No master configuration section [revisor] in configuration file %s" +msgstr "" + +#. # +#. # Runtime Options +#. # +#: ../pykolab/conf/__init__.py:253 +msgid "Runtime Options" +msgstr "" + +#: ../pykolab/conf/__init__.py:258 +msgid "Configuration file to use" +msgstr "" + +#: ../pykolab/conf/__init__.py:264 +msgid "Set the debugging verbosity. Maximum is 99" +msgstr "" + +#: ../pykolab/conf/__init__.py:270 +msgid "Log file to use" +msgstr "" + +#: ../pykolab/conf/__init__.py:276 +msgid "Be quiet." +msgstr "" + +#: ../pykolab/conf/__init__.py:282 +msgid "Answer yes to all questions." +msgstr "" + +#: ../pykolab/conf/__init__.py:310 +msgid "No command supplied" +msgstr "" + +#: ../pykolab/conf/__init__.py:392 +msgid "Insufficient options. Need section, key and value -in that order." +msgstr "" + +#: ../pykolab/conf/__init__.py:395 +#, python-format +msgid "No section '%s' exists." +msgstr "" + +#: ../pykolab/conf/__init__.py:424 +#, python-format +msgid "Setting %s to %r (from the default values for CLI options)" +msgstr "" + +#: ../pykolab/conf/__init__.py:441 +#, python-format +msgid "Option %s/%s does not exist in config file %s, pulling from defaults" +msgstr "" + +#: ../pykolab/conf/__init__.py:449 ../pykolab/conf/__init__.py:452 +msgid "Option does not exist in defaults." +msgstr "" + +#: ../pykolab/conf/__init__.py:450 ../pykolab/conf/__init__.py:453 +msgid "Not available" +msgstr "" + +#: ../pykolab/conf/__init__.py:462 +#, python-format +msgid "Configuration file %s not readable." +msgstr "" + +#: ../pykolab/conf/__init__.py:465 +#, python-format +msgid "Configuration file %s does not exist." +msgstr "" + +#: ../pykolab/conf/__init__.py:470 +msgid "" +"WARNING: A negative debug level value does not make this program be any more " +"silent." +msgstr "" + +#: ../pykolab/conf/__init__.py:476 +msgid "" +"WARNING: This program has 9 levels of verbosity. Using the maximum of 9." +msgstr "" + +#: ../pykolab/conf/__init__.py:486 +msgid "No imaplib library found." +msgstr "" + +#: ../pykolab/conf/__init__.py:496 +msgid "No LMTP class found in the smtplib library." +msgstr "" + +#: ../pykolab/conf/__init__.py:506 +msgid "No SMTP class found in the smtplib library." +msgstr "" + +#: ../pykolab/conf/__init__.py:517 +#, python-format +msgid "Found you specified a specific set of items to test: %s" +msgstr "" + +#: ../pykolab/conf/__init__.py:525 +#, python-format +msgid "Selectively selecting: %s" +msgstr "" + +#: ../pykolab/constants.py:39 +msgid "PyKolab is a Kolab Systems product. For more information " +msgstr "" + +#: ../pykolab/constants.py:53 +msgid "WARNING" +msgstr "" + +#: ../pykolab/constants.py:53 +msgid "The Fully Qualified " +msgstr "" + +#: ../pykolab/constants.py:73 +msgid "389 Directory Server or Red Hat Directory Server" +msgstr "" + +#: ../pykolab/constants.py:77 ../pykolab/constants.py:81 +msgid "OpenLDAP or compatible" +msgstr "" + +#: ../pykolab/imap/__init__.py:74 ../pykolab/imap/__init__.py:79 +#, python-format +msgid "Creating new INBOX for user: %s" +msgstr "" + +#: ../pykolab/imap/__init__.py:145 +#, python-format +msgid "Setting new quota for folder %s to %r" +msgstr "" + +#: ../pykolab/imap/__init__.py:149 +#, python-format +msgid "Quota for %s currently is %s" +msgstr "" + +#: ../pykolab/imap/__init__.py:152 +#, python-format +msgid "Correcting quota for %s to %s (currently %s)" +msgstr "" + +#: ../pykolab/imap/__init__.py:178 +#, python-format +msgid "Folder has no corresponding user (1): %s" +msgstr "" + +#: ../pykolab/imap/__init__.py:181 +#, python-format +msgid "Folder has no corresponding user (2): %s" +msgstr "" + +#: ../pykolab/logger.py:42 +#, python-format +msgid "Cannot log to file %s: %s" +msgstr "" + +#: ../pykolab/logger.py:87 ../pykolab/logger.py:96 +msgid "Do you want to continue? [Y/n]" +msgstr "" + +#: ../pykolab/logger.py:90 ../pykolab/logger.py:99 +msgid "Abort! Abort! Abort!" +msgstr "" + +#: ../pykolab/plugins.py:56 +#, python-format +msgid "ImportError for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:59 +#, python-format +msgid "RuntimeError for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:62 +#, python-format +msgid "Plugin %s failed to load (%s: %s)" +msgstr "" + +#: ../pykolab/plugins.py:89 ../pykolab/plugins.py:91 +#, python-format +msgid "Cannot set defaults for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:93 +#, python-format +msgid "Cannot set defaults for plugin %s: Unknown Error" +msgstr "" + +#: ../pykolab/plugins.py:96 +#, python-format +msgid "Not setting defaults for plugin %s: No function 'set_defaults()'" +msgstr "" + +#: ../pykolab/plugins.py:113 +#, python-format +msgid "Cannot set runtime for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:115 +#, python-format +msgid "Not setting runtime for plugin %s: No function 'set_runtime()'" +msgstr "" + +#: ../pykolab/plugins.py:132 +#, python-format +msgid "Cannot add options for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:134 +#, python-format +msgid "Not adding options for plugin %s: No function 'add_options()'" +msgstr "" + +#: ../pykolab/plugins.py:152 +#, python-format +msgid "Cannot check options for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:154 +#, python-format +msgid "Not checking options for plugin %s: No function 'check_options()'" +msgstr "" + +#: ../pykolab/plugins.py:192 ../pykolab/plugins.py:194 +#, python-format +msgid "Cannot execute hook %s for plugin %s: %s" +msgstr "" + +#: ../pykolab/setup/ldap_setup.py:29 +msgid "Cannot load Python LDAP libraries." +msgstr "" + +#: ../pykolab/setup/ldap_setup.py:53 +#, python-format +msgid "Warning: LDAP Service '%s' is available on " +msgstr "" + +#: ../pykolab/setup/ldap_setup.py:56 +#, python-format +msgid "Found system service %s." +msgstr "" + +#. ldap_uri = utils.ask_question(_("LDAP URI (read/write)"), "ldap://ldap.%s" %(constants.domainname)) +#: ../pykolab/setup/ldap_setup.py:59 +msgid "LDAP URI (read/write)" +msgstr "" + +#. This is a funny input error ("") +#: ../pykolab/setup/ldap_setup.py:69 ../pykolab/setup/ldap_setup.py:76 +msgid "Could not connect to LDAP server due to " +msgstr "" + +#: ../pykolab/setup/ldap_setup.py:73 +msgid "Your username or password are incorrect" +msgstr "" + +#: ../pykolab/tests/calendar.py:146 +#, python-format +msgid "Creating %d Events" +msgstr "" + +#: ../pykolab/tests/calendar.py:177 +#, python-format +msgid "Creating Calendar item number %d" +msgstr "" + +#: ../pykolab/tests/calendar.py:189 ../pykolab/tests/contacts.py:133 +#, python-format +msgid "Sending UID message %s through SMTP targeting user %s@%s" +msgstr "" + +#: ../pykolab/tests/calendar.py:192 ../pykolab/tests/contacts.py:136 +#, python-format +msgid "Sending UID message %s through LMTP targeting user %s@%s" +msgstr "" + +#: ../pykolab/tests/calendar.py:195 ../pykolab/tests/contacts.py:139 +#, python-format +msgid "Saving UID message %s to IMAP (user %s, folder %s)" +msgstr "" + +#: ../pykolab/tests/calendar.py:198 ../pykolab/tests/contacts.py:142 +#: ../pykolab/tests/mail.py:125 +msgid "Somehow ended up NOT sending these messages" +msgstr "" + +#: ../pykolab/tests/contacts.py:97 +#, python-format +msgid "Creating %d Contacts" +msgstr "" + +#: ../pykolab/tests/contacts.py:121 +#, python-format +msgid "Creating Contact item number %d" +msgstr "" + +#: ../pykolab/tests/__init__.py:35 +msgid "Test Options" +msgstr "" + +#: ../pykolab/tests/__init__.py:42 +#, python-format +msgid "Submit a number of items to the %s" +msgstr "" + +#: ../pykolab/tests/__init__.py:48 +msgid "Run tests in suite SUITE. Implies a certain set of items being tested." +msgstr "" + +#: ../pykolab/tests/__init__.py:51 +msgid "Content Delivery Options" +msgstr "" + +#: ../pykolab/tests/__init__.py:57 +msgid "" +"Send messages containing the items through mail (requires proper " +"infrastructure)" +msgstr "" + +#: ../pykolab/tests/__init__.py:63 +msgid "Inject messages containing the items through IMAP (requires imaplib)" +msgstr "" + +#: ../pykolab/tests/__init__.py:69 +msgid "Deliver messages containing the items through LMTP (requires imaplib)" +msgstr "" + +#: ../pykolab/tests/__init__.py:80 +#, python-format +msgid "Tests for suite %s failed to load. Aborting." +msgstr "" + +#: ../pykolab/tests/mail.py:92 +#, python-format +msgid "Creating %d Mails" +msgstr "" + +#: ../pykolab/tests/mail.py:116 +#, python-format +msgid "Sending message %s through SMTP targeting user %s@%s" +msgstr "" + +#: ../pykolab/tests/mail.py:119 +#, python-format +msgid "Sending message %s through LMTP targeting user %s@%s" +msgstr "" + +#: ../pykolab/tests/mail.py:122 +#, python-format +msgid "Saving message %s to IMAP (user %s, folder %s)" +msgstr "" + +#: ../pykolab/tests/zpush/test_000_000.py:96 +#, python-format +msgid "Deleting mailbox: %s" +msgstr "" + +#: ../pykolab/tests/zpush/test_000_000.py:105 +#, python-format +msgid "Creating mailbox: %s" +msgstr "" + +#: ../pykolab/tests/zpush/test_000_000.py:121 +#, python-format +msgid "Authentication failure for %s" +msgstr "" + +#: ../pykolab/tests/zpush/test_000_001.py:48 +#, python-format +msgid "Could not load %sItem from %s, skipping the testing." +msgstr "" + +#: ../pykolab/utils.py:71 +msgid "Please answer 'yes' or 'no'." +msgstr "" + +#: ../setup-kolab.py:52 +#, python-format +msgid "Cannot find %s_setup()." +msgstr "" + +#: ../setup-kolab.py:54 +#, python-format +msgid "Cannot load setup for %s." +msgstr "" + +#. Means we get to ask some questions. +#: ../setup-kolab.py:58 +msgid "Please select the components to set up:" +msgstr "" + +#: ../setup-kolab.py:65 +msgid "Selection" +msgstr "" diff --git a/po/gl.po b/po/gl.po new file mode 100644 index 0000000..ae00f78 --- /dev/null +++ b/po/gl.po @@ -0,0 +1,563 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-02-21 21:23+0000\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" + +#: ../conf.py:37 ../kolabd.py:33 ../kolab.py:34 ../kolabtest.py:34 +#: ../setup-kolab.py:36 +msgid "Cannot load pykolab/logger.py:" +msgstr "" + +#: ../kolabd/__init__.py:44 ../pykolab-0.1/kolabd/__init__.py:44 +msgid "Daemon Options" +msgstr "" + +#: ../kolabd/__init__.py:50 ../pykolab-0.1/kolabd/__init__.py:50 +msgid "For to the background." +msgstr "" + +#: ../kolabd/__init__.py:78 ../pykolab-0.1/kolabd/__init__.py:78 +msgid "Interrupted by user" +msgstr "" + +#: ../kolabd/__init__.py:82 ../kolabd/__init__.py:90 +#: ../pykolab-0.1/kolabd/__init__.py:82 ../pykolab-0.1/kolabd/__init__.py:90 +msgid "Traceback occurred, please report a bug at http://issues.kolab.org" +msgstr "" + +#: ../kolabd/__init__.py:86 ../pykolab-0.1/kolabd/__init__.py:86 +#, python-format +msgid "Type Error: %s" +msgstr "" + +#: ../kolabd/__init__.py:95 ../pykolab-0.1/kolabd/__init__.py:95 +msgid "Sleeping for 10 seconds..." +msgstr "" + +#: ../pykolab/auth/ldap/__init__.py:42 +msgid "Connecting to LDAP..." +msgstr "" + +#: ../pykolab/cli/__init__.py:40 +msgid "Domain Options" +msgstr "" + +#: ../pykolab/cli/__init__.py:45 +msgid "Review LDIF before committed" +msgstr "" + +#: ../pykolab/cli/__init__.py:55 +#, python-format +msgid "TODO: self.check_%s()" +msgstr "" + +#: ../pykolab/cli/__init__.py:81 +#, python-format +msgid "Deleting domain %s" +msgstr "" + +#: ../pykolab/cli/__init__.py:93 +#, python-format +msgid "No domain %s exists." +msgstr "" + +#: ../pykolab/cli/__init__.py:99 +msgid "TODO: Figure out where the domain should actually be added." +msgstr "" + +#: ../pykolab/cli/__init__.py:103 +#, python-format +msgid "Adding domain %s" +msgstr "" + +#. The dn of our new entry/object +#: ../pykolab/cli/__init__.py:106 +msgid "TODO: Make the format for a new domain configurable." +msgstr "" + +#. A dict to help build the "body" of the object +#: ../pykolab/cli/__init__.py:110 +msgid "TODO: Make what a domain looks like configurable." +msgstr "" + +#: ../pykolab/cli/__init__.py:122 +msgid "" +"TODO: Prompt for organization name/description. For now, use domain name." +msgstr "" + +#: ../pykolab/cli/__init__.py:130 +msgid "Please ACK or NACK the above LDIF:" +msgstr "" + +#: ../pykolab/cli/__init__.py:146 +#, python-format +msgid "Domain %s already exists." +msgstr "" + +#: ../pykolab/cli/__init__.py:156 +msgid "Actions" +msgstr "" + +#: ../pykolab/conf/__init__.py:81 +#, python-format +msgid "Setting %s to %r (from defaults)" +msgstr "" + +#: ../pykolab/conf/__init__.py:92 +#, python-format +msgid "Setting %s to %r (from runtime)" +msgstr "" + +#: ../pykolab/conf/__init__.py:106 +#, python-format +msgid "Setting %s to %r (from CLI, verified)" +msgstr "" + +#: ../pykolab/conf/__init__.py:109 +#, python-format +msgid "Setting %s to %r (from CLI, not checked)" +msgstr "" + +#: ../pykolab/conf/__init__.py:154 ../pykolab/conf/__init__.py:208 +#, python-format +msgid "Setting %s_%s to '****' (from configuration file)" +msgstr "" + +#: ../pykolab/conf/__init__.py:156 ../pykolab/conf/__init__.py:210 +#, python-format +msgid "Setting %s_%s to %r (from configuration file)" +msgstr "" + +#: ../pykolab/conf/__init__.py:165 +msgid "Setting options from configuration file" +msgstr "" + +#: ../pykolab/conf/__init__.py:224 +#, python-format +msgid "Configuration file %s not readable" +msgstr "" + +#: ../pykolab/conf/__init__.py:227 +#, python-format +msgid "Reading configuration file %s" +msgstr "" + +#: ../pykolab/conf/__init__.py:231 +#, python-format +msgid "Invalid configuration file %s" +msgstr "" + +#: ../pykolab/conf/__init__.py:234 +#, python-format +msgid "No master configuration section [revisor] in configuration file %s" +msgstr "" + +#. # +#. # Runtime Options +#. # +#: ../pykolab/conf/__init__.py:253 +msgid "Runtime Options" +msgstr "" + +#: ../pykolab/conf/__init__.py:258 +msgid "Configuration file to use" +msgstr "" + +#: ../pykolab/conf/__init__.py:264 +msgid "Set the debugging verbosity. Maximum is 99" +msgstr "" + +#: ../pykolab/conf/__init__.py:270 +msgid "Log file to use" +msgstr "" + +#: ../pykolab/conf/__init__.py:276 +msgid "Be quiet." +msgstr "" + +#: ../pykolab/conf/__init__.py:282 +msgid "Answer yes to all questions." +msgstr "" + +#: ../pykolab/conf/__init__.py:310 +msgid "No command supplied" +msgstr "" + +#: ../pykolab/conf/__init__.py:392 +msgid "Insufficient options. Need section, key and value -in that order." +msgstr "" + +#: ../pykolab/conf/__init__.py:395 +#, python-format +msgid "No section '%s' exists." +msgstr "" + +#: ../pykolab/conf/__init__.py:424 +#, python-format +msgid "Setting %s to %r (from the default values for CLI options)" +msgstr "" + +#: ../pykolab/conf/__init__.py:441 +#, python-format +msgid "Option %s/%s does not exist in config file %s, pulling from defaults" +msgstr "" + +#: ../pykolab/conf/__init__.py:449 ../pykolab/conf/__init__.py:452 +msgid "Option does not exist in defaults." +msgstr "" + +#: ../pykolab/conf/__init__.py:450 ../pykolab/conf/__init__.py:453 +msgid "Not available" +msgstr "" + +#: ../pykolab/conf/__init__.py:462 +#, python-format +msgid "Configuration file %s not readable." +msgstr "" + +#: ../pykolab/conf/__init__.py:465 +#, python-format +msgid "Configuration file %s does not exist." +msgstr "" + +#: ../pykolab/conf/__init__.py:470 +msgid "" +"WARNING: A negative debug level value does not make this program be any more " +"silent." +msgstr "" + +#: ../pykolab/conf/__init__.py:476 +msgid "" +"WARNING: This program has 9 levels of verbosity. Using the maximum of 9." +msgstr "" + +#: ../pykolab/conf/__init__.py:486 +msgid "No imaplib library found." +msgstr "" + +#: ../pykolab/conf/__init__.py:496 +msgid "No LMTP class found in the smtplib library." +msgstr "" + +#: ../pykolab/conf/__init__.py:506 +msgid "No SMTP class found in the smtplib library." +msgstr "" + +#: ../pykolab/conf/__init__.py:517 +#, python-format +msgid "Found you specified a specific set of items to test: %s" +msgstr "" + +#: ../pykolab/conf/__init__.py:525 +#, python-format +msgid "Selectively selecting: %s" +msgstr "" + +#: ../pykolab/constants.py:39 +msgid "PyKolab is a Kolab Systems product. For more information " +msgstr "" + +#: ../pykolab/constants.py:53 +msgid "WARNING" +msgstr "" + +#: ../pykolab/constants.py:53 +msgid "The Fully Qualified " +msgstr "" + +#: ../pykolab/constants.py:73 +msgid "389 Directory Server or Red Hat Directory Server" +msgstr "" + +#: ../pykolab/constants.py:77 ../pykolab/constants.py:81 +msgid "OpenLDAP or compatible" +msgstr "" + +#: ../pykolab/imap/__init__.py:74 ../pykolab/imap/__init__.py:79 +#, python-format +msgid "Creating new INBOX for user: %s" +msgstr "" + +#: ../pykolab/imap/__init__.py:145 +#, python-format +msgid "Setting new quota for folder %s to %r" +msgstr "" + +#: ../pykolab/imap/__init__.py:149 +#, python-format +msgid "Quota for %s currently is %s" +msgstr "" + +#: ../pykolab/imap/__init__.py:152 +#, python-format +msgid "Correcting quota for %s to %s (currently %s)" +msgstr "" + +#: ../pykolab/imap/__init__.py:178 +#, python-format +msgid "Folder has no corresponding user (1): %s" +msgstr "" + +#: ../pykolab/imap/__init__.py:181 +#, python-format +msgid "Folder has no corresponding user (2): %s" +msgstr "" + +#: ../pykolab/logger.py:42 +#, python-format +msgid "Cannot log to file %s: %s" +msgstr "" + +#: ../pykolab/logger.py:87 ../pykolab/logger.py:96 +msgid "Do you want to continue? [Y/n]" +msgstr "" + +#: ../pykolab/logger.py:90 ../pykolab/logger.py:99 +msgid "Abort! Abort! Abort!" +msgstr "" + +#: ../pykolab/plugins.py:56 +#, python-format +msgid "ImportError for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:59 +#, python-format +msgid "RuntimeError for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:62 +#, python-format +msgid "Plugin %s failed to load (%s: %s)" +msgstr "" + +#: ../pykolab/plugins.py:89 ../pykolab/plugins.py:91 +#, python-format +msgid "Cannot set defaults for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:93 +#, python-format +msgid "Cannot set defaults for plugin %s: Unknown Error" +msgstr "" + +#: ../pykolab/plugins.py:96 +#, python-format +msgid "Not setting defaults for plugin %s: No function 'set_defaults()'" +msgstr "" + +#: ../pykolab/plugins.py:113 +#, python-format +msgid "Cannot set runtime for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:115 +#, python-format +msgid "Not setting runtime for plugin %s: No function 'set_runtime()'" +msgstr "" + +#: ../pykolab/plugins.py:132 +#, python-format +msgid "Cannot add options for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:134 +#, python-format +msgid "Not adding options for plugin %s: No function 'add_options()'" +msgstr "" + +#: ../pykolab/plugins.py:152 +#, python-format +msgid "Cannot check options for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:154 +#, python-format +msgid "Not checking options for plugin %s: No function 'check_options()'" +msgstr "" + +#: ../pykolab/plugins.py:192 ../pykolab/plugins.py:194 +#, python-format +msgid "Cannot execute hook %s for plugin %s: %s" +msgstr "" + +#: ../pykolab/setup/ldap_setup.py:29 +msgid "Cannot load Python LDAP libraries." +msgstr "" + +#: ../pykolab/setup/ldap_setup.py:53 +#, python-format +msgid "Warning: LDAP Service '%s' is available on " +msgstr "" + +#: ../pykolab/setup/ldap_setup.py:56 +#, python-format +msgid "Found system service %s." +msgstr "" + +#. ldap_uri = utils.ask_question(_("LDAP URI (read/write)"), "ldap://ldap.%s" %(constants.domainname)) +#: ../pykolab/setup/ldap_setup.py:59 +msgid "LDAP URI (read/write)" +msgstr "" + +#. This is a funny input error ("") +#: ../pykolab/setup/ldap_setup.py:69 ../pykolab/setup/ldap_setup.py:76 +msgid "Could not connect to LDAP server due to " +msgstr "" + +#: ../pykolab/setup/ldap_setup.py:73 +msgid "Your username or password are incorrect" +msgstr "" + +#: ../pykolab/tests/calendar.py:146 +#, python-format +msgid "Creating %d Events" +msgstr "" + +#: ../pykolab/tests/calendar.py:177 +#, python-format +msgid "Creating Calendar item number %d" +msgstr "" + +#: ../pykolab/tests/calendar.py:189 ../pykolab/tests/contacts.py:133 +#, python-format +msgid "Sending UID message %s through SMTP targeting user %s@%s" +msgstr "" + +#: ../pykolab/tests/calendar.py:192 ../pykolab/tests/contacts.py:136 +#, python-format +msgid "Sending UID message %s through LMTP targeting user %s@%s" +msgstr "" + +#: ../pykolab/tests/calendar.py:195 ../pykolab/tests/contacts.py:139 +#, python-format +msgid "Saving UID message %s to IMAP (user %s, folder %s)" +msgstr "" + +#: ../pykolab/tests/calendar.py:198 ../pykolab/tests/contacts.py:142 +#: ../pykolab/tests/mail.py:125 +msgid "Somehow ended up NOT sending these messages" +msgstr "" + +#: ../pykolab/tests/contacts.py:97 +#, python-format +msgid "Creating %d Contacts" +msgstr "" + +#: ../pykolab/tests/contacts.py:121 +#, python-format +msgid "Creating Contact item number %d" +msgstr "" + +#: ../pykolab/tests/__init__.py:35 +msgid "Test Options" +msgstr "" + +#: ../pykolab/tests/__init__.py:42 +#, python-format +msgid "Submit a number of items to the %s" +msgstr "" + +#: ../pykolab/tests/__init__.py:48 +msgid "Run tests in suite SUITE. Implies a certain set of items being tested." +msgstr "" + +#: ../pykolab/tests/__init__.py:51 +msgid "Content Delivery Options" +msgstr "" + +#: ../pykolab/tests/__init__.py:57 +msgid "" +"Send messages containing the items through mail (requires proper " +"infrastructure)" +msgstr "" + +#: ../pykolab/tests/__init__.py:63 +msgid "Inject messages containing the items through IMAP (requires imaplib)" +msgstr "" + +#: ../pykolab/tests/__init__.py:69 +msgid "Deliver messages containing the items through LMTP (requires imaplib)" +msgstr "" + +#: ../pykolab/tests/__init__.py:80 +#, python-format +msgid "Tests for suite %s failed to load. Aborting." +msgstr "" + +#: ../pykolab/tests/mail.py:92 +#, python-format +msgid "Creating %d Mails" +msgstr "" + +#: ../pykolab/tests/mail.py:116 +#, python-format +msgid "Sending message %s through SMTP targeting user %s@%s" +msgstr "" + +#: ../pykolab/tests/mail.py:119 +#, python-format +msgid "Sending message %s through LMTP targeting user %s@%s" +msgstr "" + +#: ../pykolab/tests/mail.py:122 +#, python-format +msgid "Saving message %s to IMAP (user %s, folder %s)" +msgstr "" + +#: ../pykolab/tests/zpush/test_000_000.py:96 +#, python-format +msgid "Deleting mailbox: %s" +msgstr "" + +#: ../pykolab/tests/zpush/test_000_000.py:105 +#, python-format +msgid "Creating mailbox: %s" +msgstr "" + +#: ../pykolab/tests/zpush/test_000_000.py:121 +#, python-format +msgid "Authentication failure for %s" +msgstr "" + +#: ../pykolab/tests/zpush/test_000_001.py:48 +#, python-format +msgid "Could not load %sItem from %s, skipping the testing." +msgstr "" + +#: ../pykolab/utils.py:71 +msgid "Please answer 'yes' or 'no'." +msgstr "" + +#: ../setup-kolab.py:52 +#, python-format +msgid "Cannot find %s_setup()." +msgstr "" + +#: ../setup-kolab.py:54 +#, python-format +msgid "Cannot load setup for %s." +msgstr "" + +#. Means we get to ask some questions. +#: ../setup-kolab.py:58 +msgid "Please select the components to set up:" +msgstr "" + +#: ../setup-kolab.py:65 +msgid "Selection" +msgstr "" diff --git a/po/gu.po b/po/gu.po new file mode 100644 index 0000000..ae00f78 --- /dev/null +++ b/po/gu.po @@ -0,0 +1,563 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-02-21 21:23+0000\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" + +#: ../conf.py:37 ../kolabd.py:33 ../kolab.py:34 ../kolabtest.py:34 +#: ../setup-kolab.py:36 +msgid "Cannot load pykolab/logger.py:" +msgstr "" + +#: ../kolabd/__init__.py:44 ../pykolab-0.1/kolabd/__init__.py:44 +msgid "Daemon Options" +msgstr "" + +#: ../kolabd/__init__.py:50 ../pykolab-0.1/kolabd/__init__.py:50 +msgid "For to the background." +msgstr "" + +#: ../kolabd/__init__.py:78 ../pykolab-0.1/kolabd/__init__.py:78 +msgid "Interrupted by user" +msgstr "" + +#: ../kolabd/__init__.py:82 ../kolabd/__init__.py:90 +#: ../pykolab-0.1/kolabd/__init__.py:82 ../pykolab-0.1/kolabd/__init__.py:90 +msgid "Traceback occurred, please report a bug at http://issues.kolab.org" +msgstr "" + +#: ../kolabd/__init__.py:86 ../pykolab-0.1/kolabd/__init__.py:86 +#, python-format +msgid "Type Error: %s" +msgstr "" + +#: ../kolabd/__init__.py:95 ../pykolab-0.1/kolabd/__init__.py:95 +msgid "Sleeping for 10 seconds..." +msgstr "" + +#: ../pykolab/auth/ldap/__init__.py:42 +msgid "Connecting to LDAP..." +msgstr "" + +#: ../pykolab/cli/__init__.py:40 +msgid "Domain Options" +msgstr "" + +#: ../pykolab/cli/__init__.py:45 +msgid "Review LDIF before committed" +msgstr "" + +#: ../pykolab/cli/__init__.py:55 +#, python-format +msgid "TODO: self.check_%s()" +msgstr "" + +#: ../pykolab/cli/__init__.py:81 +#, python-format +msgid "Deleting domain %s" +msgstr "" + +#: ../pykolab/cli/__init__.py:93 +#, python-format +msgid "No domain %s exists." +msgstr "" + +#: ../pykolab/cli/__init__.py:99 +msgid "TODO: Figure out where the domain should actually be added." +msgstr "" + +#: ../pykolab/cli/__init__.py:103 +#, python-format +msgid "Adding domain %s" +msgstr "" + +#. The dn of our new entry/object +#: ../pykolab/cli/__init__.py:106 +msgid "TODO: Make the format for a new domain configurable." +msgstr "" + +#. A dict to help build the "body" of the object +#: ../pykolab/cli/__init__.py:110 +msgid "TODO: Make what a domain looks like configurable." +msgstr "" + +#: ../pykolab/cli/__init__.py:122 +msgid "" +"TODO: Prompt for organization name/description. For now, use domain name." +msgstr "" + +#: ../pykolab/cli/__init__.py:130 +msgid "Please ACK or NACK the above LDIF:" +msgstr "" + +#: ../pykolab/cli/__init__.py:146 +#, python-format +msgid "Domain %s already exists." +msgstr "" + +#: ../pykolab/cli/__init__.py:156 +msgid "Actions" +msgstr "" + +#: ../pykolab/conf/__init__.py:81 +#, python-format +msgid "Setting %s to %r (from defaults)" +msgstr "" + +#: ../pykolab/conf/__init__.py:92 +#, python-format +msgid "Setting %s to %r (from runtime)" +msgstr "" + +#: ../pykolab/conf/__init__.py:106 +#, python-format +msgid "Setting %s to %r (from CLI, verified)" +msgstr "" + +#: ../pykolab/conf/__init__.py:109 +#, python-format +msgid "Setting %s to %r (from CLI, not checked)" +msgstr "" + +#: ../pykolab/conf/__init__.py:154 ../pykolab/conf/__init__.py:208 +#, python-format +msgid "Setting %s_%s to '****' (from configuration file)" +msgstr "" + +#: ../pykolab/conf/__init__.py:156 ../pykolab/conf/__init__.py:210 +#, python-format +msgid "Setting %s_%s to %r (from configuration file)" +msgstr "" + +#: ../pykolab/conf/__init__.py:165 +msgid "Setting options from configuration file" +msgstr "" + +#: ../pykolab/conf/__init__.py:224 +#, python-format +msgid "Configuration file %s not readable" +msgstr "" + +#: ../pykolab/conf/__init__.py:227 +#, python-format +msgid "Reading configuration file %s" +msgstr "" + +#: ../pykolab/conf/__init__.py:231 +#, python-format +msgid "Invalid configuration file %s" +msgstr "" + +#: ../pykolab/conf/__init__.py:234 +#, python-format +msgid "No master configuration section [revisor] in configuration file %s" +msgstr "" + +#. # +#. # Runtime Options +#. # +#: ../pykolab/conf/__init__.py:253 +msgid "Runtime Options" +msgstr "" + +#: ../pykolab/conf/__init__.py:258 +msgid "Configuration file to use" +msgstr "" + +#: ../pykolab/conf/__init__.py:264 +msgid "Set the debugging verbosity. Maximum is 99" +msgstr "" + +#: ../pykolab/conf/__init__.py:270 +msgid "Log file to use" +msgstr "" + +#: ../pykolab/conf/__init__.py:276 +msgid "Be quiet." +msgstr "" + +#: ../pykolab/conf/__init__.py:282 +msgid "Answer yes to all questions." +msgstr "" + +#: ../pykolab/conf/__init__.py:310 +msgid "No command supplied" +msgstr "" + +#: ../pykolab/conf/__init__.py:392 +msgid "Insufficient options. Need section, key and value -in that order." +msgstr "" + +#: ../pykolab/conf/__init__.py:395 +#, python-format +msgid "No section '%s' exists." +msgstr "" + +#: ../pykolab/conf/__init__.py:424 +#, python-format +msgid "Setting %s to %r (from the default values for CLI options)" +msgstr "" + +#: ../pykolab/conf/__init__.py:441 +#, python-format +msgid "Option %s/%s does not exist in config file %s, pulling from defaults" +msgstr "" + +#: ../pykolab/conf/__init__.py:449 ../pykolab/conf/__init__.py:452 +msgid "Option does not exist in defaults." +msgstr "" + +#: ../pykolab/conf/__init__.py:450 ../pykolab/conf/__init__.py:453 +msgid "Not available" +msgstr "" + +#: ../pykolab/conf/__init__.py:462 +#, python-format +msgid "Configuration file %s not readable." +msgstr "" + +#: ../pykolab/conf/__init__.py:465 +#, python-format +msgid "Configuration file %s does not exist." +msgstr "" + +#: ../pykolab/conf/__init__.py:470 +msgid "" +"WARNING: A negative debug level value does not make this program be any more " +"silent." +msgstr "" + +#: ../pykolab/conf/__init__.py:476 +msgid "" +"WARNING: This program has 9 levels of verbosity. Using the maximum of 9." +msgstr "" + +#: ../pykolab/conf/__init__.py:486 +msgid "No imaplib library found." +msgstr "" + +#: ../pykolab/conf/__init__.py:496 +msgid "No LMTP class found in the smtplib library." +msgstr "" + +#: ../pykolab/conf/__init__.py:506 +msgid "No SMTP class found in the smtplib library." +msgstr "" + +#: ../pykolab/conf/__init__.py:517 +#, python-format +msgid "Found you specified a specific set of items to test: %s" +msgstr "" + +#: ../pykolab/conf/__init__.py:525 +#, python-format +msgid "Selectively selecting: %s" +msgstr "" + +#: ../pykolab/constants.py:39 +msgid "PyKolab is a Kolab Systems product. For more information " +msgstr "" + +#: ../pykolab/constants.py:53 +msgid "WARNING" +msgstr "" + +#: ../pykolab/constants.py:53 +msgid "The Fully Qualified " +msgstr "" + +#: ../pykolab/constants.py:73 +msgid "389 Directory Server or Red Hat Directory Server" +msgstr "" + +#: ../pykolab/constants.py:77 ../pykolab/constants.py:81 +msgid "OpenLDAP or compatible" +msgstr "" + +#: ../pykolab/imap/__init__.py:74 ../pykolab/imap/__init__.py:79 +#, python-format +msgid "Creating new INBOX for user: %s" +msgstr "" + +#: ../pykolab/imap/__init__.py:145 +#, python-format +msgid "Setting new quota for folder %s to %r" +msgstr "" + +#: ../pykolab/imap/__init__.py:149 +#, python-format +msgid "Quota for %s currently is %s" +msgstr "" + +#: ../pykolab/imap/__init__.py:152 +#, python-format +msgid "Correcting quota for %s to %s (currently %s)" +msgstr "" + +#: ../pykolab/imap/__init__.py:178 +#, python-format +msgid "Folder has no corresponding user (1): %s" +msgstr "" + +#: ../pykolab/imap/__init__.py:181 +#, python-format +msgid "Folder has no corresponding user (2): %s" +msgstr "" + +#: ../pykolab/logger.py:42 +#, python-format +msgid "Cannot log to file %s: %s" +msgstr "" + +#: ../pykolab/logger.py:87 ../pykolab/logger.py:96 +msgid "Do you want to continue? [Y/n]" +msgstr "" + +#: ../pykolab/logger.py:90 ../pykolab/logger.py:99 +msgid "Abort! Abort! Abort!" +msgstr "" + +#: ../pykolab/plugins.py:56 +#, python-format +msgid "ImportError for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:59 +#, python-format +msgid "RuntimeError for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:62 +#, python-format +msgid "Plugin %s failed to load (%s: %s)" +msgstr "" + +#: ../pykolab/plugins.py:89 ../pykolab/plugins.py:91 +#, python-format +msgid "Cannot set defaults for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:93 +#, python-format +msgid "Cannot set defaults for plugin %s: Unknown Error" +msgstr "" + +#: ../pykolab/plugins.py:96 +#, python-format +msgid "Not setting defaults for plugin %s: No function 'set_defaults()'" +msgstr "" + +#: ../pykolab/plugins.py:113 +#, python-format +msgid "Cannot set runtime for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:115 +#, python-format +msgid "Not setting runtime for plugin %s: No function 'set_runtime()'" +msgstr "" + +#: ../pykolab/plugins.py:132 +#, python-format +msgid "Cannot add options for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:134 +#, python-format +msgid "Not adding options for plugin %s: No function 'add_options()'" +msgstr "" + +#: ../pykolab/plugins.py:152 +#, python-format +msgid "Cannot check options for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:154 +#, python-format +msgid "Not checking options for plugin %s: No function 'check_options()'" +msgstr "" + +#: ../pykolab/plugins.py:192 ../pykolab/plugins.py:194 +#, python-format +msgid "Cannot execute hook %s for plugin %s: %s" +msgstr "" + +#: ../pykolab/setup/ldap_setup.py:29 +msgid "Cannot load Python LDAP libraries." +msgstr "" + +#: ../pykolab/setup/ldap_setup.py:53 +#, python-format +msgid "Warning: LDAP Service '%s' is available on " +msgstr "" + +#: ../pykolab/setup/ldap_setup.py:56 +#, python-format +msgid "Found system service %s." +msgstr "" + +#. ldap_uri = utils.ask_question(_("LDAP URI (read/write)"), "ldap://ldap.%s" %(constants.domainname)) +#: ../pykolab/setup/ldap_setup.py:59 +msgid "LDAP URI (read/write)" +msgstr "" + +#. This is a funny input error ("") +#: ../pykolab/setup/ldap_setup.py:69 ../pykolab/setup/ldap_setup.py:76 +msgid "Could not connect to LDAP server due to " +msgstr "" + +#: ../pykolab/setup/ldap_setup.py:73 +msgid "Your username or password are incorrect" +msgstr "" + +#: ../pykolab/tests/calendar.py:146 +#, python-format +msgid "Creating %d Events" +msgstr "" + +#: ../pykolab/tests/calendar.py:177 +#, python-format +msgid "Creating Calendar item number %d" +msgstr "" + +#: ../pykolab/tests/calendar.py:189 ../pykolab/tests/contacts.py:133 +#, python-format +msgid "Sending UID message %s through SMTP targeting user %s@%s" +msgstr "" + +#: ../pykolab/tests/calendar.py:192 ../pykolab/tests/contacts.py:136 +#, python-format +msgid "Sending UID message %s through LMTP targeting user %s@%s" +msgstr "" + +#: ../pykolab/tests/calendar.py:195 ../pykolab/tests/contacts.py:139 +#, python-format +msgid "Saving UID message %s to IMAP (user %s, folder %s)" +msgstr "" + +#: ../pykolab/tests/calendar.py:198 ../pykolab/tests/contacts.py:142 +#: ../pykolab/tests/mail.py:125 +msgid "Somehow ended up NOT sending these messages" +msgstr "" + +#: ../pykolab/tests/contacts.py:97 +#, python-format +msgid "Creating %d Contacts" +msgstr "" + +#: ../pykolab/tests/contacts.py:121 +#, python-format +msgid "Creating Contact item number %d" +msgstr "" + +#: ../pykolab/tests/__init__.py:35 +msgid "Test Options" +msgstr "" + +#: ../pykolab/tests/__init__.py:42 +#, python-format +msgid "Submit a number of items to the %s" +msgstr "" + +#: ../pykolab/tests/__init__.py:48 +msgid "Run tests in suite SUITE. Implies a certain set of items being tested." +msgstr "" + +#: ../pykolab/tests/__init__.py:51 +msgid "Content Delivery Options" +msgstr "" + +#: ../pykolab/tests/__init__.py:57 +msgid "" +"Send messages containing the items through mail (requires proper " +"infrastructure)" +msgstr "" + +#: ../pykolab/tests/__init__.py:63 +msgid "Inject messages containing the items through IMAP (requires imaplib)" +msgstr "" + +#: ../pykolab/tests/__init__.py:69 +msgid "Deliver messages containing the items through LMTP (requires imaplib)" +msgstr "" + +#: ../pykolab/tests/__init__.py:80 +#, python-format +msgid "Tests for suite %s failed to load. Aborting." +msgstr "" + +#: ../pykolab/tests/mail.py:92 +#, python-format +msgid "Creating %d Mails" +msgstr "" + +#: ../pykolab/tests/mail.py:116 +#, python-format +msgid "Sending message %s through SMTP targeting user %s@%s" +msgstr "" + +#: ../pykolab/tests/mail.py:119 +#, python-format +msgid "Sending message %s through LMTP targeting user %s@%s" +msgstr "" + +#: ../pykolab/tests/mail.py:122 +#, python-format +msgid "Saving message %s to IMAP (user %s, folder %s)" +msgstr "" + +#: ../pykolab/tests/zpush/test_000_000.py:96 +#, python-format +msgid "Deleting mailbox: %s" +msgstr "" + +#: ../pykolab/tests/zpush/test_000_000.py:105 +#, python-format +msgid "Creating mailbox: %s" +msgstr "" + +#: ../pykolab/tests/zpush/test_000_000.py:121 +#, python-format +msgid "Authentication failure for %s" +msgstr "" + +#: ../pykolab/tests/zpush/test_000_001.py:48 +#, python-format +msgid "Could not load %sItem from %s, skipping the testing." +msgstr "" + +#: ../pykolab/utils.py:71 +msgid "Please answer 'yes' or 'no'." +msgstr "" + +#: ../setup-kolab.py:52 +#, python-format +msgid "Cannot find %s_setup()." +msgstr "" + +#: ../setup-kolab.py:54 +#, python-format +msgid "Cannot load setup for %s." +msgstr "" + +#. Means we get to ask some questions. +#: ../setup-kolab.py:58 +msgid "Please select the components to set up:" +msgstr "" + +#: ../setup-kolab.py:65 +msgid "Selection" +msgstr "" diff --git a/po/hi.po b/po/hi.po new file mode 100644 index 0000000..ae00f78 --- /dev/null +++ b/po/hi.po @@ -0,0 +1,563 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-02-21 21:23+0000\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" + +#: ../conf.py:37 ../kolabd.py:33 ../kolab.py:34 ../kolabtest.py:34 +#: ../setup-kolab.py:36 +msgid "Cannot load pykolab/logger.py:" +msgstr "" + +#: ../kolabd/__init__.py:44 ../pykolab-0.1/kolabd/__init__.py:44 +msgid "Daemon Options" +msgstr "" + +#: ../kolabd/__init__.py:50 ../pykolab-0.1/kolabd/__init__.py:50 +msgid "For to the background." +msgstr "" + +#: ../kolabd/__init__.py:78 ../pykolab-0.1/kolabd/__init__.py:78 +msgid "Interrupted by user" +msgstr "" + +#: ../kolabd/__init__.py:82 ../kolabd/__init__.py:90 +#: ../pykolab-0.1/kolabd/__init__.py:82 ../pykolab-0.1/kolabd/__init__.py:90 +msgid "Traceback occurred, please report a bug at http://issues.kolab.org" +msgstr "" + +#: ../kolabd/__init__.py:86 ../pykolab-0.1/kolabd/__init__.py:86 +#, python-format +msgid "Type Error: %s" +msgstr "" + +#: ../kolabd/__init__.py:95 ../pykolab-0.1/kolabd/__init__.py:95 +msgid "Sleeping for 10 seconds..." +msgstr "" + +#: ../pykolab/auth/ldap/__init__.py:42 +msgid "Connecting to LDAP..." +msgstr "" + +#: ../pykolab/cli/__init__.py:40 +msgid "Domain Options" +msgstr "" + +#: ../pykolab/cli/__init__.py:45 +msgid "Review LDIF before committed" +msgstr "" + +#: ../pykolab/cli/__init__.py:55 +#, python-format +msgid "TODO: self.check_%s()" +msgstr "" + +#: ../pykolab/cli/__init__.py:81 +#, python-format +msgid "Deleting domain %s" +msgstr "" + +#: ../pykolab/cli/__init__.py:93 +#, python-format +msgid "No domain %s exists." +msgstr "" + +#: ../pykolab/cli/__init__.py:99 +msgid "TODO: Figure out where the domain should actually be added." +msgstr "" + +#: ../pykolab/cli/__init__.py:103 +#, python-format +msgid "Adding domain %s" +msgstr "" + +#. The dn of our new entry/object +#: ../pykolab/cli/__init__.py:106 +msgid "TODO: Make the format for a new domain configurable." +msgstr "" + +#. A dict to help build the "body" of the object +#: ../pykolab/cli/__init__.py:110 +msgid "TODO: Make what a domain looks like configurable." +msgstr "" + +#: ../pykolab/cli/__init__.py:122 +msgid "" +"TODO: Prompt for organization name/description. For now, use domain name." +msgstr "" + +#: ../pykolab/cli/__init__.py:130 +msgid "Please ACK or NACK the above LDIF:" +msgstr "" + +#: ../pykolab/cli/__init__.py:146 +#, python-format +msgid "Domain %s already exists." +msgstr "" + +#: ../pykolab/cli/__init__.py:156 +msgid "Actions" +msgstr "" + +#: ../pykolab/conf/__init__.py:81 +#, python-format +msgid "Setting %s to %r (from defaults)" +msgstr "" + +#: ../pykolab/conf/__init__.py:92 +#, python-format +msgid "Setting %s to %r (from runtime)" +msgstr "" + +#: ../pykolab/conf/__init__.py:106 +#, python-format +msgid "Setting %s to %r (from CLI, verified)" +msgstr "" + +#: ../pykolab/conf/__init__.py:109 +#, python-format +msgid "Setting %s to %r (from CLI, not checked)" +msgstr "" + +#: ../pykolab/conf/__init__.py:154 ../pykolab/conf/__init__.py:208 +#, python-format +msgid "Setting %s_%s to '****' (from configuration file)" +msgstr "" + +#: ../pykolab/conf/__init__.py:156 ../pykolab/conf/__init__.py:210 +#, python-format +msgid "Setting %s_%s to %r (from configuration file)" +msgstr "" + +#: ../pykolab/conf/__init__.py:165 +msgid "Setting options from configuration file" +msgstr "" + +#: ../pykolab/conf/__init__.py:224 +#, python-format +msgid "Configuration file %s not readable" +msgstr "" + +#: ../pykolab/conf/__init__.py:227 +#, python-format +msgid "Reading configuration file %s" +msgstr "" + +#: ../pykolab/conf/__init__.py:231 +#, python-format +msgid "Invalid configuration file %s" +msgstr "" + +#: ../pykolab/conf/__init__.py:234 +#, python-format +msgid "No master configuration section [revisor] in configuration file %s" +msgstr "" + +#. # +#. # Runtime Options +#. # +#: ../pykolab/conf/__init__.py:253 +msgid "Runtime Options" +msgstr "" + +#: ../pykolab/conf/__init__.py:258 +msgid "Configuration file to use" +msgstr "" + +#: ../pykolab/conf/__init__.py:264 +msgid "Set the debugging verbosity. Maximum is 99" +msgstr "" + +#: ../pykolab/conf/__init__.py:270 +msgid "Log file to use" +msgstr "" + +#: ../pykolab/conf/__init__.py:276 +msgid "Be quiet." +msgstr "" + +#: ../pykolab/conf/__init__.py:282 +msgid "Answer yes to all questions." +msgstr "" + +#: ../pykolab/conf/__init__.py:310 +msgid "No command supplied" +msgstr "" + +#: ../pykolab/conf/__init__.py:392 +msgid "Insufficient options. Need section, key and value -in that order." +msgstr "" + +#: ../pykolab/conf/__init__.py:395 +#, python-format +msgid "No section '%s' exists." +msgstr "" + +#: ../pykolab/conf/__init__.py:424 +#, python-format +msgid "Setting %s to %r (from the default values for CLI options)" +msgstr "" + +#: ../pykolab/conf/__init__.py:441 +#, python-format +msgid "Option %s/%s does not exist in config file %s, pulling from defaults" +msgstr "" + +#: ../pykolab/conf/__init__.py:449 ../pykolab/conf/__init__.py:452 +msgid "Option does not exist in defaults." +msgstr "" + +#: ../pykolab/conf/__init__.py:450 ../pykolab/conf/__init__.py:453 +msgid "Not available" +msgstr "" + +#: ../pykolab/conf/__init__.py:462 +#, python-format +msgid "Configuration file %s not readable." +msgstr "" + +#: ../pykolab/conf/__init__.py:465 +#, python-format +msgid "Configuration file %s does not exist." +msgstr "" + +#: ../pykolab/conf/__init__.py:470 +msgid "" +"WARNING: A negative debug level value does not make this program be any more " +"silent." +msgstr "" + +#: ../pykolab/conf/__init__.py:476 +msgid "" +"WARNING: This program has 9 levels of verbosity. Using the maximum of 9." +msgstr "" + +#: ../pykolab/conf/__init__.py:486 +msgid "No imaplib library found." +msgstr "" + +#: ../pykolab/conf/__init__.py:496 +msgid "No LMTP class found in the smtplib library." +msgstr "" + +#: ../pykolab/conf/__init__.py:506 +msgid "No SMTP class found in the smtplib library." +msgstr "" + +#: ../pykolab/conf/__init__.py:517 +#, python-format +msgid "Found you specified a specific set of items to test: %s" +msgstr "" + +#: ../pykolab/conf/__init__.py:525 +#, python-format +msgid "Selectively selecting: %s" +msgstr "" + +#: ../pykolab/constants.py:39 +msgid "PyKolab is a Kolab Systems product. For more information " +msgstr "" + +#: ../pykolab/constants.py:53 +msgid "WARNING" +msgstr "" + +#: ../pykolab/constants.py:53 +msgid "The Fully Qualified " +msgstr "" + +#: ../pykolab/constants.py:73 +msgid "389 Directory Server or Red Hat Directory Server" +msgstr "" + +#: ../pykolab/constants.py:77 ../pykolab/constants.py:81 +msgid "OpenLDAP or compatible" +msgstr "" + +#: ../pykolab/imap/__init__.py:74 ../pykolab/imap/__init__.py:79 +#, python-format +msgid "Creating new INBOX for user: %s" +msgstr "" + +#: ../pykolab/imap/__init__.py:145 +#, python-format +msgid "Setting new quota for folder %s to %r" +msgstr "" + +#: ../pykolab/imap/__init__.py:149 +#, python-format +msgid "Quota for %s currently is %s" +msgstr "" + +#: ../pykolab/imap/__init__.py:152 +#, python-format +msgid "Correcting quota for %s to %s (currently %s)" +msgstr "" + +#: ../pykolab/imap/__init__.py:178 +#, python-format +msgid "Folder has no corresponding user (1): %s" +msgstr "" + +#: ../pykolab/imap/__init__.py:181 +#, python-format +msgid "Folder has no corresponding user (2): %s" +msgstr "" + +#: ../pykolab/logger.py:42 +#, python-format +msgid "Cannot log to file %s: %s" +msgstr "" + +#: ../pykolab/logger.py:87 ../pykolab/logger.py:96 +msgid "Do you want to continue? [Y/n]" +msgstr "" + +#: ../pykolab/logger.py:90 ../pykolab/logger.py:99 +msgid "Abort! Abort! Abort!" +msgstr "" + +#: ../pykolab/plugins.py:56 +#, python-format +msgid "ImportError for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:59 +#, python-format +msgid "RuntimeError for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:62 +#, python-format +msgid "Plugin %s failed to load (%s: %s)" +msgstr "" + +#: ../pykolab/plugins.py:89 ../pykolab/plugins.py:91 +#, python-format +msgid "Cannot set defaults for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:93 +#, python-format +msgid "Cannot set defaults for plugin %s: Unknown Error" +msgstr "" + +#: ../pykolab/plugins.py:96 +#, python-format +msgid "Not setting defaults for plugin %s: No function 'set_defaults()'" +msgstr "" + +#: ../pykolab/plugins.py:113 +#, python-format +msgid "Cannot set runtime for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:115 +#, python-format +msgid "Not setting runtime for plugin %s: No function 'set_runtime()'" +msgstr "" + +#: ../pykolab/plugins.py:132 +#, python-format +msgid "Cannot add options for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:134 +#, python-format +msgid "Not adding options for plugin %s: No function 'add_options()'" +msgstr "" + +#: ../pykolab/plugins.py:152 +#, python-format +msgid "Cannot check options for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:154 +#, python-format +msgid "Not checking options for plugin %s: No function 'check_options()'" +msgstr "" + +#: ../pykolab/plugins.py:192 ../pykolab/plugins.py:194 +#, python-format +msgid "Cannot execute hook %s for plugin %s: %s" +msgstr "" + +#: ../pykolab/setup/ldap_setup.py:29 +msgid "Cannot load Python LDAP libraries." +msgstr "" + +#: ../pykolab/setup/ldap_setup.py:53 +#, python-format +msgid "Warning: LDAP Service '%s' is available on " +msgstr "" + +#: ../pykolab/setup/ldap_setup.py:56 +#, python-format +msgid "Found system service %s." +msgstr "" + +#. ldap_uri = utils.ask_question(_("LDAP URI (read/write)"), "ldap://ldap.%s" %(constants.domainname)) +#: ../pykolab/setup/ldap_setup.py:59 +msgid "LDAP URI (read/write)" +msgstr "" + +#. This is a funny input error ("") +#: ../pykolab/setup/ldap_setup.py:69 ../pykolab/setup/ldap_setup.py:76 +msgid "Could not connect to LDAP server due to " +msgstr "" + +#: ../pykolab/setup/ldap_setup.py:73 +msgid "Your username or password are incorrect" +msgstr "" + +#: ../pykolab/tests/calendar.py:146 +#, python-format +msgid "Creating %d Events" +msgstr "" + +#: ../pykolab/tests/calendar.py:177 +#, python-format +msgid "Creating Calendar item number %d" +msgstr "" + +#: ../pykolab/tests/calendar.py:189 ../pykolab/tests/contacts.py:133 +#, python-format +msgid "Sending UID message %s through SMTP targeting user %s@%s" +msgstr "" + +#: ../pykolab/tests/calendar.py:192 ../pykolab/tests/contacts.py:136 +#, python-format +msgid "Sending UID message %s through LMTP targeting user %s@%s" +msgstr "" + +#: ../pykolab/tests/calendar.py:195 ../pykolab/tests/contacts.py:139 +#, python-format +msgid "Saving UID message %s to IMAP (user %s, folder %s)" +msgstr "" + +#: ../pykolab/tests/calendar.py:198 ../pykolab/tests/contacts.py:142 +#: ../pykolab/tests/mail.py:125 +msgid "Somehow ended up NOT sending these messages" +msgstr "" + +#: ../pykolab/tests/contacts.py:97 +#, python-format +msgid "Creating %d Contacts" +msgstr "" + +#: ../pykolab/tests/contacts.py:121 +#, python-format +msgid "Creating Contact item number %d" +msgstr "" + +#: ../pykolab/tests/__init__.py:35 +msgid "Test Options" +msgstr "" + +#: ../pykolab/tests/__init__.py:42 +#, python-format +msgid "Submit a number of items to the %s" +msgstr "" + +#: ../pykolab/tests/__init__.py:48 +msgid "Run tests in suite SUITE. Implies a certain set of items being tested." +msgstr "" + +#: ../pykolab/tests/__init__.py:51 +msgid "Content Delivery Options" +msgstr "" + +#: ../pykolab/tests/__init__.py:57 +msgid "" +"Send messages containing the items through mail (requires proper " +"infrastructure)" +msgstr "" + +#: ../pykolab/tests/__init__.py:63 +msgid "Inject messages containing the items through IMAP (requires imaplib)" +msgstr "" + +#: ../pykolab/tests/__init__.py:69 +msgid "Deliver messages containing the items through LMTP (requires imaplib)" +msgstr "" + +#: ../pykolab/tests/__init__.py:80 +#, python-format +msgid "Tests for suite %s failed to load. Aborting." +msgstr "" + +#: ../pykolab/tests/mail.py:92 +#, python-format +msgid "Creating %d Mails" +msgstr "" + +#: ../pykolab/tests/mail.py:116 +#, python-format +msgid "Sending message %s through SMTP targeting user %s@%s" +msgstr "" + +#: ../pykolab/tests/mail.py:119 +#, python-format +msgid "Sending message %s through LMTP targeting user %s@%s" +msgstr "" + +#: ../pykolab/tests/mail.py:122 +#, python-format +msgid "Saving message %s to IMAP (user %s, folder %s)" +msgstr "" + +#: ../pykolab/tests/zpush/test_000_000.py:96 +#, python-format +msgid "Deleting mailbox: %s" +msgstr "" + +#: ../pykolab/tests/zpush/test_000_000.py:105 +#, python-format +msgid "Creating mailbox: %s" +msgstr "" + +#: ../pykolab/tests/zpush/test_000_000.py:121 +#, python-format +msgid "Authentication failure for %s" +msgstr "" + +#: ../pykolab/tests/zpush/test_000_001.py:48 +#, python-format +msgid "Could not load %sItem from %s, skipping the testing." +msgstr "" + +#: ../pykolab/utils.py:71 +msgid "Please answer 'yes' or 'no'." +msgstr "" + +#: ../setup-kolab.py:52 +#, python-format +msgid "Cannot find %s_setup()." +msgstr "" + +#: ../setup-kolab.py:54 +#, python-format +msgid "Cannot load setup for %s." +msgstr "" + +#. Means we get to ask some questions. +#: ../setup-kolab.py:58 +msgid "Please select the components to set up:" +msgstr "" + +#: ../setup-kolab.py:65 +msgid "Selection" +msgstr "" diff --git a/po/hr.po b/po/hr.po new file mode 100644 index 0000000..ae00f78 --- /dev/null +++ b/po/hr.po @@ -0,0 +1,563 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-02-21 21:23+0000\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" + +#: ../conf.py:37 ../kolabd.py:33 ../kolab.py:34 ../kolabtest.py:34 +#: ../setup-kolab.py:36 +msgid "Cannot load pykolab/logger.py:" +msgstr "" + +#: ../kolabd/__init__.py:44 ../pykolab-0.1/kolabd/__init__.py:44 +msgid "Daemon Options" +msgstr "" + +#: ../kolabd/__init__.py:50 ../pykolab-0.1/kolabd/__init__.py:50 +msgid "For to the background." +msgstr "" + +#: ../kolabd/__init__.py:78 ../pykolab-0.1/kolabd/__init__.py:78 +msgid "Interrupted by user" +msgstr "" + +#: ../kolabd/__init__.py:82 ../kolabd/__init__.py:90 +#: ../pykolab-0.1/kolabd/__init__.py:82 ../pykolab-0.1/kolabd/__init__.py:90 +msgid "Traceback occurred, please report a bug at http://issues.kolab.org" +msgstr "" + +#: ../kolabd/__init__.py:86 ../pykolab-0.1/kolabd/__init__.py:86 +#, python-format +msgid "Type Error: %s" +msgstr "" + +#: ../kolabd/__init__.py:95 ../pykolab-0.1/kolabd/__init__.py:95 +msgid "Sleeping for 10 seconds..." +msgstr "" + +#: ../pykolab/auth/ldap/__init__.py:42 +msgid "Connecting to LDAP..." +msgstr "" + +#: ../pykolab/cli/__init__.py:40 +msgid "Domain Options" +msgstr "" + +#: ../pykolab/cli/__init__.py:45 +msgid "Review LDIF before committed" +msgstr "" + +#: ../pykolab/cli/__init__.py:55 +#, python-format +msgid "TODO: self.check_%s()" +msgstr "" + +#: ../pykolab/cli/__init__.py:81 +#, python-format +msgid "Deleting domain %s" +msgstr "" + +#: ../pykolab/cli/__init__.py:93 +#, python-format +msgid "No domain %s exists." +msgstr "" + +#: ../pykolab/cli/__init__.py:99 +msgid "TODO: Figure out where the domain should actually be added." +msgstr "" + +#: ../pykolab/cli/__init__.py:103 +#, python-format +msgid "Adding domain %s" +msgstr "" + +#. The dn of our new entry/object +#: ../pykolab/cli/__init__.py:106 +msgid "TODO: Make the format for a new domain configurable." +msgstr "" + +#. A dict to help build the "body" of the object +#: ../pykolab/cli/__init__.py:110 +msgid "TODO: Make what a domain looks like configurable." +msgstr "" + +#: ../pykolab/cli/__init__.py:122 +msgid "" +"TODO: Prompt for organization name/description. For now, use domain name." +msgstr "" + +#: ../pykolab/cli/__init__.py:130 +msgid "Please ACK or NACK the above LDIF:" +msgstr "" + +#: ../pykolab/cli/__init__.py:146 +#, python-format +msgid "Domain %s already exists." +msgstr "" + +#: ../pykolab/cli/__init__.py:156 +msgid "Actions" +msgstr "" + +#: ../pykolab/conf/__init__.py:81 +#, python-format +msgid "Setting %s to %r (from defaults)" +msgstr "" + +#: ../pykolab/conf/__init__.py:92 +#, python-format +msgid "Setting %s to %r (from runtime)" +msgstr "" + +#: ../pykolab/conf/__init__.py:106 +#, python-format +msgid "Setting %s to %r (from CLI, verified)" +msgstr "" + +#: ../pykolab/conf/__init__.py:109 +#, python-format +msgid "Setting %s to %r (from CLI, not checked)" +msgstr "" + +#: ../pykolab/conf/__init__.py:154 ../pykolab/conf/__init__.py:208 +#, python-format +msgid "Setting %s_%s to '****' (from configuration file)" +msgstr "" + +#: ../pykolab/conf/__init__.py:156 ../pykolab/conf/__init__.py:210 +#, python-format +msgid "Setting %s_%s to %r (from configuration file)" +msgstr "" + +#: ../pykolab/conf/__init__.py:165 +msgid "Setting options from configuration file" +msgstr "" + +#: ../pykolab/conf/__init__.py:224 +#, python-format +msgid "Configuration file %s not readable" +msgstr "" + +#: ../pykolab/conf/__init__.py:227 +#, python-format +msgid "Reading configuration file %s" +msgstr "" + +#: ../pykolab/conf/__init__.py:231 +#, python-format +msgid "Invalid configuration file %s" +msgstr "" + +#: ../pykolab/conf/__init__.py:234 +#, python-format +msgid "No master configuration section [revisor] in configuration file %s" +msgstr "" + +#. # +#. # Runtime Options +#. # +#: ../pykolab/conf/__init__.py:253 +msgid "Runtime Options" +msgstr "" + +#: ../pykolab/conf/__init__.py:258 +msgid "Configuration file to use" +msgstr "" + +#: ../pykolab/conf/__init__.py:264 +msgid "Set the debugging verbosity. Maximum is 99" +msgstr "" + +#: ../pykolab/conf/__init__.py:270 +msgid "Log file to use" +msgstr "" + +#: ../pykolab/conf/__init__.py:276 +msgid "Be quiet." +msgstr "" + +#: ../pykolab/conf/__init__.py:282 +msgid "Answer yes to all questions." +msgstr "" + +#: ../pykolab/conf/__init__.py:310 +msgid "No command supplied" +msgstr "" + +#: ../pykolab/conf/__init__.py:392 +msgid "Insufficient options. Need section, key and value -in that order." +msgstr "" + +#: ../pykolab/conf/__init__.py:395 +#, python-format +msgid "No section '%s' exists." +msgstr "" + +#: ../pykolab/conf/__init__.py:424 +#, python-format +msgid "Setting %s to %r (from the default values for CLI options)" +msgstr "" + +#: ../pykolab/conf/__init__.py:441 +#, python-format +msgid "Option %s/%s does not exist in config file %s, pulling from defaults" +msgstr "" + +#: ../pykolab/conf/__init__.py:449 ../pykolab/conf/__init__.py:452 +msgid "Option does not exist in defaults." +msgstr "" + +#: ../pykolab/conf/__init__.py:450 ../pykolab/conf/__init__.py:453 +msgid "Not available" +msgstr "" + +#: ../pykolab/conf/__init__.py:462 +#, python-format +msgid "Configuration file %s not readable." +msgstr "" + +#: ../pykolab/conf/__init__.py:465 +#, python-format +msgid "Configuration file %s does not exist." +msgstr "" + +#: ../pykolab/conf/__init__.py:470 +msgid "" +"WARNING: A negative debug level value does not make this program be any more " +"silent." +msgstr "" + +#: ../pykolab/conf/__init__.py:476 +msgid "" +"WARNING: This program has 9 levels of verbosity. Using the maximum of 9." +msgstr "" + +#: ../pykolab/conf/__init__.py:486 +msgid "No imaplib library found." +msgstr "" + +#: ../pykolab/conf/__init__.py:496 +msgid "No LMTP class found in the smtplib library." +msgstr "" + +#: ../pykolab/conf/__init__.py:506 +msgid "No SMTP class found in the smtplib library." +msgstr "" + +#: ../pykolab/conf/__init__.py:517 +#, python-format +msgid "Found you specified a specific set of items to test: %s" +msgstr "" + +#: ../pykolab/conf/__init__.py:525 +#, python-format +msgid "Selectively selecting: %s" +msgstr "" + +#: ../pykolab/constants.py:39 +msgid "PyKolab is a Kolab Systems product. For more information " +msgstr "" + +#: ../pykolab/constants.py:53 +msgid "WARNING" +msgstr "" + +#: ../pykolab/constants.py:53 +msgid "The Fully Qualified " +msgstr "" + +#: ../pykolab/constants.py:73 +msgid "389 Directory Server or Red Hat Directory Server" +msgstr "" + +#: ../pykolab/constants.py:77 ../pykolab/constants.py:81 +msgid "OpenLDAP or compatible" +msgstr "" + +#: ../pykolab/imap/__init__.py:74 ../pykolab/imap/__init__.py:79 +#, python-format +msgid "Creating new INBOX for user: %s" +msgstr "" + +#: ../pykolab/imap/__init__.py:145 +#, python-format +msgid "Setting new quota for folder %s to %r" +msgstr "" + +#: ../pykolab/imap/__init__.py:149 +#, python-format +msgid "Quota for %s currently is %s" +msgstr "" + +#: ../pykolab/imap/__init__.py:152 +#, python-format +msgid "Correcting quota for %s to %s (currently %s)" +msgstr "" + +#: ../pykolab/imap/__init__.py:178 +#, python-format +msgid "Folder has no corresponding user (1): %s" +msgstr "" + +#: ../pykolab/imap/__init__.py:181 +#, python-format +msgid "Folder has no corresponding user (2): %s" +msgstr "" + +#: ../pykolab/logger.py:42 +#, python-format +msgid "Cannot log to file %s: %s" +msgstr "" + +#: ../pykolab/logger.py:87 ../pykolab/logger.py:96 +msgid "Do you want to continue? [Y/n]" +msgstr "" + +#: ../pykolab/logger.py:90 ../pykolab/logger.py:99 +msgid "Abort! Abort! Abort!" +msgstr "" + +#: ../pykolab/plugins.py:56 +#, python-format +msgid "ImportError for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:59 +#, python-format +msgid "RuntimeError for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:62 +#, python-format +msgid "Plugin %s failed to load (%s: %s)" +msgstr "" + +#: ../pykolab/plugins.py:89 ../pykolab/plugins.py:91 +#, python-format +msgid "Cannot set defaults for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:93 +#, python-format +msgid "Cannot set defaults for plugin %s: Unknown Error" +msgstr "" + +#: ../pykolab/plugins.py:96 +#, python-format +msgid "Not setting defaults for plugin %s: No function 'set_defaults()'" +msgstr "" + +#: ../pykolab/plugins.py:113 +#, python-format +msgid "Cannot set runtime for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:115 +#, python-format +msgid "Not setting runtime for plugin %s: No function 'set_runtime()'" +msgstr "" + +#: ../pykolab/plugins.py:132 +#, python-format +msgid "Cannot add options for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:134 +#, python-format +msgid "Not adding options for plugin %s: No function 'add_options()'" +msgstr "" + +#: ../pykolab/plugins.py:152 +#, python-format +msgid "Cannot check options for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:154 +#, python-format +msgid "Not checking options for plugin %s: No function 'check_options()'" +msgstr "" + +#: ../pykolab/plugins.py:192 ../pykolab/plugins.py:194 +#, python-format +msgid "Cannot execute hook %s for plugin %s: %s" +msgstr "" + +#: ../pykolab/setup/ldap_setup.py:29 +msgid "Cannot load Python LDAP libraries." +msgstr "" + +#: ../pykolab/setup/ldap_setup.py:53 +#, python-format +msgid "Warning: LDAP Service '%s' is available on " +msgstr "" + +#: ../pykolab/setup/ldap_setup.py:56 +#, python-format +msgid "Found system service %s." +msgstr "" + +#. ldap_uri = utils.ask_question(_("LDAP URI (read/write)"), "ldap://ldap.%s" %(constants.domainname)) +#: ../pykolab/setup/ldap_setup.py:59 +msgid "LDAP URI (read/write)" +msgstr "" + +#. This is a funny input error ("") +#: ../pykolab/setup/ldap_setup.py:69 ../pykolab/setup/ldap_setup.py:76 +msgid "Could not connect to LDAP server due to " +msgstr "" + +#: ../pykolab/setup/ldap_setup.py:73 +msgid "Your username or password are incorrect" +msgstr "" + +#: ../pykolab/tests/calendar.py:146 +#, python-format +msgid "Creating %d Events" +msgstr "" + +#: ../pykolab/tests/calendar.py:177 +#, python-format +msgid "Creating Calendar item number %d" +msgstr "" + +#: ../pykolab/tests/calendar.py:189 ../pykolab/tests/contacts.py:133 +#, python-format +msgid "Sending UID message %s through SMTP targeting user %s@%s" +msgstr "" + +#: ../pykolab/tests/calendar.py:192 ../pykolab/tests/contacts.py:136 +#, python-format +msgid "Sending UID message %s through LMTP targeting user %s@%s" +msgstr "" + +#: ../pykolab/tests/calendar.py:195 ../pykolab/tests/contacts.py:139 +#, python-format +msgid "Saving UID message %s to IMAP (user %s, folder %s)" +msgstr "" + +#: ../pykolab/tests/calendar.py:198 ../pykolab/tests/contacts.py:142 +#: ../pykolab/tests/mail.py:125 +msgid "Somehow ended up NOT sending these messages" +msgstr "" + +#: ../pykolab/tests/contacts.py:97 +#, python-format +msgid "Creating %d Contacts" +msgstr "" + +#: ../pykolab/tests/contacts.py:121 +#, python-format +msgid "Creating Contact item number %d" +msgstr "" + +#: ../pykolab/tests/__init__.py:35 +msgid "Test Options" +msgstr "" + +#: ../pykolab/tests/__init__.py:42 +#, python-format +msgid "Submit a number of items to the %s" +msgstr "" + +#: ../pykolab/tests/__init__.py:48 +msgid "Run tests in suite SUITE. Implies a certain set of items being tested." +msgstr "" + +#: ../pykolab/tests/__init__.py:51 +msgid "Content Delivery Options" +msgstr "" + +#: ../pykolab/tests/__init__.py:57 +msgid "" +"Send messages containing the items through mail (requires proper " +"infrastructure)" +msgstr "" + +#: ../pykolab/tests/__init__.py:63 +msgid "Inject messages containing the items through IMAP (requires imaplib)" +msgstr "" + +#: ../pykolab/tests/__init__.py:69 +msgid "Deliver messages containing the items through LMTP (requires imaplib)" +msgstr "" + +#: ../pykolab/tests/__init__.py:80 +#, python-format +msgid "Tests for suite %s failed to load. Aborting." +msgstr "" + +#: ../pykolab/tests/mail.py:92 +#, python-format +msgid "Creating %d Mails" +msgstr "" + +#: ../pykolab/tests/mail.py:116 +#, python-format +msgid "Sending message %s through SMTP targeting user %s@%s" +msgstr "" + +#: ../pykolab/tests/mail.py:119 +#, python-format +msgid "Sending message %s through LMTP targeting user %s@%s" +msgstr "" + +#: ../pykolab/tests/mail.py:122 +#, python-format +msgid "Saving message %s to IMAP (user %s, folder %s)" +msgstr "" + +#: ../pykolab/tests/zpush/test_000_000.py:96 +#, python-format +msgid "Deleting mailbox: %s" +msgstr "" + +#: ../pykolab/tests/zpush/test_000_000.py:105 +#, python-format +msgid "Creating mailbox: %s" +msgstr "" + +#: ../pykolab/tests/zpush/test_000_000.py:121 +#, python-format +msgid "Authentication failure for %s" +msgstr "" + +#: ../pykolab/tests/zpush/test_000_001.py:48 +#, python-format +msgid "Could not load %sItem from %s, skipping the testing." +msgstr "" + +#: ../pykolab/utils.py:71 +msgid "Please answer 'yes' or 'no'." +msgstr "" + +#: ../setup-kolab.py:52 +#, python-format +msgid "Cannot find %s_setup()." +msgstr "" + +#: ../setup-kolab.py:54 +#, python-format +msgid "Cannot load setup for %s." +msgstr "" + +#. Means we get to ask some questions. +#: ../setup-kolab.py:58 +msgid "Please select the components to set up:" +msgstr "" + +#: ../setup-kolab.py:65 +msgid "Selection" +msgstr "" diff --git a/po/hu.po b/po/hu.po new file mode 100644 index 0000000..ae00f78 --- /dev/null +++ b/po/hu.po @@ -0,0 +1,563 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-02-21 21:23+0000\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" + +#: ../conf.py:37 ../kolabd.py:33 ../kolab.py:34 ../kolabtest.py:34 +#: ../setup-kolab.py:36 +msgid "Cannot load pykolab/logger.py:" +msgstr "" + +#: ../kolabd/__init__.py:44 ../pykolab-0.1/kolabd/__init__.py:44 +msgid "Daemon Options" +msgstr "" + +#: ../kolabd/__init__.py:50 ../pykolab-0.1/kolabd/__init__.py:50 +msgid "For to the background." +msgstr "" + +#: ../kolabd/__init__.py:78 ../pykolab-0.1/kolabd/__init__.py:78 +msgid "Interrupted by user" +msgstr "" + +#: ../kolabd/__init__.py:82 ../kolabd/__init__.py:90 +#: ../pykolab-0.1/kolabd/__init__.py:82 ../pykolab-0.1/kolabd/__init__.py:90 +msgid "Traceback occurred, please report a bug at http://issues.kolab.org" +msgstr "" + +#: ../kolabd/__init__.py:86 ../pykolab-0.1/kolabd/__init__.py:86 +#, python-format +msgid "Type Error: %s" +msgstr "" + +#: ../kolabd/__init__.py:95 ../pykolab-0.1/kolabd/__init__.py:95 +msgid "Sleeping for 10 seconds..." +msgstr "" + +#: ../pykolab/auth/ldap/__init__.py:42 +msgid "Connecting to LDAP..." +msgstr "" + +#: ../pykolab/cli/__init__.py:40 +msgid "Domain Options" +msgstr "" + +#: ../pykolab/cli/__init__.py:45 +msgid "Review LDIF before committed" +msgstr "" + +#: ../pykolab/cli/__init__.py:55 +#, python-format +msgid "TODO: self.check_%s()" +msgstr "" + +#: ../pykolab/cli/__init__.py:81 +#, python-format +msgid "Deleting domain %s" +msgstr "" + +#: ../pykolab/cli/__init__.py:93 +#, python-format +msgid "No domain %s exists." +msgstr "" + +#: ../pykolab/cli/__init__.py:99 +msgid "TODO: Figure out where the domain should actually be added." +msgstr "" + +#: ../pykolab/cli/__init__.py:103 +#, python-format +msgid "Adding domain %s" +msgstr "" + +#. The dn of our new entry/object +#: ../pykolab/cli/__init__.py:106 +msgid "TODO: Make the format for a new domain configurable." +msgstr "" + +#. A dict to help build the "body" of the object +#: ../pykolab/cli/__init__.py:110 +msgid "TODO: Make what a domain looks like configurable." +msgstr "" + +#: ../pykolab/cli/__init__.py:122 +msgid "" +"TODO: Prompt for organization name/description. For now, use domain name." +msgstr "" + +#: ../pykolab/cli/__init__.py:130 +msgid "Please ACK or NACK the above LDIF:" +msgstr "" + +#: ../pykolab/cli/__init__.py:146 +#, python-format +msgid "Domain %s already exists." +msgstr "" + +#: ../pykolab/cli/__init__.py:156 +msgid "Actions" +msgstr "" + +#: ../pykolab/conf/__init__.py:81 +#, python-format +msgid "Setting %s to %r (from defaults)" +msgstr "" + +#: ../pykolab/conf/__init__.py:92 +#, python-format +msgid "Setting %s to %r (from runtime)" +msgstr "" + +#: ../pykolab/conf/__init__.py:106 +#, python-format +msgid "Setting %s to %r (from CLI, verified)" +msgstr "" + +#: ../pykolab/conf/__init__.py:109 +#, python-format +msgid "Setting %s to %r (from CLI, not checked)" +msgstr "" + +#: ../pykolab/conf/__init__.py:154 ../pykolab/conf/__init__.py:208 +#, python-format +msgid "Setting %s_%s to '****' (from configuration file)" +msgstr "" + +#: ../pykolab/conf/__init__.py:156 ../pykolab/conf/__init__.py:210 +#, python-format +msgid "Setting %s_%s to %r (from configuration file)" +msgstr "" + +#: ../pykolab/conf/__init__.py:165 +msgid "Setting options from configuration file" +msgstr "" + +#: ../pykolab/conf/__init__.py:224 +#, python-format +msgid "Configuration file %s not readable" +msgstr "" + +#: ../pykolab/conf/__init__.py:227 +#, python-format +msgid "Reading configuration file %s" +msgstr "" + +#: ../pykolab/conf/__init__.py:231 +#, python-format +msgid "Invalid configuration file %s" +msgstr "" + +#: ../pykolab/conf/__init__.py:234 +#, python-format +msgid "No master configuration section [revisor] in configuration file %s" +msgstr "" + +#. # +#. # Runtime Options +#. # +#: ../pykolab/conf/__init__.py:253 +msgid "Runtime Options" +msgstr "" + +#: ../pykolab/conf/__init__.py:258 +msgid "Configuration file to use" +msgstr "" + +#: ../pykolab/conf/__init__.py:264 +msgid "Set the debugging verbosity. Maximum is 99" +msgstr "" + +#: ../pykolab/conf/__init__.py:270 +msgid "Log file to use" +msgstr "" + +#: ../pykolab/conf/__init__.py:276 +msgid "Be quiet." +msgstr "" + +#: ../pykolab/conf/__init__.py:282 +msgid "Answer yes to all questions." +msgstr "" + +#: ../pykolab/conf/__init__.py:310 +msgid "No command supplied" +msgstr "" + +#: ../pykolab/conf/__init__.py:392 +msgid "Insufficient options. Need section, key and value -in that order." +msgstr "" + +#: ../pykolab/conf/__init__.py:395 +#, python-format +msgid "No section '%s' exists." +msgstr "" + +#: ../pykolab/conf/__init__.py:424 +#, python-format +msgid "Setting %s to %r (from the default values for CLI options)" +msgstr "" + +#: ../pykolab/conf/__init__.py:441 +#, python-format +msgid "Option %s/%s does not exist in config file %s, pulling from defaults" +msgstr "" + +#: ../pykolab/conf/__init__.py:449 ../pykolab/conf/__init__.py:452 +msgid "Option does not exist in defaults." +msgstr "" + +#: ../pykolab/conf/__init__.py:450 ../pykolab/conf/__init__.py:453 +msgid "Not available" +msgstr "" + +#: ../pykolab/conf/__init__.py:462 +#, python-format +msgid "Configuration file %s not readable." +msgstr "" + +#: ../pykolab/conf/__init__.py:465 +#, python-format +msgid "Configuration file %s does not exist." +msgstr "" + +#: ../pykolab/conf/__init__.py:470 +msgid "" +"WARNING: A negative debug level value does not make this program be any more " +"silent." +msgstr "" + +#: ../pykolab/conf/__init__.py:476 +msgid "" +"WARNING: This program has 9 levels of verbosity. Using the maximum of 9." +msgstr "" + +#: ../pykolab/conf/__init__.py:486 +msgid "No imaplib library found." +msgstr "" + +#: ../pykolab/conf/__init__.py:496 +msgid "No LMTP class found in the smtplib library." +msgstr "" + +#: ../pykolab/conf/__init__.py:506 +msgid "No SMTP class found in the smtplib library." +msgstr "" + +#: ../pykolab/conf/__init__.py:517 +#, python-format +msgid "Found you specified a specific set of items to test: %s" +msgstr "" + +#: ../pykolab/conf/__init__.py:525 +#, python-format +msgid "Selectively selecting: %s" +msgstr "" + +#: ../pykolab/constants.py:39 +msgid "PyKolab is a Kolab Systems product. For more information " +msgstr "" + +#: ../pykolab/constants.py:53 +msgid "WARNING" +msgstr "" + +#: ../pykolab/constants.py:53 +msgid "The Fully Qualified " +msgstr "" + +#: ../pykolab/constants.py:73 +msgid "389 Directory Server or Red Hat Directory Server" +msgstr "" + +#: ../pykolab/constants.py:77 ../pykolab/constants.py:81 +msgid "OpenLDAP or compatible" +msgstr "" + +#: ../pykolab/imap/__init__.py:74 ../pykolab/imap/__init__.py:79 +#, python-format +msgid "Creating new INBOX for user: %s" +msgstr "" + +#: ../pykolab/imap/__init__.py:145 +#, python-format +msgid "Setting new quota for folder %s to %r" +msgstr "" + +#: ../pykolab/imap/__init__.py:149 +#, python-format +msgid "Quota for %s currently is %s" +msgstr "" + +#: ../pykolab/imap/__init__.py:152 +#, python-format +msgid "Correcting quota for %s to %s (currently %s)" +msgstr "" + +#: ../pykolab/imap/__init__.py:178 +#, python-format +msgid "Folder has no corresponding user (1): %s" +msgstr "" + +#: ../pykolab/imap/__init__.py:181 +#, python-format +msgid "Folder has no corresponding user (2): %s" +msgstr "" + +#: ../pykolab/logger.py:42 +#, python-format +msgid "Cannot log to file %s: %s" +msgstr "" + +#: ../pykolab/logger.py:87 ../pykolab/logger.py:96 +msgid "Do you want to continue? [Y/n]" +msgstr "" + +#: ../pykolab/logger.py:90 ../pykolab/logger.py:99 +msgid "Abort! Abort! Abort!" +msgstr "" + +#: ../pykolab/plugins.py:56 +#, python-format +msgid "ImportError for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:59 +#, python-format +msgid "RuntimeError for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:62 +#, python-format +msgid "Plugin %s failed to load (%s: %s)" +msgstr "" + +#: ../pykolab/plugins.py:89 ../pykolab/plugins.py:91 +#, python-format +msgid "Cannot set defaults for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:93 +#, python-format +msgid "Cannot set defaults for plugin %s: Unknown Error" +msgstr "" + +#: ../pykolab/plugins.py:96 +#, python-format +msgid "Not setting defaults for plugin %s: No function 'set_defaults()'" +msgstr "" + +#: ../pykolab/plugins.py:113 +#, python-format +msgid "Cannot set runtime for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:115 +#, python-format +msgid "Not setting runtime for plugin %s: No function 'set_runtime()'" +msgstr "" + +#: ../pykolab/plugins.py:132 +#, python-format +msgid "Cannot add options for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:134 +#, python-format +msgid "Not adding options for plugin %s: No function 'add_options()'" +msgstr "" + +#: ../pykolab/plugins.py:152 +#, python-format +msgid "Cannot check options for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:154 +#, python-format +msgid "Not checking options for plugin %s: No function 'check_options()'" +msgstr "" + +#: ../pykolab/plugins.py:192 ../pykolab/plugins.py:194 +#, python-format +msgid "Cannot execute hook %s for plugin %s: %s" +msgstr "" + +#: ../pykolab/setup/ldap_setup.py:29 +msgid "Cannot load Python LDAP libraries." +msgstr "" + +#: ../pykolab/setup/ldap_setup.py:53 +#, python-format +msgid "Warning: LDAP Service '%s' is available on " +msgstr "" + +#: ../pykolab/setup/ldap_setup.py:56 +#, python-format +msgid "Found system service %s." +msgstr "" + +#. ldap_uri = utils.ask_question(_("LDAP URI (read/write)"), "ldap://ldap.%s" %(constants.domainname)) +#: ../pykolab/setup/ldap_setup.py:59 +msgid "LDAP URI (read/write)" +msgstr "" + +#. This is a funny input error ("") +#: ../pykolab/setup/ldap_setup.py:69 ../pykolab/setup/ldap_setup.py:76 +msgid "Could not connect to LDAP server due to " +msgstr "" + +#: ../pykolab/setup/ldap_setup.py:73 +msgid "Your username or password are incorrect" +msgstr "" + +#: ../pykolab/tests/calendar.py:146 +#, python-format +msgid "Creating %d Events" +msgstr "" + +#: ../pykolab/tests/calendar.py:177 +#, python-format +msgid "Creating Calendar item number %d" +msgstr "" + +#: ../pykolab/tests/calendar.py:189 ../pykolab/tests/contacts.py:133 +#, python-format +msgid "Sending UID message %s through SMTP targeting user %s@%s" +msgstr "" + +#: ../pykolab/tests/calendar.py:192 ../pykolab/tests/contacts.py:136 +#, python-format +msgid "Sending UID message %s through LMTP targeting user %s@%s" +msgstr "" + +#: ../pykolab/tests/calendar.py:195 ../pykolab/tests/contacts.py:139 +#, python-format +msgid "Saving UID message %s to IMAP (user %s, folder %s)" +msgstr "" + +#: ../pykolab/tests/calendar.py:198 ../pykolab/tests/contacts.py:142 +#: ../pykolab/tests/mail.py:125 +msgid "Somehow ended up NOT sending these messages" +msgstr "" + +#: ../pykolab/tests/contacts.py:97 +#, python-format +msgid "Creating %d Contacts" +msgstr "" + +#: ../pykolab/tests/contacts.py:121 +#, python-format +msgid "Creating Contact item number %d" +msgstr "" + +#: ../pykolab/tests/__init__.py:35 +msgid "Test Options" +msgstr "" + +#: ../pykolab/tests/__init__.py:42 +#, python-format +msgid "Submit a number of items to the %s" +msgstr "" + +#: ../pykolab/tests/__init__.py:48 +msgid "Run tests in suite SUITE. Implies a certain set of items being tested." +msgstr "" + +#: ../pykolab/tests/__init__.py:51 +msgid "Content Delivery Options" +msgstr "" + +#: ../pykolab/tests/__init__.py:57 +msgid "" +"Send messages containing the items through mail (requires proper " +"infrastructure)" +msgstr "" + +#: ../pykolab/tests/__init__.py:63 +msgid "Inject messages containing the items through IMAP (requires imaplib)" +msgstr "" + +#: ../pykolab/tests/__init__.py:69 +msgid "Deliver messages containing the items through LMTP (requires imaplib)" +msgstr "" + +#: ../pykolab/tests/__init__.py:80 +#, python-format +msgid "Tests for suite %s failed to load. Aborting." +msgstr "" + +#: ../pykolab/tests/mail.py:92 +#, python-format +msgid "Creating %d Mails" +msgstr "" + +#: ../pykolab/tests/mail.py:116 +#, python-format +msgid "Sending message %s through SMTP targeting user %s@%s" +msgstr "" + +#: ../pykolab/tests/mail.py:119 +#, python-format +msgid "Sending message %s through LMTP targeting user %s@%s" +msgstr "" + +#: ../pykolab/tests/mail.py:122 +#, python-format +msgid "Saving message %s to IMAP (user %s, folder %s)" +msgstr "" + +#: ../pykolab/tests/zpush/test_000_000.py:96 +#, python-format +msgid "Deleting mailbox: %s" +msgstr "" + +#: ../pykolab/tests/zpush/test_000_000.py:105 +#, python-format +msgid "Creating mailbox: %s" +msgstr "" + +#: ../pykolab/tests/zpush/test_000_000.py:121 +#, python-format +msgid "Authentication failure for %s" +msgstr "" + +#: ../pykolab/tests/zpush/test_000_001.py:48 +#, python-format +msgid "Could not load %sItem from %s, skipping the testing." +msgstr "" + +#: ../pykolab/utils.py:71 +msgid "Please answer 'yes' or 'no'." +msgstr "" + +#: ../setup-kolab.py:52 +#, python-format +msgid "Cannot find %s_setup()." +msgstr "" + +#: ../setup-kolab.py:54 +#, python-format +msgid "Cannot load setup for %s." +msgstr "" + +#. Means we get to ask some questions. +#: ../setup-kolab.py:58 +msgid "Please select the components to set up:" +msgstr "" + +#: ../setup-kolab.py:65 +msgid "Selection" +msgstr "" diff --git a/po/is.po b/po/is.po new file mode 100644 index 0000000..ae00f78 --- /dev/null +++ b/po/is.po @@ -0,0 +1,563 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-02-21 21:23+0000\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" + +#: ../conf.py:37 ../kolabd.py:33 ../kolab.py:34 ../kolabtest.py:34 +#: ../setup-kolab.py:36 +msgid "Cannot load pykolab/logger.py:" +msgstr "" + +#: ../kolabd/__init__.py:44 ../pykolab-0.1/kolabd/__init__.py:44 +msgid "Daemon Options" +msgstr "" + +#: ../kolabd/__init__.py:50 ../pykolab-0.1/kolabd/__init__.py:50 +msgid "For to the background." +msgstr "" + +#: ../kolabd/__init__.py:78 ../pykolab-0.1/kolabd/__init__.py:78 +msgid "Interrupted by user" +msgstr "" + +#: ../kolabd/__init__.py:82 ../kolabd/__init__.py:90 +#: ../pykolab-0.1/kolabd/__init__.py:82 ../pykolab-0.1/kolabd/__init__.py:90 +msgid "Traceback occurred, please report a bug at http://issues.kolab.org" +msgstr "" + +#: ../kolabd/__init__.py:86 ../pykolab-0.1/kolabd/__init__.py:86 +#, python-format +msgid "Type Error: %s" +msgstr "" + +#: ../kolabd/__init__.py:95 ../pykolab-0.1/kolabd/__init__.py:95 +msgid "Sleeping for 10 seconds..." +msgstr "" + +#: ../pykolab/auth/ldap/__init__.py:42 +msgid "Connecting to LDAP..." +msgstr "" + +#: ../pykolab/cli/__init__.py:40 +msgid "Domain Options" +msgstr "" + +#: ../pykolab/cli/__init__.py:45 +msgid "Review LDIF before committed" +msgstr "" + +#: ../pykolab/cli/__init__.py:55 +#, python-format +msgid "TODO: self.check_%s()" +msgstr "" + +#: ../pykolab/cli/__init__.py:81 +#, python-format +msgid "Deleting domain %s" +msgstr "" + +#: ../pykolab/cli/__init__.py:93 +#, python-format +msgid "No domain %s exists." +msgstr "" + +#: ../pykolab/cli/__init__.py:99 +msgid "TODO: Figure out where the domain should actually be added." +msgstr "" + +#: ../pykolab/cli/__init__.py:103 +#, python-format +msgid "Adding domain %s" +msgstr "" + +#. The dn of our new entry/object +#: ../pykolab/cli/__init__.py:106 +msgid "TODO: Make the format for a new domain configurable." +msgstr "" + +#. A dict to help build the "body" of the object +#: ../pykolab/cli/__init__.py:110 +msgid "TODO: Make what a domain looks like configurable." +msgstr "" + +#: ../pykolab/cli/__init__.py:122 +msgid "" +"TODO: Prompt for organization name/description. For now, use domain name." +msgstr "" + +#: ../pykolab/cli/__init__.py:130 +msgid "Please ACK or NACK the above LDIF:" +msgstr "" + +#: ../pykolab/cli/__init__.py:146 +#, python-format +msgid "Domain %s already exists." +msgstr "" + +#: ../pykolab/cli/__init__.py:156 +msgid "Actions" +msgstr "" + +#: ../pykolab/conf/__init__.py:81 +#, python-format +msgid "Setting %s to %r (from defaults)" +msgstr "" + +#: ../pykolab/conf/__init__.py:92 +#, python-format +msgid "Setting %s to %r (from runtime)" +msgstr "" + +#: ../pykolab/conf/__init__.py:106 +#, python-format +msgid "Setting %s to %r (from CLI, verified)" +msgstr "" + +#: ../pykolab/conf/__init__.py:109 +#, python-format +msgid "Setting %s to %r (from CLI, not checked)" +msgstr "" + +#: ../pykolab/conf/__init__.py:154 ../pykolab/conf/__init__.py:208 +#, python-format +msgid "Setting %s_%s to '****' (from configuration file)" +msgstr "" + +#: ../pykolab/conf/__init__.py:156 ../pykolab/conf/__init__.py:210 +#, python-format +msgid "Setting %s_%s to %r (from configuration file)" +msgstr "" + +#: ../pykolab/conf/__init__.py:165 +msgid "Setting options from configuration file" +msgstr "" + +#: ../pykolab/conf/__init__.py:224 +#, python-format +msgid "Configuration file %s not readable" +msgstr "" + +#: ../pykolab/conf/__init__.py:227 +#, python-format +msgid "Reading configuration file %s" +msgstr "" + +#: ../pykolab/conf/__init__.py:231 +#, python-format +msgid "Invalid configuration file %s" +msgstr "" + +#: ../pykolab/conf/__init__.py:234 +#, python-format +msgid "No master configuration section [revisor] in configuration file %s" +msgstr "" + +#. # +#. # Runtime Options +#. # +#: ../pykolab/conf/__init__.py:253 +msgid "Runtime Options" +msgstr "" + +#: ../pykolab/conf/__init__.py:258 +msgid "Configuration file to use" +msgstr "" + +#: ../pykolab/conf/__init__.py:264 +msgid "Set the debugging verbosity. Maximum is 99" +msgstr "" + +#: ../pykolab/conf/__init__.py:270 +msgid "Log file to use" +msgstr "" + +#: ../pykolab/conf/__init__.py:276 +msgid "Be quiet." +msgstr "" + +#: ../pykolab/conf/__init__.py:282 +msgid "Answer yes to all questions." +msgstr "" + +#: ../pykolab/conf/__init__.py:310 +msgid "No command supplied" +msgstr "" + +#: ../pykolab/conf/__init__.py:392 +msgid "Insufficient options. Need section, key and value -in that order." +msgstr "" + +#: ../pykolab/conf/__init__.py:395 +#, python-format +msgid "No section '%s' exists." +msgstr "" + +#: ../pykolab/conf/__init__.py:424 +#, python-format +msgid "Setting %s to %r (from the default values for CLI options)" +msgstr "" + +#: ../pykolab/conf/__init__.py:441 +#, python-format +msgid "Option %s/%s does not exist in config file %s, pulling from defaults" +msgstr "" + +#: ../pykolab/conf/__init__.py:449 ../pykolab/conf/__init__.py:452 +msgid "Option does not exist in defaults." +msgstr "" + +#: ../pykolab/conf/__init__.py:450 ../pykolab/conf/__init__.py:453 +msgid "Not available" +msgstr "" + +#: ../pykolab/conf/__init__.py:462 +#, python-format +msgid "Configuration file %s not readable." +msgstr "" + +#: ../pykolab/conf/__init__.py:465 +#, python-format +msgid "Configuration file %s does not exist." +msgstr "" + +#: ../pykolab/conf/__init__.py:470 +msgid "" +"WARNING: A negative debug level value does not make this program be any more " +"silent." +msgstr "" + +#: ../pykolab/conf/__init__.py:476 +msgid "" +"WARNING: This program has 9 levels of verbosity. Using the maximum of 9." +msgstr "" + +#: ../pykolab/conf/__init__.py:486 +msgid "No imaplib library found." +msgstr "" + +#: ../pykolab/conf/__init__.py:496 +msgid "No LMTP class found in the smtplib library." +msgstr "" + +#: ../pykolab/conf/__init__.py:506 +msgid "No SMTP class found in the smtplib library." +msgstr "" + +#: ../pykolab/conf/__init__.py:517 +#, python-format +msgid "Found you specified a specific set of items to test: %s" +msgstr "" + +#: ../pykolab/conf/__init__.py:525 +#, python-format +msgid "Selectively selecting: %s" +msgstr "" + +#: ../pykolab/constants.py:39 +msgid "PyKolab is a Kolab Systems product. For more information " +msgstr "" + +#: ../pykolab/constants.py:53 +msgid "WARNING" +msgstr "" + +#: ../pykolab/constants.py:53 +msgid "The Fully Qualified " +msgstr "" + +#: ../pykolab/constants.py:73 +msgid "389 Directory Server or Red Hat Directory Server" +msgstr "" + +#: ../pykolab/constants.py:77 ../pykolab/constants.py:81 +msgid "OpenLDAP or compatible" +msgstr "" + +#: ../pykolab/imap/__init__.py:74 ../pykolab/imap/__init__.py:79 +#, python-format +msgid "Creating new INBOX for user: %s" +msgstr "" + +#: ../pykolab/imap/__init__.py:145 +#, python-format +msgid "Setting new quota for folder %s to %r" +msgstr "" + +#: ../pykolab/imap/__init__.py:149 +#, python-format +msgid "Quota for %s currently is %s" +msgstr "" + +#: ../pykolab/imap/__init__.py:152 +#, python-format +msgid "Correcting quota for %s to %s (currently %s)" +msgstr "" + +#: ../pykolab/imap/__init__.py:178 +#, python-format +msgid "Folder has no corresponding user (1): %s" +msgstr "" + +#: ../pykolab/imap/__init__.py:181 +#, python-format +msgid "Folder has no corresponding user (2): %s" +msgstr "" + +#: ../pykolab/logger.py:42 +#, python-format +msgid "Cannot log to file %s: %s" +msgstr "" + +#: ../pykolab/logger.py:87 ../pykolab/logger.py:96 +msgid "Do you want to continue? [Y/n]" +msgstr "" + +#: ../pykolab/logger.py:90 ../pykolab/logger.py:99 +msgid "Abort! Abort! Abort!" +msgstr "" + +#: ../pykolab/plugins.py:56 +#, python-format +msgid "ImportError for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:59 +#, python-format +msgid "RuntimeError for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:62 +#, python-format +msgid "Plugin %s failed to load (%s: %s)" +msgstr "" + +#: ../pykolab/plugins.py:89 ../pykolab/plugins.py:91 +#, python-format +msgid "Cannot set defaults for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:93 +#, python-format +msgid "Cannot set defaults for plugin %s: Unknown Error" +msgstr "" + +#: ../pykolab/plugins.py:96 +#, python-format +msgid "Not setting defaults for plugin %s: No function 'set_defaults()'" +msgstr "" + +#: ../pykolab/plugins.py:113 +#, python-format +msgid "Cannot set runtime for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:115 +#, python-format +msgid "Not setting runtime for plugin %s: No function 'set_runtime()'" +msgstr "" + +#: ../pykolab/plugins.py:132 +#, python-format +msgid "Cannot add options for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:134 +#, python-format +msgid "Not adding options for plugin %s: No function 'add_options()'" +msgstr "" + +#: ../pykolab/plugins.py:152 +#, python-format +msgid "Cannot check options for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:154 +#, python-format +msgid "Not checking options for plugin %s: No function 'check_options()'" +msgstr "" + +#: ../pykolab/plugins.py:192 ../pykolab/plugins.py:194 +#, python-format +msgid "Cannot execute hook %s for plugin %s: %s" +msgstr "" + +#: ../pykolab/setup/ldap_setup.py:29 +msgid "Cannot load Python LDAP libraries." +msgstr "" + +#: ../pykolab/setup/ldap_setup.py:53 +#, python-format +msgid "Warning: LDAP Service '%s' is available on " +msgstr "" + +#: ../pykolab/setup/ldap_setup.py:56 +#, python-format +msgid "Found system service %s." +msgstr "" + +#. ldap_uri = utils.ask_question(_("LDAP URI (read/write)"), "ldap://ldap.%s" %(constants.domainname)) +#: ../pykolab/setup/ldap_setup.py:59 +msgid "LDAP URI (read/write)" +msgstr "" + +#. This is a funny input error ("") +#: ../pykolab/setup/ldap_setup.py:69 ../pykolab/setup/ldap_setup.py:76 +msgid "Could not connect to LDAP server due to " +msgstr "" + +#: ../pykolab/setup/ldap_setup.py:73 +msgid "Your username or password are incorrect" +msgstr "" + +#: ../pykolab/tests/calendar.py:146 +#, python-format +msgid "Creating %d Events" +msgstr "" + +#: ../pykolab/tests/calendar.py:177 +#, python-format +msgid "Creating Calendar item number %d" +msgstr "" + +#: ../pykolab/tests/calendar.py:189 ../pykolab/tests/contacts.py:133 +#, python-format +msgid "Sending UID message %s through SMTP targeting user %s@%s" +msgstr "" + +#: ../pykolab/tests/calendar.py:192 ../pykolab/tests/contacts.py:136 +#, python-format +msgid "Sending UID message %s through LMTP targeting user %s@%s" +msgstr "" + +#: ../pykolab/tests/calendar.py:195 ../pykolab/tests/contacts.py:139 +#, python-format +msgid "Saving UID message %s to IMAP (user %s, folder %s)" +msgstr "" + +#: ../pykolab/tests/calendar.py:198 ../pykolab/tests/contacts.py:142 +#: ../pykolab/tests/mail.py:125 +msgid "Somehow ended up NOT sending these messages" +msgstr "" + +#: ../pykolab/tests/contacts.py:97 +#, python-format +msgid "Creating %d Contacts" +msgstr "" + +#: ../pykolab/tests/contacts.py:121 +#, python-format +msgid "Creating Contact item number %d" +msgstr "" + +#: ../pykolab/tests/__init__.py:35 +msgid "Test Options" +msgstr "" + +#: ../pykolab/tests/__init__.py:42 +#, python-format +msgid "Submit a number of items to the %s" +msgstr "" + +#: ../pykolab/tests/__init__.py:48 +msgid "Run tests in suite SUITE. Implies a certain set of items being tested." +msgstr "" + +#: ../pykolab/tests/__init__.py:51 +msgid "Content Delivery Options" +msgstr "" + +#: ../pykolab/tests/__init__.py:57 +msgid "" +"Send messages containing the items through mail (requires proper " +"infrastructure)" +msgstr "" + +#: ../pykolab/tests/__init__.py:63 +msgid "Inject messages containing the items through IMAP (requires imaplib)" +msgstr "" + +#: ../pykolab/tests/__init__.py:69 +msgid "Deliver messages containing the items through LMTP (requires imaplib)" +msgstr "" + +#: ../pykolab/tests/__init__.py:80 +#, python-format +msgid "Tests for suite %s failed to load. Aborting." +msgstr "" + +#: ../pykolab/tests/mail.py:92 +#, python-format +msgid "Creating %d Mails" +msgstr "" + +#: ../pykolab/tests/mail.py:116 +#, python-format +msgid "Sending message %s through SMTP targeting user %s@%s" +msgstr "" + +#: ../pykolab/tests/mail.py:119 +#, python-format +msgid "Sending message %s through LMTP targeting user %s@%s" +msgstr "" + +#: ../pykolab/tests/mail.py:122 +#, python-format +msgid "Saving message %s to IMAP (user %s, folder %s)" +msgstr "" + +#: ../pykolab/tests/zpush/test_000_000.py:96 +#, python-format +msgid "Deleting mailbox: %s" +msgstr "" + +#: ../pykolab/tests/zpush/test_000_000.py:105 +#, python-format +msgid "Creating mailbox: %s" +msgstr "" + +#: ../pykolab/tests/zpush/test_000_000.py:121 +#, python-format +msgid "Authentication failure for %s" +msgstr "" + +#: ../pykolab/tests/zpush/test_000_001.py:48 +#, python-format +msgid "Could not load %sItem from %s, skipping the testing." +msgstr "" + +#: ../pykolab/utils.py:71 +msgid "Please answer 'yes' or 'no'." +msgstr "" + +#: ../setup-kolab.py:52 +#, python-format +msgid "Cannot find %s_setup()." +msgstr "" + +#: ../setup-kolab.py:54 +#, python-format +msgid "Cannot load setup for %s." +msgstr "" + +#. Means we get to ask some questions. +#: ../setup-kolab.py:58 +msgid "Please select the components to set up:" +msgstr "" + +#: ../setup-kolab.py:65 +msgid "Selection" +msgstr "" diff --git a/po/it.po b/po/it.po new file mode 100644 index 0000000..ae00f78 --- /dev/null +++ b/po/it.po @@ -0,0 +1,563 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-02-21 21:23+0000\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" + +#: ../conf.py:37 ../kolabd.py:33 ../kolab.py:34 ../kolabtest.py:34 +#: ../setup-kolab.py:36 +msgid "Cannot load pykolab/logger.py:" +msgstr "" + +#: ../kolabd/__init__.py:44 ../pykolab-0.1/kolabd/__init__.py:44 +msgid "Daemon Options" +msgstr "" + +#: ../kolabd/__init__.py:50 ../pykolab-0.1/kolabd/__init__.py:50 +msgid "For to the background." +msgstr "" + +#: ../kolabd/__init__.py:78 ../pykolab-0.1/kolabd/__init__.py:78 +msgid "Interrupted by user" +msgstr "" + +#: ../kolabd/__init__.py:82 ../kolabd/__init__.py:90 +#: ../pykolab-0.1/kolabd/__init__.py:82 ../pykolab-0.1/kolabd/__init__.py:90 +msgid "Traceback occurred, please report a bug at http://issues.kolab.org" +msgstr "" + +#: ../kolabd/__init__.py:86 ../pykolab-0.1/kolabd/__init__.py:86 +#, python-format +msgid "Type Error: %s" +msgstr "" + +#: ../kolabd/__init__.py:95 ../pykolab-0.1/kolabd/__init__.py:95 +msgid "Sleeping for 10 seconds..." +msgstr "" + +#: ../pykolab/auth/ldap/__init__.py:42 +msgid "Connecting to LDAP..." +msgstr "" + +#: ../pykolab/cli/__init__.py:40 +msgid "Domain Options" +msgstr "" + +#: ../pykolab/cli/__init__.py:45 +msgid "Review LDIF before committed" +msgstr "" + +#: ../pykolab/cli/__init__.py:55 +#, python-format +msgid "TODO: self.check_%s()" +msgstr "" + +#: ../pykolab/cli/__init__.py:81 +#, python-format +msgid "Deleting domain %s" +msgstr "" + +#: ../pykolab/cli/__init__.py:93 +#, python-format +msgid "No domain %s exists." +msgstr "" + +#: ../pykolab/cli/__init__.py:99 +msgid "TODO: Figure out where the domain should actually be added." +msgstr "" + +#: ../pykolab/cli/__init__.py:103 +#, python-format +msgid "Adding domain %s" +msgstr "" + +#. The dn of our new entry/object +#: ../pykolab/cli/__init__.py:106 +msgid "TODO: Make the format for a new domain configurable." +msgstr "" + +#. A dict to help build the "body" of the object +#: ../pykolab/cli/__init__.py:110 +msgid "TODO: Make what a domain looks like configurable." +msgstr "" + +#: ../pykolab/cli/__init__.py:122 +msgid "" +"TODO: Prompt for organization name/description. For now, use domain name." +msgstr "" + +#: ../pykolab/cli/__init__.py:130 +msgid "Please ACK or NACK the above LDIF:" +msgstr "" + +#: ../pykolab/cli/__init__.py:146 +#, python-format +msgid "Domain %s already exists." +msgstr "" + +#: ../pykolab/cli/__init__.py:156 +msgid "Actions" +msgstr "" + +#: ../pykolab/conf/__init__.py:81 +#, python-format +msgid "Setting %s to %r (from defaults)" +msgstr "" + +#: ../pykolab/conf/__init__.py:92 +#, python-format +msgid "Setting %s to %r (from runtime)" +msgstr "" + +#: ../pykolab/conf/__init__.py:106 +#, python-format +msgid "Setting %s to %r (from CLI, verified)" +msgstr "" + +#: ../pykolab/conf/__init__.py:109 +#, python-format +msgid "Setting %s to %r (from CLI, not checked)" +msgstr "" + +#: ../pykolab/conf/__init__.py:154 ../pykolab/conf/__init__.py:208 +#, python-format +msgid "Setting %s_%s to '****' (from configuration file)" +msgstr "" + +#: ../pykolab/conf/__init__.py:156 ../pykolab/conf/__init__.py:210 +#, python-format +msgid "Setting %s_%s to %r (from configuration file)" +msgstr "" + +#: ../pykolab/conf/__init__.py:165 +msgid "Setting options from configuration file" +msgstr "" + +#: ../pykolab/conf/__init__.py:224 +#, python-format +msgid "Configuration file %s not readable" +msgstr "" + +#: ../pykolab/conf/__init__.py:227 +#, python-format +msgid "Reading configuration file %s" +msgstr "" + +#: ../pykolab/conf/__init__.py:231 +#, python-format +msgid "Invalid configuration file %s" +msgstr "" + +#: ../pykolab/conf/__init__.py:234 +#, python-format +msgid "No master configuration section [revisor] in configuration file %s" +msgstr "" + +#. # +#. # Runtime Options +#. # +#: ../pykolab/conf/__init__.py:253 +msgid "Runtime Options" +msgstr "" + +#: ../pykolab/conf/__init__.py:258 +msgid "Configuration file to use" +msgstr "" + +#: ../pykolab/conf/__init__.py:264 +msgid "Set the debugging verbosity. Maximum is 99" +msgstr "" + +#: ../pykolab/conf/__init__.py:270 +msgid "Log file to use" +msgstr "" + +#: ../pykolab/conf/__init__.py:276 +msgid "Be quiet." +msgstr "" + +#: ../pykolab/conf/__init__.py:282 +msgid "Answer yes to all questions." +msgstr "" + +#: ../pykolab/conf/__init__.py:310 +msgid "No command supplied" +msgstr "" + +#: ../pykolab/conf/__init__.py:392 +msgid "Insufficient options. Need section, key and value -in that order." +msgstr "" + +#: ../pykolab/conf/__init__.py:395 +#, python-format +msgid "No section '%s' exists." +msgstr "" + +#: ../pykolab/conf/__init__.py:424 +#, python-format +msgid "Setting %s to %r (from the default values for CLI options)" +msgstr "" + +#: ../pykolab/conf/__init__.py:441 +#, python-format +msgid "Option %s/%s does not exist in config file %s, pulling from defaults" +msgstr "" + +#: ../pykolab/conf/__init__.py:449 ../pykolab/conf/__init__.py:452 +msgid "Option does not exist in defaults." +msgstr "" + +#: ../pykolab/conf/__init__.py:450 ../pykolab/conf/__init__.py:453 +msgid "Not available" +msgstr "" + +#: ../pykolab/conf/__init__.py:462 +#, python-format +msgid "Configuration file %s not readable." +msgstr "" + +#: ../pykolab/conf/__init__.py:465 +#, python-format +msgid "Configuration file %s does not exist." +msgstr "" + +#: ../pykolab/conf/__init__.py:470 +msgid "" +"WARNING: A negative debug level value does not make this program be any more " +"silent." +msgstr "" + +#: ../pykolab/conf/__init__.py:476 +msgid "" +"WARNING: This program has 9 levels of verbosity. Using the maximum of 9." +msgstr "" + +#: ../pykolab/conf/__init__.py:486 +msgid "No imaplib library found." +msgstr "" + +#: ../pykolab/conf/__init__.py:496 +msgid "No LMTP class found in the smtplib library." +msgstr "" + +#: ../pykolab/conf/__init__.py:506 +msgid "No SMTP class found in the smtplib library." +msgstr "" + +#: ../pykolab/conf/__init__.py:517 +#, python-format +msgid "Found you specified a specific set of items to test: %s" +msgstr "" + +#: ../pykolab/conf/__init__.py:525 +#, python-format +msgid "Selectively selecting: %s" +msgstr "" + +#: ../pykolab/constants.py:39 +msgid "PyKolab is a Kolab Systems product. For more information " +msgstr "" + +#: ../pykolab/constants.py:53 +msgid "WARNING" +msgstr "" + +#: ../pykolab/constants.py:53 +msgid "The Fully Qualified " +msgstr "" + +#: ../pykolab/constants.py:73 +msgid "389 Directory Server or Red Hat Directory Server" +msgstr "" + +#: ../pykolab/constants.py:77 ../pykolab/constants.py:81 +msgid "OpenLDAP or compatible" +msgstr "" + +#: ../pykolab/imap/__init__.py:74 ../pykolab/imap/__init__.py:79 +#, python-format +msgid "Creating new INBOX for user: %s" +msgstr "" + +#: ../pykolab/imap/__init__.py:145 +#, python-format +msgid "Setting new quota for folder %s to %r" +msgstr "" + +#: ../pykolab/imap/__init__.py:149 +#, python-format +msgid "Quota for %s currently is %s" +msgstr "" + +#: ../pykolab/imap/__init__.py:152 +#, python-format +msgid "Correcting quota for %s to %s (currently %s)" +msgstr "" + +#: ../pykolab/imap/__init__.py:178 +#, python-format +msgid "Folder has no corresponding user (1): %s" +msgstr "" + +#: ../pykolab/imap/__init__.py:181 +#, python-format +msgid "Folder has no corresponding user (2): %s" +msgstr "" + +#: ../pykolab/logger.py:42 +#, python-format +msgid "Cannot log to file %s: %s" +msgstr "" + +#: ../pykolab/logger.py:87 ../pykolab/logger.py:96 +msgid "Do you want to continue? [Y/n]" +msgstr "" + +#: ../pykolab/logger.py:90 ../pykolab/logger.py:99 +msgid "Abort! Abort! Abort!" +msgstr "" + +#: ../pykolab/plugins.py:56 +#, python-format +msgid "ImportError for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:59 +#, python-format +msgid "RuntimeError for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:62 +#, python-format +msgid "Plugin %s failed to load (%s: %s)" +msgstr "" + +#: ../pykolab/plugins.py:89 ../pykolab/plugins.py:91 +#, python-format +msgid "Cannot set defaults for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:93 +#, python-format +msgid "Cannot set defaults for plugin %s: Unknown Error" +msgstr "" + +#: ../pykolab/plugins.py:96 +#, python-format +msgid "Not setting defaults for plugin %s: No function 'set_defaults()'" +msgstr "" + +#: ../pykolab/plugins.py:113 +#, python-format +msgid "Cannot set runtime for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:115 +#, python-format +msgid "Not setting runtime for plugin %s: No function 'set_runtime()'" +msgstr "" + +#: ../pykolab/plugins.py:132 +#, python-format +msgid "Cannot add options for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:134 +#, python-format +msgid "Not adding options for plugin %s: No function 'add_options()'" +msgstr "" + +#: ../pykolab/plugins.py:152 +#, python-format +msgid "Cannot check options for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:154 +#, python-format +msgid "Not checking options for plugin %s: No function 'check_options()'" +msgstr "" + +#: ../pykolab/plugins.py:192 ../pykolab/plugins.py:194 +#, python-format +msgid "Cannot execute hook %s for plugin %s: %s" +msgstr "" + +#: ../pykolab/setup/ldap_setup.py:29 +msgid "Cannot load Python LDAP libraries." +msgstr "" + +#: ../pykolab/setup/ldap_setup.py:53 +#, python-format +msgid "Warning: LDAP Service '%s' is available on " +msgstr "" + +#: ../pykolab/setup/ldap_setup.py:56 +#, python-format +msgid "Found system service %s." +msgstr "" + +#. ldap_uri = utils.ask_question(_("LDAP URI (read/write)"), "ldap://ldap.%s" %(constants.domainname)) +#: ../pykolab/setup/ldap_setup.py:59 +msgid "LDAP URI (read/write)" +msgstr "" + +#. This is a funny input error ("") +#: ../pykolab/setup/ldap_setup.py:69 ../pykolab/setup/ldap_setup.py:76 +msgid "Could not connect to LDAP server due to " +msgstr "" + +#: ../pykolab/setup/ldap_setup.py:73 +msgid "Your username or password are incorrect" +msgstr "" + +#: ../pykolab/tests/calendar.py:146 +#, python-format +msgid "Creating %d Events" +msgstr "" + +#: ../pykolab/tests/calendar.py:177 +#, python-format +msgid "Creating Calendar item number %d" +msgstr "" + +#: ../pykolab/tests/calendar.py:189 ../pykolab/tests/contacts.py:133 +#, python-format +msgid "Sending UID message %s through SMTP targeting user %s@%s" +msgstr "" + +#: ../pykolab/tests/calendar.py:192 ../pykolab/tests/contacts.py:136 +#, python-format +msgid "Sending UID message %s through LMTP targeting user %s@%s" +msgstr "" + +#: ../pykolab/tests/calendar.py:195 ../pykolab/tests/contacts.py:139 +#, python-format +msgid "Saving UID message %s to IMAP (user %s, folder %s)" +msgstr "" + +#: ../pykolab/tests/calendar.py:198 ../pykolab/tests/contacts.py:142 +#: ../pykolab/tests/mail.py:125 +msgid "Somehow ended up NOT sending these messages" +msgstr "" + +#: ../pykolab/tests/contacts.py:97 +#, python-format +msgid "Creating %d Contacts" +msgstr "" + +#: ../pykolab/tests/contacts.py:121 +#, python-format +msgid "Creating Contact item number %d" +msgstr "" + +#: ../pykolab/tests/__init__.py:35 +msgid "Test Options" +msgstr "" + +#: ../pykolab/tests/__init__.py:42 +#, python-format +msgid "Submit a number of items to the %s" +msgstr "" + +#: ../pykolab/tests/__init__.py:48 +msgid "Run tests in suite SUITE. Implies a certain set of items being tested." +msgstr "" + +#: ../pykolab/tests/__init__.py:51 +msgid "Content Delivery Options" +msgstr "" + +#: ../pykolab/tests/__init__.py:57 +msgid "" +"Send messages containing the items through mail (requires proper " +"infrastructure)" +msgstr "" + +#: ../pykolab/tests/__init__.py:63 +msgid "Inject messages containing the items through IMAP (requires imaplib)" +msgstr "" + +#: ../pykolab/tests/__init__.py:69 +msgid "Deliver messages containing the items through LMTP (requires imaplib)" +msgstr "" + +#: ../pykolab/tests/__init__.py:80 +#, python-format +msgid "Tests for suite %s failed to load. Aborting." +msgstr "" + +#: ../pykolab/tests/mail.py:92 +#, python-format +msgid "Creating %d Mails" +msgstr "" + +#: ../pykolab/tests/mail.py:116 +#, python-format +msgid "Sending message %s through SMTP targeting user %s@%s" +msgstr "" + +#: ../pykolab/tests/mail.py:119 +#, python-format +msgid "Sending message %s through LMTP targeting user %s@%s" +msgstr "" + +#: ../pykolab/tests/mail.py:122 +#, python-format +msgid "Saving message %s to IMAP (user %s, folder %s)" +msgstr "" + +#: ../pykolab/tests/zpush/test_000_000.py:96 +#, python-format +msgid "Deleting mailbox: %s" +msgstr "" + +#: ../pykolab/tests/zpush/test_000_000.py:105 +#, python-format +msgid "Creating mailbox: %s" +msgstr "" + +#: ../pykolab/tests/zpush/test_000_000.py:121 +#, python-format +msgid "Authentication failure for %s" +msgstr "" + +#: ../pykolab/tests/zpush/test_000_001.py:48 +#, python-format +msgid "Could not load %sItem from %s, skipping the testing." +msgstr "" + +#: ../pykolab/utils.py:71 +msgid "Please answer 'yes' or 'no'." +msgstr "" + +#: ../setup-kolab.py:52 +#, python-format +msgid "Cannot find %s_setup()." +msgstr "" + +#: ../setup-kolab.py:54 +#, python-format +msgid "Cannot load setup for %s." +msgstr "" + +#. Means we get to ask some questions. +#: ../setup-kolab.py:58 +msgid "Please select the components to set up:" +msgstr "" + +#: ../setup-kolab.py:65 +msgid "Selection" +msgstr "" diff --git a/po/ja.po b/po/ja.po new file mode 100644 index 0000000..ae00f78 --- /dev/null +++ b/po/ja.po @@ -0,0 +1,563 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-02-21 21:23+0000\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" + +#: ../conf.py:37 ../kolabd.py:33 ../kolab.py:34 ../kolabtest.py:34 +#: ../setup-kolab.py:36 +msgid "Cannot load pykolab/logger.py:" +msgstr "" + +#: ../kolabd/__init__.py:44 ../pykolab-0.1/kolabd/__init__.py:44 +msgid "Daemon Options" +msgstr "" + +#: ../kolabd/__init__.py:50 ../pykolab-0.1/kolabd/__init__.py:50 +msgid "For to the background." +msgstr "" + +#: ../kolabd/__init__.py:78 ../pykolab-0.1/kolabd/__init__.py:78 +msgid "Interrupted by user" +msgstr "" + +#: ../kolabd/__init__.py:82 ../kolabd/__init__.py:90 +#: ../pykolab-0.1/kolabd/__init__.py:82 ../pykolab-0.1/kolabd/__init__.py:90 +msgid "Traceback occurred, please report a bug at http://issues.kolab.org" +msgstr "" + +#: ../kolabd/__init__.py:86 ../pykolab-0.1/kolabd/__init__.py:86 +#, python-format +msgid "Type Error: %s" +msgstr "" + +#: ../kolabd/__init__.py:95 ../pykolab-0.1/kolabd/__init__.py:95 +msgid "Sleeping for 10 seconds..." +msgstr "" + +#: ../pykolab/auth/ldap/__init__.py:42 +msgid "Connecting to LDAP..." +msgstr "" + +#: ../pykolab/cli/__init__.py:40 +msgid "Domain Options" +msgstr "" + +#: ../pykolab/cli/__init__.py:45 +msgid "Review LDIF before committed" +msgstr "" + +#: ../pykolab/cli/__init__.py:55 +#, python-format +msgid "TODO: self.check_%s()" +msgstr "" + +#: ../pykolab/cli/__init__.py:81 +#, python-format +msgid "Deleting domain %s" +msgstr "" + +#: ../pykolab/cli/__init__.py:93 +#, python-format +msgid "No domain %s exists." +msgstr "" + +#: ../pykolab/cli/__init__.py:99 +msgid "TODO: Figure out where the domain should actually be added." +msgstr "" + +#: ../pykolab/cli/__init__.py:103 +#, python-format +msgid "Adding domain %s" +msgstr "" + +#. The dn of our new entry/object +#: ../pykolab/cli/__init__.py:106 +msgid "TODO: Make the format for a new domain configurable." +msgstr "" + +#. A dict to help build the "body" of the object +#: ../pykolab/cli/__init__.py:110 +msgid "TODO: Make what a domain looks like configurable." +msgstr "" + +#: ../pykolab/cli/__init__.py:122 +msgid "" +"TODO: Prompt for organization name/description. For now, use domain name." +msgstr "" + +#: ../pykolab/cli/__init__.py:130 +msgid "Please ACK or NACK the above LDIF:" +msgstr "" + +#: ../pykolab/cli/__init__.py:146 +#, python-format +msgid "Domain %s already exists." +msgstr "" + +#: ../pykolab/cli/__init__.py:156 +msgid "Actions" +msgstr "" + +#: ../pykolab/conf/__init__.py:81 +#, python-format +msgid "Setting %s to %r (from defaults)" +msgstr "" + +#: ../pykolab/conf/__init__.py:92 +#, python-format +msgid "Setting %s to %r (from runtime)" +msgstr "" + +#: ../pykolab/conf/__init__.py:106 +#, python-format +msgid "Setting %s to %r (from CLI, verified)" +msgstr "" + +#: ../pykolab/conf/__init__.py:109 +#, python-format +msgid "Setting %s to %r (from CLI, not checked)" +msgstr "" + +#: ../pykolab/conf/__init__.py:154 ../pykolab/conf/__init__.py:208 +#, python-format +msgid "Setting %s_%s to '****' (from configuration file)" +msgstr "" + +#: ../pykolab/conf/__init__.py:156 ../pykolab/conf/__init__.py:210 +#, python-format +msgid "Setting %s_%s to %r (from configuration file)" +msgstr "" + +#: ../pykolab/conf/__init__.py:165 +msgid "Setting options from configuration file" +msgstr "" + +#: ../pykolab/conf/__init__.py:224 +#, python-format +msgid "Configuration file %s not readable" +msgstr "" + +#: ../pykolab/conf/__init__.py:227 +#, python-format +msgid "Reading configuration file %s" +msgstr "" + +#: ../pykolab/conf/__init__.py:231 +#, python-format +msgid "Invalid configuration file %s" +msgstr "" + +#: ../pykolab/conf/__init__.py:234 +#, python-format +msgid "No master configuration section [revisor] in configuration file %s" +msgstr "" + +#. # +#. # Runtime Options +#. # +#: ../pykolab/conf/__init__.py:253 +msgid "Runtime Options" +msgstr "" + +#: ../pykolab/conf/__init__.py:258 +msgid "Configuration file to use" +msgstr "" + +#: ../pykolab/conf/__init__.py:264 +msgid "Set the debugging verbosity. Maximum is 99" +msgstr "" + +#: ../pykolab/conf/__init__.py:270 +msgid "Log file to use" +msgstr "" + +#: ../pykolab/conf/__init__.py:276 +msgid "Be quiet." +msgstr "" + +#: ../pykolab/conf/__init__.py:282 +msgid "Answer yes to all questions." +msgstr "" + +#: ../pykolab/conf/__init__.py:310 +msgid "No command supplied" +msgstr "" + +#: ../pykolab/conf/__init__.py:392 +msgid "Insufficient options. Need section, key and value -in that order." +msgstr "" + +#: ../pykolab/conf/__init__.py:395 +#, python-format +msgid "No section '%s' exists." +msgstr "" + +#: ../pykolab/conf/__init__.py:424 +#, python-format +msgid "Setting %s to %r (from the default values for CLI options)" +msgstr "" + +#: ../pykolab/conf/__init__.py:441 +#, python-format +msgid "Option %s/%s does not exist in config file %s, pulling from defaults" +msgstr "" + +#: ../pykolab/conf/__init__.py:449 ../pykolab/conf/__init__.py:452 +msgid "Option does not exist in defaults." +msgstr "" + +#: ../pykolab/conf/__init__.py:450 ../pykolab/conf/__init__.py:453 +msgid "Not available" +msgstr "" + +#: ../pykolab/conf/__init__.py:462 +#, python-format +msgid "Configuration file %s not readable." +msgstr "" + +#: ../pykolab/conf/__init__.py:465 +#, python-format +msgid "Configuration file %s does not exist." +msgstr "" + +#: ../pykolab/conf/__init__.py:470 +msgid "" +"WARNING: A negative debug level value does not make this program be any more " +"silent." +msgstr "" + +#: ../pykolab/conf/__init__.py:476 +msgid "" +"WARNING: This program has 9 levels of verbosity. Using the maximum of 9." +msgstr "" + +#: ../pykolab/conf/__init__.py:486 +msgid "No imaplib library found." +msgstr "" + +#: ../pykolab/conf/__init__.py:496 +msgid "No LMTP class found in the smtplib library." +msgstr "" + +#: ../pykolab/conf/__init__.py:506 +msgid "No SMTP class found in the smtplib library." +msgstr "" + +#: ../pykolab/conf/__init__.py:517 +#, python-format +msgid "Found you specified a specific set of items to test: %s" +msgstr "" + +#: ../pykolab/conf/__init__.py:525 +#, python-format +msgid "Selectively selecting: %s" +msgstr "" + +#: ../pykolab/constants.py:39 +msgid "PyKolab is a Kolab Systems product. For more information " +msgstr "" + +#: ../pykolab/constants.py:53 +msgid "WARNING" +msgstr "" + +#: ../pykolab/constants.py:53 +msgid "The Fully Qualified " +msgstr "" + +#: ../pykolab/constants.py:73 +msgid "389 Directory Server or Red Hat Directory Server" +msgstr "" + +#: ../pykolab/constants.py:77 ../pykolab/constants.py:81 +msgid "OpenLDAP or compatible" +msgstr "" + +#: ../pykolab/imap/__init__.py:74 ../pykolab/imap/__init__.py:79 +#, python-format +msgid "Creating new INBOX for user: %s" +msgstr "" + +#: ../pykolab/imap/__init__.py:145 +#, python-format +msgid "Setting new quota for folder %s to %r" +msgstr "" + +#: ../pykolab/imap/__init__.py:149 +#, python-format +msgid "Quota for %s currently is %s" +msgstr "" + +#: ../pykolab/imap/__init__.py:152 +#, python-format +msgid "Correcting quota for %s to %s (currently %s)" +msgstr "" + +#: ../pykolab/imap/__init__.py:178 +#, python-format +msgid "Folder has no corresponding user (1): %s" +msgstr "" + +#: ../pykolab/imap/__init__.py:181 +#, python-format +msgid "Folder has no corresponding user (2): %s" +msgstr "" + +#: ../pykolab/logger.py:42 +#, python-format +msgid "Cannot log to file %s: %s" +msgstr "" + +#: ../pykolab/logger.py:87 ../pykolab/logger.py:96 +msgid "Do you want to continue? [Y/n]" +msgstr "" + +#: ../pykolab/logger.py:90 ../pykolab/logger.py:99 +msgid "Abort! Abort! Abort!" +msgstr "" + +#: ../pykolab/plugins.py:56 +#, python-format +msgid "ImportError for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:59 +#, python-format +msgid "RuntimeError for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:62 +#, python-format +msgid "Plugin %s failed to load (%s: %s)" +msgstr "" + +#: ../pykolab/plugins.py:89 ../pykolab/plugins.py:91 +#, python-format +msgid "Cannot set defaults for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:93 +#, python-format +msgid "Cannot set defaults for plugin %s: Unknown Error" +msgstr "" + +#: ../pykolab/plugins.py:96 +#, python-format +msgid "Not setting defaults for plugin %s: No function 'set_defaults()'" +msgstr "" + +#: ../pykolab/plugins.py:113 +#, python-format +msgid "Cannot set runtime for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:115 +#, python-format +msgid "Not setting runtime for plugin %s: No function 'set_runtime()'" +msgstr "" + +#: ../pykolab/plugins.py:132 +#, python-format +msgid "Cannot add options for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:134 +#, python-format +msgid "Not adding options for plugin %s: No function 'add_options()'" +msgstr "" + +#: ../pykolab/plugins.py:152 +#, python-format +msgid "Cannot check options for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:154 +#, python-format +msgid "Not checking options for plugin %s: No function 'check_options()'" +msgstr "" + +#: ../pykolab/plugins.py:192 ../pykolab/plugins.py:194 +#, python-format +msgid "Cannot execute hook %s for plugin %s: %s" +msgstr "" + +#: ../pykolab/setup/ldap_setup.py:29 +msgid "Cannot load Python LDAP libraries." +msgstr "" + +#: ../pykolab/setup/ldap_setup.py:53 +#, python-format +msgid "Warning: LDAP Service '%s' is available on " +msgstr "" + +#: ../pykolab/setup/ldap_setup.py:56 +#, python-format +msgid "Found system service %s." +msgstr "" + +#. ldap_uri = utils.ask_question(_("LDAP URI (read/write)"), "ldap://ldap.%s" %(constants.domainname)) +#: ../pykolab/setup/ldap_setup.py:59 +msgid "LDAP URI (read/write)" +msgstr "" + +#. This is a funny input error ("") +#: ../pykolab/setup/ldap_setup.py:69 ../pykolab/setup/ldap_setup.py:76 +msgid "Could not connect to LDAP server due to " +msgstr "" + +#: ../pykolab/setup/ldap_setup.py:73 +msgid "Your username or password are incorrect" +msgstr "" + +#: ../pykolab/tests/calendar.py:146 +#, python-format +msgid "Creating %d Events" +msgstr "" + +#: ../pykolab/tests/calendar.py:177 +#, python-format +msgid "Creating Calendar item number %d" +msgstr "" + +#: ../pykolab/tests/calendar.py:189 ../pykolab/tests/contacts.py:133 +#, python-format +msgid "Sending UID message %s through SMTP targeting user %s@%s" +msgstr "" + +#: ../pykolab/tests/calendar.py:192 ../pykolab/tests/contacts.py:136 +#, python-format +msgid "Sending UID message %s through LMTP targeting user %s@%s" +msgstr "" + +#: ../pykolab/tests/calendar.py:195 ../pykolab/tests/contacts.py:139 +#, python-format +msgid "Saving UID message %s to IMAP (user %s, folder %s)" +msgstr "" + +#: ../pykolab/tests/calendar.py:198 ../pykolab/tests/contacts.py:142 +#: ../pykolab/tests/mail.py:125 +msgid "Somehow ended up NOT sending these messages" +msgstr "" + +#: ../pykolab/tests/contacts.py:97 +#, python-format +msgid "Creating %d Contacts" +msgstr "" + +#: ../pykolab/tests/contacts.py:121 +#, python-format +msgid "Creating Contact item number %d" +msgstr "" + +#: ../pykolab/tests/__init__.py:35 +msgid "Test Options" +msgstr "" + +#: ../pykolab/tests/__init__.py:42 +#, python-format +msgid "Submit a number of items to the %s" +msgstr "" + +#: ../pykolab/tests/__init__.py:48 +msgid "Run tests in suite SUITE. Implies a certain set of items being tested." +msgstr "" + +#: ../pykolab/tests/__init__.py:51 +msgid "Content Delivery Options" +msgstr "" + +#: ../pykolab/tests/__init__.py:57 +msgid "" +"Send messages containing the items through mail (requires proper " +"infrastructure)" +msgstr "" + +#: ../pykolab/tests/__init__.py:63 +msgid "Inject messages containing the items through IMAP (requires imaplib)" +msgstr "" + +#: ../pykolab/tests/__init__.py:69 +msgid "Deliver messages containing the items through LMTP (requires imaplib)" +msgstr "" + +#: ../pykolab/tests/__init__.py:80 +#, python-format +msgid "Tests for suite %s failed to load. Aborting." +msgstr "" + +#: ../pykolab/tests/mail.py:92 +#, python-format +msgid "Creating %d Mails" +msgstr "" + +#: ../pykolab/tests/mail.py:116 +#, python-format +msgid "Sending message %s through SMTP targeting user %s@%s" +msgstr "" + +#: ../pykolab/tests/mail.py:119 +#, python-format +msgid "Sending message %s through LMTP targeting user %s@%s" +msgstr "" + +#: ../pykolab/tests/mail.py:122 +#, python-format +msgid "Saving message %s to IMAP (user %s, folder %s)" +msgstr "" + +#: ../pykolab/tests/zpush/test_000_000.py:96 +#, python-format +msgid "Deleting mailbox: %s" +msgstr "" + +#: ../pykolab/tests/zpush/test_000_000.py:105 +#, python-format +msgid "Creating mailbox: %s" +msgstr "" + +#: ../pykolab/tests/zpush/test_000_000.py:121 +#, python-format +msgid "Authentication failure for %s" +msgstr "" + +#: ../pykolab/tests/zpush/test_000_001.py:48 +#, python-format +msgid "Could not load %sItem from %s, skipping the testing." +msgstr "" + +#: ../pykolab/utils.py:71 +msgid "Please answer 'yes' or 'no'." +msgstr "" + +#: ../setup-kolab.py:52 +#, python-format +msgid "Cannot find %s_setup()." +msgstr "" + +#: ../setup-kolab.py:54 +#, python-format +msgid "Cannot load setup for %s." +msgstr "" + +#. Means we get to ask some questions. +#: ../setup-kolab.py:58 +msgid "Please select the components to set up:" +msgstr "" + +#: ../setup-kolab.py:65 +msgid "Selection" +msgstr "" diff --git a/po/ko.po b/po/ko.po new file mode 100644 index 0000000..ae00f78 --- /dev/null +++ b/po/ko.po @@ -0,0 +1,563 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-02-21 21:23+0000\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" + +#: ../conf.py:37 ../kolabd.py:33 ../kolab.py:34 ../kolabtest.py:34 +#: ../setup-kolab.py:36 +msgid "Cannot load pykolab/logger.py:" +msgstr "" + +#: ../kolabd/__init__.py:44 ../pykolab-0.1/kolabd/__init__.py:44 +msgid "Daemon Options" +msgstr "" + +#: ../kolabd/__init__.py:50 ../pykolab-0.1/kolabd/__init__.py:50 +msgid "For to the background." +msgstr "" + +#: ../kolabd/__init__.py:78 ../pykolab-0.1/kolabd/__init__.py:78 +msgid "Interrupted by user" +msgstr "" + +#: ../kolabd/__init__.py:82 ../kolabd/__init__.py:90 +#: ../pykolab-0.1/kolabd/__init__.py:82 ../pykolab-0.1/kolabd/__init__.py:90 +msgid "Traceback occurred, please report a bug at http://issues.kolab.org" +msgstr "" + +#: ../kolabd/__init__.py:86 ../pykolab-0.1/kolabd/__init__.py:86 +#, python-format +msgid "Type Error: %s" +msgstr "" + +#: ../kolabd/__init__.py:95 ../pykolab-0.1/kolabd/__init__.py:95 +msgid "Sleeping for 10 seconds..." +msgstr "" + +#: ../pykolab/auth/ldap/__init__.py:42 +msgid "Connecting to LDAP..." +msgstr "" + +#: ../pykolab/cli/__init__.py:40 +msgid "Domain Options" +msgstr "" + +#: ../pykolab/cli/__init__.py:45 +msgid "Review LDIF before committed" +msgstr "" + +#: ../pykolab/cli/__init__.py:55 +#, python-format +msgid "TODO: self.check_%s()" +msgstr "" + +#: ../pykolab/cli/__init__.py:81 +#, python-format +msgid "Deleting domain %s" +msgstr "" + +#: ../pykolab/cli/__init__.py:93 +#, python-format +msgid "No domain %s exists." +msgstr "" + +#: ../pykolab/cli/__init__.py:99 +msgid "TODO: Figure out where the domain should actually be added." +msgstr "" + +#: ../pykolab/cli/__init__.py:103 +#, python-format +msgid "Adding domain %s" +msgstr "" + +#. The dn of our new entry/object +#: ../pykolab/cli/__init__.py:106 +msgid "TODO: Make the format for a new domain configurable." +msgstr "" + +#. A dict to help build the "body" of the object +#: ../pykolab/cli/__init__.py:110 +msgid "TODO: Make what a domain looks like configurable." +msgstr "" + +#: ../pykolab/cli/__init__.py:122 +msgid "" +"TODO: Prompt for organization name/description. For now, use domain name." +msgstr "" + +#: ../pykolab/cli/__init__.py:130 +msgid "Please ACK or NACK the above LDIF:" +msgstr "" + +#: ../pykolab/cli/__init__.py:146 +#, python-format +msgid "Domain %s already exists." +msgstr "" + +#: ../pykolab/cli/__init__.py:156 +msgid "Actions" +msgstr "" + +#: ../pykolab/conf/__init__.py:81 +#, python-format +msgid "Setting %s to %r (from defaults)" +msgstr "" + +#: ../pykolab/conf/__init__.py:92 +#, python-format +msgid "Setting %s to %r (from runtime)" +msgstr "" + +#: ../pykolab/conf/__init__.py:106 +#, python-format +msgid "Setting %s to %r (from CLI, verified)" +msgstr "" + +#: ../pykolab/conf/__init__.py:109 +#, python-format +msgid "Setting %s to %r (from CLI, not checked)" +msgstr "" + +#: ../pykolab/conf/__init__.py:154 ../pykolab/conf/__init__.py:208 +#, python-format +msgid "Setting %s_%s to '****' (from configuration file)" +msgstr "" + +#: ../pykolab/conf/__init__.py:156 ../pykolab/conf/__init__.py:210 +#, python-format +msgid "Setting %s_%s to %r (from configuration file)" +msgstr "" + +#: ../pykolab/conf/__init__.py:165 +msgid "Setting options from configuration file" +msgstr "" + +#: ../pykolab/conf/__init__.py:224 +#, python-format +msgid "Configuration file %s not readable" +msgstr "" + +#: ../pykolab/conf/__init__.py:227 +#, python-format +msgid "Reading configuration file %s" +msgstr "" + +#: ../pykolab/conf/__init__.py:231 +#, python-format +msgid "Invalid configuration file %s" +msgstr "" + +#: ../pykolab/conf/__init__.py:234 +#, python-format +msgid "No master configuration section [revisor] in configuration file %s" +msgstr "" + +#. # +#. # Runtime Options +#. # +#: ../pykolab/conf/__init__.py:253 +msgid "Runtime Options" +msgstr "" + +#: ../pykolab/conf/__init__.py:258 +msgid "Configuration file to use" +msgstr "" + +#: ../pykolab/conf/__init__.py:264 +msgid "Set the debugging verbosity. Maximum is 99" +msgstr "" + +#: ../pykolab/conf/__init__.py:270 +msgid "Log file to use" +msgstr "" + +#: ../pykolab/conf/__init__.py:276 +msgid "Be quiet." +msgstr "" + +#: ../pykolab/conf/__init__.py:282 +msgid "Answer yes to all questions." +msgstr "" + +#: ../pykolab/conf/__init__.py:310 +msgid "No command supplied" +msgstr "" + +#: ../pykolab/conf/__init__.py:392 +msgid "Insufficient options. Need section, key and value -in that order." +msgstr "" + +#: ../pykolab/conf/__init__.py:395 +#, python-format +msgid "No section '%s' exists." +msgstr "" + +#: ../pykolab/conf/__init__.py:424 +#, python-format +msgid "Setting %s to %r (from the default values for CLI options)" +msgstr "" + +#: ../pykolab/conf/__init__.py:441 +#, python-format +msgid "Option %s/%s does not exist in config file %s, pulling from defaults" +msgstr "" + +#: ../pykolab/conf/__init__.py:449 ../pykolab/conf/__init__.py:452 +msgid "Option does not exist in defaults." +msgstr "" + +#: ../pykolab/conf/__init__.py:450 ../pykolab/conf/__init__.py:453 +msgid "Not available" +msgstr "" + +#: ../pykolab/conf/__init__.py:462 +#, python-format +msgid "Configuration file %s not readable." +msgstr "" + +#: ../pykolab/conf/__init__.py:465 +#, python-format +msgid "Configuration file %s does not exist." +msgstr "" + +#: ../pykolab/conf/__init__.py:470 +msgid "" +"WARNING: A negative debug level value does not make this program be any more " +"silent." +msgstr "" + +#: ../pykolab/conf/__init__.py:476 +msgid "" +"WARNING: This program has 9 levels of verbosity. Using the maximum of 9." +msgstr "" + +#: ../pykolab/conf/__init__.py:486 +msgid "No imaplib library found." +msgstr "" + +#: ../pykolab/conf/__init__.py:496 +msgid "No LMTP class found in the smtplib library." +msgstr "" + +#: ../pykolab/conf/__init__.py:506 +msgid "No SMTP class found in the smtplib library." +msgstr "" + +#: ../pykolab/conf/__init__.py:517 +#, python-format +msgid "Found you specified a specific set of items to test: %s" +msgstr "" + +#: ../pykolab/conf/__init__.py:525 +#, python-format +msgid "Selectively selecting: %s" +msgstr "" + +#: ../pykolab/constants.py:39 +msgid "PyKolab is a Kolab Systems product. For more information " +msgstr "" + +#: ../pykolab/constants.py:53 +msgid "WARNING" +msgstr "" + +#: ../pykolab/constants.py:53 +msgid "The Fully Qualified " +msgstr "" + +#: ../pykolab/constants.py:73 +msgid "389 Directory Server or Red Hat Directory Server" +msgstr "" + +#: ../pykolab/constants.py:77 ../pykolab/constants.py:81 +msgid "OpenLDAP or compatible" +msgstr "" + +#: ../pykolab/imap/__init__.py:74 ../pykolab/imap/__init__.py:79 +#, python-format +msgid "Creating new INBOX for user: %s" +msgstr "" + +#: ../pykolab/imap/__init__.py:145 +#, python-format +msgid "Setting new quota for folder %s to %r" +msgstr "" + +#: ../pykolab/imap/__init__.py:149 +#, python-format +msgid "Quota for %s currently is %s" +msgstr "" + +#: ../pykolab/imap/__init__.py:152 +#, python-format +msgid "Correcting quota for %s to %s (currently %s)" +msgstr "" + +#: ../pykolab/imap/__init__.py:178 +#, python-format +msgid "Folder has no corresponding user (1): %s" +msgstr "" + +#: ../pykolab/imap/__init__.py:181 +#, python-format +msgid "Folder has no corresponding user (2): %s" +msgstr "" + +#: ../pykolab/logger.py:42 +#, python-format +msgid "Cannot log to file %s: %s" +msgstr "" + +#: ../pykolab/logger.py:87 ../pykolab/logger.py:96 +msgid "Do you want to continue? [Y/n]" +msgstr "" + +#: ../pykolab/logger.py:90 ../pykolab/logger.py:99 +msgid "Abort! Abort! Abort!" +msgstr "" + +#: ../pykolab/plugins.py:56 +#, python-format +msgid "ImportError for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:59 +#, python-format +msgid "RuntimeError for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:62 +#, python-format +msgid "Plugin %s failed to load (%s: %s)" +msgstr "" + +#: ../pykolab/plugins.py:89 ../pykolab/plugins.py:91 +#, python-format +msgid "Cannot set defaults for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:93 +#, python-format +msgid "Cannot set defaults for plugin %s: Unknown Error" +msgstr "" + +#: ../pykolab/plugins.py:96 +#, python-format +msgid "Not setting defaults for plugin %s: No function 'set_defaults()'" +msgstr "" + +#: ../pykolab/plugins.py:113 +#, python-format +msgid "Cannot set runtime for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:115 +#, python-format +msgid "Not setting runtime for plugin %s: No function 'set_runtime()'" +msgstr "" + +#: ../pykolab/plugins.py:132 +#, python-format +msgid "Cannot add options for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:134 +#, python-format +msgid "Not adding options for plugin %s: No function 'add_options()'" +msgstr "" + +#: ../pykolab/plugins.py:152 +#, python-format +msgid "Cannot check options for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:154 +#, python-format +msgid "Not checking options for plugin %s: No function 'check_options()'" +msgstr "" + +#: ../pykolab/plugins.py:192 ../pykolab/plugins.py:194 +#, python-format +msgid "Cannot execute hook %s for plugin %s: %s" +msgstr "" + +#: ../pykolab/setup/ldap_setup.py:29 +msgid "Cannot load Python LDAP libraries." +msgstr "" + +#: ../pykolab/setup/ldap_setup.py:53 +#, python-format +msgid "Warning: LDAP Service '%s' is available on " +msgstr "" + +#: ../pykolab/setup/ldap_setup.py:56 +#, python-format +msgid "Found system service %s." +msgstr "" + +#. ldap_uri = utils.ask_question(_("LDAP URI (read/write)"), "ldap://ldap.%s" %(constants.domainname)) +#: ../pykolab/setup/ldap_setup.py:59 +msgid "LDAP URI (read/write)" +msgstr "" + +#. This is a funny input error ("") +#: ../pykolab/setup/ldap_setup.py:69 ../pykolab/setup/ldap_setup.py:76 +msgid "Could not connect to LDAP server due to " +msgstr "" + +#: ../pykolab/setup/ldap_setup.py:73 +msgid "Your username or password are incorrect" +msgstr "" + +#: ../pykolab/tests/calendar.py:146 +#, python-format +msgid "Creating %d Events" +msgstr "" + +#: ../pykolab/tests/calendar.py:177 +#, python-format +msgid "Creating Calendar item number %d" +msgstr "" + +#: ../pykolab/tests/calendar.py:189 ../pykolab/tests/contacts.py:133 +#, python-format +msgid "Sending UID message %s through SMTP targeting user %s@%s" +msgstr "" + +#: ../pykolab/tests/calendar.py:192 ../pykolab/tests/contacts.py:136 +#, python-format +msgid "Sending UID message %s through LMTP targeting user %s@%s" +msgstr "" + +#: ../pykolab/tests/calendar.py:195 ../pykolab/tests/contacts.py:139 +#, python-format +msgid "Saving UID message %s to IMAP (user %s, folder %s)" +msgstr "" + +#: ../pykolab/tests/calendar.py:198 ../pykolab/tests/contacts.py:142 +#: ../pykolab/tests/mail.py:125 +msgid "Somehow ended up NOT sending these messages" +msgstr "" + +#: ../pykolab/tests/contacts.py:97 +#, python-format +msgid "Creating %d Contacts" +msgstr "" + +#: ../pykolab/tests/contacts.py:121 +#, python-format +msgid "Creating Contact item number %d" +msgstr "" + +#: ../pykolab/tests/__init__.py:35 +msgid "Test Options" +msgstr "" + +#: ../pykolab/tests/__init__.py:42 +#, python-format +msgid "Submit a number of items to the %s" +msgstr "" + +#: ../pykolab/tests/__init__.py:48 +msgid "Run tests in suite SUITE. Implies a certain set of items being tested." +msgstr "" + +#: ../pykolab/tests/__init__.py:51 +msgid "Content Delivery Options" +msgstr "" + +#: ../pykolab/tests/__init__.py:57 +msgid "" +"Send messages containing the items through mail (requires proper " +"infrastructure)" +msgstr "" + +#: ../pykolab/tests/__init__.py:63 +msgid "Inject messages containing the items through IMAP (requires imaplib)" +msgstr "" + +#: ../pykolab/tests/__init__.py:69 +msgid "Deliver messages containing the items through LMTP (requires imaplib)" +msgstr "" + +#: ../pykolab/tests/__init__.py:80 +#, python-format +msgid "Tests for suite %s failed to load. Aborting." +msgstr "" + +#: ../pykolab/tests/mail.py:92 +#, python-format +msgid "Creating %d Mails" +msgstr "" + +#: ../pykolab/tests/mail.py:116 +#, python-format +msgid "Sending message %s through SMTP targeting user %s@%s" +msgstr "" + +#: ../pykolab/tests/mail.py:119 +#, python-format +msgid "Sending message %s through LMTP targeting user %s@%s" +msgstr "" + +#: ../pykolab/tests/mail.py:122 +#, python-format +msgid "Saving message %s to IMAP (user %s, folder %s)" +msgstr "" + +#: ../pykolab/tests/zpush/test_000_000.py:96 +#, python-format +msgid "Deleting mailbox: %s" +msgstr "" + +#: ../pykolab/tests/zpush/test_000_000.py:105 +#, python-format +msgid "Creating mailbox: %s" +msgstr "" + +#: ../pykolab/tests/zpush/test_000_000.py:121 +#, python-format +msgid "Authentication failure for %s" +msgstr "" + +#: ../pykolab/tests/zpush/test_000_001.py:48 +#, python-format +msgid "Could not load %sItem from %s, skipping the testing." +msgstr "" + +#: ../pykolab/utils.py:71 +msgid "Please answer 'yes' or 'no'." +msgstr "" + +#: ../setup-kolab.py:52 +#, python-format +msgid "Cannot find %s_setup()." +msgstr "" + +#: ../setup-kolab.py:54 +#, python-format +msgid "Cannot load setup for %s." +msgstr "" + +#. Means we get to ask some questions. +#: ../setup-kolab.py:58 +msgid "Please select the components to set up:" +msgstr "" + +#: ../setup-kolab.py:65 +msgid "Selection" +msgstr "" diff --git a/po/ml.po b/po/ml.po new file mode 100644 index 0000000..ae00f78 --- /dev/null +++ b/po/ml.po @@ -0,0 +1,563 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-02-21 21:23+0000\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" + +#: ../conf.py:37 ../kolabd.py:33 ../kolab.py:34 ../kolabtest.py:34 +#: ../setup-kolab.py:36 +msgid "Cannot load pykolab/logger.py:" +msgstr "" + +#: ../kolabd/__init__.py:44 ../pykolab-0.1/kolabd/__init__.py:44 +msgid "Daemon Options" +msgstr "" + +#: ../kolabd/__init__.py:50 ../pykolab-0.1/kolabd/__init__.py:50 +msgid "For to the background." +msgstr "" + +#: ../kolabd/__init__.py:78 ../pykolab-0.1/kolabd/__init__.py:78 +msgid "Interrupted by user" +msgstr "" + +#: ../kolabd/__init__.py:82 ../kolabd/__init__.py:90 +#: ../pykolab-0.1/kolabd/__init__.py:82 ../pykolab-0.1/kolabd/__init__.py:90 +msgid "Traceback occurred, please report a bug at http://issues.kolab.org" +msgstr "" + +#: ../kolabd/__init__.py:86 ../pykolab-0.1/kolabd/__init__.py:86 +#, python-format +msgid "Type Error: %s" +msgstr "" + +#: ../kolabd/__init__.py:95 ../pykolab-0.1/kolabd/__init__.py:95 +msgid "Sleeping for 10 seconds..." +msgstr "" + +#: ../pykolab/auth/ldap/__init__.py:42 +msgid "Connecting to LDAP..." +msgstr "" + +#: ../pykolab/cli/__init__.py:40 +msgid "Domain Options" +msgstr "" + +#: ../pykolab/cli/__init__.py:45 +msgid "Review LDIF before committed" +msgstr "" + +#: ../pykolab/cli/__init__.py:55 +#, python-format +msgid "TODO: self.check_%s()" +msgstr "" + +#: ../pykolab/cli/__init__.py:81 +#, python-format +msgid "Deleting domain %s" +msgstr "" + +#: ../pykolab/cli/__init__.py:93 +#, python-format +msgid "No domain %s exists." +msgstr "" + +#: ../pykolab/cli/__init__.py:99 +msgid "TODO: Figure out where the domain should actually be added." +msgstr "" + +#: ../pykolab/cli/__init__.py:103 +#, python-format +msgid "Adding domain %s" +msgstr "" + +#. The dn of our new entry/object +#: ../pykolab/cli/__init__.py:106 +msgid "TODO: Make the format for a new domain configurable." +msgstr "" + +#. A dict to help build the "body" of the object +#: ../pykolab/cli/__init__.py:110 +msgid "TODO: Make what a domain looks like configurable." +msgstr "" + +#: ../pykolab/cli/__init__.py:122 +msgid "" +"TODO: Prompt for organization name/description. For now, use domain name." +msgstr "" + +#: ../pykolab/cli/__init__.py:130 +msgid "Please ACK or NACK the above LDIF:" +msgstr "" + +#: ../pykolab/cli/__init__.py:146 +#, python-format +msgid "Domain %s already exists." +msgstr "" + +#: ../pykolab/cli/__init__.py:156 +msgid "Actions" +msgstr "" + +#: ../pykolab/conf/__init__.py:81 +#, python-format +msgid "Setting %s to %r (from defaults)" +msgstr "" + +#: ../pykolab/conf/__init__.py:92 +#, python-format +msgid "Setting %s to %r (from runtime)" +msgstr "" + +#: ../pykolab/conf/__init__.py:106 +#, python-format +msgid "Setting %s to %r (from CLI, verified)" +msgstr "" + +#: ../pykolab/conf/__init__.py:109 +#, python-format +msgid "Setting %s to %r (from CLI, not checked)" +msgstr "" + +#: ../pykolab/conf/__init__.py:154 ../pykolab/conf/__init__.py:208 +#, python-format +msgid "Setting %s_%s to '****' (from configuration file)" +msgstr "" + +#: ../pykolab/conf/__init__.py:156 ../pykolab/conf/__init__.py:210 +#, python-format +msgid "Setting %s_%s to %r (from configuration file)" +msgstr "" + +#: ../pykolab/conf/__init__.py:165 +msgid "Setting options from configuration file" +msgstr "" + +#: ../pykolab/conf/__init__.py:224 +#, python-format +msgid "Configuration file %s not readable" +msgstr "" + +#: ../pykolab/conf/__init__.py:227 +#, python-format +msgid "Reading configuration file %s" +msgstr "" + +#: ../pykolab/conf/__init__.py:231 +#, python-format +msgid "Invalid configuration file %s" +msgstr "" + +#: ../pykolab/conf/__init__.py:234 +#, python-format +msgid "No master configuration section [revisor] in configuration file %s" +msgstr "" + +#. # +#. # Runtime Options +#. # +#: ../pykolab/conf/__init__.py:253 +msgid "Runtime Options" +msgstr "" + +#: ../pykolab/conf/__init__.py:258 +msgid "Configuration file to use" +msgstr "" + +#: ../pykolab/conf/__init__.py:264 +msgid "Set the debugging verbosity. Maximum is 99" +msgstr "" + +#: ../pykolab/conf/__init__.py:270 +msgid "Log file to use" +msgstr "" + +#: ../pykolab/conf/__init__.py:276 +msgid "Be quiet." +msgstr "" + +#: ../pykolab/conf/__init__.py:282 +msgid "Answer yes to all questions." +msgstr "" + +#: ../pykolab/conf/__init__.py:310 +msgid "No command supplied" +msgstr "" + +#: ../pykolab/conf/__init__.py:392 +msgid "Insufficient options. Need section, key and value -in that order." +msgstr "" + +#: ../pykolab/conf/__init__.py:395 +#, python-format +msgid "No section '%s' exists." +msgstr "" + +#: ../pykolab/conf/__init__.py:424 +#, python-format +msgid "Setting %s to %r (from the default values for CLI options)" +msgstr "" + +#: ../pykolab/conf/__init__.py:441 +#, python-format +msgid "Option %s/%s does not exist in config file %s, pulling from defaults" +msgstr "" + +#: ../pykolab/conf/__init__.py:449 ../pykolab/conf/__init__.py:452 +msgid "Option does not exist in defaults." +msgstr "" + +#: ../pykolab/conf/__init__.py:450 ../pykolab/conf/__init__.py:453 +msgid "Not available" +msgstr "" + +#: ../pykolab/conf/__init__.py:462 +#, python-format +msgid "Configuration file %s not readable." +msgstr "" + +#: ../pykolab/conf/__init__.py:465 +#, python-format +msgid "Configuration file %s does not exist." +msgstr "" + +#: ../pykolab/conf/__init__.py:470 +msgid "" +"WARNING: A negative debug level value does not make this program be any more " +"silent." +msgstr "" + +#: ../pykolab/conf/__init__.py:476 +msgid "" +"WARNING: This program has 9 levels of verbosity. Using the maximum of 9." +msgstr "" + +#: ../pykolab/conf/__init__.py:486 +msgid "No imaplib library found." +msgstr "" + +#: ../pykolab/conf/__init__.py:496 +msgid "No LMTP class found in the smtplib library." +msgstr "" + +#: ../pykolab/conf/__init__.py:506 +msgid "No SMTP class found in the smtplib library." +msgstr "" + +#: ../pykolab/conf/__init__.py:517 +#, python-format +msgid "Found you specified a specific set of items to test: %s" +msgstr "" + +#: ../pykolab/conf/__init__.py:525 +#, python-format +msgid "Selectively selecting: %s" +msgstr "" + +#: ../pykolab/constants.py:39 +msgid "PyKolab is a Kolab Systems product. For more information " +msgstr "" + +#: ../pykolab/constants.py:53 +msgid "WARNING" +msgstr "" + +#: ../pykolab/constants.py:53 +msgid "The Fully Qualified " +msgstr "" + +#: ../pykolab/constants.py:73 +msgid "389 Directory Server or Red Hat Directory Server" +msgstr "" + +#: ../pykolab/constants.py:77 ../pykolab/constants.py:81 +msgid "OpenLDAP or compatible" +msgstr "" + +#: ../pykolab/imap/__init__.py:74 ../pykolab/imap/__init__.py:79 +#, python-format +msgid "Creating new INBOX for user: %s" +msgstr "" + +#: ../pykolab/imap/__init__.py:145 +#, python-format +msgid "Setting new quota for folder %s to %r" +msgstr "" + +#: ../pykolab/imap/__init__.py:149 +#, python-format +msgid "Quota for %s currently is %s" +msgstr "" + +#: ../pykolab/imap/__init__.py:152 +#, python-format +msgid "Correcting quota for %s to %s (currently %s)" +msgstr "" + +#: ../pykolab/imap/__init__.py:178 +#, python-format +msgid "Folder has no corresponding user (1): %s" +msgstr "" + +#: ../pykolab/imap/__init__.py:181 +#, python-format +msgid "Folder has no corresponding user (2): %s" +msgstr "" + +#: ../pykolab/logger.py:42 +#, python-format +msgid "Cannot log to file %s: %s" +msgstr "" + +#: ../pykolab/logger.py:87 ../pykolab/logger.py:96 +msgid "Do you want to continue? [Y/n]" +msgstr "" + +#: ../pykolab/logger.py:90 ../pykolab/logger.py:99 +msgid "Abort! Abort! Abort!" +msgstr "" + +#: ../pykolab/plugins.py:56 +#, python-format +msgid "ImportError for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:59 +#, python-format +msgid "RuntimeError for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:62 +#, python-format +msgid "Plugin %s failed to load (%s: %s)" +msgstr "" + +#: ../pykolab/plugins.py:89 ../pykolab/plugins.py:91 +#, python-format +msgid "Cannot set defaults for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:93 +#, python-format +msgid "Cannot set defaults for plugin %s: Unknown Error" +msgstr "" + +#: ../pykolab/plugins.py:96 +#, python-format +msgid "Not setting defaults for plugin %s: No function 'set_defaults()'" +msgstr "" + +#: ../pykolab/plugins.py:113 +#, python-format +msgid "Cannot set runtime for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:115 +#, python-format +msgid "Not setting runtime for plugin %s: No function 'set_runtime()'" +msgstr "" + +#: ../pykolab/plugins.py:132 +#, python-format +msgid "Cannot add options for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:134 +#, python-format +msgid "Not adding options for plugin %s: No function 'add_options()'" +msgstr "" + +#: ../pykolab/plugins.py:152 +#, python-format +msgid "Cannot check options for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:154 +#, python-format +msgid "Not checking options for plugin %s: No function 'check_options()'" +msgstr "" + +#: ../pykolab/plugins.py:192 ../pykolab/plugins.py:194 +#, python-format +msgid "Cannot execute hook %s for plugin %s: %s" +msgstr "" + +#: ../pykolab/setup/ldap_setup.py:29 +msgid "Cannot load Python LDAP libraries." +msgstr "" + +#: ../pykolab/setup/ldap_setup.py:53 +#, python-format +msgid "Warning: LDAP Service '%s' is available on " +msgstr "" + +#: ../pykolab/setup/ldap_setup.py:56 +#, python-format +msgid "Found system service %s." +msgstr "" + +#. ldap_uri = utils.ask_question(_("LDAP URI (read/write)"), "ldap://ldap.%s" %(constants.domainname)) +#: ../pykolab/setup/ldap_setup.py:59 +msgid "LDAP URI (read/write)" +msgstr "" + +#. This is a funny input error ("") +#: ../pykolab/setup/ldap_setup.py:69 ../pykolab/setup/ldap_setup.py:76 +msgid "Could not connect to LDAP server due to " +msgstr "" + +#: ../pykolab/setup/ldap_setup.py:73 +msgid "Your username or password are incorrect" +msgstr "" + +#: ../pykolab/tests/calendar.py:146 +#, python-format +msgid "Creating %d Events" +msgstr "" + +#: ../pykolab/tests/calendar.py:177 +#, python-format +msgid "Creating Calendar item number %d" +msgstr "" + +#: ../pykolab/tests/calendar.py:189 ../pykolab/tests/contacts.py:133 +#, python-format +msgid "Sending UID message %s through SMTP targeting user %s@%s" +msgstr "" + +#: ../pykolab/tests/calendar.py:192 ../pykolab/tests/contacts.py:136 +#, python-format +msgid "Sending UID message %s through LMTP targeting user %s@%s" +msgstr "" + +#: ../pykolab/tests/calendar.py:195 ../pykolab/tests/contacts.py:139 +#, python-format +msgid "Saving UID message %s to IMAP (user %s, folder %s)" +msgstr "" + +#: ../pykolab/tests/calendar.py:198 ../pykolab/tests/contacts.py:142 +#: ../pykolab/tests/mail.py:125 +msgid "Somehow ended up NOT sending these messages" +msgstr "" + +#: ../pykolab/tests/contacts.py:97 +#, python-format +msgid "Creating %d Contacts" +msgstr "" + +#: ../pykolab/tests/contacts.py:121 +#, python-format +msgid "Creating Contact item number %d" +msgstr "" + +#: ../pykolab/tests/__init__.py:35 +msgid "Test Options" +msgstr "" + +#: ../pykolab/tests/__init__.py:42 +#, python-format +msgid "Submit a number of items to the %s" +msgstr "" + +#: ../pykolab/tests/__init__.py:48 +msgid "Run tests in suite SUITE. Implies a certain set of items being tested." +msgstr "" + +#: ../pykolab/tests/__init__.py:51 +msgid "Content Delivery Options" +msgstr "" + +#: ../pykolab/tests/__init__.py:57 +msgid "" +"Send messages containing the items through mail (requires proper " +"infrastructure)" +msgstr "" + +#: ../pykolab/tests/__init__.py:63 +msgid "Inject messages containing the items through IMAP (requires imaplib)" +msgstr "" + +#: ../pykolab/tests/__init__.py:69 +msgid "Deliver messages containing the items through LMTP (requires imaplib)" +msgstr "" + +#: ../pykolab/tests/__init__.py:80 +#, python-format +msgid "Tests for suite %s failed to load. Aborting." +msgstr "" + +#: ../pykolab/tests/mail.py:92 +#, python-format +msgid "Creating %d Mails" +msgstr "" + +#: ../pykolab/tests/mail.py:116 +#, python-format +msgid "Sending message %s through SMTP targeting user %s@%s" +msgstr "" + +#: ../pykolab/tests/mail.py:119 +#, python-format +msgid "Sending message %s through LMTP targeting user %s@%s" +msgstr "" + +#: ../pykolab/tests/mail.py:122 +#, python-format +msgid "Saving message %s to IMAP (user %s, folder %s)" +msgstr "" + +#: ../pykolab/tests/zpush/test_000_000.py:96 +#, python-format +msgid "Deleting mailbox: %s" +msgstr "" + +#: ../pykolab/tests/zpush/test_000_000.py:105 +#, python-format +msgid "Creating mailbox: %s" +msgstr "" + +#: ../pykolab/tests/zpush/test_000_000.py:121 +#, python-format +msgid "Authentication failure for %s" +msgstr "" + +#: ../pykolab/tests/zpush/test_000_001.py:48 +#, python-format +msgid "Could not load %sItem from %s, skipping the testing." +msgstr "" + +#: ../pykolab/utils.py:71 +msgid "Please answer 'yes' or 'no'." +msgstr "" + +#: ../setup-kolab.py:52 +#, python-format +msgid "Cannot find %s_setup()." +msgstr "" + +#: ../setup-kolab.py:54 +#, python-format +msgid "Cannot load setup for %s." +msgstr "" + +#. Means we get to ask some questions. +#: ../setup-kolab.py:58 +msgid "Please select the components to set up:" +msgstr "" + +#: ../setup-kolab.py:65 +msgid "Selection" +msgstr "" diff --git a/po/ms.po b/po/ms.po new file mode 100644 index 0000000..ae00f78 --- /dev/null +++ b/po/ms.po @@ -0,0 +1,563 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-02-21 21:23+0000\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" + +#: ../conf.py:37 ../kolabd.py:33 ../kolab.py:34 ../kolabtest.py:34 +#: ../setup-kolab.py:36 +msgid "Cannot load pykolab/logger.py:" +msgstr "" + +#: ../kolabd/__init__.py:44 ../pykolab-0.1/kolabd/__init__.py:44 +msgid "Daemon Options" +msgstr "" + +#: ../kolabd/__init__.py:50 ../pykolab-0.1/kolabd/__init__.py:50 +msgid "For to the background." +msgstr "" + +#: ../kolabd/__init__.py:78 ../pykolab-0.1/kolabd/__init__.py:78 +msgid "Interrupted by user" +msgstr "" + +#: ../kolabd/__init__.py:82 ../kolabd/__init__.py:90 +#: ../pykolab-0.1/kolabd/__init__.py:82 ../pykolab-0.1/kolabd/__init__.py:90 +msgid "Traceback occurred, please report a bug at http://issues.kolab.org" +msgstr "" + +#: ../kolabd/__init__.py:86 ../pykolab-0.1/kolabd/__init__.py:86 +#, python-format +msgid "Type Error: %s" +msgstr "" + +#: ../kolabd/__init__.py:95 ../pykolab-0.1/kolabd/__init__.py:95 +msgid "Sleeping for 10 seconds..." +msgstr "" + +#: ../pykolab/auth/ldap/__init__.py:42 +msgid "Connecting to LDAP..." +msgstr "" + +#: ../pykolab/cli/__init__.py:40 +msgid "Domain Options" +msgstr "" + +#: ../pykolab/cli/__init__.py:45 +msgid "Review LDIF before committed" +msgstr "" + +#: ../pykolab/cli/__init__.py:55 +#, python-format +msgid "TODO: self.check_%s()" +msgstr "" + +#: ../pykolab/cli/__init__.py:81 +#, python-format +msgid "Deleting domain %s" +msgstr "" + +#: ../pykolab/cli/__init__.py:93 +#, python-format +msgid "No domain %s exists." +msgstr "" + +#: ../pykolab/cli/__init__.py:99 +msgid "TODO: Figure out where the domain should actually be added." +msgstr "" + +#: ../pykolab/cli/__init__.py:103 +#, python-format +msgid "Adding domain %s" +msgstr "" + +#. The dn of our new entry/object +#: ../pykolab/cli/__init__.py:106 +msgid "TODO: Make the format for a new domain configurable." +msgstr "" + +#. A dict to help build the "body" of the object +#: ../pykolab/cli/__init__.py:110 +msgid "TODO: Make what a domain looks like configurable." +msgstr "" + +#: ../pykolab/cli/__init__.py:122 +msgid "" +"TODO: Prompt for organization name/description. For now, use domain name." +msgstr "" + +#: ../pykolab/cli/__init__.py:130 +msgid "Please ACK or NACK the above LDIF:" +msgstr "" + +#: ../pykolab/cli/__init__.py:146 +#, python-format +msgid "Domain %s already exists." +msgstr "" + +#: ../pykolab/cli/__init__.py:156 +msgid "Actions" +msgstr "" + +#: ../pykolab/conf/__init__.py:81 +#, python-format +msgid "Setting %s to %r (from defaults)" +msgstr "" + +#: ../pykolab/conf/__init__.py:92 +#, python-format +msgid "Setting %s to %r (from runtime)" +msgstr "" + +#: ../pykolab/conf/__init__.py:106 +#, python-format +msgid "Setting %s to %r (from CLI, verified)" +msgstr "" + +#: ../pykolab/conf/__init__.py:109 +#, python-format +msgid "Setting %s to %r (from CLI, not checked)" +msgstr "" + +#: ../pykolab/conf/__init__.py:154 ../pykolab/conf/__init__.py:208 +#, python-format +msgid "Setting %s_%s to '****' (from configuration file)" +msgstr "" + +#: ../pykolab/conf/__init__.py:156 ../pykolab/conf/__init__.py:210 +#, python-format +msgid "Setting %s_%s to %r (from configuration file)" +msgstr "" + +#: ../pykolab/conf/__init__.py:165 +msgid "Setting options from configuration file" +msgstr "" + +#: ../pykolab/conf/__init__.py:224 +#, python-format +msgid "Configuration file %s not readable" +msgstr "" + +#: ../pykolab/conf/__init__.py:227 +#, python-format +msgid "Reading configuration file %s" +msgstr "" + +#: ../pykolab/conf/__init__.py:231 +#, python-format +msgid "Invalid configuration file %s" +msgstr "" + +#: ../pykolab/conf/__init__.py:234 +#, python-format +msgid "No master configuration section [revisor] in configuration file %s" +msgstr "" + +#. # +#. # Runtime Options +#. # +#: ../pykolab/conf/__init__.py:253 +msgid "Runtime Options" +msgstr "" + +#: ../pykolab/conf/__init__.py:258 +msgid "Configuration file to use" +msgstr "" + +#: ../pykolab/conf/__init__.py:264 +msgid "Set the debugging verbosity. Maximum is 99" +msgstr "" + +#: ../pykolab/conf/__init__.py:270 +msgid "Log file to use" +msgstr "" + +#: ../pykolab/conf/__init__.py:276 +msgid "Be quiet." +msgstr "" + +#: ../pykolab/conf/__init__.py:282 +msgid "Answer yes to all questions." +msgstr "" + +#: ../pykolab/conf/__init__.py:310 +msgid "No command supplied" +msgstr "" + +#: ../pykolab/conf/__init__.py:392 +msgid "Insufficient options. Need section, key and value -in that order." +msgstr "" + +#: ../pykolab/conf/__init__.py:395 +#, python-format +msgid "No section '%s' exists." +msgstr "" + +#: ../pykolab/conf/__init__.py:424 +#, python-format +msgid "Setting %s to %r (from the default values for CLI options)" +msgstr "" + +#: ../pykolab/conf/__init__.py:441 +#, python-format +msgid "Option %s/%s does not exist in config file %s, pulling from defaults" +msgstr "" + +#: ../pykolab/conf/__init__.py:449 ../pykolab/conf/__init__.py:452 +msgid "Option does not exist in defaults." +msgstr "" + +#: ../pykolab/conf/__init__.py:450 ../pykolab/conf/__init__.py:453 +msgid "Not available" +msgstr "" + +#: ../pykolab/conf/__init__.py:462 +#, python-format +msgid "Configuration file %s not readable." +msgstr "" + +#: ../pykolab/conf/__init__.py:465 +#, python-format +msgid "Configuration file %s does not exist." +msgstr "" + +#: ../pykolab/conf/__init__.py:470 +msgid "" +"WARNING: A negative debug level value does not make this program be any more " +"silent." +msgstr "" + +#: ../pykolab/conf/__init__.py:476 +msgid "" +"WARNING: This program has 9 levels of verbosity. Using the maximum of 9." +msgstr "" + +#: ../pykolab/conf/__init__.py:486 +msgid "No imaplib library found." +msgstr "" + +#: ../pykolab/conf/__init__.py:496 +msgid "No LMTP class found in the smtplib library." +msgstr "" + +#: ../pykolab/conf/__init__.py:506 +msgid "No SMTP class found in the smtplib library." +msgstr "" + +#: ../pykolab/conf/__init__.py:517 +#, python-format +msgid "Found you specified a specific set of items to test: %s" +msgstr "" + +#: ../pykolab/conf/__init__.py:525 +#, python-format +msgid "Selectively selecting: %s" +msgstr "" + +#: ../pykolab/constants.py:39 +msgid "PyKolab is a Kolab Systems product. For more information " +msgstr "" + +#: ../pykolab/constants.py:53 +msgid "WARNING" +msgstr "" + +#: ../pykolab/constants.py:53 +msgid "The Fully Qualified " +msgstr "" + +#: ../pykolab/constants.py:73 +msgid "389 Directory Server or Red Hat Directory Server" +msgstr "" + +#: ../pykolab/constants.py:77 ../pykolab/constants.py:81 +msgid "OpenLDAP or compatible" +msgstr "" + +#: ../pykolab/imap/__init__.py:74 ../pykolab/imap/__init__.py:79 +#, python-format +msgid "Creating new INBOX for user: %s" +msgstr "" + +#: ../pykolab/imap/__init__.py:145 +#, python-format +msgid "Setting new quota for folder %s to %r" +msgstr "" + +#: ../pykolab/imap/__init__.py:149 +#, python-format +msgid "Quota for %s currently is %s" +msgstr "" + +#: ../pykolab/imap/__init__.py:152 +#, python-format +msgid "Correcting quota for %s to %s (currently %s)" +msgstr "" + +#: ../pykolab/imap/__init__.py:178 +#, python-format +msgid "Folder has no corresponding user (1): %s" +msgstr "" + +#: ../pykolab/imap/__init__.py:181 +#, python-format +msgid "Folder has no corresponding user (2): %s" +msgstr "" + +#: ../pykolab/logger.py:42 +#, python-format +msgid "Cannot log to file %s: %s" +msgstr "" + +#: ../pykolab/logger.py:87 ../pykolab/logger.py:96 +msgid "Do you want to continue? [Y/n]" +msgstr "" + +#: ../pykolab/logger.py:90 ../pykolab/logger.py:99 +msgid "Abort! Abort! Abort!" +msgstr "" + +#: ../pykolab/plugins.py:56 +#, python-format +msgid "ImportError for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:59 +#, python-format +msgid "RuntimeError for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:62 +#, python-format +msgid "Plugin %s failed to load (%s: %s)" +msgstr "" + +#: ../pykolab/plugins.py:89 ../pykolab/plugins.py:91 +#, python-format +msgid "Cannot set defaults for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:93 +#, python-format +msgid "Cannot set defaults for plugin %s: Unknown Error" +msgstr "" + +#: ../pykolab/plugins.py:96 +#, python-format +msgid "Not setting defaults for plugin %s: No function 'set_defaults()'" +msgstr "" + +#: ../pykolab/plugins.py:113 +#, python-format +msgid "Cannot set runtime for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:115 +#, python-format +msgid "Not setting runtime for plugin %s: No function 'set_runtime()'" +msgstr "" + +#: ../pykolab/plugins.py:132 +#, python-format +msgid "Cannot add options for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:134 +#, python-format +msgid "Not adding options for plugin %s: No function 'add_options()'" +msgstr "" + +#: ../pykolab/plugins.py:152 +#, python-format +msgid "Cannot check options for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:154 +#, python-format +msgid "Not checking options for plugin %s: No function 'check_options()'" +msgstr "" + +#: ../pykolab/plugins.py:192 ../pykolab/plugins.py:194 +#, python-format +msgid "Cannot execute hook %s for plugin %s: %s" +msgstr "" + +#: ../pykolab/setup/ldap_setup.py:29 +msgid "Cannot load Python LDAP libraries." +msgstr "" + +#: ../pykolab/setup/ldap_setup.py:53 +#, python-format +msgid "Warning: LDAP Service '%s' is available on " +msgstr "" + +#: ../pykolab/setup/ldap_setup.py:56 +#, python-format +msgid "Found system service %s." +msgstr "" + +#. ldap_uri = utils.ask_question(_("LDAP URI (read/write)"), "ldap://ldap.%s" %(constants.domainname)) +#: ../pykolab/setup/ldap_setup.py:59 +msgid "LDAP URI (read/write)" +msgstr "" + +#. This is a funny input error ("") +#: ../pykolab/setup/ldap_setup.py:69 ../pykolab/setup/ldap_setup.py:76 +msgid "Could not connect to LDAP server due to " +msgstr "" + +#: ../pykolab/setup/ldap_setup.py:73 +msgid "Your username or password are incorrect" +msgstr "" + +#: ../pykolab/tests/calendar.py:146 +#, python-format +msgid "Creating %d Events" +msgstr "" + +#: ../pykolab/tests/calendar.py:177 +#, python-format +msgid "Creating Calendar item number %d" +msgstr "" + +#: ../pykolab/tests/calendar.py:189 ../pykolab/tests/contacts.py:133 +#, python-format +msgid "Sending UID message %s through SMTP targeting user %s@%s" +msgstr "" + +#: ../pykolab/tests/calendar.py:192 ../pykolab/tests/contacts.py:136 +#, python-format +msgid "Sending UID message %s through LMTP targeting user %s@%s" +msgstr "" + +#: ../pykolab/tests/calendar.py:195 ../pykolab/tests/contacts.py:139 +#, python-format +msgid "Saving UID message %s to IMAP (user %s, folder %s)" +msgstr "" + +#: ../pykolab/tests/calendar.py:198 ../pykolab/tests/contacts.py:142 +#: ../pykolab/tests/mail.py:125 +msgid "Somehow ended up NOT sending these messages" +msgstr "" + +#: ../pykolab/tests/contacts.py:97 +#, python-format +msgid "Creating %d Contacts" +msgstr "" + +#: ../pykolab/tests/contacts.py:121 +#, python-format +msgid "Creating Contact item number %d" +msgstr "" + +#: ../pykolab/tests/__init__.py:35 +msgid "Test Options" +msgstr "" + +#: ../pykolab/tests/__init__.py:42 +#, python-format +msgid "Submit a number of items to the %s" +msgstr "" + +#: ../pykolab/tests/__init__.py:48 +msgid "Run tests in suite SUITE. Implies a certain set of items being tested." +msgstr "" + +#: ../pykolab/tests/__init__.py:51 +msgid "Content Delivery Options" +msgstr "" + +#: ../pykolab/tests/__init__.py:57 +msgid "" +"Send messages containing the items through mail (requires proper " +"infrastructure)" +msgstr "" + +#: ../pykolab/tests/__init__.py:63 +msgid "Inject messages containing the items through IMAP (requires imaplib)" +msgstr "" + +#: ../pykolab/tests/__init__.py:69 +msgid "Deliver messages containing the items through LMTP (requires imaplib)" +msgstr "" + +#: ../pykolab/tests/__init__.py:80 +#, python-format +msgid "Tests for suite %s failed to load. Aborting." +msgstr "" + +#: ../pykolab/tests/mail.py:92 +#, python-format +msgid "Creating %d Mails" +msgstr "" + +#: ../pykolab/tests/mail.py:116 +#, python-format +msgid "Sending message %s through SMTP targeting user %s@%s" +msgstr "" + +#: ../pykolab/tests/mail.py:119 +#, python-format +msgid "Sending message %s through LMTP targeting user %s@%s" +msgstr "" + +#: ../pykolab/tests/mail.py:122 +#, python-format +msgid "Saving message %s to IMAP (user %s, folder %s)" +msgstr "" + +#: ../pykolab/tests/zpush/test_000_000.py:96 +#, python-format +msgid "Deleting mailbox: %s" +msgstr "" + +#: ../pykolab/tests/zpush/test_000_000.py:105 +#, python-format +msgid "Creating mailbox: %s" +msgstr "" + +#: ../pykolab/tests/zpush/test_000_000.py:121 +#, python-format +msgid "Authentication failure for %s" +msgstr "" + +#: ../pykolab/tests/zpush/test_000_001.py:48 +#, python-format +msgid "Could not load %sItem from %s, skipping the testing." +msgstr "" + +#: ../pykolab/utils.py:71 +msgid "Please answer 'yes' or 'no'." +msgstr "" + +#: ../setup-kolab.py:52 +#, python-format +msgid "Cannot find %s_setup()." +msgstr "" + +#: ../setup-kolab.py:54 +#, python-format +msgid "Cannot load setup for %s." +msgstr "" + +#. Means we get to ask some questions. +#: ../setup-kolab.py:58 +msgid "Please select the components to set up:" +msgstr "" + +#: ../setup-kolab.py:65 +msgid "Selection" +msgstr "" diff --git a/po/nb.po b/po/nb.po new file mode 100644 index 0000000..ae00f78 --- /dev/null +++ b/po/nb.po @@ -0,0 +1,563 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-02-21 21:23+0000\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" + +#: ../conf.py:37 ../kolabd.py:33 ../kolab.py:34 ../kolabtest.py:34 +#: ../setup-kolab.py:36 +msgid "Cannot load pykolab/logger.py:" +msgstr "" + +#: ../kolabd/__init__.py:44 ../pykolab-0.1/kolabd/__init__.py:44 +msgid "Daemon Options" +msgstr "" + +#: ../kolabd/__init__.py:50 ../pykolab-0.1/kolabd/__init__.py:50 +msgid "For to the background." +msgstr "" + +#: ../kolabd/__init__.py:78 ../pykolab-0.1/kolabd/__init__.py:78 +msgid "Interrupted by user" +msgstr "" + +#: ../kolabd/__init__.py:82 ../kolabd/__init__.py:90 +#: ../pykolab-0.1/kolabd/__init__.py:82 ../pykolab-0.1/kolabd/__init__.py:90 +msgid "Traceback occurred, please report a bug at http://issues.kolab.org" +msgstr "" + +#: ../kolabd/__init__.py:86 ../pykolab-0.1/kolabd/__init__.py:86 +#, python-format +msgid "Type Error: %s" +msgstr "" + +#: ../kolabd/__init__.py:95 ../pykolab-0.1/kolabd/__init__.py:95 +msgid "Sleeping for 10 seconds..." +msgstr "" + +#: ../pykolab/auth/ldap/__init__.py:42 +msgid "Connecting to LDAP..." +msgstr "" + +#: ../pykolab/cli/__init__.py:40 +msgid "Domain Options" +msgstr "" + +#: ../pykolab/cli/__init__.py:45 +msgid "Review LDIF before committed" +msgstr "" + +#: ../pykolab/cli/__init__.py:55 +#, python-format +msgid "TODO: self.check_%s()" +msgstr "" + +#: ../pykolab/cli/__init__.py:81 +#, python-format +msgid "Deleting domain %s" +msgstr "" + +#: ../pykolab/cli/__init__.py:93 +#, python-format +msgid "No domain %s exists." +msgstr "" + +#: ../pykolab/cli/__init__.py:99 +msgid "TODO: Figure out where the domain should actually be added." +msgstr "" + +#: ../pykolab/cli/__init__.py:103 +#, python-format +msgid "Adding domain %s" +msgstr "" + +#. The dn of our new entry/object +#: ../pykolab/cli/__init__.py:106 +msgid "TODO: Make the format for a new domain configurable." +msgstr "" + +#. A dict to help build the "body" of the object +#: ../pykolab/cli/__init__.py:110 +msgid "TODO: Make what a domain looks like configurable." +msgstr "" + +#: ../pykolab/cli/__init__.py:122 +msgid "" +"TODO: Prompt for organization name/description. For now, use domain name." +msgstr "" + +#: ../pykolab/cli/__init__.py:130 +msgid "Please ACK or NACK the above LDIF:" +msgstr "" + +#: ../pykolab/cli/__init__.py:146 +#, python-format +msgid "Domain %s already exists." +msgstr "" + +#: ../pykolab/cli/__init__.py:156 +msgid "Actions" +msgstr "" + +#: ../pykolab/conf/__init__.py:81 +#, python-format +msgid "Setting %s to %r (from defaults)" +msgstr "" + +#: ../pykolab/conf/__init__.py:92 +#, python-format +msgid "Setting %s to %r (from runtime)" +msgstr "" + +#: ../pykolab/conf/__init__.py:106 +#, python-format +msgid "Setting %s to %r (from CLI, verified)" +msgstr "" + +#: ../pykolab/conf/__init__.py:109 +#, python-format +msgid "Setting %s to %r (from CLI, not checked)" +msgstr "" + +#: ../pykolab/conf/__init__.py:154 ../pykolab/conf/__init__.py:208 +#, python-format +msgid "Setting %s_%s to '****' (from configuration file)" +msgstr "" + +#: ../pykolab/conf/__init__.py:156 ../pykolab/conf/__init__.py:210 +#, python-format +msgid "Setting %s_%s to %r (from configuration file)" +msgstr "" + +#: ../pykolab/conf/__init__.py:165 +msgid "Setting options from configuration file" +msgstr "" + +#: ../pykolab/conf/__init__.py:224 +#, python-format +msgid "Configuration file %s not readable" +msgstr "" + +#: ../pykolab/conf/__init__.py:227 +#, python-format +msgid "Reading configuration file %s" +msgstr "" + +#: ../pykolab/conf/__init__.py:231 +#, python-format +msgid "Invalid configuration file %s" +msgstr "" + +#: ../pykolab/conf/__init__.py:234 +#, python-format +msgid "No master configuration section [revisor] in configuration file %s" +msgstr "" + +#. # +#. # Runtime Options +#. # +#: ../pykolab/conf/__init__.py:253 +msgid "Runtime Options" +msgstr "" + +#: ../pykolab/conf/__init__.py:258 +msgid "Configuration file to use" +msgstr "" + +#: ../pykolab/conf/__init__.py:264 +msgid "Set the debugging verbosity. Maximum is 99" +msgstr "" + +#: ../pykolab/conf/__init__.py:270 +msgid "Log file to use" +msgstr "" + +#: ../pykolab/conf/__init__.py:276 +msgid "Be quiet." +msgstr "" + +#: ../pykolab/conf/__init__.py:282 +msgid "Answer yes to all questions." +msgstr "" + +#: ../pykolab/conf/__init__.py:310 +msgid "No command supplied" +msgstr "" + +#: ../pykolab/conf/__init__.py:392 +msgid "Insufficient options. Need section, key and value -in that order." +msgstr "" + +#: ../pykolab/conf/__init__.py:395 +#, python-format +msgid "No section '%s' exists." +msgstr "" + +#: ../pykolab/conf/__init__.py:424 +#, python-format +msgid "Setting %s to %r (from the default values for CLI options)" +msgstr "" + +#: ../pykolab/conf/__init__.py:441 +#, python-format +msgid "Option %s/%s does not exist in config file %s, pulling from defaults" +msgstr "" + +#: ../pykolab/conf/__init__.py:449 ../pykolab/conf/__init__.py:452 +msgid "Option does not exist in defaults." +msgstr "" + +#: ../pykolab/conf/__init__.py:450 ../pykolab/conf/__init__.py:453 +msgid "Not available" +msgstr "" + +#: ../pykolab/conf/__init__.py:462 +#, python-format +msgid "Configuration file %s not readable." +msgstr "" + +#: ../pykolab/conf/__init__.py:465 +#, python-format +msgid "Configuration file %s does not exist." +msgstr "" + +#: ../pykolab/conf/__init__.py:470 +msgid "" +"WARNING: A negative debug level value does not make this program be any more " +"silent." +msgstr "" + +#: ../pykolab/conf/__init__.py:476 +msgid "" +"WARNING: This program has 9 levels of verbosity. Using the maximum of 9." +msgstr "" + +#: ../pykolab/conf/__init__.py:486 +msgid "No imaplib library found." +msgstr "" + +#: ../pykolab/conf/__init__.py:496 +msgid "No LMTP class found in the smtplib library." +msgstr "" + +#: ../pykolab/conf/__init__.py:506 +msgid "No SMTP class found in the smtplib library." +msgstr "" + +#: ../pykolab/conf/__init__.py:517 +#, python-format +msgid "Found you specified a specific set of items to test: %s" +msgstr "" + +#: ../pykolab/conf/__init__.py:525 +#, python-format +msgid "Selectively selecting: %s" +msgstr "" + +#: ../pykolab/constants.py:39 +msgid "PyKolab is a Kolab Systems product. For more information " +msgstr "" + +#: ../pykolab/constants.py:53 +msgid "WARNING" +msgstr "" + +#: ../pykolab/constants.py:53 +msgid "The Fully Qualified " +msgstr "" + +#: ../pykolab/constants.py:73 +msgid "389 Directory Server or Red Hat Directory Server" +msgstr "" + +#: ../pykolab/constants.py:77 ../pykolab/constants.py:81 +msgid "OpenLDAP or compatible" +msgstr "" + +#: ../pykolab/imap/__init__.py:74 ../pykolab/imap/__init__.py:79 +#, python-format +msgid "Creating new INBOX for user: %s" +msgstr "" + +#: ../pykolab/imap/__init__.py:145 +#, python-format +msgid "Setting new quota for folder %s to %r" +msgstr "" + +#: ../pykolab/imap/__init__.py:149 +#, python-format +msgid "Quota for %s currently is %s" +msgstr "" + +#: ../pykolab/imap/__init__.py:152 +#, python-format +msgid "Correcting quota for %s to %s (currently %s)" +msgstr "" + +#: ../pykolab/imap/__init__.py:178 +#, python-format +msgid "Folder has no corresponding user (1): %s" +msgstr "" + +#: ../pykolab/imap/__init__.py:181 +#, python-format +msgid "Folder has no corresponding user (2): %s" +msgstr "" + +#: ../pykolab/logger.py:42 +#, python-format +msgid "Cannot log to file %s: %s" +msgstr "" + +#: ../pykolab/logger.py:87 ../pykolab/logger.py:96 +msgid "Do you want to continue? [Y/n]" +msgstr "" + +#: ../pykolab/logger.py:90 ../pykolab/logger.py:99 +msgid "Abort! Abort! Abort!" +msgstr "" + +#: ../pykolab/plugins.py:56 +#, python-format +msgid "ImportError for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:59 +#, python-format +msgid "RuntimeError for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:62 +#, python-format +msgid "Plugin %s failed to load (%s: %s)" +msgstr "" + +#: ../pykolab/plugins.py:89 ../pykolab/plugins.py:91 +#, python-format +msgid "Cannot set defaults for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:93 +#, python-format +msgid "Cannot set defaults for plugin %s: Unknown Error" +msgstr "" + +#: ../pykolab/plugins.py:96 +#, python-format +msgid "Not setting defaults for plugin %s: No function 'set_defaults()'" +msgstr "" + +#: ../pykolab/plugins.py:113 +#, python-format +msgid "Cannot set runtime for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:115 +#, python-format +msgid "Not setting runtime for plugin %s: No function 'set_runtime()'" +msgstr "" + +#: ../pykolab/plugins.py:132 +#, python-format +msgid "Cannot add options for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:134 +#, python-format +msgid "Not adding options for plugin %s: No function 'add_options()'" +msgstr "" + +#: ../pykolab/plugins.py:152 +#, python-format +msgid "Cannot check options for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:154 +#, python-format +msgid "Not checking options for plugin %s: No function 'check_options()'" +msgstr "" + +#: ../pykolab/plugins.py:192 ../pykolab/plugins.py:194 +#, python-format +msgid "Cannot execute hook %s for plugin %s: %s" +msgstr "" + +#: ../pykolab/setup/ldap_setup.py:29 +msgid "Cannot load Python LDAP libraries." +msgstr "" + +#: ../pykolab/setup/ldap_setup.py:53 +#, python-format +msgid "Warning: LDAP Service '%s' is available on " +msgstr "" + +#: ../pykolab/setup/ldap_setup.py:56 +#, python-format +msgid "Found system service %s." +msgstr "" + +#. ldap_uri = utils.ask_question(_("LDAP URI (read/write)"), "ldap://ldap.%s" %(constants.domainname)) +#: ../pykolab/setup/ldap_setup.py:59 +msgid "LDAP URI (read/write)" +msgstr "" + +#. This is a funny input error ("") +#: ../pykolab/setup/ldap_setup.py:69 ../pykolab/setup/ldap_setup.py:76 +msgid "Could not connect to LDAP server due to " +msgstr "" + +#: ../pykolab/setup/ldap_setup.py:73 +msgid "Your username or password are incorrect" +msgstr "" + +#: ../pykolab/tests/calendar.py:146 +#, python-format +msgid "Creating %d Events" +msgstr "" + +#: ../pykolab/tests/calendar.py:177 +#, python-format +msgid "Creating Calendar item number %d" +msgstr "" + +#: ../pykolab/tests/calendar.py:189 ../pykolab/tests/contacts.py:133 +#, python-format +msgid "Sending UID message %s through SMTP targeting user %s@%s" +msgstr "" + +#: ../pykolab/tests/calendar.py:192 ../pykolab/tests/contacts.py:136 +#, python-format +msgid "Sending UID message %s through LMTP targeting user %s@%s" +msgstr "" + +#: ../pykolab/tests/calendar.py:195 ../pykolab/tests/contacts.py:139 +#, python-format +msgid "Saving UID message %s to IMAP (user %s, folder %s)" +msgstr "" + +#: ../pykolab/tests/calendar.py:198 ../pykolab/tests/contacts.py:142 +#: ../pykolab/tests/mail.py:125 +msgid "Somehow ended up NOT sending these messages" +msgstr "" + +#: ../pykolab/tests/contacts.py:97 +#, python-format +msgid "Creating %d Contacts" +msgstr "" + +#: ../pykolab/tests/contacts.py:121 +#, python-format +msgid "Creating Contact item number %d" +msgstr "" + +#: ../pykolab/tests/__init__.py:35 +msgid "Test Options" +msgstr "" + +#: ../pykolab/tests/__init__.py:42 +#, python-format +msgid "Submit a number of items to the %s" +msgstr "" + +#: ../pykolab/tests/__init__.py:48 +msgid "Run tests in suite SUITE. Implies a certain set of items being tested." +msgstr "" + +#: ../pykolab/tests/__init__.py:51 +msgid "Content Delivery Options" +msgstr "" + +#: ../pykolab/tests/__init__.py:57 +msgid "" +"Send messages containing the items through mail (requires proper " +"infrastructure)" +msgstr "" + +#: ../pykolab/tests/__init__.py:63 +msgid "Inject messages containing the items through IMAP (requires imaplib)" +msgstr "" + +#: ../pykolab/tests/__init__.py:69 +msgid "Deliver messages containing the items through LMTP (requires imaplib)" +msgstr "" + +#: ../pykolab/tests/__init__.py:80 +#, python-format +msgid "Tests for suite %s failed to load. Aborting." +msgstr "" + +#: ../pykolab/tests/mail.py:92 +#, python-format +msgid "Creating %d Mails" +msgstr "" + +#: ../pykolab/tests/mail.py:116 +#, python-format +msgid "Sending message %s through SMTP targeting user %s@%s" +msgstr "" + +#: ../pykolab/tests/mail.py:119 +#, python-format +msgid "Sending message %s through LMTP targeting user %s@%s" +msgstr "" + +#: ../pykolab/tests/mail.py:122 +#, python-format +msgid "Saving message %s to IMAP (user %s, folder %s)" +msgstr "" + +#: ../pykolab/tests/zpush/test_000_000.py:96 +#, python-format +msgid "Deleting mailbox: %s" +msgstr "" + +#: ../pykolab/tests/zpush/test_000_000.py:105 +#, python-format +msgid "Creating mailbox: %s" +msgstr "" + +#: ../pykolab/tests/zpush/test_000_000.py:121 +#, python-format +msgid "Authentication failure for %s" +msgstr "" + +#: ../pykolab/tests/zpush/test_000_001.py:48 +#, python-format +msgid "Could not load %sItem from %s, skipping the testing." +msgstr "" + +#: ../pykolab/utils.py:71 +msgid "Please answer 'yes' or 'no'." +msgstr "" + +#: ../setup-kolab.py:52 +#, python-format +msgid "Cannot find %s_setup()." +msgstr "" + +#: ../setup-kolab.py:54 +#, python-format +msgid "Cannot load setup for %s." +msgstr "" + +#. Means we get to ask some questions. +#: ../setup-kolab.py:58 +msgid "Please select the components to set up:" +msgstr "" + +#: ../setup-kolab.py:65 +msgid "Selection" +msgstr "" diff --git a/po/nl.po b/po/nl.po new file mode 100644 index 0000000..ae00f78 --- /dev/null +++ b/po/nl.po @@ -0,0 +1,563 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-02-21 21:23+0000\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" + +#: ../conf.py:37 ../kolabd.py:33 ../kolab.py:34 ../kolabtest.py:34 +#: ../setup-kolab.py:36 +msgid "Cannot load pykolab/logger.py:" +msgstr "" + +#: ../kolabd/__init__.py:44 ../pykolab-0.1/kolabd/__init__.py:44 +msgid "Daemon Options" +msgstr "" + +#: ../kolabd/__init__.py:50 ../pykolab-0.1/kolabd/__init__.py:50 +msgid "For to the background." +msgstr "" + +#: ../kolabd/__init__.py:78 ../pykolab-0.1/kolabd/__init__.py:78 +msgid "Interrupted by user" +msgstr "" + +#: ../kolabd/__init__.py:82 ../kolabd/__init__.py:90 +#: ../pykolab-0.1/kolabd/__init__.py:82 ../pykolab-0.1/kolabd/__init__.py:90 +msgid "Traceback occurred, please report a bug at http://issues.kolab.org" +msgstr "" + +#: ../kolabd/__init__.py:86 ../pykolab-0.1/kolabd/__init__.py:86 +#, python-format +msgid "Type Error: %s" +msgstr "" + +#: ../kolabd/__init__.py:95 ../pykolab-0.1/kolabd/__init__.py:95 +msgid "Sleeping for 10 seconds..." +msgstr "" + +#: ../pykolab/auth/ldap/__init__.py:42 +msgid "Connecting to LDAP..." +msgstr "" + +#: ../pykolab/cli/__init__.py:40 +msgid "Domain Options" +msgstr "" + +#: ../pykolab/cli/__init__.py:45 +msgid "Review LDIF before committed" +msgstr "" + +#: ../pykolab/cli/__init__.py:55 +#, python-format +msgid "TODO: self.check_%s()" +msgstr "" + +#: ../pykolab/cli/__init__.py:81 +#, python-format +msgid "Deleting domain %s" +msgstr "" + +#: ../pykolab/cli/__init__.py:93 +#, python-format +msgid "No domain %s exists." +msgstr "" + +#: ../pykolab/cli/__init__.py:99 +msgid "TODO: Figure out where the domain should actually be added." +msgstr "" + +#: ../pykolab/cli/__init__.py:103 +#, python-format +msgid "Adding domain %s" +msgstr "" + +#. The dn of our new entry/object +#: ../pykolab/cli/__init__.py:106 +msgid "TODO: Make the format for a new domain configurable." +msgstr "" + +#. A dict to help build the "body" of the object +#: ../pykolab/cli/__init__.py:110 +msgid "TODO: Make what a domain looks like configurable." +msgstr "" + +#: ../pykolab/cli/__init__.py:122 +msgid "" +"TODO: Prompt for organization name/description. For now, use domain name." +msgstr "" + +#: ../pykolab/cli/__init__.py:130 +msgid "Please ACK or NACK the above LDIF:" +msgstr "" + +#: ../pykolab/cli/__init__.py:146 +#, python-format +msgid "Domain %s already exists." +msgstr "" + +#: ../pykolab/cli/__init__.py:156 +msgid "Actions" +msgstr "" + +#: ../pykolab/conf/__init__.py:81 +#, python-format +msgid "Setting %s to %r (from defaults)" +msgstr "" + +#: ../pykolab/conf/__init__.py:92 +#, python-format +msgid "Setting %s to %r (from runtime)" +msgstr "" + +#: ../pykolab/conf/__init__.py:106 +#, python-format +msgid "Setting %s to %r (from CLI, verified)" +msgstr "" + +#: ../pykolab/conf/__init__.py:109 +#, python-format +msgid "Setting %s to %r (from CLI, not checked)" +msgstr "" + +#: ../pykolab/conf/__init__.py:154 ../pykolab/conf/__init__.py:208 +#, python-format +msgid "Setting %s_%s to '****' (from configuration file)" +msgstr "" + +#: ../pykolab/conf/__init__.py:156 ../pykolab/conf/__init__.py:210 +#, python-format +msgid "Setting %s_%s to %r (from configuration file)" +msgstr "" + +#: ../pykolab/conf/__init__.py:165 +msgid "Setting options from configuration file" +msgstr "" + +#: ../pykolab/conf/__init__.py:224 +#, python-format +msgid "Configuration file %s not readable" +msgstr "" + +#: ../pykolab/conf/__init__.py:227 +#, python-format +msgid "Reading configuration file %s" +msgstr "" + +#: ../pykolab/conf/__init__.py:231 +#, python-format +msgid "Invalid configuration file %s" +msgstr "" + +#: ../pykolab/conf/__init__.py:234 +#, python-format +msgid "No master configuration section [revisor] in configuration file %s" +msgstr "" + +#. # +#. # Runtime Options +#. # +#: ../pykolab/conf/__init__.py:253 +msgid "Runtime Options" +msgstr "" + +#: ../pykolab/conf/__init__.py:258 +msgid "Configuration file to use" +msgstr "" + +#: ../pykolab/conf/__init__.py:264 +msgid "Set the debugging verbosity. Maximum is 99" +msgstr "" + +#: ../pykolab/conf/__init__.py:270 +msgid "Log file to use" +msgstr "" + +#: ../pykolab/conf/__init__.py:276 +msgid "Be quiet." +msgstr "" + +#: ../pykolab/conf/__init__.py:282 +msgid "Answer yes to all questions." +msgstr "" + +#: ../pykolab/conf/__init__.py:310 +msgid "No command supplied" +msgstr "" + +#: ../pykolab/conf/__init__.py:392 +msgid "Insufficient options. Need section, key and value -in that order." +msgstr "" + +#: ../pykolab/conf/__init__.py:395 +#, python-format +msgid "No section '%s' exists." +msgstr "" + +#: ../pykolab/conf/__init__.py:424 +#, python-format +msgid "Setting %s to %r (from the default values for CLI options)" +msgstr "" + +#: ../pykolab/conf/__init__.py:441 +#, python-format +msgid "Option %s/%s does not exist in config file %s, pulling from defaults" +msgstr "" + +#: ../pykolab/conf/__init__.py:449 ../pykolab/conf/__init__.py:452 +msgid "Option does not exist in defaults." +msgstr "" + +#: ../pykolab/conf/__init__.py:450 ../pykolab/conf/__init__.py:453 +msgid "Not available" +msgstr "" + +#: ../pykolab/conf/__init__.py:462 +#, python-format +msgid "Configuration file %s not readable." +msgstr "" + +#: ../pykolab/conf/__init__.py:465 +#, python-format +msgid "Configuration file %s does not exist." +msgstr "" + +#: ../pykolab/conf/__init__.py:470 +msgid "" +"WARNING: A negative debug level value does not make this program be any more " +"silent." +msgstr "" + +#: ../pykolab/conf/__init__.py:476 +msgid "" +"WARNING: This program has 9 levels of verbosity. Using the maximum of 9." +msgstr "" + +#: ../pykolab/conf/__init__.py:486 +msgid "No imaplib library found." +msgstr "" + +#: ../pykolab/conf/__init__.py:496 +msgid "No LMTP class found in the smtplib library." +msgstr "" + +#: ../pykolab/conf/__init__.py:506 +msgid "No SMTP class found in the smtplib library." +msgstr "" + +#: ../pykolab/conf/__init__.py:517 +#, python-format +msgid "Found you specified a specific set of items to test: %s" +msgstr "" + +#: ../pykolab/conf/__init__.py:525 +#, python-format +msgid "Selectively selecting: %s" +msgstr "" + +#: ../pykolab/constants.py:39 +msgid "PyKolab is a Kolab Systems product. For more information " +msgstr "" + +#: ../pykolab/constants.py:53 +msgid "WARNING" +msgstr "" + +#: ../pykolab/constants.py:53 +msgid "The Fully Qualified " +msgstr "" + +#: ../pykolab/constants.py:73 +msgid "389 Directory Server or Red Hat Directory Server" +msgstr "" + +#: ../pykolab/constants.py:77 ../pykolab/constants.py:81 +msgid "OpenLDAP or compatible" +msgstr "" + +#: ../pykolab/imap/__init__.py:74 ../pykolab/imap/__init__.py:79 +#, python-format +msgid "Creating new INBOX for user: %s" +msgstr "" + +#: ../pykolab/imap/__init__.py:145 +#, python-format +msgid "Setting new quota for folder %s to %r" +msgstr "" + +#: ../pykolab/imap/__init__.py:149 +#, python-format +msgid "Quota for %s currently is %s" +msgstr "" + +#: ../pykolab/imap/__init__.py:152 +#, python-format +msgid "Correcting quota for %s to %s (currently %s)" +msgstr "" + +#: ../pykolab/imap/__init__.py:178 +#, python-format +msgid "Folder has no corresponding user (1): %s" +msgstr "" + +#: ../pykolab/imap/__init__.py:181 +#, python-format +msgid "Folder has no corresponding user (2): %s" +msgstr "" + +#: ../pykolab/logger.py:42 +#, python-format +msgid "Cannot log to file %s: %s" +msgstr "" + +#: ../pykolab/logger.py:87 ../pykolab/logger.py:96 +msgid "Do you want to continue? [Y/n]" +msgstr "" + +#: ../pykolab/logger.py:90 ../pykolab/logger.py:99 +msgid "Abort! Abort! Abort!" +msgstr "" + +#: ../pykolab/plugins.py:56 +#, python-format +msgid "ImportError for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:59 +#, python-format +msgid "RuntimeError for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:62 +#, python-format +msgid "Plugin %s failed to load (%s: %s)" +msgstr "" + +#: ../pykolab/plugins.py:89 ../pykolab/plugins.py:91 +#, python-format +msgid "Cannot set defaults for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:93 +#, python-format +msgid "Cannot set defaults for plugin %s: Unknown Error" +msgstr "" + +#: ../pykolab/plugins.py:96 +#, python-format +msgid "Not setting defaults for plugin %s: No function 'set_defaults()'" +msgstr "" + +#: ../pykolab/plugins.py:113 +#, python-format +msgid "Cannot set runtime for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:115 +#, python-format +msgid "Not setting runtime for plugin %s: No function 'set_runtime()'" +msgstr "" + +#: ../pykolab/plugins.py:132 +#, python-format +msgid "Cannot add options for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:134 +#, python-format +msgid "Not adding options for plugin %s: No function 'add_options()'" +msgstr "" + +#: ../pykolab/plugins.py:152 +#, python-format +msgid "Cannot check options for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:154 +#, python-format +msgid "Not checking options for plugin %s: No function 'check_options()'" +msgstr "" + +#: ../pykolab/plugins.py:192 ../pykolab/plugins.py:194 +#, python-format +msgid "Cannot execute hook %s for plugin %s: %s" +msgstr "" + +#: ../pykolab/setup/ldap_setup.py:29 +msgid "Cannot load Python LDAP libraries." +msgstr "" + +#: ../pykolab/setup/ldap_setup.py:53 +#, python-format +msgid "Warning: LDAP Service '%s' is available on " +msgstr "" + +#: ../pykolab/setup/ldap_setup.py:56 +#, python-format +msgid "Found system service %s." +msgstr "" + +#. ldap_uri = utils.ask_question(_("LDAP URI (read/write)"), "ldap://ldap.%s" %(constants.domainname)) +#: ../pykolab/setup/ldap_setup.py:59 +msgid "LDAP URI (read/write)" +msgstr "" + +#. This is a funny input error ("") +#: ../pykolab/setup/ldap_setup.py:69 ../pykolab/setup/ldap_setup.py:76 +msgid "Could not connect to LDAP server due to " +msgstr "" + +#: ../pykolab/setup/ldap_setup.py:73 +msgid "Your username or password are incorrect" +msgstr "" + +#: ../pykolab/tests/calendar.py:146 +#, python-format +msgid "Creating %d Events" +msgstr "" + +#: ../pykolab/tests/calendar.py:177 +#, python-format +msgid "Creating Calendar item number %d" +msgstr "" + +#: ../pykolab/tests/calendar.py:189 ../pykolab/tests/contacts.py:133 +#, python-format +msgid "Sending UID message %s through SMTP targeting user %s@%s" +msgstr "" + +#: ../pykolab/tests/calendar.py:192 ../pykolab/tests/contacts.py:136 +#, python-format +msgid "Sending UID message %s through LMTP targeting user %s@%s" +msgstr "" + +#: ../pykolab/tests/calendar.py:195 ../pykolab/tests/contacts.py:139 +#, python-format +msgid "Saving UID message %s to IMAP (user %s, folder %s)" +msgstr "" + +#: ../pykolab/tests/calendar.py:198 ../pykolab/tests/contacts.py:142 +#: ../pykolab/tests/mail.py:125 +msgid "Somehow ended up NOT sending these messages" +msgstr "" + +#: ../pykolab/tests/contacts.py:97 +#, python-format +msgid "Creating %d Contacts" +msgstr "" + +#: ../pykolab/tests/contacts.py:121 +#, python-format +msgid "Creating Contact item number %d" +msgstr "" + +#: ../pykolab/tests/__init__.py:35 +msgid "Test Options" +msgstr "" + +#: ../pykolab/tests/__init__.py:42 +#, python-format +msgid "Submit a number of items to the %s" +msgstr "" + +#: ../pykolab/tests/__init__.py:48 +msgid "Run tests in suite SUITE. Implies a certain set of items being tested." +msgstr "" + +#: ../pykolab/tests/__init__.py:51 +msgid "Content Delivery Options" +msgstr "" + +#: ../pykolab/tests/__init__.py:57 +msgid "" +"Send messages containing the items through mail (requires proper " +"infrastructure)" +msgstr "" + +#: ../pykolab/tests/__init__.py:63 +msgid "Inject messages containing the items through IMAP (requires imaplib)" +msgstr "" + +#: ../pykolab/tests/__init__.py:69 +msgid "Deliver messages containing the items through LMTP (requires imaplib)" +msgstr "" + +#: ../pykolab/tests/__init__.py:80 +#, python-format +msgid "Tests for suite %s failed to load. Aborting." +msgstr "" + +#: ../pykolab/tests/mail.py:92 +#, python-format +msgid "Creating %d Mails" +msgstr "" + +#: ../pykolab/tests/mail.py:116 +#, python-format +msgid "Sending message %s through SMTP targeting user %s@%s" +msgstr "" + +#: ../pykolab/tests/mail.py:119 +#, python-format +msgid "Sending message %s through LMTP targeting user %s@%s" +msgstr "" + +#: ../pykolab/tests/mail.py:122 +#, python-format +msgid "Saving message %s to IMAP (user %s, folder %s)" +msgstr "" + +#: ../pykolab/tests/zpush/test_000_000.py:96 +#, python-format +msgid "Deleting mailbox: %s" +msgstr "" + +#: ../pykolab/tests/zpush/test_000_000.py:105 +#, python-format +msgid "Creating mailbox: %s" +msgstr "" + +#: ../pykolab/tests/zpush/test_000_000.py:121 +#, python-format +msgid "Authentication failure for %s" +msgstr "" + +#: ../pykolab/tests/zpush/test_000_001.py:48 +#, python-format +msgid "Could not load %sItem from %s, skipping the testing." +msgstr "" + +#: ../pykolab/utils.py:71 +msgid "Please answer 'yes' or 'no'." +msgstr "" + +#: ../setup-kolab.py:52 +#, python-format +msgid "Cannot find %s_setup()." +msgstr "" + +#: ../setup-kolab.py:54 +#, python-format +msgid "Cannot load setup for %s." +msgstr "" + +#. Means we get to ask some questions. +#: ../setup-kolab.py:58 +msgid "Please select the components to set up:" +msgstr "" + +#: ../setup-kolab.py:65 +msgid "Selection" +msgstr "" diff --git a/po/or.po b/po/or.po new file mode 100644 index 0000000..ae00f78 --- /dev/null +++ b/po/or.po @@ -0,0 +1,563 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-02-21 21:23+0000\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" + +#: ../conf.py:37 ../kolabd.py:33 ../kolab.py:34 ../kolabtest.py:34 +#: ../setup-kolab.py:36 +msgid "Cannot load pykolab/logger.py:" +msgstr "" + +#: ../kolabd/__init__.py:44 ../pykolab-0.1/kolabd/__init__.py:44 +msgid "Daemon Options" +msgstr "" + +#: ../kolabd/__init__.py:50 ../pykolab-0.1/kolabd/__init__.py:50 +msgid "For to the background." +msgstr "" + +#: ../kolabd/__init__.py:78 ../pykolab-0.1/kolabd/__init__.py:78 +msgid "Interrupted by user" +msgstr "" + +#: ../kolabd/__init__.py:82 ../kolabd/__init__.py:90 +#: ../pykolab-0.1/kolabd/__init__.py:82 ../pykolab-0.1/kolabd/__init__.py:90 +msgid "Traceback occurred, please report a bug at http://issues.kolab.org" +msgstr "" + +#: ../kolabd/__init__.py:86 ../pykolab-0.1/kolabd/__init__.py:86 +#, python-format +msgid "Type Error: %s" +msgstr "" + +#: ../kolabd/__init__.py:95 ../pykolab-0.1/kolabd/__init__.py:95 +msgid "Sleeping for 10 seconds..." +msgstr "" + +#: ../pykolab/auth/ldap/__init__.py:42 +msgid "Connecting to LDAP..." +msgstr "" + +#: ../pykolab/cli/__init__.py:40 +msgid "Domain Options" +msgstr "" + +#: ../pykolab/cli/__init__.py:45 +msgid "Review LDIF before committed" +msgstr "" + +#: ../pykolab/cli/__init__.py:55 +#, python-format +msgid "TODO: self.check_%s()" +msgstr "" + +#: ../pykolab/cli/__init__.py:81 +#, python-format +msgid "Deleting domain %s" +msgstr "" + +#: ../pykolab/cli/__init__.py:93 +#, python-format +msgid "No domain %s exists." +msgstr "" + +#: ../pykolab/cli/__init__.py:99 +msgid "TODO: Figure out where the domain should actually be added." +msgstr "" + +#: ../pykolab/cli/__init__.py:103 +#, python-format +msgid "Adding domain %s" +msgstr "" + +#. The dn of our new entry/object +#: ../pykolab/cli/__init__.py:106 +msgid "TODO: Make the format for a new domain configurable." +msgstr "" + +#. A dict to help build the "body" of the object +#: ../pykolab/cli/__init__.py:110 +msgid "TODO: Make what a domain looks like configurable." +msgstr "" + +#: ../pykolab/cli/__init__.py:122 +msgid "" +"TODO: Prompt for organization name/description. For now, use domain name." +msgstr "" + +#: ../pykolab/cli/__init__.py:130 +msgid "Please ACK or NACK the above LDIF:" +msgstr "" + +#: ../pykolab/cli/__init__.py:146 +#, python-format +msgid "Domain %s already exists." +msgstr "" + +#: ../pykolab/cli/__init__.py:156 +msgid "Actions" +msgstr "" + +#: ../pykolab/conf/__init__.py:81 +#, python-format +msgid "Setting %s to %r (from defaults)" +msgstr "" + +#: ../pykolab/conf/__init__.py:92 +#, python-format +msgid "Setting %s to %r (from runtime)" +msgstr "" + +#: ../pykolab/conf/__init__.py:106 +#, python-format +msgid "Setting %s to %r (from CLI, verified)" +msgstr "" + +#: ../pykolab/conf/__init__.py:109 +#, python-format +msgid "Setting %s to %r (from CLI, not checked)" +msgstr "" + +#: ../pykolab/conf/__init__.py:154 ../pykolab/conf/__init__.py:208 +#, python-format +msgid "Setting %s_%s to '****' (from configuration file)" +msgstr "" + +#: ../pykolab/conf/__init__.py:156 ../pykolab/conf/__init__.py:210 +#, python-format +msgid "Setting %s_%s to %r (from configuration file)" +msgstr "" + +#: ../pykolab/conf/__init__.py:165 +msgid "Setting options from configuration file" +msgstr "" + +#: ../pykolab/conf/__init__.py:224 +#, python-format +msgid "Configuration file %s not readable" +msgstr "" + +#: ../pykolab/conf/__init__.py:227 +#, python-format +msgid "Reading configuration file %s" +msgstr "" + +#: ../pykolab/conf/__init__.py:231 +#, python-format +msgid "Invalid configuration file %s" +msgstr "" + +#: ../pykolab/conf/__init__.py:234 +#, python-format +msgid "No master configuration section [revisor] in configuration file %s" +msgstr "" + +#. # +#. # Runtime Options +#. # +#: ../pykolab/conf/__init__.py:253 +msgid "Runtime Options" +msgstr "" + +#: ../pykolab/conf/__init__.py:258 +msgid "Configuration file to use" +msgstr "" + +#: ../pykolab/conf/__init__.py:264 +msgid "Set the debugging verbosity. Maximum is 99" +msgstr "" + +#: ../pykolab/conf/__init__.py:270 +msgid "Log file to use" +msgstr "" + +#: ../pykolab/conf/__init__.py:276 +msgid "Be quiet." +msgstr "" + +#: ../pykolab/conf/__init__.py:282 +msgid "Answer yes to all questions." +msgstr "" + +#: ../pykolab/conf/__init__.py:310 +msgid "No command supplied" +msgstr "" + +#: ../pykolab/conf/__init__.py:392 +msgid "Insufficient options. Need section, key and value -in that order." +msgstr "" + +#: ../pykolab/conf/__init__.py:395 +#, python-format +msgid "No section '%s' exists." +msgstr "" + +#: ../pykolab/conf/__init__.py:424 +#, python-format +msgid "Setting %s to %r (from the default values for CLI options)" +msgstr "" + +#: ../pykolab/conf/__init__.py:441 +#, python-format +msgid "Option %s/%s does not exist in config file %s, pulling from defaults" +msgstr "" + +#: ../pykolab/conf/__init__.py:449 ../pykolab/conf/__init__.py:452 +msgid "Option does not exist in defaults." +msgstr "" + +#: ../pykolab/conf/__init__.py:450 ../pykolab/conf/__init__.py:453 +msgid "Not available" +msgstr "" + +#: ../pykolab/conf/__init__.py:462 +#, python-format +msgid "Configuration file %s not readable." +msgstr "" + +#: ../pykolab/conf/__init__.py:465 +#, python-format +msgid "Configuration file %s does not exist." +msgstr "" + +#: ../pykolab/conf/__init__.py:470 +msgid "" +"WARNING: A negative debug level value does not make this program be any more " +"silent." +msgstr "" + +#: ../pykolab/conf/__init__.py:476 +msgid "" +"WARNING: This program has 9 levels of verbosity. Using the maximum of 9." +msgstr "" + +#: ../pykolab/conf/__init__.py:486 +msgid "No imaplib library found." +msgstr "" + +#: ../pykolab/conf/__init__.py:496 +msgid "No LMTP class found in the smtplib library." +msgstr "" + +#: ../pykolab/conf/__init__.py:506 +msgid "No SMTP class found in the smtplib library." +msgstr "" + +#: ../pykolab/conf/__init__.py:517 +#, python-format +msgid "Found you specified a specific set of items to test: %s" +msgstr "" + +#: ../pykolab/conf/__init__.py:525 +#, python-format +msgid "Selectively selecting: %s" +msgstr "" + +#: ../pykolab/constants.py:39 +msgid "PyKolab is a Kolab Systems product. For more information " +msgstr "" + +#: ../pykolab/constants.py:53 +msgid "WARNING" +msgstr "" + +#: ../pykolab/constants.py:53 +msgid "The Fully Qualified " +msgstr "" + +#: ../pykolab/constants.py:73 +msgid "389 Directory Server or Red Hat Directory Server" +msgstr "" + +#: ../pykolab/constants.py:77 ../pykolab/constants.py:81 +msgid "OpenLDAP or compatible" +msgstr "" + +#: ../pykolab/imap/__init__.py:74 ../pykolab/imap/__init__.py:79 +#, python-format +msgid "Creating new INBOX for user: %s" +msgstr "" + +#: ../pykolab/imap/__init__.py:145 +#, python-format +msgid "Setting new quota for folder %s to %r" +msgstr "" + +#: ../pykolab/imap/__init__.py:149 +#, python-format +msgid "Quota for %s currently is %s" +msgstr "" + +#: ../pykolab/imap/__init__.py:152 +#, python-format +msgid "Correcting quota for %s to %s (currently %s)" +msgstr "" + +#: ../pykolab/imap/__init__.py:178 +#, python-format +msgid "Folder has no corresponding user (1): %s" +msgstr "" + +#: ../pykolab/imap/__init__.py:181 +#, python-format +msgid "Folder has no corresponding user (2): %s" +msgstr "" + +#: ../pykolab/logger.py:42 +#, python-format +msgid "Cannot log to file %s: %s" +msgstr "" + +#: ../pykolab/logger.py:87 ../pykolab/logger.py:96 +msgid "Do you want to continue? [Y/n]" +msgstr "" + +#: ../pykolab/logger.py:90 ../pykolab/logger.py:99 +msgid "Abort! Abort! Abort!" +msgstr "" + +#: ../pykolab/plugins.py:56 +#, python-format +msgid "ImportError for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:59 +#, python-format +msgid "RuntimeError for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:62 +#, python-format +msgid "Plugin %s failed to load (%s: %s)" +msgstr "" + +#: ../pykolab/plugins.py:89 ../pykolab/plugins.py:91 +#, python-format +msgid "Cannot set defaults for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:93 +#, python-format +msgid "Cannot set defaults for plugin %s: Unknown Error" +msgstr "" + +#: ../pykolab/plugins.py:96 +#, python-format +msgid "Not setting defaults for plugin %s: No function 'set_defaults()'" +msgstr "" + +#: ../pykolab/plugins.py:113 +#, python-format +msgid "Cannot set runtime for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:115 +#, python-format +msgid "Not setting runtime for plugin %s: No function 'set_runtime()'" +msgstr "" + +#: ../pykolab/plugins.py:132 +#, python-format +msgid "Cannot add options for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:134 +#, python-format +msgid "Not adding options for plugin %s: No function 'add_options()'" +msgstr "" + +#: ../pykolab/plugins.py:152 +#, python-format +msgid "Cannot check options for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:154 +#, python-format +msgid "Not checking options for plugin %s: No function 'check_options()'" +msgstr "" + +#: ../pykolab/plugins.py:192 ../pykolab/plugins.py:194 +#, python-format +msgid "Cannot execute hook %s for plugin %s: %s" +msgstr "" + +#: ../pykolab/setup/ldap_setup.py:29 +msgid "Cannot load Python LDAP libraries." +msgstr "" + +#: ../pykolab/setup/ldap_setup.py:53 +#, python-format +msgid "Warning: LDAP Service '%s' is available on " +msgstr "" + +#: ../pykolab/setup/ldap_setup.py:56 +#, python-format +msgid "Found system service %s." +msgstr "" + +#. ldap_uri = utils.ask_question(_("LDAP URI (read/write)"), "ldap://ldap.%s" %(constants.domainname)) +#: ../pykolab/setup/ldap_setup.py:59 +msgid "LDAP URI (read/write)" +msgstr "" + +#. This is a funny input error ("") +#: ../pykolab/setup/ldap_setup.py:69 ../pykolab/setup/ldap_setup.py:76 +msgid "Could not connect to LDAP server due to " +msgstr "" + +#: ../pykolab/setup/ldap_setup.py:73 +msgid "Your username or password are incorrect" +msgstr "" + +#: ../pykolab/tests/calendar.py:146 +#, python-format +msgid "Creating %d Events" +msgstr "" + +#: ../pykolab/tests/calendar.py:177 +#, python-format +msgid "Creating Calendar item number %d" +msgstr "" + +#: ../pykolab/tests/calendar.py:189 ../pykolab/tests/contacts.py:133 +#, python-format +msgid "Sending UID message %s through SMTP targeting user %s@%s" +msgstr "" + +#: ../pykolab/tests/calendar.py:192 ../pykolab/tests/contacts.py:136 +#, python-format +msgid "Sending UID message %s through LMTP targeting user %s@%s" +msgstr "" + +#: ../pykolab/tests/calendar.py:195 ../pykolab/tests/contacts.py:139 +#, python-format +msgid "Saving UID message %s to IMAP (user %s, folder %s)" +msgstr "" + +#: ../pykolab/tests/calendar.py:198 ../pykolab/tests/contacts.py:142 +#: ../pykolab/tests/mail.py:125 +msgid "Somehow ended up NOT sending these messages" +msgstr "" + +#: ../pykolab/tests/contacts.py:97 +#, python-format +msgid "Creating %d Contacts" +msgstr "" + +#: ../pykolab/tests/contacts.py:121 +#, python-format +msgid "Creating Contact item number %d" +msgstr "" + +#: ../pykolab/tests/__init__.py:35 +msgid "Test Options" +msgstr "" + +#: ../pykolab/tests/__init__.py:42 +#, python-format +msgid "Submit a number of items to the %s" +msgstr "" + +#: ../pykolab/tests/__init__.py:48 +msgid "Run tests in suite SUITE. Implies a certain set of items being tested." +msgstr "" + +#: ../pykolab/tests/__init__.py:51 +msgid "Content Delivery Options" +msgstr "" + +#: ../pykolab/tests/__init__.py:57 +msgid "" +"Send messages containing the items through mail (requires proper " +"infrastructure)" +msgstr "" + +#: ../pykolab/tests/__init__.py:63 +msgid "Inject messages containing the items through IMAP (requires imaplib)" +msgstr "" + +#: ../pykolab/tests/__init__.py:69 +msgid "Deliver messages containing the items through LMTP (requires imaplib)" +msgstr "" + +#: ../pykolab/tests/__init__.py:80 +#, python-format +msgid "Tests for suite %s failed to load. Aborting." +msgstr "" + +#: ../pykolab/tests/mail.py:92 +#, python-format +msgid "Creating %d Mails" +msgstr "" + +#: ../pykolab/tests/mail.py:116 +#, python-format +msgid "Sending message %s through SMTP targeting user %s@%s" +msgstr "" + +#: ../pykolab/tests/mail.py:119 +#, python-format +msgid "Sending message %s through LMTP targeting user %s@%s" +msgstr "" + +#: ../pykolab/tests/mail.py:122 +#, python-format +msgid "Saving message %s to IMAP (user %s, folder %s)" +msgstr "" + +#: ../pykolab/tests/zpush/test_000_000.py:96 +#, python-format +msgid "Deleting mailbox: %s" +msgstr "" + +#: ../pykolab/tests/zpush/test_000_000.py:105 +#, python-format +msgid "Creating mailbox: %s" +msgstr "" + +#: ../pykolab/tests/zpush/test_000_000.py:121 +#, python-format +msgid "Authentication failure for %s" +msgstr "" + +#: ../pykolab/tests/zpush/test_000_001.py:48 +#, python-format +msgid "Could not load %sItem from %s, skipping the testing." +msgstr "" + +#: ../pykolab/utils.py:71 +msgid "Please answer 'yes' or 'no'." +msgstr "" + +#: ../setup-kolab.py:52 +#, python-format +msgid "Cannot find %s_setup()." +msgstr "" + +#: ../setup-kolab.py:54 +#, python-format +msgid "Cannot load setup for %s." +msgstr "" + +#. Means we get to ask some questions. +#: ../setup-kolab.py:58 +msgid "Please select the components to set up:" +msgstr "" + +#: ../setup-kolab.py:65 +msgid "Selection" +msgstr "" diff --git a/po/pa.po b/po/pa.po new file mode 100644 index 0000000..ae00f78 --- /dev/null +++ b/po/pa.po @@ -0,0 +1,563 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-02-21 21:23+0000\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" + +#: ../conf.py:37 ../kolabd.py:33 ../kolab.py:34 ../kolabtest.py:34 +#: ../setup-kolab.py:36 +msgid "Cannot load pykolab/logger.py:" +msgstr "" + +#: ../kolabd/__init__.py:44 ../pykolab-0.1/kolabd/__init__.py:44 +msgid "Daemon Options" +msgstr "" + +#: ../kolabd/__init__.py:50 ../pykolab-0.1/kolabd/__init__.py:50 +msgid "For to the background." +msgstr "" + +#: ../kolabd/__init__.py:78 ../pykolab-0.1/kolabd/__init__.py:78 +msgid "Interrupted by user" +msgstr "" + +#: ../kolabd/__init__.py:82 ../kolabd/__init__.py:90 +#: ../pykolab-0.1/kolabd/__init__.py:82 ../pykolab-0.1/kolabd/__init__.py:90 +msgid "Traceback occurred, please report a bug at http://issues.kolab.org" +msgstr "" + +#: ../kolabd/__init__.py:86 ../pykolab-0.1/kolabd/__init__.py:86 +#, python-format +msgid "Type Error: %s" +msgstr "" + +#: ../kolabd/__init__.py:95 ../pykolab-0.1/kolabd/__init__.py:95 +msgid "Sleeping for 10 seconds..." +msgstr "" + +#: ../pykolab/auth/ldap/__init__.py:42 +msgid "Connecting to LDAP..." +msgstr "" + +#: ../pykolab/cli/__init__.py:40 +msgid "Domain Options" +msgstr "" + +#: ../pykolab/cli/__init__.py:45 +msgid "Review LDIF before committed" +msgstr "" + +#: ../pykolab/cli/__init__.py:55 +#, python-format +msgid "TODO: self.check_%s()" +msgstr "" + +#: ../pykolab/cli/__init__.py:81 +#, python-format +msgid "Deleting domain %s" +msgstr "" + +#: ../pykolab/cli/__init__.py:93 +#, python-format +msgid "No domain %s exists." +msgstr "" + +#: ../pykolab/cli/__init__.py:99 +msgid "TODO: Figure out where the domain should actually be added." +msgstr "" + +#: ../pykolab/cli/__init__.py:103 +#, python-format +msgid "Adding domain %s" +msgstr "" + +#. The dn of our new entry/object +#: ../pykolab/cli/__init__.py:106 +msgid "TODO: Make the format for a new domain configurable." +msgstr "" + +#. A dict to help build the "body" of the object +#: ../pykolab/cli/__init__.py:110 +msgid "TODO: Make what a domain looks like configurable." +msgstr "" + +#: ../pykolab/cli/__init__.py:122 +msgid "" +"TODO: Prompt for organization name/description. For now, use domain name." +msgstr "" + +#: ../pykolab/cli/__init__.py:130 +msgid "Please ACK or NACK the above LDIF:" +msgstr "" + +#: ../pykolab/cli/__init__.py:146 +#, python-format +msgid "Domain %s already exists." +msgstr "" + +#: ../pykolab/cli/__init__.py:156 +msgid "Actions" +msgstr "" + +#: ../pykolab/conf/__init__.py:81 +#, python-format +msgid "Setting %s to %r (from defaults)" +msgstr "" + +#: ../pykolab/conf/__init__.py:92 +#, python-format +msgid "Setting %s to %r (from runtime)" +msgstr "" + +#: ../pykolab/conf/__init__.py:106 +#, python-format +msgid "Setting %s to %r (from CLI, verified)" +msgstr "" + +#: ../pykolab/conf/__init__.py:109 +#, python-format +msgid "Setting %s to %r (from CLI, not checked)" +msgstr "" + +#: ../pykolab/conf/__init__.py:154 ../pykolab/conf/__init__.py:208 +#, python-format +msgid "Setting %s_%s to '****' (from configuration file)" +msgstr "" + +#: ../pykolab/conf/__init__.py:156 ../pykolab/conf/__init__.py:210 +#, python-format +msgid "Setting %s_%s to %r (from configuration file)" +msgstr "" + +#: ../pykolab/conf/__init__.py:165 +msgid "Setting options from configuration file" +msgstr "" + +#: ../pykolab/conf/__init__.py:224 +#, python-format +msgid "Configuration file %s not readable" +msgstr "" + +#: ../pykolab/conf/__init__.py:227 +#, python-format +msgid "Reading configuration file %s" +msgstr "" + +#: ../pykolab/conf/__init__.py:231 +#, python-format +msgid "Invalid configuration file %s" +msgstr "" + +#: ../pykolab/conf/__init__.py:234 +#, python-format +msgid "No master configuration section [revisor] in configuration file %s" +msgstr "" + +#. # +#. # Runtime Options +#. # +#: ../pykolab/conf/__init__.py:253 +msgid "Runtime Options" +msgstr "" + +#: ../pykolab/conf/__init__.py:258 +msgid "Configuration file to use" +msgstr "" + +#: ../pykolab/conf/__init__.py:264 +msgid "Set the debugging verbosity. Maximum is 99" +msgstr "" + +#: ../pykolab/conf/__init__.py:270 +msgid "Log file to use" +msgstr "" + +#: ../pykolab/conf/__init__.py:276 +msgid "Be quiet." +msgstr "" + +#: ../pykolab/conf/__init__.py:282 +msgid "Answer yes to all questions." +msgstr "" + +#: ../pykolab/conf/__init__.py:310 +msgid "No command supplied" +msgstr "" + +#: ../pykolab/conf/__init__.py:392 +msgid "Insufficient options. Need section, key and value -in that order." +msgstr "" + +#: ../pykolab/conf/__init__.py:395 +#, python-format +msgid "No section '%s' exists." +msgstr "" + +#: ../pykolab/conf/__init__.py:424 +#, python-format +msgid "Setting %s to %r (from the default values for CLI options)" +msgstr "" + +#: ../pykolab/conf/__init__.py:441 +#, python-format +msgid "Option %s/%s does not exist in config file %s, pulling from defaults" +msgstr "" + +#: ../pykolab/conf/__init__.py:449 ../pykolab/conf/__init__.py:452 +msgid "Option does not exist in defaults." +msgstr "" + +#: ../pykolab/conf/__init__.py:450 ../pykolab/conf/__init__.py:453 +msgid "Not available" +msgstr "" + +#: ../pykolab/conf/__init__.py:462 +#, python-format +msgid "Configuration file %s not readable." +msgstr "" + +#: ../pykolab/conf/__init__.py:465 +#, python-format +msgid "Configuration file %s does not exist." +msgstr "" + +#: ../pykolab/conf/__init__.py:470 +msgid "" +"WARNING: A negative debug level value does not make this program be any more " +"silent." +msgstr "" + +#: ../pykolab/conf/__init__.py:476 +msgid "" +"WARNING: This program has 9 levels of verbosity. Using the maximum of 9." +msgstr "" + +#: ../pykolab/conf/__init__.py:486 +msgid "No imaplib library found." +msgstr "" + +#: ../pykolab/conf/__init__.py:496 +msgid "No LMTP class found in the smtplib library." +msgstr "" + +#: ../pykolab/conf/__init__.py:506 +msgid "No SMTP class found in the smtplib library." +msgstr "" + +#: ../pykolab/conf/__init__.py:517 +#, python-format +msgid "Found you specified a specific set of items to test: %s" +msgstr "" + +#: ../pykolab/conf/__init__.py:525 +#, python-format +msgid "Selectively selecting: %s" +msgstr "" + +#: ../pykolab/constants.py:39 +msgid "PyKolab is a Kolab Systems product. For more information " +msgstr "" + +#: ../pykolab/constants.py:53 +msgid "WARNING" +msgstr "" + +#: ../pykolab/constants.py:53 +msgid "The Fully Qualified " +msgstr "" + +#: ../pykolab/constants.py:73 +msgid "389 Directory Server or Red Hat Directory Server" +msgstr "" + +#: ../pykolab/constants.py:77 ../pykolab/constants.py:81 +msgid "OpenLDAP or compatible" +msgstr "" + +#: ../pykolab/imap/__init__.py:74 ../pykolab/imap/__init__.py:79 +#, python-format +msgid "Creating new INBOX for user: %s" +msgstr "" + +#: ../pykolab/imap/__init__.py:145 +#, python-format +msgid "Setting new quota for folder %s to %r" +msgstr "" + +#: ../pykolab/imap/__init__.py:149 +#, python-format +msgid "Quota for %s currently is %s" +msgstr "" + +#: ../pykolab/imap/__init__.py:152 +#, python-format +msgid "Correcting quota for %s to %s (currently %s)" +msgstr "" + +#: ../pykolab/imap/__init__.py:178 +#, python-format +msgid "Folder has no corresponding user (1): %s" +msgstr "" + +#: ../pykolab/imap/__init__.py:181 +#, python-format +msgid "Folder has no corresponding user (2): %s" +msgstr "" + +#: ../pykolab/logger.py:42 +#, python-format +msgid "Cannot log to file %s: %s" +msgstr "" + +#: ../pykolab/logger.py:87 ../pykolab/logger.py:96 +msgid "Do you want to continue? [Y/n]" +msgstr "" + +#: ../pykolab/logger.py:90 ../pykolab/logger.py:99 +msgid "Abort! Abort! Abort!" +msgstr "" + +#: ../pykolab/plugins.py:56 +#, python-format +msgid "ImportError for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:59 +#, python-format +msgid "RuntimeError for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:62 +#, python-format +msgid "Plugin %s failed to load (%s: %s)" +msgstr "" + +#: ../pykolab/plugins.py:89 ../pykolab/plugins.py:91 +#, python-format +msgid "Cannot set defaults for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:93 +#, python-format +msgid "Cannot set defaults for plugin %s: Unknown Error" +msgstr "" + +#: ../pykolab/plugins.py:96 +#, python-format +msgid "Not setting defaults for plugin %s: No function 'set_defaults()'" +msgstr "" + +#: ../pykolab/plugins.py:113 +#, python-format +msgid "Cannot set runtime for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:115 +#, python-format +msgid "Not setting runtime for plugin %s: No function 'set_runtime()'" +msgstr "" + +#: ../pykolab/plugins.py:132 +#, python-format +msgid "Cannot add options for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:134 +#, python-format +msgid "Not adding options for plugin %s: No function 'add_options()'" +msgstr "" + +#: ../pykolab/plugins.py:152 +#, python-format +msgid "Cannot check options for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:154 +#, python-format +msgid "Not checking options for plugin %s: No function 'check_options()'" +msgstr "" + +#: ../pykolab/plugins.py:192 ../pykolab/plugins.py:194 +#, python-format +msgid "Cannot execute hook %s for plugin %s: %s" +msgstr "" + +#: ../pykolab/setup/ldap_setup.py:29 +msgid "Cannot load Python LDAP libraries." +msgstr "" + +#: ../pykolab/setup/ldap_setup.py:53 +#, python-format +msgid "Warning: LDAP Service '%s' is available on " +msgstr "" + +#: ../pykolab/setup/ldap_setup.py:56 +#, python-format +msgid "Found system service %s." +msgstr "" + +#. ldap_uri = utils.ask_question(_("LDAP URI (read/write)"), "ldap://ldap.%s" %(constants.domainname)) +#: ../pykolab/setup/ldap_setup.py:59 +msgid "LDAP URI (read/write)" +msgstr "" + +#. This is a funny input error ("") +#: ../pykolab/setup/ldap_setup.py:69 ../pykolab/setup/ldap_setup.py:76 +msgid "Could not connect to LDAP server due to " +msgstr "" + +#: ../pykolab/setup/ldap_setup.py:73 +msgid "Your username or password are incorrect" +msgstr "" + +#: ../pykolab/tests/calendar.py:146 +#, python-format +msgid "Creating %d Events" +msgstr "" + +#: ../pykolab/tests/calendar.py:177 +#, python-format +msgid "Creating Calendar item number %d" +msgstr "" + +#: ../pykolab/tests/calendar.py:189 ../pykolab/tests/contacts.py:133 +#, python-format +msgid "Sending UID message %s through SMTP targeting user %s@%s" +msgstr "" + +#: ../pykolab/tests/calendar.py:192 ../pykolab/tests/contacts.py:136 +#, python-format +msgid "Sending UID message %s through LMTP targeting user %s@%s" +msgstr "" + +#: ../pykolab/tests/calendar.py:195 ../pykolab/tests/contacts.py:139 +#, python-format +msgid "Saving UID message %s to IMAP (user %s, folder %s)" +msgstr "" + +#: ../pykolab/tests/calendar.py:198 ../pykolab/tests/contacts.py:142 +#: ../pykolab/tests/mail.py:125 +msgid "Somehow ended up NOT sending these messages" +msgstr "" + +#: ../pykolab/tests/contacts.py:97 +#, python-format +msgid "Creating %d Contacts" +msgstr "" + +#: ../pykolab/tests/contacts.py:121 +#, python-format +msgid "Creating Contact item number %d" +msgstr "" + +#: ../pykolab/tests/__init__.py:35 +msgid "Test Options" +msgstr "" + +#: ../pykolab/tests/__init__.py:42 +#, python-format +msgid "Submit a number of items to the %s" +msgstr "" + +#: ../pykolab/tests/__init__.py:48 +msgid "Run tests in suite SUITE. Implies a certain set of items being tested." +msgstr "" + +#: ../pykolab/tests/__init__.py:51 +msgid "Content Delivery Options" +msgstr "" + +#: ../pykolab/tests/__init__.py:57 +msgid "" +"Send messages containing the items through mail (requires proper " +"infrastructure)" +msgstr "" + +#: ../pykolab/tests/__init__.py:63 +msgid "Inject messages containing the items through IMAP (requires imaplib)" +msgstr "" + +#: ../pykolab/tests/__init__.py:69 +msgid "Deliver messages containing the items through LMTP (requires imaplib)" +msgstr "" + +#: ../pykolab/tests/__init__.py:80 +#, python-format +msgid "Tests for suite %s failed to load. Aborting." +msgstr "" + +#: ../pykolab/tests/mail.py:92 +#, python-format +msgid "Creating %d Mails" +msgstr "" + +#: ../pykolab/tests/mail.py:116 +#, python-format +msgid "Sending message %s through SMTP targeting user %s@%s" +msgstr "" + +#: ../pykolab/tests/mail.py:119 +#, python-format +msgid "Sending message %s through LMTP targeting user %s@%s" +msgstr "" + +#: ../pykolab/tests/mail.py:122 +#, python-format +msgid "Saving message %s to IMAP (user %s, folder %s)" +msgstr "" + +#: ../pykolab/tests/zpush/test_000_000.py:96 +#, python-format +msgid "Deleting mailbox: %s" +msgstr "" + +#: ../pykolab/tests/zpush/test_000_000.py:105 +#, python-format +msgid "Creating mailbox: %s" +msgstr "" + +#: ../pykolab/tests/zpush/test_000_000.py:121 +#, python-format +msgid "Authentication failure for %s" +msgstr "" + +#: ../pykolab/tests/zpush/test_000_001.py:48 +#, python-format +msgid "Could not load %sItem from %s, skipping the testing." +msgstr "" + +#: ../pykolab/utils.py:71 +msgid "Please answer 'yes' or 'no'." +msgstr "" + +#: ../setup-kolab.py:52 +#, python-format +msgid "Cannot find %s_setup()." +msgstr "" + +#: ../setup-kolab.py:54 +#, python-format +msgid "Cannot load setup for %s." +msgstr "" + +#. Means we get to ask some questions. +#: ../setup-kolab.py:58 +msgid "Please select the components to set up:" +msgstr "" + +#: ../setup-kolab.py:65 +msgid "Selection" +msgstr "" diff --git a/po/pl.po b/po/pl.po new file mode 100644 index 0000000..ae00f78 --- /dev/null +++ b/po/pl.po @@ -0,0 +1,563 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-02-21 21:23+0000\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" + +#: ../conf.py:37 ../kolabd.py:33 ../kolab.py:34 ../kolabtest.py:34 +#: ../setup-kolab.py:36 +msgid "Cannot load pykolab/logger.py:" +msgstr "" + +#: ../kolabd/__init__.py:44 ../pykolab-0.1/kolabd/__init__.py:44 +msgid "Daemon Options" +msgstr "" + +#: ../kolabd/__init__.py:50 ../pykolab-0.1/kolabd/__init__.py:50 +msgid "For to the background." +msgstr "" + +#: ../kolabd/__init__.py:78 ../pykolab-0.1/kolabd/__init__.py:78 +msgid "Interrupted by user" +msgstr "" + +#: ../kolabd/__init__.py:82 ../kolabd/__init__.py:90 +#: ../pykolab-0.1/kolabd/__init__.py:82 ../pykolab-0.1/kolabd/__init__.py:90 +msgid "Traceback occurred, please report a bug at http://issues.kolab.org" +msgstr "" + +#: ../kolabd/__init__.py:86 ../pykolab-0.1/kolabd/__init__.py:86 +#, python-format +msgid "Type Error: %s" +msgstr "" + +#: ../kolabd/__init__.py:95 ../pykolab-0.1/kolabd/__init__.py:95 +msgid "Sleeping for 10 seconds..." +msgstr "" + +#: ../pykolab/auth/ldap/__init__.py:42 +msgid "Connecting to LDAP..." +msgstr "" + +#: ../pykolab/cli/__init__.py:40 +msgid "Domain Options" +msgstr "" + +#: ../pykolab/cli/__init__.py:45 +msgid "Review LDIF before committed" +msgstr "" + +#: ../pykolab/cli/__init__.py:55 +#, python-format +msgid "TODO: self.check_%s()" +msgstr "" + +#: ../pykolab/cli/__init__.py:81 +#, python-format +msgid "Deleting domain %s" +msgstr "" + +#: ../pykolab/cli/__init__.py:93 +#, python-format +msgid "No domain %s exists." +msgstr "" + +#: ../pykolab/cli/__init__.py:99 +msgid "TODO: Figure out where the domain should actually be added." +msgstr "" + +#: ../pykolab/cli/__init__.py:103 +#, python-format +msgid "Adding domain %s" +msgstr "" + +#. The dn of our new entry/object +#: ../pykolab/cli/__init__.py:106 +msgid "TODO: Make the format for a new domain configurable." +msgstr "" + +#. A dict to help build the "body" of the object +#: ../pykolab/cli/__init__.py:110 +msgid "TODO: Make what a domain looks like configurable." +msgstr "" + +#: ../pykolab/cli/__init__.py:122 +msgid "" +"TODO: Prompt for organization name/description. For now, use domain name." +msgstr "" + +#: ../pykolab/cli/__init__.py:130 +msgid "Please ACK or NACK the above LDIF:" +msgstr "" + +#: ../pykolab/cli/__init__.py:146 +#, python-format +msgid "Domain %s already exists." +msgstr "" + +#: ../pykolab/cli/__init__.py:156 +msgid "Actions" +msgstr "" + +#: ../pykolab/conf/__init__.py:81 +#, python-format +msgid "Setting %s to %r (from defaults)" +msgstr "" + +#: ../pykolab/conf/__init__.py:92 +#, python-format +msgid "Setting %s to %r (from runtime)" +msgstr "" + +#: ../pykolab/conf/__init__.py:106 +#, python-format +msgid "Setting %s to %r (from CLI, verified)" +msgstr "" + +#: ../pykolab/conf/__init__.py:109 +#, python-format +msgid "Setting %s to %r (from CLI, not checked)" +msgstr "" + +#: ../pykolab/conf/__init__.py:154 ../pykolab/conf/__init__.py:208 +#, python-format +msgid "Setting %s_%s to '****' (from configuration file)" +msgstr "" + +#: ../pykolab/conf/__init__.py:156 ../pykolab/conf/__init__.py:210 +#, python-format +msgid "Setting %s_%s to %r (from configuration file)" +msgstr "" + +#: ../pykolab/conf/__init__.py:165 +msgid "Setting options from configuration file" +msgstr "" + +#: ../pykolab/conf/__init__.py:224 +#, python-format +msgid "Configuration file %s not readable" +msgstr "" + +#: ../pykolab/conf/__init__.py:227 +#, python-format +msgid "Reading configuration file %s" +msgstr "" + +#: ../pykolab/conf/__init__.py:231 +#, python-format +msgid "Invalid configuration file %s" +msgstr "" + +#: ../pykolab/conf/__init__.py:234 +#, python-format +msgid "No master configuration section [revisor] in configuration file %s" +msgstr "" + +#. # +#. # Runtime Options +#. # +#: ../pykolab/conf/__init__.py:253 +msgid "Runtime Options" +msgstr "" + +#: ../pykolab/conf/__init__.py:258 +msgid "Configuration file to use" +msgstr "" + +#: ../pykolab/conf/__init__.py:264 +msgid "Set the debugging verbosity. Maximum is 99" +msgstr "" + +#: ../pykolab/conf/__init__.py:270 +msgid "Log file to use" +msgstr "" + +#: ../pykolab/conf/__init__.py:276 +msgid "Be quiet." +msgstr "" + +#: ../pykolab/conf/__init__.py:282 +msgid "Answer yes to all questions." +msgstr "" + +#: ../pykolab/conf/__init__.py:310 +msgid "No command supplied" +msgstr "" + +#: ../pykolab/conf/__init__.py:392 +msgid "Insufficient options. Need section, key and value -in that order." +msgstr "" + +#: ../pykolab/conf/__init__.py:395 +#, python-format +msgid "No section '%s' exists." +msgstr "" + +#: ../pykolab/conf/__init__.py:424 +#, python-format +msgid "Setting %s to %r (from the default values for CLI options)" +msgstr "" + +#: ../pykolab/conf/__init__.py:441 +#, python-format +msgid "Option %s/%s does not exist in config file %s, pulling from defaults" +msgstr "" + +#: ../pykolab/conf/__init__.py:449 ../pykolab/conf/__init__.py:452 +msgid "Option does not exist in defaults." +msgstr "" + +#: ../pykolab/conf/__init__.py:450 ../pykolab/conf/__init__.py:453 +msgid "Not available" +msgstr "" + +#: ../pykolab/conf/__init__.py:462 +#, python-format +msgid "Configuration file %s not readable." +msgstr "" + +#: ../pykolab/conf/__init__.py:465 +#, python-format +msgid "Configuration file %s does not exist." +msgstr "" + +#: ../pykolab/conf/__init__.py:470 +msgid "" +"WARNING: A negative debug level value does not make this program be any more " +"silent." +msgstr "" + +#: ../pykolab/conf/__init__.py:476 +msgid "" +"WARNING: This program has 9 levels of verbosity. Using the maximum of 9." +msgstr "" + +#: ../pykolab/conf/__init__.py:486 +msgid "No imaplib library found." +msgstr "" + +#: ../pykolab/conf/__init__.py:496 +msgid "No LMTP class found in the smtplib library." +msgstr "" + +#: ../pykolab/conf/__init__.py:506 +msgid "No SMTP class found in the smtplib library." +msgstr "" + +#: ../pykolab/conf/__init__.py:517 +#, python-format +msgid "Found you specified a specific set of items to test: %s" +msgstr "" + +#: ../pykolab/conf/__init__.py:525 +#, python-format +msgid "Selectively selecting: %s" +msgstr "" + +#: ../pykolab/constants.py:39 +msgid "PyKolab is a Kolab Systems product. For more information " +msgstr "" + +#: ../pykolab/constants.py:53 +msgid "WARNING" +msgstr "" + +#: ../pykolab/constants.py:53 +msgid "The Fully Qualified " +msgstr "" + +#: ../pykolab/constants.py:73 +msgid "389 Directory Server or Red Hat Directory Server" +msgstr "" + +#: ../pykolab/constants.py:77 ../pykolab/constants.py:81 +msgid "OpenLDAP or compatible" +msgstr "" + +#: ../pykolab/imap/__init__.py:74 ../pykolab/imap/__init__.py:79 +#, python-format +msgid "Creating new INBOX for user: %s" +msgstr "" + +#: ../pykolab/imap/__init__.py:145 +#, python-format +msgid "Setting new quota for folder %s to %r" +msgstr "" + +#: ../pykolab/imap/__init__.py:149 +#, python-format +msgid "Quota for %s currently is %s" +msgstr "" + +#: ../pykolab/imap/__init__.py:152 +#, python-format +msgid "Correcting quota for %s to %s (currently %s)" +msgstr "" + +#: ../pykolab/imap/__init__.py:178 +#, python-format +msgid "Folder has no corresponding user (1): %s" +msgstr "" + +#: ../pykolab/imap/__init__.py:181 +#, python-format +msgid "Folder has no corresponding user (2): %s" +msgstr "" + +#: ../pykolab/logger.py:42 +#, python-format +msgid "Cannot log to file %s: %s" +msgstr "" + +#: ../pykolab/logger.py:87 ../pykolab/logger.py:96 +msgid "Do you want to continue? [Y/n]" +msgstr "" + +#: ../pykolab/logger.py:90 ../pykolab/logger.py:99 +msgid "Abort! Abort! Abort!" +msgstr "" + +#: ../pykolab/plugins.py:56 +#, python-format +msgid "ImportError for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:59 +#, python-format +msgid "RuntimeError for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:62 +#, python-format +msgid "Plugin %s failed to load (%s: %s)" +msgstr "" + +#: ../pykolab/plugins.py:89 ../pykolab/plugins.py:91 +#, python-format +msgid "Cannot set defaults for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:93 +#, python-format +msgid "Cannot set defaults for plugin %s: Unknown Error" +msgstr "" + +#: ../pykolab/plugins.py:96 +#, python-format +msgid "Not setting defaults for plugin %s: No function 'set_defaults()'" +msgstr "" + +#: ../pykolab/plugins.py:113 +#, python-format +msgid "Cannot set runtime for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:115 +#, python-format +msgid "Not setting runtime for plugin %s: No function 'set_runtime()'" +msgstr "" + +#: ../pykolab/plugins.py:132 +#, python-format +msgid "Cannot add options for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:134 +#, python-format +msgid "Not adding options for plugin %s: No function 'add_options()'" +msgstr "" + +#: ../pykolab/plugins.py:152 +#, python-format +msgid "Cannot check options for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:154 +#, python-format +msgid "Not checking options for plugin %s: No function 'check_options()'" +msgstr "" + +#: ../pykolab/plugins.py:192 ../pykolab/plugins.py:194 +#, python-format +msgid "Cannot execute hook %s for plugin %s: %s" +msgstr "" + +#: ../pykolab/setup/ldap_setup.py:29 +msgid "Cannot load Python LDAP libraries." +msgstr "" + +#: ../pykolab/setup/ldap_setup.py:53 +#, python-format +msgid "Warning: LDAP Service '%s' is available on " +msgstr "" + +#: ../pykolab/setup/ldap_setup.py:56 +#, python-format +msgid "Found system service %s." +msgstr "" + +#. ldap_uri = utils.ask_question(_("LDAP URI (read/write)"), "ldap://ldap.%s" %(constants.domainname)) +#: ../pykolab/setup/ldap_setup.py:59 +msgid "LDAP URI (read/write)" +msgstr "" + +#. This is a funny input error ("") +#: ../pykolab/setup/ldap_setup.py:69 ../pykolab/setup/ldap_setup.py:76 +msgid "Could not connect to LDAP server due to " +msgstr "" + +#: ../pykolab/setup/ldap_setup.py:73 +msgid "Your username or password are incorrect" +msgstr "" + +#: ../pykolab/tests/calendar.py:146 +#, python-format +msgid "Creating %d Events" +msgstr "" + +#: ../pykolab/tests/calendar.py:177 +#, python-format +msgid "Creating Calendar item number %d" +msgstr "" + +#: ../pykolab/tests/calendar.py:189 ../pykolab/tests/contacts.py:133 +#, python-format +msgid "Sending UID message %s through SMTP targeting user %s@%s" +msgstr "" + +#: ../pykolab/tests/calendar.py:192 ../pykolab/tests/contacts.py:136 +#, python-format +msgid "Sending UID message %s through LMTP targeting user %s@%s" +msgstr "" + +#: ../pykolab/tests/calendar.py:195 ../pykolab/tests/contacts.py:139 +#, python-format +msgid "Saving UID message %s to IMAP (user %s, folder %s)" +msgstr "" + +#: ../pykolab/tests/calendar.py:198 ../pykolab/tests/contacts.py:142 +#: ../pykolab/tests/mail.py:125 +msgid "Somehow ended up NOT sending these messages" +msgstr "" + +#: ../pykolab/tests/contacts.py:97 +#, python-format +msgid "Creating %d Contacts" +msgstr "" + +#: ../pykolab/tests/contacts.py:121 +#, python-format +msgid "Creating Contact item number %d" +msgstr "" + +#: ../pykolab/tests/__init__.py:35 +msgid "Test Options" +msgstr "" + +#: ../pykolab/tests/__init__.py:42 +#, python-format +msgid "Submit a number of items to the %s" +msgstr "" + +#: ../pykolab/tests/__init__.py:48 +msgid "Run tests in suite SUITE. Implies a certain set of items being tested." +msgstr "" + +#: ../pykolab/tests/__init__.py:51 +msgid "Content Delivery Options" +msgstr "" + +#: ../pykolab/tests/__init__.py:57 +msgid "" +"Send messages containing the items through mail (requires proper " +"infrastructure)" +msgstr "" + +#: ../pykolab/tests/__init__.py:63 +msgid "Inject messages containing the items through IMAP (requires imaplib)" +msgstr "" + +#: ../pykolab/tests/__init__.py:69 +msgid "Deliver messages containing the items through LMTP (requires imaplib)" +msgstr "" + +#: ../pykolab/tests/__init__.py:80 +#, python-format +msgid "Tests for suite %s failed to load. Aborting." +msgstr "" + +#: ../pykolab/tests/mail.py:92 +#, python-format +msgid "Creating %d Mails" +msgstr "" + +#: ../pykolab/tests/mail.py:116 +#, python-format +msgid "Sending message %s through SMTP targeting user %s@%s" +msgstr "" + +#: ../pykolab/tests/mail.py:119 +#, python-format +msgid "Sending message %s through LMTP targeting user %s@%s" +msgstr "" + +#: ../pykolab/tests/mail.py:122 +#, python-format +msgid "Saving message %s to IMAP (user %s, folder %s)" +msgstr "" + +#: ../pykolab/tests/zpush/test_000_000.py:96 +#, python-format +msgid "Deleting mailbox: %s" +msgstr "" + +#: ../pykolab/tests/zpush/test_000_000.py:105 +#, python-format +msgid "Creating mailbox: %s" +msgstr "" + +#: ../pykolab/tests/zpush/test_000_000.py:121 +#, python-format +msgid "Authentication failure for %s" +msgstr "" + +#: ../pykolab/tests/zpush/test_000_001.py:48 +#, python-format +msgid "Could not load %sItem from %s, skipping the testing." +msgstr "" + +#: ../pykolab/utils.py:71 +msgid "Please answer 'yes' or 'no'." +msgstr "" + +#: ../setup-kolab.py:52 +#, python-format +msgid "Cannot find %s_setup()." +msgstr "" + +#: ../setup-kolab.py:54 +#, python-format +msgid "Cannot load setup for %s." +msgstr "" + +#. Means we get to ask some questions. +#: ../setup-kolab.py:58 +msgid "Please select the components to set up:" +msgstr "" + +#: ../setup-kolab.py:65 +msgid "Selection" +msgstr "" diff --git a/po/pt.po b/po/pt.po new file mode 100644 index 0000000..ae00f78 --- /dev/null +++ b/po/pt.po @@ -0,0 +1,563 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-02-21 21:23+0000\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" + +#: ../conf.py:37 ../kolabd.py:33 ../kolab.py:34 ../kolabtest.py:34 +#: ../setup-kolab.py:36 +msgid "Cannot load pykolab/logger.py:" +msgstr "" + +#: ../kolabd/__init__.py:44 ../pykolab-0.1/kolabd/__init__.py:44 +msgid "Daemon Options" +msgstr "" + +#: ../kolabd/__init__.py:50 ../pykolab-0.1/kolabd/__init__.py:50 +msgid "For to the background." +msgstr "" + +#: ../kolabd/__init__.py:78 ../pykolab-0.1/kolabd/__init__.py:78 +msgid "Interrupted by user" +msgstr "" + +#: ../kolabd/__init__.py:82 ../kolabd/__init__.py:90 +#: ../pykolab-0.1/kolabd/__init__.py:82 ../pykolab-0.1/kolabd/__init__.py:90 +msgid "Traceback occurred, please report a bug at http://issues.kolab.org" +msgstr "" + +#: ../kolabd/__init__.py:86 ../pykolab-0.1/kolabd/__init__.py:86 +#, python-format +msgid "Type Error: %s" +msgstr "" + +#: ../kolabd/__init__.py:95 ../pykolab-0.1/kolabd/__init__.py:95 +msgid "Sleeping for 10 seconds..." +msgstr "" + +#: ../pykolab/auth/ldap/__init__.py:42 +msgid "Connecting to LDAP..." +msgstr "" + +#: ../pykolab/cli/__init__.py:40 +msgid "Domain Options" +msgstr "" + +#: ../pykolab/cli/__init__.py:45 +msgid "Review LDIF before committed" +msgstr "" + +#: ../pykolab/cli/__init__.py:55 +#, python-format +msgid "TODO: self.check_%s()" +msgstr "" + +#: ../pykolab/cli/__init__.py:81 +#, python-format +msgid "Deleting domain %s" +msgstr "" + +#: ../pykolab/cli/__init__.py:93 +#, python-format +msgid "No domain %s exists." +msgstr "" + +#: ../pykolab/cli/__init__.py:99 +msgid "TODO: Figure out where the domain should actually be added." +msgstr "" + +#: ../pykolab/cli/__init__.py:103 +#, python-format +msgid "Adding domain %s" +msgstr "" + +#. The dn of our new entry/object +#: ../pykolab/cli/__init__.py:106 +msgid "TODO: Make the format for a new domain configurable." +msgstr "" + +#. A dict to help build the "body" of the object +#: ../pykolab/cli/__init__.py:110 +msgid "TODO: Make what a domain looks like configurable." +msgstr "" + +#: ../pykolab/cli/__init__.py:122 +msgid "" +"TODO: Prompt for organization name/description. For now, use domain name." +msgstr "" + +#: ../pykolab/cli/__init__.py:130 +msgid "Please ACK or NACK the above LDIF:" +msgstr "" + +#: ../pykolab/cli/__init__.py:146 +#, python-format +msgid "Domain %s already exists." +msgstr "" + +#: ../pykolab/cli/__init__.py:156 +msgid "Actions" +msgstr "" + +#: ../pykolab/conf/__init__.py:81 +#, python-format +msgid "Setting %s to %r (from defaults)" +msgstr "" + +#: ../pykolab/conf/__init__.py:92 +#, python-format +msgid "Setting %s to %r (from runtime)" +msgstr "" + +#: ../pykolab/conf/__init__.py:106 +#, python-format +msgid "Setting %s to %r (from CLI, verified)" +msgstr "" + +#: ../pykolab/conf/__init__.py:109 +#, python-format +msgid "Setting %s to %r (from CLI, not checked)" +msgstr "" + +#: ../pykolab/conf/__init__.py:154 ../pykolab/conf/__init__.py:208 +#, python-format +msgid "Setting %s_%s to '****' (from configuration file)" +msgstr "" + +#: ../pykolab/conf/__init__.py:156 ../pykolab/conf/__init__.py:210 +#, python-format +msgid "Setting %s_%s to %r (from configuration file)" +msgstr "" + +#: ../pykolab/conf/__init__.py:165 +msgid "Setting options from configuration file" +msgstr "" + +#: ../pykolab/conf/__init__.py:224 +#, python-format +msgid "Configuration file %s not readable" +msgstr "" + +#: ../pykolab/conf/__init__.py:227 +#, python-format +msgid "Reading configuration file %s" +msgstr "" + +#: ../pykolab/conf/__init__.py:231 +#, python-format +msgid "Invalid configuration file %s" +msgstr "" + +#: ../pykolab/conf/__init__.py:234 +#, python-format +msgid "No master configuration section [revisor] in configuration file %s" +msgstr "" + +#. # +#. # Runtime Options +#. # +#: ../pykolab/conf/__init__.py:253 +msgid "Runtime Options" +msgstr "" + +#: ../pykolab/conf/__init__.py:258 +msgid "Configuration file to use" +msgstr "" + +#: ../pykolab/conf/__init__.py:264 +msgid "Set the debugging verbosity. Maximum is 99" +msgstr "" + +#: ../pykolab/conf/__init__.py:270 +msgid "Log file to use" +msgstr "" + +#: ../pykolab/conf/__init__.py:276 +msgid "Be quiet." +msgstr "" + +#: ../pykolab/conf/__init__.py:282 +msgid "Answer yes to all questions." +msgstr "" + +#: ../pykolab/conf/__init__.py:310 +msgid "No command supplied" +msgstr "" + +#: ../pykolab/conf/__init__.py:392 +msgid "Insufficient options. Need section, key and value -in that order." +msgstr "" + +#: ../pykolab/conf/__init__.py:395 +#, python-format +msgid "No section '%s' exists." +msgstr "" + +#: ../pykolab/conf/__init__.py:424 +#, python-format +msgid "Setting %s to %r (from the default values for CLI options)" +msgstr "" + +#: ../pykolab/conf/__init__.py:441 +#, python-format +msgid "Option %s/%s does not exist in config file %s, pulling from defaults" +msgstr "" + +#: ../pykolab/conf/__init__.py:449 ../pykolab/conf/__init__.py:452 +msgid "Option does not exist in defaults." +msgstr "" + +#: ../pykolab/conf/__init__.py:450 ../pykolab/conf/__init__.py:453 +msgid "Not available" +msgstr "" + +#: ../pykolab/conf/__init__.py:462 +#, python-format +msgid "Configuration file %s not readable." +msgstr "" + +#: ../pykolab/conf/__init__.py:465 +#, python-format +msgid "Configuration file %s does not exist." +msgstr "" + +#: ../pykolab/conf/__init__.py:470 +msgid "" +"WARNING: A negative debug level value does not make this program be any more " +"silent." +msgstr "" + +#: ../pykolab/conf/__init__.py:476 +msgid "" +"WARNING: This program has 9 levels of verbosity. Using the maximum of 9." +msgstr "" + +#: ../pykolab/conf/__init__.py:486 +msgid "No imaplib library found." +msgstr "" + +#: ../pykolab/conf/__init__.py:496 +msgid "No LMTP class found in the smtplib library." +msgstr "" + +#: ../pykolab/conf/__init__.py:506 +msgid "No SMTP class found in the smtplib library." +msgstr "" + +#: ../pykolab/conf/__init__.py:517 +#, python-format +msgid "Found you specified a specific set of items to test: %s" +msgstr "" + +#: ../pykolab/conf/__init__.py:525 +#, python-format +msgid "Selectively selecting: %s" +msgstr "" + +#: ../pykolab/constants.py:39 +msgid "PyKolab is a Kolab Systems product. For more information " +msgstr "" + +#: ../pykolab/constants.py:53 +msgid "WARNING" +msgstr "" + +#: ../pykolab/constants.py:53 +msgid "The Fully Qualified " +msgstr "" + +#: ../pykolab/constants.py:73 +msgid "389 Directory Server or Red Hat Directory Server" +msgstr "" + +#: ../pykolab/constants.py:77 ../pykolab/constants.py:81 +msgid "OpenLDAP or compatible" +msgstr "" + +#: ../pykolab/imap/__init__.py:74 ../pykolab/imap/__init__.py:79 +#, python-format +msgid "Creating new INBOX for user: %s" +msgstr "" + +#: ../pykolab/imap/__init__.py:145 +#, python-format +msgid "Setting new quota for folder %s to %r" +msgstr "" + +#: ../pykolab/imap/__init__.py:149 +#, python-format +msgid "Quota for %s currently is %s" +msgstr "" + +#: ../pykolab/imap/__init__.py:152 +#, python-format +msgid "Correcting quota for %s to %s (currently %s)" +msgstr "" + +#: ../pykolab/imap/__init__.py:178 +#, python-format +msgid "Folder has no corresponding user (1): %s" +msgstr "" + +#: ../pykolab/imap/__init__.py:181 +#, python-format +msgid "Folder has no corresponding user (2): %s" +msgstr "" + +#: ../pykolab/logger.py:42 +#, python-format +msgid "Cannot log to file %s: %s" +msgstr "" + +#: ../pykolab/logger.py:87 ../pykolab/logger.py:96 +msgid "Do you want to continue? [Y/n]" +msgstr "" + +#: ../pykolab/logger.py:90 ../pykolab/logger.py:99 +msgid "Abort! Abort! Abort!" +msgstr "" + +#: ../pykolab/plugins.py:56 +#, python-format +msgid "ImportError for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:59 +#, python-format +msgid "RuntimeError for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:62 +#, python-format +msgid "Plugin %s failed to load (%s: %s)" +msgstr "" + +#: ../pykolab/plugins.py:89 ../pykolab/plugins.py:91 +#, python-format +msgid "Cannot set defaults for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:93 +#, python-format +msgid "Cannot set defaults for plugin %s: Unknown Error" +msgstr "" + +#: ../pykolab/plugins.py:96 +#, python-format +msgid "Not setting defaults for plugin %s: No function 'set_defaults()'" +msgstr "" + +#: ../pykolab/plugins.py:113 +#, python-format +msgid "Cannot set runtime for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:115 +#, python-format +msgid "Not setting runtime for plugin %s: No function 'set_runtime()'" +msgstr "" + +#: ../pykolab/plugins.py:132 +#, python-format +msgid "Cannot add options for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:134 +#, python-format +msgid "Not adding options for plugin %s: No function 'add_options()'" +msgstr "" + +#: ../pykolab/plugins.py:152 +#, python-format +msgid "Cannot check options for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:154 +#, python-format +msgid "Not checking options for plugin %s: No function 'check_options()'" +msgstr "" + +#: ../pykolab/plugins.py:192 ../pykolab/plugins.py:194 +#, python-format +msgid "Cannot execute hook %s for plugin %s: %s" +msgstr "" + +#: ../pykolab/setup/ldap_setup.py:29 +msgid "Cannot load Python LDAP libraries." +msgstr "" + +#: ../pykolab/setup/ldap_setup.py:53 +#, python-format +msgid "Warning: LDAP Service '%s' is available on " +msgstr "" + +#: ../pykolab/setup/ldap_setup.py:56 +#, python-format +msgid "Found system service %s." +msgstr "" + +#. ldap_uri = utils.ask_question(_("LDAP URI (read/write)"), "ldap://ldap.%s" %(constants.domainname)) +#: ../pykolab/setup/ldap_setup.py:59 +msgid "LDAP URI (read/write)" +msgstr "" + +#. This is a funny input error ("") +#: ../pykolab/setup/ldap_setup.py:69 ../pykolab/setup/ldap_setup.py:76 +msgid "Could not connect to LDAP server due to " +msgstr "" + +#: ../pykolab/setup/ldap_setup.py:73 +msgid "Your username or password are incorrect" +msgstr "" + +#: ../pykolab/tests/calendar.py:146 +#, python-format +msgid "Creating %d Events" +msgstr "" + +#: ../pykolab/tests/calendar.py:177 +#, python-format +msgid "Creating Calendar item number %d" +msgstr "" + +#: ../pykolab/tests/calendar.py:189 ../pykolab/tests/contacts.py:133 +#, python-format +msgid "Sending UID message %s through SMTP targeting user %s@%s" +msgstr "" + +#: ../pykolab/tests/calendar.py:192 ../pykolab/tests/contacts.py:136 +#, python-format +msgid "Sending UID message %s through LMTP targeting user %s@%s" +msgstr "" + +#: ../pykolab/tests/calendar.py:195 ../pykolab/tests/contacts.py:139 +#, python-format +msgid "Saving UID message %s to IMAP (user %s, folder %s)" +msgstr "" + +#: ../pykolab/tests/calendar.py:198 ../pykolab/tests/contacts.py:142 +#: ../pykolab/tests/mail.py:125 +msgid "Somehow ended up NOT sending these messages" +msgstr "" + +#: ../pykolab/tests/contacts.py:97 +#, python-format +msgid "Creating %d Contacts" +msgstr "" + +#: ../pykolab/tests/contacts.py:121 +#, python-format +msgid "Creating Contact item number %d" +msgstr "" + +#: ../pykolab/tests/__init__.py:35 +msgid "Test Options" +msgstr "" + +#: ../pykolab/tests/__init__.py:42 +#, python-format +msgid "Submit a number of items to the %s" +msgstr "" + +#: ../pykolab/tests/__init__.py:48 +msgid "Run tests in suite SUITE. Implies a certain set of items being tested." +msgstr "" + +#: ../pykolab/tests/__init__.py:51 +msgid "Content Delivery Options" +msgstr "" + +#: ../pykolab/tests/__init__.py:57 +msgid "" +"Send messages containing the items through mail (requires proper " +"infrastructure)" +msgstr "" + +#: ../pykolab/tests/__init__.py:63 +msgid "Inject messages containing the items through IMAP (requires imaplib)" +msgstr "" + +#: ../pykolab/tests/__init__.py:69 +msgid "Deliver messages containing the items through LMTP (requires imaplib)" +msgstr "" + +#: ../pykolab/tests/__init__.py:80 +#, python-format +msgid "Tests for suite %s failed to load. Aborting." +msgstr "" + +#: ../pykolab/tests/mail.py:92 +#, python-format +msgid "Creating %d Mails" +msgstr "" + +#: ../pykolab/tests/mail.py:116 +#, python-format +msgid "Sending message %s through SMTP targeting user %s@%s" +msgstr "" + +#: ../pykolab/tests/mail.py:119 +#, python-format +msgid "Sending message %s through LMTP targeting user %s@%s" +msgstr "" + +#: ../pykolab/tests/mail.py:122 +#, python-format +msgid "Saving message %s to IMAP (user %s, folder %s)" +msgstr "" + +#: ../pykolab/tests/zpush/test_000_000.py:96 +#, python-format +msgid "Deleting mailbox: %s" +msgstr "" + +#: ../pykolab/tests/zpush/test_000_000.py:105 +#, python-format +msgid "Creating mailbox: %s" +msgstr "" + +#: ../pykolab/tests/zpush/test_000_000.py:121 +#, python-format +msgid "Authentication failure for %s" +msgstr "" + +#: ../pykolab/tests/zpush/test_000_001.py:48 +#, python-format +msgid "Could not load %sItem from %s, skipping the testing." +msgstr "" + +#: ../pykolab/utils.py:71 +msgid "Please answer 'yes' or 'no'." +msgstr "" + +#: ../setup-kolab.py:52 +#, python-format +msgid "Cannot find %s_setup()." +msgstr "" + +#: ../setup-kolab.py:54 +#, python-format +msgid "Cannot load setup for %s." +msgstr "" + +#. Means we get to ask some questions. +#: ../setup-kolab.py:58 +msgid "Please select the components to set up:" +msgstr "" + +#: ../setup-kolab.py:65 +msgid "Selection" +msgstr "" diff --git a/po/pt_BR.po b/po/pt_BR.po new file mode 100644 index 0000000..ae00f78 --- /dev/null +++ b/po/pt_BR.po @@ -0,0 +1,563 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-02-21 21:23+0000\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" + +#: ../conf.py:37 ../kolabd.py:33 ../kolab.py:34 ../kolabtest.py:34 +#: ../setup-kolab.py:36 +msgid "Cannot load pykolab/logger.py:" +msgstr "" + +#: ../kolabd/__init__.py:44 ../pykolab-0.1/kolabd/__init__.py:44 +msgid "Daemon Options" +msgstr "" + +#: ../kolabd/__init__.py:50 ../pykolab-0.1/kolabd/__init__.py:50 +msgid "For to the background." +msgstr "" + +#: ../kolabd/__init__.py:78 ../pykolab-0.1/kolabd/__init__.py:78 +msgid "Interrupted by user" +msgstr "" + +#: ../kolabd/__init__.py:82 ../kolabd/__init__.py:90 +#: ../pykolab-0.1/kolabd/__init__.py:82 ../pykolab-0.1/kolabd/__init__.py:90 +msgid "Traceback occurred, please report a bug at http://issues.kolab.org" +msgstr "" + +#: ../kolabd/__init__.py:86 ../pykolab-0.1/kolabd/__init__.py:86 +#, python-format +msgid "Type Error: %s" +msgstr "" + +#: ../kolabd/__init__.py:95 ../pykolab-0.1/kolabd/__init__.py:95 +msgid "Sleeping for 10 seconds..." +msgstr "" + +#: ../pykolab/auth/ldap/__init__.py:42 +msgid "Connecting to LDAP..." +msgstr "" + +#: ../pykolab/cli/__init__.py:40 +msgid "Domain Options" +msgstr "" + +#: ../pykolab/cli/__init__.py:45 +msgid "Review LDIF before committed" +msgstr "" + +#: ../pykolab/cli/__init__.py:55 +#, python-format +msgid "TODO: self.check_%s()" +msgstr "" + +#: ../pykolab/cli/__init__.py:81 +#, python-format +msgid "Deleting domain %s" +msgstr "" + +#: ../pykolab/cli/__init__.py:93 +#, python-format +msgid "No domain %s exists." +msgstr "" + +#: ../pykolab/cli/__init__.py:99 +msgid "TODO: Figure out where the domain should actually be added." +msgstr "" + +#: ../pykolab/cli/__init__.py:103 +#, python-format +msgid "Adding domain %s" +msgstr "" + +#. The dn of our new entry/object +#: ../pykolab/cli/__init__.py:106 +msgid "TODO: Make the format for a new domain configurable." +msgstr "" + +#. A dict to help build the "body" of the object +#: ../pykolab/cli/__init__.py:110 +msgid "TODO: Make what a domain looks like configurable." +msgstr "" + +#: ../pykolab/cli/__init__.py:122 +msgid "" +"TODO: Prompt for organization name/description. For now, use domain name." +msgstr "" + +#: ../pykolab/cli/__init__.py:130 +msgid "Please ACK or NACK the above LDIF:" +msgstr "" + +#: ../pykolab/cli/__init__.py:146 +#, python-format +msgid "Domain %s already exists." +msgstr "" + +#: ../pykolab/cli/__init__.py:156 +msgid "Actions" +msgstr "" + +#: ../pykolab/conf/__init__.py:81 +#, python-format +msgid "Setting %s to %r (from defaults)" +msgstr "" + +#: ../pykolab/conf/__init__.py:92 +#, python-format +msgid "Setting %s to %r (from runtime)" +msgstr "" + +#: ../pykolab/conf/__init__.py:106 +#, python-format +msgid "Setting %s to %r (from CLI, verified)" +msgstr "" + +#: ../pykolab/conf/__init__.py:109 +#, python-format +msgid "Setting %s to %r (from CLI, not checked)" +msgstr "" + +#: ../pykolab/conf/__init__.py:154 ../pykolab/conf/__init__.py:208 +#, python-format +msgid "Setting %s_%s to '****' (from configuration file)" +msgstr "" + +#: ../pykolab/conf/__init__.py:156 ../pykolab/conf/__init__.py:210 +#, python-format +msgid "Setting %s_%s to %r (from configuration file)" +msgstr "" + +#: ../pykolab/conf/__init__.py:165 +msgid "Setting options from configuration file" +msgstr "" + +#: ../pykolab/conf/__init__.py:224 +#, python-format +msgid "Configuration file %s not readable" +msgstr "" + +#: ../pykolab/conf/__init__.py:227 +#, python-format +msgid "Reading configuration file %s" +msgstr "" + +#: ../pykolab/conf/__init__.py:231 +#, python-format +msgid "Invalid configuration file %s" +msgstr "" + +#: ../pykolab/conf/__init__.py:234 +#, python-format +msgid "No master configuration section [revisor] in configuration file %s" +msgstr "" + +#. # +#. # Runtime Options +#. # +#: ../pykolab/conf/__init__.py:253 +msgid "Runtime Options" +msgstr "" + +#: ../pykolab/conf/__init__.py:258 +msgid "Configuration file to use" +msgstr "" + +#: ../pykolab/conf/__init__.py:264 +msgid "Set the debugging verbosity. Maximum is 99" +msgstr "" + +#: ../pykolab/conf/__init__.py:270 +msgid "Log file to use" +msgstr "" + +#: ../pykolab/conf/__init__.py:276 +msgid "Be quiet." +msgstr "" + +#: ../pykolab/conf/__init__.py:282 +msgid "Answer yes to all questions." +msgstr "" + +#: ../pykolab/conf/__init__.py:310 +msgid "No command supplied" +msgstr "" + +#: ../pykolab/conf/__init__.py:392 +msgid "Insufficient options. Need section, key and value -in that order." +msgstr "" + +#: ../pykolab/conf/__init__.py:395 +#, python-format +msgid "No section '%s' exists." +msgstr "" + +#: ../pykolab/conf/__init__.py:424 +#, python-format +msgid "Setting %s to %r (from the default values for CLI options)" +msgstr "" + +#: ../pykolab/conf/__init__.py:441 +#, python-format +msgid "Option %s/%s does not exist in config file %s, pulling from defaults" +msgstr "" + +#: ../pykolab/conf/__init__.py:449 ../pykolab/conf/__init__.py:452 +msgid "Option does not exist in defaults." +msgstr "" + +#: ../pykolab/conf/__init__.py:450 ../pykolab/conf/__init__.py:453 +msgid "Not available" +msgstr "" + +#: ../pykolab/conf/__init__.py:462 +#, python-format +msgid "Configuration file %s not readable." +msgstr "" + +#: ../pykolab/conf/__init__.py:465 +#, python-format +msgid "Configuration file %s does not exist." +msgstr "" + +#: ../pykolab/conf/__init__.py:470 +msgid "" +"WARNING: A negative debug level value does not make this program be any more " +"silent." +msgstr "" + +#: ../pykolab/conf/__init__.py:476 +msgid "" +"WARNING: This program has 9 levels of verbosity. Using the maximum of 9." +msgstr "" + +#: ../pykolab/conf/__init__.py:486 +msgid "No imaplib library found." +msgstr "" + +#: ../pykolab/conf/__init__.py:496 +msgid "No LMTP class found in the smtplib library." +msgstr "" + +#: ../pykolab/conf/__init__.py:506 +msgid "No SMTP class found in the smtplib library." +msgstr "" + +#: ../pykolab/conf/__init__.py:517 +#, python-format +msgid "Found you specified a specific set of items to test: %s" +msgstr "" + +#: ../pykolab/conf/__init__.py:525 +#, python-format +msgid "Selectively selecting: %s" +msgstr "" + +#: ../pykolab/constants.py:39 +msgid "PyKolab is a Kolab Systems product. For more information " +msgstr "" + +#: ../pykolab/constants.py:53 +msgid "WARNING" +msgstr "" + +#: ../pykolab/constants.py:53 +msgid "The Fully Qualified " +msgstr "" + +#: ../pykolab/constants.py:73 +msgid "389 Directory Server or Red Hat Directory Server" +msgstr "" + +#: ../pykolab/constants.py:77 ../pykolab/constants.py:81 +msgid "OpenLDAP or compatible" +msgstr "" + +#: ../pykolab/imap/__init__.py:74 ../pykolab/imap/__init__.py:79 +#, python-format +msgid "Creating new INBOX for user: %s" +msgstr "" + +#: ../pykolab/imap/__init__.py:145 +#, python-format +msgid "Setting new quota for folder %s to %r" +msgstr "" + +#: ../pykolab/imap/__init__.py:149 +#, python-format +msgid "Quota for %s currently is %s" +msgstr "" + +#: ../pykolab/imap/__init__.py:152 +#, python-format +msgid "Correcting quota for %s to %s (currently %s)" +msgstr "" + +#: ../pykolab/imap/__init__.py:178 +#, python-format +msgid "Folder has no corresponding user (1): %s" +msgstr "" + +#: ../pykolab/imap/__init__.py:181 +#, python-format +msgid "Folder has no corresponding user (2): %s" +msgstr "" + +#: ../pykolab/logger.py:42 +#, python-format +msgid "Cannot log to file %s: %s" +msgstr "" + +#: ../pykolab/logger.py:87 ../pykolab/logger.py:96 +msgid "Do you want to continue? [Y/n]" +msgstr "" + +#: ../pykolab/logger.py:90 ../pykolab/logger.py:99 +msgid "Abort! Abort! Abort!" +msgstr "" + +#: ../pykolab/plugins.py:56 +#, python-format +msgid "ImportError for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:59 +#, python-format +msgid "RuntimeError for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:62 +#, python-format +msgid "Plugin %s failed to load (%s: %s)" +msgstr "" + +#: ../pykolab/plugins.py:89 ../pykolab/plugins.py:91 +#, python-format +msgid "Cannot set defaults for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:93 +#, python-format +msgid "Cannot set defaults for plugin %s: Unknown Error" +msgstr "" + +#: ../pykolab/plugins.py:96 +#, python-format +msgid "Not setting defaults for plugin %s: No function 'set_defaults()'" +msgstr "" + +#: ../pykolab/plugins.py:113 +#, python-format +msgid "Cannot set runtime for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:115 +#, python-format +msgid "Not setting runtime for plugin %s: No function 'set_runtime()'" +msgstr "" + +#: ../pykolab/plugins.py:132 +#, python-format +msgid "Cannot add options for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:134 +#, python-format +msgid "Not adding options for plugin %s: No function 'add_options()'" +msgstr "" + +#: ../pykolab/plugins.py:152 +#, python-format +msgid "Cannot check options for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:154 +#, python-format +msgid "Not checking options for plugin %s: No function 'check_options()'" +msgstr "" + +#: ../pykolab/plugins.py:192 ../pykolab/plugins.py:194 +#, python-format +msgid "Cannot execute hook %s for plugin %s: %s" +msgstr "" + +#: ../pykolab/setup/ldap_setup.py:29 +msgid "Cannot load Python LDAP libraries." +msgstr "" + +#: ../pykolab/setup/ldap_setup.py:53 +#, python-format +msgid "Warning: LDAP Service '%s' is available on " +msgstr "" + +#: ../pykolab/setup/ldap_setup.py:56 +#, python-format +msgid "Found system service %s." +msgstr "" + +#. ldap_uri = utils.ask_question(_("LDAP URI (read/write)"), "ldap://ldap.%s" %(constants.domainname)) +#: ../pykolab/setup/ldap_setup.py:59 +msgid "LDAP URI (read/write)" +msgstr "" + +#. This is a funny input error ("") +#: ../pykolab/setup/ldap_setup.py:69 ../pykolab/setup/ldap_setup.py:76 +msgid "Could not connect to LDAP server due to " +msgstr "" + +#: ../pykolab/setup/ldap_setup.py:73 +msgid "Your username or password are incorrect" +msgstr "" + +#: ../pykolab/tests/calendar.py:146 +#, python-format +msgid "Creating %d Events" +msgstr "" + +#: ../pykolab/tests/calendar.py:177 +#, python-format +msgid "Creating Calendar item number %d" +msgstr "" + +#: ../pykolab/tests/calendar.py:189 ../pykolab/tests/contacts.py:133 +#, python-format +msgid "Sending UID message %s through SMTP targeting user %s@%s" +msgstr "" + +#: ../pykolab/tests/calendar.py:192 ../pykolab/tests/contacts.py:136 +#, python-format +msgid "Sending UID message %s through LMTP targeting user %s@%s" +msgstr "" + +#: ../pykolab/tests/calendar.py:195 ../pykolab/tests/contacts.py:139 +#, python-format +msgid "Saving UID message %s to IMAP (user %s, folder %s)" +msgstr "" + +#: ../pykolab/tests/calendar.py:198 ../pykolab/tests/contacts.py:142 +#: ../pykolab/tests/mail.py:125 +msgid "Somehow ended up NOT sending these messages" +msgstr "" + +#: ../pykolab/tests/contacts.py:97 +#, python-format +msgid "Creating %d Contacts" +msgstr "" + +#: ../pykolab/tests/contacts.py:121 +#, python-format +msgid "Creating Contact item number %d" +msgstr "" + +#: ../pykolab/tests/__init__.py:35 +msgid "Test Options" +msgstr "" + +#: ../pykolab/tests/__init__.py:42 +#, python-format +msgid "Submit a number of items to the %s" +msgstr "" + +#: ../pykolab/tests/__init__.py:48 +msgid "Run tests in suite SUITE. Implies a certain set of items being tested." +msgstr "" + +#: ../pykolab/tests/__init__.py:51 +msgid "Content Delivery Options" +msgstr "" + +#: ../pykolab/tests/__init__.py:57 +msgid "" +"Send messages containing the items through mail (requires proper " +"infrastructure)" +msgstr "" + +#: ../pykolab/tests/__init__.py:63 +msgid "Inject messages containing the items through IMAP (requires imaplib)" +msgstr "" + +#: ../pykolab/tests/__init__.py:69 +msgid "Deliver messages containing the items through LMTP (requires imaplib)" +msgstr "" + +#: ../pykolab/tests/__init__.py:80 +#, python-format +msgid "Tests for suite %s failed to load. Aborting." +msgstr "" + +#: ../pykolab/tests/mail.py:92 +#, python-format +msgid "Creating %d Mails" +msgstr "" + +#: ../pykolab/tests/mail.py:116 +#, python-format +msgid "Sending message %s through SMTP targeting user %s@%s" +msgstr "" + +#: ../pykolab/tests/mail.py:119 +#, python-format +msgid "Sending message %s through LMTP targeting user %s@%s" +msgstr "" + +#: ../pykolab/tests/mail.py:122 +#, python-format +msgid "Saving message %s to IMAP (user %s, folder %s)" +msgstr "" + +#: ../pykolab/tests/zpush/test_000_000.py:96 +#, python-format +msgid "Deleting mailbox: %s" +msgstr "" + +#: ../pykolab/tests/zpush/test_000_000.py:105 +#, python-format +msgid "Creating mailbox: %s" +msgstr "" + +#: ../pykolab/tests/zpush/test_000_000.py:121 +#, python-format +msgid "Authentication failure for %s" +msgstr "" + +#: ../pykolab/tests/zpush/test_000_001.py:48 +#, python-format +msgid "Could not load %sItem from %s, skipping the testing." +msgstr "" + +#: ../pykolab/utils.py:71 +msgid "Please answer 'yes' or 'no'." +msgstr "" + +#: ../setup-kolab.py:52 +#, python-format +msgid "Cannot find %s_setup()." +msgstr "" + +#: ../setup-kolab.py:54 +#, python-format +msgid "Cannot load setup for %s." +msgstr "" + +#. Means we get to ask some questions. +#: ../setup-kolab.py:58 +msgid "Please select the components to set up:" +msgstr "" + +#: ../setup-kolab.py:65 +msgid "Selection" +msgstr "" diff --git a/po/pykolab.pot b/po/pykolab.pot new file mode 100644 index 0000000..ae00f78 --- /dev/null +++ b/po/pykolab.pot @@ -0,0 +1,563 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-02-21 21:23+0000\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" + +#: ../conf.py:37 ../kolabd.py:33 ../kolab.py:34 ../kolabtest.py:34 +#: ../setup-kolab.py:36 +msgid "Cannot load pykolab/logger.py:" +msgstr "" + +#: ../kolabd/__init__.py:44 ../pykolab-0.1/kolabd/__init__.py:44 +msgid "Daemon Options" +msgstr "" + +#: ../kolabd/__init__.py:50 ../pykolab-0.1/kolabd/__init__.py:50 +msgid "For to the background." +msgstr "" + +#: ../kolabd/__init__.py:78 ../pykolab-0.1/kolabd/__init__.py:78 +msgid "Interrupted by user" +msgstr "" + +#: ../kolabd/__init__.py:82 ../kolabd/__init__.py:90 +#: ../pykolab-0.1/kolabd/__init__.py:82 ../pykolab-0.1/kolabd/__init__.py:90 +msgid "Traceback occurred, please report a bug at http://issues.kolab.org" +msgstr "" + +#: ../kolabd/__init__.py:86 ../pykolab-0.1/kolabd/__init__.py:86 +#, python-format +msgid "Type Error: %s" +msgstr "" + +#: ../kolabd/__init__.py:95 ../pykolab-0.1/kolabd/__init__.py:95 +msgid "Sleeping for 10 seconds..." +msgstr "" + +#: ../pykolab/auth/ldap/__init__.py:42 +msgid "Connecting to LDAP..." +msgstr "" + +#: ../pykolab/cli/__init__.py:40 +msgid "Domain Options" +msgstr "" + +#: ../pykolab/cli/__init__.py:45 +msgid "Review LDIF before committed" +msgstr "" + +#: ../pykolab/cli/__init__.py:55 +#, python-format +msgid "TODO: self.check_%s()" +msgstr "" + +#: ../pykolab/cli/__init__.py:81 +#, python-format +msgid "Deleting domain %s" +msgstr "" + +#: ../pykolab/cli/__init__.py:93 +#, python-format +msgid "No domain %s exists." +msgstr "" + +#: ../pykolab/cli/__init__.py:99 +msgid "TODO: Figure out where the domain should actually be added." +msgstr "" + +#: ../pykolab/cli/__init__.py:103 +#, python-format +msgid "Adding domain %s" +msgstr "" + +#. The dn of our new entry/object +#: ../pykolab/cli/__init__.py:106 +msgid "TODO: Make the format for a new domain configurable." +msgstr "" + +#. A dict to help build the "body" of the object +#: ../pykolab/cli/__init__.py:110 +msgid "TODO: Make what a domain looks like configurable." +msgstr "" + +#: ../pykolab/cli/__init__.py:122 +msgid "" +"TODO: Prompt for organization name/description. For now, use domain name." +msgstr "" + +#: ../pykolab/cli/__init__.py:130 +msgid "Please ACK or NACK the above LDIF:" +msgstr "" + +#: ../pykolab/cli/__init__.py:146 +#, python-format +msgid "Domain %s already exists." +msgstr "" + +#: ../pykolab/cli/__init__.py:156 +msgid "Actions" +msgstr "" + +#: ../pykolab/conf/__init__.py:81 +#, python-format +msgid "Setting %s to %r (from defaults)" +msgstr "" + +#: ../pykolab/conf/__init__.py:92 +#, python-format +msgid "Setting %s to %r (from runtime)" +msgstr "" + +#: ../pykolab/conf/__init__.py:106 +#, python-format +msgid "Setting %s to %r (from CLI, verified)" +msgstr "" + +#: ../pykolab/conf/__init__.py:109 +#, python-format +msgid "Setting %s to %r (from CLI, not checked)" +msgstr "" + +#: ../pykolab/conf/__init__.py:154 ../pykolab/conf/__init__.py:208 +#, python-format +msgid "Setting %s_%s to '****' (from configuration file)" +msgstr "" + +#: ../pykolab/conf/__init__.py:156 ../pykolab/conf/__init__.py:210 +#, python-format +msgid "Setting %s_%s to %r (from configuration file)" +msgstr "" + +#: ../pykolab/conf/__init__.py:165 +msgid "Setting options from configuration file" +msgstr "" + +#: ../pykolab/conf/__init__.py:224 +#, python-format +msgid "Configuration file %s not readable" +msgstr "" + +#: ../pykolab/conf/__init__.py:227 +#, python-format +msgid "Reading configuration file %s" +msgstr "" + +#: ../pykolab/conf/__init__.py:231 +#, python-format +msgid "Invalid configuration file %s" +msgstr "" + +#: ../pykolab/conf/__init__.py:234 +#, python-format +msgid "No master configuration section [revisor] in configuration file %s" +msgstr "" + +#. # +#. # Runtime Options +#. # +#: ../pykolab/conf/__init__.py:253 +msgid "Runtime Options" +msgstr "" + +#: ../pykolab/conf/__init__.py:258 +msgid "Configuration file to use" +msgstr "" + +#: ../pykolab/conf/__init__.py:264 +msgid "Set the debugging verbosity. Maximum is 99" +msgstr "" + +#: ../pykolab/conf/__init__.py:270 +msgid "Log file to use" +msgstr "" + +#: ../pykolab/conf/__init__.py:276 +msgid "Be quiet." +msgstr "" + +#: ../pykolab/conf/__init__.py:282 +msgid "Answer yes to all questions." +msgstr "" + +#: ../pykolab/conf/__init__.py:310 +msgid "No command supplied" +msgstr "" + +#: ../pykolab/conf/__init__.py:392 +msgid "Insufficient options. Need section, key and value -in that order." +msgstr "" + +#: ../pykolab/conf/__init__.py:395 +#, python-format +msgid "No section '%s' exists." +msgstr "" + +#: ../pykolab/conf/__init__.py:424 +#, python-format +msgid "Setting %s to %r (from the default values for CLI options)" +msgstr "" + +#: ../pykolab/conf/__init__.py:441 +#, python-format +msgid "Option %s/%s does not exist in config file %s, pulling from defaults" +msgstr "" + +#: ../pykolab/conf/__init__.py:449 ../pykolab/conf/__init__.py:452 +msgid "Option does not exist in defaults." +msgstr "" + +#: ../pykolab/conf/__init__.py:450 ../pykolab/conf/__init__.py:453 +msgid "Not available" +msgstr "" + +#: ../pykolab/conf/__init__.py:462 +#, python-format +msgid "Configuration file %s not readable." +msgstr "" + +#: ../pykolab/conf/__init__.py:465 +#, python-format +msgid "Configuration file %s does not exist." +msgstr "" + +#: ../pykolab/conf/__init__.py:470 +msgid "" +"WARNING: A negative debug level value does not make this program be any more " +"silent." +msgstr "" + +#: ../pykolab/conf/__init__.py:476 +msgid "" +"WARNING: This program has 9 levels of verbosity. Using the maximum of 9." +msgstr "" + +#: ../pykolab/conf/__init__.py:486 +msgid "No imaplib library found." +msgstr "" + +#: ../pykolab/conf/__init__.py:496 +msgid "No LMTP class found in the smtplib library." +msgstr "" + +#: ../pykolab/conf/__init__.py:506 +msgid "No SMTP class found in the smtplib library." +msgstr "" + +#: ../pykolab/conf/__init__.py:517 +#, python-format +msgid "Found you specified a specific set of items to test: %s" +msgstr "" + +#: ../pykolab/conf/__init__.py:525 +#, python-format +msgid "Selectively selecting: %s" +msgstr "" + +#: ../pykolab/constants.py:39 +msgid "PyKolab is a Kolab Systems product. For more information " +msgstr "" + +#: ../pykolab/constants.py:53 +msgid "WARNING" +msgstr "" + +#: ../pykolab/constants.py:53 +msgid "The Fully Qualified " +msgstr "" + +#: ../pykolab/constants.py:73 +msgid "389 Directory Server or Red Hat Directory Server" +msgstr "" + +#: ../pykolab/constants.py:77 ../pykolab/constants.py:81 +msgid "OpenLDAP or compatible" +msgstr "" + +#: ../pykolab/imap/__init__.py:74 ../pykolab/imap/__init__.py:79 +#, python-format +msgid "Creating new INBOX for user: %s" +msgstr "" + +#: ../pykolab/imap/__init__.py:145 +#, python-format +msgid "Setting new quota for folder %s to %r" +msgstr "" + +#: ../pykolab/imap/__init__.py:149 +#, python-format +msgid "Quota for %s currently is %s" +msgstr "" + +#: ../pykolab/imap/__init__.py:152 +#, python-format +msgid "Correcting quota for %s to %s (currently %s)" +msgstr "" + +#: ../pykolab/imap/__init__.py:178 +#, python-format +msgid "Folder has no corresponding user (1): %s" +msgstr "" + +#: ../pykolab/imap/__init__.py:181 +#, python-format +msgid "Folder has no corresponding user (2): %s" +msgstr "" + +#: ../pykolab/logger.py:42 +#, python-format +msgid "Cannot log to file %s: %s" +msgstr "" + +#: ../pykolab/logger.py:87 ../pykolab/logger.py:96 +msgid "Do you want to continue? [Y/n]" +msgstr "" + +#: ../pykolab/logger.py:90 ../pykolab/logger.py:99 +msgid "Abort! Abort! Abort!" +msgstr "" + +#: ../pykolab/plugins.py:56 +#, python-format +msgid "ImportError for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:59 +#, python-format +msgid "RuntimeError for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:62 +#, python-format +msgid "Plugin %s failed to load (%s: %s)" +msgstr "" + +#: ../pykolab/plugins.py:89 ../pykolab/plugins.py:91 +#, python-format +msgid "Cannot set defaults for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:93 +#, python-format +msgid "Cannot set defaults for plugin %s: Unknown Error" +msgstr "" + +#: ../pykolab/plugins.py:96 +#, python-format +msgid "Not setting defaults for plugin %s: No function 'set_defaults()'" +msgstr "" + +#: ../pykolab/plugins.py:113 +#, python-format +msgid "Cannot set runtime for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:115 +#, python-format +msgid "Not setting runtime for plugin %s: No function 'set_runtime()'" +msgstr "" + +#: ../pykolab/plugins.py:132 +#, python-format +msgid "Cannot add options for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:134 +#, python-format +msgid "Not adding options for plugin %s: No function 'add_options()'" +msgstr "" + +#: ../pykolab/plugins.py:152 +#, python-format +msgid "Cannot check options for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:154 +#, python-format +msgid "Not checking options for plugin %s: No function 'check_options()'" +msgstr "" + +#: ../pykolab/plugins.py:192 ../pykolab/plugins.py:194 +#, python-format +msgid "Cannot execute hook %s for plugin %s: %s" +msgstr "" + +#: ../pykolab/setup/ldap_setup.py:29 +msgid "Cannot load Python LDAP libraries." +msgstr "" + +#: ../pykolab/setup/ldap_setup.py:53 +#, python-format +msgid "Warning: LDAP Service '%s' is available on " +msgstr "" + +#: ../pykolab/setup/ldap_setup.py:56 +#, python-format +msgid "Found system service %s." +msgstr "" + +#. ldap_uri = utils.ask_question(_("LDAP URI (read/write)"), "ldap://ldap.%s" %(constants.domainname)) +#: ../pykolab/setup/ldap_setup.py:59 +msgid "LDAP URI (read/write)" +msgstr "" + +#. This is a funny input error ("") +#: ../pykolab/setup/ldap_setup.py:69 ../pykolab/setup/ldap_setup.py:76 +msgid "Could not connect to LDAP server due to " +msgstr "" + +#: ../pykolab/setup/ldap_setup.py:73 +msgid "Your username or password are incorrect" +msgstr "" + +#: ../pykolab/tests/calendar.py:146 +#, python-format +msgid "Creating %d Events" +msgstr "" + +#: ../pykolab/tests/calendar.py:177 +#, python-format +msgid "Creating Calendar item number %d" +msgstr "" + +#: ../pykolab/tests/calendar.py:189 ../pykolab/tests/contacts.py:133 +#, python-format +msgid "Sending UID message %s through SMTP targeting user %s@%s" +msgstr "" + +#: ../pykolab/tests/calendar.py:192 ../pykolab/tests/contacts.py:136 +#, python-format +msgid "Sending UID message %s through LMTP targeting user %s@%s" +msgstr "" + +#: ../pykolab/tests/calendar.py:195 ../pykolab/tests/contacts.py:139 +#, python-format +msgid "Saving UID message %s to IMAP (user %s, folder %s)" +msgstr "" + +#: ../pykolab/tests/calendar.py:198 ../pykolab/tests/contacts.py:142 +#: ../pykolab/tests/mail.py:125 +msgid "Somehow ended up NOT sending these messages" +msgstr "" + +#: ../pykolab/tests/contacts.py:97 +#, python-format +msgid "Creating %d Contacts" +msgstr "" + +#: ../pykolab/tests/contacts.py:121 +#, python-format +msgid "Creating Contact item number %d" +msgstr "" + +#: ../pykolab/tests/__init__.py:35 +msgid "Test Options" +msgstr "" + +#: ../pykolab/tests/__init__.py:42 +#, python-format +msgid "Submit a number of items to the %s" +msgstr "" + +#: ../pykolab/tests/__init__.py:48 +msgid "Run tests in suite SUITE. Implies a certain set of items being tested." +msgstr "" + +#: ../pykolab/tests/__init__.py:51 +msgid "Content Delivery Options" +msgstr "" + +#: ../pykolab/tests/__init__.py:57 +msgid "" +"Send messages containing the items through mail (requires proper " +"infrastructure)" +msgstr "" + +#: ../pykolab/tests/__init__.py:63 +msgid "Inject messages containing the items through IMAP (requires imaplib)" +msgstr "" + +#: ../pykolab/tests/__init__.py:69 +msgid "Deliver messages containing the items through LMTP (requires imaplib)" +msgstr "" + +#: ../pykolab/tests/__init__.py:80 +#, python-format +msgid "Tests for suite %s failed to load. Aborting." +msgstr "" + +#: ../pykolab/tests/mail.py:92 +#, python-format +msgid "Creating %d Mails" +msgstr "" + +#: ../pykolab/tests/mail.py:116 +#, python-format +msgid "Sending message %s through SMTP targeting user %s@%s" +msgstr "" + +#: ../pykolab/tests/mail.py:119 +#, python-format +msgid "Sending message %s through LMTP targeting user %s@%s" +msgstr "" + +#: ../pykolab/tests/mail.py:122 +#, python-format +msgid "Saving message %s to IMAP (user %s, folder %s)" +msgstr "" + +#: ../pykolab/tests/zpush/test_000_000.py:96 +#, python-format +msgid "Deleting mailbox: %s" +msgstr "" + +#: ../pykolab/tests/zpush/test_000_000.py:105 +#, python-format +msgid "Creating mailbox: %s" +msgstr "" + +#: ../pykolab/tests/zpush/test_000_000.py:121 +#, python-format +msgid "Authentication failure for %s" +msgstr "" + +#: ../pykolab/tests/zpush/test_000_001.py:48 +#, python-format +msgid "Could not load %sItem from %s, skipping the testing." +msgstr "" + +#: ../pykolab/utils.py:71 +msgid "Please answer 'yes' or 'no'." +msgstr "" + +#: ../setup-kolab.py:52 +#, python-format +msgid "Cannot find %s_setup()." +msgstr "" + +#: ../setup-kolab.py:54 +#, python-format +msgid "Cannot load setup for %s." +msgstr "" + +#. Means we get to ask some questions. +#: ../setup-kolab.py:58 +msgid "Please select the components to set up:" +msgstr "" + +#: ../setup-kolab.py:65 +msgid "Selection" +msgstr "" diff --git a/po/ru.po b/po/ru.po new file mode 100644 index 0000000..ae00f78 --- /dev/null +++ b/po/ru.po @@ -0,0 +1,563 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-02-21 21:23+0000\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" + +#: ../conf.py:37 ../kolabd.py:33 ../kolab.py:34 ../kolabtest.py:34 +#: ../setup-kolab.py:36 +msgid "Cannot load pykolab/logger.py:" +msgstr "" + +#: ../kolabd/__init__.py:44 ../pykolab-0.1/kolabd/__init__.py:44 +msgid "Daemon Options" +msgstr "" + +#: ../kolabd/__init__.py:50 ../pykolab-0.1/kolabd/__init__.py:50 +msgid "For to the background." +msgstr "" + +#: ../kolabd/__init__.py:78 ../pykolab-0.1/kolabd/__init__.py:78 +msgid "Interrupted by user" +msgstr "" + +#: ../kolabd/__init__.py:82 ../kolabd/__init__.py:90 +#: ../pykolab-0.1/kolabd/__init__.py:82 ../pykolab-0.1/kolabd/__init__.py:90 +msgid "Traceback occurred, please report a bug at http://issues.kolab.org" +msgstr "" + +#: ../kolabd/__init__.py:86 ../pykolab-0.1/kolabd/__init__.py:86 +#, python-format +msgid "Type Error: %s" +msgstr "" + +#: ../kolabd/__init__.py:95 ../pykolab-0.1/kolabd/__init__.py:95 +msgid "Sleeping for 10 seconds..." +msgstr "" + +#: ../pykolab/auth/ldap/__init__.py:42 +msgid "Connecting to LDAP..." +msgstr "" + +#: ../pykolab/cli/__init__.py:40 +msgid "Domain Options" +msgstr "" + +#: ../pykolab/cli/__init__.py:45 +msgid "Review LDIF before committed" +msgstr "" + +#: ../pykolab/cli/__init__.py:55 +#, python-format +msgid "TODO: self.check_%s()" +msgstr "" + +#: ../pykolab/cli/__init__.py:81 +#, python-format +msgid "Deleting domain %s" +msgstr "" + +#: ../pykolab/cli/__init__.py:93 +#, python-format +msgid "No domain %s exists." +msgstr "" + +#: ../pykolab/cli/__init__.py:99 +msgid "TODO: Figure out where the domain should actually be added." +msgstr "" + +#: ../pykolab/cli/__init__.py:103 +#, python-format +msgid "Adding domain %s" +msgstr "" + +#. The dn of our new entry/object +#: ../pykolab/cli/__init__.py:106 +msgid "TODO: Make the format for a new domain configurable." +msgstr "" + +#. A dict to help build the "body" of the object +#: ../pykolab/cli/__init__.py:110 +msgid "TODO: Make what a domain looks like configurable." +msgstr "" + +#: ../pykolab/cli/__init__.py:122 +msgid "" +"TODO: Prompt for organization name/description. For now, use domain name." +msgstr "" + +#: ../pykolab/cli/__init__.py:130 +msgid "Please ACK or NACK the above LDIF:" +msgstr "" + +#: ../pykolab/cli/__init__.py:146 +#, python-format +msgid "Domain %s already exists." +msgstr "" + +#: ../pykolab/cli/__init__.py:156 +msgid "Actions" +msgstr "" + +#: ../pykolab/conf/__init__.py:81 +#, python-format +msgid "Setting %s to %r (from defaults)" +msgstr "" + +#: ../pykolab/conf/__init__.py:92 +#, python-format +msgid "Setting %s to %r (from runtime)" +msgstr "" + +#: ../pykolab/conf/__init__.py:106 +#, python-format +msgid "Setting %s to %r (from CLI, verified)" +msgstr "" + +#: ../pykolab/conf/__init__.py:109 +#, python-format +msgid "Setting %s to %r (from CLI, not checked)" +msgstr "" + +#: ../pykolab/conf/__init__.py:154 ../pykolab/conf/__init__.py:208 +#, python-format +msgid "Setting %s_%s to '****' (from configuration file)" +msgstr "" + +#: ../pykolab/conf/__init__.py:156 ../pykolab/conf/__init__.py:210 +#, python-format +msgid "Setting %s_%s to %r (from configuration file)" +msgstr "" + +#: ../pykolab/conf/__init__.py:165 +msgid "Setting options from configuration file" +msgstr "" + +#: ../pykolab/conf/__init__.py:224 +#, python-format +msgid "Configuration file %s not readable" +msgstr "" + +#: ../pykolab/conf/__init__.py:227 +#, python-format +msgid "Reading configuration file %s" +msgstr "" + +#: ../pykolab/conf/__init__.py:231 +#, python-format +msgid "Invalid configuration file %s" +msgstr "" + +#: ../pykolab/conf/__init__.py:234 +#, python-format +msgid "No master configuration section [revisor] in configuration file %s" +msgstr "" + +#. # +#. # Runtime Options +#. # +#: ../pykolab/conf/__init__.py:253 +msgid "Runtime Options" +msgstr "" + +#: ../pykolab/conf/__init__.py:258 +msgid "Configuration file to use" +msgstr "" + +#: ../pykolab/conf/__init__.py:264 +msgid "Set the debugging verbosity. Maximum is 99" +msgstr "" + +#: ../pykolab/conf/__init__.py:270 +msgid "Log file to use" +msgstr "" + +#: ../pykolab/conf/__init__.py:276 +msgid "Be quiet." +msgstr "" + +#: ../pykolab/conf/__init__.py:282 +msgid "Answer yes to all questions." +msgstr "" + +#: ../pykolab/conf/__init__.py:310 +msgid "No command supplied" +msgstr "" + +#: ../pykolab/conf/__init__.py:392 +msgid "Insufficient options. Need section, key and value -in that order." +msgstr "" + +#: ../pykolab/conf/__init__.py:395 +#, python-format +msgid "No section '%s' exists." +msgstr "" + +#: ../pykolab/conf/__init__.py:424 +#, python-format +msgid "Setting %s to %r (from the default values for CLI options)" +msgstr "" + +#: ../pykolab/conf/__init__.py:441 +#, python-format +msgid "Option %s/%s does not exist in config file %s, pulling from defaults" +msgstr "" + +#: ../pykolab/conf/__init__.py:449 ../pykolab/conf/__init__.py:452 +msgid "Option does not exist in defaults." +msgstr "" + +#: ../pykolab/conf/__init__.py:450 ../pykolab/conf/__init__.py:453 +msgid "Not available" +msgstr "" + +#: ../pykolab/conf/__init__.py:462 +#, python-format +msgid "Configuration file %s not readable." +msgstr "" + +#: ../pykolab/conf/__init__.py:465 +#, python-format +msgid "Configuration file %s does not exist." +msgstr "" + +#: ../pykolab/conf/__init__.py:470 +msgid "" +"WARNING: A negative debug level value does not make this program be any more " +"silent." +msgstr "" + +#: ../pykolab/conf/__init__.py:476 +msgid "" +"WARNING: This program has 9 levels of verbosity. Using the maximum of 9." +msgstr "" + +#: ../pykolab/conf/__init__.py:486 +msgid "No imaplib library found." +msgstr "" + +#: ../pykolab/conf/__init__.py:496 +msgid "No LMTP class found in the smtplib library." +msgstr "" + +#: ../pykolab/conf/__init__.py:506 +msgid "No SMTP class found in the smtplib library." +msgstr "" + +#: ../pykolab/conf/__init__.py:517 +#, python-format +msgid "Found you specified a specific set of items to test: %s" +msgstr "" + +#: ../pykolab/conf/__init__.py:525 +#, python-format +msgid "Selectively selecting: %s" +msgstr "" + +#: ../pykolab/constants.py:39 +msgid "PyKolab is a Kolab Systems product. For more information " +msgstr "" + +#: ../pykolab/constants.py:53 +msgid "WARNING" +msgstr "" + +#: ../pykolab/constants.py:53 +msgid "The Fully Qualified " +msgstr "" + +#: ../pykolab/constants.py:73 +msgid "389 Directory Server or Red Hat Directory Server" +msgstr "" + +#: ../pykolab/constants.py:77 ../pykolab/constants.py:81 +msgid "OpenLDAP or compatible" +msgstr "" + +#: ../pykolab/imap/__init__.py:74 ../pykolab/imap/__init__.py:79 +#, python-format +msgid "Creating new INBOX for user: %s" +msgstr "" + +#: ../pykolab/imap/__init__.py:145 +#, python-format +msgid "Setting new quota for folder %s to %r" +msgstr "" + +#: ../pykolab/imap/__init__.py:149 +#, python-format +msgid "Quota for %s currently is %s" +msgstr "" + +#: ../pykolab/imap/__init__.py:152 +#, python-format +msgid "Correcting quota for %s to %s (currently %s)" +msgstr "" + +#: ../pykolab/imap/__init__.py:178 +#, python-format +msgid "Folder has no corresponding user (1): %s" +msgstr "" + +#: ../pykolab/imap/__init__.py:181 +#, python-format +msgid "Folder has no corresponding user (2): %s" +msgstr "" + +#: ../pykolab/logger.py:42 +#, python-format +msgid "Cannot log to file %s: %s" +msgstr "" + +#: ../pykolab/logger.py:87 ../pykolab/logger.py:96 +msgid "Do you want to continue? [Y/n]" +msgstr "" + +#: ../pykolab/logger.py:90 ../pykolab/logger.py:99 +msgid "Abort! Abort! Abort!" +msgstr "" + +#: ../pykolab/plugins.py:56 +#, python-format +msgid "ImportError for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:59 +#, python-format +msgid "RuntimeError for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:62 +#, python-format +msgid "Plugin %s failed to load (%s: %s)" +msgstr "" + +#: ../pykolab/plugins.py:89 ../pykolab/plugins.py:91 +#, python-format +msgid "Cannot set defaults for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:93 +#, python-format +msgid "Cannot set defaults for plugin %s: Unknown Error" +msgstr "" + +#: ../pykolab/plugins.py:96 +#, python-format +msgid "Not setting defaults for plugin %s: No function 'set_defaults()'" +msgstr "" + +#: ../pykolab/plugins.py:113 +#, python-format +msgid "Cannot set runtime for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:115 +#, python-format +msgid "Not setting runtime for plugin %s: No function 'set_runtime()'" +msgstr "" + +#: ../pykolab/plugins.py:132 +#, python-format +msgid "Cannot add options for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:134 +#, python-format +msgid "Not adding options for plugin %s: No function 'add_options()'" +msgstr "" + +#: ../pykolab/plugins.py:152 +#, python-format +msgid "Cannot check options for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:154 +#, python-format +msgid "Not checking options for plugin %s: No function 'check_options()'" +msgstr "" + +#: ../pykolab/plugins.py:192 ../pykolab/plugins.py:194 +#, python-format +msgid "Cannot execute hook %s for plugin %s: %s" +msgstr "" + +#: ../pykolab/setup/ldap_setup.py:29 +msgid "Cannot load Python LDAP libraries." +msgstr "" + +#: ../pykolab/setup/ldap_setup.py:53 +#, python-format +msgid "Warning: LDAP Service '%s' is available on " +msgstr "" + +#: ../pykolab/setup/ldap_setup.py:56 +#, python-format +msgid "Found system service %s." +msgstr "" + +#. ldap_uri = utils.ask_question(_("LDAP URI (read/write)"), "ldap://ldap.%s" %(constants.domainname)) +#: ../pykolab/setup/ldap_setup.py:59 +msgid "LDAP URI (read/write)" +msgstr "" + +#. This is a funny input error ("") +#: ../pykolab/setup/ldap_setup.py:69 ../pykolab/setup/ldap_setup.py:76 +msgid "Could not connect to LDAP server due to " +msgstr "" + +#: ../pykolab/setup/ldap_setup.py:73 +msgid "Your username or password are incorrect" +msgstr "" + +#: ../pykolab/tests/calendar.py:146 +#, python-format +msgid "Creating %d Events" +msgstr "" + +#: ../pykolab/tests/calendar.py:177 +#, python-format +msgid "Creating Calendar item number %d" +msgstr "" + +#: ../pykolab/tests/calendar.py:189 ../pykolab/tests/contacts.py:133 +#, python-format +msgid "Sending UID message %s through SMTP targeting user %s@%s" +msgstr "" + +#: ../pykolab/tests/calendar.py:192 ../pykolab/tests/contacts.py:136 +#, python-format +msgid "Sending UID message %s through LMTP targeting user %s@%s" +msgstr "" + +#: ../pykolab/tests/calendar.py:195 ../pykolab/tests/contacts.py:139 +#, python-format +msgid "Saving UID message %s to IMAP (user %s, folder %s)" +msgstr "" + +#: ../pykolab/tests/calendar.py:198 ../pykolab/tests/contacts.py:142 +#: ../pykolab/tests/mail.py:125 +msgid "Somehow ended up NOT sending these messages" +msgstr "" + +#: ../pykolab/tests/contacts.py:97 +#, python-format +msgid "Creating %d Contacts" +msgstr "" + +#: ../pykolab/tests/contacts.py:121 +#, python-format +msgid "Creating Contact item number %d" +msgstr "" + +#: ../pykolab/tests/__init__.py:35 +msgid "Test Options" +msgstr "" + +#: ../pykolab/tests/__init__.py:42 +#, python-format +msgid "Submit a number of items to the %s" +msgstr "" + +#: ../pykolab/tests/__init__.py:48 +msgid "Run tests in suite SUITE. Implies a certain set of items being tested." +msgstr "" + +#: ../pykolab/tests/__init__.py:51 +msgid "Content Delivery Options" +msgstr "" + +#: ../pykolab/tests/__init__.py:57 +msgid "" +"Send messages containing the items through mail (requires proper " +"infrastructure)" +msgstr "" + +#: ../pykolab/tests/__init__.py:63 +msgid "Inject messages containing the items through IMAP (requires imaplib)" +msgstr "" + +#: ../pykolab/tests/__init__.py:69 +msgid "Deliver messages containing the items through LMTP (requires imaplib)" +msgstr "" + +#: ../pykolab/tests/__init__.py:80 +#, python-format +msgid "Tests for suite %s failed to load. Aborting." +msgstr "" + +#: ../pykolab/tests/mail.py:92 +#, python-format +msgid "Creating %d Mails" +msgstr "" + +#: ../pykolab/tests/mail.py:116 +#, python-format +msgid "Sending message %s through SMTP targeting user %s@%s" +msgstr "" + +#: ../pykolab/tests/mail.py:119 +#, python-format +msgid "Sending message %s through LMTP targeting user %s@%s" +msgstr "" + +#: ../pykolab/tests/mail.py:122 +#, python-format +msgid "Saving message %s to IMAP (user %s, folder %s)" +msgstr "" + +#: ../pykolab/tests/zpush/test_000_000.py:96 +#, python-format +msgid "Deleting mailbox: %s" +msgstr "" + +#: ../pykolab/tests/zpush/test_000_000.py:105 +#, python-format +msgid "Creating mailbox: %s" +msgstr "" + +#: ../pykolab/tests/zpush/test_000_000.py:121 +#, python-format +msgid "Authentication failure for %s" +msgstr "" + +#: ../pykolab/tests/zpush/test_000_001.py:48 +#, python-format +msgid "Could not load %sItem from %s, skipping the testing." +msgstr "" + +#: ../pykolab/utils.py:71 +msgid "Please answer 'yes' or 'no'." +msgstr "" + +#: ../setup-kolab.py:52 +#, python-format +msgid "Cannot find %s_setup()." +msgstr "" + +#: ../setup-kolab.py:54 +#, python-format +msgid "Cannot load setup for %s." +msgstr "" + +#. Means we get to ask some questions. +#: ../setup-kolab.py:58 +msgid "Please select the components to set up:" +msgstr "" + +#: ../setup-kolab.py:65 +msgid "Selection" +msgstr "" diff --git a/po/sk.po b/po/sk.po new file mode 100644 index 0000000..ae00f78 --- /dev/null +++ b/po/sk.po @@ -0,0 +1,563 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-02-21 21:23+0000\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" + +#: ../conf.py:37 ../kolabd.py:33 ../kolab.py:34 ../kolabtest.py:34 +#: ../setup-kolab.py:36 +msgid "Cannot load pykolab/logger.py:" +msgstr "" + +#: ../kolabd/__init__.py:44 ../pykolab-0.1/kolabd/__init__.py:44 +msgid "Daemon Options" +msgstr "" + +#: ../kolabd/__init__.py:50 ../pykolab-0.1/kolabd/__init__.py:50 +msgid "For to the background." +msgstr "" + +#: ../kolabd/__init__.py:78 ../pykolab-0.1/kolabd/__init__.py:78 +msgid "Interrupted by user" +msgstr "" + +#: ../kolabd/__init__.py:82 ../kolabd/__init__.py:90 +#: ../pykolab-0.1/kolabd/__init__.py:82 ../pykolab-0.1/kolabd/__init__.py:90 +msgid "Traceback occurred, please report a bug at http://issues.kolab.org" +msgstr "" + +#: ../kolabd/__init__.py:86 ../pykolab-0.1/kolabd/__init__.py:86 +#, python-format +msgid "Type Error: %s" +msgstr "" + +#: ../kolabd/__init__.py:95 ../pykolab-0.1/kolabd/__init__.py:95 +msgid "Sleeping for 10 seconds..." +msgstr "" + +#: ../pykolab/auth/ldap/__init__.py:42 +msgid "Connecting to LDAP..." +msgstr "" + +#: ../pykolab/cli/__init__.py:40 +msgid "Domain Options" +msgstr "" + +#: ../pykolab/cli/__init__.py:45 +msgid "Review LDIF before committed" +msgstr "" + +#: ../pykolab/cli/__init__.py:55 +#, python-format +msgid "TODO: self.check_%s()" +msgstr "" + +#: ../pykolab/cli/__init__.py:81 +#, python-format +msgid "Deleting domain %s" +msgstr "" + +#: ../pykolab/cli/__init__.py:93 +#, python-format +msgid "No domain %s exists." +msgstr "" + +#: ../pykolab/cli/__init__.py:99 +msgid "TODO: Figure out where the domain should actually be added." +msgstr "" + +#: ../pykolab/cli/__init__.py:103 +#, python-format +msgid "Adding domain %s" +msgstr "" + +#. The dn of our new entry/object +#: ../pykolab/cli/__init__.py:106 +msgid "TODO: Make the format for a new domain configurable." +msgstr "" + +#. A dict to help build the "body" of the object +#: ../pykolab/cli/__init__.py:110 +msgid "TODO: Make what a domain looks like configurable." +msgstr "" + +#: ../pykolab/cli/__init__.py:122 +msgid "" +"TODO: Prompt for organization name/description. For now, use domain name." +msgstr "" + +#: ../pykolab/cli/__init__.py:130 +msgid "Please ACK or NACK the above LDIF:" +msgstr "" + +#: ../pykolab/cli/__init__.py:146 +#, python-format +msgid "Domain %s already exists." +msgstr "" + +#: ../pykolab/cli/__init__.py:156 +msgid "Actions" +msgstr "" + +#: ../pykolab/conf/__init__.py:81 +#, python-format +msgid "Setting %s to %r (from defaults)" +msgstr "" + +#: ../pykolab/conf/__init__.py:92 +#, python-format +msgid "Setting %s to %r (from runtime)" +msgstr "" + +#: ../pykolab/conf/__init__.py:106 +#, python-format +msgid "Setting %s to %r (from CLI, verified)" +msgstr "" + +#: ../pykolab/conf/__init__.py:109 +#, python-format +msgid "Setting %s to %r (from CLI, not checked)" +msgstr "" + +#: ../pykolab/conf/__init__.py:154 ../pykolab/conf/__init__.py:208 +#, python-format +msgid "Setting %s_%s to '****' (from configuration file)" +msgstr "" + +#: ../pykolab/conf/__init__.py:156 ../pykolab/conf/__init__.py:210 +#, python-format +msgid "Setting %s_%s to %r (from configuration file)" +msgstr "" + +#: ../pykolab/conf/__init__.py:165 +msgid "Setting options from configuration file" +msgstr "" + +#: ../pykolab/conf/__init__.py:224 +#, python-format +msgid "Configuration file %s not readable" +msgstr "" + +#: ../pykolab/conf/__init__.py:227 +#, python-format +msgid "Reading configuration file %s" +msgstr "" + +#: ../pykolab/conf/__init__.py:231 +#, python-format +msgid "Invalid configuration file %s" +msgstr "" + +#: ../pykolab/conf/__init__.py:234 +#, python-format +msgid "No master configuration section [revisor] in configuration file %s" +msgstr "" + +#. # +#. # Runtime Options +#. # +#: ../pykolab/conf/__init__.py:253 +msgid "Runtime Options" +msgstr "" + +#: ../pykolab/conf/__init__.py:258 +msgid "Configuration file to use" +msgstr "" + +#: ../pykolab/conf/__init__.py:264 +msgid "Set the debugging verbosity. Maximum is 99" +msgstr "" + +#: ../pykolab/conf/__init__.py:270 +msgid "Log file to use" +msgstr "" + +#: ../pykolab/conf/__init__.py:276 +msgid "Be quiet." +msgstr "" + +#: ../pykolab/conf/__init__.py:282 +msgid "Answer yes to all questions." +msgstr "" + +#: ../pykolab/conf/__init__.py:310 +msgid "No command supplied" +msgstr "" + +#: ../pykolab/conf/__init__.py:392 +msgid "Insufficient options. Need section, key and value -in that order." +msgstr "" + +#: ../pykolab/conf/__init__.py:395 +#, python-format +msgid "No section '%s' exists." +msgstr "" + +#: ../pykolab/conf/__init__.py:424 +#, python-format +msgid "Setting %s to %r (from the default values for CLI options)" +msgstr "" + +#: ../pykolab/conf/__init__.py:441 +#, python-format +msgid "Option %s/%s does not exist in config file %s, pulling from defaults" +msgstr "" + +#: ../pykolab/conf/__init__.py:449 ../pykolab/conf/__init__.py:452 +msgid "Option does not exist in defaults." +msgstr "" + +#: ../pykolab/conf/__init__.py:450 ../pykolab/conf/__init__.py:453 +msgid "Not available" +msgstr "" + +#: ../pykolab/conf/__init__.py:462 +#, python-format +msgid "Configuration file %s not readable." +msgstr "" + +#: ../pykolab/conf/__init__.py:465 +#, python-format +msgid "Configuration file %s does not exist." +msgstr "" + +#: ../pykolab/conf/__init__.py:470 +msgid "" +"WARNING: A negative debug level value does not make this program be any more " +"silent." +msgstr "" + +#: ../pykolab/conf/__init__.py:476 +msgid "" +"WARNING: This program has 9 levels of verbosity. Using the maximum of 9." +msgstr "" + +#: ../pykolab/conf/__init__.py:486 +msgid "No imaplib library found." +msgstr "" + +#: ../pykolab/conf/__init__.py:496 +msgid "No LMTP class found in the smtplib library." +msgstr "" + +#: ../pykolab/conf/__init__.py:506 +msgid "No SMTP class found in the smtplib library." +msgstr "" + +#: ../pykolab/conf/__init__.py:517 +#, python-format +msgid "Found you specified a specific set of items to test: %s" +msgstr "" + +#: ../pykolab/conf/__init__.py:525 +#, python-format +msgid "Selectively selecting: %s" +msgstr "" + +#: ../pykolab/constants.py:39 +msgid "PyKolab is a Kolab Systems product. For more information " +msgstr "" + +#: ../pykolab/constants.py:53 +msgid "WARNING" +msgstr "" + +#: ../pykolab/constants.py:53 +msgid "The Fully Qualified " +msgstr "" + +#: ../pykolab/constants.py:73 +msgid "389 Directory Server or Red Hat Directory Server" +msgstr "" + +#: ../pykolab/constants.py:77 ../pykolab/constants.py:81 +msgid "OpenLDAP or compatible" +msgstr "" + +#: ../pykolab/imap/__init__.py:74 ../pykolab/imap/__init__.py:79 +#, python-format +msgid "Creating new INBOX for user: %s" +msgstr "" + +#: ../pykolab/imap/__init__.py:145 +#, python-format +msgid "Setting new quota for folder %s to %r" +msgstr "" + +#: ../pykolab/imap/__init__.py:149 +#, python-format +msgid "Quota for %s currently is %s" +msgstr "" + +#: ../pykolab/imap/__init__.py:152 +#, python-format +msgid "Correcting quota for %s to %s (currently %s)" +msgstr "" + +#: ../pykolab/imap/__init__.py:178 +#, python-format +msgid "Folder has no corresponding user (1): %s" +msgstr "" + +#: ../pykolab/imap/__init__.py:181 +#, python-format +msgid "Folder has no corresponding user (2): %s" +msgstr "" + +#: ../pykolab/logger.py:42 +#, python-format +msgid "Cannot log to file %s: %s" +msgstr "" + +#: ../pykolab/logger.py:87 ../pykolab/logger.py:96 +msgid "Do you want to continue? [Y/n]" +msgstr "" + +#: ../pykolab/logger.py:90 ../pykolab/logger.py:99 +msgid "Abort! Abort! Abort!" +msgstr "" + +#: ../pykolab/plugins.py:56 +#, python-format +msgid "ImportError for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:59 +#, python-format +msgid "RuntimeError for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:62 +#, python-format +msgid "Plugin %s failed to load (%s: %s)" +msgstr "" + +#: ../pykolab/plugins.py:89 ../pykolab/plugins.py:91 +#, python-format +msgid "Cannot set defaults for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:93 +#, python-format +msgid "Cannot set defaults for plugin %s: Unknown Error" +msgstr "" + +#: ../pykolab/plugins.py:96 +#, python-format +msgid "Not setting defaults for plugin %s: No function 'set_defaults()'" +msgstr "" + +#: ../pykolab/plugins.py:113 +#, python-format +msgid "Cannot set runtime for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:115 +#, python-format +msgid "Not setting runtime for plugin %s: No function 'set_runtime()'" +msgstr "" + +#: ../pykolab/plugins.py:132 +#, python-format +msgid "Cannot add options for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:134 +#, python-format +msgid "Not adding options for plugin %s: No function 'add_options()'" +msgstr "" + +#: ../pykolab/plugins.py:152 +#, python-format +msgid "Cannot check options for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:154 +#, python-format +msgid "Not checking options for plugin %s: No function 'check_options()'" +msgstr "" + +#: ../pykolab/plugins.py:192 ../pykolab/plugins.py:194 +#, python-format +msgid "Cannot execute hook %s for plugin %s: %s" +msgstr "" + +#: ../pykolab/setup/ldap_setup.py:29 +msgid "Cannot load Python LDAP libraries." +msgstr "" + +#: ../pykolab/setup/ldap_setup.py:53 +#, python-format +msgid "Warning: LDAP Service '%s' is available on " +msgstr "" + +#: ../pykolab/setup/ldap_setup.py:56 +#, python-format +msgid "Found system service %s." +msgstr "" + +#. ldap_uri = utils.ask_question(_("LDAP URI (read/write)"), "ldap://ldap.%s" %(constants.domainname)) +#: ../pykolab/setup/ldap_setup.py:59 +msgid "LDAP URI (read/write)" +msgstr "" + +#. This is a funny input error ("") +#: ../pykolab/setup/ldap_setup.py:69 ../pykolab/setup/ldap_setup.py:76 +msgid "Could not connect to LDAP server due to " +msgstr "" + +#: ../pykolab/setup/ldap_setup.py:73 +msgid "Your username or password are incorrect" +msgstr "" + +#: ../pykolab/tests/calendar.py:146 +#, python-format +msgid "Creating %d Events" +msgstr "" + +#: ../pykolab/tests/calendar.py:177 +#, python-format +msgid "Creating Calendar item number %d" +msgstr "" + +#: ../pykolab/tests/calendar.py:189 ../pykolab/tests/contacts.py:133 +#, python-format +msgid "Sending UID message %s through SMTP targeting user %s@%s" +msgstr "" + +#: ../pykolab/tests/calendar.py:192 ../pykolab/tests/contacts.py:136 +#, python-format +msgid "Sending UID message %s through LMTP targeting user %s@%s" +msgstr "" + +#: ../pykolab/tests/calendar.py:195 ../pykolab/tests/contacts.py:139 +#, python-format +msgid "Saving UID message %s to IMAP (user %s, folder %s)" +msgstr "" + +#: ../pykolab/tests/calendar.py:198 ../pykolab/tests/contacts.py:142 +#: ../pykolab/tests/mail.py:125 +msgid "Somehow ended up NOT sending these messages" +msgstr "" + +#: ../pykolab/tests/contacts.py:97 +#, python-format +msgid "Creating %d Contacts" +msgstr "" + +#: ../pykolab/tests/contacts.py:121 +#, python-format +msgid "Creating Contact item number %d" +msgstr "" + +#: ../pykolab/tests/__init__.py:35 +msgid "Test Options" +msgstr "" + +#: ../pykolab/tests/__init__.py:42 +#, python-format +msgid "Submit a number of items to the %s" +msgstr "" + +#: ../pykolab/tests/__init__.py:48 +msgid "Run tests in suite SUITE. Implies a certain set of items being tested." +msgstr "" + +#: ../pykolab/tests/__init__.py:51 +msgid "Content Delivery Options" +msgstr "" + +#: ../pykolab/tests/__init__.py:57 +msgid "" +"Send messages containing the items through mail (requires proper " +"infrastructure)" +msgstr "" + +#: ../pykolab/tests/__init__.py:63 +msgid "Inject messages containing the items through IMAP (requires imaplib)" +msgstr "" + +#: ../pykolab/tests/__init__.py:69 +msgid "Deliver messages containing the items through LMTP (requires imaplib)" +msgstr "" + +#: ../pykolab/tests/__init__.py:80 +#, python-format +msgid "Tests for suite %s failed to load. Aborting." +msgstr "" + +#: ../pykolab/tests/mail.py:92 +#, python-format +msgid "Creating %d Mails" +msgstr "" + +#: ../pykolab/tests/mail.py:116 +#, python-format +msgid "Sending message %s through SMTP targeting user %s@%s" +msgstr "" + +#: ../pykolab/tests/mail.py:119 +#, python-format +msgid "Sending message %s through LMTP targeting user %s@%s" +msgstr "" + +#: ../pykolab/tests/mail.py:122 +#, python-format +msgid "Saving message %s to IMAP (user %s, folder %s)" +msgstr "" + +#: ../pykolab/tests/zpush/test_000_000.py:96 +#, python-format +msgid "Deleting mailbox: %s" +msgstr "" + +#: ../pykolab/tests/zpush/test_000_000.py:105 +#, python-format +msgid "Creating mailbox: %s" +msgstr "" + +#: ../pykolab/tests/zpush/test_000_000.py:121 +#, python-format +msgid "Authentication failure for %s" +msgstr "" + +#: ../pykolab/tests/zpush/test_000_001.py:48 +#, python-format +msgid "Could not load %sItem from %s, skipping the testing." +msgstr "" + +#: ../pykolab/utils.py:71 +msgid "Please answer 'yes' or 'no'." +msgstr "" + +#: ../setup-kolab.py:52 +#, python-format +msgid "Cannot find %s_setup()." +msgstr "" + +#: ../setup-kolab.py:54 +#, python-format +msgid "Cannot load setup for %s." +msgstr "" + +#. Means we get to ask some questions. +#: ../setup-kolab.py:58 +msgid "Please select the components to set up:" +msgstr "" + +#: ../setup-kolab.py:65 +msgid "Selection" +msgstr "" diff --git a/po/sl.po b/po/sl.po new file mode 100644 index 0000000..ae00f78 --- /dev/null +++ b/po/sl.po @@ -0,0 +1,563 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-02-21 21:23+0000\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" + +#: ../conf.py:37 ../kolabd.py:33 ../kolab.py:34 ../kolabtest.py:34 +#: ../setup-kolab.py:36 +msgid "Cannot load pykolab/logger.py:" +msgstr "" + +#: ../kolabd/__init__.py:44 ../pykolab-0.1/kolabd/__init__.py:44 +msgid "Daemon Options" +msgstr "" + +#: ../kolabd/__init__.py:50 ../pykolab-0.1/kolabd/__init__.py:50 +msgid "For to the background." +msgstr "" + +#: ../kolabd/__init__.py:78 ../pykolab-0.1/kolabd/__init__.py:78 +msgid "Interrupted by user" +msgstr "" + +#: ../kolabd/__init__.py:82 ../kolabd/__init__.py:90 +#: ../pykolab-0.1/kolabd/__init__.py:82 ../pykolab-0.1/kolabd/__init__.py:90 +msgid "Traceback occurred, please report a bug at http://issues.kolab.org" +msgstr "" + +#: ../kolabd/__init__.py:86 ../pykolab-0.1/kolabd/__init__.py:86 +#, python-format +msgid "Type Error: %s" +msgstr "" + +#: ../kolabd/__init__.py:95 ../pykolab-0.1/kolabd/__init__.py:95 +msgid "Sleeping for 10 seconds..." +msgstr "" + +#: ../pykolab/auth/ldap/__init__.py:42 +msgid "Connecting to LDAP..." +msgstr "" + +#: ../pykolab/cli/__init__.py:40 +msgid "Domain Options" +msgstr "" + +#: ../pykolab/cli/__init__.py:45 +msgid "Review LDIF before committed" +msgstr "" + +#: ../pykolab/cli/__init__.py:55 +#, python-format +msgid "TODO: self.check_%s()" +msgstr "" + +#: ../pykolab/cli/__init__.py:81 +#, python-format +msgid "Deleting domain %s" +msgstr "" + +#: ../pykolab/cli/__init__.py:93 +#, python-format +msgid "No domain %s exists." +msgstr "" + +#: ../pykolab/cli/__init__.py:99 +msgid "TODO: Figure out where the domain should actually be added." +msgstr "" + +#: ../pykolab/cli/__init__.py:103 +#, python-format +msgid "Adding domain %s" +msgstr "" + +#. The dn of our new entry/object +#: ../pykolab/cli/__init__.py:106 +msgid "TODO: Make the format for a new domain configurable." +msgstr "" + +#. A dict to help build the "body" of the object +#: ../pykolab/cli/__init__.py:110 +msgid "TODO: Make what a domain looks like configurable." +msgstr "" + +#: ../pykolab/cli/__init__.py:122 +msgid "" +"TODO: Prompt for organization name/description. For now, use domain name." +msgstr "" + +#: ../pykolab/cli/__init__.py:130 +msgid "Please ACK or NACK the above LDIF:" +msgstr "" + +#: ../pykolab/cli/__init__.py:146 +#, python-format +msgid "Domain %s already exists." +msgstr "" + +#: ../pykolab/cli/__init__.py:156 +msgid "Actions" +msgstr "" + +#: ../pykolab/conf/__init__.py:81 +#, python-format +msgid "Setting %s to %r (from defaults)" +msgstr "" + +#: ../pykolab/conf/__init__.py:92 +#, python-format +msgid "Setting %s to %r (from runtime)" +msgstr "" + +#: ../pykolab/conf/__init__.py:106 +#, python-format +msgid "Setting %s to %r (from CLI, verified)" +msgstr "" + +#: ../pykolab/conf/__init__.py:109 +#, python-format +msgid "Setting %s to %r (from CLI, not checked)" +msgstr "" + +#: ../pykolab/conf/__init__.py:154 ../pykolab/conf/__init__.py:208 +#, python-format +msgid "Setting %s_%s to '****' (from configuration file)" +msgstr "" + +#: ../pykolab/conf/__init__.py:156 ../pykolab/conf/__init__.py:210 +#, python-format +msgid "Setting %s_%s to %r (from configuration file)" +msgstr "" + +#: ../pykolab/conf/__init__.py:165 +msgid "Setting options from configuration file" +msgstr "" + +#: ../pykolab/conf/__init__.py:224 +#, python-format +msgid "Configuration file %s not readable" +msgstr "" + +#: ../pykolab/conf/__init__.py:227 +#, python-format +msgid "Reading configuration file %s" +msgstr "" + +#: ../pykolab/conf/__init__.py:231 +#, python-format +msgid "Invalid configuration file %s" +msgstr "" + +#: ../pykolab/conf/__init__.py:234 +#, python-format +msgid "No master configuration section [revisor] in configuration file %s" +msgstr "" + +#. # +#. # Runtime Options +#. # +#: ../pykolab/conf/__init__.py:253 +msgid "Runtime Options" +msgstr "" + +#: ../pykolab/conf/__init__.py:258 +msgid "Configuration file to use" +msgstr "" + +#: ../pykolab/conf/__init__.py:264 +msgid "Set the debugging verbosity. Maximum is 99" +msgstr "" + +#: ../pykolab/conf/__init__.py:270 +msgid "Log file to use" +msgstr "" + +#: ../pykolab/conf/__init__.py:276 +msgid "Be quiet." +msgstr "" + +#: ../pykolab/conf/__init__.py:282 +msgid "Answer yes to all questions." +msgstr "" + +#: ../pykolab/conf/__init__.py:310 +msgid "No command supplied" +msgstr "" + +#: ../pykolab/conf/__init__.py:392 +msgid "Insufficient options. Need section, key and value -in that order." +msgstr "" + +#: ../pykolab/conf/__init__.py:395 +#, python-format +msgid "No section '%s' exists." +msgstr "" + +#: ../pykolab/conf/__init__.py:424 +#, python-format +msgid "Setting %s to %r (from the default values for CLI options)" +msgstr "" + +#: ../pykolab/conf/__init__.py:441 +#, python-format +msgid "Option %s/%s does not exist in config file %s, pulling from defaults" +msgstr "" + +#: ../pykolab/conf/__init__.py:449 ../pykolab/conf/__init__.py:452 +msgid "Option does not exist in defaults." +msgstr "" + +#: ../pykolab/conf/__init__.py:450 ../pykolab/conf/__init__.py:453 +msgid "Not available" +msgstr "" + +#: ../pykolab/conf/__init__.py:462 +#, python-format +msgid "Configuration file %s not readable." +msgstr "" + +#: ../pykolab/conf/__init__.py:465 +#, python-format +msgid "Configuration file %s does not exist." +msgstr "" + +#: ../pykolab/conf/__init__.py:470 +msgid "" +"WARNING: A negative debug level value does not make this program be any more " +"silent." +msgstr "" + +#: ../pykolab/conf/__init__.py:476 +msgid "" +"WARNING: This program has 9 levels of verbosity. Using the maximum of 9." +msgstr "" + +#: ../pykolab/conf/__init__.py:486 +msgid "No imaplib library found." +msgstr "" + +#: ../pykolab/conf/__init__.py:496 +msgid "No LMTP class found in the smtplib library." +msgstr "" + +#: ../pykolab/conf/__init__.py:506 +msgid "No SMTP class found in the smtplib library." +msgstr "" + +#: ../pykolab/conf/__init__.py:517 +#, python-format +msgid "Found you specified a specific set of items to test: %s" +msgstr "" + +#: ../pykolab/conf/__init__.py:525 +#, python-format +msgid "Selectively selecting: %s" +msgstr "" + +#: ../pykolab/constants.py:39 +msgid "PyKolab is a Kolab Systems product. For more information " +msgstr "" + +#: ../pykolab/constants.py:53 +msgid "WARNING" +msgstr "" + +#: ../pykolab/constants.py:53 +msgid "The Fully Qualified " +msgstr "" + +#: ../pykolab/constants.py:73 +msgid "389 Directory Server or Red Hat Directory Server" +msgstr "" + +#: ../pykolab/constants.py:77 ../pykolab/constants.py:81 +msgid "OpenLDAP or compatible" +msgstr "" + +#: ../pykolab/imap/__init__.py:74 ../pykolab/imap/__init__.py:79 +#, python-format +msgid "Creating new INBOX for user: %s" +msgstr "" + +#: ../pykolab/imap/__init__.py:145 +#, python-format +msgid "Setting new quota for folder %s to %r" +msgstr "" + +#: ../pykolab/imap/__init__.py:149 +#, python-format +msgid "Quota for %s currently is %s" +msgstr "" + +#: ../pykolab/imap/__init__.py:152 +#, python-format +msgid "Correcting quota for %s to %s (currently %s)" +msgstr "" + +#: ../pykolab/imap/__init__.py:178 +#, python-format +msgid "Folder has no corresponding user (1): %s" +msgstr "" + +#: ../pykolab/imap/__init__.py:181 +#, python-format +msgid "Folder has no corresponding user (2): %s" +msgstr "" + +#: ../pykolab/logger.py:42 +#, python-format +msgid "Cannot log to file %s: %s" +msgstr "" + +#: ../pykolab/logger.py:87 ../pykolab/logger.py:96 +msgid "Do you want to continue? [Y/n]" +msgstr "" + +#: ../pykolab/logger.py:90 ../pykolab/logger.py:99 +msgid "Abort! Abort! Abort!" +msgstr "" + +#: ../pykolab/plugins.py:56 +#, python-format +msgid "ImportError for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:59 +#, python-format +msgid "RuntimeError for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:62 +#, python-format +msgid "Plugin %s failed to load (%s: %s)" +msgstr "" + +#: ../pykolab/plugins.py:89 ../pykolab/plugins.py:91 +#, python-format +msgid "Cannot set defaults for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:93 +#, python-format +msgid "Cannot set defaults for plugin %s: Unknown Error" +msgstr "" + +#: ../pykolab/plugins.py:96 +#, python-format +msgid "Not setting defaults for plugin %s: No function 'set_defaults()'" +msgstr "" + +#: ../pykolab/plugins.py:113 +#, python-format +msgid "Cannot set runtime for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:115 +#, python-format +msgid "Not setting runtime for plugin %s: No function 'set_runtime()'" +msgstr "" + +#: ../pykolab/plugins.py:132 +#, python-format +msgid "Cannot add options for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:134 +#, python-format +msgid "Not adding options for plugin %s: No function 'add_options()'" +msgstr "" + +#: ../pykolab/plugins.py:152 +#, python-format +msgid "Cannot check options for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:154 +#, python-format +msgid "Not checking options for plugin %s: No function 'check_options()'" +msgstr "" + +#: ../pykolab/plugins.py:192 ../pykolab/plugins.py:194 +#, python-format +msgid "Cannot execute hook %s for plugin %s: %s" +msgstr "" + +#: ../pykolab/setup/ldap_setup.py:29 +msgid "Cannot load Python LDAP libraries." +msgstr "" + +#: ../pykolab/setup/ldap_setup.py:53 +#, python-format +msgid "Warning: LDAP Service '%s' is available on " +msgstr "" + +#: ../pykolab/setup/ldap_setup.py:56 +#, python-format +msgid "Found system service %s." +msgstr "" + +#. ldap_uri = utils.ask_question(_("LDAP URI (read/write)"), "ldap://ldap.%s" %(constants.domainname)) +#: ../pykolab/setup/ldap_setup.py:59 +msgid "LDAP URI (read/write)" +msgstr "" + +#. This is a funny input error ("") +#: ../pykolab/setup/ldap_setup.py:69 ../pykolab/setup/ldap_setup.py:76 +msgid "Could not connect to LDAP server due to " +msgstr "" + +#: ../pykolab/setup/ldap_setup.py:73 +msgid "Your username or password are incorrect" +msgstr "" + +#: ../pykolab/tests/calendar.py:146 +#, python-format +msgid "Creating %d Events" +msgstr "" + +#: ../pykolab/tests/calendar.py:177 +#, python-format +msgid "Creating Calendar item number %d" +msgstr "" + +#: ../pykolab/tests/calendar.py:189 ../pykolab/tests/contacts.py:133 +#, python-format +msgid "Sending UID message %s through SMTP targeting user %s@%s" +msgstr "" + +#: ../pykolab/tests/calendar.py:192 ../pykolab/tests/contacts.py:136 +#, python-format +msgid "Sending UID message %s through LMTP targeting user %s@%s" +msgstr "" + +#: ../pykolab/tests/calendar.py:195 ../pykolab/tests/contacts.py:139 +#, python-format +msgid "Saving UID message %s to IMAP (user %s, folder %s)" +msgstr "" + +#: ../pykolab/tests/calendar.py:198 ../pykolab/tests/contacts.py:142 +#: ../pykolab/tests/mail.py:125 +msgid "Somehow ended up NOT sending these messages" +msgstr "" + +#: ../pykolab/tests/contacts.py:97 +#, python-format +msgid "Creating %d Contacts" +msgstr "" + +#: ../pykolab/tests/contacts.py:121 +#, python-format +msgid "Creating Contact item number %d" +msgstr "" + +#: ../pykolab/tests/__init__.py:35 +msgid "Test Options" +msgstr "" + +#: ../pykolab/tests/__init__.py:42 +#, python-format +msgid "Submit a number of items to the %s" +msgstr "" + +#: ../pykolab/tests/__init__.py:48 +msgid "Run tests in suite SUITE. Implies a certain set of items being tested." +msgstr "" + +#: ../pykolab/tests/__init__.py:51 +msgid "Content Delivery Options" +msgstr "" + +#: ../pykolab/tests/__init__.py:57 +msgid "" +"Send messages containing the items through mail (requires proper " +"infrastructure)" +msgstr "" + +#: ../pykolab/tests/__init__.py:63 +msgid "Inject messages containing the items through IMAP (requires imaplib)" +msgstr "" + +#: ../pykolab/tests/__init__.py:69 +msgid "Deliver messages containing the items through LMTP (requires imaplib)" +msgstr "" + +#: ../pykolab/tests/__init__.py:80 +#, python-format +msgid "Tests for suite %s failed to load. Aborting." +msgstr "" + +#: ../pykolab/tests/mail.py:92 +#, python-format +msgid "Creating %d Mails" +msgstr "" + +#: ../pykolab/tests/mail.py:116 +#, python-format +msgid "Sending message %s through SMTP targeting user %s@%s" +msgstr "" + +#: ../pykolab/tests/mail.py:119 +#, python-format +msgid "Sending message %s through LMTP targeting user %s@%s" +msgstr "" + +#: ../pykolab/tests/mail.py:122 +#, python-format +msgid "Saving message %s to IMAP (user %s, folder %s)" +msgstr "" + +#: ../pykolab/tests/zpush/test_000_000.py:96 +#, python-format +msgid "Deleting mailbox: %s" +msgstr "" + +#: ../pykolab/tests/zpush/test_000_000.py:105 +#, python-format +msgid "Creating mailbox: %s" +msgstr "" + +#: ../pykolab/tests/zpush/test_000_000.py:121 +#, python-format +msgid "Authentication failure for %s" +msgstr "" + +#: ../pykolab/tests/zpush/test_000_001.py:48 +#, python-format +msgid "Could not load %sItem from %s, skipping the testing." +msgstr "" + +#: ../pykolab/utils.py:71 +msgid "Please answer 'yes' or 'no'." +msgstr "" + +#: ../setup-kolab.py:52 +#, python-format +msgid "Cannot find %s_setup()." +msgstr "" + +#: ../setup-kolab.py:54 +#, python-format +msgid "Cannot load setup for %s." +msgstr "" + +#. Means we get to ask some questions. +#: ../setup-kolab.py:58 +msgid "Please select the components to set up:" +msgstr "" + +#: ../setup-kolab.py:65 +msgid "Selection" +msgstr "" diff --git a/po/sr.po b/po/sr.po new file mode 100644 index 0000000..ae00f78 --- /dev/null +++ b/po/sr.po @@ -0,0 +1,563 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-02-21 21:23+0000\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" + +#: ../conf.py:37 ../kolabd.py:33 ../kolab.py:34 ../kolabtest.py:34 +#: ../setup-kolab.py:36 +msgid "Cannot load pykolab/logger.py:" +msgstr "" + +#: ../kolabd/__init__.py:44 ../pykolab-0.1/kolabd/__init__.py:44 +msgid "Daemon Options" +msgstr "" + +#: ../kolabd/__init__.py:50 ../pykolab-0.1/kolabd/__init__.py:50 +msgid "For to the background." +msgstr "" + +#: ../kolabd/__init__.py:78 ../pykolab-0.1/kolabd/__init__.py:78 +msgid "Interrupted by user" +msgstr "" + +#: ../kolabd/__init__.py:82 ../kolabd/__init__.py:90 +#: ../pykolab-0.1/kolabd/__init__.py:82 ../pykolab-0.1/kolabd/__init__.py:90 +msgid "Traceback occurred, please report a bug at http://issues.kolab.org" +msgstr "" + +#: ../kolabd/__init__.py:86 ../pykolab-0.1/kolabd/__init__.py:86 +#, python-format +msgid "Type Error: %s" +msgstr "" + +#: ../kolabd/__init__.py:95 ../pykolab-0.1/kolabd/__init__.py:95 +msgid "Sleeping for 10 seconds..." +msgstr "" + +#: ../pykolab/auth/ldap/__init__.py:42 +msgid "Connecting to LDAP..." +msgstr "" + +#: ../pykolab/cli/__init__.py:40 +msgid "Domain Options" +msgstr "" + +#: ../pykolab/cli/__init__.py:45 +msgid "Review LDIF before committed" +msgstr "" + +#: ../pykolab/cli/__init__.py:55 +#, python-format +msgid "TODO: self.check_%s()" +msgstr "" + +#: ../pykolab/cli/__init__.py:81 +#, python-format +msgid "Deleting domain %s" +msgstr "" + +#: ../pykolab/cli/__init__.py:93 +#, python-format +msgid "No domain %s exists." +msgstr "" + +#: ../pykolab/cli/__init__.py:99 +msgid "TODO: Figure out where the domain should actually be added." +msgstr "" + +#: ../pykolab/cli/__init__.py:103 +#, python-format +msgid "Adding domain %s" +msgstr "" + +#. The dn of our new entry/object +#: ../pykolab/cli/__init__.py:106 +msgid "TODO: Make the format for a new domain configurable." +msgstr "" + +#. A dict to help build the "body" of the object +#: ../pykolab/cli/__init__.py:110 +msgid "TODO: Make what a domain looks like configurable." +msgstr "" + +#: ../pykolab/cli/__init__.py:122 +msgid "" +"TODO: Prompt for organization name/description. For now, use domain name." +msgstr "" + +#: ../pykolab/cli/__init__.py:130 +msgid "Please ACK or NACK the above LDIF:" +msgstr "" + +#: ../pykolab/cli/__init__.py:146 +#, python-format +msgid "Domain %s already exists." +msgstr "" + +#: ../pykolab/cli/__init__.py:156 +msgid "Actions" +msgstr "" + +#: ../pykolab/conf/__init__.py:81 +#, python-format +msgid "Setting %s to %r (from defaults)" +msgstr "" + +#: ../pykolab/conf/__init__.py:92 +#, python-format +msgid "Setting %s to %r (from runtime)" +msgstr "" + +#: ../pykolab/conf/__init__.py:106 +#, python-format +msgid "Setting %s to %r (from CLI, verified)" +msgstr "" + +#: ../pykolab/conf/__init__.py:109 +#, python-format +msgid "Setting %s to %r (from CLI, not checked)" +msgstr "" + +#: ../pykolab/conf/__init__.py:154 ../pykolab/conf/__init__.py:208 +#, python-format +msgid "Setting %s_%s to '****' (from configuration file)" +msgstr "" + +#: ../pykolab/conf/__init__.py:156 ../pykolab/conf/__init__.py:210 +#, python-format +msgid "Setting %s_%s to %r (from configuration file)" +msgstr "" + +#: ../pykolab/conf/__init__.py:165 +msgid "Setting options from configuration file" +msgstr "" + +#: ../pykolab/conf/__init__.py:224 +#, python-format +msgid "Configuration file %s not readable" +msgstr "" + +#: ../pykolab/conf/__init__.py:227 +#, python-format +msgid "Reading configuration file %s" +msgstr "" + +#: ../pykolab/conf/__init__.py:231 +#, python-format +msgid "Invalid configuration file %s" +msgstr "" + +#: ../pykolab/conf/__init__.py:234 +#, python-format +msgid "No master configuration section [revisor] in configuration file %s" +msgstr "" + +#. # +#. # Runtime Options +#. # +#: ../pykolab/conf/__init__.py:253 +msgid "Runtime Options" +msgstr "" + +#: ../pykolab/conf/__init__.py:258 +msgid "Configuration file to use" +msgstr "" + +#: ../pykolab/conf/__init__.py:264 +msgid "Set the debugging verbosity. Maximum is 99" +msgstr "" + +#: ../pykolab/conf/__init__.py:270 +msgid "Log file to use" +msgstr "" + +#: ../pykolab/conf/__init__.py:276 +msgid "Be quiet." +msgstr "" + +#: ../pykolab/conf/__init__.py:282 +msgid "Answer yes to all questions." +msgstr "" + +#: ../pykolab/conf/__init__.py:310 +msgid "No command supplied" +msgstr "" + +#: ../pykolab/conf/__init__.py:392 +msgid "Insufficient options. Need section, key and value -in that order." +msgstr "" + +#: ../pykolab/conf/__init__.py:395 +#, python-format +msgid "No section '%s' exists." +msgstr "" + +#: ../pykolab/conf/__init__.py:424 +#, python-format +msgid "Setting %s to %r (from the default values for CLI options)" +msgstr "" + +#: ../pykolab/conf/__init__.py:441 +#, python-format +msgid "Option %s/%s does not exist in config file %s, pulling from defaults" +msgstr "" + +#: ../pykolab/conf/__init__.py:449 ../pykolab/conf/__init__.py:452 +msgid "Option does not exist in defaults." +msgstr "" + +#: ../pykolab/conf/__init__.py:450 ../pykolab/conf/__init__.py:453 +msgid "Not available" +msgstr "" + +#: ../pykolab/conf/__init__.py:462 +#, python-format +msgid "Configuration file %s not readable." +msgstr "" + +#: ../pykolab/conf/__init__.py:465 +#, python-format +msgid "Configuration file %s does not exist." +msgstr "" + +#: ../pykolab/conf/__init__.py:470 +msgid "" +"WARNING: A negative debug level value does not make this program be any more " +"silent." +msgstr "" + +#: ../pykolab/conf/__init__.py:476 +msgid "" +"WARNING: This program has 9 levels of verbosity. Using the maximum of 9." +msgstr "" + +#: ../pykolab/conf/__init__.py:486 +msgid "No imaplib library found." +msgstr "" + +#: ../pykolab/conf/__init__.py:496 +msgid "No LMTP class found in the smtplib library." +msgstr "" + +#: ../pykolab/conf/__init__.py:506 +msgid "No SMTP class found in the smtplib library." +msgstr "" + +#: ../pykolab/conf/__init__.py:517 +#, python-format +msgid "Found you specified a specific set of items to test: %s" +msgstr "" + +#: ../pykolab/conf/__init__.py:525 +#, python-format +msgid "Selectively selecting: %s" +msgstr "" + +#: ../pykolab/constants.py:39 +msgid "PyKolab is a Kolab Systems product. For more information " +msgstr "" + +#: ../pykolab/constants.py:53 +msgid "WARNING" +msgstr "" + +#: ../pykolab/constants.py:53 +msgid "The Fully Qualified " +msgstr "" + +#: ../pykolab/constants.py:73 +msgid "389 Directory Server or Red Hat Directory Server" +msgstr "" + +#: ../pykolab/constants.py:77 ../pykolab/constants.py:81 +msgid "OpenLDAP or compatible" +msgstr "" + +#: ../pykolab/imap/__init__.py:74 ../pykolab/imap/__init__.py:79 +#, python-format +msgid "Creating new INBOX for user: %s" +msgstr "" + +#: ../pykolab/imap/__init__.py:145 +#, python-format +msgid "Setting new quota for folder %s to %r" +msgstr "" + +#: ../pykolab/imap/__init__.py:149 +#, python-format +msgid "Quota for %s currently is %s" +msgstr "" + +#: ../pykolab/imap/__init__.py:152 +#, python-format +msgid "Correcting quota for %s to %s (currently %s)" +msgstr "" + +#: ../pykolab/imap/__init__.py:178 +#, python-format +msgid "Folder has no corresponding user (1): %s" +msgstr "" + +#: ../pykolab/imap/__init__.py:181 +#, python-format +msgid "Folder has no corresponding user (2): %s" +msgstr "" + +#: ../pykolab/logger.py:42 +#, python-format +msgid "Cannot log to file %s: %s" +msgstr "" + +#: ../pykolab/logger.py:87 ../pykolab/logger.py:96 +msgid "Do you want to continue? [Y/n]" +msgstr "" + +#: ../pykolab/logger.py:90 ../pykolab/logger.py:99 +msgid "Abort! Abort! Abort!" +msgstr "" + +#: ../pykolab/plugins.py:56 +#, python-format +msgid "ImportError for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:59 +#, python-format +msgid "RuntimeError for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:62 +#, python-format +msgid "Plugin %s failed to load (%s: %s)" +msgstr "" + +#: ../pykolab/plugins.py:89 ../pykolab/plugins.py:91 +#, python-format +msgid "Cannot set defaults for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:93 +#, python-format +msgid "Cannot set defaults for plugin %s: Unknown Error" +msgstr "" + +#: ../pykolab/plugins.py:96 +#, python-format +msgid "Not setting defaults for plugin %s: No function 'set_defaults()'" +msgstr "" + +#: ../pykolab/plugins.py:113 +#, python-format +msgid "Cannot set runtime for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:115 +#, python-format +msgid "Not setting runtime for plugin %s: No function 'set_runtime()'" +msgstr "" + +#: ../pykolab/plugins.py:132 +#, python-format +msgid "Cannot add options for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:134 +#, python-format +msgid "Not adding options for plugin %s: No function 'add_options()'" +msgstr "" + +#: ../pykolab/plugins.py:152 +#, python-format +msgid "Cannot check options for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:154 +#, python-format +msgid "Not checking options for plugin %s: No function 'check_options()'" +msgstr "" + +#: ../pykolab/plugins.py:192 ../pykolab/plugins.py:194 +#, python-format +msgid "Cannot execute hook %s for plugin %s: %s" +msgstr "" + +#: ../pykolab/setup/ldap_setup.py:29 +msgid "Cannot load Python LDAP libraries." +msgstr "" + +#: ../pykolab/setup/ldap_setup.py:53 +#, python-format +msgid "Warning: LDAP Service '%s' is available on " +msgstr "" + +#: ../pykolab/setup/ldap_setup.py:56 +#, python-format +msgid "Found system service %s." +msgstr "" + +#. ldap_uri = utils.ask_question(_("LDAP URI (read/write)"), "ldap://ldap.%s" %(constants.domainname)) +#: ../pykolab/setup/ldap_setup.py:59 +msgid "LDAP URI (read/write)" +msgstr "" + +#. This is a funny input error ("") +#: ../pykolab/setup/ldap_setup.py:69 ../pykolab/setup/ldap_setup.py:76 +msgid "Could not connect to LDAP server due to " +msgstr "" + +#: ../pykolab/setup/ldap_setup.py:73 +msgid "Your username or password are incorrect" +msgstr "" + +#: ../pykolab/tests/calendar.py:146 +#, python-format +msgid "Creating %d Events" +msgstr "" + +#: ../pykolab/tests/calendar.py:177 +#, python-format +msgid "Creating Calendar item number %d" +msgstr "" + +#: ../pykolab/tests/calendar.py:189 ../pykolab/tests/contacts.py:133 +#, python-format +msgid "Sending UID message %s through SMTP targeting user %s@%s" +msgstr "" + +#: ../pykolab/tests/calendar.py:192 ../pykolab/tests/contacts.py:136 +#, python-format +msgid "Sending UID message %s through LMTP targeting user %s@%s" +msgstr "" + +#: ../pykolab/tests/calendar.py:195 ../pykolab/tests/contacts.py:139 +#, python-format +msgid "Saving UID message %s to IMAP (user %s, folder %s)" +msgstr "" + +#: ../pykolab/tests/calendar.py:198 ../pykolab/tests/contacts.py:142 +#: ../pykolab/tests/mail.py:125 +msgid "Somehow ended up NOT sending these messages" +msgstr "" + +#: ../pykolab/tests/contacts.py:97 +#, python-format +msgid "Creating %d Contacts" +msgstr "" + +#: ../pykolab/tests/contacts.py:121 +#, python-format +msgid "Creating Contact item number %d" +msgstr "" + +#: ../pykolab/tests/__init__.py:35 +msgid "Test Options" +msgstr "" + +#: ../pykolab/tests/__init__.py:42 +#, python-format +msgid "Submit a number of items to the %s" +msgstr "" + +#: ../pykolab/tests/__init__.py:48 +msgid "Run tests in suite SUITE. Implies a certain set of items being tested." +msgstr "" + +#: ../pykolab/tests/__init__.py:51 +msgid "Content Delivery Options" +msgstr "" + +#: ../pykolab/tests/__init__.py:57 +msgid "" +"Send messages containing the items through mail (requires proper " +"infrastructure)" +msgstr "" + +#: ../pykolab/tests/__init__.py:63 +msgid "Inject messages containing the items through IMAP (requires imaplib)" +msgstr "" + +#: ../pykolab/tests/__init__.py:69 +msgid "Deliver messages containing the items through LMTP (requires imaplib)" +msgstr "" + +#: ../pykolab/tests/__init__.py:80 +#, python-format +msgid "Tests for suite %s failed to load. Aborting." +msgstr "" + +#: ../pykolab/tests/mail.py:92 +#, python-format +msgid "Creating %d Mails" +msgstr "" + +#: ../pykolab/tests/mail.py:116 +#, python-format +msgid "Sending message %s through SMTP targeting user %s@%s" +msgstr "" + +#: ../pykolab/tests/mail.py:119 +#, python-format +msgid "Sending message %s through LMTP targeting user %s@%s" +msgstr "" + +#: ../pykolab/tests/mail.py:122 +#, python-format +msgid "Saving message %s to IMAP (user %s, folder %s)" +msgstr "" + +#: ../pykolab/tests/zpush/test_000_000.py:96 +#, python-format +msgid "Deleting mailbox: %s" +msgstr "" + +#: ../pykolab/tests/zpush/test_000_000.py:105 +#, python-format +msgid "Creating mailbox: %s" +msgstr "" + +#: ../pykolab/tests/zpush/test_000_000.py:121 +#, python-format +msgid "Authentication failure for %s" +msgstr "" + +#: ../pykolab/tests/zpush/test_000_001.py:48 +#, python-format +msgid "Could not load %sItem from %s, skipping the testing." +msgstr "" + +#: ../pykolab/utils.py:71 +msgid "Please answer 'yes' or 'no'." +msgstr "" + +#: ../setup-kolab.py:52 +#, python-format +msgid "Cannot find %s_setup()." +msgstr "" + +#: ../setup-kolab.py:54 +#, python-format +msgid "Cannot load setup for %s." +msgstr "" + +#. Means we get to ask some questions. +#: ../setup-kolab.py:58 +msgid "Please select the components to set up:" +msgstr "" + +#: ../setup-kolab.py:65 +msgid "Selection" +msgstr "" diff --git a/po/sr@latin.po b/po/sr@latin.po new file mode 100644 index 0000000..ae00f78 --- /dev/null +++ b/po/sr@latin.po @@ -0,0 +1,563 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-02-21 21:23+0000\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" + +#: ../conf.py:37 ../kolabd.py:33 ../kolab.py:34 ../kolabtest.py:34 +#: ../setup-kolab.py:36 +msgid "Cannot load pykolab/logger.py:" +msgstr "" + +#: ../kolabd/__init__.py:44 ../pykolab-0.1/kolabd/__init__.py:44 +msgid "Daemon Options" +msgstr "" + +#: ../kolabd/__init__.py:50 ../pykolab-0.1/kolabd/__init__.py:50 +msgid "For to the background." +msgstr "" + +#: ../kolabd/__init__.py:78 ../pykolab-0.1/kolabd/__init__.py:78 +msgid "Interrupted by user" +msgstr "" + +#: ../kolabd/__init__.py:82 ../kolabd/__init__.py:90 +#: ../pykolab-0.1/kolabd/__init__.py:82 ../pykolab-0.1/kolabd/__init__.py:90 +msgid "Traceback occurred, please report a bug at http://issues.kolab.org" +msgstr "" + +#: ../kolabd/__init__.py:86 ../pykolab-0.1/kolabd/__init__.py:86 +#, python-format +msgid "Type Error: %s" +msgstr "" + +#: ../kolabd/__init__.py:95 ../pykolab-0.1/kolabd/__init__.py:95 +msgid "Sleeping for 10 seconds..." +msgstr "" + +#: ../pykolab/auth/ldap/__init__.py:42 +msgid "Connecting to LDAP..." +msgstr "" + +#: ../pykolab/cli/__init__.py:40 +msgid "Domain Options" +msgstr "" + +#: ../pykolab/cli/__init__.py:45 +msgid "Review LDIF before committed" +msgstr "" + +#: ../pykolab/cli/__init__.py:55 +#, python-format +msgid "TODO: self.check_%s()" +msgstr "" + +#: ../pykolab/cli/__init__.py:81 +#, python-format +msgid "Deleting domain %s" +msgstr "" + +#: ../pykolab/cli/__init__.py:93 +#, python-format +msgid "No domain %s exists." +msgstr "" + +#: ../pykolab/cli/__init__.py:99 +msgid "TODO: Figure out where the domain should actually be added." +msgstr "" + +#: ../pykolab/cli/__init__.py:103 +#, python-format +msgid "Adding domain %s" +msgstr "" + +#. The dn of our new entry/object +#: ../pykolab/cli/__init__.py:106 +msgid "TODO: Make the format for a new domain configurable." +msgstr "" + +#. A dict to help build the "body" of the object +#: ../pykolab/cli/__init__.py:110 +msgid "TODO: Make what a domain looks like configurable." +msgstr "" + +#: ../pykolab/cli/__init__.py:122 +msgid "" +"TODO: Prompt for organization name/description. For now, use domain name." +msgstr "" + +#: ../pykolab/cli/__init__.py:130 +msgid "Please ACK or NACK the above LDIF:" +msgstr "" + +#: ../pykolab/cli/__init__.py:146 +#, python-format +msgid "Domain %s already exists." +msgstr "" + +#: ../pykolab/cli/__init__.py:156 +msgid "Actions" +msgstr "" + +#: ../pykolab/conf/__init__.py:81 +#, python-format +msgid "Setting %s to %r (from defaults)" +msgstr "" + +#: ../pykolab/conf/__init__.py:92 +#, python-format +msgid "Setting %s to %r (from runtime)" +msgstr "" + +#: ../pykolab/conf/__init__.py:106 +#, python-format +msgid "Setting %s to %r (from CLI, verified)" +msgstr "" + +#: ../pykolab/conf/__init__.py:109 +#, python-format +msgid "Setting %s to %r (from CLI, not checked)" +msgstr "" + +#: ../pykolab/conf/__init__.py:154 ../pykolab/conf/__init__.py:208 +#, python-format +msgid "Setting %s_%s to '****' (from configuration file)" +msgstr "" + +#: ../pykolab/conf/__init__.py:156 ../pykolab/conf/__init__.py:210 +#, python-format +msgid "Setting %s_%s to %r (from configuration file)" +msgstr "" + +#: ../pykolab/conf/__init__.py:165 +msgid "Setting options from configuration file" +msgstr "" + +#: ../pykolab/conf/__init__.py:224 +#, python-format +msgid "Configuration file %s not readable" +msgstr "" + +#: ../pykolab/conf/__init__.py:227 +#, python-format +msgid "Reading configuration file %s" +msgstr "" + +#: ../pykolab/conf/__init__.py:231 +#, python-format +msgid "Invalid configuration file %s" +msgstr "" + +#: ../pykolab/conf/__init__.py:234 +#, python-format +msgid "No master configuration section [revisor] in configuration file %s" +msgstr "" + +#. # +#. # Runtime Options +#. # +#: ../pykolab/conf/__init__.py:253 +msgid "Runtime Options" +msgstr "" + +#: ../pykolab/conf/__init__.py:258 +msgid "Configuration file to use" +msgstr "" + +#: ../pykolab/conf/__init__.py:264 +msgid "Set the debugging verbosity. Maximum is 99" +msgstr "" + +#: ../pykolab/conf/__init__.py:270 +msgid "Log file to use" +msgstr "" + +#: ../pykolab/conf/__init__.py:276 +msgid "Be quiet." +msgstr "" + +#: ../pykolab/conf/__init__.py:282 +msgid "Answer yes to all questions." +msgstr "" + +#: ../pykolab/conf/__init__.py:310 +msgid "No command supplied" +msgstr "" + +#: ../pykolab/conf/__init__.py:392 +msgid "Insufficient options. Need section, key and value -in that order." +msgstr "" + +#: ../pykolab/conf/__init__.py:395 +#, python-format +msgid "No section '%s' exists." +msgstr "" + +#: ../pykolab/conf/__init__.py:424 +#, python-format +msgid "Setting %s to %r (from the default values for CLI options)" +msgstr "" + +#: ../pykolab/conf/__init__.py:441 +#, python-format +msgid "Option %s/%s does not exist in config file %s, pulling from defaults" +msgstr "" + +#: ../pykolab/conf/__init__.py:449 ../pykolab/conf/__init__.py:452 +msgid "Option does not exist in defaults." +msgstr "" + +#: ../pykolab/conf/__init__.py:450 ../pykolab/conf/__init__.py:453 +msgid "Not available" +msgstr "" + +#: ../pykolab/conf/__init__.py:462 +#, python-format +msgid "Configuration file %s not readable." +msgstr "" + +#: ../pykolab/conf/__init__.py:465 +#, python-format +msgid "Configuration file %s does not exist." +msgstr "" + +#: ../pykolab/conf/__init__.py:470 +msgid "" +"WARNING: A negative debug level value does not make this program be any more " +"silent." +msgstr "" + +#: ../pykolab/conf/__init__.py:476 +msgid "" +"WARNING: This program has 9 levels of verbosity. Using the maximum of 9." +msgstr "" + +#: ../pykolab/conf/__init__.py:486 +msgid "No imaplib library found." +msgstr "" + +#: ../pykolab/conf/__init__.py:496 +msgid "No LMTP class found in the smtplib library." +msgstr "" + +#: ../pykolab/conf/__init__.py:506 +msgid "No SMTP class found in the smtplib library." +msgstr "" + +#: ../pykolab/conf/__init__.py:517 +#, python-format +msgid "Found you specified a specific set of items to test: %s" +msgstr "" + +#: ../pykolab/conf/__init__.py:525 +#, python-format +msgid "Selectively selecting: %s" +msgstr "" + +#: ../pykolab/constants.py:39 +msgid "PyKolab is a Kolab Systems product. For more information " +msgstr "" + +#: ../pykolab/constants.py:53 +msgid "WARNING" +msgstr "" + +#: ../pykolab/constants.py:53 +msgid "The Fully Qualified " +msgstr "" + +#: ../pykolab/constants.py:73 +msgid "389 Directory Server or Red Hat Directory Server" +msgstr "" + +#: ../pykolab/constants.py:77 ../pykolab/constants.py:81 +msgid "OpenLDAP or compatible" +msgstr "" + +#: ../pykolab/imap/__init__.py:74 ../pykolab/imap/__init__.py:79 +#, python-format +msgid "Creating new INBOX for user: %s" +msgstr "" + +#: ../pykolab/imap/__init__.py:145 +#, python-format +msgid "Setting new quota for folder %s to %r" +msgstr "" + +#: ../pykolab/imap/__init__.py:149 +#, python-format +msgid "Quota for %s currently is %s" +msgstr "" + +#: ../pykolab/imap/__init__.py:152 +#, python-format +msgid "Correcting quota for %s to %s (currently %s)" +msgstr "" + +#: ../pykolab/imap/__init__.py:178 +#, python-format +msgid "Folder has no corresponding user (1): %s" +msgstr "" + +#: ../pykolab/imap/__init__.py:181 +#, python-format +msgid "Folder has no corresponding user (2): %s" +msgstr "" + +#: ../pykolab/logger.py:42 +#, python-format +msgid "Cannot log to file %s: %s" +msgstr "" + +#: ../pykolab/logger.py:87 ../pykolab/logger.py:96 +msgid "Do you want to continue? [Y/n]" +msgstr "" + +#: ../pykolab/logger.py:90 ../pykolab/logger.py:99 +msgid "Abort! Abort! Abort!" +msgstr "" + +#: ../pykolab/plugins.py:56 +#, python-format +msgid "ImportError for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:59 +#, python-format +msgid "RuntimeError for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:62 +#, python-format +msgid "Plugin %s failed to load (%s: %s)" +msgstr "" + +#: ../pykolab/plugins.py:89 ../pykolab/plugins.py:91 +#, python-format +msgid "Cannot set defaults for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:93 +#, python-format +msgid "Cannot set defaults for plugin %s: Unknown Error" +msgstr "" + +#: ../pykolab/plugins.py:96 +#, python-format +msgid "Not setting defaults for plugin %s: No function 'set_defaults()'" +msgstr "" + +#: ../pykolab/plugins.py:113 +#, python-format +msgid "Cannot set runtime for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:115 +#, python-format +msgid "Not setting runtime for plugin %s: No function 'set_runtime()'" +msgstr "" + +#: ../pykolab/plugins.py:132 +#, python-format +msgid "Cannot add options for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:134 +#, python-format +msgid "Not adding options for plugin %s: No function 'add_options()'" +msgstr "" + +#: ../pykolab/plugins.py:152 +#, python-format +msgid "Cannot check options for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:154 +#, python-format +msgid "Not checking options for plugin %s: No function 'check_options()'" +msgstr "" + +#: ../pykolab/plugins.py:192 ../pykolab/plugins.py:194 +#, python-format +msgid "Cannot execute hook %s for plugin %s: %s" +msgstr "" + +#: ../pykolab/setup/ldap_setup.py:29 +msgid "Cannot load Python LDAP libraries." +msgstr "" + +#: ../pykolab/setup/ldap_setup.py:53 +#, python-format +msgid "Warning: LDAP Service '%s' is available on " +msgstr "" + +#: ../pykolab/setup/ldap_setup.py:56 +#, python-format +msgid "Found system service %s." +msgstr "" + +#. ldap_uri = utils.ask_question(_("LDAP URI (read/write)"), "ldap://ldap.%s" %(constants.domainname)) +#: ../pykolab/setup/ldap_setup.py:59 +msgid "LDAP URI (read/write)" +msgstr "" + +#. This is a funny input error ("") +#: ../pykolab/setup/ldap_setup.py:69 ../pykolab/setup/ldap_setup.py:76 +msgid "Could not connect to LDAP server due to " +msgstr "" + +#: ../pykolab/setup/ldap_setup.py:73 +msgid "Your username or password are incorrect" +msgstr "" + +#: ../pykolab/tests/calendar.py:146 +#, python-format +msgid "Creating %d Events" +msgstr "" + +#: ../pykolab/tests/calendar.py:177 +#, python-format +msgid "Creating Calendar item number %d" +msgstr "" + +#: ../pykolab/tests/calendar.py:189 ../pykolab/tests/contacts.py:133 +#, python-format +msgid "Sending UID message %s through SMTP targeting user %s@%s" +msgstr "" + +#: ../pykolab/tests/calendar.py:192 ../pykolab/tests/contacts.py:136 +#, python-format +msgid "Sending UID message %s through LMTP targeting user %s@%s" +msgstr "" + +#: ../pykolab/tests/calendar.py:195 ../pykolab/tests/contacts.py:139 +#, python-format +msgid "Saving UID message %s to IMAP (user %s, folder %s)" +msgstr "" + +#: ../pykolab/tests/calendar.py:198 ../pykolab/tests/contacts.py:142 +#: ../pykolab/tests/mail.py:125 +msgid "Somehow ended up NOT sending these messages" +msgstr "" + +#: ../pykolab/tests/contacts.py:97 +#, python-format +msgid "Creating %d Contacts" +msgstr "" + +#: ../pykolab/tests/contacts.py:121 +#, python-format +msgid "Creating Contact item number %d" +msgstr "" + +#: ../pykolab/tests/__init__.py:35 +msgid "Test Options" +msgstr "" + +#: ../pykolab/tests/__init__.py:42 +#, python-format +msgid "Submit a number of items to the %s" +msgstr "" + +#: ../pykolab/tests/__init__.py:48 +msgid "Run tests in suite SUITE. Implies a certain set of items being tested." +msgstr "" + +#: ../pykolab/tests/__init__.py:51 +msgid "Content Delivery Options" +msgstr "" + +#: ../pykolab/tests/__init__.py:57 +msgid "" +"Send messages containing the items through mail (requires proper " +"infrastructure)" +msgstr "" + +#: ../pykolab/tests/__init__.py:63 +msgid "Inject messages containing the items through IMAP (requires imaplib)" +msgstr "" + +#: ../pykolab/tests/__init__.py:69 +msgid "Deliver messages containing the items through LMTP (requires imaplib)" +msgstr "" + +#: ../pykolab/tests/__init__.py:80 +#, python-format +msgid "Tests for suite %s failed to load. Aborting." +msgstr "" + +#: ../pykolab/tests/mail.py:92 +#, python-format +msgid "Creating %d Mails" +msgstr "" + +#: ../pykolab/tests/mail.py:116 +#, python-format +msgid "Sending message %s through SMTP targeting user %s@%s" +msgstr "" + +#: ../pykolab/tests/mail.py:119 +#, python-format +msgid "Sending message %s through LMTP targeting user %s@%s" +msgstr "" + +#: ../pykolab/tests/mail.py:122 +#, python-format +msgid "Saving message %s to IMAP (user %s, folder %s)" +msgstr "" + +#: ../pykolab/tests/zpush/test_000_000.py:96 +#, python-format +msgid "Deleting mailbox: %s" +msgstr "" + +#: ../pykolab/tests/zpush/test_000_000.py:105 +#, python-format +msgid "Creating mailbox: %s" +msgstr "" + +#: ../pykolab/tests/zpush/test_000_000.py:121 +#, python-format +msgid "Authentication failure for %s" +msgstr "" + +#: ../pykolab/tests/zpush/test_000_001.py:48 +#, python-format +msgid "Could not load %sItem from %s, skipping the testing." +msgstr "" + +#: ../pykolab/utils.py:71 +msgid "Please answer 'yes' or 'no'." +msgstr "" + +#: ../setup-kolab.py:52 +#, python-format +msgid "Cannot find %s_setup()." +msgstr "" + +#: ../setup-kolab.py:54 +#, python-format +msgid "Cannot load setup for %s." +msgstr "" + +#. Means we get to ask some questions. +#: ../setup-kolab.py:58 +msgid "Please select the components to set up:" +msgstr "" + +#: ../setup-kolab.py:65 +msgid "Selection" +msgstr "" diff --git a/po/stamp-it b/po/stamp-it new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/po/stamp-it diff --git a/po/sv.po b/po/sv.po new file mode 100644 index 0000000..ae00f78 --- /dev/null +++ b/po/sv.po @@ -0,0 +1,563 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-02-21 21:23+0000\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" + +#: ../conf.py:37 ../kolabd.py:33 ../kolab.py:34 ../kolabtest.py:34 +#: ../setup-kolab.py:36 +msgid "Cannot load pykolab/logger.py:" +msgstr "" + +#: ../kolabd/__init__.py:44 ../pykolab-0.1/kolabd/__init__.py:44 +msgid "Daemon Options" +msgstr "" + +#: ../kolabd/__init__.py:50 ../pykolab-0.1/kolabd/__init__.py:50 +msgid "For to the background." +msgstr "" + +#: ../kolabd/__init__.py:78 ../pykolab-0.1/kolabd/__init__.py:78 +msgid "Interrupted by user" +msgstr "" + +#: ../kolabd/__init__.py:82 ../kolabd/__init__.py:90 +#: ../pykolab-0.1/kolabd/__init__.py:82 ../pykolab-0.1/kolabd/__init__.py:90 +msgid "Traceback occurred, please report a bug at http://issues.kolab.org" +msgstr "" + +#: ../kolabd/__init__.py:86 ../pykolab-0.1/kolabd/__init__.py:86 +#, python-format +msgid "Type Error: %s" +msgstr "" + +#: ../kolabd/__init__.py:95 ../pykolab-0.1/kolabd/__init__.py:95 +msgid "Sleeping for 10 seconds..." +msgstr "" + +#: ../pykolab/auth/ldap/__init__.py:42 +msgid "Connecting to LDAP..." +msgstr "" + +#: ../pykolab/cli/__init__.py:40 +msgid "Domain Options" +msgstr "" + +#: ../pykolab/cli/__init__.py:45 +msgid "Review LDIF before committed" +msgstr "" + +#: ../pykolab/cli/__init__.py:55 +#, python-format +msgid "TODO: self.check_%s()" +msgstr "" + +#: ../pykolab/cli/__init__.py:81 +#, python-format +msgid "Deleting domain %s" +msgstr "" + +#: ../pykolab/cli/__init__.py:93 +#, python-format +msgid "No domain %s exists." +msgstr "" + +#: ../pykolab/cli/__init__.py:99 +msgid "TODO: Figure out where the domain should actually be added." +msgstr "" + +#: ../pykolab/cli/__init__.py:103 +#, python-format +msgid "Adding domain %s" +msgstr "" + +#. The dn of our new entry/object +#: ../pykolab/cli/__init__.py:106 +msgid "TODO: Make the format for a new domain configurable." +msgstr "" + +#. A dict to help build the "body" of the object +#: ../pykolab/cli/__init__.py:110 +msgid "TODO: Make what a domain looks like configurable." +msgstr "" + +#: ../pykolab/cli/__init__.py:122 +msgid "" +"TODO: Prompt for organization name/description. For now, use domain name." +msgstr "" + +#: ../pykolab/cli/__init__.py:130 +msgid "Please ACK or NACK the above LDIF:" +msgstr "" + +#: ../pykolab/cli/__init__.py:146 +#, python-format +msgid "Domain %s already exists." +msgstr "" + +#: ../pykolab/cli/__init__.py:156 +msgid "Actions" +msgstr "" + +#: ../pykolab/conf/__init__.py:81 +#, python-format +msgid "Setting %s to %r (from defaults)" +msgstr "" + +#: ../pykolab/conf/__init__.py:92 +#, python-format +msgid "Setting %s to %r (from runtime)" +msgstr "" + +#: ../pykolab/conf/__init__.py:106 +#, python-format +msgid "Setting %s to %r (from CLI, verified)" +msgstr "" + +#: ../pykolab/conf/__init__.py:109 +#, python-format +msgid "Setting %s to %r (from CLI, not checked)" +msgstr "" + +#: ../pykolab/conf/__init__.py:154 ../pykolab/conf/__init__.py:208 +#, python-format +msgid "Setting %s_%s to '****' (from configuration file)" +msgstr "" + +#: ../pykolab/conf/__init__.py:156 ../pykolab/conf/__init__.py:210 +#, python-format +msgid "Setting %s_%s to %r (from configuration file)" +msgstr "" + +#: ../pykolab/conf/__init__.py:165 +msgid "Setting options from configuration file" +msgstr "" + +#: ../pykolab/conf/__init__.py:224 +#, python-format +msgid "Configuration file %s not readable" +msgstr "" + +#: ../pykolab/conf/__init__.py:227 +#, python-format +msgid "Reading configuration file %s" +msgstr "" + +#: ../pykolab/conf/__init__.py:231 +#, python-format +msgid "Invalid configuration file %s" +msgstr "" + +#: ../pykolab/conf/__init__.py:234 +#, python-format +msgid "No master configuration section [revisor] in configuration file %s" +msgstr "" + +#. # +#. # Runtime Options +#. # +#: ../pykolab/conf/__init__.py:253 +msgid "Runtime Options" +msgstr "" + +#: ../pykolab/conf/__init__.py:258 +msgid "Configuration file to use" +msgstr "" + +#: ../pykolab/conf/__init__.py:264 +msgid "Set the debugging verbosity. Maximum is 99" +msgstr "" + +#: ../pykolab/conf/__init__.py:270 +msgid "Log file to use" +msgstr "" + +#: ../pykolab/conf/__init__.py:276 +msgid "Be quiet." +msgstr "" + +#: ../pykolab/conf/__init__.py:282 +msgid "Answer yes to all questions." +msgstr "" + +#: ../pykolab/conf/__init__.py:310 +msgid "No command supplied" +msgstr "" + +#: ../pykolab/conf/__init__.py:392 +msgid "Insufficient options. Need section, key and value -in that order." +msgstr "" + +#: ../pykolab/conf/__init__.py:395 +#, python-format +msgid "No section '%s' exists." +msgstr "" + +#: ../pykolab/conf/__init__.py:424 +#, python-format +msgid "Setting %s to %r (from the default values for CLI options)" +msgstr "" + +#: ../pykolab/conf/__init__.py:441 +#, python-format +msgid "Option %s/%s does not exist in config file %s, pulling from defaults" +msgstr "" + +#: ../pykolab/conf/__init__.py:449 ../pykolab/conf/__init__.py:452 +msgid "Option does not exist in defaults." +msgstr "" + +#: ../pykolab/conf/__init__.py:450 ../pykolab/conf/__init__.py:453 +msgid "Not available" +msgstr "" + +#: ../pykolab/conf/__init__.py:462 +#, python-format +msgid "Configuration file %s not readable." +msgstr "" + +#: ../pykolab/conf/__init__.py:465 +#, python-format +msgid "Configuration file %s does not exist." +msgstr "" + +#: ../pykolab/conf/__init__.py:470 +msgid "" +"WARNING: A negative debug level value does not make this program be any more " +"silent." +msgstr "" + +#: ../pykolab/conf/__init__.py:476 +msgid "" +"WARNING: This program has 9 levels of verbosity. Using the maximum of 9." +msgstr "" + +#: ../pykolab/conf/__init__.py:486 +msgid "No imaplib library found." +msgstr "" + +#: ../pykolab/conf/__init__.py:496 +msgid "No LMTP class found in the smtplib library." +msgstr "" + +#: ../pykolab/conf/__init__.py:506 +msgid "No SMTP class found in the smtplib library." +msgstr "" + +#: ../pykolab/conf/__init__.py:517 +#, python-format +msgid "Found you specified a specific set of items to test: %s" +msgstr "" + +#: ../pykolab/conf/__init__.py:525 +#, python-format +msgid "Selectively selecting: %s" +msgstr "" + +#: ../pykolab/constants.py:39 +msgid "PyKolab is a Kolab Systems product. For more information " +msgstr "" + +#: ../pykolab/constants.py:53 +msgid "WARNING" +msgstr "" + +#: ../pykolab/constants.py:53 +msgid "The Fully Qualified " +msgstr "" + +#: ../pykolab/constants.py:73 +msgid "389 Directory Server or Red Hat Directory Server" +msgstr "" + +#: ../pykolab/constants.py:77 ../pykolab/constants.py:81 +msgid "OpenLDAP or compatible" +msgstr "" + +#: ../pykolab/imap/__init__.py:74 ../pykolab/imap/__init__.py:79 +#, python-format +msgid "Creating new INBOX for user: %s" +msgstr "" + +#: ../pykolab/imap/__init__.py:145 +#, python-format +msgid "Setting new quota for folder %s to %r" +msgstr "" + +#: ../pykolab/imap/__init__.py:149 +#, python-format +msgid "Quota for %s currently is %s" +msgstr "" + +#: ../pykolab/imap/__init__.py:152 +#, python-format +msgid "Correcting quota for %s to %s (currently %s)" +msgstr "" + +#: ../pykolab/imap/__init__.py:178 +#, python-format +msgid "Folder has no corresponding user (1): %s" +msgstr "" + +#: ../pykolab/imap/__init__.py:181 +#, python-format +msgid "Folder has no corresponding user (2): %s" +msgstr "" + +#: ../pykolab/logger.py:42 +#, python-format +msgid "Cannot log to file %s: %s" +msgstr "" + +#: ../pykolab/logger.py:87 ../pykolab/logger.py:96 +msgid "Do you want to continue? [Y/n]" +msgstr "" + +#: ../pykolab/logger.py:90 ../pykolab/logger.py:99 +msgid "Abort! Abort! Abort!" +msgstr "" + +#: ../pykolab/plugins.py:56 +#, python-format +msgid "ImportError for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:59 +#, python-format +msgid "RuntimeError for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:62 +#, python-format +msgid "Plugin %s failed to load (%s: %s)" +msgstr "" + +#: ../pykolab/plugins.py:89 ../pykolab/plugins.py:91 +#, python-format +msgid "Cannot set defaults for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:93 +#, python-format +msgid "Cannot set defaults for plugin %s: Unknown Error" +msgstr "" + +#: ../pykolab/plugins.py:96 +#, python-format +msgid "Not setting defaults for plugin %s: No function 'set_defaults()'" +msgstr "" + +#: ../pykolab/plugins.py:113 +#, python-format +msgid "Cannot set runtime for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:115 +#, python-format +msgid "Not setting runtime for plugin %s: No function 'set_runtime()'" +msgstr "" + +#: ../pykolab/plugins.py:132 +#, python-format +msgid "Cannot add options for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:134 +#, python-format +msgid "Not adding options for plugin %s: No function 'add_options()'" +msgstr "" + +#: ../pykolab/plugins.py:152 +#, python-format +msgid "Cannot check options for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:154 +#, python-format +msgid "Not checking options for plugin %s: No function 'check_options()'" +msgstr "" + +#: ../pykolab/plugins.py:192 ../pykolab/plugins.py:194 +#, python-format +msgid "Cannot execute hook %s for plugin %s: %s" +msgstr "" + +#: ../pykolab/setup/ldap_setup.py:29 +msgid "Cannot load Python LDAP libraries." +msgstr "" + +#: ../pykolab/setup/ldap_setup.py:53 +#, python-format +msgid "Warning: LDAP Service '%s' is available on " +msgstr "" + +#: ../pykolab/setup/ldap_setup.py:56 +#, python-format +msgid "Found system service %s." +msgstr "" + +#. ldap_uri = utils.ask_question(_("LDAP URI (read/write)"), "ldap://ldap.%s" %(constants.domainname)) +#: ../pykolab/setup/ldap_setup.py:59 +msgid "LDAP URI (read/write)" +msgstr "" + +#. This is a funny input error ("") +#: ../pykolab/setup/ldap_setup.py:69 ../pykolab/setup/ldap_setup.py:76 +msgid "Could not connect to LDAP server due to " +msgstr "" + +#: ../pykolab/setup/ldap_setup.py:73 +msgid "Your username or password are incorrect" +msgstr "" + +#: ../pykolab/tests/calendar.py:146 +#, python-format +msgid "Creating %d Events" +msgstr "" + +#: ../pykolab/tests/calendar.py:177 +#, python-format +msgid "Creating Calendar item number %d" +msgstr "" + +#: ../pykolab/tests/calendar.py:189 ../pykolab/tests/contacts.py:133 +#, python-format +msgid "Sending UID message %s through SMTP targeting user %s@%s" +msgstr "" + +#: ../pykolab/tests/calendar.py:192 ../pykolab/tests/contacts.py:136 +#, python-format +msgid "Sending UID message %s through LMTP targeting user %s@%s" +msgstr "" + +#: ../pykolab/tests/calendar.py:195 ../pykolab/tests/contacts.py:139 +#, python-format +msgid "Saving UID message %s to IMAP (user %s, folder %s)" +msgstr "" + +#: ../pykolab/tests/calendar.py:198 ../pykolab/tests/contacts.py:142 +#: ../pykolab/tests/mail.py:125 +msgid "Somehow ended up NOT sending these messages" +msgstr "" + +#: ../pykolab/tests/contacts.py:97 +#, python-format +msgid "Creating %d Contacts" +msgstr "" + +#: ../pykolab/tests/contacts.py:121 +#, python-format +msgid "Creating Contact item number %d" +msgstr "" + +#: ../pykolab/tests/__init__.py:35 +msgid "Test Options" +msgstr "" + +#: ../pykolab/tests/__init__.py:42 +#, python-format +msgid "Submit a number of items to the %s" +msgstr "" + +#: ../pykolab/tests/__init__.py:48 +msgid "Run tests in suite SUITE. Implies a certain set of items being tested." +msgstr "" + +#: ../pykolab/tests/__init__.py:51 +msgid "Content Delivery Options" +msgstr "" + +#: ../pykolab/tests/__init__.py:57 +msgid "" +"Send messages containing the items through mail (requires proper " +"infrastructure)" +msgstr "" + +#: ../pykolab/tests/__init__.py:63 +msgid "Inject messages containing the items through IMAP (requires imaplib)" +msgstr "" + +#: ../pykolab/tests/__init__.py:69 +msgid "Deliver messages containing the items through LMTP (requires imaplib)" +msgstr "" + +#: ../pykolab/tests/__init__.py:80 +#, python-format +msgid "Tests for suite %s failed to load. Aborting." +msgstr "" + +#: ../pykolab/tests/mail.py:92 +#, python-format +msgid "Creating %d Mails" +msgstr "" + +#: ../pykolab/tests/mail.py:116 +#, python-format +msgid "Sending message %s through SMTP targeting user %s@%s" +msgstr "" + +#: ../pykolab/tests/mail.py:119 +#, python-format +msgid "Sending message %s through LMTP targeting user %s@%s" +msgstr "" + +#: ../pykolab/tests/mail.py:122 +#, python-format +msgid "Saving message %s to IMAP (user %s, folder %s)" +msgstr "" + +#: ../pykolab/tests/zpush/test_000_000.py:96 +#, python-format +msgid "Deleting mailbox: %s" +msgstr "" + +#: ../pykolab/tests/zpush/test_000_000.py:105 +#, python-format +msgid "Creating mailbox: %s" +msgstr "" + +#: ../pykolab/tests/zpush/test_000_000.py:121 +#, python-format +msgid "Authentication failure for %s" +msgstr "" + +#: ../pykolab/tests/zpush/test_000_001.py:48 +#, python-format +msgid "Could not load %sItem from %s, skipping the testing." +msgstr "" + +#: ../pykolab/utils.py:71 +msgid "Please answer 'yes' or 'no'." +msgstr "" + +#: ../setup-kolab.py:52 +#, python-format +msgid "Cannot find %s_setup()." +msgstr "" + +#: ../setup-kolab.py:54 +#, python-format +msgid "Cannot load setup for %s." +msgstr "" + +#. Means we get to ask some questions. +#: ../setup-kolab.py:58 +msgid "Please select the components to set up:" +msgstr "" + +#: ../setup-kolab.py:65 +msgid "Selection" +msgstr "" diff --git a/po/ta.po b/po/ta.po new file mode 100644 index 0000000..ae00f78 --- /dev/null +++ b/po/ta.po @@ -0,0 +1,563 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-02-21 21:23+0000\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" + +#: ../conf.py:37 ../kolabd.py:33 ../kolab.py:34 ../kolabtest.py:34 +#: ../setup-kolab.py:36 +msgid "Cannot load pykolab/logger.py:" +msgstr "" + +#: ../kolabd/__init__.py:44 ../pykolab-0.1/kolabd/__init__.py:44 +msgid "Daemon Options" +msgstr "" + +#: ../kolabd/__init__.py:50 ../pykolab-0.1/kolabd/__init__.py:50 +msgid "For to the background." +msgstr "" + +#: ../kolabd/__init__.py:78 ../pykolab-0.1/kolabd/__init__.py:78 +msgid "Interrupted by user" +msgstr "" + +#: ../kolabd/__init__.py:82 ../kolabd/__init__.py:90 +#: ../pykolab-0.1/kolabd/__init__.py:82 ../pykolab-0.1/kolabd/__init__.py:90 +msgid "Traceback occurred, please report a bug at http://issues.kolab.org" +msgstr "" + +#: ../kolabd/__init__.py:86 ../pykolab-0.1/kolabd/__init__.py:86 +#, python-format +msgid "Type Error: %s" +msgstr "" + +#: ../kolabd/__init__.py:95 ../pykolab-0.1/kolabd/__init__.py:95 +msgid "Sleeping for 10 seconds..." +msgstr "" + +#: ../pykolab/auth/ldap/__init__.py:42 +msgid "Connecting to LDAP..." +msgstr "" + +#: ../pykolab/cli/__init__.py:40 +msgid "Domain Options" +msgstr "" + +#: ../pykolab/cli/__init__.py:45 +msgid "Review LDIF before committed" +msgstr "" + +#: ../pykolab/cli/__init__.py:55 +#, python-format +msgid "TODO: self.check_%s()" +msgstr "" + +#: ../pykolab/cli/__init__.py:81 +#, python-format +msgid "Deleting domain %s" +msgstr "" + +#: ../pykolab/cli/__init__.py:93 +#, python-format +msgid "No domain %s exists." +msgstr "" + +#: ../pykolab/cli/__init__.py:99 +msgid "TODO: Figure out where the domain should actually be added." +msgstr "" + +#: ../pykolab/cli/__init__.py:103 +#, python-format +msgid "Adding domain %s" +msgstr "" + +#. The dn of our new entry/object +#: ../pykolab/cli/__init__.py:106 +msgid "TODO: Make the format for a new domain configurable." +msgstr "" + +#. A dict to help build the "body" of the object +#: ../pykolab/cli/__init__.py:110 +msgid "TODO: Make what a domain looks like configurable." +msgstr "" + +#: ../pykolab/cli/__init__.py:122 +msgid "" +"TODO: Prompt for organization name/description. For now, use domain name." +msgstr "" + +#: ../pykolab/cli/__init__.py:130 +msgid "Please ACK or NACK the above LDIF:" +msgstr "" + +#: ../pykolab/cli/__init__.py:146 +#, python-format +msgid "Domain %s already exists." +msgstr "" + +#: ../pykolab/cli/__init__.py:156 +msgid "Actions" +msgstr "" + +#: ../pykolab/conf/__init__.py:81 +#, python-format +msgid "Setting %s to %r (from defaults)" +msgstr "" + +#: ../pykolab/conf/__init__.py:92 +#, python-format +msgid "Setting %s to %r (from runtime)" +msgstr "" + +#: ../pykolab/conf/__init__.py:106 +#, python-format +msgid "Setting %s to %r (from CLI, verified)" +msgstr "" + +#: ../pykolab/conf/__init__.py:109 +#, python-format +msgid "Setting %s to %r (from CLI, not checked)" +msgstr "" + +#: ../pykolab/conf/__init__.py:154 ../pykolab/conf/__init__.py:208 +#, python-format +msgid "Setting %s_%s to '****' (from configuration file)" +msgstr "" + +#: ../pykolab/conf/__init__.py:156 ../pykolab/conf/__init__.py:210 +#, python-format +msgid "Setting %s_%s to %r (from configuration file)" +msgstr "" + +#: ../pykolab/conf/__init__.py:165 +msgid "Setting options from configuration file" +msgstr "" + +#: ../pykolab/conf/__init__.py:224 +#, python-format +msgid "Configuration file %s not readable" +msgstr "" + +#: ../pykolab/conf/__init__.py:227 +#, python-format +msgid "Reading configuration file %s" +msgstr "" + +#: ../pykolab/conf/__init__.py:231 +#, python-format +msgid "Invalid configuration file %s" +msgstr "" + +#: ../pykolab/conf/__init__.py:234 +#, python-format +msgid "No master configuration section [revisor] in configuration file %s" +msgstr "" + +#. # +#. # Runtime Options +#. # +#: ../pykolab/conf/__init__.py:253 +msgid "Runtime Options" +msgstr "" + +#: ../pykolab/conf/__init__.py:258 +msgid "Configuration file to use" +msgstr "" + +#: ../pykolab/conf/__init__.py:264 +msgid "Set the debugging verbosity. Maximum is 99" +msgstr "" + +#: ../pykolab/conf/__init__.py:270 +msgid "Log file to use" +msgstr "" + +#: ../pykolab/conf/__init__.py:276 +msgid "Be quiet." +msgstr "" + +#: ../pykolab/conf/__init__.py:282 +msgid "Answer yes to all questions." +msgstr "" + +#: ../pykolab/conf/__init__.py:310 +msgid "No command supplied" +msgstr "" + +#: ../pykolab/conf/__init__.py:392 +msgid "Insufficient options. Need section, key and value -in that order." +msgstr "" + +#: ../pykolab/conf/__init__.py:395 +#, python-format +msgid "No section '%s' exists." +msgstr "" + +#: ../pykolab/conf/__init__.py:424 +#, python-format +msgid "Setting %s to %r (from the default values for CLI options)" +msgstr "" + +#: ../pykolab/conf/__init__.py:441 +#, python-format +msgid "Option %s/%s does not exist in config file %s, pulling from defaults" +msgstr "" + +#: ../pykolab/conf/__init__.py:449 ../pykolab/conf/__init__.py:452 +msgid "Option does not exist in defaults." +msgstr "" + +#: ../pykolab/conf/__init__.py:450 ../pykolab/conf/__init__.py:453 +msgid "Not available" +msgstr "" + +#: ../pykolab/conf/__init__.py:462 +#, python-format +msgid "Configuration file %s not readable." +msgstr "" + +#: ../pykolab/conf/__init__.py:465 +#, python-format +msgid "Configuration file %s does not exist." +msgstr "" + +#: ../pykolab/conf/__init__.py:470 +msgid "" +"WARNING: A negative debug level value does not make this program be any more " +"silent." +msgstr "" + +#: ../pykolab/conf/__init__.py:476 +msgid "" +"WARNING: This program has 9 levels of verbosity. Using the maximum of 9." +msgstr "" + +#: ../pykolab/conf/__init__.py:486 +msgid "No imaplib library found." +msgstr "" + +#: ../pykolab/conf/__init__.py:496 +msgid "No LMTP class found in the smtplib library." +msgstr "" + +#: ../pykolab/conf/__init__.py:506 +msgid "No SMTP class found in the smtplib library." +msgstr "" + +#: ../pykolab/conf/__init__.py:517 +#, python-format +msgid "Found you specified a specific set of items to test: %s" +msgstr "" + +#: ../pykolab/conf/__init__.py:525 +#, python-format +msgid "Selectively selecting: %s" +msgstr "" + +#: ../pykolab/constants.py:39 +msgid "PyKolab is a Kolab Systems product. For more information " +msgstr "" + +#: ../pykolab/constants.py:53 +msgid "WARNING" +msgstr "" + +#: ../pykolab/constants.py:53 +msgid "The Fully Qualified " +msgstr "" + +#: ../pykolab/constants.py:73 +msgid "389 Directory Server or Red Hat Directory Server" +msgstr "" + +#: ../pykolab/constants.py:77 ../pykolab/constants.py:81 +msgid "OpenLDAP or compatible" +msgstr "" + +#: ../pykolab/imap/__init__.py:74 ../pykolab/imap/__init__.py:79 +#, python-format +msgid "Creating new INBOX for user: %s" +msgstr "" + +#: ../pykolab/imap/__init__.py:145 +#, python-format +msgid "Setting new quota for folder %s to %r" +msgstr "" + +#: ../pykolab/imap/__init__.py:149 +#, python-format +msgid "Quota for %s currently is %s" +msgstr "" + +#: ../pykolab/imap/__init__.py:152 +#, python-format +msgid "Correcting quota for %s to %s (currently %s)" +msgstr "" + +#: ../pykolab/imap/__init__.py:178 +#, python-format +msgid "Folder has no corresponding user (1): %s" +msgstr "" + +#: ../pykolab/imap/__init__.py:181 +#, python-format +msgid "Folder has no corresponding user (2): %s" +msgstr "" + +#: ../pykolab/logger.py:42 +#, python-format +msgid "Cannot log to file %s: %s" +msgstr "" + +#: ../pykolab/logger.py:87 ../pykolab/logger.py:96 +msgid "Do you want to continue? [Y/n]" +msgstr "" + +#: ../pykolab/logger.py:90 ../pykolab/logger.py:99 +msgid "Abort! Abort! Abort!" +msgstr "" + +#: ../pykolab/plugins.py:56 +#, python-format +msgid "ImportError for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:59 +#, python-format +msgid "RuntimeError for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:62 +#, python-format +msgid "Plugin %s failed to load (%s: %s)" +msgstr "" + +#: ../pykolab/plugins.py:89 ../pykolab/plugins.py:91 +#, python-format +msgid "Cannot set defaults for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:93 +#, python-format +msgid "Cannot set defaults for plugin %s: Unknown Error" +msgstr "" + +#: ../pykolab/plugins.py:96 +#, python-format +msgid "Not setting defaults for plugin %s: No function 'set_defaults()'" +msgstr "" + +#: ../pykolab/plugins.py:113 +#, python-format +msgid "Cannot set runtime for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:115 +#, python-format +msgid "Not setting runtime for plugin %s: No function 'set_runtime()'" +msgstr "" + +#: ../pykolab/plugins.py:132 +#, python-format +msgid "Cannot add options for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:134 +#, python-format +msgid "Not adding options for plugin %s: No function 'add_options()'" +msgstr "" + +#: ../pykolab/plugins.py:152 +#, python-format +msgid "Cannot check options for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:154 +#, python-format +msgid "Not checking options for plugin %s: No function 'check_options()'" +msgstr "" + +#: ../pykolab/plugins.py:192 ../pykolab/plugins.py:194 +#, python-format +msgid "Cannot execute hook %s for plugin %s: %s" +msgstr "" + +#: ../pykolab/setup/ldap_setup.py:29 +msgid "Cannot load Python LDAP libraries." +msgstr "" + +#: ../pykolab/setup/ldap_setup.py:53 +#, python-format +msgid "Warning: LDAP Service '%s' is available on " +msgstr "" + +#: ../pykolab/setup/ldap_setup.py:56 +#, python-format +msgid "Found system service %s." +msgstr "" + +#. ldap_uri = utils.ask_question(_("LDAP URI (read/write)"), "ldap://ldap.%s" %(constants.domainname)) +#: ../pykolab/setup/ldap_setup.py:59 +msgid "LDAP URI (read/write)" +msgstr "" + +#. This is a funny input error ("") +#: ../pykolab/setup/ldap_setup.py:69 ../pykolab/setup/ldap_setup.py:76 +msgid "Could not connect to LDAP server due to " +msgstr "" + +#: ../pykolab/setup/ldap_setup.py:73 +msgid "Your username or password are incorrect" +msgstr "" + +#: ../pykolab/tests/calendar.py:146 +#, python-format +msgid "Creating %d Events" +msgstr "" + +#: ../pykolab/tests/calendar.py:177 +#, python-format +msgid "Creating Calendar item number %d" +msgstr "" + +#: ../pykolab/tests/calendar.py:189 ../pykolab/tests/contacts.py:133 +#, python-format +msgid "Sending UID message %s through SMTP targeting user %s@%s" +msgstr "" + +#: ../pykolab/tests/calendar.py:192 ../pykolab/tests/contacts.py:136 +#, python-format +msgid "Sending UID message %s through LMTP targeting user %s@%s" +msgstr "" + +#: ../pykolab/tests/calendar.py:195 ../pykolab/tests/contacts.py:139 +#, python-format +msgid "Saving UID message %s to IMAP (user %s, folder %s)" +msgstr "" + +#: ../pykolab/tests/calendar.py:198 ../pykolab/tests/contacts.py:142 +#: ../pykolab/tests/mail.py:125 +msgid "Somehow ended up NOT sending these messages" +msgstr "" + +#: ../pykolab/tests/contacts.py:97 +#, python-format +msgid "Creating %d Contacts" +msgstr "" + +#: ../pykolab/tests/contacts.py:121 +#, python-format +msgid "Creating Contact item number %d" +msgstr "" + +#: ../pykolab/tests/__init__.py:35 +msgid "Test Options" +msgstr "" + +#: ../pykolab/tests/__init__.py:42 +#, python-format +msgid "Submit a number of items to the %s" +msgstr "" + +#: ../pykolab/tests/__init__.py:48 +msgid "Run tests in suite SUITE. Implies a certain set of items being tested." +msgstr "" + +#: ../pykolab/tests/__init__.py:51 +msgid "Content Delivery Options" +msgstr "" + +#: ../pykolab/tests/__init__.py:57 +msgid "" +"Send messages containing the items through mail (requires proper " +"infrastructure)" +msgstr "" + +#: ../pykolab/tests/__init__.py:63 +msgid "Inject messages containing the items through IMAP (requires imaplib)" +msgstr "" + +#: ../pykolab/tests/__init__.py:69 +msgid "Deliver messages containing the items through LMTP (requires imaplib)" +msgstr "" + +#: ../pykolab/tests/__init__.py:80 +#, python-format +msgid "Tests for suite %s failed to load. Aborting." +msgstr "" + +#: ../pykolab/tests/mail.py:92 +#, python-format +msgid "Creating %d Mails" +msgstr "" + +#: ../pykolab/tests/mail.py:116 +#, python-format +msgid "Sending message %s through SMTP targeting user %s@%s" +msgstr "" + +#: ../pykolab/tests/mail.py:119 +#, python-format +msgid "Sending message %s through LMTP targeting user %s@%s" +msgstr "" + +#: ../pykolab/tests/mail.py:122 +#, python-format +msgid "Saving message %s to IMAP (user %s, folder %s)" +msgstr "" + +#: ../pykolab/tests/zpush/test_000_000.py:96 +#, python-format +msgid "Deleting mailbox: %s" +msgstr "" + +#: ../pykolab/tests/zpush/test_000_000.py:105 +#, python-format +msgid "Creating mailbox: %s" +msgstr "" + +#: ../pykolab/tests/zpush/test_000_000.py:121 +#, python-format +msgid "Authentication failure for %s" +msgstr "" + +#: ../pykolab/tests/zpush/test_000_001.py:48 +#, python-format +msgid "Could not load %sItem from %s, skipping the testing." +msgstr "" + +#: ../pykolab/utils.py:71 +msgid "Please answer 'yes' or 'no'." +msgstr "" + +#: ../setup-kolab.py:52 +#, python-format +msgid "Cannot find %s_setup()." +msgstr "" + +#: ../setup-kolab.py:54 +#, python-format +msgid "Cannot load setup for %s." +msgstr "" + +#. Means we get to ask some questions. +#: ../setup-kolab.py:58 +msgid "Please select the components to set up:" +msgstr "" + +#: ../setup-kolab.py:65 +msgid "Selection" +msgstr "" diff --git a/po/tr.po b/po/tr.po new file mode 100644 index 0000000..ae00f78 --- /dev/null +++ b/po/tr.po @@ -0,0 +1,563 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-02-21 21:23+0000\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" + +#: ../conf.py:37 ../kolabd.py:33 ../kolab.py:34 ../kolabtest.py:34 +#: ../setup-kolab.py:36 +msgid "Cannot load pykolab/logger.py:" +msgstr "" + +#: ../kolabd/__init__.py:44 ../pykolab-0.1/kolabd/__init__.py:44 +msgid "Daemon Options" +msgstr "" + +#: ../kolabd/__init__.py:50 ../pykolab-0.1/kolabd/__init__.py:50 +msgid "For to the background." +msgstr "" + +#: ../kolabd/__init__.py:78 ../pykolab-0.1/kolabd/__init__.py:78 +msgid "Interrupted by user" +msgstr "" + +#: ../kolabd/__init__.py:82 ../kolabd/__init__.py:90 +#: ../pykolab-0.1/kolabd/__init__.py:82 ../pykolab-0.1/kolabd/__init__.py:90 +msgid "Traceback occurred, please report a bug at http://issues.kolab.org" +msgstr "" + +#: ../kolabd/__init__.py:86 ../pykolab-0.1/kolabd/__init__.py:86 +#, python-format +msgid "Type Error: %s" +msgstr "" + +#: ../kolabd/__init__.py:95 ../pykolab-0.1/kolabd/__init__.py:95 +msgid "Sleeping for 10 seconds..." +msgstr "" + +#: ../pykolab/auth/ldap/__init__.py:42 +msgid "Connecting to LDAP..." +msgstr "" + +#: ../pykolab/cli/__init__.py:40 +msgid "Domain Options" +msgstr "" + +#: ../pykolab/cli/__init__.py:45 +msgid "Review LDIF before committed" +msgstr "" + +#: ../pykolab/cli/__init__.py:55 +#, python-format +msgid "TODO: self.check_%s()" +msgstr "" + +#: ../pykolab/cli/__init__.py:81 +#, python-format +msgid "Deleting domain %s" +msgstr "" + +#: ../pykolab/cli/__init__.py:93 +#, python-format +msgid "No domain %s exists." +msgstr "" + +#: ../pykolab/cli/__init__.py:99 +msgid "TODO: Figure out where the domain should actually be added." +msgstr "" + +#: ../pykolab/cli/__init__.py:103 +#, python-format +msgid "Adding domain %s" +msgstr "" + +#. The dn of our new entry/object +#: ../pykolab/cli/__init__.py:106 +msgid "TODO: Make the format for a new domain configurable." +msgstr "" + +#. A dict to help build the "body" of the object +#: ../pykolab/cli/__init__.py:110 +msgid "TODO: Make what a domain looks like configurable." +msgstr "" + +#: ../pykolab/cli/__init__.py:122 +msgid "" +"TODO: Prompt for organization name/description. For now, use domain name." +msgstr "" + +#: ../pykolab/cli/__init__.py:130 +msgid "Please ACK or NACK the above LDIF:" +msgstr "" + +#: ../pykolab/cli/__init__.py:146 +#, python-format +msgid "Domain %s already exists." +msgstr "" + +#: ../pykolab/cli/__init__.py:156 +msgid "Actions" +msgstr "" + +#: ../pykolab/conf/__init__.py:81 +#, python-format +msgid "Setting %s to %r (from defaults)" +msgstr "" + +#: ../pykolab/conf/__init__.py:92 +#, python-format +msgid "Setting %s to %r (from runtime)" +msgstr "" + +#: ../pykolab/conf/__init__.py:106 +#, python-format +msgid "Setting %s to %r (from CLI, verified)" +msgstr "" + +#: ../pykolab/conf/__init__.py:109 +#, python-format +msgid "Setting %s to %r (from CLI, not checked)" +msgstr "" + +#: ../pykolab/conf/__init__.py:154 ../pykolab/conf/__init__.py:208 +#, python-format +msgid "Setting %s_%s to '****' (from configuration file)" +msgstr "" + +#: ../pykolab/conf/__init__.py:156 ../pykolab/conf/__init__.py:210 +#, python-format +msgid "Setting %s_%s to %r (from configuration file)" +msgstr "" + +#: ../pykolab/conf/__init__.py:165 +msgid "Setting options from configuration file" +msgstr "" + +#: ../pykolab/conf/__init__.py:224 +#, python-format +msgid "Configuration file %s not readable" +msgstr "" + +#: ../pykolab/conf/__init__.py:227 +#, python-format +msgid "Reading configuration file %s" +msgstr "" + +#: ../pykolab/conf/__init__.py:231 +#, python-format +msgid "Invalid configuration file %s" +msgstr "" + +#: ../pykolab/conf/__init__.py:234 +#, python-format +msgid "No master configuration section [revisor] in configuration file %s" +msgstr "" + +#. # +#. # Runtime Options +#. # +#: ../pykolab/conf/__init__.py:253 +msgid "Runtime Options" +msgstr "" + +#: ../pykolab/conf/__init__.py:258 +msgid "Configuration file to use" +msgstr "" + +#: ../pykolab/conf/__init__.py:264 +msgid "Set the debugging verbosity. Maximum is 99" +msgstr "" + +#: ../pykolab/conf/__init__.py:270 +msgid "Log file to use" +msgstr "" + +#: ../pykolab/conf/__init__.py:276 +msgid "Be quiet." +msgstr "" + +#: ../pykolab/conf/__init__.py:282 +msgid "Answer yes to all questions." +msgstr "" + +#: ../pykolab/conf/__init__.py:310 +msgid "No command supplied" +msgstr "" + +#: ../pykolab/conf/__init__.py:392 +msgid "Insufficient options. Need section, key and value -in that order." +msgstr "" + +#: ../pykolab/conf/__init__.py:395 +#, python-format +msgid "No section '%s' exists." +msgstr "" + +#: ../pykolab/conf/__init__.py:424 +#, python-format +msgid "Setting %s to %r (from the default values for CLI options)" +msgstr "" + +#: ../pykolab/conf/__init__.py:441 +#, python-format +msgid "Option %s/%s does not exist in config file %s, pulling from defaults" +msgstr "" + +#: ../pykolab/conf/__init__.py:449 ../pykolab/conf/__init__.py:452 +msgid "Option does not exist in defaults." +msgstr "" + +#: ../pykolab/conf/__init__.py:450 ../pykolab/conf/__init__.py:453 +msgid "Not available" +msgstr "" + +#: ../pykolab/conf/__init__.py:462 +#, python-format +msgid "Configuration file %s not readable." +msgstr "" + +#: ../pykolab/conf/__init__.py:465 +#, python-format +msgid "Configuration file %s does not exist." +msgstr "" + +#: ../pykolab/conf/__init__.py:470 +msgid "" +"WARNING: A negative debug level value does not make this program be any more " +"silent." +msgstr "" + +#: ../pykolab/conf/__init__.py:476 +msgid "" +"WARNING: This program has 9 levels of verbosity. Using the maximum of 9." +msgstr "" + +#: ../pykolab/conf/__init__.py:486 +msgid "No imaplib library found." +msgstr "" + +#: ../pykolab/conf/__init__.py:496 +msgid "No LMTP class found in the smtplib library." +msgstr "" + +#: ../pykolab/conf/__init__.py:506 +msgid "No SMTP class found in the smtplib library." +msgstr "" + +#: ../pykolab/conf/__init__.py:517 +#, python-format +msgid "Found you specified a specific set of items to test: %s" +msgstr "" + +#: ../pykolab/conf/__init__.py:525 +#, python-format +msgid "Selectively selecting: %s" +msgstr "" + +#: ../pykolab/constants.py:39 +msgid "PyKolab is a Kolab Systems product. For more information " +msgstr "" + +#: ../pykolab/constants.py:53 +msgid "WARNING" +msgstr "" + +#: ../pykolab/constants.py:53 +msgid "The Fully Qualified " +msgstr "" + +#: ../pykolab/constants.py:73 +msgid "389 Directory Server or Red Hat Directory Server" +msgstr "" + +#: ../pykolab/constants.py:77 ../pykolab/constants.py:81 +msgid "OpenLDAP or compatible" +msgstr "" + +#: ../pykolab/imap/__init__.py:74 ../pykolab/imap/__init__.py:79 +#, python-format +msgid "Creating new INBOX for user: %s" +msgstr "" + +#: ../pykolab/imap/__init__.py:145 +#, python-format +msgid "Setting new quota for folder %s to %r" +msgstr "" + +#: ../pykolab/imap/__init__.py:149 +#, python-format +msgid "Quota for %s currently is %s" +msgstr "" + +#: ../pykolab/imap/__init__.py:152 +#, python-format +msgid "Correcting quota for %s to %s (currently %s)" +msgstr "" + +#: ../pykolab/imap/__init__.py:178 +#, python-format +msgid "Folder has no corresponding user (1): %s" +msgstr "" + +#: ../pykolab/imap/__init__.py:181 +#, python-format +msgid "Folder has no corresponding user (2): %s" +msgstr "" + +#: ../pykolab/logger.py:42 +#, python-format +msgid "Cannot log to file %s: %s" +msgstr "" + +#: ../pykolab/logger.py:87 ../pykolab/logger.py:96 +msgid "Do you want to continue? [Y/n]" +msgstr "" + +#: ../pykolab/logger.py:90 ../pykolab/logger.py:99 +msgid "Abort! Abort! Abort!" +msgstr "" + +#: ../pykolab/plugins.py:56 +#, python-format +msgid "ImportError for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:59 +#, python-format +msgid "RuntimeError for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:62 +#, python-format +msgid "Plugin %s failed to load (%s: %s)" +msgstr "" + +#: ../pykolab/plugins.py:89 ../pykolab/plugins.py:91 +#, python-format +msgid "Cannot set defaults for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:93 +#, python-format +msgid "Cannot set defaults for plugin %s: Unknown Error" +msgstr "" + +#: ../pykolab/plugins.py:96 +#, python-format +msgid "Not setting defaults for plugin %s: No function 'set_defaults()'" +msgstr "" + +#: ../pykolab/plugins.py:113 +#, python-format +msgid "Cannot set runtime for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:115 +#, python-format +msgid "Not setting runtime for plugin %s: No function 'set_runtime()'" +msgstr "" + +#: ../pykolab/plugins.py:132 +#, python-format +msgid "Cannot add options for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:134 +#, python-format +msgid "Not adding options for plugin %s: No function 'add_options()'" +msgstr "" + +#: ../pykolab/plugins.py:152 +#, python-format +msgid "Cannot check options for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:154 +#, python-format +msgid "Not checking options for plugin %s: No function 'check_options()'" +msgstr "" + +#: ../pykolab/plugins.py:192 ../pykolab/plugins.py:194 +#, python-format +msgid "Cannot execute hook %s for plugin %s: %s" +msgstr "" + +#: ../pykolab/setup/ldap_setup.py:29 +msgid "Cannot load Python LDAP libraries." +msgstr "" + +#: ../pykolab/setup/ldap_setup.py:53 +#, python-format +msgid "Warning: LDAP Service '%s' is available on " +msgstr "" + +#: ../pykolab/setup/ldap_setup.py:56 +#, python-format +msgid "Found system service %s." +msgstr "" + +#. ldap_uri = utils.ask_question(_("LDAP URI (read/write)"), "ldap://ldap.%s" %(constants.domainname)) +#: ../pykolab/setup/ldap_setup.py:59 +msgid "LDAP URI (read/write)" +msgstr "" + +#. This is a funny input error ("") +#: ../pykolab/setup/ldap_setup.py:69 ../pykolab/setup/ldap_setup.py:76 +msgid "Could not connect to LDAP server due to " +msgstr "" + +#: ../pykolab/setup/ldap_setup.py:73 +msgid "Your username or password are incorrect" +msgstr "" + +#: ../pykolab/tests/calendar.py:146 +#, python-format +msgid "Creating %d Events" +msgstr "" + +#: ../pykolab/tests/calendar.py:177 +#, python-format +msgid "Creating Calendar item number %d" +msgstr "" + +#: ../pykolab/tests/calendar.py:189 ../pykolab/tests/contacts.py:133 +#, python-format +msgid "Sending UID message %s through SMTP targeting user %s@%s" +msgstr "" + +#: ../pykolab/tests/calendar.py:192 ../pykolab/tests/contacts.py:136 +#, python-format +msgid "Sending UID message %s through LMTP targeting user %s@%s" +msgstr "" + +#: ../pykolab/tests/calendar.py:195 ../pykolab/tests/contacts.py:139 +#, python-format +msgid "Saving UID message %s to IMAP (user %s, folder %s)" +msgstr "" + +#: ../pykolab/tests/calendar.py:198 ../pykolab/tests/contacts.py:142 +#: ../pykolab/tests/mail.py:125 +msgid "Somehow ended up NOT sending these messages" +msgstr "" + +#: ../pykolab/tests/contacts.py:97 +#, python-format +msgid "Creating %d Contacts" +msgstr "" + +#: ../pykolab/tests/contacts.py:121 +#, python-format +msgid "Creating Contact item number %d" +msgstr "" + +#: ../pykolab/tests/__init__.py:35 +msgid "Test Options" +msgstr "" + +#: ../pykolab/tests/__init__.py:42 +#, python-format +msgid "Submit a number of items to the %s" +msgstr "" + +#: ../pykolab/tests/__init__.py:48 +msgid "Run tests in suite SUITE. Implies a certain set of items being tested." +msgstr "" + +#: ../pykolab/tests/__init__.py:51 +msgid "Content Delivery Options" +msgstr "" + +#: ../pykolab/tests/__init__.py:57 +msgid "" +"Send messages containing the items through mail (requires proper " +"infrastructure)" +msgstr "" + +#: ../pykolab/tests/__init__.py:63 +msgid "Inject messages containing the items through IMAP (requires imaplib)" +msgstr "" + +#: ../pykolab/tests/__init__.py:69 +msgid "Deliver messages containing the items through LMTP (requires imaplib)" +msgstr "" + +#: ../pykolab/tests/__init__.py:80 +#, python-format +msgid "Tests for suite %s failed to load. Aborting." +msgstr "" + +#: ../pykolab/tests/mail.py:92 +#, python-format +msgid "Creating %d Mails" +msgstr "" + +#: ../pykolab/tests/mail.py:116 +#, python-format +msgid "Sending message %s through SMTP targeting user %s@%s" +msgstr "" + +#: ../pykolab/tests/mail.py:119 +#, python-format +msgid "Sending message %s through LMTP targeting user %s@%s" +msgstr "" + +#: ../pykolab/tests/mail.py:122 +#, python-format +msgid "Saving message %s to IMAP (user %s, folder %s)" +msgstr "" + +#: ../pykolab/tests/zpush/test_000_000.py:96 +#, python-format +msgid "Deleting mailbox: %s" +msgstr "" + +#: ../pykolab/tests/zpush/test_000_000.py:105 +#, python-format +msgid "Creating mailbox: %s" +msgstr "" + +#: ../pykolab/tests/zpush/test_000_000.py:121 +#, python-format +msgid "Authentication failure for %s" +msgstr "" + +#: ../pykolab/tests/zpush/test_000_001.py:48 +#, python-format +msgid "Could not load %sItem from %s, skipping the testing." +msgstr "" + +#: ../pykolab/utils.py:71 +msgid "Please answer 'yes' or 'no'." +msgstr "" + +#: ../setup-kolab.py:52 +#, python-format +msgid "Cannot find %s_setup()." +msgstr "" + +#: ../setup-kolab.py:54 +#, python-format +msgid "Cannot load setup for %s." +msgstr "" + +#. Means we get to ask some questions. +#: ../setup-kolab.py:58 +msgid "Please select the components to set up:" +msgstr "" + +#: ../setup-kolab.py:65 +msgid "Selection" +msgstr "" diff --git a/po/uk.po b/po/uk.po new file mode 100644 index 0000000..ae00f78 --- /dev/null +++ b/po/uk.po @@ -0,0 +1,563 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-02-21 21:23+0000\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" + +#: ../conf.py:37 ../kolabd.py:33 ../kolab.py:34 ../kolabtest.py:34 +#: ../setup-kolab.py:36 +msgid "Cannot load pykolab/logger.py:" +msgstr "" + +#: ../kolabd/__init__.py:44 ../pykolab-0.1/kolabd/__init__.py:44 +msgid "Daemon Options" +msgstr "" + +#: ../kolabd/__init__.py:50 ../pykolab-0.1/kolabd/__init__.py:50 +msgid "For to the background." +msgstr "" + +#: ../kolabd/__init__.py:78 ../pykolab-0.1/kolabd/__init__.py:78 +msgid "Interrupted by user" +msgstr "" + +#: ../kolabd/__init__.py:82 ../kolabd/__init__.py:90 +#: ../pykolab-0.1/kolabd/__init__.py:82 ../pykolab-0.1/kolabd/__init__.py:90 +msgid "Traceback occurred, please report a bug at http://issues.kolab.org" +msgstr "" + +#: ../kolabd/__init__.py:86 ../pykolab-0.1/kolabd/__init__.py:86 +#, python-format +msgid "Type Error: %s" +msgstr "" + +#: ../kolabd/__init__.py:95 ../pykolab-0.1/kolabd/__init__.py:95 +msgid "Sleeping for 10 seconds..." +msgstr "" + +#: ../pykolab/auth/ldap/__init__.py:42 +msgid "Connecting to LDAP..." +msgstr "" + +#: ../pykolab/cli/__init__.py:40 +msgid "Domain Options" +msgstr "" + +#: ../pykolab/cli/__init__.py:45 +msgid "Review LDIF before committed" +msgstr "" + +#: ../pykolab/cli/__init__.py:55 +#, python-format +msgid "TODO: self.check_%s()" +msgstr "" + +#: ../pykolab/cli/__init__.py:81 +#, python-format +msgid "Deleting domain %s" +msgstr "" + +#: ../pykolab/cli/__init__.py:93 +#, python-format +msgid "No domain %s exists." +msgstr "" + +#: ../pykolab/cli/__init__.py:99 +msgid "TODO: Figure out where the domain should actually be added." +msgstr "" + +#: ../pykolab/cli/__init__.py:103 +#, python-format +msgid "Adding domain %s" +msgstr "" + +#. The dn of our new entry/object +#: ../pykolab/cli/__init__.py:106 +msgid "TODO: Make the format for a new domain configurable." +msgstr "" + +#. A dict to help build the "body" of the object +#: ../pykolab/cli/__init__.py:110 +msgid "TODO: Make what a domain looks like configurable." +msgstr "" + +#: ../pykolab/cli/__init__.py:122 +msgid "" +"TODO: Prompt for organization name/description. For now, use domain name." +msgstr "" + +#: ../pykolab/cli/__init__.py:130 +msgid "Please ACK or NACK the above LDIF:" +msgstr "" + +#: ../pykolab/cli/__init__.py:146 +#, python-format +msgid "Domain %s already exists." +msgstr "" + +#: ../pykolab/cli/__init__.py:156 +msgid "Actions" +msgstr "" + +#: ../pykolab/conf/__init__.py:81 +#, python-format +msgid "Setting %s to %r (from defaults)" +msgstr "" + +#: ../pykolab/conf/__init__.py:92 +#, python-format +msgid "Setting %s to %r (from runtime)" +msgstr "" + +#: ../pykolab/conf/__init__.py:106 +#, python-format +msgid "Setting %s to %r (from CLI, verified)" +msgstr "" + +#: ../pykolab/conf/__init__.py:109 +#, python-format +msgid "Setting %s to %r (from CLI, not checked)" +msgstr "" + +#: ../pykolab/conf/__init__.py:154 ../pykolab/conf/__init__.py:208 +#, python-format +msgid "Setting %s_%s to '****' (from configuration file)" +msgstr "" + +#: ../pykolab/conf/__init__.py:156 ../pykolab/conf/__init__.py:210 +#, python-format +msgid "Setting %s_%s to %r (from configuration file)" +msgstr "" + +#: ../pykolab/conf/__init__.py:165 +msgid "Setting options from configuration file" +msgstr "" + +#: ../pykolab/conf/__init__.py:224 +#, python-format +msgid "Configuration file %s not readable" +msgstr "" + +#: ../pykolab/conf/__init__.py:227 +#, python-format +msgid "Reading configuration file %s" +msgstr "" + +#: ../pykolab/conf/__init__.py:231 +#, python-format +msgid "Invalid configuration file %s" +msgstr "" + +#: ../pykolab/conf/__init__.py:234 +#, python-format +msgid "No master configuration section [revisor] in configuration file %s" +msgstr "" + +#. # +#. # Runtime Options +#. # +#: ../pykolab/conf/__init__.py:253 +msgid "Runtime Options" +msgstr "" + +#: ../pykolab/conf/__init__.py:258 +msgid "Configuration file to use" +msgstr "" + +#: ../pykolab/conf/__init__.py:264 +msgid "Set the debugging verbosity. Maximum is 99" +msgstr "" + +#: ../pykolab/conf/__init__.py:270 +msgid "Log file to use" +msgstr "" + +#: ../pykolab/conf/__init__.py:276 +msgid "Be quiet." +msgstr "" + +#: ../pykolab/conf/__init__.py:282 +msgid "Answer yes to all questions." +msgstr "" + +#: ../pykolab/conf/__init__.py:310 +msgid "No command supplied" +msgstr "" + +#: ../pykolab/conf/__init__.py:392 +msgid "Insufficient options. Need section, key and value -in that order." +msgstr "" + +#: ../pykolab/conf/__init__.py:395 +#, python-format +msgid "No section '%s' exists." +msgstr "" + +#: ../pykolab/conf/__init__.py:424 +#, python-format +msgid "Setting %s to %r (from the default values for CLI options)" +msgstr "" + +#: ../pykolab/conf/__init__.py:441 +#, python-format +msgid "Option %s/%s does not exist in config file %s, pulling from defaults" +msgstr "" + +#: ../pykolab/conf/__init__.py:449 ../pykolab/conf/__init__.py:452 +msgid "Option does not exist in defaults." +msgstr "" + +#: ../pykolab/conf/__init__.py:450 ../pykolab/conf/__init__.py:453 +msgid "Not available" +msgstr "" + +#: ../pykolab/conf/__init__.py:462 +#, python-format +msgid "Configuration file %s not readable." +msgstr "" + +#: ../pykolab/conf/__init__.py:465 +#, python-format +msgid "Configuration file %s does not exist." +msgstr "" + +#: ../pykolab/conf/__init__.py:470 +msgid "" +"WARNING: A negative debug level value does not make this program be any more " +"silent." +msgstr "" + +#: ../pykolab/conf/__init__.py:476 +msgid "" +"WARNING: This program has 9 levels of verbosity. Using the maximum of 9." +msgstr "" + +#: ../pykolab/conf/__init__.py:486 +msgid "No imaplib library found." +msgstr "" + +#: ../pykolab/conf/__init__.py:496 +msgid "No LMTP class found in the smtplib library." +msgstr "" + +#: ../pykolab/conf/__init__.py:506 +msgid "No SMTP class found in the smtplib library." +msgstr "" + +#: ../pykolab/conf/__init__.py:517 +#, python-format +msgid "Found you specified a specific set of items to test: %s" +msgstr "" + +#: ../pykolab/conf/__init__.py:525 +#, python-format +msgid "Selectively selecting: %s" +msgstr "" + +#: ../pykolab/constants.py:39 +msgid "PyKolab is a Kolab Systems product. For more information " +msgstr "" + +#: ../pykolab/constants.py:53 +msgid "WARNING" +msgstr "" + +#: ../pykolab/constants.py:53 +msgid "The Fully Qualified " +msgstr "" + +#: ../pykolab/constants.py:73 +msgid "389 Directory Server or Red Hat Directory Server" +msgstr "" + +#: ../pykolab/constants.py:77 ../pykolab/constants.py:81 +msgid "OpenLDAP or compatible" +msgstr "" + +#: ../pykolab/imap/__init__.py:74 ../pykolab/imap/__init__.py:79 +#, python-format +msgid "Creating new INBOX for user: %s" +msgstr "" + +#: ../pykolab/imap/__init__.py:145 +#, python-format +msgid "Setting new quota for folder %s to %r" +msgstr "" + +#: ../pykolab/imap/__init__.py:149 +#, python-format +msgid "Quota for %s currently is %s" +msgstr "" + +#: ../pykolab/imap/__init__.py:152 +#, python-format +msgid "Correcting quota for %s to %s (currently %s)" +msgstr "" + +#: ../pykolab/imap/__init__.py:178 +#, python-format +msgid "Folder has no corresponding user (1): %s" +msgstr "" + +#: ../pykolab/imap/__init__.py:181 +#, python-format +msgid "Folder has no corresponding user (2): %s" +msgstr "" + +#: ../pykolab/logger.py:42 +#, python-format +msgid "Cannot log to file %s: %s" +msgstr "" + +#: ../pykolab/logger.py:87 ../pykolab/logger.py:96 +msgid "Do you want to continue? [Y/n]" +msgstr "" + +#: ../pykolab/logger.py:90 ../pykolab/logger.py:99 +msgid "Abort! Abort! Abort!" +msgstr "" + +#: ../pykolab/plugins.py:56 +#, python-format +msgid "ImportError for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:59 +#, python-format +msgid "RuntimeError for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:62 +#, python-format +msgid "Plugin %s failed to load (%s: %s)" +msgstr "" + +#: ../pykolab/plugins.py:89 ../pykolab/plugins.py:91 +#, python-format +msgid "Cannot set defaults for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:93 +#, python-format +msgid "Cannot set defaults for plugin %s: Unknown Error" +msgstr "" + +#: ../pykolab/plugins.py:96 +#, python-format +msgid "Not setting defaults for plugin %s: No function 'set_defaults()'" +msgstr "" + +#: ../pykolab/plugins.py:113 +#, python-format +msgid "Cannot set runtime for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:115 +#, python-format +msgid "Not setting runtime for plugin %s: No function 'set_runtime()'" +msgstr "" + +#: ../pykolab/plugins.py:132 +#, python-format +msgid "Cannot add options for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:134 +#, python-format +msgid "Not adding options for plugin %s: No function 'add_options()'" +msgstr "" + +#: ../pykolab/plugins.py:152 +#, python-format +msgid "Cannot check options for plugin %s: %s" +msgstr "" + +#: ../pykolab/plugins.py:154 +#, python-format +msgid "Not checking options for plugin %s: No function 'check_options()'" +msgstr "" + +#: ../pykolab/plugins.py:192 ../pykolab/plugins.py:194 +#, python-format +msgid "Cannot execute hook %s for plugin %s: %s" +msgstr "" + +#: ../pykolab/setup/ldap_setup.py:29 +msgid "Cannot load Python LDAP libraries." +msgstr "" + +#: ../pykolab/setup/ldap_setup.py:53 +#, python-format +msgid "Warning: LDAP Service '%s' is available on " +msgstr "" + +#: ../pykolab/setup/ldap_setup.py:56 +#, python-format +msgid "Found system service %s." +msgstr "" + +#. ldap_uri = utils.ask_question(_("LDAP URI (read/write)"), "ldap://ldap.%s" %(constants.domainname)) +#: ../pykolab/setup/ldap_setup.py:59 +msgid "LDAP URI (read/write)" +msgstr "" + +#. This is a funny input error ("") +#: ../pykolab/setup/ldap_setup.py:69 ../pykolab/setup/ldap_setup.py:76 +msgid "Could not connect to LDAP server due to " +msgstr "" + +#: ../pykolab/setup/ldap_setup.py:73 +msgid "Your username or password are incorrect" +msgstr "" + +#: ../pykolab/tests/calendar.py:146 +#, python-format +msgid "Creating %d Events" +msgstr "" + +#: ../pykolab/tests/calendar.py:177 +#, python-format +msgid "Creating Calendar item number %d" +msgstr "" + +#: ../pykolab/tests/calendar.py:189 ../pykolab/tests/contacts.py:133 +#, python-format +msgid "Sending UID message %s through SMTP targeting user %s@%s" +msgstr "" + +#: ../pykolab/tests/calendar.py:192 ../pykolab/tests/contacts.py:136 +#, python-format +msgid "Sending UID message %s through LMTP targeting user %s@%s" +msgstr "" + +#: ../pykolab/tests/calendar.py:195 ../pykolab/tests/contacts.py:139 +#, python-format +msgid "Saving UID message %s to IMAP (user %s, folder %s)" +msgstr "" + +#: ../pykolab/tests/calendar.py:198 ../ |