From 8f588727fa98ccb0d585d87d4f1518b7ff36679d Mon Sep 17 00:00:00 2001 From: Aaron Griffin Date: Sun, 15 Oct 2006 22:11:52 +0000 Subject: [PATCH] Added po files... not sure if this is the right approach --- lib/libalpm/po/Makefile | 421 +++++++++++ lib/libalpm/po/Makefile.in | 355 ++++++++++ lib/libalpm/po/POTFILES | 23 + lib/libalpm/po/de.gmo | Bin 0 -> 16632 bytes lib/libalpm/po/de.po | 1365 +++++++++++++++++++++++++++++++++++ lib/libalpm/po/fr.gmo | Bin 0 -> 22780 bytes lib/libalpm/po/fr.po | 1371 ++++++++++++++++++++++++++++++++++++ lib/libalpm/po/hu.gmo | Bin 0 -> 21199 bytes lib/libalpm/po/hu.po | 1135 +++++++++++++++++++++++++++++ 9 files changed, 4670 insertions(+) create mode 100644 lib/libalpm/po/Makefile create mode 100644 lib/libalpm/po/Makefile.in create mode 100644 lib/libalpm/po/POTFILES create mode 100644 lib/libalpm/po/de.gmo create mode 100644 lib/libalpm/po/de.po create mode 100644 lib/libalpm/po/fr.gmo create mode 100644 lib/libalpm/po/fr.po create mode 100644 lib/libalpm/po/hu.gmo create mode 100644 lib/libalpm/po/hu.po diff --git a/lib/libalpm/po/Makefile b/lib/libalpm/po/Makefile new file mode 100644 index 00000000..f3e778c0 --- /dev/null +++ b/lib/libalpm/po/Makefile @@ -0,0 +1,421 @@ +# Makefile for PO directory in any package using GNU gettext. +# Copyright (C) 1995-1997, 2000-2003 by Ulrich Drepper +# +# This file can be copied and used freely without restrictions. It can +# be used in projects which are not available under the GNU General Public +# License but which still want to provide support for the GNU gettext +# functionality. +# Please note that the actual code of GNU gettext is covered by the GNU +# General Public License and is *not* in the public domain. +# +# Origin: gettext-0.13 + +PACKAGE = pacman +VERSION = 3.4.0 + +SHELL = /bin/sh + + +srcdir = . +top_srcdir = ../../.. + + +prefix = /usr +exec_prefix = ${prefix} +datadir = ${datarootdir} +datarootdir = ${prefix}/share +localedir = $(datadir)/locale +gettextsrcdir = $(datadir)/gettext/po + +INSTALL = /bin/install -c +INSTALL_DATA = ${INSTALL} -m 644 +mkinstalldirs = /bin/install -c -d + +GMSGFMT = /usr/bin/msgfmt +MSGFMT = /usr/bin/msgfmt +XGETTEXT = /usr/bin/xgettext +MSGMERGE = msgmerge +MSGMERGE_UPDATE = /usr/bin/msgmerge --update +MSGINIT = msginit +MSGCONV = msgconv +MSGFILTER = msgfilter + +POFILES = de.po fr.po hu.po +GMOFILES = de.gmo fr.gmo hu.gmo +UPDATEPOFILES = de.po-update fr.po-update hu.po-update +DUMMYPOFILES = de.nop fr.nop hu.nop +DISTFILES.common = Makefile.in.in remove-potcdate.sin \ +$(DISTFILES.common.extra1) $(DISTFILES.common.extra2) $(DISTFILES.common.extra3) +DISTFILES = $(DISTFILES.common) Makevars POTFILES.in $(DOMAIN).pot stamp-po \ +$(POFILES) $(GMOFILES) \ +$(DISTFILES.extra1) $(DISTFILES.extra2) $(DISTFILES.extra3) + +POTFILES = \ + ../../../add.c \ + ../../../alpm.c \ + ../../../backup.c \ + ../../../be_files.c \ + ../../../cache.c \ + ../../../conflict.c \ + ../../../db.c \ + ../../../deps.c \ + ../../../error.c \ + ../../../group.c \ + ../../../handle.c \ + ../../../list.c \ + ../../../log.c \ + ../../../md5.c \ + ../../../md5driver.c \ + ../../../package.c \ + ../../../provide.c \ + ../../../remove.c \ + ../../../sha1.c \ + ../../../sync.c \ + ../../../trans.c \ + ../../../util.c \ + ../../../versioncmp.c + +CATALOGS = de.gmo fr.gmo hu.gmo + +# Makevars gets inserted here. (Don't remove this line!) +# Makefile variables for PO directory in any package using GNU gettext. + +# Usually the message domain is the same as the package name. +DOMAIN = libalpm + +# These two variables depend on the location of this directory. +subdir = po +top_builddir = ../../../ + +# These options get passed to xgettext. +XGETTEXT_OPTIONS = \ + --keyword=_ --flag=_:1:pass-c-format \ + --keyword=N_ --flag=N_:1:pass-c-format + +# This is the copyright holder that gets inserted into the header of the +# $(DOMAIN).pot file. Set this to the copyright holder of the surrounding +# package. (Note that the msgstr strings, extracted from the package's +# sources, belong to the copyright holder of the package.) Translators are +# expected to transfer the copyright for their translations to this person +# or entity, or to disclaim their copyright. The empty string stands for +# the public domain; in this case the translators are expected to disclaim +# their copyright. +COPYRIGHT_HOLDER = Yoyodyne, Inc. + +# This is the email address or URL to which the translators shall report +# bugs in the untranslated strings: +# - Strings which are not entire sentences, see the maintainer guidelines +# in the GNU gettext documentation, section 'Preparing Strings'. +# - Strings which use unclear terms or require additional context to be +# understood. +# - Strings which make invalid assumptions about notation of date, time or +# money. +# - Pluralisation problems. +# - Incorrect English spelling. +# - Incorrect formatting. +# It can be your email address, or a mailing list address where translators +# can write to without being subscribed, or the URL of a web page through +# which the translators can contact you. +MSGID_BUGS_ADDRESS = bug-gnu-gettext@gnu.org + +# This is the list of locale categories, beyond LC_MESSAGES, for which the +# message catalogs shall be used. It is usually empty. +EXTRA_LOCALE_CATEGORIES = + +.SUFFIXES: +.SUFFIXES: .po .gmo .mo .sed .sin .nop .po-update + +.po.mo: + @echo "$(MSGFMT) -c -o $@ $<"; \ + $(MSGFMT) -c -o t-$@ $< && mv t-$@ $@ + +.po.gmo: + @lang=`echo $* | sed -e 's,.*/,,'`; \ + test "$(srcdir)" = . && cdcmd="" || cdcmd="cd $(srcdir) && "; \ + echo "$${cdcmd}rm -f $${lang}.gmo && $(GMSGFMT) -c --statistics -o $${lang}.gmo $${lang}.po"; \ + cd $(srcdir) && rm -f $${lang}.gmo && $(GMSGFMT) -c --statistics -o t-$${lang}.gmo $${lang}.po && mv t-$${lang}.gmo $${lang}.gmo + +.sin.sed: + sed -e '/^#/d' $< > t-$@ + mv t-$@ $@ + + +all: all-yes + +all-yes: stamp-po +all-no: + +# stamp-po is a timestamp denoting the last time at which the CATALOGS have +# been loosely updated. Its purpose is that when a developer or translator +# checks out the package via CVS, and the $(DOMAIN).pot file is not in CVS, +# "make" will update the $(DOMAIN).pot and the $(CATALOGS), but subsequent +# invocations of "make" will do nothing. This timestamp would not be necessary +# if updating the $(CATALOGS) would always touch them; however, the rule for +# $(POFILES) has been designed to not touch files that don't need to be +# changed. +stamp-po: $(srcdir)/$(DOMAIN).pot + test -z "$(GMOFILES)" || $(MAKE) $(GMOFILES) + @echo "touch stamp-po" + @echo timestamp > stamp-poT + @mv stamp-poT stamp-po + +# Note: Target 'all' must not depend on target '$(DOMAIN).pot-update', +# otherwise packages like GCC can not be built if only parts of the source +# have been downloaded. + +# This target rebuilds $(DOMAIN).pot; it is an expensive operation. +# Note that $(DOMAIN).pot is not touched if it doesn't need to be changed. +$(DOMAIN).pot-update: $(POTFILES) $(srcdir)/POTFILES.in remove-potcdate.sed + $(XGETTEXT) --default-domain=$(DOMAIN) --directory=$(top_srcdir) \ + --add-comments=TRANSLATORS: $(XGETTEXT_OPTIONS) \ + --files-from=$(srcdir)/POTFILES.in \ + --copyright-holder='$(COPYRIGHT_HOLDER)' \ + --msgid-bugs-address='$(MSGID_BUGS_ADDRESS)' + test ! -f $(DOMAIN).po || { \ + if test -f $(srcdir)/$(DOMAIN).pot; then \ + sed -f remove-potcdate.sed < $(srcdir)/$(DOMAIN).pot > $(DOMAIN).1po && \ + sed -f remove-potcdate.sed < $(DOMAIN).po > $(DOMAIN).2po && \ + if cmp $(DOMAIN).1po $(DOMAIN).2po >/dev/null 2>&1; then \ + rm -f $(DOMAIN).1po $(DOMAIN).2po $(DOMAIN).po; \ + else \ + rm -f $(DOMAIN).1po $(DOMAIN).2po $(srcdir)/$(DOMAIN).pot && \ + mv $(DOMAIN).po $(srcdir)/$(DOMAIN).pot; \ + fi; \ + else \ + mv $(DOMAIN).po $(srcdir)/$(DOMAIN).pot; \ + fi; \ + } + +# This rule has no dependencies: we don't need to update $(DOMAIN).pot at +# every "make" invocation, only create it when it is missing. +# Only "make $(DOMAIN).pot-update" or "make dist" will force an update. +$(srcdir)/$(DOMAIN).pot: + $(MAKE) $(DOMAIN).pot-update + +# This target rebuilds a PO file if $(DOMAIN).pot has changed. +# Note that a PO file is not touched if it doesn't need to be changed. +$(POFILES): $(srcdir)/$(DOMAIN).pot + @lang=`echo $@ | sed -e 's,.*/,,' -e 's/\.po$$//'`; \ + test "$(srcdir)" = . && cdcmd="" || cdcmd="cd $(srcdir) && "; \ + echo "$${cdcmd}$(MSGMERGE_UPDATE) $${lang}.po $(DOMAIN).pot"; \ + cd $(srcdir) && $(MSGMERGE_UPDATE) $${lang}.po $(DOMAIN).pot + + +install: install-exec install-data +install-exec: +install-data: install-data-yes + if test "$(PACKAGE)" = "gettext-tools"; then \ + $(mkinstalldirs) $(DESTDIR)$(gettextsrcdir); \ + for file in $(DISTFILES.common) Makevars.template; do \ + $(INSTALL_DATA) $(srcdir)/$$file \ + $(DESTDIR)$(gettextsrcdir)/$$file; \ + done; \ + for file in Makevars; do \ + rm -f $(DESTDIR)$(gettextsrcdir)/$$file; \ + done; \ + else \ + : ; \ + fi +install-data-no: all +install-data-yes: all + $(mkinstalldirs) $(DESTDIR)$(datadir) + @catalogs='$(CATALOGS)'; \ + for cat in $$catalogs; do \ + cat=`basename $$cat`; \ + lang=`echo $$cat | sed -e 's/\.gmo$$//'`; \ + dir=$(localedir)/$$lang/LC_MESSAGES; \ + $(mkinstalldirs) $(DESTDIR)$$dir; \ + if test -r $$cat; then realcat=$$cat; else realcat=$(srcdir)/$$cat; fi; \ + $(INSTALL_DATA) $$realcat $(DESTDIR)$$dir/$(DOMAIN).mo; \ + echo "installing $$realcat as $(DESTDIR)$$dir/$(DOMAIN).mo"; \ + for lc in '' $(EXTRA_LOCALE_CATEGORIES); do \ + if test -n "$$lc"; then \ + if (cd $(DESTDIR)$(localedir)/$$lang && LC_ALL=C ls -l -d $$lc 2>/dev/null) | grep ' -> ' >/dev/null; then \ + link=`cd $(DESTDIR)$(localedir)/$$lang && LC_ALL=C ls -l -d $$lc | sed -e 's/^.* -> //'`; \ + mv $(DESTDIR)$(localedir)/$$lang/$$lc $(DESTDIR)$(localedir)/$$lang/$$lc.old; \ + mkdir $(DESTDIR)$(localedir)/$$lang/$$lc; \ + (cd $(DESTDIR)$(localedir)/$$lang/$$lc.old && \ + for file in *; do \ + if test -f $$file; then \ + ln -s ../$$link/$$file $(DESTDIR)$(localedir)/$$lang/$$lc/$$file; \ + fi; \ + done); \ + rm -f $(DESTDIR)$(localedir)/$$lang/$$lc.old; \ + else \ + if test -d $(DESTDIR)$(localedir)/$$lang/$$lc; then \ + :; \ + else \ + rm -f $(DESTDIR)$(localedir)/$$lang/$$lc; \ + mkdir $(DESTDIR)$(localedir)/$$lang/$$lc; \ + fi; \ + fi; \ + rm -f $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo; \ + ln -s ../LC_MESSAGES/$(DOMAIN).mo $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo 2>/dev/null || \ + ln $(DESTDIR)$(localedir)/$$lang/LC_MESSAGES/$(DOMAIN).mo $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo 2>/dev/null || \ + cp -p $(DESTDIR)$(localedir)/$$lang/LC_MESSAGES/$(DOMAIN).mo $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo; \ + echo "installing $$realcat link as $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo"; \ + fi; \ + done; \ + done + +install-strip: install + +installdirs: installdirs-exec installdirs-data +installdirs-exec: +installdirs-data: installdirs-data-yes + if test "$(PACKAGE)" = "gettext-tools"; then \ + $(mkinstalldirs) $(DESTDIR)$(gettextsrcdir); \ + else \ + : ; \ + fi +installdirs-data-no: +installdirs-data-yes: + $(mkinstalldirs) $(DESTDIR)$(datadir) + @catalogs='$(CATALOGS)'; \ + for cat in $$catalogs; do \ + cat=`basename $$cat`; \ + lang=`echo $$cat | sed -e 's/\.gmo$$//'`; \ + dir=$(localedir)/$$lang/LC_MESSAGES; \ + $(mkinstalldirs) $(DESTDIR)$$dir; \ + for lc in '' $(EXTRA_LOCALE_CATEGORIES); do \ + if test -n "$$lc"; then \ + if (cd $(DESTDIR)$(localedir)/$$lang && LC_ALL=C ls -l -d $$lc 2>/dev/null) | grep ' -> ' >/dev/null; then \ + link=`cd $(DESTDIR)$(localedir)/$$lang && LC_ALL=C ls -l -d $$lc | sed -e 's/^.* -> //'`; \ + mv $(DESTDIR)$(localedir)/$$lang/$$lc $(DESTDIR)$(localedir)/$$lang/$$lc.old; \ + mkdir $(DESTDIR)$(localedir)/$$lang/$$lc; \ + (cd $(DESTDIR)$(localedir)/$$lang/$$lc.old && \ + for file in *; do \ + if test -f $$file; then \ + ln -s ../$$link/$$file $(DESTDIR)$(localedir)/$$lang/$$lc/$$file; \ + fi; \ + done); \ + rm -f $(DESTDIR)$(localedir)/$$lang/$$lc.old; \ + else \ + if test -d $(DESTDIR)$(localedir)/$$lang/$$lc; then \ + :; \ + else \ + rm -f $(DESTDIR)$(localedir)/$$lang/$$lc; \ + mkdir $(DESTDIR)$(localedir)/$$lang/$$lc; \ + fi; \ + fi; \ + fi; \ + done; \ + done + +# Define this as empty until I found a useful application. +installcheck: + +uninstall: uninstall-exec uninstall-data +uninstall-exec: +uninstall-data: uninstall-data-yes + if test "$(PACKAGE)" = "gettext-tools"; then \ + for file in $(DISTFILES.common) Makevars.template; do \ + rm -f $(DESTDIR)$(gettextsrcdir)/$$file; \ + done; \ + else \ + : ; \ + fi +uninstall-data-no: +uninstall-data-yes: + catalogs='$(CATALOGS)'; \ + for cat in $$catalogs; do \ + cat=`basename $$cat`; \ + lang=`echo $$cat | sed -e 's/\.gmo$$//'`; \ + for lc in LC_MESSAGES $(EXTRA_LOCALE_CATEGORIES); do \ + rm -f $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo; \ + done; \ + done + +check: all + +info dvi ps pdf html tags TAGS ctags CTAGS ID: + +mostlyclean: + rm -f remove-potcdate.sed + rm -f stamp-poT + rm -f core core.* $(DOMAIN).po $(DOMAIN).1po $(DOMAIN).2po *.new.po + rm -fr *.o + +clean: mostlyclean + +distclean: clean + rm -f Makefile Makefile.in POTFILES *.mo + +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 stamp-po $(GMOFILES) + +distdir = $(top_builddir)/$(PACKAGE)-$(VERSION)/$(subdir) +dist distdir: + $(MAKE) update-po + @$(MAKE) dist2 +# This is a separate target because 'update-po' must be executed before. +dist2: $(DISTFILES) + dists="$(DISTFILES)"; \ + if test "$(PACKAGE)" = "gettext-tools"; then \ + dists="$$dists Makevars.template"; \ + fi; \ + if test -f $(srcdir)/ChangeLog; then \ + dists="$$dists ChangeLog"; \ + fi; \ + for i in 0 1 2 3 4 5 6 7 8 9; do \ + if test -f $(srcdir)/ChangeLog.$$i; then \ + dists="$$dists ChangeLog.$$i"; \ + fi; \ + done; \ + if test -f $(srcdir)/LINGUAS; then dists="$$dists LINGUAS"; fi; \ + for file in $$dists; do \ + if test -f $$file; then \ + cp -p $$file $(distdir); \ + else \ + cp -p $(srcdir)/$$file $(distdir); \ + fi; \ + done + +update-po: Makefile + $(MAKE) $(DOMAIN).pot-update + test -z "$(UPDATEPOFILES)" || $(MAKE) $(UPDATEPOFILES) + $(MAKE) update-gmo + +# General rule for updating PO files. + +.nop.po-update: + @lang=`echo $@ | sed -e 's/\.po-update$$//'`; \ + if test "$(PACKAGE)" = "gettext-tools"; then PATH=`pwd`/../src:$$PATH; fi; \ + tmpdir=`pwd`; \ + echo "$$lang:"; \ + test "$(srcdir)" = . && cdcmd="" || cdcmd="cd $(srcdir) && "; \ + echo "$${cdcmd}$(MSGMERGE) $$lang.po $(DOMAIN).pot -o $$lang.new.po"; \ + cd $(srcdir); \ + if $(MSGMERGE) $$lang.po $(DOMAIN).pot -o $$tmpdir/$$lang.new.po; then \ + if cmp $$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; \ + exit 1; \ + fi; \ + fi; \ + else \ + echo "msgmerge for $$lang.po failed!" 1>&2; \ + rm -f $$tmpdir/$$lang.new.po; \ + fi + +$(DUMMYPOFILES): + +update-gmo: Makefile $(GMOFILES) + @: + +Makefile: Makefile.in.in $(top_builddir)/config.status POTFILES.in LINGUAS + cd $(top_builddir) \ + && CONFIG_FILES=$(subdir)/$@.in CONFIG_HEADERS= \ + $(SHELL) ./config.status + +force: + +# 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/lib/libalpm/po/Makefile.in b/lib/libalpm/po/Makefile.in new file mode 100644 index 00000000..74c344c1 --- /dev/null +++ b/lib/libalpm/po/Makefile.in @@ -0,0 +1,355 @@ +# Makefile for PO directory in any package using GNU gettext. +# Copyright (C) 1995-1997, 2000-2003 by Ulrich Drepper +# +# This file can be copied and used freely without restrictions. It can +# be used in projects which are not available under the GNU General Public +# License but which still want to provide support for the GNU gettext +# functionality. +# Please note that the actual code of GNU gettext is covered by the GNU +# General Public License and is *not* in the public domain. +# +# Origin: gettext-0.13 + +PACKAGE = pacman +VERSION = 3.4.0 + +SHELL = /bin/sh + + +srcdir = . +top_srcdir = ../../.. + + +prefix = /usr +exec_prefix = ${prefix} +datadir = ${datarootdir} +datarootdir = ${prefix}/share +localedir = $(datadir)/locale +gettextsrcdir = $(datadir)/gettext/po + +INSTALL = /bin/install -c +INSTALL_DATA = ${INSTALL} -m 644 +mkinstalldirs = /bin/install -c -d + +GMSGFMT = /usr/bin/msgfmt +MSGFMT = /usr/bin/msgfmt +XGETTEXT = /usr/bin/xgettext +MSGMERGE = msgmerge +MSGMERGE_UPDATE = /usr/bin/msgmerge --update +MSGINIT = msginit +MSGCONV = msgconv +MSGFILTER = msgfilter + +POFILES = @POFILES@ +GMOFILES = @GMOFILES@ +UPDATEPOFILES = @UPDATEPOFILES@ +DUMMYPOFILES = @DUMMYPOFILES@ +DISTFILES.common = Makefile.in.in remove-potcdate.sin \ +$(DISTFILES.common.extra1) $(DISTFILES.common.extra2) $(DISTFILES.common.extra3) +DISTFILES = $(DISTFILES.common) Makevars POTFILES.in $(DOMAIN).pot stamp-po \ +$(POFILES) $(GMOFILES) \ +$(DISTFILES.extra1) $(DISTFILES.extra2) $(DISTFILES.extra3) + +POTFILES = \ + +CATALOGS = @CATALOGS@ + +# Makevars gets inserted here. (Don't remove this line!) + +.SUFFIXES: +.SUFFIXES: .po .gmo .mo .sed .sin .nop .po-update + +.po.mo: + @echo "$(MSGFMT) -c -o $@ $<"; \ + $(MSGFMT) -c -o t-$@ $< && mv t-$@ $@ + +.po.gmo: + @lang=`echo $* | sed -e 's,.*/,,'`; \ + test "$(srcdir)" = . && cdcmd="" || cdcmd="cd $(srcdir) && "; \ + echo "$${cdcmd}rm -f $${lang}.gmo && $(GMSGFMT) -c --statistics -o $${lang}.gmo $${lang}.po"; \ + cd $(srcdir) && rm -f $${lang}.gmo && $(GMSGFMT) -c --statistics -o t-$${lang}.gmo $${lang}.po && mv t-$${lang}.gmo $${lang}.gmo + +.sin.sed: + sed -e '/^#/d' $< > t-$@ + mv t-$@ $@ + + +all: all-yes + +all-yes: stamp-po +all-no: + +# stamp-po is a timestamp denoting the last time at which the CATALOGS have +# been loosely updated. Its purpose is that when a developer or translator +# checks out the package via CVS, and the $(DOMAIN).pot file is not in CVS, +# "make" will update the $(DOMAIN).pot and the $(CATALOGS), but subsequent +# invocations of "make" will do nothing. This timestamp would not be necessary +# if updating the $(CATALOGS) would always touch them; however, the rule for +# $(POFILES) has been designed to not touch files that don't need to be +# changed. +stamp-po: $(srcdir)/$(DOMAIN).pot + test -z "$(GMOFILES)" || $(MAKE) $(GMOFILES) + @echo "touch stamp-po" + @echo timestamp > stamp-poT + @mv stamp-poT stamp-po + +# Note: Target 'all' must not depend on target '$(DOMAIN).pot-update', +# otherwise packages like GCC can not be built if only parts of the source +# have been downloaded. + +# This target rebuilds $(DOMAIN).pot; it is an expensive operation. +# Note that $(DOMAIN).pot is not touched if it doesn't need to be changed. +$(DOMAIN).pot-update: $(POTFILES) $(srcdir)/POTFILES.in remove-potcdate.sed + $(XGETTEXT) --default-domain=$(DOMAIN) --directory=$(top_srcdir) \ + --add-comments=TRANSLATORS: $(XGETTEXT_OPTIONS) \ + --files-from=$(srcdir)/POTFILES.in \ + --copyright-holder='$(COPYRIGHT_HOLDER)' \ + --msgid-bugs-address='$(MSGID_BUGS_ADDRESS)' + test ! -f $(DOMAIN).po || { \ + if test -f $(srcdir)/$(DOMAIN).pot; then \ + sed -f remove-potcdate.sed < $(srcdir)/$(DOMAIN).pot > $(DOMAIN).1po && \ + sed -f remove-potcdate.sed < $(DOMAIN).po > $(DOMAIN).2po && \ + if cmp $(DOMAIN).1po $(DOMAIN).2po >/dev/null 2>&1; then \ + rm -f $(DOMAIN).1po $(DOMAIN).2po $(DOMAIN).po; \ + else \ + rm -f $(DOMAIN).1po $(DOMAIN).2po $(srcdir)/$(DOMAIN).pot && \ + mv $(DOMAIN).po $(srcdir)/$(DOMAIN).pot; \ + fi; \ + else \ + mv $(DOMAIN).po $(srcdir)/$(DOMAIN).pot; \ + fi; \ + } + +# This rule has no dependencies: we don't need to update $(DOMAIN).pot at +# every "make" invocation, only create it when it is missing. +# Only "make $(DOMAIN).pot-update" or "make dist" will force an update. +$(srcdir)/$(DOMAIN).pot: + $(MAKE) $(DOMAIN).pot-update + +# This target rebuilds a PO file if $(DOMAIN).pot has changed. +# Note that a PO file is not touched if it doesn't need to be changed. +$(POFILES): $(srcdir)/$(DOMAIN).pot + @lang=`echo $@ | sed -e 's,.*/,,' -e 's/\.po$$//'`; \ + test "$(srcdir)" = . && cdcmd="" || cdcmd="cd $(srcdir) && "; \ + echo "$${cdcmd}$(MSGMERGE_UPDATE) $${lang}.po $(DOMAIN).pot"; \ + cd $(srcdir) && $(MSGMERGE_UPDATE) $${lang}.po $(DOMAIN).pot + + +install: install-exec install-data +install-exec: +install-data: install-data-yes + if test "$(PACKAGE)" = "gettext-tools"; then \ + $(mkinstalldirs) $(DESTDIR)$(gettextsrcdir); \ + for file in $(DISTFILES.common) Makevars.template; do \ + $(INSTALL_DATA) $(srcdir)/$$file \ + $(DESTDIR)$(gettextsrcdir)/$$file; \ + done; \ + for file in Makevars; do \ + rm -f $(DESTDIR)$(gettextsrcdir)/$$file; \ + done; \ + else \ + : ; \ + fi +install-data-no: all +install-data-yes: all + $(mkinstalldirs) $(DESTDIR)$(datadir) + @catalogs='$(CATALOGS)'; \ + for cat in $$catalogs; do \ + cat=`basename $$cat`; \ + lang=`echo $$cat | sed -e 's/\.gmo$$//'`; \ + dir=$(localedir)/$$lang/LC_MESSAGES; \ + $(mkinstalldirs) $(DESTDIR)$$dir; \ + if test -r $$cat; then realcat=$$cat; else realcat=$(srcdir)/$$cat; fi; \ + $(INSTALL_DATA) $$realcat $(DESTDIR)$$dir/$(DOMAIN).mo; \ + echo "installing $$realcat as $(DESTDIR)$$dir/$(DOMAIN).mo"; \ + for lc in '' $(EXTRA_LOCALE_CATEGORIES); do \ + if test -n "$$lc"; then \ + if (cd $(DESTDIR)$(localedir)/$$lang && LC_ALL=C ls -l -d $$lc 2>/dev/null) | grep ' -> ' >/dev/null; then \ + link=`cd $(DESTDIR)$(localedir)/$$lang && LC_ALL=C ls -l -d $$lc | sed -e 's/^.* -> //'`; \ + mv $(DESTDIR)$(localedir)/$$lang/$$lc $(DESTDIR)$(localedir)/$$lang/$$lc.old; \ + mkdir $(DESTDIR)$(localedir)/$$lang/$$lc; \ + (cd $(DESTDIR)$(localedir)/$$lang/$$lc.old && \ + for file in *; do \ + if test -f $$file; then \ + ln -s ../$$link/$$file $(DESTDIR)$(localedir)/$$lang/$$lc/$$file; \ + fi; \ + done); \ + rm -f $(DESTDIR)$(localedir)/$$lang/$$lc.old; \ + else \ + if test -d $(DESTDIR)$(localedir)/$$lang/$$lc; then \ + :; \ + else \ + rm -f $(DESTDIR)$(localedir)/$$lang/$$lc; \ + mkdir $(DESTDIR)$(localedir)/$$lang/$$lc; \ + fi; \ + fi; \ + rm -f $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo; \ + ln -s ../LC_MESSAGES/$(DOMAIN).mo $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo 2>/dev/null || \ + ln $(DESTDIR)$(localedir)/$$lang/LC_MESSAGES/$(DOMAIN).mo $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo 2>/dev/null || \ + cp -p $(DESTDIR)$(localedir)/$$lang/LC_MESSAGES/$(DOMAIN).mo $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo; \ + echo "installing $$realcat link as $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo"; \ + fi; \ + done; \ + done + +install-strip: install + +installdirs: installdirs-exec installdirs-data +installdirs-exec: +installdirs-data: installdirs-data-yes + if test "$(PACKAGE)" = "gettext-tools"; then \ + $(mkinstalldirs) $(DESTDIR)$(gettextsrcdir); \ + else \ + : ; \ + fi +installdirs-data-no: +installdirs-data-yes: + $(mkinstalldirs) $(DESTDIR)$(datadir) + @catalogs='$(CATALOGS)'; \ + for cat in $$catalogs; do \ + cat=`basename $$cat`; \ + lang=`echo $$cat | sed -e 's/\.gmo$$//'`; \ + dir=$(localedir)/$$lang/LC_MESSAGES; \ + $(mkinstalldirs) $(DESTDIR)$$dir; \ + for lc in '' $(EXTRA_LOCALE_CATEGORIES); do \ + if test -n "$$lc"; then \ + if (cd $(DESTDIR)$(localedir)/$$lang && LC_ALL=C ls -l -d $$lc 2>/dev/null) | grep ' -> ' >/dev/null; then \ + link=`cd $(DESTDIR)$(localedir)/$$lang && LC_ALL=C ls -l -d $$lc | sed -e 's/^.* -> //'`; \ + mv $(DESTDIR)$(localedir)/$$lang/$$lc $(DESTDIR)$(localedir)/$$lang/$$lc.old; \ + mkdir $(DESTDIR)$(localedir)/$$lang/$$lc; \ + (cd $(DESTDIR)$(localedir)/$$lang/$$lc.old && \ + for file in *; do \ + if test -f $$file; then \ + ln -s ../$$link/$$file $(DESTDIR)$(localedir)/$$lang/$$lc/$$file; \ + fi; \ + done); \ + rm -f $(DESTDIR)$(localedir)/$$lang/$$lc.old; \ + else \ + if test -d $(DESTDIR)$(localedir)/$$lang/$$lc; then \ + :; \ + else \ + rm -f $(DESTDIR)$(localedir)/$$lang/$$lc; \ + mkdir $(DESTDIR)$(localedir)/$$lang/$$lc; \ + fi; \ + fi; \ + fi; \ + done; \ + done + +# Define this as empty until I found a useful application. +installcheck: + +uninstall: uninstall-exec uninstall-data +uninstall-exec: +uninstall-data: uninstall-data-yes + if test "$(PACKAGE)" = "gettext-tools"; then \ + for file in $(DISTFILES.common) Makevars.template; do \ + rm -f $(DESTDIR)$(gettextsrcdir)/$$file; \ + done; \ + else \ + : ; \ + fi +uninstall-data-no: +uninstall-data-yes: + catalogs='$(CATALOGS)'; \ + for cat in $$catalogs; do \ + cat=`basename $$cat`; \ + lang=`echo $$cat | sed -e 's/\.gmo$$//'`; \ + for lc in LC_MESSAGES $(EXTRA_LOCALE_CATEGORIES); do \ + rm -f $(DESTDIR)$(localedir)/$$lang/$$lc/$(DOMAIN).mo; \ + done; \ + done + +check: all + +info dvi ps pdf html tags TAGS ctags CTAGS ID: + +mostlyclean: + rm -f remove-potcdate.sed + rm -f stamp-poT + rm -f core core.* $(DOMAIN).po $(DOMAIN).1po $(DOMAIN).2po *.new.po + rm -fr *.o + +clean: mostlyclean + +distclean: clean + rm -f Makefile Makefile.in POTFILES *.mo + +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 stamp-po $(GMOFILES) + +distdir = $(top_builddir)/$(PACKAGE)-$(VERSION)/$(subdir) +dist distdir: + $(MAKE) update-po + @$(MAKE) dist2 +# This is a separate target because 'update-po' must be executed before. +dist2: $(DISTFILES) + dists="$(DISTFILES)"; \ + if test "$(PACKAGE)" = "gettext-tools"; then \ + dists="$$dists Makevars.template"; \ + fi; \ + if test -f $(srcdir)/ChangeLog; then \ + dists="$$dists ChangeLog"; \ + fi; \ + for i in 0 1 2 3 4 5 6 7 8 9; do \ + if test -f $(srcdir)/ChangeLog.$$i; then \ + dists="$$dists ChangeLog.$$i"; \ + fi; \ + done; \ + if test -f $(srcdir)/LINGUAS; then dists="$$dists LINGUAS"; fi; \ + for file in $$dists; do \ + if test -f $$file; then \ + cp -p $$file $(distdir); \ + else \ + cp -p $(srcdir)/$$file $(distdir); \ + fi; \ + done + +update-po: Makefile + $(MAKE) $(DOMAIN).pot-update + test -z "$(UPDATEPOFILES)" || $(MAKE) $(UPDATEPOFILES) + $(MAKE) update-gmo + +# General rule for updating PO files. + +.nop.po-update: + @lang=`echo $@ | sed -e 's/\.po-update$$//'`; \ + if test "$(PACKAGE)" = "gettext-tools"; then PATH=`pwd`/../src:$$PATH; fi; \ + tmpdir=`pwd`; \ + echo "$$lang:"; \ + test "$(srcdir)" = . && cdcmd="" || cdcmd="cd $(srcdir) && "; \ + echo "$${cdcmd}$(MSGMERGE) $$lang.po $(DOMAIN).pot -o $$lang.new.po"; \ + cd $(srcdir); \ + if $(MSGMERGE) $$lang.po $(DOMAIN).pot -o $$tmpdir/$$lang.new.po; then \ + if cmp $$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; \ + exit 1; \ + fi; \ + fi; \ + else \ + echo "msgmerge for $$lang.po failed!" 1>&2; \ + rm -f $$tmpdir/$$lang.new.po; \ + fi + +$(DUMMYPOFILES): + +update-gmo: Makefile $(GMOFILES) + @: + +Makefile: Makefile.in.in $(top_builddir)/config.status @POMAKEFILEDEPS@ + cd $(top_builddir) \ + && CONFIG_FILES=$(subdir)/$@.in CONFIG_HEADERS= \ + $(SHELL) ./config.status + +force: + +# 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/lib/libalpm/po/POTFILES b/lib/libalpm/po/POTFILES new file mode 100644 index 00000000..24c734b1 --- /dev/null +++ b/lib/libalpm/po/POTFILES @@ -0,0 +1,23 @@ + ../../../add.c \ + ../../../alpm.c \ + ../../../backup.c \ + ../../../be_files.c \ + ../../../cache.c \ + ../../../conflict.c \ + ../../../db.c \ + ../../../deps.c \ + ../../../error.c \ + ../../../group.c \ + ../../../handle.c \ + ../../../list.c \ + ../../../log.c \ + ../../../md5.c \ + ../../../md5driver.c \ + ../../../package.c \ + ../../../provide.c \ + ../../../remove.c \ + ../../../sha1.c \ + ../../../sync.c \ + ../../../trans.c \ + ../../../util.c \ + ../../../versioncmp.c diff --git a/lib/libalpm/po/de.gmo b/lib/libalpm/po/de.gmo new file mode 100644 index 0000000000000000000000000000000000000000..6785ddafc8ee8d2ff55025fc2fd1a89ad241cde5 GIT binary patch literal 16632 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, 2006. +# +msgid "" +msgstr "" +"Project-Id-Version: libalpm\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2006-09-03 13:36+0200\n" +"PO-Revision-Date: 2006-05-06 14:31+0200\n" +"Last-Translator: Marcus Habermehl \n" +"Language-Team: German \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ../add.c:95 +#, c-format +msgid "could not parse token %s" +msgstr "" + +#: ../add.c:127 +#, c-format +msgid "loading target '%s'" +msgstr "Lade Paket '%s'" + +#: ../add.c:169 +#, c-format +msgid "replacing older version %s-%s by %s in target list" +msgstr "Ersetze ältere Version %s-%s durch %s in der Paketliste" + +#: ../add.c:178 +#, c-format +msgid "newer version %s-%s is in the target list -- skipping" +msgstr "Neuere Version %s-%s ist in der Paketliste -- Ãœberspringe" + +#: ../add.c:185 +#, c-format +msgid "reading '%s' metadata" +msgstr "Lese Metadaten von '%s'" + +#. look for unsatisfied dependencies +#: ../add.c:227 ../remove.c:104 +msgid "looking for unsatisfied dependencies" +msgstr "Suche nach ungelösten Abhängigkeiten" + +#. no unsatisfied deps, so look for conflicts +#: ../add.c:239 ../sync.c:504 +msgid "looking for conflicts" +msgstr "Suche nach Konflikten" + +#. re-order w.r.t. dependencies +#: ../add.c:251 ../remove.c:140 +msgid "sorting by dependencies" +msgstr "Sortiere nach Abhängigkeiten" + +#: ../add.c:263 +msgid "cleaning up" +msgstr "Räume auf" + +#: ../add.c:280 +msgid "looking for file conflicts" +msgstr "Suche nach Dateikonflikten" + +#: ../add.c:345 +#, c-format +msgid "upgrading package %s-%s" +msgstr "Aktualisiere Paket %s-%s" + +#: ../add.c:355 ../alpm.c:567 ../conflict.c:274 ../conflict.c:304 +#, c-format +msgid "loading FILES info for '%s'" +msgstr "Lade FILES Informationen für '%s'" + +#: ../add.c:365 ../alpm.c:547 ../alpm.c:679 ../alpm.c:726 +#, c-format +msgid "loading DESC info for '%s'" +msgstr "Lade DESC Informationen für '%s'" + +#: ../add.c:378 +#, c-format +msgid "removing old package first (%s-%s)" +msgstr "Entferne zuerst altes Paket (%s-%s)" + +#: ../add.c:408 +#, c-format +msgid "adding package %s-%s" +msgstr "Füge Paket %s-%s hinzu" + +#: ../add.c:419 +#, c-format +msgid "adding new package %s-%s" +msgstr "Füge neues Paket %s-%s hinzu" + +#: ../add.c:423 +msgid "extracting files" +msgstr "Entpacke Dateien" + +#: ../add.c:438 ../util.c:456 +msgid "could not get current working directory" +msgstr "Kann aktuelles Arbeitsverzeichnis nicht ermitteln" + +#: ../add.c:492 +#, c-format +msgid "notice: %s is in NoExtract -- skipping extraction" +msgstr "Hinweis: %s ist in NoExtract -- Wird nicht entpackt" + +#: ../add.c:528 ../add.c:681 +#, c-format +msgid "could not extract %s (%s)" +msgstr "Kann %s nicht entpacken (%s)" + +#: ../add.c:571 +#, c-format +msgid "checking md5 hashes for %s" +msgstr "Prüfe MD5 Hashes für %s" + +#: ../add.c:572 ../add.c:579 +#, c-format +msgid "current: %s" +msgstr "Aktuell: %s" + +#: ../add.c:573 ../add.c:580 +#, c-format +msgid "new: %s" +msgstr "Neu: %s" + +#: ../add.c:575 ../add.c:582 +#, c-format +msgid "original: %s" +msgstr "Original: %s" + +#: ../add.c:578 +#, c-format +msgid "checking sha1 hashes for %s" +msgstr "Prüfe SHA1 Hashes für %s" + +#: ../add.c:596 +#, c-format +msgid "could not rename %s (%s)" +msgstr "Konnte %s nicht umbenennen (%s)" + +#: ../add.c:597 +#, c-format +msgid "error: could not rename %s (%s)" +msgstr "Fehler: Konnte %s nicht umbenennen (%s)" + +#: ../add.c:601 ../add.c:645 +#, c-format +msgid "could not copy %s to %s (%s)" +msgstr "Konnte %s nicht nach %s kopieren (%s)" + +#: ../add.c:602 +#, c-format +msgid "error: could not copy %s to %s (%s)" +msgstr "Fehler: Konnte %s nicht nach %s kopieren (%s)" + +#: ../add.c:606 +#, c-format +msgid "%s saved as %s.pacorig" +msgstr "%s gesichert als %s.pacorig" + +#: ../add.c:607 +#, c-format +msgid "warning: %s saved as %s" +msgstr "Warnung: %s gesichert als %s" + +#: ../add.c:617 ../add.c:620 ../add.c:626 +msgid "action: installing new file" +msgstr "Aktion: Installiere neue Datei" + +#: ../add.c:624 +msgid "action: leaving existing file in place" +msgstr "Aktion: Lasse existierende Datei an ihrem Platz" + +#: ../add.c:630 +msgid "action: keeping current file and installing new one with .pacnew ending" +msgstr "" +"Aktion: Behalte aktuelle Datei und installiere Neue mit der Endung .pacnew" + +#: ../add.c:634 +#, c-format +msgid "could not install %s as %s: %s" +msgstr "Konnte %s nicht als %s installieren: %s" + +#: ../add.c:635 +#, c-format +msgid "error: could not install %s as %s: %s" +msgstr "Fehler: Konnte %s nicht als %s installieren: %s" + +#: ../add.c:637 +#, c-format +msgid "%s installed as %s" +msgstr "%s installiert als %s" + +#: ../add.c:638 +#, c-format +msgid "warning: %s installed as %s" +msgstr "Warnung: %s installiert als %s" + +#: ../add.c:643 ../add.c:663 +#, c-format +msgid "extracting %s" +msgstr "Entpacke %s" + +#: ../add.c:665 +#, c-format +msgid "%s is in NoUpgrade -- skipping" +msgstr "%s ist in NoUpgrade -- Ãœberspringe" + +#: ../add.c:667 +#, c-format +msgid "extracting %s as %s.pacnew" +msgstr "Entpacke %s als %s.pacnew" + +#: ../add.c:668 +#, c-format +msgid "warning: extracting %s%s as %s" +msgstr "Warnung: Entpacke %s%s als %s" + +#: ../add.c:682 +#, c-format +msgid "error: could not extract %s (%s)" +msgstr "Fehler: Konnte %s nicht entpacken (%s)" + +#: ../add.c:693 +msgid "appending backup entry" +msgstr "Hänge Sicherungseintrag an" + +#: ../add.c:725 ../add.c:727 +#, c-format +msgid "errors occurred while %s %s" +msgstr "Fehler traten auf, während %s %s" + +#: ../add.c:726 ../add.c:728 +msgid "upgrading" +msgstr "der Aktualisierung von" + +#: ../add.c:726 ../add.c:728 +msgid "installing" +msgstr "der Installation von" + +#: ../add.c:749 ../add.c:800 +#, c-format +msgid "adding '%s' in requiredby field for '%s'" +msgstr "Füge '%s' zum requiredby Feld für '%s' hinzu" + +#. remove the package from the database +#: ../add.c:760 ../remove.c:284 +msgid "updating database" +msgstr "Aktualisiere Datenbank" + +#: ../add.c:761 +#, c-format +msgid "adding database entry '%s'" +msgstr "Füge Datenbankeintrag '%s' hinzu" + +#: ../add.c:763 +#, c-format +msgid "could not update database entry %s-%s" +msgstr "Konnte Datenbankeintrag %s-%s nicht aktualisieren" + +#: ../add.c:765 +#, c-format +msgid "error updating database for %s-%s!" +msgstr "Fehler beim aktualisieren der Datenbank für %s-%s!" + +#: ../add.c:769 +#, c-format +msgid "could not add entry '%s' in cache" +msgstr "Konnte Eintrag '%s' nicht zum Cache hinzufügen" + +#. update dependency packages' REQUIREDBY fields +#: ../add.c:774 ../remove.c:294 +msgid "updating dependency packages 'requiredby' fields" +msgstr "Aktualisiere 'requiredby' Felder abhängiger Pakete" + +#: ../add.c:795 ../remove.c:322 +#, c-format +msgid "could not find dependency '%s'" +msgstr "Konnte Abhängigkeit '%s' nicht finden" + +#: ../add.c:803 ../remove.c:332 +#, c-format +msgid "could not update 'requiredby' database entry %s-%s" +msgstr "Konnte 'requiredby' Eintrag %s-%s nicht aktualisieren" + +#: ../add.c:830 ../remove.c:345 +#, c-format +msgid "running \"ldconfig -r %s\"" +msgstr "Führe \"ldconfig -r %s\" aus" + +#: ../alpm.c:201 +#, c-format +msgid "registering database '%s'" +msgstr "Registriere Datenbank '%s'" + +#: ../alpm.c:206 +#, c-format +msgid "database directory '%s' does not exist -- try creating it" +msgstr "" +"Datenbankverzeichnis '%s' ist nicht vorhanden - Versuche es zu erstellen" + +#: ../alpm.c:217 +#, c-format +msgid "opening database '%s'" +msgstr "Öffne Datenbank '%s'" + +#: ../alpm.c:261 +#, c-format +msgid "unregistering database '%s'" +msgstr "" + +#: ../alpm.c:266 +#, c-format +msgid "closing database '%s'" +msgstr "Schließe Datenbank '%s'" + +#: ../alpm.c:344 +#, c-format +msgid "" +"adding new server to database '%s': protocol '%s', server '%s', path '%s'" +msgstr "" + +#: ../alpm.c:348 +#, c-format +msgid "serverlist flushed for '%s'" +msgstr "" + +#: ../alpm.c:383 +#, c-format +msgid "failed to get lastupdate time for %s (no big deal)\n" +msgstr "" + +#: ../alpm.c:402 +#, c-format +msgid "sync: new mtime for %s: %s\n" +msgstr "" + +#. remove the old dir +#: ../alpm.c:408 +#, c-format +msgid "flushing database %s/%s" +msgstr "" + +#: ../alpm.c:412 +#, c-format +msgid "could not remove database entry %s/%s" +msgstr "Konnte Datenbankeintrag %s/%s nicht entfernen" + +#. uncompress the sync database +#. ORE +#. we should not simply unpack the archive, but better parse it and +#. db_write each entry (see sync_load_dbarchive to get archive content) +#: ../alpm.c:426 +#, c-format +msgid "unpacking %s" +msgstr "Entpacke %s" + +#: ../alpm.c:574 +#, c-format +msgid "loading SCRIPLET info for '%s'" +msgstr "Lade SCRIPTLET Informationen für '%s'" + +#: ../alpm.c:673 +#, c-format +msgid "could not get sha1 checksum for package %s-%s\n" +msgstr "Konnte SHA1 Prüfsumme für Paket %s-%s nicht ermitteln\n" + +#: ../alpm.c:684 ../alpm.c:731 +#, c-format +msgid "checksums for package %s-%s are matching" +msgstr "Prüfsummen für Paket %s-%s stimmen überein" + +#: ../alpm.c:687 +#, c-format +msgid "sha1sums do not match for package %s-%s\n" +msgstr "SHA1 Summen für Paket %s-%s stimmen nicht überein\n" + +#: ../alpm.c:720 +#, c-format +msgid "could not get md5 checksum for package %s-%s\n" +msgstr "Konnte MD5 Prüfsumme für Paket %s-%s nicht ermitteln\n" + +#: ../alpm.c:734 +#, c-format +msgid "md5sums do not match for package %s-%s\n" +msgstr "MD5 Summen für Paket %s-%s stimmen nicht überein\n" + +#: ../alpm.c:993 +#, c-format +msgid "could not remove lock file %s" +msgstr "Konnte Sperrdatei %s nicht entfernen" + +#: ../alpm.c:994 +#, c-format +msgid "warning: could not remove lock file %s" +msgstr "Warnung: Konnte Sperrdatei %s nicht entfernen" + +#: ../alpm.c:1232 +#, c-format +msgid "config: new section '%s'\n" +msgstr "" + +#: ../alpm.c:1275 +msgid "config: usesyslog\n" +msgstr "" + +#: ../alpm.c:1286 +#, c-format +msgid "config: including %s\n" +msgstr "" + +#: ../alpm.c:1298 ../alpm.c:1306 +#, c-format +msgid "config: noupgrade: %s\n" +msgstr "" + +#: ../alpm.c:1316 ../alpm.c:1324 +#, fuzzy, c-format +msgid "config: noextract: %s\n" +msgstr "Konnte %s nicht entpacken: %s\n" + +#: ../alpm.c:1334 ../alpm.c:1342 +#, c-format +msgid "config: ignorepkg: %s\n" +msgstr "" + +#: ../alpm.c:1352 ../alpm.c:1360 +#, c-format +msgid "config: holdpkg: %s\n" +msgstr "" + +#: ../alpm.c:1370 +#, c-format +msgid "config: dbpath: %s\n" +msgstr "" + +#: ../alpm.c:1380 +#, c-format +msgid "config: cachedir: %s\n" +msgstr "" + +#: ../alpm.c:1386 +#, fuzzy, c-format +msgid "config: log file: %s\n" +msgstr "Kann Logdatei '%s' nicht öffnen" + +#. The config value is in days, we use seconds +#: ../alpm.c:1394 +#, c-format +msgid "config: UpgradeDelay: %i\n" +msgstr "" + +#. add to the list +#: ../alpm.c:1415 +#, fuzzy, c-format +msgid "config: %s: server: %s\n" +msgstr "Warnung: %s gesichert als %s" + +#: ../be_files.c:151 +#, c-format +msgid "invalid name for dabatase entry '%s'" +msgstr "Falscher Name für Datenbankeintrag '%s'" + +#: ../be_files.c:432 +#, c-format +msgid "db_write: could not open file %s/desc" +msgstr "db_write: Konnte Datei %s/desc nicht öffnen" + +#: ../be_files.c:517 +#, c-format +msgid "db_write: could not open file %s/files" +msgstr "db_write: Konnte Datei %s/files nicht öffnen" + +#: ../be_files.c:543 +#, c-format +msgid "db_write: could not open file %s/depends" +msgstr "db_write: Konnte Datei %s/depends nicht öffnen" + +#: ../cache.c:57 +#, c-format +msgid "loading package cache (infolevel=%#x) for repository '%s'" +msgstr "Lade Paketcache (infolevel=%#x) für Repository '%s'" + +#: ../cache.c:77 +#, c-format +msgid "freeing package cache for repository '%s'" +msgstr "" + +#: ../cache.c:112 +#, c-format +msgid "adding entry '%s' in '%s' cache" +msgstr "Füge Eintrag '%s' zu '%s' Cache hinzu" + +#: ../cache.c:134 +#, c-format +msgid "removing entry '%s' from '%s' cache" +msgstr "Entferne Eintrag '%s' aus '%s' Cache" + +#: ../cache.c:165 +#, c-format +msgid "loading group cache for repository '%s'" +msgstr "Lade Gruppencache für repository '%s'" + +#. CHECK 1: check targets against database +#: ../conflict.c:71 +#, c-format +msgid "checkconflicts: targ '%s' vs db" +msgstr "" + +#. conflict +#. confict +#: ../conflict.c:80 ../conflict.c:94 +#, c-format +msgid "targs vs db: found %s as a conflict for %s" +msgstr "" + +#. CHECK 2: check targets against targets +#: ../conflict.c:107 +#, c-format +msgid "checkconflicts: targ '%s' vs targs" +msgstr "" + +#. otp is listed in tp's conflict list +#: ../conflict.c:116 ../conflict.c:129 +#, c-format +msgid "targs vs targs: found %s as a conflict for %s" +msgstr "" + +#. CHECK 3: check database against targets +#: ../conflict.c:143 +#, c-format +msgid "checkconflicts: db vs targ '%s'" +msgstr "" + +#: ../conflict.c:170 ../conflict.c:185 +#, c-format +msgid "db vs targs: found %s as a conflict for %s" +msgstr "" + +#: ../conflict.c:234 ../conflict.c:335 ../deps.c:54 ../deps.c:601 +#: ../deps.c:641 ../group.c:42 ../handle.c:62 ../package.c:98 ../sync.c:65 +#: ../sync.c:635 ../sync.c:651 ../sync.c:747 ../trans.c:49 ../util.c:598 +#: ../util.c:605 +#, c-format +msgid "malloc failure: could not allocate %d bytes" +msgstr "" + +#: ../db.c:57 ../db.c:64 +#, c-format +msgid "malloc failed: could not allocate %d bytes" +msgstr "" + +#: ../deps.c:118 +#, fuzzy +msgid "started sorting dependencies" +msgstr "Sortiere nach Abhängigkeiten" + +#: ../deps.c:123 +msgid "possible dependency cycle detected" +msgstr "" + +#: ../deps.c:166 +#, fuzzy +msgid "sorting dependencies finished" +msgstr "Sortiere nach Abhängigkeiten" + +#: ../deps.c:260 ../deps.c:406 +#, c-format +msgid "checkdeps: found %s as required by %s" +msgstr "" + +#: ../deps.c:370 +#, c-format +msgid "checkdeps: found %s as a dependency for %s" +msgstr "checkdeps: %s als Abhängigkeit für %s gefunden" + +#: ../deps.c:494 +#, c-format +msgid "cannot find package \"%s\" or anything that provides it!" +msgstr "" + +#: ../deps.c:499 +msgid "dep is NULL!" +msgstr "" + +#: ../deps.c:511 +#, c-format +msgid "excluding %s -- explicitly installed" +msgstr "Schließe %s aus -- Ausdrücklich installiert" + +#. add it to the target list +#: ../deps.c:528 +#, c-format +msgid "loading ALL info for '%s'" +msgstr "Lade ALL Informationen für '%s'" + +#: ../deps.c:531 +#, c-format +msgid "adding '%s' to the targets" +msgstr "Füge '%s' zu den Paketen hinzu" + +#: ../deps.c:573 +#, c-format +msgid "%s provides dependency %s -- skipping" +msgstr "%s stellt Abhängigkeit %s zur Verfügung -- Ãœberspringe" + +#: ../deps.c:597 +#, c-format +msgid "" +"cannot resolve dependencies for \"%s\" (\"%s\" is not in the package set)" +msgstr "" +"Kann Abhängigkeiten für \"%s\" nicht auflösen (\"%s\" ist nicht in " +"Paketliste enthalten)" + +#. this dep is already in the target list +#: ../deps.c:614 +#, c-format +msgid "dependency %s is already in the target list -- skipping" +msgstr "Abhängigkeit %s ist bereits in Paketliste -- Ãœberspringe" + +#: ../deps.c:634 +#, c-format +msgid "pulling dependency %s (needed by %s)" +msgstr "Ziehe Abhängigkeit %s (benötigt von %s)" + +#: ../deps.c:638 +#, c-format +msgid "cannot resolve dependencies for \"%s\"" +msgstr "Kann Abhängigkeiten für \"%s\" nicht auflösen" + +#. cycle detected -- skip it +#: ../deps.c:654 +#, c-format +msgid "dependency cycle detected: %s" +msgstr "" + +#: ../error.c:34 +msgid "out of memory!" +msgstr "" + +#: ../error.c:36 ../error.c:135 +msgid "unexpected error" +msgstr "Unerwarteter Fehler" + +#: ../error.c:38 +msgid "insufficient privileges" +msgstr "Ungenügende Rechte" + +#: ../error.c:40 +msgid "wrong or NULL argument passed" +msgstr "Falsches oder NULL Argument übergeben" + +#: ../error.c:42 +msgid "could not find or read file" +msgstr "Konnte Datei nicht finden oder lesen" + +#: ../error.c:45 +msgid "library not initialized" +msgstr "Bibliothek nicht initialisiert" + +#: ../error.c:47 +msgid "library already initialized" +msgstr "Bibliothek bereits initialisiert" + +#: ../error.c:49 +msgid "unable to lock database" +msgstr "Konnte Datenbank nicht sperren" + +#: ../error.c:52 +msgid "could not open database" +msgstr "Konnte Datenbank nicht öffnen" + +#: ../error.c:54 +msgid "could not create database" +msgstr "Konnte Datenbank nicht erstellen" + +#: ../error.c:56 +msgid "database not initialized" +msgstr "Datenbank nicht initialisiert" + +#: ../error.c:58 +msgid "database already registered" +msgstr "Datenbank bereits registriert" + +#: ../error.c:60 +msgid "could not find database" +msgstr "Konnte Datenbank nicht finden" + +#: ../error.c:62 +msgid "could not update database" +msgstr "Konnte Datenbank nicht aktualisieren" + +#: ../error.c:64 +msgid "could not remove database entry" +msgstr "Konnte Datenbankeintrag nicht entfernen" + +#: ../error.c:71 +msgid "could not set parameter" +msgstr "Konnte Parameter nicht setzen" + +#: ../error.c:74 ../error.c:80 +msgid "transaction not initialized" +msgstr "" + +#: ../error.c:76 +msgid "transaction already initialized" +msgstr "" + +#: ../error.c:78 +msgid "duplicate target" +msgstr "Doppelte Pakete" + +#: ../error.c:82 +msgid "transaction not prepared" +msgstr "" + +#: ../error.c:84 +msgid "transaction aborted" +msgstr "" + +#: ../error.c:86 +msgid "operation not compatible with the transaction type" +msgstr "" + +#: ../error.c:89 +msgid "could not find or read package" +msgstr "Konnte Paket nicht finden oder lesen" + +#: ../error.c:91 +msgid "invalid or corrupted package" +msgstr "Ungültiges oder beschädigtes Paket" + +#: ../error.c:93 +msgid "cannot open package file" +msgstr "Kann Paketdatei nicht öffnen" + +#: ../error.c:95 +msgid "cannot load package data" +msgstr "Kann Paketdaten nicht laden" + +#: ../error.c:97 +msgid "package already installed" +msgstr "Paket ist bereits installiert" + +#: ../error.c:99 +msgid "package not installed or lesser version" +msgstr "Paket ist nicht installiert oder kleinere Version" + +#: ../error.c:101 +msgid "package name is not valid" +msgstr "Paketname ist nicht gültig" + +#: ../error.c:103 +msgid "corrupted package" +msgstr "Beschädigtes Paket" + +#: ../error.c:106 +msgid "group not found" +msgstr "Gruppe nicht gefunden" + +#: ../error.c:109 +msgid "could not satisfy dependencies" +msgstr "Kann Abhängigkeiten nicht erfüllen" + +#: ../error.c:111 +msgid "conflicting dependencies" +msgstr "In Konflikt stehende Abhängigkeiten" + +#: ../error.c:113 +msgid "conflicting files" +msgstr "In Konflikt stehende Dateien" + +#: ../error.c:116 +msgid "user aborted" +msgstr "Benutzerabbruch" + +#: ../error.c:118 +msgid "libarchive error" +msgstr "libarchive Fehler" + +#: ../error.c:120 +msgid "internal error" +msgstr "Interner Fehler" + +#: ../error.c:122 +msgid "not enough space" +msgstr "" + +#: ../error.c:124 +msgid "not confirmed" +msgstr "" + +#: ../error.c:127 +msgid "bad section name" +msgstr "" + +#: ../error.c:129 +msgid "'local' is reserved and cannot be used as a package tree" +msgstr "" + +#: ../error.c:131 +#, fuzzy +msgid "syntax error" +msgstr "Interner Fehler" + +#: ../error.c:133 +msgid "all directives must belong to a section" +msgstr "" + +#: ../handle.c:143 +#, c-format +msgid "PM_OPT_DBPATH set to '%s'" +msgstr "PM_OPT_DBPATH auf '%s' gesetzt" + +#: ../handle.c:150 +#, c-format +msgid "PM_OPT_CACHEDIR set to '%s'" +msgstr "PM_OPT_CACHEDIR auf '%s' gesetzt" + +#: ../handle.c:167 +#, c-format +msgid "can't open log file %s" +msgstr "Kann Logdatei '%s' nicht öffnen" + +#: ../handle.c:171 +#, c-format +msgid "PM_OPT_LOGFILE set to '%s'" +msgstr "PM_OPT_LOGFILE auf '%s' gesetzt" + +#: ../handle.c:176 +#, c-format +msgid "'%s' added to PM_OPT_NOUPGRADE" +msgstr "'%s' zu PM_OPT_NOUPGRADE hinzugefügt" + +#: ../handle.c:179 +msgid "PM_OPT_NOUPGRADE flushed" +msgstr "" + +#: ../handle.c:185 +#, c-format +msgid "'%s' added to PM_OPT_NOEXTRACT" +msgstr "'%s' zu PM_OPT_NOEXTRACT hinzugefügt" + +#: ../handle.c:188 +msgid "PM_OPT_NOEXTRACT flushed" +msgstr "" + +#: ../handle.c:194 +#, c-format +msgid "'%s' added to PM_OPT_IGNOREPKG" +msgstr "'%s' zu PM_OPT_IGNOREPKG hinzugefügt" + +#: ../handle.c:197 +msgid "PM_OPT_IGNOREPKG flushed" +msgstr "" + +#: ../handle.c:203 +#, fuzzy, c-format +msgid "'%s' added to PM_OPT_HOLDPKG" +msgstr "'%s' zu PM_OPT_IGNOREPKG hinzugefügt" + +#: ../handle.c:206 +msgid "PM_OPT_HOLDPKG flushed" +msgstr "" + +#: ../handle.c:222 +#, c-format +msgid "PM_OPT_USESYSLOG set to '%d'" +msgstr "PM_OPT_USESYSLOG auf '%d' gesetzt" + +#: ../handle.c:262 +#, c-format +msgid "PM_OPT_LOGMASK set to '%02x'" +msgstr "PM_OPT_LOGMASK auf '%02x' gesetzt" + +#: ../handle.c:281 +#, fuzzy, c-format +msgid "PM_OPT_PROXYHOST set to '%s'" +msgstr "PM_OPT_DBPATH auf '%s' gesetzt" + +#: ../handle.c:285 +#, fuzzy, c-format +msgid "PM_OPT_PROXYPORT set to '%d'" +msgstr "PM_OPT_DBPATH auf '%s' gesetzt" + +#: ../handle.c:296 +#, fuzzy, c-format +msgid "PM_OPT_XFERCOMMAND set to '%s'" +msgstr "PM_OPT_CACHEDIR auf '%s' gesetzt" + +#: ../handle.c:300 +#, fuzzy, c-format +msgid "PM_OPT_NOPASSIVEFTP set to '%d'" +msgstr "PM_OPT_DBPATH auf '%s' gesetzt" + +#: ../handle.c:304 +#, fuzzy, c-format +msgid "PM_OPT_CHOMP set to '%d'" +msgstr "PM_OPT_CACHEDIR auf '%s' gesetzt" + +#: ../md5driver.c:48 ../sha1.c:395 +#, c-format +msgid "%s can't be opened\n" +msgstr "%s kann nicht geöffnet werden\n" + +#: ../package.c:185 +#, c-format +msgid "could not open file %s" +msgstr "Konnte Datei %s nicht öffnen" + +#: ../package.c:202 ../package.c:262 +#, c-format +msgid "%s: syntax error in description file line %d" +msgstr "%s: Falscher Syntax in Beschreibungsdatei, Zeile %d" + +#: ../package.c:319 +msgid "could not parse the package description file" +msgstr "Konnte Paketbeschreibungsdatei nicht analysieren" + +#: ../package.c:327 +#, c-format +msgid "missing package name in %s" +msgstr "Fehlender Paketname in %s" + +#: ../package.c:335 +#, c-format +msgid "missing package version in %s" +msgstr "Fehlende Paketversion in %s" + +#: ../package.c:374 +#, c-format +msgid "could not remove tempfile %s" +msgstr "Konnte tempfile %s nicht entfernen" + +#: ../package.c:391 +#, c-format +msgid "bad package file in %s" +msgstr "" + +#: ../package.c:399 +#, c-format +msgid "missing package info file in %s" +msgstr "Fehlende Paketinfodatei in %s" + +#: ../remove.c:76 +#, c-format +msgid "could not find %s in database" +msgstr "Konnte %s nicht in der Datenbank finden" + +#: ../remove.c:88 +#, c-format +msgid "adding %s in the targets list" +msgstr "" + +#: ../remove.c:114 +#, c-format +msgid "pulling %s in the targets list" +msgstr "" + +#: ../remove.c:117 +#, c-format +msgid "could not find %s in database -- skipping" +msgstr "Konnte %s nicht in Datenbank finden -- Ãœberspringe" + +#: ../remove.c:135 +msgid "finding removable dependencies" +msgstr "Finde entfernbare Abhängigkeiten" + +#: ../remove.c:180 +#, c-format +msgid "removing package %s-%s" +msgstr "Entferne Paket %s-%s" + +#: ../remove.c:191 +msgid "removing files" +msgstr "Entferne Dateien" + +#: ../remove.c:217 +#, c-format +msgid "file %s does not exist" +msgstr "Datei %s existiert nicht" + +#. this is okay, other packages are probably using it. +#: ../remove.c:223 +#, c-format +msgid "keeping directory %s" +msgstr "Behalte Verzeichnis %s" + +#: ../remove.c:225 +#, c-format +msgid "removing directory %s" +msgstr "Entferne Verzeichnis %s" + +#: ../remove.c:239 +#, c-format +msgid "skipping removal of %s as it has moved to another package" +msgstr "" + +#: ../remove.c:251 ../remove.c:252 +#, c-format +msgid "%s saved as %s" +msgstr "%s gespeichert als %s" + +#: ../remove.c:254 ../remove.c:261 +#, c-format +msgid "unlinking %s" +msgstr "" + +#: ../remove.c:256 ../remove.c:266 +#, c-format +msgid "cannot remove file %s" +msgstr "Kann Datei %s nicht entfernen" + +#: ../remove.c:285 +#, c-format +msgid "removing database entry '%s'" +msgstr "Entferne Datenbankeintrag '%s'" + +#: ../remove.c:287 +#, c-format +msgid "could not remove database entry %s-%s" +msgstr "Konnte Datenbankeintrag %s-%s nicht entfernen" + +#: ../remove.c:290 +#, c-format +msgid "could not remove entry '%s' from cache" +msgstr "Konnte Eintrag '%s' nicht aus dem Cache entfernen" + +#: ../remove.c:330 +#, c-format +msgid "updating 'requiredby' field for package '%s'" +msgstr "Aktualisiere 'requiredby' Feld für Paket '%s'" + +#. check for "recommended" package replacements +#: ../sync.c:160 +msgid "checking for package replacements" +msgstr "Prüfe auf Paketersetzungen" + +#: ../sync.c:169 +#, c-format +msgid "checking replacement '%s' for package '%s'" +msgstr "Prüfe Ersetzung '%s' für Paket '%s'" + +#: ../sync.c:171 +#, c-format +msgid "%s-%s: ignoring package upgrade (to be replaced by %s-%s)" +msgstr "" + +#: ../sync.c:205 +#, c-format +msgid "%s-%s elected for upgrade (to be replaced by %s-%s)" +msgstr "" + +#. match installed packages with the sync dbs and compare versions +#: ../sync.c:217 +msgid "checking for package upgrades" +msgstr "Prüfe auf Paketaktualisierungen" + +#: ../sync.c:229 +#, c-format +msgid "'%s' not found in sync db -- skipping" +msgstr "'%s' nicht in sync DB gefunden -- Ãœberspringe" + +#: ../sync.c:243 ../sync.c:530 +#, c-format +msgid "'%s' is already elected for removal -- skipping" +msgstr "'%s' ist bereits zum Entfernen ausgewählt -- Ãœberspringe" + +#. local version is newer +#: ../sync.c:252 +#, c-format +msgid "%s-%s: local version is newer" +msgstr "%s-%s: Lokale Version ist neuer" + +#. package should be ignored (IgnorePkg) +#: ../sync.c:258 +#, c-format +msgid "%s-%s: ignoring package upgrade (%s)" +msgstr "%s-%s: Ignoriere Paketaktualisierung (%s)" + +#. package too new (UpgradeDelay) +#: ../sync.c:262 +#, c-format +msgid "%s-%s: delaying upgrade of package (%s)\n" +msgstr "" + +#: ../sync.c:266 +#, c-format +msgid "%s-%s elected for upgrade (%s => %s)" +msgstr "%s-%s ausgewählt für Aktualisierung (%s => %s)" + +#. Search provides +#: ../sync.c:317 ../sync.c:336 +#, c-format +msgid "target '%s' not found -- looking for provisions" +msgstr "" + +#: ../sync.c:322 ../sync.c:341 +#, c-format +msgid "found '%s' as a provision for '%s'" +msgstr "" + +#: ../sync.c:360 +#, c-format +msgid "%s-%s: local version is newer -- skipping" +msgstr "%s-%s: Lokale Version ist neuer -- Ãœberspringe" + +#: ../sync.c:368 +#, c-format +msgid "%s-%s is up to date -- skipping" +msgstr "%s-%s ist aktuell -- Ãœberspringe" + +#: ../sync.c:388 +#, c-format +msgid "adding target '%s' to the transaction set" +msgstr "" + +#: ../sync.c:433 +msgid "resolving targets dependencies" +msgstr "" + +#: ../sync.c:453 +#, c-format +msgid "adding package %s-%s to the transaction targets" +msgstr "" + +#: ../sync.c:485 +msgid "looking for unresolvable dependencies" +msgstr "Suche nach ungelösten Abhängigkeiten" + +#: ../sync.c:515 +#, c-format +msgid "package '%s' is conflicting with '%s'" +msgstr "Paket '%s' steht im Konflikt mit '%s'" + +#: ../sync.c:537 +#, c-format +msgid "'%s' not found in transaction set -- skipping" +msgstr "" + +#. so just treat it like a "replaces" item so the REQUIREDBY +#. * fields are inherited properly. +#. +#: ../sync.c:548 +#, c-format +msgid "package '%s' provides its own conflict" +msgstr "Paket '%s' liefert seinen eigenen Konflikt" + +#: ../sync.c:571 ../sync.c:576 +#, c-format +msgid "'%s' is in the target list -- keeping it" +msgstr "" + +#: ../sync.c:588 ../sync.c:625 +#, c-format +msgid "removing '%s' from target list" +msgstr "Entferne '%s' von Paketliste" + +#. It's a conflict -- see if they want to remove it +#. +#: ../sync.c:597 +#, c-format +msgid "resolving package '%s' conflict" +msgstr "" + +#. append to the replaces list +#: ../sync.c:620 +#, c-format +msgid "electing '%s' for removal" +msgstr "Wähle '%s' zum Entfernen aus" + +#. abort +#: ../sync.c:631 ../sync.c:647 +msgid "unresolvable package conflicts detected" +msgstr "Nicht lösbare Paketkonflikte gefunden" + +#: ../sync.c:699 +msgid "checking dependencies of packages designated for removal" +msgstr "" + +#: ../sync.c:713 +msgid "something has gone horribly wrong" +msgstr "" + +#. found matching provisio -- we're good to go +#: ../sync.c:732 +#, c-format +msgid "found '%s' as a provision for '%s' -- conflict aborted" +msgstr "" + +#: ../sync.c:825 +#, c-format +msgid "%s-%s-%s%s is already in the cache\n" +msgstr "" + +#. no cache directory.... try creating it +#: ../sync.c:837 +#, c-format +msgid "no %s cache exists. creating...\n" +msgstr "" + +#: ../sync.c:838 +#, c-format +msgid "warning: no %s cache exists. creating..." +msgstr "" + +#. couldn't mkdir the cache directory, so fall back to /tmp and unlink +#. * the package afterwards. +#. +#: ../sync.c:843 +msgid "couldn't create package cache, using /tmp instead\n" +msgstr "" + +#: ../sync.c:844 +msgid "warning: couldn't create package cache, using /tmp instead" +msgstr "" + +#: ../sync.c:847 +#, c-format +msgid "failed to set option CACHEDIR (%s)\n" +msgstr "" + +#: ../sync.c:854 +#, c-format +msgid "failed to retrieve some files from %s\n" +msgstr "" + +#: ../sync.c:883 ../sync.c:895 +#, c-format +msgid "can't get md5 or sha1 checksum for package %s\n" +msgstr "Kann MD5 oder SHA1 Prüfsumme für Paket %s nicht ermitteln\n" + +#: ../sync.c:914 +#, c-format +msgid "archive %s was corrupted (bad MD5 or SHA1 checksum)\n" +msgstr "Archive %s war beschädigt (falsche MD5 oder SHA1 Prüfsumme)\n" + +#: ../sync.c:916 +#, c-format +msgid "archive %s is corrupted (bad MD5 or SHA1 checksum)\n" +msgstr "Archiv %s ist beschädigt (falsche MD5 oder SHA1 Prüfsumme)\n" + +#: ../sync.c:936 +msgid "could not create removal transaction" +msgstr "" + +#: ../sync.c:942 +msgid "could not initialize the removal transaction" +msgstr "" + +#: ../sync.c:962 +msgid "removing conflicting and to-be-replaced packages" +msgstr "Entferne im Konflikt stehende und zu ersetzende Pakete" + +#: ../sync.c:964 +msgid "could not prepare removal transaction" +msgstr "" + +#: ../sync.c:970 +msgid "could not commit removal transaction" +msgstr "" + +#. install targets +#: ../sync.c:977 +msgid "installing packages" +msgstr "Installiere Pakete" + +#: ../sync.c:980 +msgid "could not create transaction" +msgstr "" + +#: ../sync.c:985 +msgid "could not initialize transaction" +msgstr "" + +#: ../sync.c:1004 +msgid "could not prepare transaction" +msgstr "" + +#: ../sync.c:1009 +msgid "could not commit transaction" +msgstr "" + +#: ../sync.c:1016 +#, fuzzy +msgid "updating database for replaced packages' dependencies" +msgstr "Aktualisiere Datenbank für ersetzte Paketabhängigkeiten" + +#: ../sync.c:1045 +#, c-format +msgid "could not update requiredby for database entry %s-%s" +msgstr "Konnte requiredby für Datenbankeintrag %s-%s nicht aktualisieren" + +#: ../sync.c:1054 +#, c-format +msgid "could not update new database entry %s-%s" +msgstr "Konnte neuen Datenbankeintrag %s-%s nicht aktualisieren" + +#: ../util.c:285 +#, c-format +msgid "could not extract %s: %s\n" +msgstr "Konnte %s nicht entpacken: %s\n" + +#: ../util.c:436 +msgid "could not create temp directory" +msgstr "Konnte temp Verzeichnis nicht erstellen" + +#: ../util.c:463 +#, c-format +msgid "could not change directory to %s (%s)" +msgstr "Konnte nicht zu Verzeichnis %s wechseln (%s)" + +#: ../util.c:466 +#, c-format +msgid "executing %s script..." +msgstr "Führe %s Skript aus ..." + +#: ../util.c:479 +#, c-format +msgid "could not fork a new process (%s)" +msgstr "Konnte keinen neuen Prozess starten (%s)" + +#: ../util.c:486 +#, c-format +msgid "chrooting in %s" +msgstr "Wechsel root zu %s" + +#: ../util.c:488 +#, c-format +msgid "could not change the root directory (%s)" +msgstr "Konnte root Verzeichnis nicht wechseln (%s)" + +#: ../util.c:492 +#, c-format +msgid "could not change directory to / (%s)" +msgstr "Konnte nicht zu Verzeichnis / wechseln (%s)" + +#: ../util.c:496 +#, c-format +msgid "executing \"%s\"" +msgstr "Führe \"%s\" aus" + +#: ../util.c:499 +#, fuzzy, c-format +msgid "call to popen failed (%s)" +msgstr "Konnte Datei %s nicht öffnen" + +#: ../util.c:521 +#, c-format +msgid "call to waitpid failed (%s)" +msgstr "" + +#: ../util.c:529 +#, c-format +msgid "could not remove tmpdir %s" +msgstr "Konnte tmpdir %s nicht entfernen" + +#: ../util.c:593 +#, c-format +msgid "check_freespace: total pkg size: %lld, disk space: %lld" +msgstr "" diff --git a/lib/libalpm/po/fr.gmo b/lib/libalpm/po/fr.gmo new file mode 100644 index 0000000000000000000000000000000000000000..bdcea213c65224366abaf0be78dde114b5ee36d8 GIT binary patch literal 22780 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 aRZBV?#_&om3FpA&Jv1g%yO`!Y!9N1B{5;D5 literal 0 HcmV?d00001 diff --git a/lib/libalpm/po/fr.po b/lib/libalpm/po/fr.po new file mode 100644 index 00000000..b3b33f4f --- /dev/null +++ b/lib/libalpm/po/fr.po @@ -0,0 +1,1371 @@ +# 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 , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: libalpm\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2006-09-03 13:36+0200\n" +"PO-Revision-Date: 2006-06-05 22:47+0100\n" +"Last-Translator: Enda \n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=iso-8859-15\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Poedit-Language: French\n" +"X-Poedit-Country: FRANCE\n" + +#: ../add.c:95 +#, c-format +msgid "could not parse token %s" +msgstr "ne peut analyser l'élément %s" + +#: ../add.c:127 +#, c-format +msgid "loading target '%s'" +msgstr "charge la cible '%s'" + +#: ../add.c:169 +#, c-format +msgid "replacing older version %s-%s by %s in target list" +msgstr "remplace l'ancienne version %s-%s par %s dans la liste de destination" + +#: ../add.c:178 +#, c-format +msgid "newer version %s-%s is in the target list -- skipping" +msgstr "une version plus récente %s-%s est déjà présente -- ignorer" + +#: ../add.c:185 +#, c-format +msgid "reading '%s' metadata" +msgstr "lecture des métas-données '%s'" + +#. look for unsatisfied dependencies +#: ../add.c:227 ../remove.c:104 +msgid "looking for unsatisfied dependencies" +msgstr "recherche des dépendances non satisfaites" + +#. no unsatisfied deps, so look for conflicts +#: ../add.c:239 ../sync.c:504 +msgid "looking for conflicts" +msgstr "recherche des conflits" + +#. re-order w.r.t. dependencies +#: ../add.c:251 ../remove.c:140 +msgid "sorting by dependencies" +msgstr "tri par dépendances" + +#: ../add.c:263 +msgid "cleaning up" +msgstr "nettoyage" + +#: ../add.c:280 +msgid "looking for file conflicts" +msgstr "recherche de conflits entre fichiers" + +#: ../add.c:345 +#, c-format +msgid "upgrading package %s-%s" +msgstr "mise a jour du paquet %s-%s" + +#: ../add.c:355 ../alpm.c:567 ../conflict.c:274 ../conflict.c:304 +#, c-format +msgid "loading FILES info for '%s'" +msgstr "chargement des informations de fichiers pour '%s'" + +#: ../add.c:365 ../alpm.c:547 ../alpm.c:679 ../alpm.c:726 +#, c-format +msgid "loading DESC info for '%s'" +msgstr "chargement des informations descriptives pour '%s'" + +#: ../add.c:378 +#, c-format +msgid "removing old package first (%s-%s)" +msgstr "retirer l'ancien paquet préalablement (%s-%s)" + +#: ../add.c:408 +#, c-format +msgid "adding package %s-%s" +msgstr "ajout du paquet %s-%s" + +#: ../add.c:419 +#, c-format +msgid "adding new package %s-%s" +msgstr "ajout du nouveau paquet %s-%s" + +#: ../add.c:423 +msgid "extracting files" +msgstr "extraction des fichiers" + +#: ../add.c:438 ../util.c:456 +msgid "could not get current working directory" +msgstr "impossible de déterminer le répertoire courant" + +#: ../add.c:492 +#, c-format +msgid "notice: %s is in NoExtract -- skipping extraction" +msgstr "note: %s est dans la liste NoExtract -- ignore l'extraction" + +#: ../add.c:528 ../add.c:681 +#, c-format +msgid "could not extract %s (%s)" +msgstr "n'a pas pu extraire %s (%s)" + +#: ../add.c:571 +#, c-format +msgid "checking md5 hashes for %s" +msgstr "vérification de la 'signature' md5 pour %s" + +#: ../add.c:572 ../add.c:579 +#, c-format +msgid "current: %s" +msgstr "courant: %s" + +#: ../add.c:573 ../add.c:580 +#, c-format +msgid "new: %s" +msgstr "nouveau: %s" + +#: ../add.c:575 ../add.c:582 +#, c-format +msgid "original: %s" +msgstr "original: %s" + +#: ../add.c:578 +#, c-format +msgid "checking sha1 hashes for %s" +msgstr "vérification de la 'signature' sha1 pour %s" + +#: ../add.c:596 +#, c-format +msgid "could not rename %s (%s)" +msgstr "n'a pas pu renommer %s (%s)" + +#: ../add.c:597 +#, c-format +msgid "error: could not rename %s (%s)" +msgstr "erreur: n'a pas pu renommer %s (%s)" + +#: ../add.c:601 ../add.c:645 +#, c-format +msgid "could not copy %s to %s (%s)" +msgstr "n'a pas pu copier %s vers %s (%s)" + +#: ../add.c:602 +#, c-format +msgid "error: could not copy %s to %s (%s)" +msgstr "erreur: n'a pas pu copier %s vers %s (%s)" + +#: ../add.c:606 +#, c-format +msgid "%s saved as %s.pacorig" +msgstr "%s sauve en tant que %s.pacorig" + +#: ../add.c:607 +#, c-format +msgid "warning: %s saved as %s" +msgstr "avertissement: %s sauve en tant que %s" + +#: ../add.c:617 ../add.c:620 ../add.c:626 +msgid "action: installing new file" +msgstr "action: installation de nouveau fichier" + +#: ../add.c:624 +msgid "action: leaving existing file in place" +msgstr "action: quitte en préservant les fichiers existant" + +#: ../add.c:630 +msgid "action: keeping current file and installing new one with .pacnew ending" +msgstr "" +"action: conserver le fichier actuel et installer le nouveau avec " +"l'extension .pacnew" + +#: ../add.c:634 +#, c-format +msgid "could not install %s as %s: %s" +msgstr "n'a pas pu installer %s en tant que %s: %s" + +#: ../add.c:635 +#, c-format +msgid "error: could not install %s as %s: %s" +msgstr "erreur: n'a pas pu installer %s en tant que %s: %s" + +#: ../add.c:637 +#, c-format +msgid "%s installed as %s" +msgstr "%s installé en tant que %s" + +#: ../add.c:638 +#, c-format +msgid "warning: %s installed as %s" +msgstr "avertissement: %s installé en tant que %s" + +#: ../add.c:643 ../add.c:663 +#, c-format +msgid "extracting %s" +msgstr "extrait %s" + +#: ../add.c:665 +#, c-format +msgid "%s is in NoUpgrade -- skipping" +msgstr "%s est marqué NoUpgrade -- ignore" + +#: ../add.c:667 +#, c-format +msgid "extracting %s as %s.pacnew" +msgstr "extrait %s en tant que %s.pacnew" + +#: ../add.c:668 +#, c-format +msgid "warning: extracting %s%s as %s" +msgstr "avertissement: extrait %s%s en tant que %s" + +#: ../add.c:682 +#, c-format +msgid "error: could not extract %s (%s)" +msgstr "erreur: n'a pas pu extraire %s (%s)" + +#: ../add.c:693 +msgid "appending backup entry" +msgstr "ajoute une entre pour la sauvegarde" + +#: ../add.c:725 ../add.c:727 +#, c-format +msgid "errors occurred while %s %s" +msgstr "des erreurs sont survenue pendant %s %s" + +#: ../add.c:726 ../add.c:728 +msgid "upgrading" +msgstr "mise à jour" + +#: ../add.c:726 ../add.c:728 +msgid "installing" +msgstr "installation" + +#: ../add.c:749 ../add.c:800 +#, c-format +msgid "adding '%s' in requiredby field for '%s'" +msgstr "ajoute '%s' dans le champ 'requit par' pour '%s'" + +#. remove the package from the database +#: ../add.c:760 ../remove.c:284 +msgid "updating database" +msgstr "met à jour la base de données" + +#: ../add.c:761 +#, c-format +msgid "adding database entry '%s'" +msgstr "ajoute l'entrée de base de données '%s'" + +#: ../add.c:763 +#, c-format +msgid "could not update database entry %s-%s" +msgstr "n'a pas pu mettre a jour l'entrée de base de données %s-%s" + +#: ../add.c:765 +#, c-format +msgid "error updating database for %s-%s!" +msgstr "erreur lors de la mise a jour de la base de données pour %s-%s!" + +#: ../add.c:769 +#, c-format +msgid "could not add entry '%s' in cache" +msgstr "n'a pas pu ajouter l'entrée '%s' dans le cache" + +#. update dependency packages' REQUIREDBY fields +#: ../add.c:774 ../remove.c:294 +msgid "updating dependency packages 'requiredby' fields" +msgstr "mise a jour des champs 'requit par' des dépendances" + +#: ../add.c:795 ../remove.c:322 +#, c-format +msgid "could not find dependency '%s'" +msgstr "n'a pas pu trouver la dépendance '%s'" + +#: ../add.c:803 ../remove.c:332 +#, c-format +msgid "could not update 'requiredby' database entry %s-%s" +msgstr "" +"n'a pas pu mettre à jour le champ 'requit par' de l'entrée de base de " +"données %s-%s" + +#: ../add.c:830 ../remove.c:345 +#, c-format +msgid "running \"ldconfig -r %s\"" +msgstr "execute \"ldconfig -r %s\"" + +#: ../alpm.c:201 +#, c-format +msgid "registering database '%s'" +msgstr "enregistre la base de données '%s'" + +#: ../alpm.c:206 +#, c-format +msgid "database directory '%s' does not exist -- try creating it" +msgstr "" +"le répertoire de base de données '%s' n'existe pas -- tentative de création" + +#: ../alpm.c:217 +#, c-format +msgid "opening database '%s'" +msgstr "ouvre la base de données '%s'" + +#: ../alpm.c:261 +#, c-format +msgid "unregistering database '%s'" +msgstr "désenregistre la base de données '%s'" + +#: ../alpm.c:266 +#, c-format +msgid "closing database '%s'" +msgstr "ferme la base de données '%s'" + +#: ../alpm.c:344 +#, c-format +msgid "" +"adding new server to database '%s': protocol '%s', server '%s', path '%s'" +msgstr "" + +#: ../alpm.c:348 +#, c-format +msgid "serverlist flushed for '%s'" +msgstr "" + +#: ../alpm.c:383 +#, c-format +msgid "failed to get lastupdate time for %s (no big deal)\n" +msgstr "" + +#: ../alpm.c:402 +#, c-format +msgid "sync: new mtime for %s: %s\n" +msgstr "" + +#. remove the old dir +#: ../alpm.c:408 +#, c-format +msgid "flushing database %s/%s" +msgstr "recharge la base de données %s/%s" + +#: ../alpm.c:412 +#, c-format +msgid "could not remove database entry %s/%s" +msgstr "n'a pas pu retirer l'entrée de base de données %s/%s" + +#. uncompress the sync database +#. ORE +#. we should not simply unpack the archive, but better parse it and +#. db_write each entry (see sync_load_dbarchive to get archive content) +#: ../alpm.c:426 +#, c-format +msgid "unpacking %s" +msgstr "décompacte %s" + +#: ../alpm.c:574 +#, c-format +msgid "loading SCRIPLET info for '%s'" +msgstr "charge les infos de SCRIPLET pour '%s'" + +#: ../alpm.c:673 +#, c-format +msgid "could not get sha1 checksum for package %s-%s\n" +msgstr "n'a pas pu obtenir la 'signature' sha1 pour le paquet %s-%s\n" + +#: ../alpm.c:684 ../alpm.c:731 +#, c-format +msgid "checksums for package %s-%s are matching" +msgstr "les 'signatures' correspondent pour le paquet %s-%s" + +#: ../alpm.c:687 +#, c-format +msgid "sha1sums do not match for package %s-%s\n" +msgstr "les 'signatures' sha1 ne correspondent pas pour le paquet %s-%s\n" + +#: ../alpm.c:720 +#, c-format +msgid "could not get md5 checksum for package %s-%s\n" +msgstr "n'a pas pu obtenir la 'signature' md5 pour le paquet %s-%s\n" + +#: ../alpm.c:734 +#, c-format +msgid "md5sums do not match for package %s-%s\n" +msgstr "les 'signatures' md5 ne correspondent pas pour le paquet %s-%s\n" + +#: ../alpm.c:993 +#, c-format +msgid "could not remove lock file %s" +msgstr "n'a pas pu effacer le fichier de verrou %s" + +#: ../alpm.c:994 +#, c-format +msgid "warning: could not remove lock file %s" +msgstr "avertissement: n'a pas pu effacer le fichier de verrou %s" + +#: ../alpm.c:1232 +#, c-format +msgid "config: new section '%s'\n" +msgstr "" + +#: ../alpm.c:1275 +msgid "config: usesyslog\n" +msgstr "" + +#: ../alpm.c:1286 +#, c-format +msgid "config: including %s\n" +msgstr "" + +#: ../alpm.c:1298 ../alpm.c:1306 +#, c-format +msgid "config: noupgrade: %s\n" +msgstr "" + +#: ../alpm.c:1316 ../alpm.c:1324 +#, fuzzy, c-format +msgid "config: noextract: %s\n" +msgstr "n'a pas pu extraire %s: %s\n" + +#: ../alpm.c:1334 ../alpm.c:1342 +#, c-format +msgid "config: ignorepkg: %s\n" +msgstr "" + +#: ../alpm.c:1352 ../alpm.c:1360 +#, c-format +msgid "config: holdpkg: %s\n" +msgstr "" + +#: ../alpm.c:1370 +#, c-format +msgid "config: dbpath: %s\n" +msgstr "" + +#: ../alpm.c:1380 +#, c-format +msgid "config: cachedir: %s\n" +msgstr "" + +#: ../alpm.c:1386 +#, fuzzy, c-format +msgid "config: log file: %s\n" +msgstr "ne peut ouvrir le fichier de log %s" + +#. The config value is in days, we use seconds +#: ../alpm.c:1394 +#, c-format +msgid "config: UpgradeDelay: %i\n" +msgstr "" + +#. add to the list +#: ../alpm.c:1415 +#, fuzzy, c-format +msgid "config: %s: server: %s\n" +msgstr "avertissement: %s sauve en tant que %s" + +#: ../be_files.c:151 +#, c-format +msgid "invalid name for dabatase entry '%s'" +msgstr "nom invalide pour l'entrée de base de données '%s'" + +#: ../be_files.c:432 +#, c-format +msgid "db_write: could not open file %s/desc" +msgstr "db_write: n'a pas pu ouvrir le fichier %s/desc" + +#: ../be_files.c:517 +#, c-format +msgid "db_write: could not open file %s/files" +msgstr "db_write: n'a pas pu ouvrir le fichier %s/files" + +#: ../be_files.c:543 +#, c-format +msgid "db_write: could not open file %s/depends" +msgstr "db_write: n' pas pu ouvrir le fichier %s/depends" + +#: ../cache.c:57 +#, c-format +msgid "loading package cache (infolevel=%#x) for repository '%s'" +msgstr "chargement du cache de paquet (infolevel=%#x) pour le dépot '%s'" + +#: ../cache.c:77 +#, c-format +msgid "freeing package cache for repository '%s'" +msgstr "nettoyage du cache de paquet pour le dépot '%s'" + +#: ../cache.c:112 +#, c-format +msgid "adding entry '%s' in '%s' cache" +msgstr "ajout de l'entrée '%s' dans '%s' cache" + +#: ../cache.c:134 +#, c-format +msgid "removing entry '%s' from '%s' cache" +msgstr "retrait de l'entrée '%s' depuis '%s' cache" + +#: ../cache.c:165 +#, c-format +msgid "loading group cache for repository '%s'" +msgstr "chargement du group depuis le cache pour le dépot '%s'" + +#. CHECK 1: check targets against database +#: ../conflict.c:71 +#, c-format +msgid "checkconflicts: targ '%s' vs db" +msgstr "analyse des conflits: cible '%s' comparée à la base" + +#. conflict +#. confict +#: ../conflict.c:80 ../conflict.c:94 +#, c-format +msgid "targs vs db: found %s as a conflict for %s" +msgstr "comparaison cibles / base de données : trouve %s comme conflit pour %s" + +#. CHECK 2: check targets against targets +#: ../conflict.c:107 +#, c-format +msgid "checkconflicts: targ '%s' vs targs" +msgstr "analyse des conflits: cible '%s' comparée aux cibles" + +#. otp is listed in tp's conflict list +#: ../conflict.c:116 ../conflict.c:129 +#, c-format +msgid "targs vs targs: found %s as a conflict for %s" +msgstr "comparaison cible / liste de cibles : trouve %s comme conflit pour %s" + +#. CHECK 3: check database against targets +#: ../conflict.c:143 +#, c-format +msgid "checkconflicts: db vs targ '%s'" +msgstr "analyse des conflits: base de donnes comparée a la cible '%s'" + +#: ../conflict.c:170 ../conflict.c:185 +#, c-format +msgid "db vs targs: found %s as a conflict for %s" +msgstr "comparaison base de donnée / cibles: trouve %s en conflit avec %s" + +#: ../conflict.c:234 ../conflict.c:335 ../deps.c:54 ../deps.c:601 +#: ../deps.c:641 ../group.c:42 ../handle.c:62 ../package.c:98 ../sync.c:65 +#: ../sync.c:635 ../sync.c:651 ../sync.c:747 ../trans.c:49 ../util.c:598 +#: ../util.c:605 +#, c-format +msgid "malloc failure: could not allocate %d bytes" +msgstr "problème malloc: n'a pas pu allouer %d bytes" + +#: ../db.c:57 ../db.c:64 +#, c-format +msgid "malloc failed: could not allocate %d bytes" +msgstr "malloc à echoué: n'a pas pu allouer %d bytes" + +#: ../deps.c:118 +msgid "started sorting dependencies" +msgstr "début du tri des dépendances" + +#: ../deps.c:123 +msgid "possible dependency cycle detected" +msgstr "possible cycle de dépendances détecte" + +#: ../deps.c:166 +msgid "sorting dependencies finished" +msgstr "fin du tri des dépendances" + +#: ../deps.c:260 ../deps.c:406 +#, c-format +msgid "checkdeps: found %s as required by %s" +msgstr "analyse des dépendances: trouve %s comme besoin pour %s" + +#: ../deps.c:370 +#, c-format +msgid "checkdeps: found %s as a dependency for %s" +msgstr "analyse des dépendances: trouve %s comme dépendance pour %s" + +#: ../deps.c:494 +#, c-format +msgid "cannot find package \"%s\" or anything that provides it!" +msgstr "ne peut trouver le paquet \"%s\" ou quoique ce soit qui le fournisse!" + +#: ../deps.c:499 +msgid "dep is NULL!" +msgstr "dep est NULL!" + +#: ../deps.c:511 +#, c-format +msgid "excluding %s -- explicitly installed" +msgstr "exclue %s -- explicitement installe" + +#. add it to the target list +#: ../deps.c:528 +#, c-format +msgid "loading ALL info for '%s'" +msgstr "chargement de TOUTES les infos pour '%s'" + +#: ../deps.c:531 +#, c-format +msgid "adding '%s' to the targets" +msgstr "ajoute '%s' aux cibles" + +#: ../deps.c:573 +#, c-format +msgid "%s provides dependency %s -- skipping" +msgstr "%s fourni la dépendance %s -- ignore" + +#: ../deps.c:597 +#, c-format +msgid "" +"cannot resolve dependencies for \"%s\" (\"%s\" is not in the package set)" +msgstr "" +"ne peut résoudre les dépendances pour \"%s\" (\"%s\" n'est pas dans le jeu " +"de paquet)" + +#. this dep is already in the target list +#: ../deps.c:614 +#, c-format +msgid "dependency %s is already in the target list -- skipping" +msgstr "la dépendance %s est déjà dans la liste de cible -- ignorée" + +#: ../deps.c:634 +#, c-format +msgid "pulling dependency %s (needed by %s)" +msgstr "récupère la dépendance %s (requise par %s)" + +#: ../deps.c:638 +#, c-format +msgid "cannot resolve dependencies for \"%s\"" +msgstr "ne peut résoudre les dépendances pour \"%s\"" + +#. cycle detected -- skip it +#: ../deps.c:654 +#, c-format +msgid "dependency cycle detected: %s" +msgstr "cycle de dépendances détecte: %s" + +#: ../error.c:34 +msgid "out of memory!" +msgstr "dépassement de mémoire!" + +#: ../error.c:36 ../error.c:135 +msgid "unexpected error" +msgstr "erreur non prévue" + +#: ../error.c:38 +msgid "insufficient privileges" +msgstr "autorisation insuffisante" + +#: ../error.c:40 +msgid "wrong or NULL argument passed" +msgstr "mauvais argument ou NULL passé" + +#: ../error.c:42 +msgid "could not find or read file" +msgstr "ne peut trouver ou lire le fichier" + +#: ../error.c:45 +msgid "library not initialized" +msgstr "librairie non initialisée" + +#: ../error.c:47 +msgid "library already initialized" +msgstr "librairie déjà initialisée" + +#: ../error.c:49 +msgid "unable to lock database" +msgstr "incapable de verrouiller la base de données" + +#: ../error.c:52 +msgid "could not open database" +msgstr "n'a pas pu ouvrir la base de données" + +#: ../error.c:54 +msgid "could not create database" +msgstr "n'a pas pu créer la base de données" + +#: ../error.c:56 +msgid "database not initialized" +msgstr "base de données non initialisée" + +#: ../error.c:58 +msgid "database already registered" +msgstr "base de données déjà enregistrées" + +#: ../error.c:60 +msgid "could not find database" +msgstr "n'a pas pu trouver la base de données" + +#: ../error.c:62 +msgid "could not update database" +msgstr "n'a pas pu mettre a jour la base de données" + +#: ../error.c:64 +msgid "could not remove database entry" +msgstr "n'a pas pu retirer l'entrée de base de données" + +#: ../error.c:71 +msgid "could not set parameter" +msgstr "n'a pas pu définir le paramètre" + +#: ../error.c:74 ../error.c:80 +msgid "transaction not initialized" +msgstr "transaction non initialisée" + +#: ../error.c:76 +msgid "transaction already initialized" +msgstr "transaction déjà initialisée" + +#: ../error.c:78 +msgid "duplicate target" +msgstr "cible répétée" + +#: ../error.c:82 +msgid "transaction not prepared" +msgstr "transaction non préparée" + +#: ../error.c:84 +msgid "transaction aborted" +msgstr "transaction annulée" + +#: ../error.c:86 +msgid "operation not compatible with the transaction type" +msgstr "opération incompatible avec le type de transaction" + +#: ../error.c:89 +msgid "could not find or read package" +msgstr "ne peut trouver ou lire le paquet" + +#: ../error.c:91 +msgid "invalid or corrupted package" +msgstr "paquet invalide ou corrompu" + +#: ../error.c:93 +msgid "cannot open package file" +msgstr "ne peut ouvrir le fichier de paquet" + +#: ../error.c:95 +msgid "cannot load package data" +msgstr "ne peut charger les données du paquet" + +#: ../error.c:97 +msgid "package already installed" +msgstr "paquet déjà installé" + +#: ../error.c:99 +msgid "package not installed or lesser version" +msgstr "paquet non installé ou version plus ancienne" + +#: ../error.c:101 +msgid "package name is not valid" +msgstr "nom de paquet invalide" + +#: ../error.c:103 +msgid "corrupted package" +msgstr "paquet corrompu" + +#: ../error.c:106 +msgid "group not found" +msgstr "groupe non trouvé" + +#: ../error.c:109 +msgid "could not satisfy dependencies" +msgstr "n'a pas pu satisfaire les dépendances" + +#: ../error.c:111 +msgid "conflicting dependencies" +msgstr "conflit de dépendances" + +#: ../error.c:113 +msgid "conflicting files" +msgstr "conflit de fichier" + +#: ../error.c:116 +msgid "user aborted" +msgstr "annulation utilisateur" + +#: ../error.c:118 +msgid "libarchive error" +msgstr "erreur de libarchive" + +#: ../error.c:120 +msgid "internal error" +msgstr "erreur interne" + +#: ../error.c:122 +msgid "not enough space" +msgstr "" + +#: ../error.c:124 +msgid "not confirmed" +msgstr "" + +#: ../error.c:127 +msgid "bad section name" +msgstr "" + +#: ../error.c:129 +msgid "'local' is reserved and cannot be used as a package tree" +msgstr "" + +#: ../error.c:131 +#, fuzzy +msgid "syntax error" +msgstr "erreur interne" + +#: ../error.c:133 +msgid "all directives must belong to a section" +msgstr "" + +#: ../handle.c:143 +#, c-format +msgid "PM_OPT_DBPATH set to '%s'" +msgstr "PM_OPT_DBPATH défini à '%s'" + +#: ../handle.c:150 +#, c-format +msgid "PM_OPT_CACHEDIR set to '%s'" +msgstr "PM_OPT_CACHEDIR défini à '%s'" + +#: ../handle.c:167 +#, c-format +msgid "can't open log file %s" +msgstr "ne peut ouvrir le fichier de log %s" + +#: ../handle.c:171 +#, c-format +msgid "PM_OPT_LOGFILE set to '%s'" +msgstr "PM_OPT_LOGFILE défini à '%s'" + +#: ../handle.c:176 +#, c-format +msgid "'%s' added to PM_OPT_NOUPGRADE" +msgstr "'%s' ajouté à PM_OPT_NOUPGRADE" + +#: ../handle.c:179 +msgid "PM_OPT_NOUPGRADE flushed" +msgstr "PM_OPT_NOUPGRADE rechargé" + +#: ../handle.c:185 +#, c-format +msgid "'%s' added to PM_OPT_NOEXTRACT" +msgstr "'%s' ajouté à PM_OPT_NOEXTRACT" + +#: ../handle.c:188 +msgid "PM_OPT_NOEXTRACT flushed" +msgstr "PM_OPT_NOEXTRACT rechargé" + +#: ../handle.c:194 +#, c-format +msgid "'%s' added to PM_OPT_IGNOREPKG" +msgstr "'%s' ajouté à PM_OPT_IGNOREPKG" + +#: ../handle.c:197 +msgid "PM_OPT_IGNOREPKG flushed" +msgstr "PM_OPT_IGNOREPKG rechargé" + +#: ../handle.c:203 +#, fuzzy, c-format +msgid "'%s' added to PM_OPT_HOLDPKG" +msgstr "'%s' ajouté à PM_OPT_IGNOREPKG" + +#: ../handle.c:206 +#, fuzzy +msgid "PM_OPT_HOLDPKG flushed" +msgstr "PM_OPT_IGNOREPKG rechargé" + +#: ../handle.c:222 +#, c-format +msgid "PM_OPT_USESYSLOG set to '%d'" +msgstr "PM_OPT_USESYSLOG défini à '%d'" + +#: ../handle.c:262 +#, c-format +msgid "PM_OPT_LOGMASK set to '%02x'" +msgstr "PM_OPT_LOGMASK défini à '%02x'" + +#: ../handle.c:281 +#, fuzzy, c-format +msgid "PM_OPT_PROXYHOST set to '%s'" +msgstr "PM_OPT_DBPATH défini à '%s'" + +#: ../handle.c:285 +#, fuzzy, c-format +msgid "PM_OPT_PROXYPORT set to '%d'" +msgstr "PM_OPT_DBPATH défini à '%s'" + +#: ../handle.c:296 +#, fuzzy, c-format +msgid "PM_OPT_XFERCOMMAND set to '%s'" +msgstr "PM_OPT_CACHEDIR défini à '%s'" + +#: ../handle.c:300 +#, fuzzy, c-format +msgid "PM_OPT_NOPASSIVEFTP set to '%d'" +msgstr "PM_OPT_DBPATH défini à '%s'" + +#: ../handle.c:304 +#, fuzzy, c-format +msgid "PM_OPT_CHOMP set to '%d'" +msgstr "PM_OPT_CACHEDIR défini à '%s'" + +#: ../md5driver.c:48 ../sha1.c:395 +#, c-format +msgid "%s can't be opened\n" +msgstr "%s ne peut etre ouvert\n" + +#: ../package.c:185 +#, c-format +msgid "could not open file %s" +msgstr "ne peut ouvrir le fichier %s" + +#: ../package.c:202 ../package.c:262 +#, c-format +msgid "%s: syntax error in description file line %d" +msgstr "%s: erreur de syntaxe dans le fichier de description à la ligne %d" + +#: ../package.c:319 +msgid "could not parse the package description file" +msgstr "n'a pas pu analyser le fichier de description" + +#: ../package.c:327 +#, c-format +msgid "missing package name in %s" +msgstr "nom de paquet manquant dans %s" + +#: ../package.c:335 +#, c-format +msgid "missing package version in %s" +msgstr "version de paquet manquant dans %s" + +#: ../package.c:374 +#, c-format +msgid "could not remove tempfile %s" +msgstr "ne peut effacer le fichier temporaire %s" + +#: ../package.c:391 +#, c-format +msgid "bad package file in %s" +msgstr "mauvais fichier de paquet dans %s" + +#: ../package.c:399 +#, c-format +msgid "missing package info file in %s" +msgstr "fichier d'information manquant dans le paquet %s" + +#: ../remove.c:76 +#, c-format +msgid "could not find %s in database" +msgstr "ne peut trouver %s dans la base de données" + +#: ../remove.c:88 +#, c-format +msgid "adding %s in the targets list" +msgstr "ajoute %s dans la liste de cibles" + +#: ../remove.c:114 +#, c-format +msgid "pulling %s in the targets list" +msgstr "envoie %s dans la liste de destination" + +#: ../remove.c:117 +#, c-format +msgid "could not find %s in database -- skipping" +msgstr "ne peut trouver %s dans la base de données -- ignoré" + +#: ../remove.c:135 +msgid "finding removable dependencies" +msgstr "trouve les dépendances dispensables" + +#: ../remove.c:180 +#, c-format +msgid "removing package %s-%s" +msgstr "retrait du paquet %s-%s" + +#: ../remove.c:191 +msgid "removing files" +msgstr "efface les fichiers" + +#: ../remove.c:217 +#, c-format +msgid "file %s does not exist" +msgstr "le fichier %s n'existe pas" + +#. this is okay, other packages are probably using it. +#: ../remove.c:223 +#, c-format +msgid "keeping directory %s" +msgstr "conserve le répertoire %s" + +#: ../remove.c:225 +#, c-format +msgid "removing directory %s" +msgstr "efface le répertoire %s" + +#: ../remove.c:239 +#, c-format +msgid "skipping removal of %s as it has moved to another package" +msgstr "ignore l'effacement de %s car il a été déplacé dans un autre paquet" + +#: ../remove.c:251 ../remove.c:252 +#, c-format +msgid "%s saved as %s" +msgstr "%s sauve en tant que %s" + +#: ../remove.c:254 ../remove.c:261 +#, c-format +msgid "unlinking %s" +msgstr "suppression %s" + +#: ../remove.c:256 ../remove.c:266 +#, c-format +msgid "cannot remove file %s" +msgstr "ne peut effacer le fichier %s" + +#: ../remove.c:285 +#, c-format +msgid "removing database entry '%s'" +msgstr "ne peut effacer l'entrée de base de de données %s" + +#: ../remove.c:287 +#, c-format +msgid "could not remove database entry %s-%s" +msgstr "ne peut retirer l'entrée de base de donnée %s-%s" + +#: ../remove.c:290 +#, c-format +msgid "could not remove entry '%s' from cache" +msgstr "ne peut retirer l'entrée '%s' du cache" + +#: ../remove.c:330 +#, c-format +msgid "updating 'requiredby' field for package '%s'" +msgstr "mise à jour du champ 'requit par' pour le paquet '%s'" + +#. check for "recommended" package replacements +#: ../sync.c:160 +msgid "checking for package replacements" +msgstr "vérification des remplacements pour le paquet" + +#: ../sync.c:169 +#, c-format +msgid "checking replacement '%s' for package '%s'" +msgstr "analyse du remplacement '%s' pour le paquet '%s'" + +#: ../sync.c:171 +#, c-format +msgid "%s-%s: ignoring package upgrade (to be replaced by %s-%s)" +msgstr "%s-%s: ignore la mise a jour du paquet (à remplacer par %s-%s)" + +#: ../sync.c:205 +#, c-format +msgid "%s-%s elected for upgrade (to be replaced by %s-%s)" +msgstr "%s-%s sélectionné pour mise à jour (à remplacer par %s-%s)" + +#. match installed packages with the sync dbs and compare versions +#: ../sync.c:217 +msgid "checking for package upgrades" +msgstr "vérification des mises à jour de paquets" + +#: ../sync.c:229 +#, c-format +msgid "'%s' not found in sync db -- skipping" +msgstr "'%s' non trouvé dans la liste de synchronisation -- ignoré" + +#: ../sync.c:243 ../sync.c:530 +#, c-format +msgid "'%s' is already elected for removal -- skipping" +msgstr "'%s' est déjà sélectionné pour retrait -- ignoré" + +#. local version is newer +#: ../sync.c:252 +#, c-format +msgid "%s-%s: local version is newer" +msgstr "%s-%s: la version locale est plus récente" + +#. package should be ignored (IgnorePkg) +#: ../sync.c:258 +#, c-format +msgid "%s-%s: ignoring package upgrade (%s)" +msgstr "%s-%s: ignore la mise à jour du paquet (%s)" + +#. package too new (UpgradeDelay) +#: ../sync.c:262 +#, c-format +msgid "%s-%s: delaying upgrade of package (%s)\n" +msgstr "%s-%s: repousse la mise à jour du paquet (%s)\n" + +#: ../sync.c:266 +#, c-format +msgid "%s-%s elected for upgrade (%s => %s)" +msgstr "%s-%s sélectionné pour mise à jour (%s => %s)" + +#. Search provides +#: ../sync.c:317 ../sync.c:336 +#, c-format +msgid "target '%s' not found -- looking for provisions" +msgstr "cible '%s' non trouvée -- recherche des dispositions" + +#: ../sync.c:322 ../sync.c:341 +#, c-format +msgid "found '%s' as a provision for '%s'" +msgstr "trouvé '%s' comme disposition pour '%s'" + +#: ../sync.c:360 +#, c-format +msgid "%s-%s: local version is newer -- skipping" +msgstr "%s-%s: la version locale est plus récente -- ignoré" + +#: ../sync.c:368 +#, c-format +msgid "%s-%s is up to date -- skipping" +msgstr "%s-%s est à jour -- ignoré" + +#: ../sync.c:388 +#, c-format +msgid "adding target '%s' to the transaction set" +msgstr "ajout de la cible '%s' au jeu de transaction" + +#: ../sync.c:433 +msgid "resolving targets dependencies" +msgstr "résolution des dépendances pour les cibles" + +#: ../sync.c:453 +#, c-format +msgid "adding package %s-%s to the transaction targets" +msgstr "ajout du paquet %s-%s à la liste de transactions" + +#: ../sync.c:485 +msgid "looking for unresolvable dependencies" +msgstr "recherche de dépendancea non soluble" + +#: ../sync.c:515 +#, c-format +msgid "package '%s' is conflicting with '%s'" +msgstr "le paquet '%s' est en conflit avec '%s'" + +#: ../sync.c:537 +#, c-format +msgid "'%s' not found in transaction set -- skipping" +msgstr "'%s' non trouve dans le jeu de transaction -- ignoré" + +#. so just treat it like a "replaces" item so the REQUIREDBY +#. * fields are inherited properly. +#. +#: ../sync.c:548 +#, c-format +msgid "package '%s' provides its own conflict" +msgstr "le paquet '%s' génère son propre conflit" + +#: ../sync.c:571 ../sync.c:576 +#, c-format +msgid "'%s' is in the target list -- keeping it" +msgstr "'%s' est dans la la liste de cibles -- conservation" + +#: ../sync.c:588 ../sync.c:625 +#, c-format +msgid "removing '%s' from target list" +msgstr "retire '%s' de la liste de cibles" + +#. It's a conflict -- see if they want to remove it +#. +#: ../sync.c:597 +#, c-format +msgid "resolving package '%s' conflict" +msgstr "résolution du conflit de paquet '%s'" + +#. append to the replaces list +#: ../sync.c:620 +#, c-format +msgid "electing '%s' for removal" +msgstr "sélection de '%s' pour retrait" + +#. abort +#: ../sync.c:631 ../sync.c:647 +msgid "unresolvable package conflicts detected" +msgstr "conflit de paquets non soluble détecté" + +#: ../sync.c:699 +msgid "checking dependencies of packages designated for removal" +msgstr "analyse des dépendances pour les paquets marques à retirer" + +#: ../sync.c:713 +msgid "something has gone horribly wrong" +msgstr "quelque chose s'est horriblement mal passé" + +#. found matching provisio -- we're good to go +#: ../sync.c:732 +#, c-format +msgid "found '%s' as a provision for '%s' -- conflict aborted" +msgstr "trouvé '%s' comme disposition pour '%s' -- conflit annulé" + +#: ../sync.c:825 +#, c-format +msgid "%s-%s-%s%s is already in the cache\n" +msgstr "" + +#. no cache directory.... try creating it +#: ../sync.c:837 +#, c-format +msgid "no %s cache exists. creating...\n" +msgstr "" + +#: ../sync.c:838 +#, c-format +msgid "warning: no %s cache exists. creating..." +msgstr "" + +#. couldn't mkdir the cache directory, so fall back to /tmp and unlink +#. * the package afterwards. +#. +#: ../sync.c:843 +msgid "couldn't create package cache, using /tmp instead\n" +msgstr "" + +#: ../sync.c:844 +msgid "warning: couldn't create package cache, using /tmp instead" +msgstr "" + +#: ../sync.c:847 +#, c-format +msgid "failed to set option CACHEDIR (%s)\n" +msgstr "" + +#: ../sync.c:854 +#, c-format +msgid "failed to retrieve some files from %s\n" +msgstr "" + +#: ../sync.c:883 ../sync.c:895 +#, c-format +msgid "can't get md5 or sha1 checksum for package %s\n" +msgstr "ne peut obtenir la 'signature' md5 ou sha1 pour le paquet %s\n" + +#: ../sync.c:914 +#, c-format +msgid "archive %s was corrupted (bad MD5 or SHA1 checksum)\n" +msgstr "l'archive %s était corrompue (mauvaise somme MD5 ou SHA1)\n" + +#: ../sync.c:916 +#, c-format +msgid "archive %s is corrupted (bad MD5 or SHA1 checksum)\n" +msgstr "l'archive %s est corrompue (mauvaise somme MD5 ou SHA1)\n" + +#: ../sync.c:936 +msgid "could not create removal transaction" +msgstr "n'a pas pu créer la transaction de retrait" + +#: ../sync.c:942 +msgid "could not initialize the removal transaction" +msgstr "n'a pas pu initialiser la transaction de retrait" + +#: ../sync.c:962 +msgid "removing conflicting and to-be-replaced packages" +msgstr "efface les paquets en conflit et ceux à remplacer" + +#: ../sync.c:964 +msgid "could not prepare removal transaction" +msgstr "n'a pas pu préparer la transaction de retrait" + +#: ../sync.c:970 +msgid "could not commit removal transaction" +msgstr "n'a pas pu appliquer la transaction de retrait" + +#. install targets +#: ../sync.c:977 +msgid "installing packages" +msgstr "installe les paquets" + +#: ../sync.c:980 +msgid "could not create transaction" +msgstr "n'a pas pu créer la transaction" + +#: ../sync.c:985 +msgid "could not initialize transaction" +msgstr "n'a pas pu initialiser la transaction" + +#: ../sync.c:1004 +msgid "could not prepare transaction" +msgstr "n'a pas pu préparer la transaction" + +#: ../sync.c:1009 +msgid "could not commit transaction" +msgstr "n'a pas pu appliquer la transaction" + +#: ../sync.c:1016 +msgid "updating database for replaced packages' dependencies" +msgstr "" +"mise a jour de la base de données concernant les dépendances de paquets " +"remplaces" + +#: ../sync.c:1045 +#, c-format +msgid "could not update requiredby for database entry %s-%s" +msgstr "" +"n'a pas pu mettre a jour les pré-requis pour l'entrée de base de données %s-%" +"s" + +#: ../sync.c:1054 +#, c-format +msgid "could not update new database entry %s-%s" +msgstr "n'a pu mettre a jour la nouvelle entrée de base de données %s-%s" + +#: ../util.c:285 +#, c-format +msgid "could not extract %s: %s\n" +msgstr "n'a pas pu extraire %s: %s\n" + +#: ../util.c:436 +msgid "could not create temp directory" +msgstr "n'a pas pu créer le répertoire temporaire" + +#: ../util.c:463 +#, c-format +msgid "could not change directory to %s (%s)" +msgstr "n'a pas pu changer de répertoire pour %s (%s)" + +#: ../util.c:466 +#, c-format +msgid "executing %s script..." +msgstr "exécute le script %s ..." + +#: ../util.c:479 +#, c-format +msgid "could not fork a new process (%s)" +msgstr "n'a pas pu générer un nouveau processus (%s)" + +#: ../util.c:486 +#, c-format +msgid "chrooting in %s" +msgstr "chroot dans %s" + +#: ../util.c:488 +#, c-format +msgid "could not change the root directory (%s)" +msgstr "n'a pas pu changer le répertoire racine (%s)" + +#: ../util.c:492 +#, c-format +msgid "could not change directory to / (%s)" +msgstr "n'a pas pu changer de répertoire vers / (%s)" + +#: ../util.c:496 +#, c-format +msgid "executing \"%s\"" +msgstr "exécute \"%s\"" + +#: ../util.c:499 +#, fuzzy, c-format +msgid "call to popen failed (%s)" +msgstr "la demande de mise en attente du pid a échouée (%s)" + +#: ../util.c:521 +#, c-format +msgid "call to waitpid failed (%s)" +msgstr "la demande de mise en attente du pid a échouée (%s)" + +#: ../util.c:529 +#, c-format +msgid "could not remove tmpdir %s" +msgstr "n'a pas pu effacer tmpdir %s" + +#: ../util.c:593 +#, c-format +msgid "check_freespace: total pkg size: %lld, disk space: %lld" +msgstr "" diff --git a/lib/libalpm/po/hu.gmo b/lib/libalpm/po/hu.gmo new file mode 100644 index 0000000000000000000000000000000000000000..9654762348381f7111ca3a1a6595608f98e3a99f GIT binary patch literal 21199 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

SJMPeEVMvxue4!rsN0 REVcGQ4j!|V;9*)}|38~ruW0}P literal 0 HcmV?d00001 diff --git a/lib/libalpm/po/hu.po b/lib/libalpm/po/hu.po new file mode 100644 index 00000000..1c73837d --- /dev/null +++ b/lib/libalpm/po/hu.po @@ -0,0 +1,1135 @@ +# translation of hu.po to Hungarian +# Hungarian translations for libalpm package. +# Copyright (C) 2006 THE libalpm'S COPYRIGHT HOLDER +# This file is distributed under the same license as the libalpm package. +# +# Miklos Vajna , 2006. +msgid "" +msgstr "" +"Project-Id-Version: hu\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2006-09-03 13:36+0200\n" +"PO-Revision-Date: 2006-09-03 13:49+0200\n" +"Last-Translator: Miklos Vajna \n" +"Language-Team: Hungarian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ISO-8859-2\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;" + +#: ../add.c:95 +#, c-format +msgid "could not parse token %s" +msgstr "értelmezhetetlen token %s" + +#: ../add.c:127 +#, c-format +msgid "loading target '%s'" +msgstr "cél betöltése '%s'" + +#: ../add.c:169 +#, c-format +msgid "replacing older version %s-%s by %s in target list" +msgstr "a %s-%s-t lecseréli a %s a cél listában" + +#: ../add.c:178 +#, c-format +msgid "newer version %s-%s is in the target list -- skipping" +msgstr "az újabb verzió (%s-%s) már elérhetõ a cél listában -- kihagyás" + +#: ../add.c:185 +#, c-format +msgid "reading '%s' metadata" +msgstr "'%s' metaadat olvasása" + +#. look for unsatisfied dependencies +#: ../add.c:227 ../remove.c:104 +msgid "looking for unsatisfied dependencies" +msgstr "elégtelen függõségek keresése" + +#. no unsatisfied deps, so look for conflicts +#: ../add.c:239 ../sync.c:504 +msgid "looking for conflicts" +msgstr "konfliktusok keresése" + +#. re-order w.r.t. dependencies +#: ../add.c:251 ../remove.c:140 +msgid "sorting by dependencies" +msgstr "rendezés függõségek szerint" + +#: ../add.c:263 +msgid "cleaning up" +msgstr "tisztítás" + +#: ../add.c:280 +msgid "looking for file conflicts" +msgstr "fájl konfliktusok keresése" + +#: ../add.c:345 +#, c-format +msgid "upgrading package %s-%s" +msgstr "csomag frissítése: %s-%s" + +#: ../add.c:355 ../alpm.c:567 ../conflict.c:274 ../conflict.c:304 +#, c-format +msgid "loading FILES info for '%s'" +msgstr "a FILE infó betöltése a '%s' számára" + +#: ../add.c:365 ../alpm.c:547 ../alpm.c:679 ../alpm.c:726 +#, c-format +msgid "loading DESC info for '%s'" +msgstr "a DESC infó betöltése a '%s' számára" + +#: ../add.c:378 +#, c-format +msgid "removing old package first (%s-%s)" +msgstr "elsõként a régi csomag eltávolítása (%s-%s)" + +#: ../add.c:408 +#, c-format +msgid "adding package %s-%s" +msgstr "csomag hozzáadása %s-%s" + +#: ../add.c:419 +#, c-format +msgid "adding new package %s-%s" +msgstr "új csomag hozzáadása %s-%s" + +#: ../add.c:423 +msgid "extracting files" +msgstr "fájlok kifejtése" + +#: ../add.c:438 ../util.c:456 +msgid "could not get current working directory" +msgstr "a jelenlegi munkakönyvtár nem kapható meg" + +#: ../add.c:492 +#, c-format +msgid "notice: %s is in NoExtract -- skipping extraction" +msgstr "figyelmeztetés: %s a NoExtractben van -- kifejtés kihagyása" + +#: ../add.c:528 ../add.c:681 +#, c-format +msgid "could not extract %s (%s)" +msgstr "nem sikerült kifejteni: %s (%s)" + +#: ../add.c:571 +#, c-format +msgid "checking md5 hashes for %s" +msgstr "md5 összegek vizsgálata a %s számára" + +#: ../add.c:572 ../add.c:579 +#, c-format +msgid "current: %s" +msgstr "jelenlegi: %s" + +#: ../add.c:573 ../add.c:580 +#, c-format +msgid "new: %s" +msgstr "új: %s" + +#: ../add.c:575 ../add.c:582 +#, c-format +msgid "original: %s" +msgstr "eredeti: %s" + +#: ../add.c:578 +#, c-format +msgid "checking sha1 hashes for %s" +msgstr "sha1 összegek vizsgálata a %s számára" + +#: ../add.c:596 +#, c-format +msgid "could not rename %s (%s)" +msgstr "nem sikerült átnevezni: %s (%s)" + +#: ../add.c:597 +#, c-format +msgid "error: could not rename %s (%s)" +msgstr "hiba: nem sikerült átnevezni: %s (%s)" + +#: ../add.c:601 ../add.c:645 +#, c-format +msgid "could not copy %s to %s (%s)" +msgstr "nem sikerült másolni: %s-t ide: %s (%s)" + +#: ../add.c:602 +#, c-format +msgid "error: could not copy %s to %s (%s)" +msgstr "hiba: nem sikerült másolni: %s-t ide: %s (%s)" + +#: ../add.c:606 +#, c-format +msgid "%s saved as %s.pacorig" +msgstr "a %s elmentve %s.pacorig néven" + +#: ../add.c:607 +#, c-format +msgid "warning: %s saved as %s" +msgstr "figyelmeztetés: a %s elmentve %s néven" + +#: ../add.c:617 ../add.c:620 ../add.c:626 +msgid "action: installing new file" +msgstr "folyamat: az új fájl telepítése" + +#: ../add.c:624 +msgid "action: leaving existing file in place" +msgstr "folyamat: a jelenlegi fájl megtartása" + +#: ../add.c:630 +msgid "action: keeping current file and installing new one with .pacnew ending" +msgstr "" +"folyamat: a jelenlegi fájl megtartása és az új .pacnew végzõdéssel való " +"telepítése" + +#: ../add.c:634 +#, c-format +msgid "could not install %s as %s: %s" +msgstr "nem sikerült telepíteni a %s-t %s-ként: %s" + +#: ../add.c:635 +#, c-format +msgid "error: could not install %s as %s: %s" +msgstr "hiba: nem sikerült telepíteni a %s-t %s-ként: %s" + +#: ../add.c:637 +#, c-format +msgid "%s installed as %s" +msgstr "a %s %s néven lett telepítve" + +#: ../add.c:638 +#, c-format +msgid "warning: %s installed as %s" +msgstr "figyelmeztetés: a %s néven %s lett telepítve" + +#: ../add.c:643 ../add.c:663 +#, c-format +msgid "extracting %s" +msgstr "a %s kifejtése" + +#: ../add.c:665 +#, c-format +msgid "%s is in NoUpgrade -- skipping" +msgstr "%s a NoUpgrade-ben van -- kihagyás" + +#: ../add.c:667 +#, c-format +msgid "extracting %s as %s.pacnew" +msgstr "%s kifejtése %s.pacnew néven" + +#: ../add.c:668 +#, c-format +msgid "warning: extracting %s%s as %s" +msgstr "figyelmeztetés: %s%s kifejtése %s.pacnew néven" + +#: ../add.c:682 +#, c-format +msgid "error: could not extract %s (%s)" +msgstr "hiba: nem sikerült kifejteni: %s (%s)" + +#: ../add.c:693 +msgid "appending backup entry" +msgstr "hozzáfûzés a biztonsági bejegyzéshez" + +#: ../add.c:725 ../add.c:727 +#, c-format +msgid "errors occurred while %s %s" +msgstr "hiba %s közben: %s" + +#: ../add.c:726 ../add.c:728 +msgid "upgrading" +msgstr "frissítés" + +#: ../add.c:726 ../add.c:728 +msgid "installing" +msgstr "telepítés" + +#: ../add.c:749 ../add.c:800 +#, c-format +msgid "adding '%s' in requiredby field for '%s'" +msgstr "a '%s' hozzáadása \"függ tõle\" mezõként a '%s' számára" + +#. remove the package from the database +#: ../add.c:760 ../remove.c:284 +msgid "updating database" +msgstr "az adatbázis frissítése" + +#: ../add.c:761 +#, c-format +msgid "adding database entry '%s'" +msgstr "adatbázis mezõ hozzáadása '%s'" + +#: ../add.c:763 +#, c-format +msgid "could not update database entry %s-%s" +msgstr "sikertelen a '%s-%s' adatbázis-bejegyzés frissítése" + +#: ../add.c:765 +#, c-format +msgid "error updating database for %s-%s!" +msgstr "hiba a %s-%s adatbázis-frissítése során" + +#: ../add.c:769 +#, c-format +msgid "could not add entry '%s' in cache" +msgstr "sikertelen a '%s' bejegyzés hozzáadása a gyorsítótárhoz" + +#. update dependency packages' REQUIREDBY fields +#: ../add.c:774 ../remove.c:294 +msgid "updating dependency packages 'requiredby' fields" +msgstr "a függõ csomagok 'függ tõle' mezõjének frissítése" + +#: ../add.c:795 ../remove.c:322 +#, c-format +msgid "could not find dependency '%s'" +msgstr "nem található a '%s' függõség" + +#: ../add.c:803 ../remove.c:332 +#, c-format +msgid "could not update 'requiredby' database entry %s-%s" +msgstr "sikertelen a %s-%s 'függ tõle' adatbázis-bejegyzésének frissítése" + +#: ../add.c:830 ../remove.c:345 +#, c-format +msgid "running \"ldconfig -r %s\"" +msgstr "az \"ldconfig -r %s\" futtatása" + +#: ../alpm.c:201 +#, c-format +msgid "registering database '%s'" +msgstr "adatbázis regisztrálása: '%s'" + +#: ../alpm.c:206 +#, c-format +msgid "database directory '%s' does not exist -- try creating it" +msgstr "'%s' adatbázis-könyvtár nem létezik -- kísérlet a létrehozásra" + +#: ../alpm.c:217 +#, c-format +msgid "opening database '%s'" +msgstr "adatbázis megnyitása: '%s'" + +#: ../alpm.c:261 +#, c-format +msgid "unregistering database '%s'" +msgstr "adatbázis eltávolítása: '%s'" + +#: ../alpm.c:266 +#, c-format +msgid "closing database '%s'" +msgstr "adatbázis bezárása: '%s'" + +#: ../alpm.c:344 +#, c-format +msgid "" +"adding new server to database '%s': protocol '%s', server '%s', path '%s'" +msgstr "" +"új szerver hozzáadása a(z) '%s' adatbázishoz: protokoll '%s', szerver '%s', " +"út '%s'" + +#: ../alpm.c:348 +#, c-format +msgid "serverlist flushed for '%s'" +msgstr "a szerverlista ürítve a(z) '%s' számára" + +#: ../alpm.c:383 +#, c-format +msgid "failed to get lastupdate time for %s (no big deal)\n" +msgstr "nem sikerült megkapni az utolsó módosítási idõpontját a következõnek: %s " +"(nincs sok esély)\n" + +#: ../alpm.c:402 +#, c-format +msgid "sync: new mtime for %s: %s\n" +msgstr "szinkronizálás: új módosítási dátum a %s számára: %s\n" + +#. remove the old dir +#: ../alpm.c:408 +#, c-format +msgid "flushing database %s/%s" +msgstr "adatbázis frissítése: %s/%s" + +#: ../alpm.c:412 +#, c-format +msgid "could not remove database entry %s/%s" +msgstr "sikertelen a %s/%s adatbázis-bejegyzés eltávolítása" + +#. uncompress the sync database +#. ORE +#. we should not simply unpack the archive, but better parse it and +#. db_write each entry (see sync_load_dbarchive to get archive content) +#: ../alpm.c:426 +#, c-format +msgid "unpacking %s" +msgstr "%s kitömörítése" + +#: ../alpm.c:574 +#, c-format +msgid "loading SCRIPLET info for '%s'" +msgstr "a SCRIPLET infó betöltése a '%s' számára" + +#: ../alpm.c:673 +#, c-format +msgid "could not get sha1 checksum for package %s-%s\n" +msgstr "sikertelen az sha1 ellenõrzõ összeg elérése a %s-%s csomag számára\n" + +#: ../alpm.c:684 ../alpm.c:731 +#, c-format +msgid "checksums for package %s-%s are matching" +msgstr "a %s-%s csomag ellenõrzõ összegei megegyeznek" + +#: ../alpm.c:687 +#, c-format +msgid "sha1sums do not match for package %s-%s\n" +msgstr "%s-%s csomag sha1 ellenõrzõ összegei nem egyeznek meg\n" + +#: ../alpm.c:720 +#, c-format +msgid "could not get md5 checksum for package %s-%s\n" +msgstr "sikertelen az md5 ellenõrzõ összeg elérése a %s-%s csomag számára\n" + +#: ../alpm.c:734 +#, c-format +msgid "md5sums do not match for package %s-%s\n" +msgstr "%s-%s csomag md5 ellenõrzõ összegei nem egyeznek meg\n" + +#: ../alpm.c:993 +#, c-format +msgid "could not remove lock file %s" +msgstr "nem sikerült a zároló fájl (%s) eltávolítása" + +#: ../alpm.c:994 +#, c-format +msgid "warning: could not remove lock file %s" +msgstr "figyelmeztetés: nem sikerült a zároló fájl (%s) eltávolítása" + +#: ../alpm.c:1232 +#, c-format +msgid "config: new section '%s'\n" +msgstr "beállítások: új szekció '%s'\n" + +#: ../alpm.c:1275 +msgid "config: usesyslog\n" +msgstr "beállítások: syslog használata\n" + +#: ../alpm.c:1286 +#, c-format +msgid "config: including %s\n" +msgstr "beállítások: a %s beolvasása\n" + +#: ../alpm.c:1298 ../alpm.c:1306 +#, c-format +msgid "config: noupgrade: %s\n" +msgstr "beállítások: nem fog frissülni: %s\n" + +#: ../alpm.c:1316 ../alpm.c:1324 +#, c-format +msgid "config: noextract: %s\n" +msgstr "nem sikerült kifejteni: %s\n" + +#: ../alpm.c:1334 ../alpm.c:1342 +#, c-format +msgid "config: ignorepkg: %s\n" +msgstr "beállítások: a %s csomag figyelmen kívül hagyása\n" + +#: ../alpm.c:1352 ../alpm.c:1360 +#, c-format +msgid "config: holdpkg: %s\n" +msgstr "beállítások: ez a csomag mindenképp meg lesz tartva: %s\n" + +#: ../alpm.c:1370 +#, c-format +msgid "config: dbpath: %s\n" +msgstr "beállítások: adatbázis útvonala: %s\n" + +#: ../alpm.c:1380 +#, c-format +msgid "config: cachedir: %s\n" +msgstr "beállítások: gyorsítótár könyvtára: %s\n" + +#: ../alpm.c:1386 +#, c-format +msgid "config: log file: %s\n" +msgstr "beállítások: naplófájl: %s\n" + +#. The config value is in days, we use seconds +#: ../alpm.c:1394 +#, c-format +msgid "config: UpgradeDelay: %i\n" +msgstr "beállítások: frissítés késleltetése: %i\n" + +#. add to the list +#: ../alpm.c:1415 +#, c-format +msgid "config: %s: server: %s\n" +msgstr "beállítások: %s: kiszolgáló: %s\n" + +#: ../be_files.c:151 +#, c-format +msgid "invalid name for dabatase entry '%s'" +msgstr "érvénytelen név a '%s' adatbázis-bejegyzés számára" + +#: ../be_files.c:432 +#, c-format +msgid "db_write: could not open file %s/desc" +msgstr "db_write: sikertelen a %s/desc fájl megnyitása" + +#: ../be_files.c:517 +#, c-format +msgid "db_write: could not open file %s/files" +msgstr "db_write: sikertelen a %s/files fájl megnyitása" + +#: ../be_files.c:543 +#, c-format +msgid "db_write: could not open file %s/depends" +msgstr "db_write: sikertelen a %s/depends fájl megnyitása" + +#: ../cache.c:57 +#, c-format +msgid "loading package cache (infolevel=%#x) for repository '%s'" +msgstr "csomagok gyorsítótárának betöltése (infószint=%#x) a '%s' repó számára" + +#: ../cache.c:77 +#, c-format +msgid "freeing package cache for repository '%s'" +msgstr "csomagok gyorsítótárának felszabadítása a '%s' repó számára" + +#: ../cache.c:112 +#, c-format +msgid "adding entry '%s' in '%s' cache" +msgstr "a '%s' bejegyzés hozzáadása a '%s' gyorsítótárhoz" + +#: ../cache.c:134 +#, c-format +msgid "removing entry '%s' from '%s' cache" +msgstr "a '%s' bejegyzés eltávolítása a '%s' gyorsítótárból" + +#: ../cache.c:165 +#, c-format +msgid "loading group cache for repository '%s'" +msgstr "csoportgyorsítótár betöltése a '%s' repó számára" + +#. CHECK 1: check targets against database +#: ../conflict.c:71 +#, c-format +msgid "checkconflicts: targ '%s' vs db" +msgstr "checkconflicts: cél '%s' vs db" + +#. conflict +#. confict +#: ../conflict.c:80 ../conflict.c:94 +#, c-format +msgid "targs vs db: found %s as a conflict for %s" +msgstr "targs vs db: a %s ütközik a következõvel: %s" + +#. CHECK 2: check targets against targets +#: ../conflict.c:107 +#, c-format +msgid "checkconflicts: targ '%s' vs targs" +msgstr "checkconflicts: cél '%s' vs célok" + +#. otp is listed in tp's conflict list +#: ../conflict.c:116 ../conflict.c:129 +#, c-format +msgid "targs vs targs: found %s as a conflict for %s" +msgstr "targs vs targs: a %s ütközik a következõvel: %s" + +#. CHECK 3: check database against targets +#: ../conflict.c:143 +#, c-format +msgid "checkconflicts: db vs targ '%s'" +msgstr "checkconflicts: db vs cél '%s'" + +#: ../conflict.c:170 ../conflict.c:185 +#, c-format +msgid "db vs targs: found %s as a conflict for %s" +msgstr "db vs targs: a %s ütközik a következõvel: %s" + +#: ../conflict.c:234 ../conflict.c:335 ../deps.c:54 ../deps.c:601 +#: ../deps.c:641 ../group.c:42 ../handle.c:62 ../package.c:98 ../sync.c:65 +#: ../sync.c:635 ../sync.c:651 ../sync.c:747 ../trans.c:49 ../util.c:598 +#: ../util.c:605 +#, c-format +msgid "malloc failure: could not allocate %d bytes" +msgstr "malloc probléma: nem sikerült allokálni %d byte-ot" + +#: ../db.c:57 ../db.c:64 +#, c-format +msgid "malloc failed: could not allocate %d bytes" +msgstr "malloc probléma: nem sikerült allokálni %d byte-ot" + +#: ../deps.c:118 +msgid "started sorting dependencies" +msgstr "a függõségek rendezése elkezdõdött" + +#: ../deps.c:123 +msgid "possible dependency cycle detected" +msgstr "lehetséges körkörös függõségi probléma észlelve" + +#: ../deps.c:166 +msgid "sorting dependencies finished" +msgstr "a függõségek rendezése befejezõdött" + +#: ../deps.c:260 ../deps.c:406 +#, c-format +msgid "checkdeps: found %s as required by %s" +msgstr "checkdeps: a %s igényelt a %s által" + +#: ../deps.c:370 +#, c-format +msgid "checkdeps: found %s as a dependency for %s" +msgstr "checkdeps: a %s egy függõség a %s számára" + +#: ../deps.c:494 +#, c-format +msgid "cannot find package \"%s\" or anything that provides it!" +msgstr "nem található a \"%s\" csomag és nem is szolgáltatja semmi!" + +#: ../deps.c:499 +msgid "dep is NULL!" +msgstr "a dep NULL!" + +#: ../deps.c:511 +#, c-format +msgid "excluding %s -- explicitly installed" +msgstr "a %s kihagyása -- explicit módon lett telepítve" + +#. add it to the target list +#: ../deps.c:528 +#, c-format +msgid "loading ALL info for '%s'" +msgstr "minden infó betöltése a '%s' számára" + +#: ../deps.c:531 +#, c-format +msgid "adding '%s' to the targets" +msgstr "a '%s' hozzáadása a célcsomagokhoz" + +#: ../deps.c:573 +#, c-format +msgid "%s provides dependency %s -- skipping" +msgstr "a %s szolgáltatja a %s függõséget -- kihagyás" + +#: ../deps.c:597 +#, c-format +msgid "" +"cannot resolve dependencies for \"%s\" (\"%s\" is not in the package set)" +msgstr "" +"nem sikerült a függõségek feloldása a \"%s\" számára (nem található a \"%s\" " +"a csomagok között)" + +#. this dep is already in the target list +#: ../deps.c:614 +#, c-format +msgid "dependency %s is already in the target list -- skipping" +msgstr "a %s függõség már a célcsomagok között szerepel -- kihagyás" + +#: ../deps.c:634 +#, c-format +msgid "pulling dependency %s (needed by %s)" +msgstr "a %s függõség behozása (a %s igényli)" + +#: ../deps.c:638 +#, c-format +msgid "cannot resolve dependencies for \"%s\"" +msgstr "nem sikerült feloldani a függõségeket a \"%s\" számára" + +#. cycle detected -- skip it +#: ../deps.c:654 +#, c-format +msgid "dependency cycle detected: %s" +msgstr "körkörös függõség észlelve: %s" + +#: ../error.c:34 +msgid "out of memory!" +msgstr "elfogyott a memória!" + +#: ../error.c:36 ../error.c:135 +msgid "unexpected error" +msgstr "nemvárt hiba" + +#: ../error.c:38 +msgid "insufficient privileges" +msgstr "elégtelen jogosultságok" + +#: ../error.c:40 +msgid "wrong or NULL argument passed" +msgstr "rossz vagy NULL argumentum érkezett" + +#: ../error.c:42 +msgid "could not find or read file" +msgstr "nem található vagy nem olvasható a fájl" + +#: ../error.c:45 +msgid "library not initialized" +msgstr "a könyvtár nem inicializált" + +#: ../error.c:47 +msgid "library already initialized" +msgstr "a könyvtár már inicializált" + +#: ../error.c:49 +msgid "unable to lock database" +msgstr "nem sikerült zárolni az adatbázist" + +#: ../error.c:52 +msgid "could not open database" +msgstr "nem sikerült megnyitni az adatbázist" + +#: ../error.c:54 +msgid "could not create database" +msgstr "nem sikerült létrehozni az adatbázist" + +#: ../error.c:56 +msgid "database not initialized" +msgstr "az adatbázis nem inicializált" + +#: ../error.c:58 +msgid "database already registered" +msgstr "az adatbázis már regisztrált" + +#: ../error.c:60 +msgid "could not find database" +msgstr "nem található az adatbázis" + +#: ../error.c:62 +msgid "could not update database" +msgstr "nem sikerült megnyitni az adatbázist" + +#: ../error.c:64 +msgid "could not remove database entry" +msgstr "nem sikerült eltávolítani az adatbázis-bejegyzést" + +#: ../error.c:71 +msgid "could not set parameter" +msgstr "nem sikerült beállítani a paramétert" + +#: ../error.c:74 ../error.c:80 +msgid "transaction not initialized" +msgstr "a tranzakció nem inicializált" + +#: ../error.c:76 +msgid "transaction already initialized" +msgstr "a tranzakció már inicializált" + +#: ../error.c:78 +msgid "duplicate target" +msgstr "két azonos célcsomag" + +#: ../error.c:82 +msgid "transaction not prepared" +msgstr "a tranzakció nincs elõkészítve" + +#: ../error.c:84 +msgid "transaction aborted" +msgstr "a tranzakció félbeszakítva" + +#: ../error.c:86 +msgid "operation not compatible with the transaction type" +msgstr "a mûvelet nem egyeztethetõ össze a jelenlegi tranzakciótípussal" + +#: ../error.c:89 +msgid "could not find or read package" +msgstr "nem található vagy nem olvasható a csomag" + +#: ../error.c:91 +msgid "invalid or corrupted package" +msgstr "nem érvényes vagy sérült csomag" + +#: ../error.c:93 +msgid "cannot open package file" +msgstr "nem sikerült megnyitni a csomagfájlt" + +#: ../error.c:95 +msgid "cannot load package data" +msgstr "nem sikerült betölteni a csomagadatokat" + +#: ../error.c:97 +msgid "package already installed" +msgstr "a csomag már telepítve van" + +#: ../error.c:99 +msgid "package not installed or lesser version" +msgstr "a csomag nincs telepítve vagy kisebb verziójú" + +#: ../error.c:101 +msgid "package name is not valid" +msgstr "nem érvényes a csomagnév" + +#: ../error.c:103 +msgid "corrupted package" +msgstr "sérült csomag" + +#: ../error.c:106 +msgid "group not found" +msgstr "a csoport nem található" + +#: ../error.c:109 +msgid "could not satisfy dependencies" +msgstr "nem sikerült kielégíteni a függõségeket" + +#: ../error.c:111 +msgid "conflicting dependencies" +msgstr "ütközõ függõségek" + +#: ../error.c:113 +msgid "conflicting files" +msgstr "ütközõ fájlok" + +#: ../error.c:116 +msgid "user aborted" +msgstr "felhasználói megszakítás" + +#: ../error.c:118 +msgid "libarchive error" +msgstr "libarchive hiba" + +#: ../error.c:120 +msgid "internal error" +msgstr "belsõ hiba" + +#: ../error.c:122 +msgid "not enough space" +msgstr "nincs elég hely" + +#: ../error.c:124 +msgid "not confirmed" +msgstr "nem megerõsített" + +#: ../error.c:127 +msgid "bad section name" +msgstr "rossz szekciónév" + +#: ../error.c:129 +msgid "'local' is reserved and cannot be used as a package tree" +msgstr "a 'local' név fenntartott és nem használható csomagfaként" + +#: ../error.c:131 +msgid "syntax error" +msgstr "szintaktikai hiba" + +#: ../error.c:133 +msgid "all directives must belong to a section" +msgstr "minden direktívának egy szekcióhoz kell tartoznia" + +#: ../handle.c:143 +#, c-format +msgid "PM_OPT_DBPATH set to '%s'" +msgstr "PM_OPT_DBPATH beállítva a '%s' értékre" + +#: ../handle.c:150 +#, c-format +msgid "PM_OPT_CACHEDIR set to '%s'" +msgstr "PM_OPT_CACHEDIR beállítva a '%s' értékre" + +#: ../handle.c:167 +#, c-format +msgid "can't open log file %s" +msgstr "nem sikerült megnyitni a %s naplófájlt" + +#: ../handle.c:171 +#, c-format +msgid "PM_OPT_LOGFILE set to '%s'" +msgstr "PM_OPT_LOGFILE beállítva a '%s' értékre" + +#: ../handle.c:176 +#, c-format +msgid "'%s' added to PM_OPT_NOUPGRADE" +msgstr "'%s' hozzáadva a PM_OPT_NOUPGRADE listához" + +#: ../handle.c:179 +msgid "PM_OPT_NOUPGRADE flushed" +msgstr "a PM_OPT_NOUPGRADE lista ürítve" + +#: ../handle.c:185 +#, c-format +msgid "'%s' added to PM_OPT_NOEXTRACT" +msgstr "'%s' hozzáadva a PM_OPT_NOEXTRACT listához" + +#: ../handle.c:188 +msgid "PM_OPT_NOEXTRACT flushed" +msgstr "a PM_OPT_NOEXTRACT lista ürítve" + +#: ../handle.c:194 +#, c-format +msgid "'%s' added to PM_OPT_IGNOREPKG" +msgstr "'%s' hozzáadva a PM_OPT_IGNOREPKG listához" + +#: ../handle.c:197 +msgid "PM_OPT_IGNOREPKG flushed" +msgstr "a PM_OPT_IGNOREPKG lista ürítve" + +#: ../handle.c:203 +#, c-format +msgid "'%s' added to PM_OPT_HOLDPKG" +msgstr "'%s' hozzáadva a PM_OPT_HOLDPKG listához" + +#: ../handle.c:206 +msgid "PM_OPT_HOLDPKG flushed" +msgstr "a PM_OPT_HOLDPKG lista ürítve" + +#: ../handle.c:222 +#, c-format +msgid "PM_OPT_USESYSLOG set to '%d'" +msgstr "PM_OPT_USESYSLOG beállítva a '%d' értékre" + +#: ../handle.c:262 +#, c-format +msgid "PM_OPT_LOGMASK set to '%02x'" +msgstr "PM_OPT_LOGMASK beállítva a '%02x' értékre" + +#: ../handle.c:281 +#, c-format +msgid "PM_OPT_PROXYHOST set to '%s'" +msgstr "PM_OPT_PROXYHOST beállítva a '%s' értékre" + +#: ../handle.c:285 +#, c-format +msgid "PM_OPT_PROXYPORT set to '%d'" +msgstr "PM_OPT_PROXYPORT beállítva a '%d' értékre" + +#: ../handle.c:296 +#, c-format +msgid "PM_OPT_XFERCOMMAND set to '%s'" +msgstr "PM_OPT_XFERCOMMAND beállítva a '%s' értékre" + +#: ../handle.c:300 +#, c-format +msgid "PM_OPT_NOPASSIVEFTP set to '%d'" +msgstr "PM_OPT_NOPASSIVEFTP beállítva a '%d' értékre" + +#: ../handle.c:304 +#, c-format +msgid "PM_OPT_CHOMP set to '%d'" +msgstr "PM_OPT_CHOMP beállítva a '%d' értékre" + +#: ../md5driver.c:48 ../sha1.c:395 +#, c-format +msgid "%s can't be opened\n" +msgstr "nem sikerült megnyitni a következõt: %s\n" + +#: ../package.c:185 +#, c-format +msgid "could not open file %s" +msgstr "nem sikerült megnyitni a %s fájlt" + +#: ../package.c:202 ../package.c:262 +#, c-format +msgid "%s: syntax error in description file line %d" +msgstr "%s: szintaktikai hiba a leírófájl %d. sorában" + +#: ../package.c:319 +msgid "could not parse the package description file" +msgstr "nem sikerült értelmezni a csomagleíró fájlt" + +#: ../package.c:327 +#, c-format +msgid "missing package name in %s" +msgstr "hiányzó csomagnév itt: %s" + +#: ../package.c:335 +#, c-format +msgid "missing package version in %s" +msgstr "hiányzó csomagverzió itt: %s" + +#: ../package.c:374 +#, c-format +msgid "could not remove tempfile %s" +msgstr "nem sikerült eltávolítani a %s ideiglenes fájlt" + +#: ../package.c:391 +#, c-format +msgid "bad package file in %s" +msgstr "rossz csomagfájl itt: %s" + +#: ../package.c:399 +#, c-format +msgid "missing package info file in %s" +msgstr "hiányzó csomaginformáció-fájl ebben: %s" + +#: ../remove.c:76 +#, c-format +msgid "could not find %s in database" +msgstr "nem található a %s az adatbázisban" + +#: ../remove.c:88 +#, c-format +msgid "adding %s in the targets list" +msgstr "a %s hozzáadása a céllistához" + +#: ../remove.c:114 +#, c-format +msgid "pulling %s in the targets list" +msgstr "a %s behozása a céllistába" + +#: ../remove.c:117 +#, c-format +msgid "could not find %s in database -- skipping" +msgstr "nem található a %s az adatbázisban -- kihagyás" + +#: ../remove.c:135 +msgid "finding removable dependencies" +msgstr "eltávolítható függõségek keresése" + +#: ../remove.c:180 +#, c-format +msgid "removing package %s-%s" +msgstr "a %s-%s csomag eltávolítása" + +#: ../remove.c:191 +msgid "removing files" +msgstr "fájlok törlése" + +#: ../remove.c:217 +#, c-format +msgid "file %s does not exist" +msgstr "a %s fájl nemlétezik" + +#. this is okay, other packages are probably using it. +#: ../remove.c:223 +#, c-format +msgid "keeping directory %s" +msgstr "a %s könyvtár megtartása" + +#: ../remove.c:225 +#, c-format +msgid "removing directory %s" +msgstr "a %s könyvtár törlése" + +#: ../remove.c:239 +#, c-format +msgid "skipping removal of %s as it has moved to another package" +msgstr "a %s törlésének kihagyása, mivel az egy másik csomagba került át" + +#: ../remove.c:251 ../remove.c:252 +#, c-format +msgid "%s saved as %s" +msgstr "a %s elmentve %s néven" + +#: ../remove.c:254 ../remove.c:261 +#, c-format +msgid "unlinking %s" +msgstr "a %s törlése" + +#: ../remove.c:256 ../remove.c:266 +#, c-format +msgid "cannot remove file %s" +msgstr "nem sikerült eltávolítani a %s fájlt" + +#: ../remove.c:285 +#, c-format +msgid "removing database entry '%s'" +msgstr "a '%s' adatbázis-bejegyzés eltávolítása" + +#: ../remove.c:287 +#, c-format +msgid "could not remove database entry %s-%s" +msgstr "nem sikerült eltávolítani a %s-%s adatbázis-bejegyzést" + +#: ../remove.c:290 +#, c-format +msgid "could not remove entry '%s' from cache" +msgstr "nem sikerült eltávolítani a '%s' bejegyzést a gyorsítótárból" + +#: ../remove.c:330 +#, c-format +msgid "updating 'requiredby' field for package '%s'" +msgstr "a '%s' csomag 'függ tõle' mezõjének frissítése" + +#. check for "recommended" package replacements +#: ../sync.c:160 +msgid "checking for package replacements" +msgstr "csomagcserék ellenõrzése" + +#: ../sync.c:169 +#, c-format +msgid "checking replacement '%s' for package '%s'" +msgstr "csere vizsgálata: '%s' -> '%s'" + +#: ../sync.c:171 +#, c-format +msgid "%s-%s: ignoring package upgrade (to be replaced by %s-%s)" +msgstr "%s-%s: frissítés figyelmen kívül hagyása (a %s-%s fogja lecserélni)" + +#: ../sync.c:205 +#, c-format +msgid "%s-%s elected for upgrade (to be replaced by %s-%s)" +msgstr "a %s-%s kiválasztva frissítésre (a %s-%s fogja lecserélni)" + +#. match installed packages with the sync dbs and compare versions +#: ../sync.c:217 +msgid "checking for package upgrades" +msgstr "csomagfrissítések vizsgálata" + +#: ../sync.c:229 +#, c-format +msgid "'%s' not found in sync db -- skipping" +msgstr "a '%s' nem található a távoli adatbázisban -- kihagyás" + +#: ../sync.c:243 ../sync.c:530 +#, c-format +msgid "'%s' is already elected for removal -- skipping" +msgstr "a '%s' már kijelölve eltávolításra -- kihagyás" + +#. local version is newer +#: ../sync.c:252 +#, c-format +msgid "%s-%s: local version is newer" +msgstr "%s-%s: a helyi verzió újabb" + +#. package should be ignored (IgnorePkg) +#: ../sync.c:258 +#, c-format +msgid "%s-%s: ignoring package upgrade (%s)" +msgstr "%s-%s: a csomagfrissítés figyelmen kívül hagyása (%s)" + +#. package too new (UpgradeDelay) +#: ../sync.c:262 +#, c-format +msgid "%s-%s: delaying upgrade of package (%s)\n" +msgstr "%s-%s: a csomag frissítésének késleltetése (%s)\n" + +#: ../sync.c:266 +#, c-format +msgid "%s-%s elected for upgrade (%s => %s)" +msgstr "%s-%s kiválasztva frissítésre (%s => %s)" + +#. Search provides +#: ../sync.c:317 ../sync.c:336 +#, c-format +msgid "target '%s' not found -- looking for provisions" +msgstr "a '%s' cél nem található -- csomagok keresése amik szolgáltatják" + +#: ../sync.c:322 ../sync.c:341 +#, c-format +msgid "found '%s' as a provision for '%s'" +msgstr "a '%s' szolgáltatja a következõt: '%s'" + +#: ../sync.c:360 +#, c-format +msgid "%s-%s: local version is newer -- skipping" +msgstr "%s-%s: a helyi verzió újabb -- kihagyás" + +#: ../sync.c:368 +#, c-format +msgid "%s-%s is up to date -- skipping" +msgstr "%s-%s naprakész -- kihagyás" + +#: ../sync.c:388 +#, c-format +msgid "adding target '%s' to the transaction set" +msgstr "a '%s' cél hozzáadása a tranzakcióhoz" + +#: ../sync.c:433 +msgid "resolving targets dependencies" +msgstr "a célok függõségeinek feloldása" + +#: ../sync.c:453 +#, c-format +msgid "adding package %s-%s to the transaction targets" +msgstr "a %s-%s csomag hozzáadása a tranzakció céljaihoz" + +#: ../sync.c:485 +msgid "looking for unresolvable dependencies" +msgstr "feloldhatatlan függõségek keresése" +