From 7236dd32872f0eeed21a97d15807f0ef27f45a20 Mon Sep 17 00:00:00 2001 From: Judd Vinet Date: Wed, 28 Jun 2006 05:37:15 +0000 Subject: i18n stuff --- src/pacman/Makefile.am | 5 + src/pacman/pacman.c | 14 +- src/pacman/po/LINGUAS | 6 + src/pacman/po/Makefile.in.in | 355 ++++++++++++ src/pacman/po/Makevars | 43 ++ src/pacman/po/POTFILES.in | 13 + src/pacman/po/pacman.pot | 1315 ++++++++++++++++++++++++++++++++++++++++++ src/pacman/po/stamp-po | 1 + 8 files changed, 1751 insertions(+), 1 deletion(-) create mode 100644 src/pacman/po/LINGUAS create mode 100644 src/pacman/po/Makefile.in.in create mode 100644 src/pacman/po/Makevars create mode 100644 src/pacman/po/POTFILES.in create mode 100644 src/pacman/po/pacman.pot create mode 100644 src/pacman/po/stamp-po (limited to 'src') diff --git a/src/pacman/Makefile.am b/src/pacman/Makefile.am index 0a05bd7e..8ebe02d5 100644 --- a/src/pacman/Makefile.am +++ b/src/pacman/Makefile.am @@ -1,5 +1,10 @@ bin_PROGRAMS = pacman pacman.static +SUBDIRS = po + +localedir = $(datadir)/locale +DEFS = -DLOCALEDIR=\"$(localedir)\" @DEFS@ + AM_CFLAGS = -D_GNU_SOURCE \ -I$(top_srcdir)/lib/libalpm \ -I$(top_srcdir)/lib/libftp diff --git a/src/pacman/pacman.c b/src/pacman/pacman.c index 3678f628..381053a3 100644 --- a/src/pacman/pacman.c +++ b/src/pacman/pacman.c @@ -28,6 +28,7 @@ #include #include #include +#include #ifndef CYGWIN #include /* debug */ #else @@ -379,7 +380,7 @@ static void cleanup(int signum) int main(int argc, char *argv[]) { int ret = 0; - char *cenv = NULL; + char *cenv = NULL, *lang = NULL; #ifndef CYGWIN uid_t myuid; #endif @@ -399,6 +400,17 @@ int main(int argc, char *argv[]) signal(SIGINT, cleanup); signal(SIGTERM, cleanup); + /* i18n init */ + lang=getenv("LC_ALL"); + if(lang==NULL || lang[0]=='\0') + lang=getenv("LC_MESSAGES"); + if (lang==NULL || lang[0]=='\0') + lang=getenv("LANG"); + + setlocale(LC_ALL, lang); + bindtextdomain("pacman", "/usr/share/locale"); + textdomain("pacman"); + /* init config data */ config = config_new(); config->op = PM_OP_MAIN; diff --git a/src/pacman/po/LINGUAS b/src/pacman/po/LINGUAS new file mode 100644 index 00000000..bdb700e6 --- /dev/null +++ b/src/pacman/po/LINGUAS @@ -0,0 +1,6 @@ +# Example for use of GNU gettext. +# Copyright (C) 2003-2005 Free Software Foundation, Inc. +# This file is in the public domain. +# +# Set of available languages. + diff --git a/src/pacman/po/Makefile.in.in b/src/pacman/po/Makefile.in.in new file mode 100644 index 00000000..75c5d469 --- /dev/null +++ b/src/pacman/po/Makefile.in.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 = @PACKAGE@ +VERSION = @VERSION@ + +SHELL = /bin/sh +@SET_MAKE@ + +srcdir = @srcdir@ +top_srcdir = @top_srcdir@ +VPATH = @srcdir@ + +prefix = @prefix@ +exec_prefix = @exec_prefix@ +datadir = @datadir@ +localedir = $(datadir)/locale +gettextsrcdir = $(datadir)/gettext/po + +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +MKINSTALLDIRS = @MKINSTALLDIRS@ +mkinstalldirs = $(SHELL) $(MKINSTALLDIRS) + +GMSGFMT = @GMSGFMT@ +MSGFMT = @MSGFMT@ +XGETTEXT = @XGETTEXT@ +MSGMERGE = msgmerge +MSGMERGE_UPDATE = @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-@USE_NLS@ + +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-@USE_NLS@ + 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-@USE_NLS@ + 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-@USE_NLS@ + 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/src/pacman/po/Makevars b/src/pacman/po/Makevars new file mode 100644 index 00000000..c85b8993 --- /dev/null +++ b/src/pacman/po/Makevars @@ -0,0 +1,43 @@ +# Makefile variables for PO directory in any package using GNU gettext. + +# Usually the message domain is the same as the package name. +DOMAIN = pacman + +# 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 = diff --git a/src/pacman/po/POTFILES.in b/src/pacman/po/POTFILES.in new file mode 100644 index 00000000..5e0e64aa --- /dev/null +++ b/src/pacman/po/POTFILES.in @@ -0,0 +1,13 @@ +add.c +conf.c +deptest.c +download.c +list.c +log.c +package.c +pacman.c +query.c +remove.c +sync.c +trans.c +util.c diff --git a/src/pacman/po/pacman.pot b/src/pacman/po/pacman.pot new file mode 100644 index 00000000..067659c0 --- /dev/null +++ b/src/pacman/po/pacman.pot @@ -0,0 +1,1315 @@ +# 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. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2006-05-31 14:04-0700\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=CHARSET\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../add.c:69 ../deptest.c:64 ../remove.c:83 ../sync.c:413 ../sync.c:452 +#, c-format +msgid "" +" if you're sure a package manager is not already running,\n" +" you can remove %s\n" +msgstr "" + +#. and add targets to it +#: ../add.c:76 +msgid "loading package data... " +msgstr "" + +#: ../add.c:79 ../remove.c:99 +#, c-format +msgid "failed to add target '%s' (%s)\n" +msgstr "" + +#: ../add.c:84 +msgid "done." +msgstr "" + +#: ../add.c:91 ../remove.c:109 ../sync.c:522 +#, c-format +msgid "failed to prepare transaction (%s)\n" +msgstr "" + +#: ../add.c:96 +#, c-format +msgid ":: %s: requires %s" +msgstr "" + +#: ../add.c:110 +#, c-format +msgid ":: %s: conflicts with %s" +msgstr "" + +#: ../add.c:120 ../sync.c:752 +#, c-format +msgid "%s exists in \"%s\" (target) and \"%s\" (target)" +msgstr "" + +#: ../add.c:126 ../sync.c:758 +#, c-format +msgid "%s: %s exists in filesystem" +msgstr "" + +#: ../add.c:133 ../sync.c:765 +msgid "" +"\n" +"errors occurred, no packages were upgraded.\n" +msgstr "" + +#: ../add.c:145 ../remove.c:149 ../sync.c:745 +#, c-format +msgid "failed to commit transaction (%s)\n" +msgstr "" + +#: ../add.c:154 ../remove.c:160 ../sync.c:445 ../sync.c:785 +#, c-format +msgid "failed to release transaction (%s)\n" +msgstr "" + +#: ../conf.c:102 +#, c-format +msgid "config: new section '%s'\n" +msgstr "" + +#: ../conf.c:104 +#, c-format +msgid "config: line %d: bad section name\n" +msgstr "" + +#: ../conf.c:108 +#, c-format +msgid "" +"config: line %d: '%s' is reserved and cannot be used as a package tree\n" +msgstr "" + +#: ../conf.c:134 ../conf.c:156 ../conf.c:279 ../conf.c:345 +#, c-format +msgid "config: line %d: syntax error\n" +msgstr "" + +#: ../conf.c:140 +#, c-format +msgid "config: line %d: all directives must belong to a section\n" +msgstr "" + +#: ../conf.c:146 +msgid "config: nopassiveftp\n" +msgstr "" + +#: ../conf.c:149 +#, c-format +msgid "failed to set option USESYSLOG (%s)\n" +msgstr "" + +#: ../conf.c:152 +msgid "config: usesyslog\n" +msgstr "" + +#: ../conf.c:164 +#, c-format +msgid "config: including %s\n" +msgstr "" + +#: ../conf.c:173 ../conf.c:181 +#, c-format +msgid "failed to set option NOUPGRADE (%s)\n" +msgstr "" + +#: ../conf.c:176 ../conf.c:184 +#, c-format +msgid "config: noupgrade: %s\n" +msgstr "" + +#: ../conf.c:191 ../conf.c:199 +#, c-format +msgid "failed to set option NOEXTRACT (%s)\n" +msgstr "" + +#: ../conf.c:194 ../conf.c:202 +#, c-format +msgid "config: noextract: %s\n" +msgstr "" + +#: ../conf.c:209 ../conf.c:217 ../pacman.c:508 +#, c-format +msgid "failed to set option IGNOREPKG (%s)\n" +msgstr "" + +#: ../conf.c:212 ../conf.c:220 +#, c-format +msgid "config: ignorepkg: %s\n" +msgstr "" + +#: ../conf.c:227 ../conf.c:232 +#, c-format +msgid "config: holdpkg: %s\n" +msgstr "" + +#: ../conf.c:240 +#, c-format +msgid "config: dbpath: %s\n" +msgstr "" + +#: ../conf.c:248 +#, c-format +msgid "config: cachedir: %s\n" +msgstr "" + +#: ../conf.c:251 +#, c-format +msgid "failed to set option LOGFILE (%s)\n" +msgstr "" + +#: ../conf.c:254 +#, c-format +msgid "config: log file: %s\n" +msgstr "" + +#: ../conf.c:258 +#, c-format +msgid "config: xfercommand: %s\n" +msgstr "" + +#: ../conf.c:268 ../conf.c:294 ../conf.c:300 +#, c-format +msgid "config: line %d: bad server location\n" +msgstr "" + +#: ../conf.c:274 +#, c-format +msgid "config: proxyserver: %s\n" +msgstr "" + +#: ../conf.c:277 +#, c-format +msgid "config: proxyport: %u\n" +msgstr "" + +#: ../conf.c:317 ../conf.c:332 +#, c-format +msgid "could not allocate %d bytes\n" +msgstr "" + +#: ../conf.c:338 +#, c-format +msgid "config: line %d: protocol %s is not supported\n" +msgstr "" + +#. add to the list +#: ../conf.c:342 +#, c-format +msgid "config: %s: server: %s %s %s\n" +msgstr "" + +#: ../deptest.c:77 +msgid "memory allocation failure\n" +msgstr "" + +#: ../deptest.c:87 +#, c-format +msgid "add target %s\n" +msgstr "" + +#: ../deptest.c:90 +#, c-format +msgid "could not add target (%s)\n" +msgstr "" + +#: ../deptest.c:110 +#, c-format +msgid "requires: %s" +msgstr "" + +#: ../deptest.c:126 +#, c-format +msgid "conflict: %s" +msgstr "" + +#: ../deptest.c:140 ../deptest.c:157 +#, c-format +msgid "could not release transaction (%s)" +msgstr "" + +#: ../download.c:208 +#, c-format +msgid "connecting to %s:21\n" +msgstr "" + +#: ../download.c:210 ../download.c:241 ../download.c:415 +#, c-format +msgid "cannot connect to %s\n" +msgstr "" + +#: ../download.c:214 +msgid "anonymous login failed\n" +msgstr "" + +#: ../download.c:219 +#, c-format +msgid "could not cwd to %s: %s\n" +msgstr "" + +#: ../download.c:225 +msgid "failed to set passive mode\n" +msgstr "" + +#: ../download.c:228 +msgid "FTP passive mode not set\n" +msgstr "" + +#: ../download.c:236 ../download.c:410 +#, c-format +msgid "connecting to %s\n" +msgstr "" + +#: ../download.c:238 ../download.c:412 +#, c-format +msgid "connecting to %s:%u\n" +msgstr "" + +#: ../download.c:300 +#, c-format +msgid "could not chdir to %s\n" +msgstr "" + +#. execute the parsed command via /bin/sh -c +#: ../download.c:304 +#, c-format +msgid "running command: %s\n" +msgstr "" + +#: ../download.c:307 +msgid "running XferCommand: fork failed!\n" +msgstr "" + +#. download failed +#: ../download.c:311 +#, c-format +msgid "XferCommand command returned non-zero status code (%d)\n" +msgstr "" + +#: ../download.c:356 +#, c-format +msgid "failed to get filesize for %s\n" +msgstr "" + +#: ../download.c:362 ../download.c:475 +#, c-format +msgid "failed to get mtime for %s\n" +msgstr "" + +#. mtimes are identical, skip this file +#: ../download.c:367 ../download.c:460 +#, c-format +msgid "mtimes are identical, skipping %s\n" +msgstr "" + +#: ../download.c:382 +msgid "failed to resume download -- restarting\n" +msgstr "" + +#: ../download.c:389 ../download.c:464 +#, c-format +msgid "" +"\n" +"failed downloading %s from %s: %s\n" +msgstr "" + +#: ../download.c:483 +#, c-format +msgid "copying %s to %s/%s\n" +msgstr "" + +#: ../download.c:486 +#, c-format +msgid "failed copying %s\n" +msgstr "" + +#: ../download.c:502 +msgid "] 100% LOCAL " +msgstr "" + +#: ../download.c:564 +#, c-format +msgid " %s is already in the current directory\n" +msgstr "" + +#: ../download.c:578 +#, c-format +msgid "failed to download %s\n" +msgstr "" + +#: ../list.c:143 ../list.c:171 +#, c-format +msgid "None\n" +msgstr "" + +#: ../log.c:54 +#, c-format +msgid "debug" +msgstr "" + +#: ../log.c:57 +#, c-format +msgid "error" +msgstr "" + +#: ../log.c:60 +#, c-format +msgid "warning" +msgstr "" + +#: ../log.c:63 +#, c-format +msgid "flow1" +msgstr "" + +#: ../log.c:66 +#, c-format +msgid "flow2" +msgstr "" + +#: ../log.c:69 +#, c-format +msgid "function" +msgstr "" + +#: ../log.c:72 +#, c-format +msgid "???" +msgstr "" + +#: ../log.c:153 +msgid "Y" +msgstr "" + +#: ../log.c:153 +msgid "YES" +msgstr "" + +#: ../package.c:46 +#, c-format +msgid "Name : %s\n" +msgstr "" + +#: ../package.c:47 +#, c-format +msgid "Version : %s\n" +msgstr "" + +#: ../package.c:49 +msgid "Groups :" +msgstr "" + +#: ../package.c:51 +#, c-format +msgid "Packager : %s\n" +msgstr "" + +#: ../package.c:52 +#, c-format +msgid "URL : %s\n" +msgstr "" + +#: ../package.c:53 +msgid "License :" +msgstr "" + +#: ../package.c:54 +#, c-format +msgid "Architecture : %s\n" +msgstr "" + +#: ../package.c:55 +#, c-format +msgid "Size : %ld\n" +msgstr "" + +#: ../package.c:58 +#, c-format +msgid "Build Date : %s %s\n" +msgstr "" + +#: ../package.c:60 +#, c-format +msgid "Install Date : %s %s\n" +msgstr "" + +#: ../package.c:62 +#, c-format +msgid "Install Script : %s\n" +msgstr "" + +#: ../package.c:64 +#, c-format +msgid "Reason: : " +msgstr "" + +#: ../package.c:67 +#, c-format +msgid "Explicitly installed\n" +msgstr "" + +#: ../package.c:70 +#, c-format +msgid "Installed as a dependency for another package\n" +msgstr "" + +#: ../package.c:73 +#, c-format +msgid "Unknown\n" +msgstr "" + +#: ../package.c:77 +msgid "Provides :" +msgstr "" + +#: ../package.c:78 +msgid "Depends On :" +msgstr "" + +#: ../package.c:79 +msgid "Required By :" +msgstr "" + +#: ../package.c:80 +msgid "Conflicts With :" +msgstr "" + +#: ../package.c:82 +#, c-format +msgid "Description : " +msgstr "" + +#: ../package.c:106 +#, c-format +msgid "error calculating md5sum for %s\n" +msgstr "" + +#: ../package.c:110 +#, c-format +msgid "%sMODIFIED\t%s\n" +msgstr "" + +#: ../package.c:113 +#, c-format +msgid "MISSING\t\t%s\n" +msgstr "" + +#: ../package.c:131 +#, c-format +msgid "Repository : %s\n" +msgstr "" + +#: ../package.c:132 +#, c-format +msgid "Name : %s\n" +msgstr "" + +#: ../package.c:133 +#, c-format +msgid "Version : %s\n" +msgstr "" + +#: ../package.c:135 +msgid "Groups :" +msgstr "" + +#: ../package.c:136 +msgid "Provides :" +msgstr "" + +#: ../package.c:137 +msgid "Depends On :" +msgstr "" + +#: ../package.c:138 +msgid "Conflicts With :" +msgstr "" + +#: ../package.c:139 +msgid "Replaces :" +msgstr "" + +#: ../package.c:141 +#, c-format +msgid "Size (compressed) : %ld\n" +msgstr "" + +#: ../package.c:142 +#, c-format +msgid "Description : " +msgstr "" + +#: ../package.c:144 +#, c-format +msgid "" +"\n" +"MD5 Sum : %s\n" +msgstr "" + +#: ../package.c:156 +#, c-format +msgid "%s %s\n" +msgstr "" + +#: ../pacman.c:82 +#, c-format +msgid "\n" +msgstr "" + +#: ../pacman.c:83 +#, c-format +msgid " .--. Pacman v%s - libalpm v%s\n" +msgstr "" + +#: ../pacman.c:84 +#, c-format +msgid "" +"/ _.-' .-. .-. .-. Copyright (C) 2002-2006 Judd Vinet \n" +msgstr "" + +#: ../pacman.c:85 +#, c-format +msgid "\\ '-. '-' '-' '-' \n" +msgstr "" + +#: ../pacman.c:86 +#, c-format +msgid " '--' This program may be freely redistributed under\n" +msgstr "" + +#: ../pacman.c:87 +#, c-format +msgid " the terms of the GNU General Public License\n" +msgstr "" + +#: ../pacman.c:98 +#, c-format +msgid "usage: %s {-h --help}\n" +msgstr "" + +#: ../pacman.c:99 +#, c-format +msgid " %s {-V --version}\n" +msgstr "" + +#: ../pacman.c:100 +#, c-format +msgid " %s {-A --add} [options] \n" +msgstr "" + +#: ../pacman.c:101 +#, c-format +msgid " %s {-R --remove} [options] \n" +msgstr "" + +#: ../pacman.c:102 +#, c-format +msgid " %s {-U --upgrade} [options] \n" +msgstr "" + +#: ../pacman.c:103 +#, c-format +msgid " %s {-F --freshen} [options] \n" +msgstr "" + +#: ../pacman.c:104 +#, c-format +msgid " %s {-Q --query} [options] [package]\n" +msgstr "" + +#: ../pacman.c:105 +#, c-format +msgid " %s {-S --sync} [options] [package]\n" +msgstr "" + +#: ../pacman.c:106 +#, c-format +msgid "" +"\n" +"use '%s --help' with other options for more syntax\n" +msgstr "" + +#: ../pacman.c:109 +#, c-format +msgid "usage: %s {-A --add} [options] \n" +msgstr "" + +#: ../pacman.c:110 ../pacman.c:115 ../pacman.c:127 ../pacman.c:132 +#: ../pacman.c:145 +#, c-format +msgid "options:\n" +msgstr "" + +#: ../pacman.c:111 ../pacman.c:117 ../pacman.c:128 ../pacman.c:147 +#, c-format +msgid " -d, --nodeps skip dependency checks\n" +msgstr "" + +#: ../pacman.c:112 ../pacman.c:129 ../pacman.c:148 +#, c-format +msgid " -f, --force force install, overwrite conflicting files\n" +msgstr "" + +#: ../pacman.c:114 +#, c-format +msgid "usage: %s {-R --remove} [options] \n" +msgstr "" + +#: ../pacman.c:116 +#, c-format +msgid "" +" -c, --cascade remove packages and all packages that depend on them\n" +msgstr "" + +#: ../pacman.c:118 +#, c-format +msgid " -k, --dbonly only remove database entry, do not remove files\n" +msgstr "" + +#: ../pacman.c:119 +#, c-format +msgid " -n, --nosave remove configuration files as well\n" +msgstr "" + +#: ../pacman.c:120 +#, c-format +msgid "" +" -s, --recursive remove dependencies also (that won't break packages)\n" +msgstr "" + +#: ../pacman.c:123 +#, c-format +msgid "usage: %s {-F --freshen} [options] \n" +msgstr "" + +#: ../pacman.c:125 +#, c-format +msgid "usage: %s {-U --upgrade} [options] \n" +msgstr "" + +#: ../pacman.c:131 +#, c-format +msgid "usage: %s {-Q --query} [options] [package]\n" +msgstr "" + +#: ../pacman.c:133 +#, c-format +msgid "" +" -e, --orphans list all packages that were explicitly installed\n" +msgstr "" + +#: ../pacman.c:134 +#, c-format +msgid " and are not required by any other packages\n" +msgstr "" + +#: ../pacman.c:135 ../pacman.c:149 +#, c-format +msgid " -g, --groups view all members of a package group\n" +msgstr "" + +#: ../pacman.c:136 +#, c-format +msgid " -i, --info view package information\n" +msgstr "" + +#: ../pacman.c:137 +#, c-format +msgid " -l, --list list the contents of the queried package\n" +msgstr "" + +#: ../pacman.c:138 +#, c-format +msgid "" +" -m, --foreign list all packages that were not found in the sync " +"repos\n" +msgstr "" + +#: ../pacman.c:139 +#, c-format +msgid " -o, --owns query the package that owns \n" +msgstr "" + +#: ../pacman.c:140 +#, c-format +msgid "" +" -p, --file pacman will query the package file [package] instead " +"of\n" +msgstr "" + +#: ../pacman.c:141 +#, c-format +msgid " looking in the database\n" +msgstr "" + +#: ../pacman.c:142 +#, c-format +msgid "" +" -s, --search search locally-installed packages for matching " +"strings\n" +msgstr "" + +#: ../pacman.c:144 +#, c-format +msgid "usage: %s {-S --sync} [options] [package]\n" +msgstr "" + +#: ../pacman.c:146 +#, c-format +msgid "" +" -c, --clean remove old packages from cache directory (use -cc for " +"all)\n" +msgstr "" + +#: ../pacman.c:150 +#, c-format +msgid "" +" -p, --print-uris print out URIs for given packages and their " +"dependencies\n" +msgstr "" + +#: ../pacman.c:151 +#, c-format +msgid " -s, --search search remote repositories for matching strings\n" +msgstr "" + +#: ../pacman.c:152 +#, c-format +msgid " -u, --sysupgrade upgrade all packages that are out of date\n" +msgstr "" + +#: ../pacman.c:153 +#, c-format +msgid "" +" -w, --downloadonly download packages but do not install/upgrade anything\n" +msgstr "" + +#: ../pacman.c:154 +#, c-format +msgid "" +" -y, --refresh download fresh package databases from the server\n" +msgstr "" + +#: ../pacman.c:155 +#, c-format +msgid "" +" --ignore ignore a package upgrade (can be used more than once)\n" +msgstr "" + +#: ../pacman.c:157 +#, c-format +msgid " --config set an alternate configuration file\n" +msgstr "" + +#: ../pacman.c:158 +#, c-format +msgid " --noconfirm do not ask for anything confirmation\n" +msgstr "" + +#: ../pacman.c:159 +#, c-format +msgid "" +" --noprogressbar do not show a progress bar when downloading files\n" +msgstr "" + +#: ../pacman.c:160 +#, c-format +msgid "" +" --noscriptlet do not execute the install scriptlet if there is any\n" +msgstr "" + +#: ../pacman.c:161 +#, c-format +msgid " -v, --verbose be verbose\n" +msgstr "" + +#: ../pacman.c:162 +#, c-format +msgid " -r, --root set an alternate installation root\n" +msgstr "" + +#: ../pacman.c:163 +#, c-format +msgid " -b, --dbpath set an alternate database location\n" +msgstr "" + +#: ../pacman.c:289 +msgid "bad root path" +msgstr "" + +#: ../pacman.c:315 +msgid "only one operation may be used at a time\n" +msgstr "" + +#: ../pacman.c:347 +#, c-format +msgid "%s\n" +msgstr "" + +#: ../pacman.c:448 +msgid "you cannot perform this operation unless you are root.\n" +msgstr "" + +#: ../pacman.c:472 +#, c-format +msgid "failed to initilize alpm library (%s)\n" +msgstr "" + +#: ../pacman.c:485 +#, c-format +msgid "failed to set option LOGMASK (%s)\n" +msgstr "" + +#: ../pacman.c:489 +#, c-format +msgid "failed to set option LOGCB (%s)\n" +msgstr "" + +#: ../pacman.c:497 +#, c-format +msgid "failed to set option DBPATH (%s)\n" +msgstr "" + +#: ../pacman.c:502 ../sync.c:698 +#, c-format +msgid "failed to set option CACHEDIR (%s)\n" +msgstr "" + +#: ../pacman.c:514 +#, c-format +msgid "Root : %s\n" +msgstr "" + +#: ../pacman.c:515 +#, c-format +msgid "DBPath: %s\n" +msgstr "" + +#: ../pacman.c:516 +msgid "Targets:" +msgstr "" + +#: ../pacman.c:522 +#, c-format +msgid "could not register 'local' database (%s)\n" +msgstr "" + +#: ../pacman.c:529 +msgid "no targets specified (use -h for help)\n" +msgstr "" + +#: ../pacman.c:542 +msgid "no operation specified (use -h for help)\n" +msgstr "" + +#: ../query.c:56 +msgid "no file was specified for --owns\n" +msgstr "" + +#: ../query.c:61 +#, c-format +msgid "%s is not a file.\n" +msgstr "" + +#: ../query.c:78 +#, c-format +msgid "%s is owned by %s %s\n" +msgstr "" + +#: ../query.c:86 +#, c-format +msgid "No package owns %s\n" +msgstr "" + +#: ../query.c:111 ../sync.c:365 +msgid "no usable package repositories configured.\n" +msgstr "" + +#: ../query.c:160 +#, c-format +msgid "group \"%s\" was not found\n" +msgstr "" + +#: ../query.c:170 +msgid "no package file was specified for --file\n" +msgstr "" + +#: ../query.c:174 +#, c-format +msgid "failed to load package '%s' (%s)\n" +msgstr "" + +#. something weird happened +#: ../query.c:212 ../query.c:256 +#, c-format +msgid "package \"%s\" not found\n" +msgstr "" + +#: ../remove.c:64 ../sync.c:489 +#, c-format +msgid ":: group %s:\n" +msgstr "" + +#: ../remove.c:66 +msgid " Remove whole content? [Y/n] " +msgstr "" + +#: ../remove.c:68 +#, c-format +msgid ":: Remove %s from group %s? [Y/n] " +msgstr "" + +#: ../remove.c:81 ../sync.c:411 ../sync.c:450 +#, c-format +msgid "failed to init transaction (%s)\n" +msgstr "" + +#: ../remove.c:94 +#, c-format +msgid ":: %s is designated as a HoldPkg. Remove anyway? [Y/n] " +msgstr "" + +#: ../remove.c:114 +#, c-format +msgid " %s: is required by %s\n" +msgstr "" + +#: ../remove.c:136 +msgid "" +"\n" +"Targets:" +msgstr "" + +#. get confirmation +#: ../remove.c:139 +msgid "" +"\n" +"Do you want to remove these packages? [Y/n] " +msgstr "" + +#: ../sync.c:68 +msgid "removing old packages from cache... " +msgstr "" + +#: ../sync.c:71 +msgid "could not access cache directory\n" +msgstr "" + +#. full cleanup +#: ../sync.c:131 +msgid "removing all packages from cache... " +msgstr "" + +#: ../sync.c:134 +msgid "could not remove cache directory\n" +msgstr "" + +#: ../sync.c:139 +msgid "could not create new cache directory\n" +msgstr "" + +#: ../sync.c:144 ../sync.c:736 ../trans.c:66 ../trans.c:72 ../trans.c:82 +#: ../trans.c:92 +msgid "done.\n" +msgstr "" + +#: ../sync.c:168 +#, c-format +msgid "failed to get lastupdate time for %s (no big deal)\n" +msgstr "" + +#: ../sync.c:181 +#, c-format +msgid "failed to synchronize %s\n" +msgstr "" + +#: ../sync.c:184 +#, c-format +msgid " %s is up to date\n" +msgstr "" + +#: ../sync.c:187 +#, c-format +msgid "sync: new mtime for %s: %s\n" +msgstr "" + +#: ../sync.c:192 +#, c-format +msgid "failed to update %s (%s)\n" +msgstr "" + +#: ../sync.c:218 +#, c-format +msgid "" +"%s/%s %s\n" +" " +msgstr "" + +#: ../sync.c:286 +#, c-format +msgid "package \"%s\" was not found.\n" +msgstr "" + +#: ../sync.c:324 +#, c-format +msgid "repository \"%s\" was not found.\n" +msgstr "" + +#. grab a fresh package list +#: ../sync.c:385 +msgid ":: Synchronizing package databases...\n" +msgstr "" + +#: ../sync.c:386 +msgid "synchronizing package lists" +msgstr "" + +#: ../sync.c:420 +msgid ":: Starting local database upgrade...\n" +msgstr "" + +#: ../sync.c:421 +msgid "starting full system upgrade" +msgstr "" + +#: ../sync.c:439 +msgid "" +"\n" +":: pacman has detected a newer version of the \"pacman\" package.\n" +msgstr "" + +#: ../sync.c:440 +msgid ":: It is recommended that you allow pacman to upgrade itself\n" +msgstr "" + +#: ../sync.c:441 +msgid ":: first, then you can re-run the operation with the newer version.\n" +msgstr "" + +#: ../sync.c:442 +msgid "::\n" +msgstr "" + +#: ../sync.c:443 +msgid ":: Upgrade pacman first? [Y/n] " +msgstr "" + +#: ../sync.c:458 ../sync.c:478 +#, c-format +msgid "could not add target '%s': %s\n" +msgstr "" + +#: ../sync.c:495 +msgid ":: Install whole content? [Y/n] " +msgstr "" + +#: ../sync.c:502 +#, c-format +msgid ":: Install %s from group %s? [Y/n] " +msgstr "" + +#: ../sync.c:527 +#, c-format +msgid ":: %s: %s %s" +msgstr "" + +#: ../sync.c:528 +msgid "requires" +msgstr "" + +#: ../sync.c:528 +msgid "is required by" +msgstr "" + +#: ../sync.c:593 +msgid "" +"\n" +"Remove: " +msgstr "" + +#: ../sync.c:605 +msgid "" +"\n" +"Targets: " +msgstr "" + +#: ../sync.c:608 +#, c-format +msgid "" +"\n" +"Total Package Size: %.1f MB\n" +msgstr "" + +#: ../sync.c:614 +msgid "" +"\n" +"Beginning download...\n" +msgstr "" + +#: ../sync.c:618 +msgid "Proceed with download? [Y/n] " +msgstr "" + +#: ../sync.c:626 +msgid "" +"\n" +"Beginning upgrade process...\n" +msgstr "" + +#: ../sync.c:630 +msgid "Proceed with upgrade? [Y/n] " +msgstr "" + +#: ../sync.c:676 +#, c-format +msgid " %s-%s" +msgstr "" + +#: ../sync.c:676 +msgid " is already in the cache\n" +msgstr "" + +#: ../sync.c:684 +#, c-format +msgid "" +"\n" +":: Retrieving packages from %s...\n" +msgstr "" + +#. no cache directory.... try creating it +#: ../sync.c:688 +#, c-format +msgid "no %s cache exists. creating...\n" +msgstr "" + +#: ../sync.c:689 +#, 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:694 +msgid "couldn't create package cache, using /tmp instead" +msgstr "" + +#: ../sync.c:695 +msgid "warning: couldn't create package cache, using /tmp instead" +msgstr "" + +#: ../sync.c:705 +#, c-format +msgid "failed to retrieve some files from %s\n" +msgstr "" + +#. Check integrity of files +#: ../sync.c:718 +msgid "checking package integrity... " +msgstr "" + +#: ../sync.c:725 +#, c-format +msgid "archive %s is corrupted\n" +msgstr "" + +#: ../sync.c:727 +#, c-format +msgid "could not get checksum for package %s (%s)\n" +msgstr "" + +#: ../trans.c:51 +msgid "checking dependencies... " +msgstr "" + +#: ../trans.c:54 +msgid "checking for file conflicts... " +msgstr "" + +#: ../trans.c:57 +msgid "resolving dependencies... " +msgstr "" + +#: ../trans.c:60 +msgid "looking for inter-conflicts... " +msgstr "" + +#: ../trans.c:69 +#, c-format +msgid "installing %s... " +msgstr "" + +#: ../trans.c:73 +#, c-format +msgid "installed %s (%s)" +msgstr "" + +#: ../trans.c:79 +#, c-format +msgid "removing %s... " +msgstr "" + +#: ../trans.c:83 +#, c-format +msgid "removed %s (%s)" +msgstr "" + +#: ../trans.c:89 +#, c-format +msgid "upgrading %s... " +msgstr "" + +#: ../trans.c:93 +#, c-format +msgid "upgraded %s (%s -> %s)" +msgstr "" + +#: ../trans.c:108 +#, c-format +msgid ":: %s requires %s, but it is in IgnorePkg. Install anyway? [Y/n] " +msgstr "" + +#: ../trans.c:114 +#, c-format +msgid ":: Replace %s with %s/%s? [Y/n] " +msgstr "" + +#: ../trans.c:121 +#, c-format +msgid ":: %s conflicts with %s. Remove %s? [Y/n] " +msgstr "" + +#: ../trans.c:129 +#, c-format +msgid ":: %s-%s: local version is newer. Upgrade anyway? [Y/n] " +msgstr "" + +#: ../trans.c:139 +#, c-format +msgid ":: %s-%s: local version is up to date. Upgrade anyway? [Y/n] " +msgstr "" + +#: ../util.c:172 +#, c-format +msgid "failed to allocated %d bytes\n" +msgstr "" + +#: ../util.c:226 +#, c-format +msgid "%s is not a valid regular expression.\n" +msgstr "" diff --git a/src/pacman/po/stamp-po b/src/pacman/po/stamp-po new file mode 100644 index 00000000..9788f702 --- /dev/null +++ b/src/pacman/po/stamp-po @@ -0,0 +1 @@ +timestamp -- cgit v1.2.3-24-g4f1b