From 769facca22db733f0a70ce6a38062d37fe8d2579 Mon Sep 17 00:00:00 2001 From: Anatol Pomozov Date: Sun, 14 Apr 2013 19:33:46 -0700 Subject: Fix spelling errors using 'codespell' tool Signed-off-by: Allan McRae --- lib/libalpm/add.c | 2 +- lib/libalpm/be_package.c | 4 ++-- lib/libalpm/deps.c | 2 +- lib/libalpm/signing.c | 2 +- lib/libalpm/util.c | 6 +++--- 5 files changed, 8 insertions(+), 8 deletions(-) (limited to 'lib') diff --git a/lib/libalpm/add.c b/lib/libalpm/add.c index 1d9db602..3ef81e37 100644 --- a/lib/libalpm/add.c +++ b/lib/libalpm/add.c @@ -314,7 +314,7 @@ static int extract_single_file(alpm_handle_t *handle, struct archive *archive, hash_local = alpm_compute_md5sum(filename); hash_pkg = alpm_compute_md5sum(checkfile); - /* update the md5 hash in newpkg's backup (it will be the new orginal) */ + /* update the md5 hash in newpkg's backup (it will be the new original) */ alpm_list_t *i; for(i = alpm_pkg_get_backup(newpkg); i; i = i->next) { alpm_backup_t *backup = i->data; diff --git a/lib/libalpm/be_package.c b/lib/libalpm/be_package.c index 3b43ed84..cfe5fb36 100644 --- a/lib/libalpm/be_package.c +++ b/lib/libalpm/be_package.c @@ -390,7 +390,7 @@ alpm_pkg_t *_alpm_pkg_load_internal(alpm_handle_t *handle, /* If full is false, only read through the archive until we find our needed * metadata. If it is true, read through the entire archive, which serves - * as a verfication of integrity and allows us to create the filelist. */ + * as a verification of integrity and allows us to create the filelist. */ while((ret = archive_read_next_header(archive, &entry)) == ARCHIVE_OK) { const char *entry_name = archive_entry_pathname(entry); @@ -460,7 +460,7 @@ alpm_pkg_t *_alpm_pkg_load_internal(alpm_handle_t *handle, } } - if(ret != ARCHIVE_EOF && ret != ARCHIVE_OK) { /* An error occured */ + if(ret != ARCHIVE_EOF && ret != ARCHIVE_OK) { /* An error occurred */ _alpm_log(handle, ALPM_LOG_ERROR, _("error while reading package %s: %s\n"), pkgfile, archive_error_string(archive)); handle->pm_errno = ALPM_ERR_LIBARCHIVE; diff --git a/lib/libalpm/deps.c b/lib/libalpm/deps.c index aebfd0b5..96c49a9f 100644 --- a/lib/libalpm/deps.c +++ b/lib/libalpm/deps.c @@ -488,7 +488,7 @@ alpm_depend_t *_alpm_dep_dup(const alpm_depend_t *dep) /* These parameters are messy. We check if this package, given a list of * targets and a db is safe to remove. We do NOT remove it if it is in the - * target list, or if if the package was explictly installed and + * target list, or if if the package was explicitly installed and * include_explicit == 0 */ static int can_remove_package(alpm_db_t *db, alpm_pkg_t *pkg, alpm_list_t *targets, int include_explicit) diff --git a/lib/libalpm/signing.c b/lib/libalpm/signing.c index c653e454..32084585 100644 --- a/lib/libalpm/signing.c +++ b/lib/libalpm/signing.c @@ -105,7 +105,7 @@ static alpm_list_t *list_sigsum(gpgme_sigsum_t sigsum) sigsum_test_bit(sigsum, &summary, GPGME_SIGSUM_CRL_TOO_OLD, "crl too old"); /* A policy was not met. */ sigsum_test_bit(sigsum, &summary, GPGME_SIGSUM_BAD_POLICY, "bad policy"); - /* A system error occured. */ + /* A system error occurred. */ sigsum_test_bit(sigsum, &summary, GPGME_SIGSUM_SYS_ERROR, "sys error"); /* Fallback case */ if(!sigsum) { diff --git a/lib/libalpm/util.c b/lib/libalpm/util.c index dc1d0435..f84fb666 100644 --- a/lib/libalpm/util.c +++ b/lib/libalpm/util.c @@ -527,7 +527,7 @@ int _alpm_run_chroot(alpm_handle_t *handle, const char *cmd, char *const argv[]) goto cleanup; } - /* fork- parent and child each have seperate code blocks below */ + /* fork- parent and child each have separate code blocks below */ pid = fork(); if(pid == -1) { _alpm_log(handle, ALPM_LOG_ERROR, _("could not fork a new process (%s)\n"), strerror(errno)); @@ -677,7 +677,7 @@ char *_alpm_filecache_find(alpm_handle_t *handle, const char *filename) return NULL; } -/** Check the alpm cachedirs for existance and find a writable one. +/** Check the alpm cachedirs for existence and find a writable one. * If no valid cache directory can be found, use /tmp. * @param handle the context handle * @return pointer to a writable cache directory. @@ -1251,7 +1251,7 @@ int _alpm_access(alpm_handle_t *handle, const char *dir, const char *file, int a /** Checks whether a string matches a shell wildcard pattern. * Wrapper around fnmatch. - * @param pattern pattern to match aganist + * @param pattern pattern to match against * @param string string to check against pattern * @return 0 if string matches pattern, non-zero if they don't match and on * error -- cgit v1.2.3-24-g4f1b From c1dfdd20109bdd154630df9f9d5465e947aa851e Mon Sep 17 00:00:00 2001 From: Allan McRae Date: Fri, 26 Apr 2013 12:42:36 +1000 Subject: Use libalpm version in pkg-config file We currently use the pacman version number in the libalpm.pc file. It makes more sense to use the libalpm version. Fixes FS#34967. Signed-off-by: Allan McRae --- lib/libalpm/libalpm.pc.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib') diff --git a/lib/libalpm/libalpm.pc.in b/lib/libalpm/libalpm.pc.in index fe4e2583..fdfc8be6 100644 --- a/lib/libalpm/libalpm.pc.in +++ b/lib/libalpm/libalpm.pc.in @@ -6,7 +6,7 @@ includedir=@includedir@ Name: libalpm Description: Arch Linux package management library URL: http://www.archlinux.org/pacman/ -Version: @VERSION@ +Version: @LIB_VERSION@ Cflags: -I${includedir} Libs: -L${libdir} -lalpm Libs.private: @LIBS@ @LIBARCHIVE_LIBS@ @LIBSSL_LIBS@ @LIBCURL_LIBS@ @GPGME_LIBS@ -- cgit v1.2.3-24-g4f1b From 0aa9628560e1ebbb4f4274305504f2f806b67266 Mon Sep 17 00:00:00 2001 From: Allan McRae Date: Tue, 30 Apr 2013 21:18:42 +1000 Subject: Pull translation updates from transifex Signed-off-by: Allan McRae --- lib/libalpm/po/ar.po | 37 +++++++++------- lib/libalpm/po/ca.po | 10 ++--- lib/libalpm/po/cs.po | 10 ++--- lib/libalpm/po/da.po | 6 +-- lib/libalpm/po/de.po | 8 ++-- lib/libalpm/po/el.po | 14 +++--- lib/libalpm/po/en_GB.po | 4 +- lib/libalpm/po/eo.po | 2 +- lib/libalpm/po/es.po | 12 ++--- lib/libalpm/po/fa.po | 2 +- lib/libalpm/po/fi.po | 16 +++---- lib/libalpm/po/fr.po | 108 ++++++++++++++++++++++----------------------- lib/libalpm/po/gl.po | 6 +-- lib/libalpm/po/hr.po | 39 +++++++++------- lib/libalpm/po/hu.po | 8 ++-- lib/libalpm/po/id.po | 4 +- lib/libalpm/po/it.po | 6 +-- lib/libalpm/po/ja.po | 12 ++--- lib/libalpm/po/kk.po | 6 +-- lib/libalpm/po/ko.po | 6 +-- lib/libalpm/po/libalpm.pot | 4 +- lib/libalpm/po/lt.po | 12 ++--- lib/libalpm/po/nb.po | 6 +-- lib/libalpm/po/nl.po | 4 +- lib/libalpm/po/pl.po | 6 +-- lib/libalpm/po/pt.po | 4 +- lib/libalpm/po/pt_BR.po | 12 ++--- lib/libalpm/po/ro.po | 12 ++--- lib/libalpm/po/ru.po | 37 ++++++++-------- lib/libalpm/po/sk.po | 10 ++--- lib/libalpm/po/sl.po | 4 +- lib/libalpm/po/sr.po | 6 +-- lib/libalpm/po/sr@latin.po | 6 +-- lib/libalpm/po/sv.po | 4 +- lib/libalpm/po/tr.po | 8 ++-- lib/libalpm/po/uk.po | 6 +-- lib/libalpm/po/zh_CN.po | 10 ++--- lib/libalpm/po/zh_TW.po | 6 +-- 38 files changed, 244 insertions(+), 229 deletions(-) (limited to 'lib') diff --git a/lib/libalpm/po/ar.po b/lib/libalpm/po/ar.po index a01c85a5..efbf3832 100644 --- a/lib/libalpm/po/ar.po +++ b/lib/libalpm/po/ar.po @@ -3,14 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# سند <0otibi0@gmail.com>, 2013. +# kraim <7kraim@gmail.com>, 2013 +# abad <0otibi0@gmail.com>, 2013 msgid "" msgstr "" "Project-Id-Version: Arch Linux Pacman package manager\n" "Report-Msgid-Bugs-To: http://bugs.archlinux.org/index.php?project=3\n" -"POT-Creation-Date: 2013-03-10 13:00+1000\n" -"PO-Revision-Date: 2013-03-10 03:10+0000\n" -"Last-Translator: allanmcrae \n" +"POT-Creation-Date: 2013-04-30 21:18+1000\n" +"PO-Revision-Date: 2013-04-16 15:24+0000\n" +"Last-Translator: kraim <7kraim@gmail.com>\n" "Language-Team: Arabic (http://www.transifex.com/projects/p/archlinux-pacman/" "language/ar/)\n" "Language: ar\n" @@ -38,7 +39,7 @@ msgstr "" #, c-format msgid "could not extract %s (%s)\n" -msgstr "" +msgstr "تعذر إستخراج %s (%s)\n" #, c-format msgid "could not rename %s to %s (%s)\n" @@ -60,7 +61,7 @@ msgstr "" #, c-format msgid "%s saved as %s\n" -msgstr "" +msgstr "%s تم حفظه كـ %s\n" #, c-format msgid "%s installed as %s\n" @@ -80,11 +81,11 @@ msgstr "" #, c-format msgid "could not restore working directory (%s)\n" -msgstr "" +msgstr "تعذر استعادة مجلد العمل (%s)\n" #, c-format msgid "problem occurred while upgrading %s\n" -msgstr "" +msgstr "حدثت مشكلة أثناء الترقية %s\n" #, c-format msgid "problem occurred while installing %s\n" @@ -101,6 +102,8 @@ msgstr "" #, c-format msgid "error while reading file %s: %s\n" msgstr "" +"خطأ أثناء قراءة الملف %s: %s\n" +"\n" #, c-format msgid "removing invalid database: %s\n" @@ -208,7 +211,7 @@ msgstr "" #, c-format msgid "could not open file: %s: %s\n" -msgstr "" +msgstr "تعذر فتح الملف: %s: %s\n" #, c-format msgid "could not get filesystem information\n" @@ -248,7 +251,7 @@ msgstr "" #, c-format msgid "url '%s' is invalid\n" -msgstr "" +msgstr "العنوان '%s' غير صالح\n" #, c-format msgid "failed retrieving file '%s' from %s : %s\n" @@ -388,7 +391,7 @@ msgstr "" #, c-format msgid "invalid or corrupted package" -msgstr "" +msgstr "حزمة غير صالحة أو معطوبة" #, c-format msgid "invalid or corrupted package (checksum)" @@ -444,7 +447,7 @@ msgstr "" #, c-format msgid "conflicting files" -msgstr "" +msgstr "ملفات متضاربة" #, c-format msgid "failed to retrieve some files" @@ -472,7 +475,7 @@ msgstr "" #, c-format msgid "unexpected error" -msgstr "" +msgstr "خطأ غير متوقع" #, c-format msgid "could not fully load metadata for package %s-%s\n" @@ -489,6 +492,8 @@ msgstr "" #, c-format msgid "cannot remove file '%s': %s\n" msgstr "" +"تعذر إزالة الملف '%s': %s\n" +"\n" #, c-format msgid "could not open directory: %s: %s\n" @@ -528,7 +533,7 @@ msgstr "" #, c-format msgid "cannot replace %s by %s\n" -msgstr "" +msgstr "تعذر استبدال %s بـ %s\n" #, c-format msgid "unresolvable package conflicts detected\n" @@ -544,7 +549,7 @@ msgstr "" #, c-format msgid "not enough free disk space\n" -msgstr "" +msgstr "لا توجد مساحة خالية كافية على القرص\n" #, c-format msgid "could not commit removal transaction\n" @@ -565,6 +570,8 @@ msgstr "" #, c-format msgid "could not remove %s\n" msgstr "" +"تعذر إزالة %s\n" +"\n" #, c-format msgid "could not remove tmpdir %s\n" diff --git a/lib/libalpm/po/ca.po b/lib/libalpm/po/ca.po index b20112d3..8d3769a3 100644 --- a/lib/libalpm/po/ca.po +++ b/lib/libalpm/po/ca.po @@ -3,15 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Dan McGee , 2011. -# Hector Mtz-Seara , 2011. -# Josep , 2013. -# , 2011. +# Dan McGee , 2011 +# Hector Mtz-Seara , 2011 +# jpatufet , 2013 +# jpatufet , 2011 msgid "" msgstr "" "Project-Id-Version: Arch Linux Pacman package manager\n" "Report-Msgid-Bugs-To: http://bugs.archlinux.org/index.php?project=3\n" -"POT-Creation-Date: 2013-03-10 13:00+1000\n" +"POT-Creation-Date: 2013-04-30 21:18+1000\n" "PO-Revision-Date: 2013-03-26 23:56+0000\n" "Last-Translator: jpatufet \n" "Language-Team: Catalan (http://www.transifex.com/projects/p/archlinux-pacman/" diff --git a/lib/libalpm/po/cs.po b/lib/libalpm/po/cs.po index 964165b3..397573b2 100644 --- a/lib/libalpm/po/cs.po +++ b/lib/libalpm/po/cs.po @@ -3,15 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Dan McGee , 2011. -# David Kolibáč , 2011. -# , 2011. -# Vojtěch Gondžala , 2011,2013. +# Dan McGee , 2011 +# David Kolibáč , 2011 +# mmm , 2011 +# Vojtěch Gondžala , 2011,2013 msgid "" msgstr "" "Project-Id-Version: Arch Linux Pacman package manager\n" "Report-Msgid-Bugs-To: http://bugs.archlinux.org/index.php?project=3\n" -"POT-Creation-Date: 2013-03-10 13:00+1000\n" +"POT-Creation-Date: 2013-04-30 21:18+1000\n" "PO-Revision-Date: 2013-03-15 03:04+0000\n" "Last-Translator: allanmcrae \n" "Language-Team: Czech (http://www.transifex.com/projects/p/archlinux-pacman/" diff --git a/lib/libalpm/po/da.po b/lib/libalpm/po/da.po index f2310aed..484e4132 100644 --- a/lib/libalpm/po/da.po +++ b/lib/libalpm/po/da.po @@ -3,13 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2012. -# Joe Hansen , 2011. +# jakobw , 2012 +# Joe Hansen , 2011 msgid "" msgstr "" "Project-Id-Version: Arch Linux Pacman package manager\n" "Report-Msgid-Bugs-To: http://bugs.archlinux.org/index.php?project=3\n" -"POT-Creation-Date: 2013-03-10 13:00+1000\n" +"POT-Creation-Date: 2013-04-30 21:18+1000\n" "PO-Revision-Date: 2013-03-10 03:10+0000\n" "Last-Translator: allanmcrae \n" "Language-Team: Danish (http://www.transifex.com/projects/p/archlinux-pacman/" diff --git a/lib/libalpm/po/de.po b/lib/libalpm/po/de.po index 177caab5..33971426 100644 --- a/lib/libalpm/po/de.po +++ b/lib/libalpm/po/de.po @@ -3,14 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Dan McGee , 2011. -# Matthias Gorissen , 2011. -# , 2013. +# Dan McGee , 2011 +# Matthias Gorissen , 2011 +# mar77i , 2013 msgid "" msgstr "" "Project-Id-Version: Arch Linux Pacman package manager\n" "Report-Msgid-Bugs-To: http://bugs.archlinux.org/index.php?project=3\n" -"POT-Creation-Date: 2013-03-10 13:00+1000\n" +"POT-Creation-Date: 2013-04-30 21:18+1000\n" "PO-Revision-Date: 2013-03-15 16:04+0000\n" "Last-Translator: Matthias Gorissen \n" "Language-Team: German (http://www.transifex.com/projects/p/archlinux-pacman/" diff --git a/lib/libalpm/po/el.po b/lib/libalpm/po/el.po index 7b61293a..b4a74000 100644 --- a/lib/libalpm/po/el.po +++ b/lib/libalpm/po/el.po @@ -3,16 +3,16 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Axilleas Pi , 2013. -# Christos Nouskas , 2011,2013. -# Dan McGee , 2011. -# nous , 2011. +# axil Pι , 2013 +# Christos Nouskas , 2011,2013 +# Dan McGee , 2011 +# Christos Nouskas , 2011 msgid "" msgstr "" "Project-Id-Version: Arch Linux Pacman package manager\n" "Report-Msgid-Bugs-To: http://bugs.archlinux.org/index.php?project=3\n" -"POT-Creation-Date: 2013-03-10 13:00+1000\n" -"PO-Revision-Date: 2013-03-16 18:47+0000\n" +"POT-Creation-Date: 2013-04-30 21:18+1000\n" +"PO-Revision-Date: 2013-04-06 19:51+0000\n" "Last-Translator: Christos Nouskas \n" "Language-Team: Greek (http://www.transifex.com/projects/p/archlinux-pacman/" "language/el/)\n" @@ -547,7 +547,7 @@ msgstr "" #, c-format msgid "failed to retrieve some files\n" -msgstr "σφάλμα ανάκτησης μερικών αρχείων\n" +msgstr "σφάλμα λήψης μερικών αρχείων\n" #, c-format msgid "not enough free disk space\n" diff --git a/lib/libalpm/po/en_GB.po b/lib/libalpm/po/en_GB.po index 5ead47bf..c9bbc3a6 100644 --- a/lib/libalpm/po/en_GB.po +++ b/lib/libalpm/po/en_GB.po @@ -3,12 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Dan McGee , 2011. +# Dan McGee , 2011 msgid "" msgstr "" "Project-Id-Version: Arch Linux Pacman package manager\n" "Report-Msgid-Bugs-To: http://bugs.archlinux.org/index.php?project=3\n" -"POT-Creation-Date: 2013-03-10 13:00+1000\n" +"POT-Creation-Date: 2013-04-30 21:18+1000\n" "PO-Revision-Date: 2013-03-17 07:52+0000\n" "Last-Translator: allanmcrae \n" "Language-Team: English (United Kingdom) (http://www.transifex.com/projects/p/" diff --git a/lib/libalpm/po/eo.po b/lib/libalpm/po/eo.po index aedc7a8a..4d97bd6f 100644 --- a/lib/libalpm/po/eo.po +++ b/lib/libalpm/po/eo.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Arch Linux Pacman package manager\n" "Report-Msgid-Bugs-To: http://bugs.archlinux.org/index.php?project=3\n" -"POT-Creation-Date: 2013-03-10 13:00+1000\n" +"POT-Creation-Date: 2013-04-30 21:18+1000\n" "PO-Revision-Date: 2013-03-10 03:10+0000\n" "Last-Translator: allanmcrae \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/archlinux-" diff --git a/lib/libalpm/po/es.po b/lib/libalpm/po/es.po index 3c90a1fd..2e6769d6 100644 --- a/lib/libalpm/po/es.po +++ b/lib/libalpm/po/es.po @@ -3,16 +3,16 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Angel Velasquez , 2011. -# Dan McGee , 2011. -# Juan Antonio Cánovas Pérez , 2011. -# , 2011. -# neiko , 2011. +# Angel Velasquez , 2011 +# Dan McGee , 2011 +# Juan Antonio Cánovas Pérez , 2011 +# juantascon , 2011 +# neiko , 2011 msgid "" msgstr "" "Project-Id-Version: Arch Linux Pacman package manager\n" "Report-Msgid-Bugs-To: http://bugs.archlinux.org/index.php?project=3\n" -"POT-Creation-Date: 2013-03-10 13:00+1000\n" +"POT-Creation-Date: 2013-04-30 21:18+1000\n" "PO-Revision-Date: 2013-03-10 14:16+0000\n" "Last-Translator: j3nnn1 \n" "Language-Team: Spanish (http://www.transifex.com/projects/p/archlinux-pacman/" diff --git a/lib/libalpm/po/fa.po b/lib/libalpm/po/fa.po index 457144aa..6cc07fc3 100644 --- a/lib/libalpm/po/fa.po +++ b/lib/libalpm/po/fa.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Arch Linux Pacman package manager\n" "Report-Msgid-Bugs-To: http://bugs.archlinux.org/index.php?project=3\n" -"POT-Creation-Date: 2013-03-10 13:00+1000\n" +"POT-Creation-Date: 2013-04-30 21:18+1000\n" "PO-Revision-Date: 2013-03-10 03:10+0000\n" "Last-Translator: allanmcrae \n" "Language-Team: Persian (http://www.transifex.com/projects/p/archlinux-pacman/" diff --git a/lib/libalpm/po/fi.po b/lib/libalpm/po/fi.po index ec1f984f..cb074bef 100644 --- a/lib/libalpm/po/fi.po +++ b/lib/libalpm/po/fi.po @@ -3,18 +3,18 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# apuasi , 2011. -# Dan McGee , 2011. -# Jesse Jaara , 2011. -# , 2013. -# , 2011. -# Larso , 2011. -# Lasse Liehu , 2011,2013. +# apuasi , 2011 +# Dan McGee , 2011 +# Jesse Jaara , 2011 +# Larso , 2013 +# Larso , 2011 +# Larso , 2011 +# Lasse Liehu , 2011,2013 msgid "" msgstr "" "Project-Id-Version: Arch Linux Pacman package manager\n" "Report-Msgid-Bugs-To: http://bugs.archlinux.org/index.php?project=3\n" -"POT-Creation-Date: 2013-03-10 13:00+1000\n" +"POT-Creation-Date: 2013-04-30 21:18+1000\n" "PO-Revision-Date: 2013-03-20 17:41+0000\n" "Last-Translator: Larso \n" "Language-Team: Finnish (http://www.transifex.com/projects/p/archlinux-pacman/" diff --git a/lib/libalpm/po/fr.po b/lib/libalpm/po/fr.po index 5f69b09d..8c5682c2 100644 --- a/lib/libalpm/po/fr.po +++ b/lib/libalpm/po/fr.po @@ -3,18 +3,18 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2012. -# Dan McGee , 2011. -# , 2011-2012. -# shining , 2011. -# Xavier Devlamynck , 2011. +# alub , 2012 +# Dan McGee , 2011 +# jiehong , 2011-2012 +# shining , 2011 +# Xavier Devlamynck , 2011 msgid "" msgstr "" "Project-Id-Version: Arch Linux Pacman package manager\n" "Report-Msgid-Bugs-To: http://bugs.archlinux.org/index.php?project=3\n" -"POT-Creation-Date: 2013-03-10 13:00+1000\n" -"PO-Revision-Date: 2013-03-10 03:10+0000\n" -"Last-Translator: allanmcrae \n" +"POT-Creation-Date: 2013-04-30 21:18+1000\n" +"PO-Revision-Date: 2013-04-05 22:57+0000\n" +"Last-Translator: alub \n" "Language-Team: French (http://www.transifex.com/projects/p/archlinux-pacman/" "language/fr/)\n" "Language: fr\n" @@ -37,11 +37,11 @@ msgstr "retourne à la version antérieure du paquet %s (%s => %s)\n" #, c-format msgid "warning given when extracting %s (%s)\n" -msgstr "problème pendant l'extraction de %s (%s)\n" +msgstr "problème pendant l’extraction de %s (%s)\n" #, c-format msgid "could not extract %s (%s)\n" -msgstr "l'extraction de %s a échoué (%s)\n" +msgstr "l’extraction de %s a échoué (%s)\n" #, c-format msgid "could not rename %s to %s (%s)\n" @@ -53,11 +53,11 @@ msgid "" "filesystem: %o package: %o\n" msgstr "" "les permissions pour le répertoire %s sont différentes\n" -"système de fichier : %o paquet : %o\n" +"système de fichier : %o, paquet : %o\n" #, c-format msgid "extract: not overwriting dir with file %s\n" -msgstr "extraction : n'écrase pas le répertoire par le fichier %s\n" +msgstr "extraction : n’écrase pas le répertoire par le fichier %s\n" #, c-format msgid "extract: symlink %s does not point to dir\n" @@ -73,7 +73,7 @@ msgstr "%s installé en tant que %s\n" #, c-format msgid "extracting %s as %s.pacnew\n" -msgstr "extraction de %s comme %s.pacnew\n" +msgstr "extraction de %s sous le nom %s.pacnew\n" #, c-format msgid "could not get current working directory\n" @@ -85,7 +85,7 @@ msgstr "changer de répertoire vers %s a échoué (%s)\n" #, c-format msgid "could not restore working directory (%s)\n" -msgstr "Impossible de restaurer le répertoire de travail (%s)\n" +msgstr "impossible de restaurer le répertoire de travail (%s)\n" #, c-format msgid "problem occurred while upgrading %s\n" @@ -93,39 +93,39 @@ msgstr "des erreurs sont survenues pendant la mise à jour de %s\n" #, c-format msgid "problem occurred while installing %s\n" -msgstr "des erreurs sont survenues pendant l'installation de %s\n" +msgstr "des erreurs sont survenues pendant l’installation de %s\n" #, c-format msgid "could not update database entry %s-%s\n" -msgstr "la mise à jour de l'entrée de base de données %s-%s a échoué\n" +msgstr "la mise à jour de l’entrée de base de données %s-%s a échoué\n" #, c-format msgid "could not add entry '%s' in cache\n" -msgstr "l'ajout au cache de l'entrée '%s' a échoué\n" +msgstr "l’ajout au cache de l’entrée « %s » a échoué\n" #, c-format msgid "error while reading file %s: %s\n" -msgstr "" +msgstr "erreur en essayant de lire le fichier %s : %s\n" #, c-format msgid "removing invalid database: %s\n" -msgstr "suppression d'une base de données invalide : %s\n" +msgstr "suppression d’une base de données invalide : %s\n" #, c-format msgid "invalid name for database entry '%s'\n" -msgstr "nom invalide pour l'entrée de base de données '%s'\n" +msgstr "nom invalide pour l’entrée de base de données « %s »\n" #, c-format msgid "duplicated database entry '%s'\n" -msgstr "l'entrée '%s' de la base de données est dupliquée\n" +msgstr "l’entrée « %s » de la base de données est dupliquée\n" #, c-format msgid "corrupted database entry '%s'\n" -msgstr "l'entrée '%s' de la base de données est corrompue\n" +msgstr "l’entrée « %s » de la base de données est corrompue\n" #, c-format msgid "could not open file %s: %s\n" -msgstr "l'ouverture du fichier %s a échoué : %s\n" +msgstr "l’ouverture du fichier %s a échoué : %s\n" #, c-format msgid "%s database is inconsistent: name mismatch on package %s\n" @@ -138,7 +138,7 @@ msgstr "" #, c-format msgid "unknown validation type for package %s: %s\n" -msgstr "" +msgstr "type de validation inconnu pour le paquet %s : %s\n" #, c-format msgid "could not create directory %s: %s\n" @@ -146,7 +146,7 @@ msgstr "la création du répertoire %s a échoué : %s\n" #, c-format msgid "could not parse package description file in %s\n" -msgstr "l'analyse du fichier de description a échoué dans %s\n" +msgstr "l’analyse du fichier de description a échoué dans %s\n" #, c-format msgid "missing package name in %s\n" @@ -166,11 +166,11 @@ msgstr "méta-données du paquet manquantes dans %s\n" #, c-format msgid "failed to read signature file: %s\n" -msgstr "" +msgstr "échec lors de la lecture du fichier de signature : %s\n" #, c-format msgid "required key missing from keyring\n" -msgstr "" +msgstr "clé requise absente du trousseau\n" #, c-format msgid "removing invalid file: %s\n" @@ -183,7 +183,7 @@ msgstr "la suppression du fichier de verrouillage %s a échoué\n" #, c-format msgid "could not parse package description file '%s' from db '%s'\n" msgstr "" -"impossible d'analyser le fichier « %s » de description du paquet depuis la " +"impossible d’analyser le fichier « %s » de description du paquet depuis la " "base de données « %s »\n" #, c-format @@ -217,7 +217,7 @@ msgstr "" #, c-format msgid "could not open file: %s: %s\n" -msgstr "" +msgstr "impossible d’ouvrir le fichier %s : %s\n" #, c-format msgid "could not get filesystem information\n" @@ -237,7 +237,7 @@ msgstr "impossible de déterminer les points de montage\n" #, c-format msgid "could not determine cachedir mount point %s\n" -msgstr "" +msgstr "impossible de déterminer le point de montage du dossier de cache %s\n" #, c-format msgid "could not determine root mount point %s\n" @@ -253,11 +253,11 @@ msgstr "disque" #, c-format msgid "failed to create temporary file for download\n" -msgstr "échec de création d'un fichier temporaire pour le téléchargement\n" +msgstr "échec de création d’un fichier temporaire pour le téléchargement\n" #, c-format msgid "url '%s' is invalid\n" -msgstr "l'URL « %s » est invalide\n" +msgstr "l’URL « %s » est invalide\n" #, c-format msgid "failed retrieving file '%s' from %s : %s\n" @@ -269,7 +269,7 @@ msgstr "%s est apparemment tronqué : %jd/%jd octets\n" #, c-format msgid "failed to download %s\n" -msgstr "le fichier %s n'a pas pu être téléchargé\n" +msgstr "le fichier %s n’a pas pu être téléchargé\n" #, c-format msgid "out of memory!" @@ -281,7 +281,7 @@ msgstr "erreur système non prévue" #, c-format msgid "permission denied" -msgstr "" +msgstr "permission non accordée" #, c-format msgid "could not find or read file" @@ -297,7 +297,7 @@ msgstr "un argument erroné ou nul a été fourni" #, c-format msgid "not enough free disk space" -msgstr "pas assez d'espace libre" +msgstr "pas assez d’espace libre" #, c-format msgid "library not initialized" @@ -313,7 +313,7 @@ msgstr "verrouillage de la base de données impossible" #, c-format msgid "could not open database" -msgstr "l'ouverture de la base de données a échoué" +msgstr "l’ouverture de la base de données a échoué" #, c-format msgid "could not create database" @@ -341,7 +341,7 @@ msgstr "base de données invalide ou corrompue (signature PGP)" #, c-format msgid "database is incorrect version" -msgstr "la version de la base de donnée n'est pas la bonne" +msgstr "la version de la base de donnée n’est pas la bonne" #, c-format msgid "could not update database" @@ -349,7 +349,7 @@ msgstr "la mise à jour de la base de données a échoué" #, c-format msgid "could not remove database entry" -msgstr "la suppression de l'entrée de base de données a échoué" +msgstr "la suppression de l’entrée de base de données a échoué" #, c-format msgid "invalid url for server" @@ -386,7 +386,7 @@ msgstr "opération incompatible avec le type de transaction" #, c-format msgid "transaction commit attempt when database is not locked" msgstr "" -"tentative de réalisation d'une transaction alors que le dépôt n'est pas " +"tentative de réalisation d’une transaction alors que le dépôt n’est pas " "verrouillé" #, c-format @@ -395,7 +395,7 @@ msgstr "impossible de trouver ou de lire le paquet" #, c-format msgid "operation cancelled due to ignorepkg" -msgstr "opération annulée à cause d'un paquet à ignorer (IgnorePkg)" +msgstr "opération annulée à cause d’un paquet à ignorer (IgnorePkg)" #, c-format msgid "invalid or corrupted package" @@ -443,7 +443,7 @@ msgstr "delta invalide ou corrompu" #, c-format msgid "delta patch failed" -msgstr "l'application du delta a échoué" +msgstr "l’application du delta a échoué" #, c-format msgid "could not satisfy dependencies" @@ -488,7 +488,7 @@ msgstr "erreur non prévue" #, c-format msgid "could not fully load metadata for package %s-%s\n" msgstr "" -"les métadonnées pour le paquet %s-%s n'ont pas pu être totalement chargées.\n" +"les métadonnées pour le paquet %s-%s n’ont pas pu être totalement chargées.\n" #, c-format msgid "could not find %s in database -- skipping\n" @@ -504,7 +504,7 @@ msgstr "suppression du fichier « %s » impossible : %s\n" #, c-format msgid "could not open directory: %s: %s\n" -msgstr "" +msgstr "impossible d’ouvrir le dossier %s : %s\n" #, c-format msgid "cannot remove %s (%s)\n" @@ -512,11 +512,11 @@ msgstr "impossible de supprimer %s (%s)\n" #, c-format msgid "could not remove database entry %s-%s\n" -msgstr "la suppression de l'entrée de base de données %s-%s a échoué\n" +msgstr "la suppression de l’entrée de base de données %s-%s a échoué\n" #, c-format msgid "could not remove entry '%s' from cache\n" -msgstr "la suppression du cache de l'entrée « %s » a échoué\n" +msgstr "la suppression du cache de l’entrée « %s » a échoué\n" #, c-format msgid "%s: ignoring package upgrade (%s => %s)\n" @@ -553,11 +553,11 @@ msgstr "" #, c-format msgid "failed to retrieve some files\n" -msgstr "" +msgstr "erreur lors de la récupération de certains fichiers\n" #, c-format msgid "not enough free disk space\n" -msgstr "" +msgstr "espace disque insuffisant\n" #, c-format msgid "could not commit removal transaction\n" @@ -585,7 +585,7 @@ msgstr "la suppression du répertoire temporaire %s a échoué\n" #, c-format msgid "could not stat file %s: %s\n" -msgstr "" +msgstr "impossible de connaître l’état du fichier %s : %s\n" #, c-format msgid "could not create pipe (%s)\n" @@ -593,7 +593,7 @@ msgstr "impossible de créer le tube (%s)\n" #, c-format msgid "could not fork a new process (%s)\n" -msgstr "la génération d'un nouveau processus a échoué (%s)\n" +msgstr "la génération d’un nouveau processus a échoué (%s)\n" #, c-format msgid "could not change the root directory (%s)\n" @@ -601,23 +601,23 @@ msgstr "changer le répertoire racine a échoué (%s)\n" #, c-format msgid "call to execv failed (%s)\n" -msgstr "l'appel à execv a échoué (%s)\n" +msgstr "l’appel à execv a échoué (%s)\n" #, c-format msgid "call to waitpid failed (%s)\n" -msgstr "l'appel de waitpid a échoué (%s)\n" +msgstr "l’appel de waitpid a échoué (%s)\n" #, c-format msgid "could not open pipe (%s)\n" -msgstr "impossible d'ouvrir le tube (%s)\n" +msgstr "impossible d’ouvrir le tube (%s)\n" #, c-format msgid "command failed to execute correctly\n" -msgstr "la commande n'a pas pu être exécutée correctement\n" +msgstr "la commande n’a pas pu être exécutée correctement\n" #, c-format msgid "no %s cache exists, creating...\n" -msgstr "le cache %s n'existe pas, création…\n" +msgstr "le cache %s n’existe pas, création...\n" #, c-format msgid "couldn't find or create package cache, using %s instead\n" diff --git a/lib/libalpm/po/gl.po b/lib/libalpm/po/gl.po index f4ca8b3e..bc0ca43b 100644 --- a/lib/libalpm/po/gl.po +++ b/lib/libalpm/po/gl.po @@ -3,13 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Alexandre Filgueira , 2013. -# , 2013. +# faidoc , 2013 +# faidoc , 2013 msgid "" msgstr "" "Project-Id-Version: Arch Linux Pacman package manager\n" "Report-Msgid-Bugs-To: http://bugs.archlinux.org/index.php?project=3\n" -"POT-Creation-Date: 2013-03-10 13:00+1000\n" +"POT-Creation-Date: 2013-04-30 21:18+1000\n" "PO-Revision-Date: 2013-03-10 03:10+0000\n" "Last-Translator: allanmcrae \n" "Language-Team: Galician (http://www.transifex.com/projects/p/archlinux-" diff --git a/lib/libalpm/po/hr.po b/lib/libalpm/po/hr.po index 90364412..90af52a3 100644 --- a/lib/libalpm/po/hr.po +++ b/lib/libalpm/po/hr.po @@ -3,13 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Ivica Kolić , 2012-2013. +# Ivica Kolić , 2012-2013 msgid "" msgstr "" "Project-Id-Version: Arch Linux Pacman package manager\n" "Report-Msgid-Bugs-To: http://bugs.archlinux.org/index.php?project=3\n" -"POT-Creation-Date: 2013-03-10 13:00+1000\n" -"PO-Revision-Date: 2013-03-11 23:21+0000\n" +"POT-Creation-Date: 2013-04-30 21:18+1000\n" +"PO-Revision-Date: 2013-04-04 02:56+0000\n" "Last-Translator: Ivica Kolić \n" "Language-Team: Croatian (http://www.transifex.com/projects/p/archlinux-" "pacman/language/hr/)\n" @@ -41,6 +41,7 @@ msgid "could not extract %s (%s)\n" msgstr "" "ne mogu raspakirati %s (%s)\n" "\n" +"\n" #, c-format msgid "could not rename %s to %s (%s)\n" @@ -88,6 +89,8 @@ msgstr "ne mogu promjeniti direktorij u %s (%s)\n" #, c-format msgid "could not restore working directory (%s)\n" msgstr "" +"ne mogu obnoviti radni direktorij (%s)\n" +"\n" #, c-format msgid "problem occurred while upgrading %s\n" @@ -111,7 +114,7 @@ msgstr "" #, c-format msgid "error while reading file %s: %s\n" -msgstr "" +msgstr "greška prilikom čitanja datoteke %s: %s\n" #, c-format msgid "removing invalid database: %s\n" @@ -209,7 +212,7 @@ msgstr "%s će biti instaliran prije svoje %s zavisnosti\n" #, c-format msgid "ignoring package %s-%s\n" -msgstr "" +msgstr "ignoriram paket %s-%s\n" #, c-format msgid "cannot resolve \"%s\", a dependency of \"%s\"\n" @@ -217,15 +220,17 @@ msgstr "" #, c-format msgid "could not get filesystem information for %s: %s\n" -msgstr "" +msgstr "ne mogu dobitit informaciju datotečnog sustava za %s: %s\n" #, c-format msgid "could not open file: %s: %s\n" -msgstr "" +msgstr "ne mogu otvoriti datoteku: %s: %s\n" #, c-format msgid "could not get filesystem information\n" msgstr "" +"ne mogu dobiti informaciju datotečnog sustava\n" +"\n" #, c-format msgid "could not determine mount point for file %s\n" @@ -285,7 +290,7 @@ msgstr "neočekivana greška sustava" #, c-format msgid "permission denied" -msgstr "" +msgstr "dopuštenje odbijeno" #, c-format msgid "could not find or read file" @@ -361,7 +366,7 @@ msgstr "neispravni url za poslužitelj" #, c-format msgid "no servers configured for repository" -msgstr "" +msgstr "nijedan poslužitelj nije konfiguriran za repozitorij" #, c-format msgid "transaction already initialized" @@ -405,7 +410,7 @@ msgstr "neispravan ili oštećen paket" #, c-format msgid "invalid or corrupted package (checksum)" -msgstr "" +msgstr "neispravni ili oštećeni paket (checksum)" #, c-format msgid "invalid or corrupted package (PGP signature)" @@ -441,7 +446,7 @@ msgstr "" #, c-format msgid "invalid or corrupted delta" -msgstr "" +msgstr "neispravna ili oštećena delta" #, c-format msgid "delta patch failed" @@ -505,7 +510,7 @@ msgstr "ne mogu ukloniti datoteku %s': %s\n" #, c-format msgid "could not open directory: %s: %s\n" -msgstr "" +msgstr "ne mogu otvoriti direktorij: %s: %s\n" #, c-format msgid "cannot remove %s (%s)\n" @@ -524,6 +529,8 @@ msgstr "" #, c-format msgid "%s: ignoring package upgrade (%s => %s)\n" msgstr "" +"%s: ignoriram nadogradnju paketa (%s => %s)\n" +"\n" #, c-format msgid "%s: ignoring package downgrade (%s => %s)\n" @@ -547,7 +554,7 @@ msgstr "ne mogu zamjeniti %s sa %s\n" #, c-format msgid "unresolvable package conflicts detected\n" -msgstr "" +msgstr "otkriveni su nerješivi sukobi paketa\n" #, c-format msgid "removing '%s' from target list because it conflicts with '%s'\n" @@ -559,7 +566,7 @@ msgstr "" #, c-format msgid "not enough free disk space\n" -msgstr "" +msgstr "nema dovoljno slobodnog prostora\n" #, c-format msgid "could not commit removal transaction\n" @@ -575,7 +582,7 @@ msgstr "ne mogu napraviti privremeni direktorij\n" #, c-format msgid "could not copy tempfile to %s (%s)\n" -msgstr "" +msgstr "ne mogu kopirati privremenu datoteku u %s (%s)\n" #, c-format msgid "could not remove %s\n" @@ -583,7 +590,7 @@ msgstr "ne mogu ukloniti %s\n" #, c-format msgid "could not remove tmpdir %s\n" -msgstr "" +msgstr "ne mogu ukloniti privremeni direktorij %s\n" #, c-format msgid "could not stat file %s: %s\n" diff --git a/lib/libalpm/po/hu.po b/lib/libalpm/po/hu.po index 3d0523eb..395ab6a1 100644 --- a/lib/libalpm/po/hu.po +++ b/lib/libalpm/po/hu.po @@ -3,14 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# György Balló , 2011. -# , 2013. -# ngaba , 2011. +# György Balló , 2011 +# ngaba , 2013 +# ngaba , 2011 msgid "" msgstr "" "Project-Id-Version: Arch Linux Pacman package manager\n" "Report-Msgid-Bugs-To: http://bugs.archlinux.org/index.php?project=3\n" -"POT-Creation-Date: 2013-03-10 13:00+1000\n" +"POT-Creation-Date: 2013-04-30 21:18+1000\n" "PO-Revision-Date: 2013-03-15 03:06+0000\n" "Last-Translator: allanmcrae \n" "Language-Team: Hungarian (http://www.transifex.com/projects/p/archlinux-" diff --git a/lib/libalpm/po/id.po b/lib/libalpm/po/id.po index ab3bf081..6f24eb97 100644 --- a/lib/libalpm/po/id.po +++ b/lib/libalpm/po/id.po @@ -3,12 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Gregori , 2013. +# andjeng , 2013 msgid "" msgstr "" "Project-Id-Version: Arch Linux Pacman package manager\n" "Report-Msgid-Bugs-To: http://bugs.archlinux.org/index.php?project=3\n" -"POT-Creation-Date: 2013-03-10 13:00+1000\n" +"POT-Creation-Date: 2013-04-30 21:18+1000\n" "PO-Revision-Date: 2013-03-15 18:52+0000\n" "Last-Translator: andjeng \n" "Language-Team: Indonesian (http://www.transifex.com/projects/p/archlinux-" diff --git a/lib/libalpm/po/it.po b/lib/libalpm/po/it.po index b0b696a9..b3199464 100644 --- a/lib/libalpm/po/it.po +++ b/lib/libalpm/po/it.po @@ -3,13 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Dan McGee , 2011. -# Giovanni Scafora , 2011-2013. +# Dan McGee , 2011 +# Giovanni Scafora , 2011-2013 msgid "" msgstr "" "Project-Id-Version: Arch Linux Pacman package manager\n" "Report-Msgid-Bugs-To: http://bugs.archlinux.org/index.php?project=3\n" -"POT-Creation-Date: 2013-03-10 13:00+1000\n" +"POT-Creation-Date: 2013-04-30 21:18+1000\n" "PO-Revision-Date: 2013-03-15 03:06+0000\n" "Last-Translator: allanmcrae \n" "Language-Team: Italian (http://www.transifex.com/projects/p/archlinux-pacman/" diff --git a/lib/libalpm/po/ja.po b/lib/libalpm/po/ja.po index 98f21df2..c376bd63 100644 --- a/lib/libalpm/po/ja.po +++ b/lib/libalpm/po/ja.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: Arch Linux Pacman package manager\n" "Report-Msgid-Bugs-To: http://bugs.archlinux.org/index.php?project=3\n" -"POT-Creation-Date: 2013-03-10 13:00+1000\n" -"PO-Revision-Date: 2013-03-26 17:49+0000\n" +"POT-Creation-Date: 2013-04-30 21:18+1000\n" +"PO-Revision-Date: 2013-04-05 15:22+0000\n" "Last-Translator: kusakata \n" "Language-Team: Japanese (http://www.transifex.com/projects/p/archlinux-" "pacman/language/ja/)\n" @@ -84,7 +84,7 @@ msgstr "作業ディレクトリを復帰できませんでした (%s)\n" #, c-format msgid "problem occurred while upgrading %s\n" -msgstr "アップグレード中に問題が発生しました %s\n" +msgstr "更新中に問題が発生しました %s\n" #, c-format msgid "problem occurred while installing %s\n" @@ -92,7 +92,7 @@ msgstr "インストール中に問題が発生しました %s\n" #, c-format msgid "could not update database entry %s-%s\n" -msgstr "データベースエントリ %s-%s をアップデートできませんでした\n" +msgstr "データベースエントリ %s-%s を更新できませんでした\n" #, c-format msgid "could not add entry '%s' in cache\n" @@ -337,7 +337,7 @@ msgstr "データベースのバージョンが間違っています" #, c-format msgid "could not update database" -msgstr "データベースをアップデートできませんでした" +msgstr "データベースを更新できませんでした" #, c-format msgid "could not remove database entry" @@ -509,7 +509,7 @@ msgstr "キャッシュからエントリ '%s' を削除できませんでした #, c-format msgid "%s: ignoring package upgrade (%s => %s)\n" -msgstr "%s: パッケージのアップグレードを無視 (%s => %s)\n" +msgstr "%s: パッケージの更新を無視 (%s => %s)\n" #, c-format msgid "%s: ignoring package downgrade (%s => %s)\n" diff --git a/lib/libalpm/po/kk.po b/lib/libalpm/po/kk.po index c6cbd4a0..ab42bfa2 100644 --- a/lib/libalpm/po/kk.po +++ b/lib/libalpm/po/kk.po @@ -3,13 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Baurzhan Muftakhidinov , 2011. -# Dan McGee , 2011. +# Baurzhan Muftakhidinov , 2011 +# Dan McGee , 2011 msgid "" msgstr "" "Project-Id-Version: Arch Linux Pacman package manager\n" "Report-Msgid-Bugs-To: http://bugs.archlinux.org/index.php?project=3\n" -"POT-Creation-Date: 2013-03-10 13:00+1000\n" +"POT-Creation-Date: 2013-04-30 21:18+1000\n" "PO-Revision-Date: 2013-03-10 03:10+0000\n" "Last-Translator: allanmcrae \n" "Language-Team: Kazakh (http://www.transifex.com/projects/p/archlinux-pacman/" diff --git a/lib/libalpm/po/ko.po b/lib/libalpm/po/ko.po index 06c56caa..a124f31e 100644 --- a/lib/libalpm/po/ko.po +++ b/lib/libalpm/po/ko.po @@ -3,14 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Sung jin Gang <>, 2012-2013. +# ujuc Gang , 2012-2013 msgid "" msgstr "" "Project-Id-Version: Arch Linux Pacman package manager\n" "Report-Msgid-Bugs-To: http://bugs.archlinux.org/index.php?project=3\n" -"POT-Creation-Date: 2013-03-10 13:00+1000\n" +"POT-Creation-Date: 2013-04-30 21:18+1000\n" "PO-Revision-Date: 2013-03-15 18:12+0000\n" -"Last-Translator: Sungjin Gang \n" +"Last-Translator: ujuc Gang \n" "Language-Team: Korean (http://www.transifex.com/projects/p/archlinux-pacman/" "language/ko/)\n" "Language: ko\n" diff --git a/lib/libalpm/po/libalpm.pot b/lib/libalpm/po/libalpm.pot index caf6da13..8bdcb714 100644 --- a/lib/libalpm/po/libalpm.pot +++ b/lib/libalpm/po/libalpm.pot @@ -6,9 +6,9 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: pacman 4.1.0rc1\n" +"Project-Id-Version: pacman 4.1.0\n" "Report-Msgid-Bugs-To: http://bugs.archlinux.org/index.php?project=3\n" -"POT-Creation-Date: 2013-03-10 13:00+1000\n" +"POT-Creation-Date: 2013-04-30 21:18+1000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/lib/libalpm/po/lt.po b/lib/libalpm/po/lt.po index 1205044d..83028afe 100644 --- a/lib/libalpm/po/lt.po +++ b/lib/libalpm/po/lt.po @@ -3,16 +3,16 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Algimantas Margevičius , 2013. -# Algimantas Margevičius , 2011. -# Algimantas Margevičius , 2011-2012. -# toofishes , 2011. +# Algimantas Margevičius , 2013 +# Algimantas Margevičius , 2011 +# Algimantas Margevičius , 2011-2012 +# Dan McGee , 2011 msgid "" msgstr "" "Project-Id-Version: Arch Linux Pacman package manager\n" "Report-Msgid-Bugs-To: http://bugs.archlinux.org/index.php?project=3\n" -"POT-Creation-Date: 2013-03-10 13:00+1000\n" -"PO-Revision-Date: 2013-03-17 05:58+0000\n" +"POT-Creation-Date: 2013-04-30 21:18+1000\n" +"PO-Revision-Date: 2013-04-28 08:38+0000\n" "Last-Translator: Algimantas Margevičius \n" "Language-Team: Lithuanian (http://www.transifex.com/projects/p/archlinux-" "pacman/language/lt/)\n" diff --git a/lib/libalpm/po/nb.po b/lib/libalpm/po/nb.po index 41324c23..17b048a2 100644 --- a/lib/libalpm/po/nb.po +++ b/lib/libalpm/po/nb.po @@ -3,13 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Alexander Rødseth , 2011. -# Jon Gjengset , 2011,2013. +# Alexander Rødseth , 2011 +# Jon Gjengset , 2011,2013 msgid "" msgstr "" "Project-Id-Version: Arch Linux Pacman package manager\n" "Report-Msgid-Bugs-To: http://bugs.archlinux.org/index.php?project=3\n" -"POT-Creation-Date: 2013-03-10 13:00+1000\n" +"POT-Creation-Date: 2013-04-30 21:18+1000\n" "PO-Revision-Date: 2013-03-10 10:18+0000\n" "Last-Translator: Jon Gjengset \n" "Language-Team: Norwegian Bokmål (http://www.transifex.com/projects/p/" diff --git a/lib/libalpm/po/nl.po b/lib/libalpm/po/nl.po index 4ab6c90a..cafb5bf4 100644 --- a/lib/libalpm/po/nl.po +++ b/lib/libalpm/po/nl.po @@ -3,12 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2011. +# swilkens , 2011 msgid "" msgstr "" "Project-Id-Version: Arch Linux Pacman package manager\n" "Report-Msgid-Bugs-To: http://bugs.archlinux.org/index.php?project=3\n" -"POT-Creation-Date: 2013-03-10 13:00+1000\n" +"POT-Creation-Date: 2013-04-30 21:18+1000\n" "PO-Revision-Date: 2013-03-10 03:10+0000\n" "Last-Translator: allanmcrae \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/archlinux-pacman/" diff --git a/lib/libalpm/po/pl.po b/lib/libalpm/po/pl.po index 750f7ed7..834738f4 100644 --- a/lib/libalpm/po/pl.po +++ b/lib/libalpm/po/pl.po @@ -3,13 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Bartek Piotrowski , 2011. -# , 2013. +# Bartek Piotrowski , 2011 +# Kwpolska , 2013 msgid "" msgstr "" "Project-Id-Version: Arch Linux Pacman package manager\n" "Report-Msgid-Bugs-To: http://bugs.archlinux.org/index.php?project=3\n" -"POT-Creation-Date: 2013-03-10 13:00+1000\n" +"POT-Creation-Date: 2013-04-30 21:18+1000\n" "PO-Revision-Date: 2013-03-23 10:34+0000\n" "Last-Translator: Kwpolska \n" "Language-Team: Polish (http://www.transifex.com/projects/p/archlinux-pacman/" diff --git a/lib/libalpm/po/pt.po b/lib/libalpm/po/pt.po index ef1a951c..c543c55e 100644 --- a/lib/libalpm/po/pt.po +++ b/lib/libalpm/po/pt.po @@ -3,12 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Gaspar Santos , 2011. +# Gaspar Santos , 2011 msgid "" msgstr "" "Project-Id-Version: Arch Linux Pacman package manager\n" "Report-Msgid-Bugs-To: http://bugs.archlinux.org/index.php?project=3\n" -"POT-Creation-Date: 2013-03-10 13:00+1000\n" +"POT-Creation-Date: 2013-04-30 21:18+1000\n" "PO-Revision-Date: 2013-03-10 03:10+0000\n" "Last-Translator: allanmcrae \n" "Language-Team: Portuguese (http://www.transifex.com/projects/p/archlinux-" diff --git a/lib/libalpm/po/pt_BR.po b/lib/libalpm/po/pt_BR.po index 140d9749..4e4cdd80 100644 --- a/lib/libalpm/po/pt_BR.po +++ b/lib/libalpm/po/pt_BR.po @@ -3,16 +3,16 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# ambaratti , 2011. -# Dan McGee , 2011. -# Rafael Ferreira , 2012. -# Rafael , 2011. -# Sandro , 2011. +# ambaratti , 2011 +# Dan McGee , 2011 +# Rafael Ferreira , 2012 +# Rafael Ferreira , 2011 +# Sandro , 2011 msgid "" msgstr "" "Project-Id-Version: Arch Linux Pacman package manager\n" "Report-Msgid-Bugs-To: http://bugs.archlinux.org/index.php?project=3\n" -"POT-Creation-Date: 2013-03-10 13:00+1000\n" +"POT-Creation-Date: 2013-04-30 21:18+1000\n" "PO-Revision-Date: 2013-03-15 03:03+0000\n" "Last-Translator: allanmcrae \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/" diff --git a/lib/libalpm/po/ro.po b/lib/libalpm/po/ro.po index 1dce56ad..1de0a259 100644 --- a/lib/libalpm/po/ro.po +++ b/lib/libalpm/po/ro.po @@ -3,16 +3,16 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Arthur , 2013. -# cantabile , 2011. -# Dan McGee , 2011. -# Ionut Biru , 2011. -# Mihai Coman , 2011,2013. +# roentgen , 2013 +# cantabile , 2011 +# Dan McGee , 2011 +# Ionut Biru , 2011 +# Mihai Coman , 2011,2013 msgid "" msgstr "" "Project-Id-Version: Arch Linux Pacman package manager\n" "Report-Msgid-Bugs-To: http://bugs.archlinux.org/index.php?project=3\n" -"POT-Creation-Date: 2013-03-10 13:00+1000\n" +"POT-Creation-Date: 2013-04-30 21:18+1000\n" "PO-Revision-Date: 2013-03-17 18:50+0000\n" "Last-Translator: Mihai Coman \n" "Language-Team: Romanian (http://www.transifex.com/projects/p/archlinux-" diff --git a/lib/libalpm/po/ru.po b/lib/libalpm/po/ru.po index da9a02d8..dc1b6319 100644 --- a/lib/libalpm/po/ru.po +++ b/lib/libalpm/po/ru.po @@ -3,17 +3,18 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Dan McGee , 2011. -# Ivan Yurasov , 2011. -# partizan , 2011. -# , 2012. +# Dan McGee , 2011 +# Ivan Yurasov , 2011 +# partizan , 2011 +# kyak , 2013 +# partizan , 2012 msgid "" msgstr "" "Project-Id-Version: Arch Linux Pacman package manager\n" "Report-Msgid-Bugs-To: http://bugs.archlinux.org/index.php?project=3\n" -"POT-Creation-Date: 2013-03-10 13:00+1000\n" -"PO-Revision-Date: 2013-03-10 03:10+0000\n" -"Last-Translator: allanmcrae \n" +"POT-Creation-Date: 2013-04-30 21:18+1000\n" +"PO-Revision-Date: 2013-04-19 17:08+0000\n" +"Last-Translator: kyak \n" "Language-Team: Russian (http://www.transifex.com/projects/p/archlinux-pacman/" "language/ru/)\n" "Language: ru\n" @@ -105,7 +106,7 @@ msgstr "не удалось добавить запись '%s' в кэш\n" #, c-format msgid "error while reading file %s: %s\n" -msgstr "" +msgstr "ошибка чтения файла %s: %s\n" #, c-format msgid "removing invalid database: %s\n" @@ -139,7 +140,7 @@ msgstr "" #, c-format msgid "unknown validation type for package %s: %s\n" -msgstr "" +msgstr "неизвестный тип валидации для пакета %s: %s\n" #, c-format msgid "could not create directory %s: %s\n" @@ -167,11 +168,11 @@ msgstr "отсутствуют метаданные пакета в %s\n" #, c-format msgid "failed to read signature file: %s\n" -msgstr "" +msgstr "не удалось прочитать файл с подписью: %s\n" #, c-format msgid "required key missing from keyring\n" -msgstr "" +msgstr "требуемый ключ отсутствует в цепочке ключей\n" #, c-format msgid "removing invalid file: %s\n" @@ -215,7 +216,7 @@ msgstr "не удалось получить информацию о файло #, c-format msgid "could not open file: %s: %s\n" -msgstr "" +msgstr "не удалось открыть файл %s: %s\n" #, c-format msgid "could not get filesystem information\n" @@ -235,7 +236,7 @@ msgstr "не удалось определить точку монтирован #, c-format msgid "could not determine cachedir mount point %s\n" -msgstr "" +msgstr "для cachedir не удалось определить точку монтирования %s\n" #, c-format msgid "could not determine root mount point %s\n" @@ -279,7 +280,7 @@ msgstr "неожиданная системная ошибка" #, c-format msgid "permission denied" -msgstr "" +msgstr "доступ запрещен" #, c-format msgid "could not find or read file" @@ -499,7 +500,7 @@ msgstr "не удалось удалить файл '%s': %s\n" #, c-format msgid "could not open directory: %s: %s\n" -msgstr "" +msgstr "не удалось открыть каталог %s: %s\n" #, c-format msgid "cannot remove %s (%s)\n" @@ -547,11 +548,11 @@ msgstr "удаление '%s' из списка целей, поскольку #, c-format msgid "failed to retrieve some files\n" -msgstr "" +msgstr "не удалось получить некоторые файлы\n" #, c-format msgid "not enough free disk space\n" -msgstr "" +msgstr "недостаточно места на диске\n" #, c-format msgid "could not commit removal transaction\n" @@ -579,7 +580,7 @@ msgstr "не удалось удалить временный каталог %s\ #, c-format msgid "could not stat file %s: %s\n" -msgstr "" +msgstr "не удалось определить статус файла %s: %s\n" #, c-format msgid "could not create pipe (%s)\n" diff --git a/lib/libalpm/po/sk.po b/lib/libalpm/po/sk.po index 9b0dd719..aa7cae1c 100644 --- a/lib/libalpm/po/sk.po +++ b/lib/libalpm/po/sk.po @@ -3,15 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2013. -# Dušan Lago , 2011. -# , 2011. -# jose1711 , 2011. +# archetyp , 2013 +# Dušan Lago , 2011 +# Jose Riha , 2011 +# Jose Riha , 2011 msgid "" msgstr "" "Project-Id-Version: Arch Linux Pacman package manager\n" "Report-Msgid-Bugs-To: http://bugs.archlinux.org/index.php?project=3\n" -"POT-Creation-Date: 2013-03-10 13:00+1000\n" +"POT-Creation-Date: 2013-04-30 21:18+1000\n" "PO-Revision-Date: 2013-03-17 08:00+0000\n" "Last-Translator: archetyp \n" "Language-Team: Slovak (http://www.transifex.com/projects/p/archlinux-pacman/" diff --git a/lib/libalpm/po/sl.po b/lib/libalpm/po/sl.po index ebb466e3..f31353fd 100644 --- a/lib/libalpm/po/sl.po +++ b/lib/libalpm/po/sl.po @@ -3,12 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2012. +# smlu , 2012 msgid "" msgstr "" "Project-Id-Version: Arch Linux Pacman package manager\n" "Report-Msgid-Bugs-To: http://bugs.archlinux.org/index.php?project=3\n" -"POT-Creation-Date: 2013-03-10 13:00+1000\n" +"POT-Creation-Date: 2013-04-30 21:18+1000\n" "PO-Revision-Date: 2013-03-10 03:10+0000\n" "Last-Translator: allanmcrae \n" "Language-Team: Slovenian (http://www.transifex.com/projects/p/archlinux-" diff --git a/lib/libalpm/po/sr.po b/lib/libalpm/po/sr.po index fed8fe4e..76cb93cc 100644 --- a/lib/libalpm/po/sr.po +++ b/lib/libalpm/po/sr.po @@ -3,13 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Mladen Pejaković , 2013. -# Slobodan Terzić , 2011. +# daimonion , 2013 +# Slobodan Terzić , 2011 msgid "" msgstr "" "Project-Id-Version: Arch Linux Pacman package manager\n" "Report-Msgid-Bugs-To: http://bugs.archlinux.org/index.php?project=3\n" -"POT-Creation-Date: 2013-03-10 13:00+1000\n" +"POT-Creation-Date: 2013-04-30 21:18+1000\n" "PO-Revision-Date: 2013-03-11 20:26+0000\n" "Last-Translator: daimonion \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/archlinux-pacman/" diff --git a/lib/libalpm/po/sr@latin.po b/lib/libalpm/po/sr@latin.po index 7aa05b74..02531b75 100644 --- a/lib/libalpm/po/sr@latin.po +++ b/lib/libalpm/po/sr@latin.po @@ -3,13 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Mladen Pejaković , 2013. -# Slobodan Terzić , 2011. +# daimonion , 2013 +# Slobodan Terzić , 2011 msgid "" msgstr "" "Project-Id-Version: Arch Linux Pacman package manager\n" "Report-Msgid-Bugs-To: http://bugs.archlinux.org/index.php?project=3\n" -"POT-Creation-Date: 2013-03-10 13:00+1000\n" +"POT-Creation-Date: 2013-04-30 21:18+1000\n" "PO-Revision-Date: 2013-03-11 20:26+0000\n" "Last-Translator: daimonion \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/" diff --git a/lib/libalpm/po/sv.po b/lib/libalpm/po/sv.po index a3ff5e91..3ac94637 100644 --- a/lib/libalpm/po/sv.po +++ b/lib/libalpm/po/sv.po @@ -3,12 +3,12 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# , 2011. +# , 2011 msgid "" msgstr "" "Project-Id-Version: Arch Linux Pacman package manager\n" "Report-Msgid-Bugs-To: http://bugs.archlinux.org/index.php?project=3\n" -"POT-Creation-Date: 2013-03-10 13:00+1000\n" +"POT-Creation-Date: 2013-04-30 21:18+1000\n" "PO-Revision-Date: 2013-03-10 03:10+0000\n" "Last-Translator: allanmcrae \n" "Language-Team: Swedish (http://www.transifex.com/projects/p/archlinux-pacman/" diff --git a/lib/libalpm/po/tr.po b/lib/libalpm/po/tr.po index fa6fd3d9..6668a5a4 100644 --- a/lib/libalpm/po/tr.po +++ b/lib/libalpm/po/tr.po @@ -3,14 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Atilla Öntaş , 2011. -# Dan McGee , 2011. -# Samed Beyribey , 2011,2013. +# Atilla Öntaş , 2011 +# Dan McGee , 2011 +# Samed Beyribey , 2011,2013 msgid "" msgstr "" "Project-Id-Version: Arch Linux Pacman package manager\n" "Report-Msgid-Bugs-To: http://bugs.archlinux.org/index.php?project=3\n" -"POT-Creation-Date: 2013-03-10 13:00+1000\n" +"POT-Creation-Date: 2013-04-30 21:18+1000\n" "PO-Revision-Date: 2013-03-10 11:24+0000\n" "Last-Translator: Samed Beyribey \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/archlinux-pacman/" diff --git a/lib/libalpm/po/uk.po b/lib/libalpm/po/uk.po index b120663d..3cee20d1 100644 --- a/lib/libalpm/po/uk.po +++ b/lib/libalpm/po/uk.po @@ -3,13 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Yarema aka Knedlyk , 2011-2013. -# Данило Коростіль , 2011. +# Yarema aka Knedlyk , 2011-2013 +# Данило Коростіль , 2011 msgid "" msgstr "" "Project-Id-Version: Arch Linux Pacman package manager\n" "Report-Msgid-Bugs-To: http://bugs.archlinux.org/index.php?project=3\n" -"POT-Creation-Date: 2013-03-10 13:00+1000\n" +"POT-Creation-Date: 2013-04-30 21:18+1000\n" "PO-Revision-Date: 2013-03-11 22:02+0000\n" "Last-Translator: Yarema aka Knedlyk \n" "Language-Team: Ukrainian (http://www.transifex.com/projects/p/archlinux-" diff --git a/lib/libalpm/po/zh_CN.po b/lib/libalpm/po/zh_CN.po index d1df5a01..67785b39 100644 --- a/lib/libalpm/po/zh_CN.po +++ b/lib/libalpm/po/zh_CN.po @@ -3,15 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Dan McGee , 2011. -# leonfeng , 2011. -# , 2013. -# 甘 露 , 2011. +# Dan McGee , 2011 +# leonfeng , 2011 +# mytbk , 2013 +# 甘 露 , 2011 msgid "" msgstr "" "Project-Id-Version: Arch Linux Pacman package manager\n" "Report-Msgid-Bugs-To: http://bugs.archlinux.org/index.php?project=3\n" -"POT-Creation-Date: 2013-03-10 13:00+1000\n" +"POT-Creation-Date: 2013-04-30 21:18+1000\n" "PO-Revision-Date: 2013-03-10 05:41+0000\n" "Last-Translator: mytbk \n" "Language-Team: Chinese (China) (http://www.transifex.com/projects/p/" diff --git a/lib/libalpm/po/zh_TW.po b/lib/libalpm/po/zh_TW.po index b4f3858d..1c446198 100644 --- a/lib/libalpm/po/zh_TW.po +++ b/lib/libalpm/po/zh_TW.po @@ -3,13 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Cheng-Chia Tseng , 2012. -# , 2011-2012. +# Cheng-Chia Tseng , 2012 +# dlin , 2011-2012 msgid "" msgstr "" "Project-Id-Version: Arch Linux Pacman package manager\n" "Report-Msgid-Bugs-To: http://bugs.archlinux.org/index.php?project=3\n" -"POT-Creation-Date: 2013-03-10 13:00+1000\n" +"POT-Creation-Date: 2013-04-30 21:18+1000\n" "PO-Revision-Date: 2013-03-10 03:10+0000\n" "Last-Translator: allanmcrae \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/" -- cgit v1.2.3-24-g4f1b From 35289bc17ebdc08e3870fa70e4342c4af81be7af Mon Sep 17 00:00:00 2001 From: Allan McRae Date: Tue, 7 May 2013 11:39:01 +1000 Subject: More translation updates Signed-off-by: Allan McRae --- lib/libalpm/po/ar.po | 2 + lib/libalpm/po/ca.po | 1 + lib/libalpm/po/cs.po | 1 + lib/libalpm/po/da.po | 31 +++--- lib/libalpm/po/de.po | 3 +- lib/libalpm/po/el.po | 1 + lib/libalpm/po/es.po | 1 + lib/libalpm/po/fi.po | 2 +- lib/libalpm/po/fr.po | 1 + lib/libalpm/po/gl.po | 1 + lib/libalpm/po/hu.po | 2 +- lib/libalpm/po/id.po | 1 + lib/libalpm/po/ko.po | 4 +- lib/libalpm/po/lt.po | 1 + lib/libalpm/po/nl.po | 252 +++++++++++++++++++++++---------------------- lib/libalpm/po/pl.po | 1 + lib/libalpm/po/pt_BR.po | 33 +++--- lib/libalpm/po/ro.po | 1 + lib/libalpm/po/ru.po | 3 +- lib/libalpm/po/sk.po | 2 + lib/libalpm/po/sl.po | 1 + lib/libalpm/po/sr.po | 28 ++--- lib/libalpm/po/sr@latin.po | 28 ++--- lib/libalpm/po/zh_CN.po | 1 + 24 files changed, 215 insertions(+), 187 deletions(-) (limited to 'lib') diff --git a/lib/libalpm/po/ar.po b/lib/libalpm/po/ar.po index efbf3832..061886fc 100644 --- a/lib/libalpm/po/ar.po +++ b/lib/libalpm/po/ar.po @@ -5,6 +5,8 @@ # Translators: # kraim <7kraim@gmail.com>, 2013 # abad <0otibi0@gmail.com>, 2013 +# kraim <7kraim@gmail.com>, 2013 +# abad <0otibi0@gmail.com>, 2013 msgid "" msgstr "" "Project-Id-Version: Arch Linux Pacman package manager\n" diff --git a/lib/libalpm/po/ca.po b/lib/libalpm/po/ca.po index 8d3769a3..9154c1e4 100644 --- a/lib/libalpm/po/ca.po +++ b/lib/libalpm/po/ca.po @@ -6,6 +6,7 @@ # Dan McGee , 2011 # Hector Mtz-Seara , 2011 # jpatufet , 2013 +# jpatufet , 2011,2013 # jpatufet , 2011 msgid "" msgstr "" diff --git a/lib/libalpm/po/cs.po b/lib/libalpm/po/cs.po index 397573b2..4a2afcfd 100644 --- a/lib/libalpm/po/cs.po +++ b/lib/libalpm/po/cs.po @@ -6,6 +6,7 @@ # Dan McGee , 2011 # David Kolibáč , 2011 # mmm , 2011 +# mmm , 2011 # Vojtěch Gondžala , 2011,2013 msgid "" msgstr "" diff --git a/lib/libalpm/po/da.po b/lib/libalpm/po/da.po index 484e4132..719a1c93 100644 --- a/lib/libalpm/po/da.po +++ b/lib/libalpm/po/da.po @@ -4,14 +4,15 @@ # # Translators: # jakobw , 2012 -# Joe Hansen , 2011 +# jakobw , 2012 +# Joe Hansen , 2011,2013 msgid "" msgstr "" "Project-Id-Version: Arch Linux Pacman package manager\n" "Report-Msgid-Bugs-To: http://bugs.archlinux.org/index.php?project=3\n" "POT-Creation-Date: 2013-04-30 21:18+1000\n" -"PO-Revision-Date: 2013-03-10 03:10+0000\n" -"Last-Translator: allanmcrae \n" +"PO-Revision-Date: 2013-05-01 14:04+0000\n" +"Last-Translator: Joe Hansen \n" "Language-Team: Danish (http://www.transifex.com/projects/p/archlinux-pacman/" "language/da/)\n" "Language: da\n" @@ -98,11 +99,11 @@ msgstr "kunne ikke opdatere databasepunkt %s-%s\n" #, c-format msgid "could not add entry '%s' in cache\n" -msgstr "kunne ikke tilføje punkt '%s' i cache\n" +msgstr "kunne ikke tilføje punkt »%s« i cache\n" #, c-format msgid "error while reading file %s: %s\n" -msgstr "" +msgstr "der opstod en fejl under læsning af fil %s: %s\n" #, c-format msgid "removing invalid database: %s\n" @@ -134,7 +135,7 @@ msgstr "%s-database er inkonsistent: forskellige versioner på pakke %s\n" #, c-format msgid "unknown validation type for package %s: %s\n" -msgstr "" +msgstr "ukendt valideringstype for pakke %s: %s\n" #, c-format msgid "could not create directory %s: %s\n" @@ -162,11 +163,11 @@ msgstr "manglende pakkemetadata i %s\n" #, c-format msgid "failed to read signature file: %s\n" -msgstr "" +msgstr "kunne ikke læse underskriftfil: %s\n" #, c-format msgid "required key missing from keyring\n" -msgstr "" +msgstr "krævede nøgle mangler fra nøglering\n" #, c-format msgid "removing invalid file: %s\n" @@ -210,7 +211,7 @@ msgstr "kunne ikke hente filsysteminformation for %s: %s\n" #, c-format msgid "could not open file: %s: %s\n" -msgstr "" +msgstr "kunne ikke åbne fil: %s: %s\n" #, c-format msgid "could not get filesystem information\n" @@ -230,7 +231,7 @@ msgstr "kunne ikke bestemme monteringspunkter for filsystem\n" #, c-format msgid "could not determine cachedir mount point %s\n" -msgstr "" +msgstr "kunne ikke bestemme monteringspunkt for cachedir %s\n" #, c-format msgid "could not determine root mount point %s\n" @@ -274,7 +275,7 @@ msgstr "uventet systemfejl" #, c-format msgid "permission denied" -msgstr "" +msgstr "tilladelse nægtet" #, c-format msgid "could not find or read file" @@ -494,7 +495,7 @@ msgstr "kan ikke fjerne fil »%s«:%s\n" #, c-format msgid "could not open directory: %s: %s\n" -msgstr "" +msgstr "kunne ikke åbne mappe: %s: %s\n" #, c-format msgid "cannot remove %s (%s)\n" @@ -542,11 +543,11 @@ msgstr "fjerner »%s« fra målliste da det konflikter med »%s«\n" #, c-format msgid "failed to retrieve some files\n" -msgstr "" +msgstr "kunne ikke indhente nogle filer\n" #, c-format msgid "not enough free disk space\n" -msgstr "" +msgstr "ikke nok ledig diskplads\n" #, c-format msgid "could not commit removal transaction\n" @@ -574,7 +575,7 @@ msgstr "kunne ikke fjerne tmpdir %s\n" #, c-format msgid "could not stat file %s: %s\n" -msgstr "" +msgstr "kunne ikke køre (stat) fil %s: %s\n" #, c-format msgid "could not create pipe (%s)\n" diff --git a/lib/libalpm/po/de.po b/lib/libalpm/po/de.po index 33971426..f96b59ed 100644 --- a/lib/libalpm/po/de.po +++ b/lib/libalpm/po/de.po @@ -4,6 +4,7 @@ # # Translators: # Dan McGee , 2011 +# mar77i , 2013 # Matthias Gorissen , 2011 # mar77i , 2013 msgid "" @@ -11,7 +12,7 @@ msgstr "" "Project-Id-Version: Arch Linux Pacman package manager\n" "Report-Msgid-Bugs-To: http://bugs.archlinux.org/index.php?project=3\n" "POT-Creation-Date: 2013-04-30 21:18+1000\n" -"PO-Revision-Date: 2013-03-15 16:04+0000\n" +"PO-Revision-Date: 2013-05-02 20:40+0000\n" "Last-Translator: Matthias Gorissen \n" "Language-Team: German (http://www.transifex.com/projects/p/archlinux-pacman/" "language/de/)\n" diff --git a/lib/libalpm/po/el.po b/lib/libalpm/po/el.po index b4a74000..ab7b511e 100644 --- a/lib/libalpm/po/el.po +++ b/lib/libalpm/po/el.po @@ -4,6 +4,7 @@ # # Translators: # axil Pι , 2013 +# axil Pι , 2013 # Christos Nouskas , 2011,2013 # Dan McGee , 2011 # Christos Nouskas , 2011 diff --git a/lib/libalpm/po/es.po b/lib/libalpm/po/es.po index 2e6769d6..b7d1ef25 100644 --- a/lib/libalpm/po/es.po +++ b/lib/libalpm/po/es.po @@ -7,6 +7,7 @@ # Dan McGee , 2011 # Juan Antonio Cánovas Pérez , 2011 # juantascon , 2011 +# juantascon , 2011 # neiko , 2011 msgid "" msgstr "" diff --git a/lib/libalpm/po/fi.po b/lib/libalpm/po/fi.po index cb074bef..85e57732 100644 --- a/lib/libalpm/po/fi.po +++ b/lib/libalpm/po/fi.po @@ -8,7 +8,7 @@ # Jesse Jaara , 2011 # Larso , 2013 # Larso , 2011 -# Larso , 2011 +# Larso , 2011,2013 # Lasse Liehu , 2011,2013 msgid "" msgstr "" diff --git a/lib/libalpm/po/fr.po b/lib/libalpm/po/fr.po index 8c5682c2..581952bb 100644 --- a/lib/libalpm/po/fr.po +++ b/lib/libalpm/po/fr.po @@ -4,6 +4,7 @@ # # Translators: # alub , 2012 +# alub , 2012 # Dan McGee , 2011 # jiehong , 2011-2012 # shining , 2011 diff --git a/lib/libalpm/po/gl.po b/lib/libalpm/po/gl.po index bc0ca43b..e6bb86e5 100644 --- a/lib/libalpm/po/gl.po +++ b/lib/libalpm/po/gl.po @@ -5,6 +5,7 @@ # Translators: # faidoc , 2013 # faidoc , 2013 +# faidoc , 2013 msgid "" msgstr "" "Project-Id-Version: Arch Linux Pacman package manager\n" diff --git a/lib/libalpm/po/hu.po b/lib/libalpm/po/hu.po index 395ab6a1..3611f368 100644 --- a/lib/libalpm/po/hu.po +++ b/lib/libalpm/po/hu.po @@ -5,7 +5,7 @@ # Translators: # György Balló , 2011 # ngaba , 2013 -# ngaba , 2011 +# ngaba , 2011,2013 msgid "" msgstr "" "Project-Id-Version: Arch Linux Pacman package manager\n" diff --git a/lib/libalpm/po/id.po b/lib/libalpm/po/id.po index 6f24eb97..cfcf1b02 100644 --- a/lib/libalpm/po/id.po +++ b/lib/libalpm/po/id.po @@ -4,6 +4,7 @@ # # Translators: # andjeng , 2013 +# andjeng , 2013 msgid "" msgstr "" "Project-Id-Version: Arch Linux Pacman package manager\n" diff --git a/lib/libalpm/po/ko.po b/lib/libalpm/po/ko.po index a124f31e..7a27fe32 100644 --- a/lib/libalpm/po/ko.po +++ b/lib/libalpm/po/ko.po @@ -3,14 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# ujuc Gang , 2012-2013 +# Sungjin Gang , 2012-2013 msgid "" msgstr "" "Project-Id-Version: Arch Linux Pacman package manager\n" "Report-Msgid-Bugs-To: http://bugs.archlinux.org/index.php?project=3\n" "POT-Creation-Date: 2013-04-30 21:18+1000\n" "PO-Revision-Date: 2013-03-15 18:12+0000\n" -"Last-Translator: ujuc Gang \n" +"Last-Translator: Sungjin Gang \n" "Language-Team: Korean (http://www.transifex.com/projects/p/archlinux-pacman/" "language/ko/)\n" "Language: ko\n" diff --git a/lib/libalpm/po/lt.po b/lib/libalpm/po/lt.po index 83028afe..b537f3fc 100644 --- a/lib/libalpm/po/lt.po +++ b/lib/libalpm/po/lt.po @@ -7,6 +7,7 @@ # Algimantas Margevičius , 2011 # Algimantas Margevičius , 2011-2012 # Dan McGee , 2011 +# Dan McGee , 2011 msgid "" msgstr "" "Project-Id-Version: Arch Linux Pacman package manager\n" diff --git a/lib/libalpm/po/nl.po b/lib/libalpm/po/nl.po index cafb5bf4..87f73340 100644 --- a/lib/libalpm/po/nl.po +++ b/lib/libalpm/po/nl.po @@ -4,13 +4,15 @@ # # Translators: # swilkens , 2011 +# swilkens , 2011 +# zenlord , 2013 msgid "" msgstr "" "Project-Id-Version: Arch Linux Pacman package manager\n" "Report-Msgid-Bugs-To: http://bugs.archlinux.org/index.php?project=3\n" "POT-Creation-Date: 2013-04-30 21:18+1000\n" -"PO-Revision-Date: 2013-03-10 03:10+0000\n" -"Last-Translator: allanmcrae \n" +"PO-Revision-Date: 2013-05-05 20:42+0000\n" +"Last-Translator: zenlord \n" "Language-Team: Dutch (http://www.transifex.com/projects/p/archlinux-pacman/" "language/nl/)\n" "Language: nl\n" @@ -29,7 +31,7 @@ msgstr "%s-%s is up to date -- opnieuw installeren\n" #, c-format msgid "downgrading package %s (%s => %s)\n" -msgstr "pakket neerwaarderen %s (%s => %s)\n" +msgstr "pakket %s wordt gedowngradet (%s => %s)\n" #, c-format msgid "warning given when extracting %s (%s)\n" @@ -37,21 +39,23 @@ msgstr "waarschuwing tijdens uitpakken van %s (%s)\n" #, c-format msgid "could not extract %s (%s)\n" -msgstr "kon %s (%s) niet uitpakken\n" +msgstr "kan %s (%s) niet uitpakken\n" #, c-format msgid "could not rename %s to %s (%s)\n" -msgstr "kon %s niet hernoemen als %s (%s)\n" +msgstr "kan %s niet hernoemen als %s (%s)\n" #, c-format msgid "" "directory permissions differ on %s\n" "filesystem: %o package: %o\n" msgstr "" +"rechten voor map %s verschillen\n" +"bestandssysteem: %o pakket: %o\n" #, c-format msgid "extract: not overwriting dir with file %s\n" -msgstr "uitpakken: overschrijf map niet met bestand %s\n" +msgstr "uitpakken: map wordt niet overschreven met bestand %s\n" #, c-format msgid "extract: symlink %s does not point to dir\n" @@ -59,131 +63,133 @@ msgstr "uitpakken: symbolische link %s verwijst niet naar een map\n" #, c-format msgid "%s saved as %s\n" -msgstr "%s is opgeslagen als %s\n" +msgstr "%s is opgeslaan als %s\n" #, c-format msgid "%s installed as %s\n" -msgstr "%s is geinstalleert als %s\n" +msgstr "%s is geïnstalleerd als %s\n" #, c-format msgid "extracting %s as %s.pacnew\n" -msgstr "%s word uitgepakt als %s.pacnew\n" +msgstr "%s wordt uitgepakt als %s.pacnew\n" #, c-format msgid "could not get current working directory\n" -msgstr "kon de huidige werkmap niet bepalen\n" +msgstr "kan de huidige werkmap niet bepalen\n" #, c-format msgid "could not change directory to %s (%s)\n" -msgstr "kon niet naar de map %s (%s) wisselen\n" +msgstr "kan niet naar de map %s (%s) wisselen\n" #, c-format msgid "could not restore working directory (%s)\n" -msgstr "kon de werkmap (%s) niet herstellen\n" +msgstr "kan werkmap (%s) niet terugzetten\n" #, c-format msgid "problem occurred while upgrading %s\n" -msgstr "probleem deed zich voor tijdens bijwerken van %s\n" +msgstr "probleem tijdens bijwerken van %s\n" #, c-format msgid "problem occurred while installing %s\n" -msgstr "probleem deed zich voor tijdens installatie van %s\n" +msgstr "probleem tijdens installatie van %s\n" #, c-format msgid "could not update database entry %s-%s\n" -msgstr "kon database ingang %s-%s niet bijwerken\n" +msgstr "kan database record %s-%s niet bijwerken\n" #, c-format msgid "could not add entry '%s' in cache\n" -msgstr "" +msgstr "kan '%s' niet toevoegen in cache\n" #, c-format msgid "error while reading file %s: %s\n" -msgstr "" +msgstr "fout tijdens lezen van bestand %s: %s\n" #, c-format msgid "removing invalid database: %s\n" -msgstr "verwijderen ongeldige database: %s\n" +msgstr "ongeldige database: %s wordt verwijderd\n" #, c-format msgid "invalid name for database entry '%s'\n" -msgstr "ongeldige gebruikersnaam voor database ingang '%s'\n" +msgstr "ongeldige naam voor database record '%s'\n" #, c-format msgid "duplicated database entry '%s'\n" -msgstr "database ingang gedupliceerd '%s'\n" +msgstr "database record '%s' gedupliceerd\n" #, c-format msgid "corrupted database entry '%s'\n" -msgstr "corrupte database ingang '%s'\n" +msgstr "database record '%s' corrupt\n" #, c-format msgid "could not open file %s: %s\n" -msgstr "kon het bestand %s: %s niet openen\n" +msgstr "kan bestand %s: %s niet openen\n" #, c-format msgid "%s database is inconsistent: name mismatch on package %s\n" -msgstr "%s database is tegenstrijdig: naam onjuist voor pakket %s\n" +msgstr "%s database is niet consistent: naam onjuist voor pakket %s\n" #, c-format msgid "%s database is inconsistent: version mismatch on package %s\n" -msgstr "%s database is tegenstrijdig: versie onjuist voor pakket %s\n" +msgstr "" +"%s database is niet consistent: versie onjuist voor pakket %s\n" +"\n" #, c-format msgid "unknown validation type for package %s: %s\n" -msgstr "" +msgstr "onbekend type van validatie voor pakket %s: %s\n" #, c-format msgid "could not create directory %s: %s\n" -msgstr "kon de map %s: %s niet aanmaken\n" +msgstr "kan map %s: %s niet aanmaken\n" #, c-format msgid "could not parse package description file in %s\n" -msgstr "kon het bestand met pakket beschrijving in %s niet verwerken\n" +msgstr "kan het bestand met pakket beschrijving in %s niet verwerken\n" #, c-format msgid "missing package name in %s\n" -msgstr "ontbrekende pakket naam in %s\n" +msgstr "ontbrekende pakketnaam in %s\n" #, c-format msgid "missing package version in %s\n" -msgstr "ontbrekende pakket versie in %s\n" +msgstr "ontbrekende pakketversie in %s\n" #, c-format msgid "error while reading package %s: %s\n" -msgstr "fout tijdens het lezen van pakket %s: %s\n" +msgstr "fout tijdens lezen van pakket %s: %s\n" #, c-format msgid "missing package metadata in %s\n" -msgstr "metagegevens ontbreken in %s\n" +msgstr "metagegevens van pakket ontbreken in %s\n" #, c-format msgid "failed to read signature file: %s\n" -msgstr "" +msgstr "fout tijdens lezen van handtekeningsbestand: %s\n" #, c-format msgid "required key missing from keyring\n" -msgstr "" +msgstr "vereiste sleutel ontbreekt in sleutelhanger\n" #, c-format msgid "removing invalid file: %s\n" -msgstr "verwijderen ongeldig bestand: %s\n" +msgstr "ongeldig bestand: %s wordt verwijderd\n" #, c-format msgid "could not remove lock file %s\n" -msgstr "kon het lock bestand %s niet verwijderen\n" +msgstr "kan het vergrendelbestand %s niet verwijderen\n" #, c-format msgid "could not parse package description file '%s' from db '%s'\n" -msgstr "" +msgstr "kan bestand met pakketbeschrijving '%s' uit db '%s' niet verwerken\n" #, c-format msgid "database path is undefined\n" -msgstr "database pad is niet gedefinieerd\n" +msgstr "database-pad is niet gedefinieerd\n" #, c-format msgid "dependency cycle detected:\n" -msgstr "afhankelijkheidscyclus ontdekt:\n" +msgstr "Cyclische afhankelijkheid ontdekt:\n" #, c-format msgid "%s will be removed after its %s dependency\n" @@ -195,49 +201,47 @@ msgstr "%s zal voor de afhankelijkheid %s worden geïnstalleerd\n" #, c-format msgid "ignoring package %s-%s\n" -msgstr "negeer pakket %s-%s\n" +msgstr "pakket %s-%s wordt genegeerd\n" #, c-format msgid "cannot resolve \"%s\", a dependency of \"%s\"\n" -msgstr "kon \"%s\" niet oplossen, een afhankelijkheid van \"%s\"\n" +msgstr "kan \"%s\", een afhankelijkheid van \"%s\", niet vinden\n" #, c-format msgid "could not get filesystem information for %s: %s\n" -msgstr "kon geen bestandssysteem informatie verkrijgen voor %s: %s\n" +msgstr "kan geen informatie van bestandssysteem krijgen voor %s: %s\n" #, c-format msgid "could not open file: %s: %s\n" -msgstr "" +msgstr "kan bestand niet openen: %s :%s\n" #, c-format msgid "could not get filesystem information\n" -msgstr "kon geen bestandssysteem informatie verkrijgen\n" +msgstr "kan geen informatie van bestandssysteem verkrijgen\n" #, c-format msgid "could not determine mount point for file %s\n" -msgstr "kon koppelpunt niet bepalen voor %s\n" +msgstr "kan koppelpunt niet bepalen voor bestand %s\n" #, c-format msgid "Partition %s too full: %jd blocks needed, %jd blocks free\n" -msgstr "" -"Partitie %s heeft te weinig ruimte: %jd blocks nodig, %jd blocks " -"beschikbaar\n" +msgstr "Partitie %s te vol: %jd blocks benodigd, %jd blocks beschikbaar\n" #, c-format msgid "could not determine filesystem mount points\n" -msgstr "kon bestandssysteem koppelpunten niet bepalen\n" +msgstr "kan koppelpunten voor het bestandssysteem niet bepalen\n" #, c-format msgid "could not determine cachedir mount point %s\n" -msgstr "" +msgstr "kan koppelpunt voor cachedir %s niet bepalen\n" #, c-format msgid "could not determine root mount point %s\n" -msgstr "kon root koppelpunt niet bepalen %s\n" +msgstr "kan koppelpunt voor root niet bepalen %s\n" #, c-format msgid "Partition %s is mounted read only\n" -msgstr "Partitie %s is alleen-lezen gekoppeld\n" +msgstr "Partitie %s is gekoppeld als alleen-lezen\n" #, c-format msgid "disk" @@ -253,63 +257,63 @@ msgstr "url '%s' is niet geldig\n" #, c-format msgid "failed retrieving file '%s' from %s : %s\n" -msgstr "kon het bestand '%s' niet ophalen van %s : %s\n" +msgstr "kan het bestand '%s' niet ophalen van %s : %s\n" #, c-format msgid "%s appears to be truncated: %jd/%jd bytes\n" -msgstr "%s is niet compleet: %jd/%jd bytes\n" +msgstr "%s werd onderbroken: %jd/%jd bytes\n" #, c-format msgid "failed to download %s\n" -msgstr "dowloaden mislukt %s\n" +msgstr "%s downloaden mislukt\n" #, c-format msgid "out of memory!" -msgstr "geen vrij geheugen beschikbaar!" +msgstr "onvoldoende geheugen beschikbaar!" #, c-format msgid "unexpected system error" -msgstr "overwachte systeemfout" +msgstr "onverwachte systeemfout" #, c-format msgid "permission denied" -msgstr "" +msgstr "toegang geweigerd" #, c-format msgid "could not find or read file" -msgstr "kon het bestand niet vinden of lezen" +msgstr "kan bestand niet vinden of lezen" #, c-format msgid "could not find or read directory" -msgstr "kon de map niet vinden of lezen" +msgstr "kan map niet vinden of lezen" #, c-format msgid "wrong or NULL argument passed" -msgstr "fout of NULL argument" +msgstr "fout of NULL argument ingegeven" #, c-format msgid "not enough free disk space" -msgstr "niet genoeg vrije schijfruimte" +msgstr "onvoldoende vrije schijfruimte" #, c-format msgid "library not initialized" -msgstr "bibliotheek niet geladen" +msgstr "bibliotheek niet geïnitialiseerd" #, c-format msgid "library already initialized" -msgstr "bibliotheek is al geladen" +msgstr "bibliotheek werd al geïnitialiseerd" #, c-format msgid "unable to lock database" -msgstr "kon de database niet afsluiten" +msgstr "kan database niet vergrendelen" #, c-format msgid "could not open database" -msgstr "kon de database niet openen" +msgstr "kan database niet openen" #, c-format msgid "could not create database" -msgstr "kon de database niet creëren" +msgstr "kan database niet aanmaken" #, c-format msgid "database not initialized" @@ -317,15 +321,15 @@ msgstr "database niet geïnitialiseerd" #, c-format msgid "database already registered" -msgstr "database is al geregistreerd" +msgstr "database werd al geregistreerd" #, c-format msgid "could not find database" -msgstr "kon database niet vinden" +msgstr "kan database niet vinden" #, c-format msgid "invalid or corrupted database" -msgstr "onjuiste of beschadigde database" +msgstr "ongeldige of corrupte database" #, c-format msgid "invalid or corrupted database (PGP signature)" @@ -333,27 +337,27 @@ msgstr "ongeldige of corrupte database (PGP handtekening)" #, c-format msgid "database is incorrect version" -msgstr "database versie is onjuist" +msgstr "database-versie is onjuist" #, c-format msgid "could not update database" -msgstr "kon database niet bijwerken" +msgstr "kan database niet bijwerken" #, c-format msgid "could not remove database entry" -msgstr "kon database ingang niet verwijderen" +msgstr "kan database record niet verwijderen" #, c-format msgid "invalid url for server" -msgstr "ongeldige URL voor opslagplaats" +msgstr "ongeldige URL voor server" #, c-format msgid "no servers configured for repository" -msgstr "geen server ingesteld voor opslagplaats" +msgstr "geen server ingesteld voor repository" #, c-format msgid "transaction already initialized" -msgstr "transactie is al geïnitialiseerd" +msgstr "transactie werd al geïnitialiseerd" #, c-format msgid "transaction not initialized" @@ -373,27 +377,27 @@ msgstr "transactie afgebroken" #, c-format msgid "operation not compatible with the transaction type" -msgstr "actie niet compatibel met het transactie type" +msgstr "actie niet compatibel met dit transactie-type" #, c-format msgid "transaction commit attempt when database is not locked" -msgstr "" +msgstr "poging om transactie te voltooien terwijl database niet vergrendeld is" #, c-format msgid "could not find or read package" -msgstr "kon pakket niet vinden of lezen" +msgstr "kan pakket niet vinden of lezen" #, c-format msgid "operation cancelled due to ignorepkg" -msgstr "bewerking geannuleerd vanwege ignorepkg" +msgstr "actie geannuleerd vanwege ignorepkg" #, c-format msgid "invalid or corrupted package" -msgstr "onjuist of beschadigd pakket" +msgstr "ongeldig of corrupt pakket" #, c-format msgid "invalid or corrupted package (checksum)" -msgstr "onjuist of beschadigd pakket (checksum)" +msgstr "ongeldig of corrupt pakket (checksum)" #, c-format msgid "invalid or corrupted package (PGP signature)" @@ -405,19 +409,19 @@ msgstr "kan pakketbestand niet openen" #, c-format msgid "cannot remove all files for package" -msgstr "kan niet alle bestanden van het pakket verwijderen" +msgstr "kan niet alle bestanden van pakket verwijderen" #, c-format msgid "package filename is not valid" -msgstr "pakket bestandsnaam is ongeldig" +msgstr "pakket-bestandsnaam is ongeldig" #, c-format msgid "package architecture is not valid" -msgstr "pakket architectuur is niet geldig" +msgstr "pakket-architectuur is ongeldig" #, c-format msgid "could not find repository for target" -msgstr "kon geen opslagplaats voor het doel vinden" +msgstr "kan geen repository voor het doel vinden" #, c-format msgid "missing PGP signature" @@ -433,23 +437,23 @@ msgstr "ongeldige of corrupte delta" #, c-format msgid "delta patch failed" -msgstr "delta patch mislukt" +msgstr "delta-patch mislukt" #, c-format msgid "could not satisfy dependencies" -msgstr "kon niet aan afhankelijkheden voldoen" +msgstr "kan niet alle afhankelijkheden voldoen" #, c-format msgid "conflicting dependencies" -msgstr "tegenstrijdige afhankelijkheden" +msgstr "conflicterende afhankelijkheden" #, c-format msgid "conflicting files" -msgstr "tegenstrijdige bestanden" +msgstr "conflicterende bestanden" #, c-format msgid "failed to retrieve some files" -msgstr "niet gelukt enkele bestanden op te halen" +msgstr "kon niet alle bestanden ophalen" #, c-format msgid "invalid regular expression" @@ -461,7 +465,7 @@ msgstr "libarchive fout" #, c-format msgid "download library error" -msgstr "download bibliotheek fout" +msgstr "download-bibliotheek fout" #, c-format msgid "gpgme error" @@ -469,7 +473,7 @@ msgstr "gpgme fout" #, c-format msgid "error invoking external downloader" -msgstr "fout bij het beroepen op een externe downloader" +msgstr "fout bij oproepen van externe downloader" #, c-format msgid "unexpected error" @@ -477,7 +481,7 @@ msgstr "onverwachte fout" #, c-format msgid "could not fully load metadata for package %s-%s\n" -msgstr "kon de metadata voor het pakket %s-%s niet volledig laden\n" +msgstr "kan de metadata voor het pakket %s-%s niet volledig laden\n" #, c-format msgid "could not find %s in database -- skipping\n" @@ -485,39 +489,39 @@ msgstr "kon %s niet in de database vinden -- overslaan\n" #, c-format msgid "removing %s from target list\n" -msgstr "%s verwijderen van doellijst\n" +msgstr "%s wordt verwijderd van doellijst\n" #, c-format msgid "cannot remove file '%s': %s\n" -msgstr "kan bestand niet verwijderen '%s': %s\n" +msgstr "kan bestand '%s': %s niet verwijderen\n" #, c-format msgid "could not open directory: %s: %s\n" -msgstr "" +msgstr "kan map niet openen: %s: %s\n" #, c-format msgid "cannot remove %s (%s)\n" -msgstr "kon %s (%s) niet verwijderen\n" +msgstr "kan %s (%s) niet verwijderen\n" #, c-format msgid "could not remove database entry %s-%s\n" -msgstr "kon database ingang %s-%s niet verwijderen\n" +msgstr "kan database-record %s-%s niet verwijderen\n" #, c-format msgid "could not remove entry '%s' from cache\n" -msgstr "kon de ingang '%s' niet uit de cache verwijderen\n" +msgstr "kan record '%s' niet uit de cache verwijderen\n" #, c-format msgid "%s: ignoring package upgrade (%s => %s)\n" -msgstr "%s: negeren pakket upgrade (%s => %s)\n" +msgstr "%s: pakket-upgrade (%s => %s) wordt genegeerd\n" #, c-format msgid "%s: ignoring package downgrade (%s => %s)\n" -msgstr "%s: negeren pakket downgrade (%s => %s)\n" +msgstr "%s: pakket-downgrade (%s => %s) wordt genegeerd\n" #, c-format msgid "%s: downgrading from version %s to version %s\n" -msgstr "%s: versie %s naar versie %s downgraden\n" +msgstr "%s: versie %s naar versie %s wordt gedowngradet\n" #, c-format msgid "%s: local (%s) is newer than %s (%s)\n" @@ -525,89 +529,89 @@ msgstr "%s: lokaal (%s) is nieuwer dan %s (%s)\n" #, c-format msgid "ignoring package replacement (%s-%s => %s-%s)\n" -msgstr "pakket vervanging negeren (%s-%s => %s-%s)\n" +msgstr "pakket-vervanging wordt genegeerd (%s-%s => %s-%s)\n" #, c-format msgid "cannot replace %s by %s\n" -msgstr "kon %s niet vervangen door %s\n" +msgstr "kan %s niet vervangen door %s\n" #, c-format msgid "unresolvable package conflicts detected\n" -msgstr "onoplosbaar pakket conflict gevonden\n" +msgstr "onoplosbaar conflict tussen paketten gevonden\n" #, c-format msgid "removing '%s' from target list because it conflicts with '%s'\n" msgstr "" -"'%s' word verwijderd van de doel lijst omdat het in strijd is met '%s'\n" +"'%s' wordt verwijderd van de doellijst omdat het conflicteert met '%s'\n" #, c-format msgid "failed to retrieve some files\n" -msgstr "" +msgstr "Niet alle bestanden konden worden opgehaald\n" #, c-format msgid "not enough free disk space\n" -msgstr "" +msgstr "Onvoldoende vrije schijfruimte\n" #, c-format msgid "could not commit removal transaction\n" -msgstr "kon de verwijderingsactie niet plegen\n" +msgstr "kan de verwijder-transactie niet voltooien\n" #, c-format msgid "could not commit transaction\n" -msgstr "kon de actie niet plegen\n" +msgstr "kan transactie niet voltooien\n" #, c-format msgid "could not create temp directory\n" -msgstr "kon tijdelijke map niet aanmaken\n" +msgstr "kan tijdelijke map niet aanmaken\n" #, c-format msgid "could not copy tempfile to %s (%s)\n" -msgstr "kon het tijdelijke bestand niet naar %s (%s) kopiëren\n" +msgstr "kan het tijdelijke bestand niet naar %s (%s) kopiëren\n" #, c-format msgid "could not remove %s\n" -msgstr "kon %s niet verwijderen\n" +msgstr "kan %s niet verwijderen\n" #, c-format msgid "could not remove tmpdir %s\n" -msgstr "kon de tijdelijke map %s niet verwijderen\n" +msgstr "kan de tijdelijke map %s niet verwijderen\n" #, c-format msgid "could not stat file %s: %s\n" -msgstr "" +msgstr "kan bestand niet 'stat'ten %s: %s\n" #, c-format msgid "could not create pipe (%s)\n" -msgstr "" +msgstr "kan geen pipe aanmaken (%s)\n" #, c-format msgid "could not fork a new process (%s)\n" -msgstr "" +msgstr "kan geen nieuw proces (%s) afsplitsen\n" #, c-format msgid "could not change the root directory (%s)\n" -msgstr "kon de root map (%s) niet veranderen\n" +msgstr "kan de root map (%s) niet wijzigen\n" #, c-format msgid "call to execv failed (%s)\n" -msgstr "" +msgstr "execv aanroepen mislukt (%s)\n" #, c-format msgid "call to waitpid failed (%s)\n" -msgstr "" +msgstr "waitpid aanroepen mislukt (%s)\n" #, c-format msgid "could not open pipe (%s)\n" -msgstr "" +msgstr "kan geen pipe openen (%s)\n" #, c-format msgid "command failed to execute correctly\n" -msgstr "fout tijdens uitvoering van het commando\n" +msgstr "fout tijdens uitvoeren van commando\n" #, c-format msgid "no %s cache exists, creating...\n" -msgstr "cache voor %s bestaat niet, aanmaken...\n" +msgstr "%s-cache bestaat niet, wordt aangemaakt...\n" #, c-format msgid "couldn't find or create package cache, using %s instead\n" -msgstr "kon pakket cache niet vinden of aanmaken, %s word gebruikt\n" +msgstr "kan pakket-cache niet vinden of aanmaken, %s wordt gebruikt\n" diff --git a/lib/libalpm/po/pl.po b/lib/libalpm/po/pl.po index 834738f4..e5ff4b63 100644 --- a/lib/libalpm/po/pl.po +++ b/lib/libalpm/po/pl.po @@ -5,6 +5,7 @@ # Translators: # Bartek Piotrowski , 2011 # Kwpolska , 2013 +# Kwpolska , 2013 msgid "" msgstr "" "Project-Id-Version: Arch Linux Pacman package manager\n" diff --git a/lib/libalpm/po/pt_BR.po b/lib/libalpm/po/pt_BR.po index 4e4cdd80..e2cc40fa 100644 --- a/lib/libalpm/po/pt_BR.po +++ b/lib/libalpm/po/pt_BR.po @@ -5,16 +5,17 @@ # Translators: # ambaratti , 2011 # Dan McGee , 2011 -# Rafael Ferreira , 2012 +# Rafael Ferreira , 2011-2012 # Rafael Ferreira , 2011 # Sandro , 2011 +# Sandro , 2011 msgid "" msgstr "" "Project-Id-Version: Arch Linux Pacman package manager\n" "Report-Msgid-Bugs-To: http://bugs.archlinux.org/index.php?project=3\n" "POT-Creation-Date: 2013-04-30 21:18+1000\n" -"PO-Revision-Date: 2013-03-15 03:03+0000\n" -"Last-Translator: allanmcrae \n" +"PO-Revision-Date: 2013-05-01 15:45+0000\n" +"Last-Translator: Rafael Ferreira \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/" "archlinux-pacman/language/pt_BR/)\n" "Language: pt_BR\n" @@ -37,7 +38,7 @@ msgstr "fazendo downgrade do pacote %s (%s => %s)\n" #, c-format msgid "warning given when extracting %s (%s)\n" -msgstr "recebido alarme ao extrair %s (%s)\n" +msgstr "recebido aviso ao extrair %s (%s)\n" #, c-format msgid "could not extract %s (%s)\n" @@ -101,7 +102,7 @@ msgstr "não foi possível atualizar o registro na base de dados %s-%s\n" #, c-format msgid "could not add entry '%s' in cache\n" -msgstr "não foi possível adicionar a entrada '%s' ao cache\n" +msgstr "não foi possível adicionar a entrada \"%s\" ao cache\n" #, c-format msgid "error while reading file %s: %s\n" @@ -113,15 +114,15 @@ msgstr "removendo base de dados inválida: %s\n" #, c-format msgid "invalid name for database entry '%s'\n" -msgstr "nome inválido para o registro na base de dados '%s'\n" +msgstr "nome inválido para o registro na base de dados \"%s\"\n" #, c-format msgid "duplicated database entry '%s'\n" -msgstr "registro duplicado na base de dados '%s'\n" +msgstr "registro duplicado na base de dados \"%s\"\n" #, c-format msgid "corrupted database entry '%s'\n" -msgstr "registro corrompido na base de dados '%s'\n" +msgstr "registro corrompido na base de dados \"%s\"\n" #, c-format msgid "could not open file %s: %s\n" @@ -135,7 +136,7 @@ msgstr "" #, c-format msgid "%s database is inconsistent: version mismatch on package %s\n" msgstr "" -"%s base de dados está inconsistente: versão não coincidente no pacote %s\n" +"base de dados %s está inconsistente: versão não coincidente no pacote %s\n" #, c-format msgid "unknown validation type for package %s: %s\n" @@ -184,8 +185,8 @@ msgstr "não foi possível remover o arquivo de trava %s\n" #, c-format msgid "could not parse package description file '%s' from db '%s'\n" msgstr "" -"não foi possível analisar arquivo de descrição de pacote '%s' da base de " -"dados '%s'\n" +"não foi possível analisar arquivo de descrição de pacote \"%s\" da base de " +"dados \"%s\"\n" #, c-format msgid "database path is undefined\n" @@ -260,11 +261,11 @@ msgstr "falha em criar arquivo temporário para download\n" #, c-format msgid "url '%s' is invalid\n" -msgstr "a url '%s' é inválida\n" +msgstr "a url \"%s\" é inválida\n" #, c-format msgid "failed retrieving file '%s' from %s : %s\n" -msgstr "falha ao obter o arquivo '%s' de %s : %s\n" +msgstr "falha ao obter o arquivo \"%s\" de %s : %s\n" #, c-format msgid "%s appears to be truncated: %jd/%jd bytes\n" @@ -396,7 +397,7 @@ msgstr "não foi possível ler ou escrever o pacote" #, c-format msgid "operation cancelled due to ignorepkg" -msgstr "operação cancelada devido a ignorepkg" +msgstr "operação cancelada devido a ignorepkg" #, c-format msgid "invalid or corrupted package" @@ -412,7 +413,7 @@ msgstr "pacote inválido ou corrompido (assinatura PGP)" #, c-format msgid "cannot open package file" -msgstr "não foi possível abrir arquivo do pacote" +msgstr "não foi possível abrir o arquivo do pacote" #, c-format msgid "cannot remove all files for package" @@ -508,7 +509,7 @@ msgstr "não foi possível abrir o diretório: %s: %s\n" #, c-format msgid "cannot remove %s (%s)\n" -msgstr "Não pude remover %s (%s)\n" +msgstr "não foi possível remover %s (%s)\n" #, c-format msgid "could not remove database entry %s-%s\n" diff --git a/lib/libalpm/po/ro.po b/lib/libalpm/po/ro.po index 1de0a259..c47d76c5 100644 --- a/lib/libalpm/po/ro.po +++ b/lib/libalpm/po/ro.po @@ -8,6 +8,7 @@ # Dan McGee , 2011 # Ionut Biru , 2011 # Mihai Coman , 2011,2013 +# roentgen , 2013 msgid "" msgstr "" "Project-Id-Version: Arch Linux Pacman package manager\n" diff --git a/lib/libalpm/po/ru.po b/lib/libalpm/po/ru.po index dc1b6319..d957ac7b 100644 --- a/lib/libalpm/po/ru.po +++ b/lib/libalpm/po/ru.po @@ -5,7 +5,8 @@ # Translators: # Dan McGee , 2011 # Ivan Yurasov , 2011 -# partizan , 2011 +# kyak , 2013 +# partizan , 2011-2012 # kyak , 2013 # partizan , 2012 msgid "" diff --git a/lib/libalpm/po/sk.po b/lib/libalpm/po/sk.po index aa7cae1c..bb66b646 100644 --- a/lib/libalpm/po/sk.po +++ b/lib/libalpm/po/sk.po @@ -4,9 +4,11 @@ # # Translators: # archetyp , 2013 +# archetyp , 2013 # Dušan Lago , 2011 # Jose Riha , 2011 # Jose Riha , 2011 +# Jose Riha , 2011 msgid "" msgstr "" "Project-Id-Version: Arch Linux Pacman package manager\n" diff --git a/lib/libalpm/po/sl.po b/lib/libalpm/po/sl.po index f31353fd..b8bf9d2b 100644 --- a/lib/libalpm/po/sl.po +++ b/lib/libalpm/po/sl.po @@ -4,6 +4,7 @@ # # Translators: # smlu , 2012 +# smlu , 2012 msgid "" msgstr "" "Project-Id-Version: Arch Linux Pacman package manager\n" diff --git a/lib/libalpm/po/sr.po b/lib/libalpm/po/sr.po index 76cb93cc..c1962366 100644 --- a/lib/libalpm/po/sr.po +++ b/lib/libalpm/po/sr.po @@ -3,15 +3,17 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# daimonion , 2013 +# daimonion , 2013 +# daimonion , 2013 +# daimonion , 2013 # Slobodan Terzić , 2011 msgid "" msgstr "" "Project-Id-Version: Arch Linux Pacman package manager\n" "Report-Msgid-Bugs-To: http://bugs.archlinux.org/index.php?project=3\n" "POT-Creation-Date: 2013-04-30 21:18+1000\n" -"PO-Revision-Date: 2013-03-11 20:26+0000\n" -"Last-Translator: daimonion \n" +"PO-Revision-Date: 2013-04-30 17:47+0000\n" +"Last-Translator: daimonion \n" "Language-Team: Serbian (http://www.transifex.com/projects/p/archlinux-pacman/" "language/sr/)\n" "Language: sr\n" @@ -135,7 +137,7 @@ msgstr "недоследност базе „%s“: разлика у верзи #, c-format msgid "unknown validation type for package %s: %s\n" -msgstr "" +msgstr "непознат тип овере за пакет %s: %s\n" #, c-format msgid "could not create directory %s: %s\n" @@ -163,11 +165,11 @@ msgstr "недостају метаподаци пакета %s\n" #, c-format msgid "failed to read signature file: %s\n" -msgstr "" +msgstr "не могу да прочитам фајл потписа: %s\n" #, c-format msgid "required key missing from keyring\n" -msgstr "" +msgstr "захтеваног кључа нема на привеску\n" #, c-format msgid "removing invalid file: %s\n" @@ -211,7 +213,7 @@ msgstr "не могу да добавим податке о систему фа #, c-format msgid "could not open file: %s: %s\n" -msgstr "" +msgstr "не могу да отворим фајл: %s: %s\n" #, c-format msgid "could not get filesystem information\n" @@ -231,7 +233,7 @@ msgstr "не могу да утврдим тачке монтирања сист #, c-format msgid "could not determine cachedir mount point %s\n" -msgstr "" +msgstr "не могу да одредим тачку монтирања %s за фасциклу кеша\n" #, c-format msgid "could not determine root mount point %s\n" @@ -275,7 +277,7 @@ msgstr "неочекивана системска грешка" #, c-format msgid "permission denied" -msgstr "" +msgstr "приступ одбијен" #, c-format msgid "could not find or read file" @@ -495,7 +497,7 @@ msgstr "не могу да уклоним фајл „%s“: %s\n" #, c-format msgid "could not open directory: %s: %s\n" -msgstr "" +msgstr "не могу да отворим фасциклу: %s: %s\n" #, c-format msgid "cannot remove %s (%s)\n" @@ -543,11 +545,11 @@ msgstr "уклањам „%s“ са списка циљева због суко #, c-format msgid "failed to retrieve some files\n" -msgstr "" +msgstr "неуспешно преузимање неких фајлова\n" #, c-format msgid "not enough free disk space\n" -msgstr "" +msgstr "нема довољно слободног простора на диску\n" #, c-format msgid "could not commit removal transaction\n" @@ -575,7 +577,7 @@ msgstr "не могу да уклоним привремену фасциклу #, c-format msgid "could not stat file %s: %s\n" -msgstr "" +msgstr "не могу да одредим особине фајла %s: %s\n" #, c-format msgid "could not create pipe (%s)\n" diff --git a/lib/libalpm/po/sr@latin.po b/lib/libalpm/po/sr@latin.po index 02531b75..948ada22 100644 --- a/lib/libalpm/po/sr@latin.po +++ b/lib/libalpm/po/sr@latin.po @@ -3,15 +3,17 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# daimonion , 2013 +# daimonion , 2013 +# daimonion , 2013 +# daimonion , 2013 # Slobodan Terzić , 2011 msgid "" msgstr "" "Project-Id-Version: Arch Linux Pacman package manager\n" "Report-Msgid-Bugs-To: http://bugs.archlinux.org/index.php?project=3\n" "POT-Creation-Date: 2013-04-30 21:18+1000\n" -"PO-Revision-Date: 2013-03-11 20:26+0000\n" -"Last-Translator: daimonion \n" +"PO-Revision-Date: 2013-04-30 17:47+0000\n" +"Last-Translator: daimonion \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/projects/p/" "archlinux-pacman/language/sr@latin/)\n" "Language: sr@latin\n" @@ -135,7 +137,7 @@ msgstr "nedoslednost baze „%s“: razlika u verziji paketa %s\n" #, c-format msgid "unknown validation type for package %s: %s\n" -msgstr "" +msgstr "nepoznat tip overe za paket %s: %s\n" #, c-format msgid "could not create directory %s: %s\n" @@ -163,11 +165,11 @@ msgstr "nedostaju metapodaci paketa %s\n" #, c-format msgid "failed to read signature file: %s\n" -msgstr "" +msgstr "ne mogu da pročitam fajl potpisa: %s\n" #, c-format msgid "required key missing from keyring\n" -msgstr "" +msgstr "zahtevanog ključa nema na privesku\n" #, c-format msgid "removing invalid file: %s\n" @@ -211,7 +213,7 @@ msgstr "ne mogu da dobavim podatke o sistemu fajlova za %s: %s\n" #, c-format msgid "could not open file: %s: %s\n" -msgstr "" +msgstr "ne mogu da otvorim fajl: %s: %s\n" #, c-format msgid "could not get filesystem information\n" @@ -231,7 +233,7 @@ msgstr "ne mogu da utvrdim tačke montiranja sistema fajlova\n" #, c-format msgid "could not determine cachedir mount point %s\n" -msgstr "" +msgstr "ne mogu da odredim tačku montiranja %s za fasciklu keša\n" #, c-format msgid "could not determine root mount point %s\n" @@ -275,7 +277,7 @@ msgstr "neočekivana sistemska greška" #, c-format msgid "permission denied" -msgstr "" +msgstr "pristup odbijen" #, c-format msgid "could not find or read file" @@ -495,7 +497,7 @@ msgstr "ne mogu da uklonim fajl „%s“: %s\n" #, c-format msgid "could not open directory: %s: %s\n" -msgstr "" +msgstr "ne mogu da otvorim fasciklu: %s: %s\n" #, c-format msgid "cannot remove %s (%s)\n" @@ -543,11 +545,11 @@ msgstr "uklanjam „%s“ sa spiska ciljeva zbog sukoba sa „%s“\n" #, c-format msgid "failed to retrieve some files\n" -msgstr "" +msgstr "neuspešno preuzimanje nekih fajlova\n" #, c-format msgid "not enough free disk space\n" -msgstr "" +msgstr "nema dovoljno slobodnog prostora na disku\n" #, c-format msgid "could not commit removal transaction\n" @@ -575,7 +577,7 @@ msgstr "ne mogu da uklonim privremenu fasciklu %s\n" #, c-format msgid "could not stat file %s: %s\n" -msgstr "" +msgstr "ne mogu da odredim osobine fajla %s: %s\n" #, c-format msgid "could not create pipe (%s)\n" diff --git a/lib/libalpm/po/zh_CN.po b/lib/libalpm/po/zh_CN.po index 67785b39..c5a0ce61 100644 --- a/lib/libalpm/po/zh_CN.po +++ b/lib/libalpm/po/zh_CN.po @@ -6,6 +6,7 @@ # Dan McGee , 2011 # leonfeng , 2011 # mytbk , 2013 +# mytbk , 2013 # 甘 露 , 2011 msgid "" msgstr "" -- cgit v1.2.3-24-g4f1b