Compare commits

..

384 commits

Author SHA1 Message Date
Allan McRae
fe6e678e59 libmakepkg: remove pkglist linting
The ability to build only selected packages from a split package was
removed from makepkg, so this lint is no longer needed.

Signed-off-by: Allan McRae <allan@archlinux.org>
2025-08-02 14:26:44 +10:00
morganamilo
48a784dde8 libalpm: fix -U when pkg exists but not sig 2025-06-21 23:39:57 +10:00
morganamilo
67e3a7be36
libalpm: fix regression in downloader
Fixes failure to finalize download path if the package file already
exists but the .sig file does not.

This patch also moves .sig.part files which should be done for
completeness although it's probably rare/inconsequential for them to
exist.

Hopefully this is now the right approach now. The logic is as follows:

  Check if dest_name or temp_name exists and try to move whichever
  does.

  If neither exist assume we're just downloading sig files and don't
  error.

  Figure out the .sig base filename.

  Try to move the .sig file if one was needed and if that fails try
  move the .sig.part file.

The patch leaves the logging as is. Maybe we should check if moves fail
for reasons other than non existence and log it properly. Though this is
probably rare and pacman will error out later anyway.

Fixes #256
2025-05-30 14:48:14 +01:00
morganamilo
45c4eef61d libalpm: move tempdir cleanup into _alpm_download
this ensures the dir still gets cleaned up even if killed by a signal
2025-05-26 16:13:06 +10:00
morganamilo
5c451cd976 libalpm: propagate signal from child to parent
If we ^C while downloading the parent should propagate so pacman can
exit as it did before the sandboxing.
2025-05-26 16:13:06 +10:00
morganamilo
d87dd153fc libalpm: finalize tempfile if destfile doesn't exist
On setup we move the termfile into the temp download dir to resume
downloads. We don't move these back losing any tempfiles we already had.
2025-05-26 16:13:06 +10:00
morganamilo
6fcecbd08d libalpm: set errno if child exited via signal 2025-05-26 16:13:06 +10:00
Diego Viola
528709131f Fix whitespace in README
Also ensure consistent style in API section
2025-05-26 16:11:13 +10:00
Dominik
9fca328caf makepkg: provide a field for tracking generic metadata
The xdata field is an array of key=value entries that allow a packager to
include arbitrary metadata in the generated .PKGINFO.

Fixes #241.

Signed-off-by: Dominik Peteler <archlinux+gitlab@with-h.at>
2025-05-26 16:09:02 +10:00
Rudy
af54cd4ee1 libmakepkg/tidy: give scripts a priority order
This ensures (e.g.) that the "emptydirs" script runs last after
unneeded files have been deleted.

Fixes #184.

Signed-off-by: Allan McRae <allan@archlinux.org>
2025-05-17 13:20:16 +10:00
morganamilo
e392f01a94 libalpm: move sig files when download is unnamed 2025-05-17 12:03:42 +10:00
morganamilo
f722b86990 libalpm: return final final temp path in pkgurl
When downloading unnamed files via alpm_fetch_pkgurl the returned path
would point to the temp pkgcache instead of the final download location.
2025-05-17 12:03:42 +10:00
Aidan Epstein
4ddc642398 Add remove option for repo-remove to remove old package files.
Also update documentation.
2025-05-17 10:43:58 +10:00
Allan McRae
53b1db84ef Fix memory leak in download payload
The file stream associated with downloads without a filename is not
being freed when downloading using the sandbox user.

Signed-off-by: Allan McRae <allan@archlinux.org>
2025-05-17 10:40:09 +10:00
Allan McRae
571c13236f pacman.8: document interaction between --cachedir and DownloadUser
Note that the user provided in the DownloadUser configuration option (if
set) needs to be able to access the directory specified with the --cachedir
argument.

Fixes #216.

Signed-off-by: Allan McRae <allan@archlinux.org>
2025-05-17 10:37:30 +10:00
Felix Yan
64299ccfbb makepkg.sh: skip checking buildtime deps when runtime check already failed
This could help locate the real failure (instead of scrolling through the whole possibly-successful buildtime dep installation section) and also saves time on the operation.
2025-05-09 08:55:42 +10:00
Allan McRae
692f7a2cfe Do not overwrite default download user when option is unset
Commit 7ccf316c provided "root" (or the user name for UID 0) as a
default download user.  However, when DownloadUser is unset in pacman.conf,
pacman was overwriting the default with null. Rectify this.

Fixes #248

Signed-off-by: Allan McRae <allan@archlinux.org>
2025-05-08 21:49:56 +10:00
morganamilo
b104b95423 log and set errno when failing to rename download 2025-05-07 18:22:55 +10:00
Samuel Dionne-Riel
2bcdbc6a87 makepkg: Use sorted inputs for source tarballs too 2025-05-07 13:46:18 +10:00
Samuel Dionne-Riel
46f7f6e9ac makepkg: Use SOURCE_DATE_EPOCH for more reproducible source tarballs 2025-05-07 13:46:07 +10:00
Patrick Northon
38394d54f0 repo-add: add --wait-for-lock option
Using the --wait-for-lock option will result in repo-add retrying to acquire the database lock file after 3 seconds. If the option is not set, exit with code 2 on lock failure.
2025-05-07 12:23:45 +10:00
Allan McRae
267a0cc912 makepkg: ensure OPTIONS is not directly altered
Signed-off-by: Allan McRae <allan@archlinux.org>
2025-05-06 17:04:32 +10:00
Allan McRae
d0c10a795e Free memory on failure to create temporary directory
Signed-off-by: Allan McRae <allan@archlinux.org>
2025-05-06 17:02:35 +10:00
Allan McRae
0d37c1daa0 Initialise callback event fields
While the event is already globally initialised, initialising the fields
prevents a valgrind warning (since the gcc-15 update).

Signed-off-by: Allan McRae <allan@archlinux.org>
2025-05-06 17:00:06 +10:00
Diego Viola
24fc50269d Fix typos 2025-05-04 21:42:34 +10:00
Rafael Fontenelle
08070e9abe Update and improve translation-help.asciidoc 2025-05-04 20:13:44 +10:00
Allan McRae
f13d7d480c Update copyright years
./build-aux/update-copyright 2024 2025

Signed-off-by: Allan McRae <allan@archlinux.org>
2025-04-02 11:35:34 +10:00
LevitatingBusinessMan (Rein Fernhout)
007261ade5 makepkg: do not fail if makepkg.conf.d is empty
fixes #230
2025-03-22 05:23:23 +00:00
Jan Alexander Steffens (heftig)
bbe3f614b2 Update my .mailmap entry 2025-03-22 05:21:36 +00:00
Jan Alexander Steffens (heftig)
f07d547cf1
libmakepkg: Use only /etc/makepkg.d/gitconfig
Globally set `GIT_CONFIG_GLOBAL` and `GIT_CONFIG_SYSTEM` so that we're
only loading `/etc/makepkg.d/gitconfig` (if it exists) and no other Git
config files.

Allow injecting another value via `MAKEPKG_GIT_CONFIG`.

Fixes: https://gitlab.archlinux.org/pacman/pacman/-/issues/193
2025-03-19 21:15:55 +01:00
Christian Heusel
34f09204fa
repo-add.8: Mention missing compression algorithms
The manpage was lacking the database endings for various compression
algorithms that one can validly use, therefore we add these to the list.

Signed-off-by: Christian Heusel <christian@heusel.eu>
2025-03-02 14:55:57 +01:00
Allan McRae
0f6b4f4fab autodeps: parse LIB_DIRS with more specificity
Signed-off-by: Allan McRae <allan@archlinux.org>
2025-01-31 15:56:51 +10:00
Allan McRae
bc7b8e2eb2 lint_pkgbuild/arch: always perform some checks
When using --ignorearch or options that imply it (e.g. --printsrcinfo),
all checks of the arch array were skipped. Instead, perform all checks
apart from confirming that the package can be built on that
architecture.

Signed-off-by: Allan McRae <allan@archlinux.org>
2025-01-30 01:17:40 +00:00
Allan McRae
faea473550 Add a .gdb_index section before splitting debug info
Using gdb-add-index to add a .gdb_index section before splitting
debug info (together with enabling "maintenance set debuginfod
download-sections" in GDB) can dramatically reduce the amount of
data GDB has to download.

Fixes #205.

Signed-off-by: Allan McRae <allan@archlinux.org>
2025-01-19 04:27:42 +00:00
Guoxin Pu
680169fb61 libmakepkg: set CCACHE_PREFIX to absolute path of distcc when using both
The current logic sets CCACHE_PREFIX to distcc when both distcc and
ccache are enabled. However, according to the source of ccache, it would
execute the command with execv, which would not look up arg0 from PATH,
unlike those exec functions with _p suffix.

This would result in the following error, when building a package with
both ccache and distcc enabled:
```
ccache: error: execute_noreturn of distcc failed: No such file or directory
```

This breaks package builds in different ways: packages that use make/cc
directly would yield the actual error which is the same as the above
line, packages that rely on other build systems wouldn't go through
compiler check and complain on a bad compiler.

To reproduce the problem, try to build a simple package:
```
git clone https://gitlab.archlinux.org/archlinux/packaging/packages/abc.git
cd abc
cp /etc/makepkg.conf .
echo 'BUILDENV=(distcc color ccache check !sign)' >> makepkg.conf
makepkg --config makepkg.conf
```

refs:
f887434d35/src/ccache/execute.cpp (L348)
https://man.archlinux.org/man/exec.3.en#v_-_execv(),_execvp(),_execvpe()

Signed-off-by: Guoxin Pu <pugokushin@gmail.com>
2025-01-18 05:08:44 +00:00
Allan McRae
e767cf9a54 Detect repeated values in the arch array
Repeated values in the arch array can result in architecture specific
fields being repeated when using --printsrcinfo.

Signed-off-by: Allan McRae <allan@archlinux.org>
2025-01-16 23:14:22 +00:00
Allan McRae
e65b7d421c Add accessor for handle->disable_dl_timeout
Signed-off-by: Allan McRae <allan@archlinux.org>
2025-01-10 04:36:49 +00:00
Allan McRae
e6b3eb2570 Add accessor for handle->disable_sandbox
Signed-off-by: Allan McRae <allan@archlinux.org>
2025-01-10 04:36:49 +00:00
Allan McRae
7ccf316ceb Provide a default sandboxuser
If sandboxuser is not set, pacman/libalpm does not handle moving
incomplete download files out of the temporary download directories
and into the cache. This leave download_XXXXXX directories in the
cache that cause warnings on -Sc operations.

Initialise the sandboxuser with the username of UID 0 (root on most
systems).

Fixes #209.

Signed-off-by: Allan McRae <allan@archlinux.org>
2025-01-09 12:14:25 +10:00
Allan McRae
ae603e35d7 pacman.conf.5: replace {sysconfdir} with /etc in code block
Variable replacements are not performed on code blocks leaving the
example Include usage with '{sysconfdir}/pacman.d/mirrorlist'.
Replace this with '/etc' consistent with other example blocks in the
man page.

Signed-off-by: Allan McRae <allan@archlinux.org>
2025-01-08 14:25:09 +10:00
Allan McRae
4908eed57d Remove executable permissions from source file
Signed-off-by: Allan McRae <allan@archlinux.org>
2025-01-08 03:08:18 +00:00
Allan McRae
286e776eda lint_config: move PACKAGER check into its own function
The check for the format of the PACKAGER variable did not align with the
rest of the function where it was located.  Move to its own function.

Signed-off-by: Allan McRae <allan@archlinux.org>
2025-01-08 03:06:37 +00:00
Allan McRae
cc87999d6d lint_config: ensure NPROC is set to something usable
We use NPROC for managing the number of parallel jobs to run, so it is
essentially that this is a valid number.  Add a lint pass, and move the
setting of the default value to this location.

Signed-off-by: Allan McRae <allan@archlinux.org>
2025-01-08 03:06:37 +00:00
Johan Förberg
425ff046ed doc/BUILDINFO: Fix description of arrays
Signed-off-by: Johan Förberg <johan@forberg.se>
2025-01-03 16:12:30 +01:00
Allan McRae
5f4c7e3ddc libmakepkg: strip - disguard error messages when copying source files
Parallel processing of file stripping is causing a TOC/TOU race when copying
source files into the debug location resulting in error messages from cp.
While hiding this error is not the ideal solution, it is currently the only
one we have. Given this is a error of our own making, and we understand the
cause and have determined there is zero actual downside to ignoring the
error, we will accept this approach until something better is found.

Signed-off-by: Allan McRae <allan@archlinux.org>
2024-12-28 13:54:27 +00:00
Vasiliy Stelmachenok
02b35b9155 libmakepkg: strip - parallelize stripping of files
Perform file stripping in parallel where possible. Hardlinks remain
processed one at a time due to reproducibility issues.

Signed-off-by: Allan McRae <allan@archlinux.org>
2024-12-28 13:54:27 +00:00
Vasiliy Stelmachenok
dbde37aafb libmakepkg: strip - split handling of hardlinks
Handle singly and muptiply hard-linked files separately.  Also collect
information on hard linked files to avoid searching the entire package
to check for hard links.

Signed-off-by: Allan McRae <allan@archlinux.org>
2024-12-28 13:54:27 +00:00
Allan McRae
0c136ecc8a libmakepkg: strip - add "safe_" prefix to stripping functions
Add a "safe_" prefix to strip_file() and strip_lto() to indicate that
these functions are taking extra steps to ensure permissions remain
unchanged.

Signed-off-by: Allan McRae <allan@archlinux.org>
2024-12-28 13:54:27 +00:00
Allan McRae
5e2a763e4a libmakepkg: improve validity checking of arch array
Only a subset of checks were being performed on the overridden arch
arrays in package functions. Refactor checking such that all checks
are perform on all arch arrays.

Signed-off-by: Allan McRae <allan@archlinux.org>
2024-12-20 14:21:32 +10:00
Diego Viola
62d3192126 makepkg.conf.5: fix typo 2024-12-18 05:24:40 +00:00
Allan McRae
3e557af72f makepkg.conf: add NPROC configuration value
Useful for controlling (future) parallel jobs within makepkg.

Signed-off-by: Allan McRae <allan@archlinux.org>
2024-12-12 13:31:36 +00:00
Allan McRae
fa7a9f748d libmakepkg: remove python hashseed handling
The decision to set the PYTHONHASHSEED variable and its value is outside
the domain of makepkg and should be handled by a distribution.  Move this
file to the libalpm-dropins project.

Signed-off-by: Allan McRae <allan@archlinux.org>
2024-12-12 13:28:55 +00:00
Allan McRae
870eae26dc makepkg: move SOURCE_DATE_EPOCH handling to libmakepkg
Signed-off-by: Allan McRae <allan@archlinux.org>
2024-12-12 13:27:28 +00:00
Integral
cb940620bc
fix: make dependency cycle a debug message 2024-12-10 21:10:35 +08:00
Integral
dd55afad68 refactor: use c99 struct initializers to enhance readability 2024-12-10 10:18:40 +00:00
Allan McRae
775db50538 Remove pubkey_algo from alpm_pgpkey_t
This field is no longer used and requires updating with gpgme changes.

Signed-off-by: Allan McRae <allan@archlinux.org>
2024-12-07 22:13:49 +10:00
Allan McRae
95a7d416ce Do not identify the public key algorithm
When the import key message was pushed to the pacman frontend, we no longer
displayed the length or algorithm used for the key, sticking to just the
user ID and the key ID.

Remove this code given this field is no longer used, and the code requires
updating for any now algorithm added.

Note: removal of the field from the alpm_pgpkey_t will happen in a separate
commit so that this commit can be readily backported.

Signed-off-by: Allan McRae <allan@archlinux.org>
2024-12-07 22:07:29 +10:00
Jan Alexander Steffens (heftig)
9154600490 strip: Treat bare object files like static libs, not shared libs
Debug symbols should only be split from finally linked ELFs, not bare
object files. We're already excluding static libraries from splitting
for a similar reason.

The `.gnu_debuglink` sections are also mishandled by LLVM's LLD, which
copies them to its output. For example, this affects Arch Linux's
`/usr/lib/Scrt1.o`.

While we're here (and it changes the code less), also strip GNU LTO data
from bare objects, again for the same reason we're removing it from
static libraries, and apply static library stripping instead of shared
library stripping.

See: https://bugs.gentoo.org/787623
2024-11-27 19:50:57 +10:00
Jan Alexander Steffens (heftig)
e0162a6868 strip: Overwrite debuglink when it's already present
When objcopy encounters an already-present section, adding the new
debuglink will fail with a warning. Remove any existing `.gnu_debuglink`
section to work around this problem.

Arch Linux's `rust` package is affected by this. Apparently when LLVM's
LLD links in `/usr/lib/Scrt1.o` it will also copy the `.gnu_debuglink`
section.

See: https://bugs.gentoo.org/787623
2024-11-27 19:50:46 +10:00
Allan McRae
71afd4d88f libmakepkg - add wrapper function for objcopy
Using objcopy can result in file permission changes.  We work around this
by using "cat" to copy the temporary output file into the target. Extract
this code into a utility function.

Signed-off-by: Allan McRae <allan@archlinux.org>
2024-11-27 19:46:48 +10:00
Guillaume
a2d029388c fix a segfault in sandbox.c if handle->dlcb is null 2024-09-28 08:10:46 +00:00
Jelle van der Waa
8a60361949 pactest: drop trailing spaces from README 2024-09-28 01:44:17 +00:00
Chih-Hsuan Yen
e80569f5da Correctly configure landlock for older ABIs
For example, with landlock ABI < 3, LANDLOCK_ACCESS_FS_TRUNCATE is not
set in ruleset_attr.handled_access_fs, so it should not be set in
path_beneath.allowed_access either. Otherwise, landlock_add_rule fails
with -EINVAL, and pacman complains:

> error: restricting filesystem access failed because the landlock rule for the temporary download directory could not be added!

The change is tested on Debian Bookworm kernel
linux-image-6.1.0-25-cloud-amd64 6.1.106-3.
2024-09-28 00:35:10 +00:00
Rafael Fontenelle
60ec268458 Add double colon for newline after MAKEPKG_LINT_PKGBUILD in makepkg.8.asciidoc 2024-09-25 15:11:51 -03:00
Allan McRae
7bc5d55b56 libalpm: only chown downloaded files when running as root
Some libaplm utilities sync databases as a non-root user for use in
actvities other than system updates.  The ability to download as a
non-root user was broken as part of the download sandboxing.

Applying a minimial fix by preventing the chown of the downloaded file
if the user is non-root.  A larger change increasing the robustness
and error checking of this path is warranted in the future.

Signed-off-by: Allan McRae <allan@archlinux.org>
2024-09-08 11:49:21 +10:00
KaranveerB
6ba5c20e76
pactest: add test for empty replacements strings 2024-08-03 16:29:26 -07:00
KaranveerB
4c18204938
pacman/util.c: fix segfault when replace in strreplace is NULL 2024-08-03 16:29:11 -07:00
Remi Gacogne
cf473bcfbd Ensure that the download process cannot get new privileges
Signed-off-by: Remi Gacogne <rgacogne@archlinux.org>
2024-08-02 00:39:45 +00:00
Remi Gacogne
f142df92c7 Restrict syscalls for the download process whenever possible
Signed-off-by: Remi Gacogne <rgacogne@archlinux.org>
2024-08-02 00:39:45 +00:00
Allan McRae
c3aa1bc123 Fix typo in git source handling
Fixes #171

Signed-off-by: Allan McRae <allan@archlinux.org>
2024-07-16 18:51:03 +10:00
Allan McRae
138cbae584 Update meson versions for release
Signed-off-by: Allan McRae <allan@archlinux.org>
2024-07-14 19:11:18 +10:00
Allan McRae
dd20586baf Update index.asciidoc for release
Also, rebalance columns in release version table.

Signed-off-by: Allan McRae <allan@archlinux.org>
2024-07-14 19:11:18 +10:00
Allan McRae
aa1c64b21a Update translations for release
Signed-off-by: Allan McRae <allan@archlinux.org>
2024-07-14 19:11:18 +10:00
Allan McRae
3223d6206b Update NEWS for 7.0.0 release
Signed-off-by: Allan McRae <allan@archlinux.org>
2024-07-14 19:05:03 +10:00
Allan McRae
7299aadd7b Update README for 7.0.0 release
Signed-off-by: Allan McRae <allan@archlinux.org>
2024-07-14 19:05:03 +10:00
Allan McRae
9841f14f81 Prepare tranlsation strings for 7.0.0 release
Signed-off-by: Allan McRae <allan@archlinux.org>
2024-07-14 19:05:03 +10:00
Allan McRae
95e71ce52b Tidy up landlock check
This test was flagged as ambiguous by clang.

Signed-off-by: Allan McRae <allan@archlinux.org>
2024-07-14 19:03:23 +10:00
Allan McRae
cc0292a1ad Revert "_alpm_archive_fgets(): bail early if reached end of block"
This reverts commit 4dc21b965b.

Causes a segfault when reading some repos (gz compressed?)

Fixes #166.

Signed-off-by: Allan McRae <allan@archlinux.org>
2024-07-13 22:06:10 +10:00
Andrew Gregory
16a098a44e do not sort passed list
Sorting modifies the list in place, causing any existing pointers to the
list to point to a random element.

Fixes #165

Signed-off-by: Andrew Gregory <andrew.gregory.8@gmail.com>
2024-07-11 01:27:06 -04:00
Vasiliy Stelmachenok
5213a70b88 tidy/strip: Fix incorrect recognition of static binaries as relocatable ones 2024-07-06 09:09:37 +00:00
Filip Hejsek
9151c44658 libmakepkg: Use git -c safe.bareRepository=all in bare repositories
Git commands can fail in bare repositories when global git config contains safe.bareRepository=explicit.
Some users set this option for increased security.
To be compatible with this configuration, explicitly set safe.bareRepository=all when invoking git in a bare repository.
2024-07-06 08:57:20 +00:00
Allan McRae
8d22f991f9 Add download sandbox related options to example config file
Signed-off-by: Allan McRae <allan@archlinux.org>
2024-07-05 09:53:52 +10:00
Diego Viola
50bdd3d9bc Fix typos
Signed-off-by: Diego Viola <diego.viola@gmail.com>
2024-06-30 02:28:13 -03:00
Allan McRae
8d14b22260 repo-add: unconditionally create the database if it is missing
In f91fa546 (repo-add: do not recreate the database if nothing was changed),
repo-add was made to skip database write-out if there were no changes to
the database. However, this breaks the usage of repo-add to create a new
empty database: `repo-add /path/to/mydb/mydb.db.tar.xz`.

Bring back support for this use-case by always writing the database if
it is missing.

Original-patch-by: Ivan Shapovalov <intelfx@intelfx.name>
Signed-off-by: Allan McRae <allan@archlinux.org>
2024-06-27 22:04:28 +10:00
Allan McRae
3f1943c84d Only copy source files onces when creating debug packages
The Arch sharutils package was spewing messages about "Permission denied" when
copying source files into the debug package.  This is due to the source files
having 444 permissions and being used in multiple binaries.  Only copy each
source file into the debug package onces to avoid this error.

Signed-off-by: Allan McRae <allan@archlinux.org>
2024-06-20 00:34:32 +00:00
Allan McRae
c9acfc2b50 Fix error when downloading signature file for an existing package file
If a package was already downloaded but its signature file was not,
pacman would download the signature then error out despite all files
being present.

Also fixes a similar error when some, but not all, package databases
were updated with -Sy.

Fixes #156

Signed-off-by: Allan McRae <allan@archlinux.org>
2024-06-19 17:38:07 +10:00
Allan McRae
b60b779fc8 Fix calculation of space needed for download package
The calculation used the size of the package rather than the amount
remaining to download for partially downloaded packages.

Signed-off-by: Allan McRae <allan@archlinux.org>
2024-06-19 17:33:36 +10:00
Allan McRae
479f4d574a Prevent buffer overflow when using a scriptlet shell with a long path
Observed in Nixpkgs.  Fixes #157.

Signed-off-by: Allan McRae <allan@archlinux.org>
2024-06-19 07:41:11 +10:00
Remi Gacogne
9f8f94c056 Add --disable-sandbox and DisableSandbox
Signed-off-by: Remi Gacogne <rgacogne@archlinux.org>
2024-06-17 11:01:42 +10:00
Remi Gacogne
eacadbcc41
Restrict filesystem access to the download process whenever possible
Signed-off-by: Remi Gacogne <rgacogne@archlinux.org>
2024-06-14 09:30:20 +02:00
Remi Gacogne
24304c6df0 Fix up-to-date repo databases being redownloaded when sandboxed
Signed-off-by: Remi Gacogne <rgacogne@archlinux.org>
Signed-off-by: Allan McRae <allan@archlinux.org>
2024-06-10 19:48:20 +10:00
Allan McRae
f0a7f85dbb libmakepkg: make configured BUILDENV readonly
PKGBUILDs should not be directly adjusting this variable

Signed-off-by: Allan McRae <allan@archlinux.org>
2024-05-31 16:15:54 +00:00
Allan McRae
b013ca4221 makepkg: provide environment variable to disable PKGBUILD linting
On Windows based systems (e.g. msys), running PKGBUILD linting is very
slow due to time taken spawning bash subshells.  Additionally, some packages
have extreme amounts of (usually procedurally generated) splitting, which
also causes linting to be extremely slow.  Provide an environment variable
to disable PKGBUILD linting.

Signed-off-by: Allan McRae <allan@archlinux.org>
2024-06-01 02:12:23 +10:00
Diego Viola
44b9a53b2d Fix spelling of environment 2024-05-31 16:11:07 +00:00
Diego Viola
24455cc5b2 editorconfig: update url
Use https and lowercase characters.

Signed-off-by: Diego Viola <diego.viola@gmail.com>
2024-05-27 02:31:30 -03:00
Diego Viola
7bbfc17f3c Fix typos
Signed-off-by: Diego Viola <diego.viola@gmail.com>
2024-05-20 02:30:50 -03:00
Allan McRae
d74d7ec32c makepkg: remove GITFLAGS support
Supporting git source fragments (branch, commit, tag) is difficult in
conjunction with GITFLAGS usage - particularly with the most common
use cases that reduce the amount of data cloned from the upstream repo.

Leaving GITFLAGS in place an documenting that various git source features
are not supported when GITFLAGS are in used is not an ideal 'solution'.
Instead, remove GITFLAGS support.

Signed-off-by: Allan McRae <allan@archlinux.org>
2024-05-20 00:18:43 +00:00
Allan McRae
76e1cb1bf1 Revert "Prepare git src with git worktree"
This causes issues when repeatedly building a package using the same
git checkout.  There is also ambiguity of the default checkout when
trying to build from HEAD. See #142 and #143.

This reverts commit 85c421f1cb.
2024-05-20 10:15:33 +10:00
Allan McRae
0f2417f919 doc/makepkg.8: Improve --cleanbuild documentation
Fixes #45.

Signed-off-by: Allan McRae <allan@archlinux.org>
2024-05-12 03:33:01 +00:00
Allan McRae
e1df19ee6f makepkg: drop sudo permissions after use
Add the -k parameter to the sudo call to prevent caching of credientials.
This would (potentailly) stop a rogue sudo use within a PKGBUILD.

Signed-off-by: Allan McRae <allan@archlinux.org>
2024-05-12 03:30:06 +00:00
Allan McRae
6d85d9ae08 Document makepkg.conf.d/ drop-in configuration
Signed-off-by: Allan McRae <allan@archlinux.org>
2024-05-12 03:25:42 +00:00
EnnoxHD
8aba032de4 makepkg: make 'not a clone of' visible with a new error code
Add a new error code to expose the 'not a clone of' error state of some source
providers (git and fossil). This allows other tools integrating further and
handle this specific error state.

One usecase evolves around frequently changing source locations in PKGBUILDs
of packages in the AUR.
2024-05-05 12:24:56 +10:00
Daan De Meyer
bcd4aad16c Stop redirecting stderr of bsdtar to /dev/null
It's extremely hard to figure out what's going from when bsdtar fails
here when we expect it to succeed. Stop tunneling stderr to /dev/null
to help users figure out what's going on when this fails.
2024-05-05 02:10:30 +00:00
Tom "Ravi" Hale
85c421f1cb Prepare git src with git worktree 2024-05-04 22:28:57 +10:00
Allan McRae
9f78628f6c Update RELEASE documentation for website deployment via gitlab CI
Signed-off-by: Allan McRae <allan@archlinux.org>
2024-05-04 11:21:26 +00:00
Allan McRae
60d517107b Deploy website using gitlab pages
Signed-off-by: Allan McRae <allan@archlinux.org>
2024-05-04 11:21:26 +00:00
Wiktor Kwapisiewicz
7fc080c582 Remove --use-agent from the manpages of makepkg and repo-add 2024-05-04 21:19:56 +10:00
Christoph Reiter
15a2338656 meson: use the custom meson provided intl dependency
Let meson deal with the system differences instead of handling
it manually.

The custom dependency was added in meson 0.59, then gained
static support with 0.60, and static support for cygwin with 0.61,
which is why the meson requirement is bumped to 0.61.

Debian bullseye ships meson 0.56, so switch to bookworm which
has 1.0.1
2024-05-04 21:05:48 +10:00
Chih-Hsuan Yen
9548d6cc76 Fix unstable git checksums
Closes https://gitlab.archlinux.org/pacman/pacman/-/issues/131
2024-05-04 10:14:11 +00:00
Allan McRae
792df078fa libmakepkg: add fortran buildenv to meson sources array
Fixes #132.

Signed-off-by: Allan McRae <allan@archlinux.org>
2024-05-04 10:10:23 +00:00
lilydjwg
8e30cd4e38 makepkg: fix git checksumming depends on user config 2024-04-22 04:48:19 +00:00
Allan McRae
03d884d7ff repo-add: handle lack of newline at end of .PKGINFO
Work around the final line not being parsed in .PKGINFO if there was a lack
of newline at the end of the file.  This could occur due to utilising a tool
other than makepkg to create packages.

The missed line created a difference in the parsing of .PKGINFO between
repo-add and pacman, causing packages to be seen as invalidwith pacman-6.1.

Signed-off-by: Allan McRae <allan@archlinux.org>
2024-04-22 04:46:30 +00:00
Allan McRae
7dcf9a2b49 libmakepkg: do not unset CHOST with !buildflags
Also ensure CHOST and MAKEFLAGS are exported.

Signed-off-by: Allan McRae <allan@archlinux.org>
2024-04-20 11:37:54 +10:00
Allan McRae
4dc21b965b _alpm_archive_fgets(): bail early if reached end of block
Bailing early when there are 0 blocks remaining means that we do not call
memchr on a NULL string (although with a 0 size parameter).  Fixes issues
reported using -fsanitise=address,undefined

Signed-off-by: Allan McRae <allan@archlinux.org>
2024-04-08 10:34:10 +00:00
Allan McRae
936eff63bf Add guidelines for managing release branches
Signed-off-by: Allan McRae <allan@archlinux.org>
2024-04-05 12:02:40 +10:00
Allan McRae
f86c15e780 unlink_file: restore trailing slash on directory before checking mountpoint
The dir_is_mountpoint() function has the explicit requirement that the
trailing slash of the directory is present.  We strip the trailing slash
in unlink_file() to handle directories replaced with symlinks, but that
then affects the dir_is_mountpoint() check.

Add the trailing slash when we have established we are dealing with a
directory. Note this may fail in the case of a file managed by pacmane
with name length of PATH_MAX that has been replaced by a directory on the
file system. Bail on this unlikely scenario.

In addtion, be less fancy with adjusting length of the file char array.

Signed-off-by: Allan McRae <allan@archlinux.org>
2024-04-05 00:51:13 +00:00
Allan McRae
49ebd856ec pacman-key: fix permission checks for non-root operations
Removing lock-never from the default gpg.conf file exposed a couple of bugs
in the permission checks in pacman-key.

Signed-off-by: Allan McRae <allan@archlinux.org>
2024-04-05 00:47:45 +00:00
Allan McRae
027ecbc7b8 libmakepkg: remove MAKEFLAGS from buildenv_vars
MAKEFLAGS should not be cleared by options=(!buildenv).

Regression introduced in commit 09e82f01ea

Signed-off-by: Allan McRae <allan@archlinux.org>
2024-04-05 00:43:57 +00:00
Allan McRae
f763ff774a Fix leak in total progress bar
Signed-off-by: Allan McRae <allan@archlinux.org>
2024-04-05 00:39:29 +00:00
Allan McRae
0ccb584262 Do not pass NULL paramenter to bsearch with empty filelist
A filelist can be non-NULL but empty (particularly with a lot of
NoExtract entries). Handle this in alpm_filelist_contains()

Identified using the undefined behaviour sanitizer.

Signed-off-by: Allan McRae <allan@archlinux.org>
2024-04-05 00:35:08 +00:00
Allan McRae
27eba85594 Fix typo in cb_progress
Introduced in 74deada511.

Signed-off-by: Allan McRae <allan@archlinux.org>
2024-04-02 23:18:34 +10:00
Remi Gacogne
cfa68f7b26 Restore partially downloaded files to the temporary directory
This allows downloads to be continued.

Signed-off-by: Allan McRae <allan@archlinux.org>
2024-04-01 20:52:55 +00:00
Remi Gacogne
e1a7b83e8e Download to a temporary directory owned by the Download user
Signed-off-by: Remi Gacogne <rgacogne@archlinux.org>
Signed-off-by: Allan McRae <allan@archlinux.org>
2024-04-01 20:52:55 +00:00
Andrew Gregory
11c8eca9a6 pactest: test database downloads with optional signatures
Signed-off-by: Allan McRae <allan@archlinux.org>
2024-04-01 20:52:55 +00:00
Andrew Gregory
0b6df551b5 pactest: Add basic sandboxed download tests
Signed-off-by: Allan McRae <allan@archlinux.org>
2024-04-01 20:52:55 +00:00
Remi Gacogne
5e9bff6216 Stop trusting the Content-Disposition HTTP header 2024-04-01 20:52:55 +00:00
Allan McRae
26b7b35307 Remove random_partfile from payload struct
It is not used any more due to filling the payload structure earlier.

Signed-off-by: Allan McRae <allan@archlinux.org>
2024-04-01 20:52:55 +00:00
Allan McRae
04d04381bc libalpm: fill in more payload information before passing to downloader
Filling in more of the payload fields before passing to the downloader ensures
that the these fields do not get lost during sandboxed operations.

It also fixes the use of -U with XferCommand, but testsuite still fails due to
"404" page being downloaded for the signature. Given we can not identify this
as being a non-signature download with the XferCommand, we can just turn off
signature checking in this test.

Signed-off-by: Allan McRae <allan@archlinux.org>
2024-04-01 20:52:55 +00:00
Remi Gacogne
49d512267e Document DownloadUser
Signed-off-by: Allan McRae <allan@archlinux.org>
2024-04-01 20:52:55 +00:00
Remi Gacogne
cf359b0da4 Add support for DownloadUser with XferCommand
Signed-off-by: Allan McRae <allan@archlinux.org>
2024-04-01 20:52:55 +00:00
Remi Gacogne
93a796aa27 Add sandboxed download for the internal downloader
If the SandboxUser configure option is set, the internal downloader
will fork of a child process and drop to the specified user to download
the files.

Signed-off-by: Remi Gacogne <rgacogne@archlinux.org>
Signed-off-by: Allan McRae <allan@archlinux.org>
2024-04-01 20:52:55 +00:00
Allan McRae
9667bc6b12 Expose _alpm_reset_signals() to library
Signed-off-by: Allan McRae <allan@archlinux.org>
2024-04-01 20:52:55 +00:00
Remi Gacogne
62c6874689 Add callbacks for sandboxed operations
Add log and download callbacks to use within a sandbox.  These are
designed to be passed from the sandbox to the parent through a file
descriptor and then processed into alpm callbacks to be passed to the
frontend.

Note, only callbacks used in libalpm are added. Other callbacks should
be set to NULL in the child process.
2024-04-01 20:52:55 +00:00
Remi Gacogne
ce83cf6361 Provide function for switching user in child processes
Add alpm_sandbox_child() function that will be used for switching to a
less priviledged user to run child processes.

Signed-off-by: Allan McRae <allan@archlinux.org>
2024-04-01 20:52:55 +00:00
Remi Gacogne
56eb87287e Add DownloadUser configuration option
The DownloadUser option will be used to drop privledges to the
specified user when downloading files.

The intention is for this to be extended in the future  to a more
general sandbox configuration to cover operating on package and
database files prior to verification.

Add this option to pacman configuration and the various accessors into
the libalpm backend.

Signed-off-by: Allan McRae <allan@archlinux.org>
2024-04-01 20:52:55 +00:00
Vladislav Nepogodin
01e64e8b6a use snprintf instead of sprintf
sprintf does not check for buffer overflows (CWE-120)

	modified:   src/pacman/callback.c
2024-03-25 13:24:41 +10:00
Allan McRae
b2bb2e2482 makepkg: Fix missing end of line in -D documentaiton
Signed-off-by: Allan McRae <allan@archlinux.org>
2024-03-20 21:39:41 +10:00
bartus
082094a1d8 Limit scope of name and a variable to avoid conflict with PKGBUILD scripts. 2024-03-19 12:43:00 +00:00
Allan McRae
b59d68a209 Update bug report URL in tranlsation configuration files
Signed-off-by: Allan McRae <allan@archlinux.org>
2024-03-19 12:02:44 +10:00
Allan McRae
92102f477e makepkg: document -D in --help text
Fixes #110.

Signed-off-by: Allan McRae <allan@archlinux.org>
2024-03-19 01:47:42 +00:00
Demi Obenour
eb5bf69138 Fetch signature and database from the same URL
Previously, the for loops on lines 1035 and 1037 would advance to the
next element in the server list, even if downloading the URL succeeded.
If there are no more servers in the list, `s` would be NULL, causing
a NULL pointer dereference on line 1046.  If there were servers left
in the list, the signature would be downloaded from a wrong URL.

1. Fetching of database signatures is enabled.
2. There is only one enabled remote repository URL, or fetching from
   all but the last one fails and fetching from the last one succeeds.
3. An XferCommand is used.

Qubes OS Arch templates satisfy all of these conditions and trigger the bug.
2024-03-19 11:44:38 +10:00
Allan McRae
478af5d1c8 Fix read-after-free issue parsing config files
We were indirectly adjusting a pointer to a parameter that was declared
as a const.  This resulted in a use-after-free when using --debug:

[11:09:18] debug: config: finished parsing ��A�8_

Signed-off-by: Allan McRae <allan@archlinux.org>
2024-03-19 00:40:09 +00:00
Dale young
942bbe2d2d Fix deadlink to the old bug tracker in footer
The bug tracker had been updated in doc/index.asciidoc, but the one in
doc/footer.asciidoc was still the old one, which is a deadlink now.

I udpated it just by copying the sentense in doc/index.asciidoc

Signed-off-by: Dale young <daleyoung4242@gmail.com>
2024-03-18 17:15:07 +08:00
Morten Linderud
bae9594ac1
debugedit: only check for debugedit if we build a package
We only really need debugedit while building the package, while this
check would run if you tried something like `makepkg --verifysource`.
Use the same checks as we have for fakeroot to wrap debugedit so we
don't beg for dependencies we don't need.

Fixes: 3ed08f97ec

Signed-off-by: Morten Linderud <morten@linderud.pw>
2024-03-14 23:07:08 +01:00
Allan McRae
111eed0251 Fix unused result warnings
Not actually a fix, as the pacman output will still be weird and
we will not gracefully exit, but it does print an error message...

Signed-off-by: Allan McRae <allan@archlinux.org>
2024-03-14 01:50:05 +00:00
Christian Heusel
0571ee82bf repo-add: fix parseopts missing arg to -k/--key
The current code treats -k/--key as a binary option which later makes it
fail parsing the argument as then the end of arguments '--' is treated
as the GPGKEY. We fix this by adding the appropriate specifier to the
long and shortopt.

Closes https://gitlab.archlinux.org/pacman/pacman/-/issues/105

Fixes: 4f43ce3e ("repo-add: use parseopts from libmakepkg")
Signed-off-by: Christian Heusel <christian@heusel.eu>
2024-03-14 01:20:53 +00:00
Ivan Shapovalov
5e0496260b make_aligned_titles: pass the correct buffer length
The third parameter to wcstombs() is the length of the output buffer
(first parameter) in bytes. Take the correct sizeof() here.

This is not a problem in practice, but prevents _FORTIFY_SOURCE=3 from
detecting a possible output buffer overflow (as the source buffer is
bigger than the destination).

Fixes #104.

Signed-off-by: Ivan Shapovalov <intelfx@intelfx.name>
2024-03-13 04:32:42 +01:00
Allan McRae
95f148c222 Update website to reflect gitlab usage
Signed-off-by: Allan McRae <allan@archlinux.org>
2024-03-06 10:23:33 +00:00
Allan McRae
d7f3ce1217 Manage releases through gitlab
Also provide an example for how to check for errors in translations

Signed-off-by: Allan McRae <allan@archlinux.org>
2024-03-06 10:23:33 +00:00
Allan McRae
6bb95c8856 Fix error messages for unknown key in databases
Signed-off-by: Allan McRae <allan@archlinux.org>
2024-03-05 07:25:11 +10:00
Allan McRae
e3dc296ba3 Pull translations for release
Signed-off-by: Allan McRae <allan@archlinux.org>
2024-03-04 13:07:58 +10:00
Allan McRae
23151a8811 Update web index for release
Signed-off-by: Allan McRae <allan@archlinux.org>
2024-03-04 11:44:11 +10:00
Allan McRae
4b25bb63c1 Update meson.build for release
Signed-off-by: Allan McRae <allan@archlinux.org>
2024-03-04 11:44:11 +10:00
Allan McRae
1c536abef6 Update NEWS for 6.1 release
Signed-off-by: Allan McRae <allan@archlinux.org>
2024-03-04 11:44:11 +10:00
Allan McRae
90f5ca42cc Update README for 6.1
Signed-off-by: Allan McRae <allan@archlinux.org>
2024-03-04 11:44:11 +10:00
Andrew Gregory
9f6c081771 conf: do not default sysroot to /
Setting sysroot to / is not the same as having no sysroot, because the
sysroot is prepended to ALL config paths including relative ones:

$ cd /etc
$ pacman --config=pacman.conf
error: config file /pacman.conf could not be read: No such file or directory

Signed-off-by: Andrew Gregory <andrew.gregory.8@gmail.com>
2024-03-04 01:33:51 +00:00
Andrew Gregory
cddad6fccd conf: make prepend_dir and globdir NULL aware
Allows sysroot to be left NULL.

Signed-off-by: Andrew Gregory <andrew.gregory.8@gmail.com>
2024-03-04 01:33:51 +00:00
Levente Polyak
016fd2633e
libmakepkg/srcinfo.sh: fix missing extglob in srcinfo_write_attr
We use an extended glob here, but were relying on having it globally set
in makepkg. This causes it to fail when used in scripts.

Since scripts using libmakepkg may not want extglob to be set, save and
restore the environment while explicitly setting extglob only where we
need it.

Signed-off-by: Levente Polyak <anthraxx@archlinux.org>
2024-02-28 21:30:22 +01:00
Allan McRae
f343db5b8e Do not segfault with badly formed URL
Signed-off-by: Allan McRae <allan@archlinux.org>
2024-02-28 07:38:56 +10:00
Allan McRae
4a115b4dca Fix bug introduced to string_length
Signed-off-by: Allan McRae <allan@archlinux.org>
2024-02-26 13:59:18 +10:00
Allan McRae
74deada511 pacman/callback.c: handle empty pkgname
In pacman's progress callback, pkgname being null may result in a
segfault, due to undefined printf behaviour.  libalpm always passes
at least an empty string for pkgname, so this situation is largely
avoided.

However, the callback mostly checked for pkgname's being non-null
and not empty.  This means a additional space was being added to
the output messages (although with zero actual effect on the output).

Be a bit more robust here by treating null and empty pkgname the
same and fixing the invisible output issue...

Signed-off-by: Allan McRae <allan@archlinux.org>
2024-02-26 03:42:53 +00:00
Allan McRae
b30dac6a5b Improve robustness of parsing the --ask argument
Signed-off-by: Allan McRae <allan@archlinux.org>
2024-02-26 13:14:23 +10:00
Allan McRae
5121108542 Improve robustness of parsing the --debug argument
Signed-off-by: Allan McRae <allan@archlinux.org>
2024-02-26 03:10:35 +00:00
Allan McRae
c9c56be396 pacman/util.c: fix potential buffer overflow in string_length
A potential buffer overflow could occur if a detected terminal escape
sequence was not for a terminal colour (i.e. did not contain an "m").

Fix the potential buffer overflow while explicitly detecting only
terminal colour escape sequences.  Any other escape sequence is
unexpected, and just gets pushed to the terminal.

Signed-off-by: Allan McRae <allan@archlinux.org>
2024-02-26 03:07:08 +00:00
Allan McRae
1d1bb6fa1a pacman-key: remove lock-never from keyring configuration
I'm not sure why this was originally included, but it has now become
a problem with multiple processes updating the keyring (e.g. the
systemd timer for WKD updates from Arch Linux).

Signed-off-by: Allan McRae <allan@archlinux.org>
2024-02-26 03:04:05 +00:00
loqs
dba383f092 makepkg: Add support for Fortran build flags
Signed-off-by: Allan McRae <allan@archlinux.org>
2024-02-25 09:33:29 +10:00
Allan McRae
2a0dd9ec09 makepkg: move rust related documentation into the configuration file
Adding more and more languages will make the man page become increasingly
difficult to navigate.  Move documentation into the configuration file
where variables are defined.

Signed-off-by: Allan McRae <allan@archlinux.org>
2024-02-25 09:32:57 +10:00
Allan McRae
d55b47e551 Update copyright years
Signed-off-by: Allan McRae <allan@archlinux.org>
2024-02-24 18:40:44 +10:00
Allan McRae
c8afb0aa1a Prepare translations
Signed-off-by: Allan McRae <allan@archlinux.org>
2024-02-19 11:27:21 +10:00
Allan McRae
c7c4c2a7d2 verify_signature: wait as long as possible before bailing
Bailing early caused problems with makepkg failing on verify but expired
signatures.  As this is often out of the packagers control, and it is
better to verify a signature than not, we try bailing as late as possible
and let makepkg warn about the expired signature.

Signed-off-by: Allan McRae <allan@archlinux.org>
2024-02-19 09:24:13 +10:00
Andrew Gregory
7016adcb70 manually apply --sysroot to configuration
The previous chroot-based sysroot often broke due to glibc's delayed
loading for much of its functionality when the sysroot did not contain
compatible copies of the necessary libraries.

This approach instead manually prepends the sysroot to all configuration
paths.

BREAKING CHANGE: targets to -U are no longer interpreted relative to
sysroot

Signed-off-by: Andrew Gregory <andrew.gregory.8@gmail.com>
Signed-off-by: Allan McRae <allan@archlinux.org>
2024-02-19 09:20:16 +10:00
Masato TOYOSHIMA
2180e4d127 libalpm: download signatures with the external downloader
Ensure relevant signature files are downloaded when using the fetch
callback.

Signed-off-by: Allan McRae <allan@archlinux.org>
2024-02-16 19:27:09 +10:00
Allan McRae
48729f8ecc libmakepkg: skip stripping guile-2.2 files
Guile 2.2 uses ELF format for its byte-compiled files.  These are not
normal executables, and are not strippable in the normal sense.

Given these are ELF files and detected by "file" as non-stripped binaries,
it is only possible to skip these using the file path.

Fixes #73

Signed-off-by: Allan McRae <allan@archlinux.org>
2024-02-15 23:34:05 +00:00
Allan McRae
fface9001a Update "submitting-patches.asciidoc" for the move to gitlab
Also include a section encouraging discussion of large changes as there have
been a number of case of rejected features being reinvented.

Fixes #34

Signed-off-by: Allan McRae <allan@archlinux.org>
2024-02-15 23:19:20 +00:00
Allan McRae
f74daa39e8 makepkg.conf.5: Add ellipsis to OPTIONS array description
We have added more options to makepkg, but adding them to the man
page entry would result in line wrapping on a standard width
terminal.  Instead, trucate and add ellipsis to indicate more
members (as described in the section below).

Fixes #91

Signed-off-by: Allan McRae <allan@archlinux.org>
2024-02-15 23:14:28 +00:00
Allan McRae
22c043d4c3 Fix format string
Signed-off-by: Allan McRae <allan@archlinux.org>
2024-02-16 09:09:45 +10:00
morganamilo
abc6dd7411 libalpm: check calloc in alpm_list_cmp_unsorted 2024-02-15 23:02:15 +00:00
morganamilo
7a43c6fee0 Speedup comparing lists if they happen to be in the same order 2024-02-15 23:02:15 +00:00
morganamilo
62095d916b Prompt to delete invalid package 2024-02-15 23:02:15 +00:00
morganamilo
386125fc89 Validate extra data when comparing dbpkg to pkgfile 2024-02-15 23:02:15 +00:00
morganamilo
196de7e94a Add function to check if lists are equal 2024-02-15 23:02:15 +00:00
morganamilo
e1dc609939 libalpm: print warnings for unknown keys in databases/packages
Signed-off-by: Allan McRae <allan@archlinux.org>
2024-02-10 11:31:12 +10:00
Allan McRae
0649a66ee5 Add ALPM_PKG_REASON_UNKNOWN type
Return ALPM_PKG_REASON_UNKNOWN when parsing of %REASON% in the local
database fails.

Signed-off-by: Allan McRae <allan@archlinux.org>
2024-02-09 11:14:38 +10:00
morganamilo
6e6d3f18e3 libalpm: don't use atio for pkgreason
atio's behaviour is undefined if the input is not valid. Also it does
all sorts of whitespace and prefix handling which we don't need for
pkgreason.

Instead of going into UB on invalid input we now return EXPLICIT as the
fallback and print an error. However we don't actually error out as the
DB parsing tries to be error tolerant.

Signed-off-by: Allan McRae <allan@archlinux.org>
2024-02-09 11:14:38 +10:00
Andrew Gregory
0a394144b2 validate package metadata after loading
alpm has certain requirements for package metadata necessary for proper
functioning, name and version in particular.  These requirements are
already enforced in makepkg, but nowhere in alpm.

Exceptions are treated as errors for non-local packages because they
cannot be installed without potentially resulting in undefined behavior.
Exceptions for local packages are treated as warnings because they are
already installed, so any damage has already been done, and the user
would otherwise have no way to uninstall them.

Signed-off-by: Andrew Gregory <andrew.gregory.8@gmail.com>
2024-02-07 12:27:26 +00:00
Andrew Gregory
fde59b99e8 be_package: delay freeing archive resource
The error path uconditinally tries to free the archive, leading to a
double-free segmentation fault if the error path is triggered after
already freeing it.

Signed-off-by: Andrew Gregory <andrew.gregory.8@gmail.com>
2024-02-07 12:27:26 +00:00
Andrew Gregory
edd57c8b96 perform cleanup on sync db parsing errors
Cleanup was only being performed when libarchive failed to actually read
the file.

Signed-off-by: Andrew Gregory <andrew.gregory.8@gmail.com>
2024-02-07 12:27:26 +00:00
Andrew Gregory
5c75a55c7d allow freeing partial db package cache
The free function was checking DB_STATUS_PKGCACHE, which is only set
once the package cache has been fully built.

Signed-off-by: Andrew Gregory <andrew.gregory.8@gmail.com>
2024-02-07 12:27:26 +00:00
Allan McRae
56f1eeef4b Remove obsolete Doxyfile directives
Signed-off-by: Allan McRae <allan@archlinux.org>
2024-02-06 20:03:08 +10:00
David Runge
f8c2e59ec5
pacman-key: Make signature verification more robust by checking pipes
To ensure we are not dropping the return code of the `gpg` call due to
piping into `grep`, we make use of `PIPESTATUS` to check the return code
of each command separately.

Additionally, we can now distinguish between two states: The signature
does not verify (e.g. due to technical reasons) and the signature is
not trusted.

Signed-off-by: David Runge <dvzrv@archlinux.org>
2024-02-04 10:06:43 +01:00
David Runge
16a064701a
makepkg: Move check for signature metadata to central location
Move the check for the `NEWSIG` metadata keyword contained in the
GnuPG based statusfile to `parse_gpg_statusfile()` so that it is also
run when creating the statusfile in `verify_file_signature()` and not
only when running `verify_git_signature()`.

Signed-off-by: David Runge <dvzrv@archlinux.org>
2024-02-04 10:06:42 +01:00
David Runge
86ec26b2d3
makepkg: Improve robustness of signature verification by limiting terms
The output of
`gpg --quiet --batch --status-fd /dev/stdout --verify <signature_file> <file> 2> /dev/null`
or
`git verify-commit --raw <commit> 2>&1`
may contain binary data, if the signature has been created with an
OpenPGP implementation, that e.g. makes use of notations.
If the notation string (see `NOTATION_DATA` in /usr/share/doc/gnupg/
DETAILS) contains a trailing binary char, this will break signature
verification, as any following entry (e.g. `VALIDSIG`) will be offset.

As we are only making use of a narrow set of terms from the statusfile
(namely `NEWSIG`, `GOODSIG`, `EXPSIG`, `EXPKEYSIG`, `REVKEYSIG`,
`BADSIG`, `ERRSIG`, `VALIDSIG`, `TRUST_UNDEFINED`, `TRUST_NEVER`,
`TRUST_MARGINAL`, `TRUST_FULLY`, `TRUST_ULTIMATE`), we are applying a
filter, so that only understood terms are written to the file.

Signed-off-by: David Runge <dvzrv@archlinux.org>
2024-02-04 10:06:42 +01:00
David Runge
3aa096a74f
makepkg: Emit early error if signature verification fails
Emit an early error message if tag or commit verification with git or
detached signature verification with gpg fails.
Make `verify_file_signature()` and `verify_git_signature()` return
non-zero in this case and set errors to `1`, so that later checks
in `check_pgpsigs()`, although still run, can not lead to a positive
result.

Signed-off-by: David Runge <dvzrv@archlinux.org>
2024-02-04 10:06:40 +01:00
morganamilo
bf76b5e89f libalpm: correctly log curl_download_internal return value
Signed-off-by: Allan McRae <allan@archlinux.org>
2024-02-04 10:23:34 +10:00
Allan McRae
ce528a2654 libalpm/discspace.c: ensure mount points provide directories
In the very unlikely situtation where getmntent() and friends return
non-null, but the mount directory is NULL, a null dereference could
occur. It is unclear what the best course of action is in this case,
so just move on to the next mount point.

Signed-off-by: Allan McRae <allan@archlinux.org>
2024-02-04 09:02:36 +10:00
Allan McRae
f996f30163 libalpm/remove.c: prevent undefined behaviour in shift_pacsave error path
Signed-off-by: Allan McRae <allan@archlinux.org>
2024-02-04 09:02:36 +10:00
Daniel M. Capella
2ba08e622b Update maintainers list
Signed-off-by: Daniel M. Capella <polyzen@archlinux.org>
Signed-off-by: Allan McRae <allan@archlinux.org>
2024-02-04 08:58:33 +10:00
Allan McRae
4856fb53ac Add -Wunused_result to debug build compiler flags
Signed-off-by: Allan McRae <allan@archlinux.org>
2024-02-04 08:53:44 +10:00
Allan McRae
a6b2524762 Ensure paths fit in PATH_MAX when cleaning cache
If a path length exceeds the PATH_MAX value, then it gets truncated
when building the path of the file to delete. This could (in a very
unlikely case...) result in the wrong file being deleted.  Check the
path fittedin the buffer before removing files.

Signed-off-by: Allan McRae <allan@archlinux.org>
2024-02-04 08:44:24 +10:00
Allan McRae
2079f6866a alpm_list_reverse: restore original list on failure
Signed-off-by: Allan McRae <allan@archlinux.org>
2024-02-04 07:56:00 +10:00
Allan McRae
845dadf183 _cache_mtree_open: remove unused variable
Signed-off-by: Allan McRae <allan@archlinux.org>
2024-02-04 07:56:00 +10:00
Allan McRae
dfee773364 clean_filename: use strdup instead of malloc and memcpy
Signed-off-by: Allan McRae <allan@archlinux.org>
2024-02-04 07:56:00 +10:00
Allan McRae
c64f898c48 _alpm_pkg_load_internal: remove unneeded if statement
This statement is always true due to an earlier test.

Signed-off-by: Allan McRae <allan@archlinux.org>
2024-02-04 07:56:00 +10:00
Allan McRae
16a2a79728 libalpm/signing.c: prevent underflow in length_check
The length_check function could underflow if the provided buffer index
is greater than the signature buffer length, leading to an out of
bounds read.

Signed-off-by: Allan McRae <allan@archlinux.org>
2024-02-04 07:54:12 +10:00
Allan McRae
6711d10f96 pacman/conf.c: fix leak on error in setdefaults()
Signed-off-by: Allan McRae <allan@archlinux.org>
2024-02-04 07:49:08 +10:00
Allan McRae
36fcff6e13 pacman/util.c: fix user after free in print_packages
Signed-off-by: Allan McRae <allan@archlinux.org>
2024-01-26 18:13:11 +10:00
Allan McRae
3c28c30133 Fix typo in exporting RUSTFLAGS
Fixes #77

Signed-off-by: Allan McRae <allan@archlinux.org>
2024-01-14 08:50:29 +10:00
Ronan Pigott
4c93e63ddf add.c: drop newline in permission and ownership log messages
These are the only log messages produced by pacman that include an
embedded newline, and it looks very incongruous in a typical pacman.log.

Signed-off-by: Allan McRae <allan@archlinux.org>
2024-01-10 08:52:35 +10:00
Allan McRae
f69d9b4475 makepkg: only check software once
Move the checks for software and gpg signing ability to after the
fakeroot section so that it is only executed once. This also fixes
gpg (lack of) interaction under fakeroot.

Fixes #69

Signed-off-by: Allan McRae <allan@archlinux.org>
2024-01-09 22:42:45 +00:00
Andrew Gregory
42fa74e91a free handle resources before running scripts
The primary purpose of this is to allow cleanup of file descriptors
allocated by curl that were left open in the child.  I am not aware of
any issues caused by the open file descriptors, but think it better to
not leave random open fd's lying around.

Signed-off-by: Andrew Gregory <andrew.gregory.8@gmail.com>
2024-01-09 22:39:14 +00:00
Andrew Gregory
929bad61c0 _alpm_handle_free: free all in-memory resources
Freeing handle resources was previously split awkwardly between
_alpm_handle_free and alpm_release.  This consolidates the freeing of
all in-memory resources to _alpm_handle_free, leaving alpm_release as a
thin wrapper that provides safety checks and frees any external
resources, e.g. removing lock files.

Signed-off-by: Andrew Gregory <andrew.gregory.8@gmail.com>
2024-01-09 22:39:14 +00:00
Morten Linderud
00d2b1f902
strip: don't create debug packages from .a files
.a files are not valid ELF files so we can't run objcopy nor debugedit
on them.

Rename STRIPLTO to STATICLIB to be more descriptive.

Signed-off-by: Morten Linderud <morten@linderud.pw>
2023-12-17 16:04:45 +01:00
Morten Linderud
7a4fff3310
strip: split off file stripping and debug package creation
Some projects might duplicate the file in multiple locations for one
reason or another. When debug packages are enabled, `makepkg` will only
strip the first occurrence of the binary and abort early on all the
other binaries.

Signed-off-by: Morten Linderud <morten@linderud.pw>
2023-12-17 16:04:45 +01:00
morganamilo
8d38746586
libalpm: fix check_pgp_signature docs
The function did have these return values a long time ago but now only
return 0 or -1.
2023-12-04 15:34:49 +00:00
Andrew Gregory
0df44c2e20 db.c: set pm_errno for server list modifications
Signed-off-by: Andrew Gregory <andrew.gregory.8@gmail.com>
2023-12-02 04:56:25 +00:00
Andrew Gregory
dc91476555 pacman: add cache server support
Signed-off-by: Andrew Gregory <andrew.gregory.8@gmail.com>
2023-12-02 04:56:25 +00:00
Andrew Gregory
bad3e13eaa conf.c: remove unnecessary _add_mirror function
It does very little, is only used in one place, and can't easily be
reused for other server types due to the inclusion of an error message.

Signed-off-by: Andrew Gregory <andrew.gregory.8@gmail.com>
2023-12-02 04:56:25 +00:00
Andrew Gregory
45e94e2dae pmtest: return pkg from addpkg2db
Allows more compact syntax:

p1 = self.addpkg2db('sync', pmpkg("foo"))

Signed-off-by: Andrew Gregory <andrew.gregory.8@gmail.com>
2023-12-02 04:56:25 +00:00
Andrew Gregory
3aa1975c1d alpm: add cache server support
Cache servers differ from regular servers in that they do not produce
warnings and are not removed from the server pool for "soft errors"
(i.e. the server was reachable, but the download failed) and they are
not used for databases.  If a host is used for both a cache server and a
regular server, it may still be removed from the server pool for soft
errors that occur when used as cache server and removal from the server
pool for soft errors will not affect future attempted use as a cache
server.

Signed-off-by: Andrew Gregory <andrew.gregory.8@gmail.com>
2023-12-02 04:56:25 +00:00
Andrew Gregory
56626816b6 dload: differentiate between hard and soft errors
Set error count to -1 to indicate a hard error to allow them to be
treated differently.

Signed-off-by: Andrew Gregory <andrew.gregory.8@gmail.com>
2023-12-02 04:56:25 +00:00
Allan McRae
0f512ae46e Do not increment on every database error to avoid overflow
Signed-off-by: Allan McRae <allan@archlinux.org>
2023-12-02 04:55:29 +00:00
Allan McRae
d56e9ed083 Increment error count on filelist conflicts in local database
Signed-off-by: Allan McRae <allan@archlinux.org>
2023-12-02 04:55:29 +00:00
Andrew Gregory
2d190d5a33 meson.build: add _FILE_OFFSET_BITS to pkgconfig
Meson automatically sets _FILE_OFFSET_BITS but that value was not
getting carried through to the libalpm pkgconfig file, breaking
downstream projects that relied on it.

Signed-off-by: Andrew Gregory <andrew.gregory.8@gmail.com>
2023-11-25 13:05:00 -08:00
Andrew Gregory
2e23126e2a remove unused pkgconfig template
libalpm uses meson's pkgconfig module which does not use the template
file.

Signed-off-by: Andrew Gregory <andrew.gregory.8@gmail.com>
2023-11-25 13:04:56 -08:00
Levente Polyak
18e49f2c97
debugflags: ensure to only append debug flags once when building
During a package build we call prepare_buildenv in multiple stages of
the process. For debug packages, one of the hooks is buildenv_debugflags
which populates the debug flags to the according variables.

The issue is that the behavior of the current implementation of
buildenv_debugflags is not idempotent, so consecutive calls will append
the same flags again. In certain cases this isn't an issue, however
for context aware build frontends like cargo any change of the build
inputs leads to a fresh build. This means that any invocation of such
a build ecosystem inside the package() function will trigger a full
rebuild, which is not desired.

To fix this issue, this commit makes buildenv_debugflags idempotent
by only appending flags once to the target variables.

Signed-off-by: Levente Polyak <anthraxx@archlinux.org>
2023-11-17 18:56:44 +01:00
Patrick Northon
0108e2c64e Omit trailing .git from url when comparing git remote urls. 2023-11-04 10:09:59 +10:00
Diego Viola
94d9c2affe doc/PKGBUILD: fix typo
Signed-off-by: Diego Viola <diego.viola@gmail.com>
Signed-off-by: Allan McRae <allan@archlinux.org>
2023-11-04 00:03:23 +00:00
morganamilo
6e9ab43451 Document MAKEPKG_LIBRARY in makepkg(8) 2023-11-04 00:02:17 +00:00
morganamilo
9af4033cad Rename LIBRARY to MAKEPKG_LIBRARY
Implements #59.
2023-11-04 00:02:17 +00:00
Vekhir
31ffbc94ca Delete entire $srcdir upon clean build
Currently, the file glob used to clean the $srcdir misses dotfiles.

This commit instead removes the directory entirely and recreates it.
Since the directory has to exist prior to deletion, the creation commands
are duplicated. Perhaps they could be moved to a function later on.

The directory cannot be removed while inside it, so the directory change
is moved down the line. One important insight here is that almost all functions
after it are actually independent of $pwd, allowing the optimization of just
not changing directory. They do however depend on the existence of $srcdir, so
it has to be recreated.
The only exception to this is `extract_sources` which depends on $pwd being $srcdir.

An alternative proposal wanted to extend the file matching for deletion, but it
was deemed impractical.
2023-11-04 00:01:22 +00:00
Jack Rosenthal
e9b385a636 alpm: Don't chroot() to "/"
chroot() requires CAP_SYS_CHROOT.  If the caller has put us in the
right root directory already, don't call chroot().  This allows
running pacman in a containerized environment without CAP_SYS_CHROOT.
2023-10-23 12:13:10 +00:00
morganamilo
917b67f5d1 Fix -D in package()
When entering fakeroot makepkg calls itself with it's original args
causing it to cd again and error
2023-10-20 22:40:44 +01:00
Morten Linderud
331b277eea makepkg: Implement the verify function
This patch implements a new verify function in makepkg. It allows us to
do arbitrary authentication on sources before extraction.

There are several new signing and validation methods being implemented
and it would be hard to have `makepkg` implement support for things such
as sequoia, cosign or minisign. This would allow us to distribute
generic validation functions.

Signed-off-by: Morten Linderud <morten@linderud.pw>
2023-10-02 05:12:12 +00:00
Felix Yan
30f9a2e263 Correct typos in zsh_completion.in 2023-10-02 04:34:24 +00:00
morganamilo
aff12189d8 libalpm: check filecache_find return and log errors
Some user had erros while updating their system.

:: Proceed with installation? [Y/n]
:: Retrieving packages...
checking keyring...
checking package integrity...
error: failed to commit transaction (invalid or corrupted package)
Errors occurred, no packages were upgraded.

The issue was filecache_find returning null and alpm passing that null
path to check validity. How this happened I have no idea. It may be
something to do with the user's cachedir being a network drive.

Also warn when the file exists but it is not a regular file or can not
be opened.
2023-09-30 13:28:31 +00:00
Allan McRae
332d2a1922 repo-add: clarify exit messages
Clarify if repo-add does not create a new database due to failures
or due to there being nothing to do.

Signed-off-by: Allan McRae <allan@archlinux.org>
2023-09-30 23:27:04 +10:00
Ivan Shapovalov
f91fa546f6 repo-add: do not recreate the database if nothing was changed
Signed-off-by: Ivan Shapovalov <intelfx@intelfx.name>
Signed-off-by: Allan McRae <allan@archlinux.org>
2023-09-30 23:18:41 +10:00
morganamilo
b4f11d5496 alpm: test access of symlinks not where they point
On platforms that have AT_SYMLINK_NOFOLLOW

Fixes FS#69720
2023-09-26 03:37:49 +00:00
morganamilo
015cdb21bd
Fix unused variable warning 2023-09-20 04:32:21 +01:00
Xiretza
05f283b5ad tests: fix order of fakechroot + fakeroot nesting
As noted in the fakechroot(1) man page, fakeroot and fakechroot
might wrap the same C library functions. Arch Linux hit this
recently with calls to stat(). It is important to start the fake
environment in proper order - fakeroot should be started inside
fakechroot.

Signed-off-by: Allan McRae <allan@archlinux.org>
2023-09-19 17:55:24 +10:00
Finlay Maroney
34611a6643 Avoid double slash when explicitly passing --root or --rootdir
Passing a path with a trailing slash to --root or --rootdir can lead to a
double slash at the start of paths.  e.g.

$ pacman --root / -v 2>1  | grep " //"
Log File  : //var/log/pacman.log

In MSYS2, paths starting with // will hit the network and fail.

Avoid this be explicitly stripping the trailing / from paths passed to these
flags.

Signed-off-by: Allan McRae <allan@archlinux.org>
2023-09-12 14:22:36 +10:00
Robin Candau
76b140c72a Replace the bzr package by breezy for the bzr protocol in makepkg.conf 2023-09-11 19:11:40 +02:00
Matthew Sexton
5f43ac85f6 specify which files are updated by --refresh option
Ref: FS#77697

Signed-off-by: Matthew Sexton <mssxtn@gmail.com>
Signed-off-by: Allan McRae <allan@archlinux.org>
2023-09-11 22:59:53 +10:00
morganamilo
0dfe5c96ae makepkg: add -D flag to change directory before building
This is similar to -C in git/make/nina. Sadly -C is already taken for
us.

This is useful for scripts where you for loop over packages, as well as
when I'm testing makepkg builds and I'm too lazy to cd.
2023-09-09 11:52:11 +10:00
InsanePrawn
36d70a93e2 pacman-key: allow overriding KEYRING_IMPORT_DIR with --populate-from
Signed-off-by: InsanePrawn <insane.prawny@gmail.com>
Signed-off-by: Allan McRae <allan@archlinux.org>
2023-09-07 00:12:41 +10:00
Allan McRae
717e5e9157 Add PRINT_FORMAT_LIST define to remove repetitive code
Signed-off-by: Allan McRae <allan@archlinux.org>
2023-09-06 17:56:55 +10:00
Allan McRae
e7d7433b4b Rename macro for print-format handling of strings
Signed-off-by: Allan McRae <allan@archlinux.org>
2023-09-06 17:56:55 +10:00
Jelle van der Waa
e210634982 util.c: extend --print-format with "%m"
Add md5sum as printable format string.

Signed-off-by: Allan McRae <allan@archlinux.org>
2023-09-06 17:56:55 +10:00
Jelle van der Waa
6968f77026 util.c: extend --print-format with "%G"
Add a new print attribute "%G" which prints groups.

Signed-off-by: Allan McRae <allan@archlinux.org>
2023-09-06 17:56:55 +10:00
Jelle van der Waa
06db927a1a util.c: extend --print-format with "%H"
Add a new print attribute "%H" which shows conflicts.

Signed-off-by: Jelle van der Waa <jelle@archlinux.org>
2023-09-06 17:56:55 +10:00
Jelle van der Waa
909f2e86c3 util.c: add "%O" to --print-format
Add the option to print optional depends with "%O".

Signed-off-by: Jelle van der Waa <jelle@archlinux.org>
2023-09-06 17:56:55 +10:00
Jelle van der Waa
5bd0b98b42 util.c: extend --print-format with %R and %P
Add provides "%P" and replaces "%R" as format attribute.

Signed-off-by: Jelle van der Waa <jelle@archlinux.org>
Signed-off-by: Allan McRae <allan@archlinux.org>
2023-09-06 17:56:55 +10:00
Jelle van der Waa
c1d4a6198c Extend --print-format with %L
Add format attribute for licenses.

Signed-off-by: Allan McRae <allan@archlinux.org>
2023-09-06 17:56:55 +10:00
Allan McRae
f5af66f130 Remove unnecessary check
Signed-off-by: Allan McRae <allan@archlinux.org>
2023-09-06 17:56:55 +10:00
Allan McRae
5473c9fd3f squash
Signed-off-by: Allan McRae <allan@archlinux.org>
2023-09-06 17:56:55 +10:00
Allan McRae
e58d799c47 Generalise concat_alpm_depends for any list
Replace concat_alpm_depends() with concat_list() which takes an
additional parameter to handle the formatting of non-string
data types.

Signed-off-by: Allan McRae <allan@archlinux.org>
2023-09-06 14:39:00 +10:00
Matthias Kurz
366b527757 libmakepkg: make sure git cloned repo's remote is named origin
makepkg assumes that the remote git repo is named "origin" at several
places in its handling of git sources. It is possible to set the remote
repo name since git v2.30.0 (with bug fix for bare checkouts in v2.30.2).

Add "--origin=origin" to all git clone commands.

Signed-off-by: Allan McRae <allan@archlinux.org>
2023-09-06 13:51:32 +10:00
morganamilo
e83e53f3f9 makepkg: lint empty arrays
While depend arrays are already linted, many array kinds are still
not. An empty string is never a valid array value so check all
arrays for it.
2023-09-06 12:14:55 +10:00
morganamilo
2348dcab22 pacman+libalpm: print version names for conflicting packages
When ever pacman prints a conflict, it now prints pkgname-version,
instead of just pkgname.

alpm_conflict_t now carries *alpm_pkg_ts instead of just the
names of each package.

Fixes FS#12536 (point 2)
2023-09-05 01:57:01 +00:00
morganamilo
f9d8beef45
Add meson log to artifacts 2023-09-04 22:00:51 +02:00
morganamilo
85ab0307d7
Fix compile on some platforms
Controlling the type of getmntinfo's param was decided by
whether or not we had the statvfs type avaliable. But getmntinfo uses
statfs regardless of this except on netbsd where it uses statvfs.

Add a check to detect which type our version of the function uses.
2023-09-04 22:00:48 +02:00
Nicolas Rolans
ffde12cebd repo-add: fix exit on mktemp failure 2023-08-28 12:43:56 +00:00
Jouke Witteveen
37dae721d3 Replace md5sums with sha256sums in documentation
As noted in !24, md5sums are outdated.
2023-08-28 12:27:28 +00:00
Ben Westover
aa3a1bc3b5 proto: Change the default checksum from md5 to sha256
MD5 isn't a very good checksum, and the PKGBUILD page on the Arch Wiki
states that it should not be used, instead recommending sha256 or b2.
This patch changes the default from md5 to sha256 because that seems to
be the most commonly used checksum today.

Signed-off-by: Ben Westover <kwestover.kw@gmail.com>
2023-08-28 22:25:10 +10:00
Allan McRae
298755c905 pacman: do not check file md5sums
The file md5sums are removed from the .MTREE file, so pacman should
not attempt to check them.

Signed-off-by: Allan McRae <allan@archlinux.org>
2023-08-28 22:17:51 +10:00
Levente Polyak
ee933acf84 makepkg: immutable bzr by hashing the checkout content
This feature makes bzr VCS build inputs immutable by adding support for
pinning a bzr checkout by a hash of its content using the deterministic
export functionality `bzr export`.

This feature allows to preserve security implications of immutable build inputs
using a trusted cryptographic hash function of the content.

Signed-off-by: Levente Polyak <anthraxx@archlinux.org>
2023-08-28 22:15:03 +10:00
Levente Polyak
ca3c873d48 makepkg: immutable mercurial sources by hashing the checkout content
This feature makes Mercurial VCS build inputs immutable by adding
support for pinning a Mercurial checkout by a hash of its content using
the deterministic export functionality `hg archive`.

This feature aids packagers by allowing them to use simple and
convenient refnames (instead of full commit hashes) in the `PKGBUILD`
while still preserving security implications of immutable build inputs
using a trusted cryptographic hash function of the content.

Signed-off-by: Levente Polyak <anthraxx@archlinux.org>
2023-08-28 22:15:03 +10:00
Levente Polyak
2fc2ab6cf0 makepkg: immutable git sources by hashing the checkout content
This feature makes Git VCS build inputs immutable by adding support for
pinning a Git checkout by a hash of its content using the deterministic
export functionality `git archive`.

This feature aids packagers by allowing them to use simple and
convenient refnames (instead of full commit hashes) in the `PKGBUILD`
while still preserving security implications of immutable build inputs
using a trusted cryptographic hash function of the content.

Previously VCS source downloads have been skipped for `--geninteg` and
`--source` as both options did not need a checkout. This commit changes
this behavior by forcing the download of all sources as integrity checks
and generation requires to have an up to date state.

Signed-off-by: Levente Polyak <anthraxx@archlinux.org>
2023-08-28 22:15:03 +10:00
kpcyrd
843bf21e79 libmakepkg: Fix non-reproducible binaries by processing debuginfo in order 2023-08-27 13:03:40 +02:00
Allan McRae
2c45e854ab Disable brittle valgrind test in CI
Signed-off-by: Allan McRae <allan@archlinux.org>
2023-05-22 19:32:47 +10:00
Allan McRae
a81ec016d7 Update pactest README
Signed-off-by: Allan McRae <allan@archlinux.org>
2023-05-22 19:25:23 +10:00
Allan McRae
55da1a01b6 makepkg.conf.in: strip leading slash from LIB_DIRS
Signed-off-by: Allan McRae <allan@archlinux.org>
2023-05-22 18:55:23 +10:00
Allan McRae
5e94752434 makepkg.conf.5: correction option name
Also fix typo "librarys"

Signed-off-by: Allan McRae <allan@archlinux.org>
2023-05-22 18:54:01 +10:00
Allan McRae
262aa6c24e Fix comment
Signed-off-by: Allan McRae <allan@archlinux.org>
2023-02-13 12:09:11 +00:00
Allan McRae
3323662ee0 makepkg: do not recurse into LIB_DIRS when looking for library provides
We should only find library provides in the configured directories, and
not their subdirectories.

Signed-off-by: Allan McRae <allan@archlinux.org>
2023-02-13 12:09:11 +00:00
Allan McRae
6c913af95d Add the -pedantic' compiler flag back to our debug builds
This was lost in the transition from autotools to meson. No additional
warnings are given with current gcc and clang.

Signed-off-by: Allan McRae <allan@archlinux.org>
2023-02-13 22:07:32 +10:00
Allan McRae
71764b6d4c makepkg.conf: allow configuration additions via a subdirectory
Move rust related buildflags to their own configuration file to
provide an example of how other languages could be supported.

Signed-off-by: Allan McRae <allan@archlinux.org>
2023-01-17 10:26:07 +10:00
Allan McRae
e0bbfb5682 libmakepkg: ensure clearing of buildflags happens first
When 'options=('!buildflags') is used, we want to ensure our
buildflags are cleared first. Currently this happens due to luck
of alphabetical ordering, but this could change with libmakepkg
drop-ins.

Signed-off-by: Allan McRae <allan@archlinux.org>
2023-01-13 11:35:42 +10:00
Allan McRae
09e82f01ea libmakepkg: move rust buildenv handling to separate file
This serves as a demonstration for how other languages could drop
in support into libmakepkg.

Signed-off-by: Allan McRae <allan@archlinux.org>
2023-01-13 11:35:35 +10:00
Stefan Weil
d35728f924 pacman-key: Fix shell syntax
Fixes: 3f8029af92 ("pacman-key: Use ngettext for plurals")
Signed-off-by: Stefan Weil <sw@weilnetz.de>
2023-01-01 15:54:48 +01:00
Allan McRae
3f8029af92 pacman-key: Use ngettext for plurals
There are two strings that may be singular or plural in pacman-key.
Use ngettext to handle these strings correctly, and provide a fallback
function if it is not available.

Fixes FS#70556.

Signed-off-by: Allan McRae <allan@archlinux.org>
2023-01-01 13:41:52 +10:00
Allan McRae
6344aab3bd zsh: make names unique to avoid clashes
The function _keys is a bit generic and can result in clashes.  Change
other functions starting with _key_ to be _pacman_key_ as well.

Fixes FS#74507.

Signed-off-by: Allan McRae <allan@archlinux.org>
2022-12-24 00:55:30 +10:00
morganamilo
52eb094aa2 Fix repo-add
Commit 4f43ce3e4a broke repo-add by
switching to parseopts without accounting for the added "--". This caused
the dbname to always be read as "--".

Accounts for "--" and makes repo-add respect "--" as end of opts.
2022-12-19 10:08:57 +10:00
Allan McRae
a194197369 makepkg.conf: clarify PKGEXT and SRCEXT
Mention valid suffixes should start with .pkg or .src

Fixes FS#64749.

Signed-off-by: Allan McRae <allan@archlinux.org>
2022-12-19 09:56:29 +10:00
Ziemowit Laski
f4f66fcca7 Bump required GPGME version to 1.12.0
GPGME_KEYLIST_MODE_LOCATE was introduced in 1.12.0

Signed-off-by: Allan McRae <allan@archlinux.org>
2022-12-13 11:46:18 +10:00
Allan McRae
bb035eba4c gitlab CI: use "meson setup" everywhere
Avoids a warning from meson.

Signed-off-by: Allan McRae <allan@archlinux.org>
2022-12-13 10:00:13 +10:00
Allan McRae
fcb1d4f87e makepkg: package debug source files with options 'debug' and '!strip'
When package software with debug symbols without stripping, we should
still process the files with debugedit and include the needed source
files in the package.

Signed-off-by: Allan McRae <allan@archlinux.org>
2022-12-13 10:00:13 +10:00
Allan McRae
471a030466 Avoid NULL deference in curl_check_finished_download
We have not set handle in the function at this stage, so we can not
assign an error to it.  Pass the handle to the function to avoid
waiting until the payload is retrieved.

Signed-off-by: Allan McRae <allan@archlinux.org>
2022-12-13 10:00:13 +10:00
Allan McRae
775d511f42 load_packages: fix memory leak on error
The memory assigned in _alpm_pkg_load_internal was not freed on
error.

Signed-off-by: Allan McRae <allan@archlinux.org>
2022-12-13 10:00:13 +10:00
Allan McRae
19a8587459 _alpm_pkg_load_internal: prevent double closing file descriptor
Move closing of the file descriptor until the end of the function, as
any following error will lead to a "goto error" that attempts to close
it again.

Signed-off-by: Allan McRae <allan@archlinux.org>
2022-12-13 10:00:13 +10:00
Allan McRae
ea83fd3927 Catch possible error in archive_entry_pathname when extracting files
Prevents a null deference on error.

Signed-off-by: Allan McRae <allan@archlinux.org>
2022-12-13 10:00:13 +10:00
Allan McRae
0fe764a253 Fix memory leak when setting up download bars
Signed-off-by: Allan McRae <allan@archlinux.org>
2022-12-13 10:00:13 +10:00
Allan McRae
3436bc6c3e Finish comparing all pairs of filenames for duplicates before erroring
This also prevents a use-after-free issue where we free the list we
are interating over and the do i->next.

Signed-off-by: Allan McRae <allan@archlinux.org>
2022-12-13 10:00:13 +10:00
Allan McRae
0e938f1886 libmakepkg: fix compatibility with bash-5.2 patsub_replacement
Bash-5.2 introduced the patsub_replacement shell option, which is enabled
by default.  Apparently is it supposed to handle a sed-like idiom, but
what it does achieve is making any substitution involving a "&" requiring
special care.

For makepkg's DLAGENTS, we replace "%o" and "%u" if present.  Any "&" in
the replacement fields triggers patsub_replacement unless quoted.  This is
particularly important for the URL field.

Add relevant quotes to avoid issues.

Signed-off-by: Allan McRae <allan@archlinux.org>
2022-12-12 18:37:59 +10:00
Allan McRae
1327ce7bd8 makepkg: remove md5sums from generated mtree file
md5sums are cryptographically broken and we supply sha256sums to verify
files on a users system have not been modified from the packaged version.

Signed-off-by: Allan McRae <allan@archlinux.org>
2022-12-04 20:15:33 +10:00
Allan McRae
310bf878fc repo-add: do not add md5sums to the repo dbs
Keeping md5sums in the repo databases no longer serves a real purpose.
md5sums are no longer considered  secure, and we already have sha256sums
in the repos (along with PGP verification).

Signed-off-by: Allan McRae <allan@archlinux.org>
2022-12-04 20:15:33 +10:00
Allan McRae
4f43ce3e4a repo-add: use parseopts from libmakepkg
Signed-off-by: Allan McRae <allan@archlinux.org>
2022-12-04 20:14:32 +10:00
Allan McRae
e7806a43e0 pacman.conf.in: adjust example custom repo path for consistency
The example makepkg.conf.in suggests using "PKGDEST=/home/packages". It makes
sense to use the same path for the custom repo example in pacman.conf.in.

Fixes FS#48497.

Signed-off-by: Allan McRae <allan@archlinux.org>
2022-12-04 20:11:43 +10:00
Allan McRae
23aa82812e Fix typo in comment
Signed-off-by: Allan McRae <allan@archlinux.org>
2022-11-08 14:20:36 +10:00
Allan McRae
05e52ef796 Document alpm_pkg_xdata_t type and accessor
Also more definitions to more relevant areas in alpm.h.

Signed-off-by: Allan McRae <allan@archlinux.org>
2022-11-08 14:19:35 +10:00
Allan McRae
83e5326ac9 Remove obsolete Doxyfile declarations
Signed-off-by: Allan McRae <allan@archlinux.org>
2022-11-08 11:49:31 +10:00
Allan McRae
b2c9543ea9 Use modern openssl interfaces for calculating MD5 and SHA256 checksum
The currently used openssl interfaces for calculating checksums have been
deprecated in openssl-3.0.  Move to the modern interfaces to avoid build
warnings.

Signed-off-by: Allan McRae <allan@archlinux.org>
2022-11-07 16:58:29 +10:00
Morten Linderud
3ed08f97ec
executable/meson.build: include debugedit.sh.in
Signed-off-by: Morten Linderud <morten@linderud.pw>
2022-11-07 01:02:12 +01:00
Andrew Gregory
da68447ec6 set bash env variables before running scripts
Bash sources user configuration files under a number of conditions that
can cause issues with scripts when bash is used as the scriptlet shell.

Bash assumes it's being run under rsh/ssh if stdin is connected to a
socket and sources the user bashrc unless the environment variable
$SHLVL is >= 2.  Commit 6a4c6a02de
switched from pipes to sockets when communicating with child processes
to work around SIGPIPE issues.  Normally $SHLVL would be inherited from
the shell running pacman, but operations involving scriptlets are
generally run with sudo which does not let the $SHLVL variable through
unless specifically configured to.

Similarly $BASH_ENV can cause bash to source user-specified configuration
files if set.

https://lists.gnu.org/archive/html/help-bash/2022-02/msg00082.html

Note: the list discussion and bash source all reference SHLVL >= 2, this
is the SHLVL value *after* bash has incremented it on startup.  Setting
it to 1 in pacman is sufficient to disable the unwanted behavior.

Signed-off-by: Andrew Gregory <andrew.gregory.8@gmail.com>
2022-10-15 10:40:59 -07:00
Allan McRae
86981383a2 Fix missing if
Signed-off-by: Allan McRae <allan@archlinux.org>
2022-10-09 13:43:31 +10:00
Frederik Schwan
de11824527 strip: Include .o files in strip operation
`.o` objects used to be omitted by strip.sh due to a missing match in
the `Relocatable file` section. This patch fixes the issue by handling
`.o` objects similar to kernel modules.

fixes FS#74941

Signed-off-by: Allan McRae <allan@archlinux.org>
2022-10-09 11:01:12 +10:00
Morten Linderud
478af273df strip: fix unique source paths
`${pkgbase}` was added to the wrong invocation. This ensures we are
producing correct debug packages.

Example from the package:

    /usr/src/debug/pacman/pacman-6.0.2/src/pacman/callback.c
    /usr/src/debug/pacman/pacman-6.0.2/src/pacman/callback.h
    /usr/src/debug/pacman/pacman-6.0.2/src/pacman/check.c
    /usr/src/debug/pacman/pacman-6.0.2/src/pacman/check.h

Fixes: 776b7c1e75 ("debugflags: Ensure we have unique source paths")
Signed-off-by: Morten Linderud <morten@linderud.pw>
Signed-off-by: Allan McRae <allan@archlinux.org>
2022-10-09 10:57:26 +10:00
Allan McRae
efd0c24c07 Always create directories outputted from debugedit in debug packages
The debugedit call to list all source files may include things like
build/<...>.  We have been filtering out these <> files, but they can
point to the build directory which is important to be available for
relative source paths stored in the .debug files.

Signed-off-by: Allan McRae <allan@archlinux.org>
2022-10-08 21:07:45 +10:00
Allan McRae
a6b06a5b17 libmakepkg: fix compatibility with bash-5.2 globskipdots
Bash 5.2 has a new globskipdots option, which is enabled by default. The
check_dotfiles lint fails with globskipdots due to the assumption that
at least the "." and ".." paths will match. Disabling globskipdots would
be the usual solution, but that fails on bash<5.2.  Instead, enable
nullglob for this check.

Signed-off-by: Allan McRae <allan@archlinux.org>
2022-10-02 11:40:52 +10:00
Allan McRae
546433b4fd Update Transifex client usage instructions
Signed-off-by: Allan McRae <allan@archlinux.org>
2022-09-26 21:10:54 +10:00
Allan McRae
e10751a1e0 Update Transifex config
Signed-off-by: Allan McRae <allan@archlinux.org>
2022-09-26 20:53:48 +10:00
Kristian Klausen
673ce1ab10 pacman-key: Don't check gpg's trustdb after each key revocation
The trustdb is marked as dirty when a key is revoked[1] and GPG will
recheck it the next time. Checking the trustdb can take 300-500ms which
with 52 revoked keys (and counting) adds up.

This is very noticeable when initializing and populating pacman's
keyring like archiso is doing[2]. It is also unnecessary as the trustdb
is always checked as the last step when populating the keyring.

[1] https://git.gnupg.org/cgi-bin/gitweb.cgi?p=gnupg.git;a=blob;f=g10/keyedit.c;h=1cb62de8a87a823e06b2ed74efdc9e7a4cd99e2b;hb=refs/heads/STABLE-BRANCH-2-2#l6509
[2] https://gitlab.archlinux.org/archlinux/archiso/-/issues/191
2022-09-26 20:22:11 +10:00
Allan McRae
53dd3e844a makepkg.8: add missing fullstop
Fixes FS#75838

Signed-off-by: Allan McRae <allan@archlinux.org>
2022-09-07 23:14:12 +10:00
Ben Westover
656abdb256 doc: Create documentation for pacman-db-upgrade and testpkg
There are two "binaries" that are currently missing documentation,
pacman-db-upgrade and testpkg. This patch adds that documentation.

Signed-off-by: Ben Westover <kwestover.kw@gmail.com>
Signed-off-by: Allan McRae <allan@archlinux.org>
2022-08-04 22:29:27 +10:00
Ben Westover
064e556c4e doc: Fix grammar in pacman.8.asciidoc
Signed-off-by: Ben Westover <kwestover.kw@gmail.com>
2022-08-02 23:04:22 +10:00
soloturn
184f593168 libmakepkg: Fix git clone command
Commit e017a5975c introduced the GITFLAGS
environmental variable. While ensuring the default of "--mirror" was
kept, there was a capitalisation mistake made. Handle the default for
GITFLAGS directly in the git clone command.
2022-08-02 13:07:09 +10:00
soloturn
e017a5975c makepkg: Add GITFLAGS environmental variable to customise checkout
The default flag used to clone a git repository when using makepkg
is "--mirror". However, when working with huge repositories, the use
of different flags during cloning can allow an faster checkout. For
example, using "--filter=blob:none" allows for small checkouts, at
the expense of requiring downloads during the build stage if anything
but the HEAD commit is used for the build. In addition, this example
would serve as a replacement for the often requested (but broken)
addition of --depth=1.

Add support for the environment variable GITFLAG to pass flags for
the git clone command. Note that this overrides the default rather
than adding to it in order to prevent incompatibilities.
2022-07-29 11:00:01 +10:00
Daan De Meyer
79bd512181 Add --keyringdir meson option to configure the keyring directory
On Debian, keyrings are stored in /usr/share/keyrings. To support
this, let's add a new --keyringdir option that allows configuring
the directory under datarootdir where the keyrings should be
imported from. We default to 'pacman/keyrings' for backwards
compatibility.
2022-07-29 10:17:52 +10:00
Alexander F. Rødseth
51b2e1c973 pacman: let the progress bar "C"/"c" move up and down at a more regular rate
For some terminal widths, the "C"/"c" character does not alternate at
regular intervals, but may look like it is stuck at either lowercase or
uppercase.

The previous behavior toggled based on the character position, while this
new behavior toggles the chomp alternation based on the progress percentage value.

This leads to slightly improved chomping.

Signed-off-by: Alexander F. Rødseth <xyproto@archlinux.org>
Signed-off-by: Allan McRae <allan@archlinux.org>
2022-07-29 09:44:04 +10:00
Alexander F. Rødseth
5abe1455f2 pacman: remove redundant argument
The fill_progress function is called from two locations,
and both locations pass in the same percentage value twice.

This patch modifies the function signature to to receive the
percentage value just once.

Signed-off-by: Alexander F. Rødseth <xyproto@archlinux.org>
Signed-off-by: Allan McRae <allan@archlinux.org>
2022-07-29 09:42:38 +10:00
Joe Baldino
daa2db6a23 meson: replace deprecated get_pkgconfig_variable()
Apparently that function was deprecated in 0.56, so use the generic
getter introduced in 0.51 instead. This squashes a warning.

Signed-off-by: Joe Baldino <pedanticdm@gmx.us>
Signed-off-by: Allan McRae <allan@archlinux.org>
2022-07-29 09:41:47 +10:00
Chris Down
ff7c6c8e57 util: Flush cursor state to stdout before removing signal handler
It's possible that the cursor does not reappear after pressing ^C during
shutdown. In my case, I noticed this when pressing ^C after getting
results from `pacman -F` -- this can reasonably reliably be triggered by
issuing a file query and pressing ^C shortly after results are shown.

There are two reasons for this issue:

1. The graceful SIGINT handler is removed at the start of cleanup(), but
   the window from entering cleanup() to reaching exit() is non trivial.
   The main offender is FREELIST(pm_targets), which on my T14s takes
   >0.1s to execute. This means that if you are unlucky enough to press
   ^C while there, the cursor isn't coming back, because we haven't
   issued any command to show the cursor again yet, and the userspace
   signal handler is already blown away.
2. Moving console_cursor_show() to earlier in cleanup() only half solves
   the issue. While it's fine not to flush after _hiding_ the cursor,
   since it will at least make itself apparent before any other text
   reaches the screen, _showing_ the cursor must be followed by flushing
   stdout, because once the graceful SIGINT handler is gone, if you
   press ^C, no flush will be triggered (and thus there will be no
   cursor).

This fixes the issue by always starting out by showing the cursor again
at cleanup() time. This means that no matter where we get caught at ^C,
we will not end up leaving the terminal without its beloved ensign.

Signed-off-by: Chris Down <chris@chrisdown.name>
Signed-off-by: Allan McRae <allan@archlinux.org>
2022-07-22 10:20:55 +10:00
Chris Down
015eb31c3a dload: Remove unused ABORT_SIGINT
The last user of ABORT_SIGINT was removed in commit 84723cab5d
("Cleanup the old sequential download code"), and this isn't exported as
part of the public API.

Signed-off-by: Chris Down <chris@chrisdown.name>
Signed-off-by: Allan McRae <allan@archlinux.org>
2022-07-21 20:00:44 +10:00
Jelle van der Waa
cb9776a07b util.c: extend --print-format with %C, %D, %M
Extend print-format with checkdepends, depends and makedepends.

Signed-off-by: Jelle van der Waa <jelle@archlinux.org>
Signed-off-by: Allan McRae <allan@archlinux.org>
2022-07-21 19:58:20 +10:00
Jelle van der Waa
00bc386d5a util.c: extend --print-format with %b for builddate
Signed-off-by: Jelle van der Waa <jelle@archlinux.org>
Signed-off-by: Allan McRae <allan@archlinux.org>
2022-07-21 19:56:18 +10:00
Allan McRae
7bcc2d9b23 Correctly handle failure in getting build or install dates
alpm_pkg_get_builddate() and alpm_pkg_get_installdate() both return -1 on
error. Correctly handle the error condition in pacman.

Signed-off-by: Allan McRae <allan@archlinux.org>
2022-07-21 19:50:10 +10:00
Jelle van der Waa
819a0c2986 util.c: extend --print-format with expac options
Extend --print-format with all expac format strings which can be easily
added without conversions and through a simple C macro.

Signed-off-by: Jelle van der Waa <jelle@archlinux.org>
Signed-off-by: Allan McRae <allan@archlinux.org>
2022-07-21 19:09:59 +10:00
Andrew Gregory
6dcd4b5383 makepkg: store pkgtype in xdata
Package type is not relevant to alpm or even exposed to front-ends in
any way.

Signed-off-by: Andrew Gregory <andrew.gregory.8@gmail.com>
2022-07-21 19:01:45 +10:00
Andrew Gregory
fe028c7f6a query: print extended data when extra info is requested
Signed-off-by: Andrew Gregory <andrew.gregory.8@gmail.com>
2022-07-21 19:01:38 +10:00
Andrew Gregory
3405709b46 add extended data field for arbitrary package data
This adds a mechanism for package builders to add arbitrary data to
packages that is not necessarily relevant enough to the package
installation process to gain first-class support in alpm.  Currently
these fields have to be added to parsers with a "not actually used"
comment and can't be retrieved through the API.

Extended data is stored in "name=value" format in the xdata field
(%XDATA% in desc files):

xdata = pkgtype=debug

or

%XDATA%
pkgtype=debug

Signed-off-by: Andrew Gregory <andrew.gregory.8@gmail.com>
2022-07-21 19:01:27 +10:00
Allan McRae
2bf67416c1 Fix remaining email list address
One instance was missed in b0a2fd75b2.

Signed-off-by: Allan McRae <allan@archlinux.org>
2022-06-25 22:59:20 +10:00
Jean Raby
6daeb37fe8 pacman: silence "info" msg when using --print
This allows for parsing the output of:
    pacman --upgrade --print-format '<format>' pkg.zst

without having to remove info messages from it.

Signed-off-by: Allan McRae <allan@archlinux.org>
2022-06-25 22:45:00 +10:00
Morten Linderud
776b7c1e75 debugflags: Ensure we have unique source paths
In some cases packages are built outside of a directory which contains
pkgname-pkgver, this results in source listing in debug packages having
a conflicting path like `/usr/src/debug/build/` which is not ideal.

This patch ensures we always include the pkgbase to ensure the paths are
unique.

Signed-off-by: Morten Linderud <morten@linderud.pw>
Signed-off-by: Allan McRae <allan@archlinux.org>
2022-06-25 10:45:04 +10:00
Levente Polyak
0031cd1e46 doc/BUILDINFO.5: document buildtool and buildtoolver properties
The feature has been introduced in commit a33cdac10b
The buildinfo version has been bumped in commit 0428f6213b

Signed-off-by: Levente Polyak <anthraxx@archlinux.org>
2022-06-25 10:25:36 +10:00
Allan McRae
d1e95c4e54 Gitlab CI: Install glibc-debug valgrind test
Currently our gitlab CI is failing due to valgrind breakage. With
Arch stripping glibc, valgrind now requires debuginfod to be active.
However the gitlab CI system combined without our testsuite does not
retrieve these symbols, even when the appropriate environmental
variable is set.

Work around this by installing the glibc-debug package directly
using a slight kludge...  All blame for this approach is assigned
to foutrelis!

Signed-off-by: Allan McRae <allan@archlinux.org>
2022-06-16 09:00:18 +10:00
Allan McRae
84dc662d65 makepkg: add source signing PGP keys to source package if available
Arch Linux is adding source signing PGP keys to their package source
tree alongside PKGBUILDs in the form keys/pgp/$fingerprint.asc. As the
PGP keyserver infrastructure is a mess, this helps other people validate
sources in a PKGBUILD.

Add the keys to source packages if found alongside the PKGBUILD.

Signed-off-by: Allan McRae <allan@archlinux.org>
2022-05-31 20:13:14 +10:00
Allan McRae
fdf04cdac5 doc/PKGBUILD: remove Arch Linux specific advise
The documentation for the license array was specific to Arch Linux.
Remove it and some minor other Arch Linux specific references.

Signed-off-by: Allan McRae <allan@archlinux.org>
2022-05-18 22:06:07 +10:00
Allan McRae
18152a211a libmakepkg: Do not "strip" files when the format is not recognised
We use a multi step process during stripping to ensure permissions do
not get changed.  However, if the initial objcopy fails, the subsequent cat
results in a blank file.  Abandon early if objcopy fails.

Fixes FS#74486

Signed-off-by: Allan McRae <allan@archlinux.org>
2022-05-12 09:45:12 +10:00
Jonas Witschel
f5f9e0f4ea makepkg: use bsdtar --no-read-sparse for archive creation if available
bsdtar uses the "pax" TAR archive format by default, which has support for
storing sparse file information in the archive. Unfortunately this is a source
of unreproducibility because the sparse encoding is taken from the file system
and different file systems handle sparse files differently: some file systems
have no support for sparsely encoded files at all, and even file systems with
sparse file support can report different file information for identical files
due to differing implementations.

As a real world example where this happens, consider the Arch Linux package
"brotli-testdata 1.0.9-7", which contains a sparsely encoded all-zeros file
"usr/share/brotli/testdata/zeros". Building this package on a btrfs file system
yields a different package than building it on tmpfs or ext4 solely due to
different sparse file information that gets recorded in the package tarball.

To improve the reproducibility of archives containing sparsely encoded files,
libarchive version 3.6.0 introduces a new --no-read-sparse option. This skips
reading sparse file information from disk entirely and therefore stores files
"expanded" in the archive, which is the only way to make them reliably
reproducible across file systems.

makepkg will use this option if libarchive is recent enough to support it,
which is detected at build time.

Signed-off-by: Allan McRae <allan@archlinux.org>
2022-03-11 09:43:59 +10:00
morganamilo
bddfcc3f40 libalpm: add getter for handle on db and pkg
db and pkg store a pointer to the handle for internal use but don't
actually provide a way for a user to get it.

Making this accessible is more convenient for front ends and FFI
wrappers.

For example, in other languages it's common to return the error value
directly. To achieve this the python and rust wrappers also store their
own pointer to the handle inside their own pkg/db wrappers.

Exposing this would allow the wrappers to forgo the extra pointer and
just return `pkg.get_handle().last_error()`.
2022-03-08 09:56:53 +10:00
Andrew Gregory
221905b5ae query: allow querying extra info for package files
Signed-off-by: Andrew Gregory <andrew.gregory.8@gmail.com>
Signed-off-by: Allan McRae <allan@archlinux.org>
2022-03-07 20:37:45 +10:00
Andrew Gregory
293762ea8b query: only strip leading local/ for db packages
Signed-off-by: Andrew Gregory <andrew.gregory.8@gmail.com>
Signed-off-by: Allan McRae <allan@archlinux.org>
2022-03-07 20:37:01 +10:00
Allan McRae
40583ebe89 Avoid information leakage with badly formed download header
Parsing of Content-Disposition relies on well formed headers.
A malformed header such as:

Content-Disposition="";

will result in a strnduppayload->content_disp_name, -1, ptr),
which will copy memory until it hits a \0.

Prevent this by only copying the value if it exists.

Fixes FS#73704.

Signed-off-by: Allan McRae <allan@archlinux.org>
2022-03-06 21:49:56 +10:00
Allan McRae
632eb9739d Do not use WKD to import keys for package installs from a file
In order to use WKD in pacman -U/--upgrade operations, we need to
get the packager information from the .PKGINFO within the package.
That has obvious security implications. e.g. something like this
could convince a user to download a different key to what they
expect:

packager = foo bar <>^[[2K^[[0G:: Import PGP key DEADBEEF, "foo <bar>

While downloading an untrusted key has little impact due to the
web-of-trust model used by pacman, this could be bad in combination
with an exploit that allowed trust of keys in the keyring to be
altered.

To be safe, do not use WKD when installing using -U.

Fixes FS#73703.

Signed-off-by: Allan McRae <allan@archlinux.org>
2022-03-06 21:25:30 +10:00
Allan McRae
6b37d99431 Fix segfault when failing to import keys
Avoid a segfault when a search of the keyserver returns that the
key is found but returns no primary IDs.  We are then likely going
to fail the import, but attempt anyway because no-one know what
a keyserver will do!

Fixes FS#73534.

Signed-off-by: Allan McRae <allan@archlinux.org>
2022-03-06 20:36:59 +10:00
Allan McRae
e1246baddd Ensure WKD key lookup returns the correct key
Looking up a key using WKD just ensures you have a key with the
same email address, it does not ensure that a key with the correct
fingerprint has been downloaded.

Check a key with the relevant fingerprint is available after a
WKD import.
2022-03-06 19:57:09 +10:00
morganamilo
7340fb9b2e libalpm: mark filelist_contains as taking a const filelist
This is useful for bindings as it guarantees the value will not be
changed.

Signed-off-by: Allan McRae <allan@archlinux.org>
2022-03-06 17:32:23 +10:00
Allan McRae
7ba2c276db Fix typo/omission in man pages
Signed-off-by: Allan McRae <allan@archlinux.org>
2022-03-06 17:25:42 +10:00
Allan McRae
c89f42f17b meson: do not use meson.source_root() and meson.build_root()
Using meson.source_root() and meson.build_root() are deprectated in
meson-0.56.  Using current_source_dir() or current_build_dir() (which
have been available in all Meson versions) would require manually
adding "../" in some places.  Instead, use project_source_root() and
project_build_root() and require meson-0.56.

Signed-off-by: Allan McRae <allan@archlinux.org>
2022-03-06 16:26:34 +10:00
Allan McRae
3a39eff15e meson.build: change ExternalProgram.path to full_path
Removes "Future-deprecated features used", but reuires meson-0.55

Signed-off-by: Allan McRae <allan@archlinux.org>
2022-03-06 15:55:17 +10:00
Allan McRae
6cdb2030c6 Update Doxygen configuration to silence warnings
Signed-off-by: Allan McRae <allan@archlinux.org>
2022-03-06 15:32:34 +10:00
Allan McRae
ad918bcb75 Remove reference to internal type in docs
Signed-off-by: Allan McRae <allan@archlinux.org>
2022-03-06 15:32:27 +10:00
Allan McRae
569bcd9d26 Add missing parameter names to silence doxygen
Signed-off-by: Allan McRae <allan@archlinux.org>
2022-03-06 15:24:19 +10:00
Allan McRae
5bbda937f1 Silence meson warning about extract_all_objects
Upstream is changing the default from false to true.  This makes
no difference to us, so just set as the future default.

Signed-off-by: Allan McRae <allan@archlinux.org>
2022-03-06 15:07:57 +10:00
Allan McRae
0a792843f9 Silence meson run_command warning
Upsteam is warning about future change in the run_command check
argument. Ref: https://github.com/mesonbuild/meson/issues/9300

Signed-off-by: Allan McRae <allan@archlinux.org>
2022-03-06 14:53:42 +10:00
Evangelos Foutras
e1ce2351f5 Make link time optimization flags configurable
We want to use -flto=auto in Arch Linux to speed up building, but we
can't hardcode it in buildenv/lto.sh because other downstreams might
have clang < 13.0.0 which did not recognize -flto=auto as equivalent
to -flto=full.

Introducing an LTOFLAGS variable to makepkg.conf seems the way to go.

Signed-off-by: Allan McRae <allan@archlinux.org>
2022-03-06 14:45:36 +10:00
Allan McRae
49b08fa9d1 libmakepkg/autodep: fix module name
Signed-off-by: Allan McRae <allan@archlinux.org>
2022-01-13 13:45:42 +10:00
Morten Linderud
241c29f0cc makepkg: Implement pkgtype in .PKGINFO
This implements pkgtype into .PKGINFO. This is useful to ensure tools
parsing packages do not miss important context on the creation of the
package.

For instance discovering if a given .pkg.tar is a debug package, one
would have to do heuristics on the pkgdesc and "${pkgbase}-debug".
However both of these values are controlled by the packager.

Similarly, the heuristic for discovering split packages is if pkgbase
and pkgname differ, which can happen in any package as both values are
packager controlled.

This should ensure we don't need to rely on heuristics and instead
include the context of how the package was created.

Signed-off-by: Morten Linderud <morten@linderud.pw>
Signed-off-by: Allan McRae <allan@archlinux.org>
2022-01-09 14:03:16 +10:00
Morten Linderud
ae2f506ddf strip: Use debugedit instead of AWK to parse source files
This moves us from the fairly ugly AWK parsing line to debugedit which
originally comes out of the rpm project.

The original code has issues parsing anything that was not straight
C/C++ and languages like Rust or Go would return invalid source code
files. debugedit handles all these cases better.

Fixes FS#66755
Fixes FS#66888
Fixes FS#65677

Signed-off-by: Morten Linderud <morten@linderud.pw>
Signed-off-by: Allan McRae <allan@archlinux.org>
2022-01-09 13:58:12 +10:00
Allan McRae
42fe4864a0 libmakepkg: add extra buildflags only when buildflags is not disabled
This means options=('!buildflags') will disable the addition of CFLAG
etc for LTO and debug building.

Signed-off-by: Allan McRae <allan@archlinux.org>
2022-01-09 12:45:58 +10:00
Jonathan Sköld
a8d9fb8d9c Print the target arch when using the %a format specifier
Adds the %a format specifier to allow printing of a target's arch
when using --print-format.

Signed-off-by: Jonathan Sköld <arch@skold.dev>
Signed-off-by: Allan McRae <allan@archlinux.org>
2022-01-02 21:39:10 +10:00
Sefa Eyeoglu
446972b404 pacman: simplify chomp mouth logic
Signed-off-by: Allan McRae <allan@archlinux.org>
2022-01-02 20:57:42 +10:00
Sefa Eyeoglu
e654aa8ac6 pacman: support multiple chomps at the same time
When two progressbars are present, one of them always had c while the
other always had C as the mouth

Signed-off-by: Allan McRae <allan@archlinux.org>
2022-01-02 20:55:11 +10:00
Morten Linderud
2fe1ba5d81 makepkg: Use pkgbase in pkgdesc for debug packages
When trying to identify debug packages among other packages we
discovered that it's pkgname used in pkgdesc. Since pkgname can
sometimes be an array when building debug packages for a split package,
this could potentially include a pkgname that might not make sense
depending on the order of the array.

This patch simply uses pkgbase as it seems more correct.

Signed-off-by: Morten Linderud <morten@linderud.pw>
Signed-off-by: Allan McRae <allan@archlinux.org>
2022-01-02 18:15:11 +10:00
Allan McRae
0be1d4e5d0 Remove parsing of long removed files in .PKGINFO
These fields have not existed for many years.

Signed-off-by: Allan McRae <allan@archlinux.org>
2022-01-02 18:06:15 +10:00
Xiretza
e37f7d8b6b makepkg: use -ffile-prefix-map instead of -fdebug-prefix-map
>From gcc(1):

-ffile-prefix-map=old=new
	[...] Specifying this option is equivalent to specifying all the
	individual -f*-prefix-map options. This can be used to make reproducible
	builds that are location independent.

Specifically, this additionally enables -fmacro-prefix-map=, which causes
prefix mapping to be applied to expansions of __FILE__ and similar macros.

Without this option, if source files are compiled by passing the
absolute file path to the compiler (as done by e.g. cmake), any
expansions of __FILE__ (e.g. from uses of assert()) will contain
$srcdir.

Signed-off-by: Allan McRae <allan@archlinux.org>
2022-01-02 17:42:43 +10:00
Allan McRae
90df85e9cf Update copyright years
./build-aux/update-copyright 2021 2022

Signed-off-by: Allan McRae <allan@archlinux.org>
2022-01-02 13:34:52 +10:00
Oskar Roesler (bionade24) via pacman-dev
9f23654722 pacman: print additional error information to stderr
Prints extra information provided by file conflict or corrupt package messages
to stderr instead of stdout

Signed-off-by: Oskar Roesler (bionade24) <o.roesler@oscloud.info>
Signed-off-by: Allan McRae <allan@archlinux.org>
2021-12-29 17:53:51 +10:00
morganamilo
58c81fa213 alpm: return -1 for error in find_dl_candidates
This is the error value generally used and the calling function
explicitly checks for -1, later causing the error to be missed
and the transaction to continue.

> pacman -S xterm
warning: xterm-369-1 is up to date -- reinstalling
resolving dependencies...
looking for conflicting packages...

Package (1)  Old Version  New Version  Net Change  Download Size

extra/xterm  369-1        369-1          0.00 MiB       0.42 MiB

Total Download Size:   0.42 MiB
Total Installed Size:  1.05 MiB
Net Upgrade Size:      0.00 MiB

:: Proceed with installation? [Y/n]
error: no servers configured for repository: extra
(1/1) checking keys in keyring                                                                 [--------------------------------------------------------] 100%
(1/1) checking package integrity                                                               [--------------------------------------------------------] 100%
error: failed to commit transaction (wrong or NULL argument passed)
Errors occurred, no packages were upgraded.
2021-12-29 16:16:18 +10:00
morganamilo
3a112668b5 pacman: improve backup printing
The current backup printing does not fit in with the rest of the info at
all. Change to be more consistant.

Old:

Backup Files    :
MODIFIED	/etc/pacman.conf
UNMODIFIED	/etc/makepkg.conf

New:

Backup Files    : /etc/pacman.conf [modified]
                  /etc/makepkg.conf [unmodified]

Signed-off-by: morganamilo <morganamilo@archlinux.org>
Signed-off-by: Allan McRae <allan@archlinux.org>
2021-12-29 15:49:35 +10:00
Allan McRae
9b766badd2 libmakepkg: automatically add library dependencies
Add linked libraries to a packages dependency list. This is the partner
to automatically generated library provides, and thus depends take the
same format. To help with bootstrapping, library dependencies are only
added if the relevant provide exists.

Signed-off-by: Allan McRae <allan@archlinux.org>
2021-12-29 15:20:05 +10:00
Allan McRae
b234280083 libmakepkg: automatically add library sonames to provides
When the option "autodeps" is enabled, makepkg will add provides
entries for libraries found in the directories specified in LIB_DIRS
in makepkg.conf.  The entries LIB_DIRS array have the format
"prefix:directory".  For example, the entry "lib:usr/lib" will search
$pkgdir/usr/lib for library sonames and add "lib:libfoo.so.1" to the
provides array.

Signed-off-by: Allan McRae <allan@archlinux.org>
2021-12-29 15:20:05 +10:00
Allan McRae
060ab4a289 libmakepkg: add framework for autodeps
Signed-off-by: Allan McRae <allan@archlinux.org>
2021-12-29 15:20:05 +10:00
Allan McRae
354a300cd2 makepkg: remove libdepends and libprovides
This will be replaced by a better system

Signed-off-by: Allan McRae <allan@archlinux.org>
2021-12-29 15:20:05 +10:00
Allan McRae
26ee6ff6ad LTO: Add -flto to LDFLAGS for clang
GCC automatically detects when it is linking LTO objects, but clang does
not.  Add -flto to LDFLAGS to make this work for clang too.

Signed-off-by: Allan McRae <allan@archlinux.org>
2021-12-24 17:59:32 +10:00
Allan McRae
3710960090 Fix file permissions 2021-12-12 14:34:53 +10:00
Allan McRae
d21fb58da3 Gitlab CI: add --werror to debug build
Catch build warnings in the CI.

Signed-off-by: Allan McRae <allan@archlinux.org>
2021-11-21 09:54:56 -08:00
Allan McRae
5352367022 Prevent translation of curl
Signed-off-by: Allan McRae <allan@archlinux.org>
2021-11-20 12:39:42 -08:00
morganamilo
5287cc7251 alpm: fix wrong access() being used
When removing files we check _alpm_access() to see if we can write
(delete) the file. If not, we check if the file exists because if the
file does not exist then we don't actually need to remove it so there's
no issue.

However the second call uses acess() instead of _alpm_access() which
does not the rootdir into account.
2021-11-20 12:39:22 -08:00
Evangelos Foutras
fed522775d makepkg.conf: Pass -q as the first option to curl
As per curl(1), the -q (--disable) option must be first on the command
line to disable reading the curlrc config file. Without being first it
does not appear to have any effect.

Signed-off-by: Evangelos Foutras <evangelos@foutrelis.com>
2021-11-20 12:38:57 -08:00
morganamilo
b0a2fd75b2 Update mailing list url
change pacman-dev@archlinux.org to pacmandev@lists.archlinux.org

Most of this is copyright notices but this also fixes FS#72129 by
updating the address in docs/index.asciidoc.
2021-11-20 12:38:25 -08:00
Carlo Teubner
806ccd90ed "pacman -Q --changelog": fix writing uninit'd mem
Previously, when printing a package changelog to stdout, we would write
chunks of data that were not necessarily nul-terminated to stdout using
a function (fputs) which requires the input string to be nul-terminated.

On my system, this would result in occasional garbage characters showing
up in the "pacman -Qc" output.

Fix this by never nul-terminating the chunk, and using the fwrite()
function which takes an explicit input size and does not require a
nul-terminated string.

Signed-off-by: Carlo Teubner <carlo@cteubner.net>
2021-11-20 12:36:59 -08:00
Vladimir Panteleev
b242f5f24c libalpm: Log URLs when retrying
Allow finding which mirror was used to fetch a file.

This makes it a bit easier to debug situations in which mirrors serve
bad files with HTTP 200.

Signed-off-by: Vladimir Panteleev <archlinux@cy.md>
2021-11-20 12:36:29 -08:00
Andrew Gregory
529e208f39 remove YouCompleteMe config
Added, seemingly by accident, with meson in
51db84750e

Signed-off-by: Andrew Gregory <andrew.gregory.8@gmail.com>
2021-11-20 12:22:06 -08:00
406 changed files with 41206 additions and 32213 deletions

View file

@ -1,5 +1,5 @@
# EditorConfig configuration for pacman # EditorConfig configuration for pacman
# http://EditorConfig.org # https://editorconfig.org
# Top-most EditorConfig file # Top-most EditorConfig file
root = true root = true

View file

@ -16,18 +16,22 @@ default:
python python
fakeroot fakechroot fakeroot fakechroot
meson meson
artifacts:
when: always
paths:
- build/meson-logs/meson-log.txt
arch: arch:
extends: .arch-test extends: .arch-test
script: script:
- meson build - meson setup build
- ninja -C build - ninja -C build
- fakechroot meson test -C build - fakechroot meson test -C build
arch-debug: arch-debug:
extends: .arch-test extends: .arch-test
script: script:
- meson --buildtype=debug build - meson setup --buildtype=debug --werror build
- ninja -C build - ninja -C build
- fakechroot meson test -C build - fakechroot meson test -C build
@ -35,55 +39,56 @@ arch-docs:
extends: .arch-test extends: .arch-test
script: script:
- pacman -Syu --needed --noconfirm asciidoc - pacman -Syu --needed --noconfirm asciidoc
- meson -Ddoc=enabled build - meson setup -Ddoc=enabled build
- ninja -C build - ninja -C build
arch-clang: arch-clang:
extends: .arch-test extends: .arch-test
script: script:
- pacman -Syu --needed --noconfirm clang - pacman -Syu --needed --noconfirm clang
- CC=clang meson build - CC=clang meson setup build
- ninja -C build - ninja -C build
- fakechroot meson test -C build - fakechroot meson test -C build
arch-valgrind: #arch-valgrind:
extends: .arch-test # extends: .arch-test
script: # script:
- pacman -Syu --needed --noconfirm valgrind # - pacman -Syu --needed --noconfirm valgrind
- meson build # - pacman -U --noconfirm https://geo.mirror.pkgbuild.com/core-debug/os/x86_64/glibc-debug-$(pacman -S --print-format %v glibc)-x86_64.pkg.tar.zst
- ninja -C build # - meson setup build
- PACTEST_VALGRIND=1 fakechroot meson test -C build # - ninja -C build
# - PACTEST_VALGRIND=1 fakechroot meson test -C build
arch-nettle: arch-nettle:
extends: .arch-test extends: .arch-test
script: script:
- meson -Dcrypto=nettle --buildtype=debug build - meson setup -Dcrypto=nettle --buildtype=debug build
- ninja -C build - ninja -C build
- fakechroot meson test -C build - fakechroot meson test -C build
arch-no-gpg: arch-no-gpg:
extends: .arch-test extends: .arch-test
script: script:
- meson -Dgpgme=disabled --buildtype=debug build - meson setup -Dgpgme=disabled --buildtype=debug build
- ninja -C build - ninja -C build
- fakechroot meson test -C build - fakechroot meson test -C build
arch-no-curl: arch-no-curl:
extends: .arch-test extends: .arch-test
script: script:
- meson -Dcurl=disabled --buildtype=debug build - meson setup -Dcurl=disabled --buildtype=debug build
- ninja -C build - ninja -C build
- fakechroot meson test -C build - fakechroot meson test -C build
arch-no-nls: arch-no-nls:
extends: .arch-test extends: .arch-test
script: script:
- meson -Di18n=false --buildtype=debug build - meson setup -Di18n=false --buildtype=debug build
- ninja -C build - ninja -C build
- fakechroot meson test -C build - fakechroot meson test -C build
debian: debian:
image: debian:bullseye image: debian:bookworm
before_script: before_script:
- apt update - apt update
- > - >
@ -93,7 +98,7 @@ debian:
gettext python3 python3-setuptools dash gawk ca-certificates gettext python3 python3-setuptools dash gawk ca-certificates
fakeroot fakechroot fakeroot fakechroot
script: script:
- meson --buildtype=debug build - meson setup --buildtype=debug build
- ninja -C build - ninja -C build
- fakechroot meson test -C build - fakechroot meson test -C build
@ -109,6 +114,19 @@ fedora:
fakeroot fakechroot fakeroot fakechroot
perl-Module-Load-Conditional perl-Module-Load-Conditional
script: script:
- meson --buildtype=debug build - meson setup --buildtype=debug build
- ninja -C build - ninja -C build
- fakechroot meson test -C build - fakechroot meson test -C build
pages:
extends: .arch-test
script:
- pacman -Syu --needed --noconfirm asciidoc
- meson setup -Ddoc=enabled build
- ninja -C build html
artifacts:
paths:
- build/doc
publish: build/doc
rules:
- if: $CI_COMMIT_BRANCH == "release/6.1.x"

View file

@ -12,7 +12,7 @@ Daenyth Blank <Daenyth+arch@gmail.com> <Daenyth+git@gmail.com>
Dave Reisner <dreisner@archlinux.org> <d@falconindy.com> Dave Reisner <dreisner@archlinux.org> <d@falconindy.com>
甘露(Gan Lu) <rhythm.gan@gmail.com> 甘露(Gan Lu) <rhythm.gan@gmail.com>
Giovanni Scafora <giovanni@archlinux.org> <linuxmania@gmail.com> Giovanni Scafora <giovanni@archlinux.org> <linuxmania@gmail.com>
Jan Steffens <jan.steffens@gmail.com> Jan Alexander Steffens (heftig) <heftig@archlinux.org> <jan.steffens@gmail.com>
Jaroslaw Swierczynski <swiergot@gmail.com> <swiergot@juvepoland.com> Jaroslaw Swierczynski <swiergot@gmail.com> <swiergot@juvepoland.com>
Jonathan Conder <j@skurvy.no-ip.org> <jonno.conder@gmail.com> Jonathan Conder <j@skurvy.no-ip.org> <jonno.conder@gmail.com>
Juan Pablo González Tognarelli <lord_jotape@yahoo.com.ar> Juan Pablo González Tognarelli <lord_jotape@yahoo.com.ar>

View file

@ -1,17 +1,17 @@
[main] [main]
host = https://www.transifex.com host = https://www.transifex.com
[archlinux-pacman.libalpm-pot] [o:toofishes:p:archlinux-pacman:r:libalpm-pot]
file_filter = lib/libalpm/po/<lang>.po file_filter = lib/libalpm/po/<lang>.po
source_file = lib/libalpm/po/libalpm.pot source_file = lib/libalpm/po/libalpm.pot
source_lang = en source_lang = en
[archlinux-pacman.pacman-pot] [o:toofishes:p:archlinux-pacman:r:pacman-pot]
file_filter = src/pacman/po/<lang>.po file_filter = src/pacman/po/<lang>.po
source_file = src/pacman/po/pacman.pot source_file = src/pacman/po/pacman.pot
source_lang = en source_lang = en
[archlinux-pacman.pacman-scripts-pot] [o:toofishes:p:archlinux-pacman:r:pacman-scripts-pot]
file_filter = scripts/po/<lang>.po file_filter = scripts/po/<lang>.po
source_file = scripts/po/pacman-scripts.pot source_file = scripts/po/pacman-scripts.pot
source_lang = en source_lang = en

View file

@ -1,250 +0,0 @@
#!/usr/bin/env python
# SPDX-License-Identifier: Unlicense
#
# Based on the template file provided by the 'YCM-Generator' project authored by
# Reuben D'Netto.
# Jiahui Xie has re-reformatted and expanded the original script in accordance
# to the requirements of the PEP 8 style guide and 'systemd' project,
# respectively.
#
# The original license is preserved as it is.
#
#
# This is free and unencumbered software released into the public domain.
#
# Anyone is free to copy, modify, publish, use, compile, sell, or
# distribute this software, either in source code form or as a compiled
# binary, for any purpose, commercial or non-commercial, and by any
# means.
#
# In jurisdictions that recognize copyright laws, the author or authors
# of this software dedicate any and all copyright interest in the
# software to the public domain. We make this dedication for the benefit
# of the public at large and to the detriment of our heirs and
# successors. We intend this dedication to be an overt act of
# relinquishment in perpetuity of all present and future rights to this
# software under copyright law.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
# IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR
# OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
# ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
# OTHER DEALINGS IN THE SOFTWARE.
#
# For more information, please refer to <http://unlicense.org/>
"""
YouCompleteMe configuration file tailored to support the 'meson' build system
used by the 'systemd' project.
"""
import glob
import os
import ycm_core
SOURCE_EXTENSIONS = (".C", ".cpp", ".cxx", ".cc", ".c", ".m", ".mm")
HEADER_EXTENSIONS = (".H", ".h", ".hxx", ".hpp", ".hh")
def DirectoryOfThisScript():
"""
Return the absolute path of the parent directory containing this
script.
"""
return os.path.dirname(os.path.abspath(__file__))
def GuessBuildDirectory():
"""
Guess the build directory using the following heuristics:
1. Returns the current directory of this script plus 'build'
subdirectory in absolute path if this subdirectory exists.
2. Otherwise, probes whether there exists any directory
containing '.ninja_log' file two levels above the current directory;
returns this single directory only if there is one candidate.
"""
result = os.path.join(DirectoryOfThisScript(), "build")
if os.path.exists(result):
return result
result = glob.glob(os.path.join(DirectoryOfThisScript(),
"..", "..", "*", ".ninja_log"))
if not result:
return ""
if 1 != len(result):
return ""
return os.path.split(result[0])[0]
def TraverseByDepth(root, include_extensions):
"""
Return a set of child directories of the 'root' containing file
extensions specified in 'include_extensions'.
NOTE:
1. The 'root' directory itself is excluded from the result set.
2. No subdirectories would be excluded if 'include_extensions' is left
to 'None'.
3. Each entry in 'include_extensions' must begin with string '.'.
"""
is_root = True
result = set()
# Perform a depth first top down traverse of the given directory tree.
for root_dir, subdirs, file_list in os.walk(root):
if not is_root:
# print("Relative Root: ", root_dir)
# print(subdirs)
if include_extensions:
get_ext = os.path.splitext
subdir_extensions = {
get_ext(f)[-1] for f in file_list if get_ext(f)[-1]
}
if subdir_extensions & include_extensions:
result.add(root_dir)
else:
result.add(root_dir)
else:
is_root = False
return result
_project_src_dir = os.path.join(DirectoryOfThisScript(), "src")
_include_dirs_set = TraverseByDepth(_project_src_dir, frozenset({".h"}))
flags = [
"-x",
"c"
# The following flags are partially redundant due to the existence of
# 'compile_commands.json'.
# '-Wall',
# '-Wextra',
# '-Wfloat-equal',
# '-Wpointer-arith',
# '-Wshadow',
# '-std=gnu99',
]
for include_dir in _include_dirs_set:
flags.append("-I" + include_dir)
# Set this to the absolute path to the folder (NOT the file!) containing the
# compile_commands.json file to use that instead of 'flags'. See here for
# more details: http://clang.llvm.org/docs/JSONCompilationDatabase.html
#
# You can get CMake to generate this file for you by adding:
# set( CMAKE_EXPORT_COMPILE_COMMANDS 1 )
# to your CMakeLists.txt file.
#
# Most projects will NOT need to set this to anything; you can just change the
# 'flags' list of compilation flags. Notice that YCM itself uses that approach.
compilation_database_folder = GuessBuildDirectory()
if os.path.exists(compilation_database_folder):
database = ycm_core.CompilationDatabase(compilation_database_folder)
else:
database = None
def MakeRelativePathsInFlagsAbsolute(flags, working_directory):
"""
Iterate through 'flags' and replace the relative paths prefixed by
'-isystem', '-I', '-iquote', '--sysroot=' with absolute paths
start with 'working_directory'.
"""
if not working_directory:
return list(flags)
new_flags = []
make_next_absolute = False
path_flags = ["-isystem", "-I", "-iquote", "--sysroot="]
for flag in flags:
new_flag = flag
if make_next_absolute:
make_next_absolute = False
if not flag.startswith("/"):
new_flag = os.path.join(working_directory, flag)
for path_flag in path_flags:
if flag == path_flag:
make_next_absolute = True
break
if flag.startswith(path_flag):
path = flag[len(path_flag):]
new_flag = path_flag + os.path.join(working_directory, path)
break
if new_flag:
new_flags.append(new_flag)
return new_flags
def IsHeaderFile(filename):
"""
Check whether 'filename' is considered as a header file.
"""
extension = os.path.splitext(filename)[1]
return extension in HEADER_EXTENSIONS
def GetCompilationInfoForFile(filename):
"""
Helper function to look up compilation info of 'filename' in the 'database'.
"""
# The compilation_commands.json file generated by CMake does not have
# entries for header files. So we do our best by asking the db for flags for
# a corresponding source file, if any. If one exists, the flags for that
# file should be good enough.
if not database:
return None
if IsHeaderFile(filename):
basename = os.path.splitext(filename)[0]
for extension in SOURCE_EXTENSIONS:
replacement_file = basename + extension
if os.path.exists(replacement_file):
compilation_info = \
database.GetCompilationInfoForFile(replacement_file)
if compilation_info.compiler_flags_:
return compilation_info
return None
return database.GetCompilationInfoForFile(filename)
def FlagsForFile(filename, **kwargs):
"""
Callback function to be invoked by YouCompleteMe in order to get the
information necessary to compile 'filename'.
It returns a dictionary with a single element 'flags'. This element is a
list of compiler flags to pass to libclang for the file 'filename'.
"""
if database:
# Bear in mind that compilation_info.compiler_flags_ does NOT return a
# python list, but a "list-like" StringVec object
compilation_info = GetCompilationInfoForFile(filename)
if not compilation_info:
return None
final_flags = MakeRelativePathsInFlagsAbsolute(
compilation_info.compiler_flags_,
compilation_info.compiler_working_dir_)
else:
relative_to = DirectoryOfThisScript()
final_flags = MakeRelativePathsInFlagsAbsolute(flags, relative_to)
return {
"flags": final_flags,
"do_cache": True
}

80
NEWS
View file

@ -1,5 +1,67 @@
VERSION DESCRIPTION VERSION DESCRIPTION
----------------------------------------------------------------------------- -----------------------------------------------------------------------------
7.0.0 - Add DownloadUser configuration option used to drop-privileges
when downloading files.
- Download files to a temporary directory owned by DownloadUser
- On Linux systems, ensure the download process does not write
outside the download directory
- Add DisableSandbox option and --disable-sandbox flag to
disable the download write restrictions on Linux systems
- Ensure database and signature are downloaded from the same
location. Fixes the use of XferCommand.
- Use snprintf instead of sprintf
- Fix issue preventing use of _FORITIFY_SOURCE=3 when compiling
- Fix read-after-free issue when parsing config files
- Fix searching for files in an non-NULL by empty filelist
- Prevent buffer overflow with long scriptlet shell path
- repo-add:
- Fix issue with missing argument in parsepots for -k/--key
- Handle lack of newline at the end of .PKGINFO
- create empty databases when requested
- makepkg:
- Remove GITFLAGS support - this required multiple breaking
changes to git source handling in order to fully support.
- Prevent MAKEFLAGS and CHOST from being disabled with
options=(!buildenv)
- Fix unstable git checksumming, and dependence on user
config
- Make "not a clone of" source errors visible with a new
return code
- Document makepkg.conf.d dropin configuration
- Drop sudo permissions after use
- Prevent PKGBUILDs overriding BUILDENV
- only copy source files once when creating a debug package
- pacman-key:
- Fix permissions check for non-root operations
6.1.0 - Add cache server support
- Improvements to --sysroot option - NOTE: targets to -U are no
longer interpreted relative to sysroot
- Add more format specifiers for --print operations
- Add extended data field for arbitrary package data
- Do not run hooks with --dbonly
- Provide more details when encountering file conflicts or
corrupt packages
- Improved WKD support (FS#73703, FS#73534)
- Improved handling of malformed download headers (FS#73704)
- Use openssl interfaces for calculating sha256 and md5 sums
- Fix multi download bar chomps
- makepkg:
- Replace libdepends and libprovides with autodeps
- Support configuration via makepkg.conf.d drop-ins
- Add GITFLAGS environment variable to customize checkouts
- Add -D option to change directory before building
- Implement verify() function for custom source verificaton
- Add checksum support for git/mercurial/bzr sources
- Improved stripping and debug package support
- Configurable LTO support
- Add source signing PGP keys to package if available
- Store "pkgtype" in xdata
- Remove md5sum from mtree files
- Document MAKEPKG_LIBRARY
- repo-add:
- Do not include package signature details in the repo. Add
the --include-sigs to revert to old behaviour.
- Do not add md5sum to the repo database
6.0.1 - Prevent download error pages ending up in package files 6.0.1 - Prevent download error pages ending up in package files
(FS#71083) (FS#71083)
- Give -U downloads a random .part file name if needed - Give -U downloads a random .part file name if needed
@ -153,7 +215,7 @@ VERSION DESCRIPTION
- fix segfault when Usage is specified without a value - fix segfault when Usage is specified without a value
- include timezones in pacman.log - include timezones in pacman.log
- bash-completion: use POSIX character classes for portability - bash-completion: use POSIX character classes for portability
- correctly report a download failiure for 404s - correctly report a download failure for 404s
- fix handling of signals during SIGSEGV - fix handling of signals during SIGSEGV
- fix buffer overread in pacman/callback - fix buffer overread in pacman/callback
- fix crash when downloading files with a Content-Disposition - fix crash when downloading files with a Content-Disposition
@ -556,8 +618,8 @@ VERSION DESCRIPTION
- remove --asroot and enforce fakeroot usage - remove --asroot and enforce fakeroot usage
- all PKGBUILDs require a package() function - all PKGBUILDs require a package() function
- PKGBUILDs can no longer be read from stdin - PKGBUILDs can no longer be read from stdin
- enable make style environmental overrides - enable make-style environment variable overrides
- Read CARCH environmental variable (FS#35030) - Read CARCH environment variable (FS#35030)
- makedepends and checkdepends are installed together (FS#31557) - makedepends and checkdepends are installed together (FS#31557)
- added support for sha224 checksums (FS#36776) - added support for sha224 checksums (FS#36776)
- remove warning when license is not specified in PKGBUILD - remove warning when license is not specified in PKGBUILD
@ -587,7 +649,7 @@ VERSION DESCRIPTION
file overwrites from malicious databases file overwrites from malicious databases
- makepkg: - makepkg:
- restrict package name from starting with a dot - restrict package name from starting with a dot
- fix BZR source revision support (FS#35281) - fix Bazaar source revision support (FS#35281)
- Use LOGDEST for log pipe - Use LOGDEST for log pipe
- fix distcc disabling (FS#35741) - fix distcc disabling (FS#35741)
- correct stat usage on BSD/Darwin (FS#35469) - correct stat usage on BSD/Darwin (FS#35469)
@ -603,7 +665,7 @@ VERSION DESCRIPTION
FS#34716, FS#35097) FS#34716, FS#35097)
- makepkg: - makepkg:
- improve SVN VCS PKGBUILD handling (FS#34675, FS#34636) - improve SVN VCS PKGBUILD handling (FS#34675, FS#34636)
- allow "lp:" URLs for BZR sources (FS#34650) - allow "lp:" URLs for Bazaar sources (FS#34650)
- prevent pkgver() capturing stderr (FS#34974) - prevent pkgver() capturing stderr (FS#34974)
- fix attempt to remove package twice on failure (FS#34672) - fix attempt to remove package twice on failure (FS#34672)
- contrib: - contrib:
@ -654,7 +716,7 @@ VERSION DESCRIPTION
- pkgrel must be in decimal format - pkgrel must be in decimal format
- PKGBUILDs without package() functions are deprecated - PKGBUILDs without package() functions are deprecated
- support specifying CPPFLAGS in makepkg.conf - support specifying CPPFLAGS in makepkg.conf
- support PACKAGER environmental variable - support PACKAGER environment variable
- allow source renaming to work on signature files - allow source renaming to work on signature files
- configurable compression options (FS#27430) - configurable compression options (FS#27430)
- allow multiple packages to be build when using - allow multiple packages to be build when using
@ -668,7 +730,7 @@ VERSION DESCRIPTION
- add LOGDEST configuration option - add LOGDEST configuration option
- install makedepends with --repackage - install makedepends with --repackage
- repo-add: - repo-add:
- honor TMPDIR environmental variable - honor TMPDIR environment variable
- add makedepends/checkdepends information to database - add makedepends/checkdepends information to database
- pacman-key: - pacman-key:
- fix importing keys with quotes in file name (FS#28445) - fix importing keys with quotes in file name (FS#28445)
@ -1276,7 +1338,7 @@ VERSION DESCRIPTION
- add source package creation option - add source package creation option
- rankmirrors- allow reading from stdin (FS#8043) - rankmirrors- allow reading from stdin (FS#8043)
- and many other updates: 198 bugs/FRs closed since 3.0.0 release - and many other updates: 198 bugs/FRs closed since 3.0.0 release
- switch to GIT for source code management - switch to Git for source code management
3.0.6 - config files updated to reflect current -> core change 3.0.6 - config files updated to reflect current -> core change
- fix symlink overwriting issue (FS#7484) - fix symlink overwriting issue (FS#7484)
- fix config parsing with tr_TR locale (FS#7235) - fix config parsing with tr_TR locale (FS#7235)
@ -1428,7 +1490,7 @@ VERSION DESCRIPTION
- Cleanup db_loadpkgs(), add list_add_sorted() - Cleanup db_loadpkgs(), add list_add_sorted()
- Fixed a memory leak in db_find_conflicts() - Fixed a memory leak in db_find_conflicts()
2.8.3 - Fixed a little makepkg bug with bash 3.0 2.8.3 - Fixed a little makepkg bug with bash 3.0
- Fixed resolvedeps to always prefer literals over provisios - Fixed resolvedeps to always prefer literals over providers
- Added --config option to specify an alternate config file - Added --config option to specify an alternate config file
- Added "Include" directive to include repositories from - Added "Include" directive to include repositories from
config files (inspired by Michael Baehr's patch) config files (inspired by Michael Baehr's patch)

235
README
View file

@ -6,7 +6,7 @@ Package Management) library. This document, while not exhaustive, also
indicates some limitations (on purpose, or sometimes due to its poor design) of indicates some limitations (on purpose, or sometimes due to its poor design) of
the library at the present time. the library at the present time.
There is one special file,"alpm.h", which is the public interface that There is one special file, "alpm.h", which is the public interface that
should be distributed and installed on systems with the library. Only should be distributed and installed on systems with the library. Only
structures, data and functions declared within this file are made available to structures, data and functions declared within this file are made available to
the frontend. Lots of structures are of an opaque type and their fields are the frontend. Lots of structures are of an opaque type and their fields are
@ -239,7 +239,7 @@ API CHANGES BETWEEN 3.1 AND 3.2
- alpm_checkdbconflicts() - alpm_checkdbconflicts()
- alpm_sync_newversion() - alpm_sync_newversion()
- alpm_deptest() - alpm_deptest()
- error codes : - error codes:
PM_ERR_DLT_INVALID, PM_ERR_LIBARCHIVE, PM_ERR_LIBDOWNLOAD and PM_ERR_DLT_INVALID, PM_ERR_LIBARCHIVE, PM_ERR_LIBDOWNLOAD and
PM_ERR_EXTERNAL_DOWNLOAD PM_ERR_EXTERNAL_DOWNLOAD
- flags: - flags:
@ -352,7 +352,7 @@ API CHANGES BETWEEN 3.4 AND 3.5
- alpm_db_get_pkg() for normal targets - alpm_db_get_pkg() for normal targets
- alpm_find_dbs_satisfier() for versioned provisions - alpm_find_dbs_satisfier() for versioned provisions
- alpm_find_grp_pkgs() for groups - alpm_find_grp_pkgs() for groups
- alpm_deptest() is replaced by the more flexibile alpm_find_satisfier() - alpm_deptest() is replaced by the more flexible alpm_find_satisfier()
- size_t used for alpm_list_t sizes - size_t used for alpm_list_t sizes
- return type for alpm_list_count() - return type for alpm_list_count()
- parameter type in alpm_list_msort() and alpm_list_nth() - parameter type in alpm_list_msort() and alpm_list_nth()
@ -362,11 +362,11 @@ API CHANGES BETWEEN 3.4 AND 3.5
- alpm_find_grp_pkgs() - alpm_find_grp_pkgs()
- alpm_trans_get_flags() - alpm_trans_get_flags()
- error codes: - error codes:
PM_ERR_DISK_SPACE, PM_ERR_WRITE PM_ERR_DISK_SPACE, PM_ERR_WRITE
- flags - flags:
PM_TRANS_FLAG_NODEPVERSION, PM_TRANS_EVT_DISKSPACE_START, PM_TRANS_FLAG_NODEPVERSION, PM_TRANS_EVT_DISKSPACE_START,
PM_TRANS_EVT_DISKSPACE_DONE, PM_TRANS_CONV_SELECT_PROVIDER, PM_TRANS_EVT_DISKSPACE_DONE, PM_TRANS_CONV_SELECT_PROVIDER,
PM_TRANS_PROGRESS_DISKSPACE_START, PM_TRANS_PROGRESS_INTEGRITY_START PM_TRANS_PROGRESS_DISKSPACE_START, PM_TRANS_PROGRESS_INTEGRITY_START
API CHANGES BETWEEN 3.5 AND 4.0 API CHANGES BETWEEN 3.5 AND 4.0
@ -419,7 +419,7 @@ API CHANGES BETWEEN 3.5 AND 4.0
- alpm_release - alpm_release
- alpm_remove_pkg - alpm_remove_pkg
- alpm_sync_sysupgrade - alpm_sync_sysupgrade
- several structs are no longer opaque - several structs are no longer opaque:
- alpm_conflict_t - alpm_conflict_t
- alpm_delta_t - alpm_delta_t
- alpm_depend_t - alpm_depend_t
@ -431,19 +431,33 @@ API CHANGES BETWEEN 3.5 AND 4.0
[ADDED] [ADDED]
- option functions: - option functions:
alpm_{get,set}_eventcb(), alpm_option_{get,set}_convcb(), - alpm_{get,set}_eventcb()
alpm_option_{get,set}_progresscb() - alpm_option_{get,set}_convcb()
- alpm_option_{get,set}_progresscb()
- package signing functions: - package signing functions:
alpm_option_get_default_siglevel(), alpm_option_set_default_siglevel(), - alpm_option_get_default_siglevel()
alpm_option_get_gpgdir(), alpm_option_set_gpgdir(), alpm_db_get_siglevel(), - alpm_option_set_default_siglevel()
alpm_siglist_cleanup(), alpm_db_check_pgp_signature(), alpm_pkg_check_pgp_signature(), - alpm_option_get_gpgdir()
alpm_pkg_get_origin(), alpm_pkg_get_sha256sum(), alpm_pkg_get_base64_sig() - alpm_option_set_gpgdir()
- alpm_db_get_siglevel()
- alpm_siglist_cleanup()
- alpm_db_check_pgp_signature()
- alpm_pkg_check_pgp_signature()
- alpm_pkg_get_origin()
- alpm_pkg_get_sha256sum()
- alpm_pkg_get_base64_sig()
- list functions: - list functions:
alpm_list_to_array(), alpm_list_previous() - alpm_list_to_array()
- alpm_list_previous()
- structs: - structs:
alpm_backup_t, alpm_file_t, alpm_filelist_t - alpm_backup_t
- alpm_file_t
- alpm_filelist_t
- enums: - enums:
alpm_siglevel_t, alpm_sigstatus_t, alpm_sigvalidity_t, alpm_pkgfrom_t - alpm_siglevel_t
- alpm_sigstatus_t
- alpm_sigvalidity_t
- alpm_pkgfrom_t
- error codes: - error codes:
ALPM_ERR_DB_INVALID, ALPM_ERR_DB_INVALID_SIG, ALPM_ERR_GPGME, ALPM_ERR_DB_INVALID, ALPM_ERR_DB_INVALID_SIG, ALPM_ERR_GPGME,
ALPM_ERR_PKG_INVALID_CHECKSUM, ALPM_ERR_PKG_INVALID_SIG, ALPM_ERR_SIG_INVALID, ALPM_ERR_PKG_INVALID_CHECKSUM, ALPM_ERR_PKG_INVALID_SIG, ALPM_ERR_SIG_INVALID,
@ -470,10 +484,10 @@ API CHANGES BETWEEN 4.0 AND 4.1
- alpm_db_unregister_all -> alpm_unregister_all_syncdbs - alpm_db_unregister_all -> alpm_unregister_all_syncdbs
- alpm_db_readgroup -> alpm_db_get_group - alpm_db_readgroup -> alpm_db_get_group
- alpm_db_set_pkgreason -> alpm_pkg_set_reason (handle parameter removed) - alpm_db_set_pkgreason -> alpm_pkg_set_reason (handle parameter removed)
- alpm_time_t typedef used for all times - alpm_time_t typedef used for all times:
- members of alpm_pgpkey_t - members of alpm_pgpkey_t
- return types of alpm_pkg_get_builddate and alpm_pkg_get_installdate - return types of alpm_pkg_get_builddate and alpm_pkg_get_installdate
- delta options now use required ratio rather than on/off - delta options now use required ratio rather than on/off:
- alpm_option_get_usedelta -> alpm_option_get_deltaratio - alpm_option_get_usedelta -> alpm_option_get_deltaratio
- alpm_option_set_usedelta -> alpm_option_set_deltaratio - alpm_option_set_usedelta -> alpm_option_set_deltaratio
@ -490,21 +504,21 @@ API CHANGES BETWEEN 4.0 AND 4.1
- alpm_db_usage_t - alpm_db_usage_t
- alpm_db_set_usage() - alpm_db_set_usage()
- alpm_db_get_usage() - alpm_db_get_usage()
- wrapper functions for reading mtree files - wrapper functions for reading mtree files:
- alpm_pkg_mtree_open() - alpm_pkg_mtree_open()
- alpm_pkg_mtree_next() - alpm_pkg_mtree_next()
- alpm_pkg_mtree_close() - alpm_pkg_mtree_close()
- utility functions - utility functions:
- alpm_pkg_find() - alpm_pkg_find()
- alpm_pkg_compute_optionalfor() - alpm_pkg_compute_optionalfor()
- alpm_filelist_contains() - alpm_filelist_contains()
- types - types:
- alpm_time_t - alpm_time_t
- alpm_errno_t - alpm_errno_t
- flags - flags:
ALPM_EVENT_OPTDEP_REQUIRED, ALPM_EVENT_DATABASE_MISSING, ALPM_EVENT_OPTDEP_REQUIRED, ALPM_EVENT_DATABASE_MISSING,
ALPM_EVENT_KEYRING_START, ALPM_EVENT_KEYRING_DONE, ALPM_EVENT_KEY_DOWNLOAD_START, ALPM_EVENT_KEYRING_START, ALPM_EVENT_KEYRING_DONE, ALPM_EVENT_KEY_DOWNLOAD_START,
ALPM_EVENT_KEY_DOWNLOAD_DONE, ALPM_PROGRESS_KEYRING_START ALPM_EVENT_KEY_DOWNLOAD_DONE, ALPM_PROGRESS_KEYRING_START
API CHANGES BETWEEN 4.1 AND 4.2 API CHANGES BETWEEN 4.1 AND 4.2
@ -513,49 +527,49 @@ API CHANGES BETWEEN 4.1 AND 4.2
[CHANGED] [CHANGED]
- alpm_filelist_t - removed member resolved_path - alpm_filelist_t - removed member resolved_path
- alpm_filelist_contains - now returns alpm_file_t - alpm_filelist_contains - now returns alpm_file_t
- event callback - event callback:
- alpm_event_t renamed to alpm_event_type_t - alpm_event_t renamed to alpm_event_type_t
- alpm_event_t union added - alpm_event_t union added
- alpm_event_cb now takes only an alpm_event_t parameter - alpm_event_cb now takes only an alpm_event_t parameter
- alpm_event_any_t, alpm_package_operation_t, alpm_event_package_operation_t, - alpm_event_any_t, alpm_package_operation_t, alpm_event_package_operation_t,
alpm_event_optdep_removal_t, alpm_event_delta_patch_t, alpm_event_scriptlet_info_t, alpm_event_optdep_removal_t, alpm_event_delta_patch_t, alpm_event_scriptlet_info_t,
alpm_event_database_missing_t, alpm_event_pkgdownload_t, alpm_event_pacnew_created_t, alpm_event_database_missing_t, alpm_event_pkgdownload_t, alpm_event_pacnew_created_t,
alpm_event_pacsave_created_t, alpm_event_pacorig_created_t added alpm_event_pacsave_created_t, alpm_event_pacorig_created_t added
- ALPM_EVENT_*_START -> ALPM_EVENT_PACKAGE_OPERATION_START - ALPM_EVENT_*_START -> ALPM_EVENT_PACKAGE_OPERATION_START
- ALPM_EVENT_*_DONE -> ALPM_EVENT_PACKAGE_OPERATION_DONE - ALPM_EVENT_*_DONE -> ALPM_EVENT_PACKAGE_OPERATION_DONE
- question callback - question callback:
- alpm_question_t renamed to alpm_question_type_t - alpm_question_t renamed to alpm_question_type_t
- alpm_question_t union added - alpm_question_t union added
- alpm_cb_question now takes only an alpm_question_t parameter - alpm_cb_question now takes only an alpm_question_t parameter
- alpm_question_any_t, alpm_question_install_ignorepkg_t, alpm_question_replace_t - alpm_question_any_t, alpm_question_install_ignorepkg_t, alpm_question_replace_t
alpm_question_conflict_t, alpm_question_corrupted_t, alpm_question_remove_pkgs_t, alpm_question_conflict_t, alpm_question_corrupted_t, alpm_question_remove_pkgs_t,
alpm_question_select_provider_t, alpm_question_import_key_t added alpm_question_select_provider_t, alpm_question_import_key_t added
[ADDED] [ADDED]
- memory management - memory management:
- alpm_fileconflict_free() - alpm_fileconflict_free()
- alpm_depmissing_free() - alpm_depmissing_free()
- alpm_conflict_free() - alpm_conflict_free()
- alpm_dep_free() - alpm_dep_free()
- database usage - database usage:
- alpm_db_usage_t - alpm_db_usage_t
- alpm_db_set_usage() - alpm_db_set_usage()
- alpm_db_get_usage() - alpm_db_get_usage()
- assume installed - assume installed:
- alpm_option_get_assumeinstalled() - alpm_option_get_assumeinstalled()
- alpm_option_add_assumeinstalled() - alpm_option_add_assumeinstalled()
- alpm_option_set_assumeinstalled() - alpm_option_set_assumeinstalled()
- alpm_option_remove_assumeinstalled() - alpm_option_remove_assumeinstalled()
- using noupgrade/noextract - using noupgrade/noextract:
- alpm_option_match_noupgrade() - alpm_option_match_noupgrade()
- alpm_option_match_noextract() - alpm_option_match_noextract()
- utility functions - utility functions:
- alpm_dep_from_string() - alpm_dep_from_string()
- alpm_pkg_should_ignore() - alpm_pkg_should_ignore()
- alpm_decode_signature() - alpm_decode_signature()
- alpm_extract_keyid() - alpm_extract_keyid()
- flags - flags:
- ALPM_EVENT_RETRIEVE_DONE, ALPM_EVENT_RETRIEVE_FAILED, ALPM_EVENT_PKGDOWNLOAD_START, ALPM_EVENT_RETRIEVE_DONE, ALPM_EVENT_RETRIEVE_FAILED, ALPM_EVENT_PKGDOWNLOAD_START,
ALPM_EVENT_PKGDOWNLOAD_DONE, ALPM_EVENT_PKGDOWNLOAD_FAILED, ALPM_EVENT_OPTDEP_REMOVAL, ALPM_EVENT_PKGDOWNLOAD_DONE, ALPM_EVENT_PKGDOWNLOAD_FAILED, ALPM_EVENT_OPTDEP_REMOVAL,
ALPM_EVENT_PACNEW_CREATED, ALPM_EVENT_PACSVAE_CREATED, ALPM_EVENT_PACORIG_CREATED ALPM_EVENT_PACNEW_CREATED, ALPM_EVENT_PACSVAE_CREATED, ALPM_EVENT_PACORIG_CREATED
@ -565,13 +579,13 @@ API CHANGES BETWEEN 4.2 AND 5.0
[REMOVED] [REMOVED]
- alpm_siglevel_t - removed members ALPM_SIG_PACKAGE_SET, ALPM_SIG_PACKAGE_TRUST_SET - alpm_siglevel_t - removed members ALPM_SIG_PACKAGE_SET, ALPM_SIG_PACKAGE_TRUST_SET
- removed .pacorig generation - removed .pacorig generation:
- ALPM_EVENT_PACORIG_CREATED - ALPM_EVENT_PACORIG_CREATED
- alpm_event_pacorig_created_t - alpm_event_pacorig_created_t
- alpm_event_t.pacorig_created - alpm_event_t.pacorig_created
[ADDED] [ADDED]
- hook support - hook support:
- alpm_option_get_hookdirs() - alpm_option_get_hookdirs()
- alpm_option_set_hookdirs() - alpm_option_set_hookdirs()
- alpm_option_add_hookdir() - alpm_option_add_hookdir()
@ -581,14 +595,14 @@ API CHANGES BETWEEN 4.2 AND 5.0
- ALPM_EVENT_HOOK_START, ALPM_EVENT_HOOK_DONE - ALPM_EVENT_HOOK_START, ALPM_EVENT_HOOK_DONE
- ALPM_EVENT_HOOK_RUN_START, ALPM_EVENT_HOOK_RUN_DONE - ALPM_EVENT_HOOK_RUN_START, ALPM_EVENT_HOOK_RUN_DONE
- ALPM_ERR_TRANS_HOOK_FAILED - ALPM_ERR_TRANS_HOOK_FAILED
- different database extension support - different database extension support:
- alpm_option_get_dbext() - alpm_option_get_dbext()
- alpm_option_set_dbext() - alpm_option_set_dbext()
- pkgbase accessor - pkgbase accessor:
- alpm_pkg_get_base() - alpm_pkg_get_base()
- transaction events - transaction events:
- ALPM_EVENT_TRANSACTION_START, ALPM_EVENT_TRANSACTION_DONE - ALPM_EVENT_TRANSACTION_START, ALPM_EVENT_TRANSACTION_DONE
- database unlocking - database unlocking:
- alpm_unlock() - alpm_unlock()
@ -598,7 +612,7 @@ API CHANGES BETWEEN 5.0 AND 5.1
[CHANGED] [CHANGED]
- alpm_errno_t - added member ALPM_ERR_OK - alpm_errno_t - added member ALPM_ERR_OK
- alpm_siglevel_t - value of ALPM_SIG_USE_DEFAULT changed - alpm_siglevel_t - value of ALPM_SIG_USE_DEFAULT changed
- functions using bitfields return/pass an int instead of an enum - functions using bitfields return/pass an int instead of an enum:
- alpm_option_get_default_siglevel() - alpm_option_get_default_siglevel()
- alpm_option_set_default_siglevel() - alpm_option_set_default_siglevel()
- alpm_option_get_remote_file_siglevel() - alpm_option_get_remote_file_siglevel()
@ -615,19 +629,19 @@ API CHANGES BETWEEN 5.0 AND 5.1
- alpm_option_set_local_file_siglevel() - alpm_option_set_local_file_siglevel()
[ADDED] [ADDED]
- overwrite support - overwrite support:
- alpm_option_get_overwrite_files() - alpm_option_get_overwrite_files()
- alpm_option_set_overwrite_files() - alpm_option_set_overwrite_files()
- alpm_option_add_overwrite_file() - alpm_option_add_overwrite_file()
- alpm_option_remove_overwrite_file() - alpm_option_remove_overwrite_file()
- download timeout control - download timeout control:
- alpm_option_set_disable_dl_timeout() - alpm_option_set_disable_dl_timeout()
- access make/checkdepends info - access make/checkdepends info:
- alpm_pkg_get_checkdepends() - alpm_pkg_get_checkdepends()
- alpm_pkg_get_makedepends() - alpm_pkg_get_makedepends()
- check pacman capabilities - check pacman capabilities:
- alpm_capabilities() - alpm_capabilities()
- duplicate and add to list - duplicate and add to list:
- alpm_list_append_strdup() - alpm_list_append_strdup()
@ -635,7 +649,7 @@ API CHANGES BETWEEN 5.1 AND 5.2
=============================== ===============================
[REMOVED] [REMOVED]
- package delta support - package delta support:
- alpm_delta_t - alpm_delta_t
- alpm_event_delta_patch_t - alpm_event_delta_patch_t
- alpm_event_t union - removed alpm_event_delta_patch_t - alpm_event_t union - removed alpm_event_delta_patch_t
@ -662,10 +676,10 @@ API CHANGES BETWEEN 5.2 AND 6.0
[REMOVED] [REMOVED]
- ALPM_EVENT_PKGDOWNLOAD_START, ALPM_EVENT_PKGDOWNLOAD_DONE, ALPM_EVENT_PKGDOWNLOAD_FAILED - ALPM_EVENT_PKGDOWNLOAD_START, ALPM_EVENT_PKGDOWNLOAD_DONE, ALPM_EVENT_PKGDOWNLOAD_FAILED
- ALPM_ERR_PKG_REPO_NOT_FOUND - ALPM_ERR_PKG_REPO_NOT_FOUND
- old TotalDownload implementation - old TotalDownload implementation:
- alpm_cb_totaldl - alpm_cb_totaldl
- alpm_option_get_totaldlcb() - alpm_option_get_totaldlcb()
- alpm_option_set_totaldlcb() - alpm_option_set_totaldlcb()
[CHANGED] [CHANGED]
- alpm_db_update() now accepts a list of databases rather than a single database. - alpm_db_update() now accepts a list of databases rather than a single database.
@ -673,27 +687,72 @@ API CHANGES BETWEEN 5.2 AND 6.0
- alpm_db_search() now has an additional parameter and returns success status - alpm_db_search() now has an additional parameter and returns success status
- ALPM_EVENT_RETRIEVE_* -> ALPM_EVENT_DB_RETRIEVE_* and ALPM_EVENT_PKG_RETRIEVE_* - ALPM_EVENT_RETRIEVE_* -> ALPM_EVENT_DB_RETRIEVE_* and ALPM_EVENT_PKG_RETRIEVE_*
- alpm_cb_download pass event and data - alpm_cb_download pass event and data
- multi architecture support - multi architecture support:
- alpm_option_get_arch() -> alpm_option_get_architectures() - alpm_option_get_arch() -> alpm_option_get_architectures()
- alpm_option_set_arch() -> alpm_option_set_architectures() - alpm_option_set_arch() -> alpm_option_set_architectures()
- alpm_db_get_servers() copies parameter data - alpm_db_get_servers() copies parameter data
[ADDED] [ADDED]
- parallel download support - parallel download support:
- alpm_option_set_parallel_downloads() - alpm_option_set_parallel_downloads()
- alpm_option_get_parallel_downloads() - alpm_option_get_parallel_downloads()
- file download events - file download events:
- alpm_download_event_type_t - alpm_download_event_type_t
- alpm_download_event_init_t - alpm_download_event_init_t
- alpm_download_event_progress_t - alpm_download_event_progress_t
- alpm_download_event_completed_t - alpm_download_event_completed_t
- download misc - download misc:
- ALPM_DOWNLOAD_RETRY - ALPM_DOWNLOAD_RETRY
- alpm_download_event_retry_t - alpm_download_event_retry_t
- alpm_event_pkg_retrieve_t - alpm_event_pkg_retrieve_t
- multiarchitecture support - multiarchitecture support:
- alpm_option_add_architecture() - alpm_option_add_architecture()
- alpm_option_remove_architecture() - alpm_option_remove_architecture()
- misc - misc:
- alpm_pkg_get_sig() - alpm_pkg_get_sig()
- callbacks add front-end provided context - callbacks add front-end provided context
API CHANGES BETWEEN 6.0 AND 6.1
===============================
[REMOVED]
- alpm_trans_t
[CHANGED]
- alpm_conflict_t - full package added as member, removing package name and name
hash members
- alpm_question_import_key_t - holds key uid and fingerprint rather than alpm_pgpkey_t
- alpm_pkgreason_t - added ALPM_PKG_REASON_UNKNOWN
- alpm_transflag_t - added ALPM_TRANS_FLAG_NOHOOKS
[ADDED]
- extensible package data type:
- alpm_pkg_xdata_t
- alpm_pkg_get_xdata()
- accessor functions:
- alpm_db_get_handle()
- alpm_pkg_get_handle()
- cache server support:
- alpm_db_get_cache_servers()
- alpm_db_set_cache_servers()
- alpm_db_add_cache_server()
API CHANGES BETWEEN 6.1 AND 7.0
===============================
[ADDED]
- sandbox functions:
- alpm_option_get_sandboxuser()
- alpm_option_set_sandboxuser()
- alpm_option_set_disable_sandbox()
- alpm_sandbox_setup_child()
API CHANGES BETWEEN 7.0 AND 7.1
===============================
[CHANGED]
- error codes:
PM_ERR_TRANS_COMMITING renamed to PM_ERR_TRANS_COMMITTING

17
RELEASE
View file

@ -11,13 +11,24 @@ The following checklist should be used for making a pacman release.
- Update doc/index.asciidoc - Update doc/index.asciidoc
- Create a signed git tag (git tag -s vX.Y.Z -m "commit message") - Create a signed git tag (git tag -s vX.Y.Z -m "commit message")
- Create and sign release tarballs (generate with "ninja dist") - Create and sign release tarballs (generate with "ninja dist")
- Update pacman website - Create release on gitlab project page
- Upload release tarball and signature to gitlab ("glab release upload ...")
- Create branch release/?.?.x (with ?.? replaced by major version number)
- Update .gitlab-ci.yml to point the website pages run at release branch
Transifex updates are handled using the transifex client. The basic process is: Transifex updates are handled using the transifex client. The basic process is:
- Pull updates from transifex ("tx pull -a -f --minimum-perc 75") - Pull updates from transifex ("tx pull -f --minimum-perc 75")
- Update po files ("./build-aux/update-po") - Update po files ("./build-aux/update-po")
- Fix all translation errors found - Fix all translation errors found (e.g. using "mint-check-translations")
- Add any new locales to the relevant LINGUAS file - Add any new locales to the relevant LINGUAS file
- Optional: Make any manual changes needed (e.g. fixing spacing in a string) - Optional: Make any manual changes needed (e.g. fixing spacing in a string)
and update po files again and update po files again
- Push updated po files to transifex ("tx push -s -t --skip") - Push updated po files to transifex ("tx push -s -t --skip")
Point releases:
- all bugs fixes slated for the release branch must first land on master
(unless no longer relevant)
- following the initial post-release period when the release and master
branches may be kept in sync, commits are backported to the release branch
using "git cherry-pick -x"
- translation updates should be pulled onto the release branch only

View file

@ -3,7 +3,7 @@ currently. Our translations are currently maintained in Transifex; please read
doc/translation-help.txt for more details. doc/translation-help.txt for more details.
Below is a list of past translators before we switched to Transifex; more can Below is a list of past translators before we switched to Transifex; more can
be found by looking in the GIT history. be found by looking in the Git history.
If your language is not already in the various po/ subdirectories and you wish If your language is not already in the various po/ subdirectories and you wish
it was, set up a team in Transifex for your language and we will be happy to it was, set up a team in Transifex for your language and we will be happy to

View file

@ -11,6 +11,7 @@ sed \
-e "s|@localstatedir[@]|@localstatedir@|g" \ -e "s|@localstatedir[@]|@localstatedir@|g" \
-e "s|@libmakepkgdir[@]|@LIBMAKEPKGDIR@|g" \ -e "s|@libmakepkgdir[@]|@LIBMAKEPKGDIR@|g" \
-e "s|@pkgdatadir[@]|@PKGDATADIR@|g" \ -e "s|@pkgdatadir[@]|@PKGDATADIR@|g" \
-e "s|@keyringdir[@]|@KEYRINGDIR@|g" \
-e "s|@prefix[@]|@PREFIX@|g" \ -e "s|@prefix[@]|@PREFIX@|g" \
-e "1s|#!/bin/bash|#!@BASH@|g" \ -e "1s|#!/bin/bash|#!@BASH@|g" \
-e "s|@PACKAGE_VERSION[@]|@PACKAGE_VERSION@|g" \ -e "s|@PACKAGE_VERSION[@]|@PACKAGE_VERSION@|g" \
@ -20,6 +21,7 @@ sed \
-e "s|@DEBUGSUFFIX[@]|@DEBUGSUFFIX@|g" \ -e "s|@DEBUGSUFFIX[@]|@DEBUGSUFFIX@|g" \
-e "s|@INODECMD[@]|@INODECMD@|g" \ -e "s|@INODECMD[@]|@INODECMD@|g" \
-e "s|@FILECMD[@]|@FILECMD@|g" \ -e "s|@FILECMD[@]|@FILECMD@|g" \
-e "s|@BSDTAR_NO_READ_SPARSE[@]|@BSDTAR_NO_READ_SPARSE@|g" \
"$input" >"$output" "$input" >"$output"
if [[ $mode ]]; then if [[ $mode ]]; then

View file

@ -3,4 +3,4 @@
# This script serves as a trampoline for running scripts which depend on # This script serves as a trampoline for running scripts which depend on
# libmakepkg with the libmakepkg within the build tree. # libmakepkg with the libmakepkg within the build tree.
LIBRARY=@BUILDDIR@/libmakepkg exec @BASH@ -$- @REAL_PROGPATH@ "$@" MAKEPKG_LIBRARY=@BUILDDIR@/libmakepkg exec @BASH@ -$- @REAL_PROGPATH@ "$@"

View file

@ -11,14 +11,14 @@ Synopsis
This manual page describes the format of a BUILDINFO file found in the root of This manual page describes the format of a BUILDINFO file found in the root of
a package created by makepkg. The file contains a description of the package's a package created by makepkg. The file contains a description of the package's
build environment. The information is formatted in key-value pairs separated by build environment. The information is formatted in key-value pairs separated by
a '=', one value per line. Arrays are represented multiple keys with the same a '=', one value per line. Arrays are represented as multiple key-value pairs
value. having the same key.
Description Description
----------- -----------
This is a description of the contents of version '1' of the This is a description of the contents of version '2' of the
BUILDINFO file format. BUILDINFO file format.
*format*:: *format*::
@ -53,6 +53,15 @@ BUILDINFO file format.
*startdir*:: *startdir*::
The directory from which makepkg was executed. The directory from which makepkg was executed.
*buildtool*::
The name of the tool ecosystem used to set up the build environment. Used
for defining a spec for reproducible builds, e.g. the source of the
linkman:makepkg.conf[5] used.
*buildtoolver*::
The full version of the 'buildtool', for example:
"$pkgver-$pkgrel-$pkgarch".
*buildenv (array)*:: *buildenv (array)*::
The build environment specified in makepkg.conf. The build environment specified in makepkg.conf.

View file

@ -1,4 +1,4 @@
# Doxyfile 1.8.20 # Doxyfile 1.9.3
#--------------------------------------------------------------------------- #---------------------------------------------------------------------------
# Project related configuration options # Project related configuration options
@ -12,7 +12,6 @@ OUTPUT_DIRECTORY = @OUTPUT_DIRECTORY@
CREATE_SUBDIRS = NO CREATE_SUBDIRS = NO
ALLOW_UNICODE_NAMES = NO ALLOW_UNICODE_NAMES = NO
OUTPUT_LANGUAGE = English OUTPUT_LANGUAGE = English
OUTPUT_TEXT_DIRECTION = None
BRIEF_MEMBER_DESC = YES BRIEF_MEMBER_DESC = YES
REPEAT_BRIEF = YES REPEAT_BRIEF = YES
ABBREVIATE_BRIEF = "The $name class" \ ABBREVIATE_BRIEF = "The $name class" \
@ -73,6 +72,7 @@ EXTRACT_STATIC = NO
EXTRACT_LOCAL_CLASSES = YES EXTRACT_LOCAL_CLASSES = YES
EXTRACT_LOCAL_METHODS = NO EXTRACT_LOCAL_METHODS = NO
EXTRACT_ANON_NSPACES = NO EXTRACT_ANON_NSPACES = NO
RESOLVE_UNNAMED_PARAMS = YES
HIDE_UNDOC_MEMBERS = NO HIDE_UNDOC_MEMBERS = NO
HIDE_UNDOC_CLASSES = NO HIDE_UNDOC_CLASSES = NO
HIDE_FRIEND_COMPOUNDS = NO HIDE_FRIEND_COMPOUNDS = NO
@ -81,6 +81,7 @@ INTERNAL_DOCS = NO
CASE_SENSE_NAMES = YES CASE_SENSE_NAMES = YES
HIDE_SCOPE_NAMES = NO HIDE_SCOPE_NAMES = NO
HIDE_COMPOUND_REFERENCE= NO HIDE_COMPOUND_REFERENCE= NO
SHOW_HEADERFILE = YES
SHOW_INCLUDE_FILES = YES SHOW_INCLUDE_FILES = YES
SHOW_GROUPED_MEMB_INC = NO SHOW_GROUPED_MEMB_INC = NO
FORCE_LOCAL_INCLUDES = NO FORCE_LOCAL_INCLUDES = NO
@ -110,6 +111,7 @@ QUIET = NO
WARNINGS = YES WARNINGS = YES
WARN_IF_UNDOCUMENTED = YES WARN_IF_UNDOCUMENTED = YES
WARN_IF_DOC_ERROR = YES WARN_IF_DOC_ERROR = YES
WARN_IF_INCOMPLETE_DOC = YES
WARN_NO_PARAMDOC = NO WARN_NO_PARAMDOC = NO
WARN_AS_ERROR = NO WARN_AS_ERROR = NO
WARN_FORMAT = "$file:$line: $text" WARN_FORMAT = "$file:$line: $text"
@ -152,7 +154,6 @@ VERBATIM_HEADERS = YES
# Configuration options related to the alphabetical class index # Configuration options related to the alphabetical class index
#--------------------------------------------------------------------------- #---------------------------------------------------------------------------
ALPHABETICAL_INDEX = NO ALPHABETICAL_INDEX = NO
COLS_IN_ALPHA_INDEX = 5
IGNORE_PREFIX = IGNORE_PREFIX =
#--------------------------------------------------------------------------- #---------------------------------------------------------------------------
# Configuration options related to the HTML output # Configuration options related to the HTML output
@ -168,12 +169,12 @@ HTML_EXTRA_FILES =
HTML_COLORSTYLE_HUE = 220 HTML_COLORSTYLE_HUE = 220
HTML_COLORSTYLE_SAT = 100 HTML_COLORSTYLE_SAT = 100
HTML_COLORSTYLE_GAMMA = 80 HTML_COLORSTYLE_GAMMA = 80
HTML_TIMESTAMP = YES
HTML_DYNAMIC_MENUS = YES HTML_DYNAMIC_MENUS = YES
HTML_DYNAMIC_SECTIONS = NO HTML_DYNAMIC_SECTIONS = NO
HTML_INDEX_NUM_ENTRIES = 100 HTML_INDEX_NUM_ENTRIES = 100
GENERATE_DOCSET = NO GENERATE_DOCSET = NO
DOCSET_FEEDNAME = "Doxygen generated docs" DOCSET_FEEDNAME = "Doxygen generated docs"
DOCSET_FEEDURL =
DOCSET_BUNDLE_ID = org.doxygen.Project DOCSET_BUNDLE_ID = org.doxygen.Project
DOCSET_PUBLISHER_ID = org.doxygen.Publisher DOCSET_PUBLISHER_ID = org.doxygen.Publisher
DOCSET_PUBLISHER_NAME = Publisher DOCSET_PUBLISHER_NAME = Publisher
@ -196,14 +197,16 @@ GENERATE_ECLIPSEHELP = NO
ECLIPSE_DOC_ID = org.doxygen.Project ECLIPSE_DOC_ID = org.doxygen.Project
DISABLE_INDEX = NO DISABLE_INDEX = NO
GENERATE_TREEVIEW = NO GENERATE_TREEVIEW = NO
FULL_SIDEBAR = NO
ENUM_VALUES_PER_LINE = 4 ENUM_VALUES_PER_LINE = 4
TREEVIEW_WIDTH = 250 TREEVIEW_WIDTH = 250
EXT_LINKS_IN_WINDOW = NO EXT_LINKS_IN_WINDOW = NO
OBFUSCATE_EMAILS = YES
HTML_FORMULA_FORMAT = png HTML_FORMULA_FORMAT = png
FORMULA_FONTSIZE = 10 FORMULA_FONTSIZE = 10
FORMULA_TRANSPARENT = YES
FORMULA_MACROFILE = FORMULA_MACROFILE =
USE_MATHJAX = NO USE_MATHJAX = NO
MATHJAX_VERSION = MathJax_2
MATHJAX_FORMAT = HTML-CSS MATHJAX_FORMAT = HTML-CSS
MATHJAX_RELPATH = http://www.mathjax.org/mathjax MATHJAX_RELPATH = http://www.mathjax.org/mathjax
MATHJAX_EXTENSIONS = MATHJAX_EXTENSIONS =
@ -234,9 +237,7 @@ PDF_HYPERLINKS = NO
USE_PDFLATEX = NO USE_PDFLATEX = NO
LATEX_BATCHMODE = NO LATEX_BATCHMODE = NO
LATEX_HIDE_INDICES = NO LATEX_HIDE_INDICES = NO
LATEX_SOURCE_CODE = NO
LATEX_BIB_STYLE = plain LATEX_BIB_STYLE = plain
LATEX_TIMESTAMP = NO
LATEX_EMOJI_DIRECTORY = LATEX_EMOJI_DIRECTORY =
#--------------------------------------------------------------------------- #---------------------------------------------------------------------------
# Configuration options related to the RTF output # Configuration options related to the RTF output
@ -247,7 +248,6 @@ COMPACT_RTF = NO
RTF_HYPERLINKS = NO RTF_HYPERLINKS = NO
RTF_STYLESHEET_FILE = RTF_STYLESHEET_FILE =
RTF_EXTENSIONS_FILE = RTF_EXTENSIONS_FILE =
RTF_SOURCE_CODE = NO
#--------------------------------------------------------------------------- #---------------------------------------------------------------------------
# Configuration options related to the man page output # Configuration options related to the man page output
#--------------------------------------------------------------------------- #---------------------------------------------------------------------------
@ -268,7 +268,9 @@ XML_NS_MEMB_FILE_SCOPE = NO
#--------------------------------------------------------------------------- #---------------------------------------------------------------------------
GENERATE_DOCBOOK = NO GENERATE_DOCBOOK = NO
DOCBOOK_OUTPUT = docbook DOCBOOK_OUTPUT = docbook
DOCBOOK_PROGRAMLISTING = NO #---------------------------------------------------------------------------
# Configuration options for the AutoGen Definitions output
#---------------------------------------------------------------------------
GENERATE_AUTOGEN_DEF = NO GENERATE_AUTOGEN_DEF = NO
#--------------------------------------------------------------------------- #---------------------------------------------------------------------------
# Configuration options related to the Perl module output # Configuration options related to the Perl module output
@ -304,19 +306,18 @@ EXTERNAL_PAGES = YES
#--------------------------------------------------------------------------- #---------------------------------------------------------------------------
# Configuration options related to the dot tool # Configuration options related to the dot tool
#--------------------------------------------------------------------------- #---------------------------------------------------------------------------
CLASS_DIAGRAMS = NO
DIA_PATH = DIA_PATH =
HIDE_UNDOC_RELATIONS = YES HIDE_UNDOC_RELATIONS = YES
HAVE_DOT = YES HAVE_DOT = YES
DOT_NUM_THREADS = 0 DOT_NUM_THREADS = 0
DOT_FONTNAME = Helvetica
DOT_FONTSIZE = 10
DOT_FONTPATH = DOT_FONTPATH =
CLASS_GRAPH = YES CLASS_GRAPH = YES
COLLABORATION_GRAPH = YES COLLABORATION_GRAPH = YES
GROUP_GRAPHS = YES GROUP_GRAPHS = YES
UML_LOOK = NO UML_LOOK = NO
UML_LIMIT_NUM_FIELDS = 10 UML_LIMIT_NUM_FIELDS = 10
DOT_UML_DETAILS = NO
DOT_WRAP_THRESHOLD = 17
TEMPLATE_RELATIONS = NO TEMPLATE_RELATIONS = NO
INCLUDE_GRAPH = YES INCLUDE_GRAPH = YES
INCLUDED_BY_GRAPH = YES INCLUDED_BY_GRAPH = YES
@ -324,6 +325,7 @@ CALL_GRAPH = NO
CALLER_GRAPH = NO CALLER_GRAPH = NO
GRAPHICAL_HIERARCHY = YES GRAPHICAL_HIERARCHY = YES
DIRECTORY_GRAPH = YES DIRECTORY_GRAPH = YES
DIR_GRAPH_MAX_DEPTH = 1
DOT_IMAGE_FORMAT = png DOT_IMAGE_FORMAT = png
INTERACTIVE_SVG = NO INTERACTIVE_SVG = NO
DOT_PATH = DOT_PATH =
@ -335,7 +337,6 @@ PLANTUML_CFG_FILE =
PLANTUML_INCLUDE_PATH = PLANTUML_INCLUDE_PATH =
DOT_GRAPH_MAX_NODES = 50 DOT_GRAPH_MAX_NODES = 50
MAX_DOT_GRAPH_DEPTH = 3 MAX_DOT_GRAPH_DEPTH = 3
DOT_TRANSPARENT = NO
DOT_MULTI_TARGETS = NO DOT_MULTI_TARGETS = NO
GENERATE_LEGEND = YES GENERATE_LEGEND = YES
DOT_CLEANUP = YES DOT_CLEANUP = YES

View file

@ -12,8 +12,8 @@ depends=('glibc')
makedepends=('ed') makedepends=('ed')
optdepends=('ed: for "patch -e" functionality') optdepends=('ed: for "patch -e" functionality')
source=("ftp://ftp.gnu.org/gnu/$pkgname/$pkgname-$pkgver.tar.xz"{,.sig}) source=("ftp://ftp.gnu.org/gnu/$pkgname/$pkgname-$pkgver.tar.xz"{,.sig})
md5sums=('e9ae5393426d3ad783a300a338c09b72' sha256sums=('9124ba46db0abd873d0995c2ca880e81252676bb6c03e0a37dfc5f608a9b0ceb'
'SKIP') 'SKIP')
build() { build() {
cd "$srcdir/$pkgname-$pkgver" cd "$srcdir/$pkgname-$pkgver"

View file

@ -3,7 +3,7 @@ PKGBUILD(5)
Name Name
---- ----
PKGBUILD - Arch Linux package build description file PKGBUILD - Package build description file
Synopsis Synopsis
@ -84,14 +84,7 @@ systems (see below).
*license (array)*:: *license (array)*::
This field specifies the license(s) that apply to the package. This field specifies the license(s) that apply to the package.
Commonly used licenses can be found in '/usr/share/licenses/common'. If you If multiple licenses are applicable, list all of them:
see the package's license there, simply reference it in the license
field (e.g., `license=('GPL')`). If the package provides a license not
available in '/usr/share/licenses/common', then you should include it
in the package itself and set `license=('custom')` or
`license=('custom:LicenseName')`. The license should be placed in
'$pkgdir/usr/share/licenses/$pkgname/' when building the package. If
multiple licenses are applicable, list all of them:
`license=('GPL' 'FDL')`. `license=('GPL' 'FDL')`.
*install*:: *install*::
@ -187,11 +180,6 @@ contain whitespace characters.
than or equal to), `<=` (less than or equal to), `=` (equal to), `>` than or equal to), `<=` (less than or equal to), `=` (equal to), `>`
(greater than), or `<` (less than). (greater than), or `<` (less than).
+ +
If the dependency name appears to be a library (ends with .so), makepkg will
try to find a binary that depends on the library in the built package and
append the version needed by the binary. Appending the version yourself
disables automatic detection.
+
Additional architecture-specific depends can be added by appending an Additional architecture-specific depends can be added by appending an
underscore and the architecture name e.g., 'depends_x86_64=()'. underscore and the architecture name e.g., 'depends_x86_64=()'.
@ -245,10 +233,6 @@ example, dcron can provide 'cron=2.0' to satisfy the 'cron>=2.0' dependency of
other packages. Provisions involving the `>` and `<` operators are invalid as other packages. Provisions involving the `>` and `<` operators are invalid as
only specific versions of a package may be provided. only specific versions of a package may be provided.
+ +
If the provision name appears to be a library (ends with .so), makepkg will
try to find the library in the built package and append the correct
version. Appending the version yourself disables automatic detection.
+
Additional architecture-specific provides can be added by appending an Additional architecture-specific provides can be added by appending an
underscore and the architecture name e.g., 'provides_x86_64=()'. underscore and the architecture name e.g., 'provides_x86_64=()'.
@ -329,6 +313,15 @@ underscore and the architecture name e.g., 'replaces_x86_64=()'.
Enable building packages using link time optimization. Adds '-flto' Enable building packages using link time optimization. Adds '-flto'
to both CFLAGS and CXXFLAGS. to both CFLAGS and CXXFLAGS.
*xdata (array)*::
This array allows you to add additional metadata to the package.
This data is neither used by pacman nor by makepkg;
It has purely informational purpose, or may be interpreted by third-party tools.
+
All entries in that array must have the form 'key=value', where
'key' is an arbitrary non-empty string and 'value' must not contain an equal sign.
Furthermore, the key ``pkgtype'' is reserved for the makepkg program.
Packaging Functions Packaging Functions
------------------- -------------------
@ -352,6 +345,13 @@ function.
the optional functions listed below. The packaging stage is run using the optional functions listed below. The packaging stage is run using
fakeroot to ensure correct file permissions in the resulting package. fakeroot to ensure correct file permissions in the resulting package.
All other functions will be run as the user calling makepkg. All other functions will be run as the user calling makepkg.
This function is run inside `$srcdir`.
*verify() Function*::
An optional `verify()` function can be specified to implement arbitrary
source authentication. The function should return a non-zero exit code when
verification fails. This function is run before sources are extracted.
This function is run inside `$startdir`.
*prepare() Function*:: *prepare() Function*::
An optional `prepare()` function can be specified in which operations to An optional `prepare()` function can be specified in which operations to
@ -359,16 +359,19 @@ function.
function is run after the source extraction and before the `build()` function is run after the source extraction and before the `build()`
function. The `prepare()` function is skipped when source extraction function. The `prepare()` function is skipped when source extraction
is skipped. is skipped.
This function is run inside `$srcdir`.
*build() Function*:: *build() Function*::
The optional `build()` function is used to compile and/or adjust the source The optional `build()` function is used to compile and/or adjust the source
files in preparation to be installed by the `package()` function. files in preparation to be installed by the `package()` function.
This function is run inside `$srcdir`.
*check() Function*:: *check() Function*::
An optional `check()` function can be specified in which a package's An optional `check()` function can be specified in which a package's
test-suite may be run. This function is run between the `build()` and test-suite may be run. This function is run between the `build()` and
`package()` functions. Be sure any exotic commands used are covered by the `package()` functions. Be sure any exotic commands used are covered by the
`checkdepends` array. `checkdepends` array.
This function is run inside `$srcdir`.
All of the above variables such as `$pkgname` and `$pkgver` are available for All of the above variables such as `$pkgname` and `$pkgver` are available for
use in the packaging functions. In addition, makepkg defines the following use in the packaging functions. In addition, makepkg defines the following
@ -378,7 +381,6 @@ variables:
This contains the directory where makepkg extracts, or copies, all source This contains the directory where makepkg extracts, or copies, all source
files. files.
+ +
All of the packaging functions defined above are run starting inside `$srcdir`
*pkgdir*:: *pkgdir*::
This contains the directory where makepkg bundles the installed package. This contains the directory where makepkg bundles the installed package.
@ -480,6 +482,9 @@ Currently makepkg supports the Bazaar, Git, Subversion, Fossil and Mercurial
version control systems. For other version control systems, manual cloning of version control systems. For other version control systems, manual cloning of
upstream repositories must be done in the `prepare()` function. upstream repositories must be done in the `prepare()` function.
Some <<VCS,VCS Sources>> like Git support pinning the checkout by a checksum of
its content using deterministic export functionality like ``git archive''.
The source URL is divided into four components: The source URL is divided into four components:
*directory*:: *directory*::
@ -524,8 +529,7 @@ The source URL is divided into four components:
Example Example
------- -------
The following is an example PKGBUILD for the 'patch' package. For more The following is an example PKGBUILD for the 'patch' package. For more
examples, look through the build files of your distribution's packages. For examples, look through the build files of your distribution's packages.
those using Arch Linux, consult the Arch Build System (ABS) tree.
[source,sh] [source,sh]
------------------------------- -------------------------------

View file

@ -1,5 +1,5 @@
## linkman: macro ## linkman: macro
# Inspired by/borrowed from the GIT source tree at Documentation/asciidoc.conf # Inspired by/borrowed from the Git source tree at Documentation/asciidoc.conf
# #
# Usage: linkman:command[manpage-section] # Usage: linkman:command[manpage-section]
# #

View file

@ -6,9 +6,10 @@ information on pacman and its related tools.
Bugs Bugs
---- ----
Bugs? You must be kidding; there are no bugs in this software. But if we Bugs? You must be kidding; there are no bugs in this software. But if we
happen to be wrong, submit a bug report with as much detail as possible happen to be wrong, please report them to the issue tracker at
at the https://bugs.archlinux.org/index.php?project=3[Arch Linux Bug Tracker] link:https://gitlab.archlinux.org/pacman/pacman/-/issues[] with specific
in the Pacman section. information such as your command-line, the nature of the bug, and even
the package database if it helps.
Authors Authors
@ -18,7 +19,6 @@ Current maintainers:
* Allan McRae <allan@archlinux.org> * Allan McRae <allan@archlinux.org>
* Andrew Gregory <andrew.gregory.8@gmail.com> * Andrew Gregory <andrew.gregory.8@gmail.com>
* Eli Schwartz <eschwartz@archlinux.org>
* Morgan Adamiec <morganamilo@archlinux.org> * Morgan Adamiec <morganamilo@archlinux.org>
Past major contributors: Past major contributors:
@ -30,6 +30,7 @@ Past major contributors:
* Xavier Chantry <shiningxc@gmail.com> * Xavier Chantry <shiningxc@gmail.com>
* Nagy Gabor <ngaba@bibl.u-szeged.hu> * Nagy Gabor <ngaba@bibl.u-szeged.hu>
* Dave Reisner <dreisner@archlinux.org> * Dave Reisner <dreisner@archlinux.org>
* Eli Schwartz <eschwartz@archlinux.org>
For additional contributors, use `git shortlog -s` on the pacman.git For additional contributors, use `git shortlog -s` on the pacman.git
repository. repository.

View file

@ -34,6 +34,8 @@ makepkg/repo-add/pacman toolchain via GnuPG and GPGME.
Version 5.0 added support for pre/post-transaction hooks and sync database file Version 5.0 added support for pre/post-transaction hooks and sync database file
list operations. list operations.
Version 6.0 added support for parallel downloads.
Documentation Documentation
------------- -------------
@ -77,6 +79,8 @@ Releases
[frame="topbot",grid="none",options="header,autowidth"] [frame="topbot",grid="none",options="header,autowidth"]
!====== !======
!Version !Date !Version !Date
!7.0.0 !2024-07-14
!6.1.0 !2024-03-04
!6.0.1 !2021-09-04 !6.0.1 !2021-09-04
!6.0.0 !2021-05-20 !6.0.0 !2021-05-20
!6.0.0alpha1 !2020-12-04 !6.0.0alpha1 !2020-12-04
@ -109,6 +113,11 @@ Releases
!3.4.3 !2011-01-22 !3.4.3 !2011-01-22
!3.4.2 !2010-12-29 !3.4.2 !2010-12-29
!3.4.1 !2010-09-03 !3.4.1 !2010-09-03
!======
|
[frame="topbot",grid="none",options="header,autowidth"]
!======
!Version !Date
!3.4.0 !2010-06-16 !3.4.0 !2010-06-16
!3.3.3 !2009-11-10 !3.3.3 !2009-11-10
!3.3.2 !2009-10-05 !3.3.2 !2009-10-05
@ -118,11 +127,6 @@ Releases
!3.2.1 !2008-08-26 !3.2.1 !2008-08-26
!3.2.0 !2008-07-30 !3.2.0 !2008-07-30
!3.1.4 !2008-04-01 !3.1.4 !2008-04-01
!======
|
[frame="topbot",grid="none",options="header,autowidth"]
!======
!Version !Date
!3.1.3 !2008-03-06 !3.1.3 !2008-03-06
!3.1.2 !2008-02-20 !3.1.2 !2008-02-20
!3.1.1 !2008-01-20 !3.1.1 !2008-01-20
@ -148,16 +152,16 @@ Releases
!2.9 !2004-09-18 !2.9 !2004-09-18
!2.8.4 !2004-08-23 !2.8.4 !2004-08-23
!2.8.3 !2004-08-04 !2.8.3 !2004-08-04
!2.8.2 !2004-07-22
!2.8.1 !2004-07-17
!2.8 !2004-07-03
!2.7.9 !2004-04-30
!2.7.8 !2004-04-29
!====== !======
| |
[frame="topbot",grid="none",options="header,autowidth"] [frame="topbot",grid="none",options="header,autowidth"]
!====== !======
!Version !Date !Version !Date
!2.8.2 !2004-07-22
!2.8.1 !2004-07-17
!2.8 !2004-07-03
!2.7.9 !2004-04-30
!2.7.8 !2004-04-29
!2.7.7 !2004-04-15 !2.7.7 !2004-04-15
!2.7.6 !2004-04-04 !2.7.6 !2004-04-04
!2.7.5 !2004-03-02 !2.7.5 !2004-03-02
@ -191,7 +195,9 @@ Releases
|====== |======
Source code for all releases is available at Source code for releases since moving to gitlab is available at
link:https://gitlab.archlinux.org/pacman/pacman/-/releases[].
Source code for historical releases is available at
link:https://sources.archlinux.org/other/pacman/[]. To install, download the newest link:https://sources.archlinux.org/other/pacman/[]. To install, download the newest
available source tarball, unpack it in a directory, and run the three magic available source tarball, unpack it in a directory, and run the three magic
commands: commands:
@ -239,18 +245,14 @@ link:translation-help.html[translation-help].
Bugs Bugs
---- ----
If you find bugs (which is quite likely), please email them to the pacman-dev If you find bugs (which is quite likely), please report them to the issue
mailing last at mailto:pacman-dev@archlinux.org[] with specific information tracker at link:https://gitlab.archlinux.org/pacman/pacman/-/issues[] with
such as your command-line, the nature of the bug, and even the package database specific information such as your command-line, the nature of the bug, and even
if it helps. the package database if it helps.
You can also post a bug to the Arch Linux bug tracker
link:https://bugs.archlinux.org/index.php?project=3[Flyspray]. Be sure to file
bugs under the Pacman project.
Copyright Copyright
--------- ---------
pacman is Copyright (C) 2006-2021 Pacman Development Team pacman is Copyright (C) 2006-2025 Pacman Development Team
<pacman-dev@archlinux.org> and Copyright (C) 2002-2006 Judd Vinet <pacman-dev@lists.archlinux.org> and Copyright (C) 2002-2006 Judd Vinet
<jvinet@zeroflux.org> and is licensed through the GNU General Public License, <jvinet@zeroflux.org> and is licensed through the GNU General Public License,
version 2 or later. version 2 or later.

View file

@ -85,7 +85,7 @@ Example PKGBUILD
license=('PerlArtistic' 'GPL') license=('PerlArtistic' 'GPL')
depends=('perl') depends=('perl')
source=("http://search.cpan.org/CPAN/authors/id/S/SH/SHERZODR/Config-Simple-${pkgver}.tar.gz") source=("http://search.cpan.org/CPAN/authors/id/S/SH/SHERZODR/Config-Simple-${pkgver}.tar.gz")
md5sums=('f014aec54f0a1e2e880d317180fce502') sha256sums=('dd9995706f0f9384a15ccffe116c3b6e22f42ba2e58d8f24ed03c4a0e386edb4')
_distname="Config-Simple" _distname="Config-Simple"
# template start; name=perl-module; version=1.0; # template start; name=perl-module; version=1.0;

View file

@ -75,7 +75,7 @@ Options
For each source file in the source array of PKGBUILD, download the file For each source file in the source array of PKGBUILD, download the file
if required and generate integrity checks. The integrity checks generated if required and generate integrity checks. The integrity checks generated
are determined by the checks present in the PKGBUILD, falling back to the are determined by the checks present in the PKGBUILD, falling back to the
value of the INTEGRITY_CHECK array in makepkg.conf(5) if these are absent value of the INTEGRITY_CHECK array in makepkg.conf(5) if these are absent.
This output can be redirected into your PKGBUILD for source validation This output can be redirected into your PKGBUILD for source validation
using "`makepkg -g >> PKGBUILD`". using "`makepkg -g >> PKGBUILD`".
@ -144,7 +144,11 @@ Options
Display version information. Display version information.
*-C, \--cleanbuild*:: *-C, \--cleanbuild*::
Remove the $srcdir before building the package. Clean build artifacts from previous runs of makepkg in the current
directory by removing $srcdir before building the package.
*-D* <dir>, *\--dir* <dir> ::
Change to directory <dir> before reading the PKGBUILD or doing anything else.
*\--allsource*:: *\--allsource*::
Do not actually build the package, but build a source-only tarball that Do not actually build the package, but build a source-only tarball that
@ -168,6 +172,9 @@ Options
*\--noprepare*:: *\--noprepare*::
Do not run the prepare() function in the PKGBUILD. Do not run the prepare() function in the PKGBUILD.
*\--noverify*::
Do not run the verify() function in the PKGBUILD.
*\--sign*:: *\--sign*::
Sign the resulting package with gpg, overriding the setting in Sign the resulting package with gpg, overriding the setting in
linkman:makepkg.conf[5]. linkman:makepkg.conf[5].
@ -227,6 +234,9 @@ before building.
Environment Variables Environment Variables
--------------------- ---------------------
**MAKEPKG_LIBRARY**="/path/to/directory"::
Use an alternative libmakepkg path instead of the {libmakepkgdir} default.
**PACMAN**:: **PACMAN**::
The command that will be used to check for missing dependencies and to The command that will be used to check for missing dependencies and to
install and remove packages. Pacman's '-Qq', '-Rns', '-S', '-T', and '-U' install and remove packages. Pacman's '-Qq', '-Rns', '-S', '-T', and '-U'
@ -237,6 +247,11 @@ Environment Variables
Use an alternate config file instead of the +{sysconfdir}/makepkg.conf+ Use an alternate config file instead of the +{sysconfdir}/makepkg.conf+
default. default.
**MAKEPKG_GIT_CONFIG=**"/path/to/file"::
Use an alternate config file for Git instead of the
+{sysconfdir}/makepkg.d/gitconfig+ default. makepkg always prevents Git
from loading any other config files.
**PKGDEST=**"/path/to/directory":: **PKGDEST=**"/path/to/directory"::
Directory where the resulting packages will be stored. Overrides the Directory where the resulting packages will be stored. Overrides the
corresponding value defined in linkman:makepkg.conf[5]. corresponding value defined in linkman:makepkg.conf[5].
@ -287,6 +302,12 @@ Environment Variables
**BUILDTOOLVER=**"<version>":: **BUILDTOOLVER=**"<version>"::
The version of the '$BUILDTOOL' used. The version of the '$BUILDTOOL' used.
**MAKEPKG_LINT_PKGBUILD=**0::
Setting to 0 disables PKGBUILD linting within makepkg. Useful on systems
with slow bash subshell operations, or on PKGBUILDs with extreme amounts of
package splitting.
Configuration Configuration
------------- -------------
See linkman:makepkg.conf[5] for more details on configuring makepkg using the See linkman:makepkg.conf[5] for more details on configuring makepkg using the
@ -350,6 +371,10 @@ On exit, makepkg will return one of the following error codes.
16:: 16::
Specified GPG key does not exist or failed to sign package. Specified GPG key does not exist or failed to sign package.
17::
The local repository is not a clone of the source repository
specified in PKGBUILD.
See Also See Also
-------- --------
linkman:makepkg.conf[5], linkman:PKGBUILD[5], linkman:pacman[8] linkman:makepkg.conf[5], linkman:PKGBUILD[5], linkman:pacman[8]

View file

@ -23,6 +23,9 @@ NOTE: This does not guarantee that all package Makefiles will use your exported
variables. Some of them are non-standard. variables. Some of them are non-standard.
The system-wide configuration file is found in {sysconfdir}/makepkg.conf. The system-wide configuration file is found in {sysconfdir}/makepkg.conf.
Specific additions (e.g. build flags for additional languages) can be placed
in {sysconfdir}/makepkg.conf.d/*.conf.
Individual options can be overridden (or added to) on a per-user basis in Individual options can be overridden (or added to) on a per-user basis in
$XDG_CONFIG_HOME/pacman/makepkg.conf or ~/.makepkg.conf, with the former $XDG_CONFIG_HOME/pacman/makepkg.conf or ~/.makepkg.conf, with the former
taking priority. taking priority.
@ -59,6 +62,11 @@ Options
A string such as ``i686-pc-linux-gnu''; do not touch this unless you know what A string such as ``i686-pc-linux-gnu''; do not touch this unless you know what
you are doing. This can be commented out by most users if desired. you are doing. This can be commented out by most users if desired.
**NPROC=**""::
Sets the number of processors to use for parallel jobs in makepkg.
Note: this does not affect parallelization of tasks during ``build()`` and
related functions.
**CPPFLAGS=**"cppflags":: **CPPFLAGS=**"cppflags"::
Flags used for the C preprocessor; see CFLAGS for more information. Flags used for the C preprocessor; see CFLAGS for more information.
@ -72,15 +80,16 @@ Options
**CXXFLAGS=**"cxxflags":: **CXXFLAGS=**"cxxflags"::
Flags used for the C++ compiler; see CFLAGS for more info. Flags used for the C++ compiler; see CFLAGS for more info.
**RUSTFLAGS=**"rustflags"::
Flags used for the Rust compiler, similar in spirit to CFLAGS. Read
linkman:rustc[1] for more details on the available flags.
**LDFLAGS=**"ldflags":: **LDFLAGS=**"ldflags"::
Flags used for the linker. Several options may be specified with common Flags used for the linker. Several options may be specified with common
usage resembling ``-Wl,--hash-style=gnu''. Read ld(1) for more details on usage resembling ``-Wl,--hash-style=gnu''. Read ld(1) for more details on
available linker flags. available linker flags.
**LTOFLAGS=**"ltoflags"::
Additional compiler and linker flags appended to `CFLAGS`, `CXXFLAGS`
and `LDFLAGS` when building with link time optimization. If empty,
``-flto'' is used.
**MAKEFLAGS=**"makeflags":: **MAKEFLAGS=**"makeflags"::
This is often used to set the number of jobs used; for example, `-j2`. This is often used to set the number of jobs used; for example, `-j2`.
Other flags that make accepts can also be passed. Other flags that make accepts can also be passed.
@ -93,11 +102,6 @@ Options
**DEBUG_CXXFLAGS=**"debug_cxxflags":: **DEBUG_CXXFLAGS=**"debug_cxxflags"::
Debug flags used for the C++ compiler; see DEBUG_CFLAGS for more info. Debug flags used for the C++ compiler; see DEBUG_CFLAGS for more info.
**DEBUG_RUSTFLAGS=**"debug_rustflags"::
Additional compiler flags appended to `RUSTFLAGS` for use in debugging.
Usually this would include: ``-C debuginfo=2''. Read linkman:rustc[1] for
more details on the available flags.
**BUILDENV=(**!distcc !color !ccache check !sign**)**:: **BUILDENV=(**!distcc !color !ccache check !sign**)**::
This array contains options that affect the build environment; the defaults This array contains options that affect the build environment; the defaults
are shown here. All options should always be left in the array; to enable are shown here. All options should always be left in the array; to enable
@ -126,7 +130,7 @@ Options
*sign*;; *sign*;;
Generate a PGP signature file using GnuPG. This will execute 'gpg Generate a PGP signature file using GnuPG. This will execute 'gpg
\--detach-sign \--use-agent' on the built package to generate a detached \--detach-sign' on the built package to generate a detached
signature file, using the GPG agent, if it is available. The signature signature file, using the GPG agent, if it is available. The signature
file will be the entire file name of the package with a ``.sig'' file will be the entire file name of the package with a ``.sig''
extension. extension.
@ -147,7 +151,7 @@ Options
Specify a key to use for GPG signing instead of the default key in the Specify a key to use for GPG signing instead of the default key in the
keyring. Can be overridden with makepkg's '\--key' option. keyring. Can be overridden with makepkg's '\--key' option.
**OPTIONS=(**!strip docs libtool staticlibs emptydirs !zipman !purge !debug**)**:: **OPTIONS=(**!strip docs libtool staticlibs emptydirs ...**)**::
This array contains options that affect default packaging. They are This array contains options that affect default packaging. They are
equivalent to options that can be placed in the PKGBUILD; the defaults are equivalent to options that can be placed in the PKGBUILD; the defaults are
shown here. All options should always be left in the array; to enable or shown here. All options should always be left in the array; to enable or
@ -190,8 +194,14 @@ Options
package containing the debug symbols when used with `strip'. package containing the debug symbols when used with `strip'.
*lto*;; *lto*;;
Enable building packages using link time optimization. Adds '-flto' Enable building packages using link time optimization. Adds the
to both CFLAGS and CXXFLAGS. flags specified in LTOFLAGS to CFLAGS, CXXFLAGS and LDFLAGS (or
``-flto'' if LTOFLAGS is empty).
*autodeps*;;
Enable the automatic addition of libraries to the depends and
provides arrays. Search library directories are controlled by
the LIB_DIRS variable defined below.
**INTEGRITY_CHECK=(**check1 ...**)**:: **INTEGRITY_CHECK=(**check1 ...**)**::
File integrity checks to use. Multiple checks may be specified; this File integrity checks to use. Multiple checks may be specified; this
@ -223,6 +233,12 @@ Options
that are located in opt/, you may need to add the directory to this that are located in opt/, you may need to add the directory to this
array. *NOTE:* Do not add the leading slash to the directory name. array. *NOTE:* Do not add the leading slash to the directory name.
**LIB_DIRS=(**lib:usr/lib ...**)**::
If `autodeps` is specified in the `OPTIONS` array, this variable will
instruct makepkg where to look to find libraries to add to the `provides`
array. The format is "prefix:path", where provides will be added for
libraries found in "path" with the specified prefix added.
**PURGE_TARGETS=(**usr/{,share}/info/dir .podlist *.pod...**)**:: **PURGE_TARGETS=(**usr/{,share}/info/dir .podlist *.pod...**)**::
If `purge` is specified in the `OPTIONS` array, this variable will If `purge` is specified in the `OPTIONS` array, this variable will
instruct makepkg which files to remove from the package. This is instruct makepkg which files to remove from the package. This is
@ -274,9 +290,10 @@ Options
**PKGEXT=**"{pkgext}", **SRCEXT=**"{srcext}":: **PKGEXT=**"{pkgext}", **SRCEXT=**"{srcext}"::
Sets the compression used when making compiled or source packages. Sets the compression used when making compiled or source packages.
Valid suffixes are `.tar.gz`, `.tar.bz2`, `.tar.xz`, `.tar.zst`, Valid suffixes are `.pkg` or `.src` (for PKGEXT and SRCEXT respectively)
`.tar.lzo`, `.tar.lrz`, `.tar.lz4`, `.tar.lz` and `.tar.Z`, or followed by one of `.tar.gz`, `.tar.bz2`, `.tar.xz`, `.tar.zst`, `.tar.lzo`,
simply `.tar` to disable compression entirely. `.tar.lrz`, `.tar.lz4`, `.tar.lz` and `.tar.Z`, or simply `.tar` to
disable compression entirely.
**PACMAN_AUTH=()**:: **PACMAN_AUTH=()**::
Specify a command prefix for running pacman as root. If unset, makepkg will Specify a command prefix for running pacman as root. If unset, makepkg will

View file

@ -5,7 +5,9 @@ manpages = [
{ 'name': 'makepkg-template.1' }, { 'name': 'makepkg-template.1' },
{ 'name': 'repo-add.8' }, { 'name': 'repo-add.8' },
{ 'name': 'vercmp.8' }, { 'name': 'vercmp.8' },
{ 'name': 'testpkg.8' },
{ 'name': 'pacman-key.8' }, { 'name': 'pacman-key.8' },
{ 'name': 'pacman-db-upgrade.8' },
{ 'name': 'PKGBUILD.5', 'extra_depends' : [ 'PKGBUILD-example.txt' ] }, { 'name': 'PKGBUILD.5', 'extra_depends' : [ 'PKGBUILD-example.txt' ] },
{ 'name': 'makepkg.conf.5' }, { 'name': 'makepkg.conf.5' },
{ 'name': 'pacman.conf.5' }, { 'name': 'pacman.conf.5' },
@ -28,10 +30,12 @@ asciidoc_opts = [
'-a', 'srcext=@0@'.format(get_option('src-ext')), '-a', 'srcext=@0@'.format(get_option('src-ext')),
'-a', 'pkgext=@0@'.format(get_option('pkg-ext')), '-a', 'pkgext=@0@'.format(get_option('pkg-ext')),
'-a', 'pkgdatadir=@0@'.format(PKGDATADIR), '-a', 'pkgdatadir=@0@'.format(PKGDATADIR),
'-a', 'keyringdir=@0@'.format(KEYRINGDIR),
'-a', 'localstatedir=@0@'.format(LOCALSTATEDIR), '-a', 'localstatedir=@0@'.format(LOCALSTATEDIR),
'-a', 'sysconfdir=@0@'.format(SYSCONFDIR), '-a', 'sysconfdir=@0@'.format(SYSCONFDIR),
'-a', 'datarootdir=@0@'.format(DATAROOTDIR), '-a', 'datarootdir=@0@'.format(DATAROOTDIR),
'-a', 'rootdir=@0@'.format(ROOTDIR), '-a', 'rootdir=@0@'.format(ROOTDIR),
'-a', 'libmakepkgdir=@0@'.format(LIBMAKEPKGDIR),
] ]
html_targets = [] html_targets = []

View file

@ -34,7 +34,7 @@ Options
*-R, \--rootdir* <path>:: *-R, \--rootdir* <path>::
Specify an alternate installation root (default is `/`). Specify an alternate installation root (default is `/`).
*-r, \--repo* <remote>:: *-r, \--repo* <repository>::
Query options for a specific repository. Query options for a specific repository.
*-v, \--verbose*:: *-v, \--verbose*::

View file

@ -0,0 +1,36 @@
pacman-db-upgrade(8)
====================
Name
----
pacman-db-upgrade - upgrade the local pacman database to a newer format
Synopsis
--------
'pacman-db-upgrade' [options]
Description
-----------
'pacman-db-upgrade' is a script that upgrades the local database used
by linkman:pacman[8] to a newer format.
Options
--------------
*-h, \--help*::
Show the built-in help message and exit.
*-V, \--version*::
Show version information and exit.
*-d, \--dbpath* <path>::
Set an alternate database location.
*-r, \--root* <path>::
Set an alternate installation root.
*\--config* <path>::
Set an alternate configuration file.
*\--nocolor*::
Remove color from output.
See Also
--------
linkman:pacman[8]
include::footer.asciidoc[]

View file

@ -86,7 +86,7 @@ Operations
*\--populate*:: *\--populate*::
Reload the default keys from the (optionally provided) keyrings in Reload the default keys from the (optionally provided) keyrings in
+{pkgdatadir}/keyrings+. For more information, see +{keyringdir}+. For more information, see
<<PK,Providing a Keyring for Import>> below. <<PK,Providing a Keyring for Import>> below.
*-u, \--updatedb*:: *-u, \--updatedb*::
@ -129,7 +129,7 @@ A distribution or other repository provided may want to provide a set of
PGP keys used in the signing of its packages and repository databases that can PGP keys used in the signing of its packages and repository databases that can
be readily imported into the pacman keyring. This is achieved by providing a be readily imported into the pacman keyring. This is achieved by providing a
PGP keyring file `foo.gpg` that contains the keys for the foo keyring in the PGP keyring file `foo.gpg` that contains the keys for the foo keyring in the
directory +{pkgdatadir}/keyrings+. directory +{keyringdir}+.
Optionally, the file `foo-trusted` can be provided containing a list of trusted Optionally, the file `foo-trusted` can be provided containing a list of trusted
key IDs for that keyring. This is a file in a format compatible with 'gpg key IDs for that keyring. This is a file in a format compatible with 'gpg

View file

@ -151,7 +151,8 @@ Options
+{localstatedir}/cache/pacman/pkg+). Multiple cache directories can be +{localstatedir}/cache/pacman/pkg+). Multiple cache directories can be
specified, and they are tried in the order they are passed to pacman. specified, and they are tried in the order they are passed to pacman.
*NOTE*: This is an absolute path, and the root path is not automatically *NOTE*: This is an absolute path, and the root path is not automatically
prepended. prepended. If DownloadUser is set in linkman:pacman.conf[5], then the
specified user must have permission to access the cache directory.
*\--color* <when>:: *\--color* <when>::
Specify when to enable coloring. Valid options are 'always', 'never', or Specify when to enable coloring. Valid options are 'always', 'never', or
@ -195,12 +196,15 @@ Options
Disable defaults for low speed limit and timeout on downloads. Use this Disable defaults for low speed limit and timeout on downloads. Use this
if you have issues downloading files with proxy and/or security gateway. if you have issues downloading files with proxy and/or security gateway.
*\--sysroot* <dir>:: *\--sysroot* <dir>:: Specify an alternative system root. This path will be
Specify an alternative system root. Pacman will chroot and chdir into the prepended to all other configuration directories and any repository servers
system root prior to running. This allows mounted guest systems to be beginning with `file://`. Any paths or URLs passed as targets will not be
properly operated on. Any other paths given will be interpreted as relative modified. This allows mounted guest systems to be properly operated on.
to the system root. Requires root privileges.
*\--disable-sandbox*::
Disable the default sandbox applied to the process downloading files on Linux
systems. Useful if experiencing landlock related failures while downloading
files when running a Linux kernel that does not support this feature.
Transaction Options (apply to '-S', '-R' and '-U') Transaction Options (apply to '-S', '-R' and '-U')
-------------------------------------------------- --------------------------------------------------
@ -212,7 +216,7 @@ Transaction Options (apply to '-S', '-R' and '-U')
*\--assume-installed* <package=version>:: *\--assume-installed* <package=version>::
Add a virtual package "package" with version "version" to the transaction Add a virtual package "package" with version "version" to the transaction
to satisfy dependencies. This allows to disable specific dependency checks to satisfy dependencies. This allows disabling the specific dependency checks
without affecting all dependency checks. To disable all dependency without affecting all dependency checks. To disable all dependency
checking, see the '\--nodeps' option. checking, see the '\--nodeps' option.
@ -235,8 +239,15 @@ Transaction Options (apply to '-S', '-R' and '-U')
*\--print-format* <format>:: *\--print-format* <format>::
Specify a printf-like format to control the output of the '\--print' Specify a printf-like format to control the output of the '\--print'
operation. The possible attributes are: "%n" for pkgname, "%v" for pkgver, operation. The possible attributes are: "%a" for arch, "%b" for
"%l" for location, "%r" for repository, and "%s" for size. Implies '\--print'. builddate, "%d" for description, "%e" for pkgbase, "%f" for filename,
"%g" for base64 encoded PGP signature, "%h" for sha256sum, "%m" for
md5sum, "%n" for pkgname, "%p" for packager, "%v" for pkgver, "%l" for
location, "%r" for repository, "%s" for size, "%C" for checkdepends,
"%D" for depends, "%G" for groups, "%H" for conflicts, "%L" for
licenses, "%M" for makedepends, "%O" for optional depends, "%P" for
provides and "%R" for replaces.
Implies '\--print'.
Upgrade Options (apply to '-S' and '-U')[[UO]] Upgrade Options (apply to '-S' and '-U')[[UO]]
@ -449,11 +460,11 @@ Additional targets can also be specified manually, so that '-Su foo' will do a
system upgrade and install/upgrade the "foo" package in the same operation. system upgrade and install/upgrade the "foo" package in the same operation.
*-y, \--refresh*:: *-y, \--refresh*::
Download a fresh copy of the master package database from the server(s) Download a fresh copy of the master package databases '(repo.db)' from the
defined in linkman:pacman.conf[5]. This should typically be used each time server(s) defined in linkman:pacman.conf[5]. This should typically be used
you use '\--sysupgrade' or '-u'. Passing two '\--refresh' or '-y' flags each time you use '\--sysupgrade' or '-u'. Passing two '\--refresh' or '-y'
will force a refresh of all package databases, even if they appear to be flags will force a refresh of all package databases, even if they appear to
up-to-date. be up-to-date.
Database Options (apply to '-D')[[QO]] Database Options (apply to '-D')[[QO]]
@ -482,8 +493,8 @@ Database Options (apply to '-D')[[QO]]
File Options (apply to '-F')[[FO]] File Options (apply to '-F')[[FO]]
---------------------------------- ----------------------------------
*-y, --refresh*:: *-y, --refresh*::
Download fresh package databases from the server. Use twice to force a Download fresh package file databases '(repo.files)' from the server.
refresh even if databases are up to date. Use twice to force a refresh even if databases are up to date.
*-l, \--list*:: *-l, \--list*::
List the files owned by the queried package. List the files owned by the queried package.

View file

@ -121,7 +121,7 @@ Options
architecture 'any' can always be installed, as they are meant to be architecture 'any' can always be installed, as they are meant to be
architecture independent. architecture independent.
*XferCommand =* /path/to/command %u:: *XferCommand =* /path/to/command %u [%o]::
If set, an external program will be used to download all remote files. If set, an external program will be used to download all remote files.
All instances of `%u` will be replaced with the download URL. If present, All instances of `%u` will be replaced with the download URL. If present,
instances of `%o` will be replaced with the local filename, plus a instances of `%o` will be replaced with the local filename, plus a
@ -207,6 +207,14 @@ Options
positive integer. If this config option is not set then only one download positive integer. If this config option is not set then only one download
stream is used (i.e. downloads happen sequentially). stream is used (i.e. downloads happen sequentially).
*DownloadUser =* username::
Specifies the user to switch to for downloading files. If this config
option is not set then the downloads are done as the user running pacman.
*DisableSandbox*::
Disable the default sandbox applied to the process downloading files on Linux
systems. Useful if experiencing landlock related failures while downloading
files when running a Linux kernel that does not support this feature.
Repository Sections Repository Sections
------------------- -------------------
@ -227,7 +235,7 @@ contain a file that lists the servers for that repository.
# use this server first # use this server first
Server = ftp://ftp.archlinux.org/$repo/os/$arch Server = ftp://ftp.archlinux.org/$repo/os/$arch
# next use servers as defined in the mirrorlist below # next use servers as defined in the mirrorlist below
Include = {sysconfdir}/pacman.d/mirrorlist Include = /etc/pacman.d/mirrorlist
-------- --------
The order of repositories in the configuration files matters; repositories The order of repositories in the configuration files matters; repositories
@ -240,6 +248,12 @@ number.
general configuration options. Wildcards in the specified paths will get general configuration options. Wildcards in the specified paths will get
expanded based on linkman:glob[7] rules. expanded based on linkman:glob[7] rules.
*CacheServer =* url::
A full URL to a location where the packages, and signatures (if
available) for this repository can be found. Cache servers will be tried
before any non-cache servers, will not be removed from the server pool for
404 download errors, and will not be used for database files.
*Server =* url:: *Server =* url::
A full URL to a location where the database, packages, and signatures (if A full URL to a location where the database, packages, and signatures (if
available) for this repository can be found. available) for this repository can be found.

View file

@ -29,9 +29,10 @@ specified on the command line. Multiple packages to remove can be specified
on the command line. on the command line.
A package database is a tar file, optionally compressed. Valid extensions are A package database is a tar file, optionally compressed. Valid extensions are
``.db'' followed by an archive extension of ``.tar'', ``.tar.gz'', ``.tar.bz2'', ``.db'' followed by an archive extension of ``.tar'', ``.tar.bz2'',
``.tar.xz'', or ``.tar.Z''. The file does not need to exist, but all parent ``.tar.gz'', ``.tar.lrz'', ``.tar.lz'', ``.tar.lz4'', ``.tar.lzo'',
directories must exist. ``.tar.xz'', ``.tar.zst'' or ``.tar.Z''. The file does not need to exist, but
all parent directories must exist.
Common Options Common Options
@ -42,13 +43,13 @@ Common Options
*-s, \--sign*:: *-s, \--sign*::
Generate a PGP signature file using GnuPG. This will execute `gpg Generate a PGP signature file using GnuPG. This will execute `gpg
--detach-sign --use-agent` on the generated database to generate a detached --detach-sign` on the generated database to generate a detached
signature file, using the GPG agent if it is available. The signature file signature file, using the GPG agent if it is available. The signature file
will be the entire filename of the database with a ``.sig'' extension. will be the entire filename of the database with a ``.sig'' extension.
*-k, \--key* <key>:: *-k, \--key* <key>::
Specify a key to use when signing packages. Can also be specified using Specify a key to use when signing packages. Can also be specified using
the GPGKEY environmental variable. If not specified in either location, the the GPGKEY environment variable. If not specified in either location, the
default key from the keyring will be used. default key from the keyring will be used.
*-v, \--verify*:: *-v, \--verify*::
@ -59,6 +60,14 @@ Common Options
*\--nocolor*:: *\--nocolor*::
Remove color from 'repo-add' and 'repo-remove' output. Remove color from 'repo-add' and 'repo-remove' output.
*-R, \--remove*::
Remove old package files from the disk when updating or removing their
entry in the database.
*-w, \--wait-for-lock*::
Wait for the lock file to be acquired. If unset, command will fail with
exit code 2 if acquiring the lock fails. If set, it will retry to acquire
lock until success.
repo-add Options repo-add Options
---------------- ----------------
@ -66,10 +75,6 @@ repo-add Options
Only add packages that are not already in the database. Warnings will be Only add packages that are not already in the database. Warnings will be
printed upon detection of existing packages, but they will not be re-added. printed upon detection of existing packages, but they will not be re-added.
*-R, \--remove*::
Remove old package files from the disk when updating their entry in the
database.
*\--include-sigs*:: *\--include-sigs*::
Include package PGP signatures in the repository database (if available) Include package PGP signatures in the repository database (if available)

View file

@ -11,9 +11,9 @@ NOTE: Some of this is paraphrased from the kernel documentation's
Getting the most recent source Getting the most recent source
------------------------------ ------------------------------
Patches need to be submitted in GIT format and are best if they are against the Patches need to be submitted in Git format and are best if they are against the
latest version of the code. There are several helpful tutorials for getting latest version of the code. There are several helpful tutorials for getting
started with GIT if you have not worked with it before. started with Git if you have not worked with it before.
* https://www.kernel.org/pub/software/scm/git/docs/gittutorial.html * https://www.kernel.org/pub/software/scm/git/docs/gittutorial.html
* https://wiki.archlinux.org/index.php/Super_Quick_Git_Guide * https://wiki.archlinux.org/index.php/Super_Quick_Git_Guide
@ -23,6 +23,21 @@ The pacman code can be fetched using the following command:
git clone https://gitlab.archlinux.org/pacman/pacman.git git clone https://gitlab.archlinux.org/pacman/pacman.git
Before making large changes
---------------------------
--
* Discuss your idea
There is nothing worse that spending time making a change only for it to be
rejected immediately. Ensure ideas are discussed beforehand to avoid
disappointment. Appropriate locations for discussion are the issue tracker
on gitlab, or the pacman-dev mailing list. Transient discussion channels
such as IRC are not appropriate.
--
Creating your patch Creating your patch
------------------- -------------------
@ -43,36 +58,18 @@ It helps if you describe the overview and goals of the patch in the git commit
log. This allows others to see what you intended so as to compare it to what log. This allows others to see what you intended so as to compare it to what
was actually done, and allows better feedback. was actually done, and allows better feedback.
* Use `git format-patch` to create patches.
Your commit message will be shown above the patch by default when you will use
`git format-patch`, including the signoff line. Sets of multiple patches that
need extra explanation beyond the commit messages may include additional notes
in a cover letter. Individual patches may include additional notes between the
"---" following the commit message and the beginning of the diff.
-- --
Submitting your patch Submitting your patch
--------------------- ---------------------
-- --
* Send the patch to the pacman-dev mailing list * Submit patches with a gitlab merge request
The mailing list is the primary queue for review and acceptance. Here you The pacman gitlab instance is the primary queue for review and acceptance.
will get feedback, and let the reviewers know the details of your patch. Here you will get feedback, and let the reviewers know the details of your
patch.
* No MIME, no links, no compression, no attachments. Just plain text.
Patches should be contained in the actual body of the email. There are many
reasons for this. First, it makes them easier to read with any mail reader,
it allows easier review "at a glance", and most importantly, it allows people
to comment on exact lines of the patch in reply emails.
`git send-email` allows you to send Git-formatted patches in plain text easily
and is the preferred method for submission to the mailing list. Mail clients,
including Gmail's web interface, have a tendency to break patches by wrapping
lines and/or adjusting whitespace and should be avoided.
-- --
@ -95,7 +92,6 @@ When you do get feedback, it usually merits a response, whether this be a
resubmission of the patch with corrections or a follow-up email asking for resubmission of the patch with corrections or a follow-up email asking for
clarifications. When neither of these occurs, don't expect your patch to get clarifications. When neither of these occurs, don't expect your patch to get
further review. The all-volunteer staff don't have time to fix up patches that further review. The all-volunteer staff don't have time to fix up patches that
aren't their own. When resubmitting patches, update the subject line to reflect aren't their own.
the version number ('[PATCHv2]'), and send it as a reply to the original thread.
-- --

20
doc/testpkg.8.asciidoc Normal file
View file

@ -0,0 +1,20 @@
testpkg(8)
==========
Name
----
testpkg - test a pacman package for validity
Synopsis
--------
'testpkg' <package file>
Description
-----------
'testpkg' is a script used to make sure that a pacman package is valid.
See Also
--------
linkman:pacman[8]
include::footer.asciidoc[]

View file

@ -4,10 +4,10 @@ Pacman - Translating
This document is here to guide you in helping translate pacman messages, This document is here to guide you in helping translate pacman messages,
libalpm messages, and the manual pages for the entire pacman package. libalpm messages, and the manual pages for the entire pacman package.
We are currently using https://www.transifex.com/[Transifex] as the translation We are currently using https://app.transifex.com/[Transifex] as the translation
platform for pacman and libalpm. You will need to sign up for an account there platform for pacman and libalpm. You will need to sign up for an account there
and then register with a translation team on the and then register with a translation team on the
https://www.transifex.com/projects/p/archlinux-pacman/[pacman project page]. https://explore.transifex.com/toofishes/archlinux-pacman/[pacman project page].
NOTE: This may be old information due to our switch to Transifex, but the NOTE: This may be old information due to our switch to Transifex, but the
gettext website is a very useful guide to read before embarking on translation gettext website is a very useful guide to read before embarking on translation
@ -31,7 +31,7 @@ either be hand-edited, or modified with a tool such as poedit, gtranslator or
kbabel. Using a translation tool tends to make the job easier. kbabel. Using a translation tool tends to make the job easier.
Please read up on Transifex usage using the Please read up on Transifex usage using the
https://docs.transifex.com/[Transifex Help] if you are not familiar. https://help.transifex.com/[Transifex Help] if you are not familiar.
Transifex provides a command-line client to help with translations. Here is Transifex provides a command-line client to help with translations. Here is
an example set of commands if you have a source code checkout and are not an example set of commands if you have a source code checkout and are not
@ -55,20 +55,20 @@ Pre-release Updates
~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~
A week or two before each release, the codebase will go into a string freeze A week or two before each release, the codebase will go into a string freeze
and an email will be sent to the mailto:pacman-dev@archlinux.org[pacman-dev] and an email will be sent to the mailto:pacman-dev@lists.archlinux.org[pacman-dev]
mailing list asking for translations. This email will have a prefix of mailing list asking for translations. An announcement in Transifex is also made,
*[translation]* for anyone looking to set up an email filter. which reaches everyone that is member of the translation team.
At this time, the latest `.po` language files will be made available at the At this time, the latest `.po` language files will be made available at the
Transifex project page. Each language will have two files available (back-end Transifex project page. Each language will have three files available (libalpm,
and front-end). Translators interested in helping are encouraged to use the pacman and pacman-scripts). Translators interested in helping are encouraged to use the
features of Transifex to let others know they are currently translating their features of Transifex to let others know they are currently translating their
language. language.
Once a translator has completed the translation (*OR* realizes they do not have Once a translator has completed the translation offline (*OR* realizes they do not have
time to finish), please upload your progress back to the Transifex site. time to finish), please upload your progress back to the Transifex site.
NOTE: Please upload your translations as soon as possible- this will give other NOTE: Please upload your translations as soon as possible - this will give other
speakers of your language time to review your translations and update them as speakers of your language time to review your translations and update them as
necessary. necessary.
@ -80,21 +80,25 @@ repository.
git clone https://gitlab.archlinux.org/pacman/pacman.git git clone https://gitlab.archlinux.org/pacman/pacman.git
Next, you will need to run `./autogen.sh` and `./configure` in the base Next, you will need to configure the build environment. From the base directory,
directory to generate the correct Makefiles. At this point, all necessary run:
make targets will be generated and we can begin updating the translation
files.
We need to first update the main message catalog file. Navigate into either the meson setup . build
`lib/libalpm/po` or `po` directory depending on which translation you wish to
work on first, and execute the following command. If you are working in the
`po/` tree, replace 'libalpm.pot' with 'pacman.pot':
make libalpm.pot-update If any required dependencies are missing, please install. After that,
update the template translation (.pot) files to the latest state of
the source code by running:
Next, update your specific language's translation file: meson compile -C build pacman-scripts-pot pacman-pot libalpm-pot
make <po file>-update We need to first update the main message catalog file. Navigate into either
the `lib/libalpm/po`, `scripts/po` or `src/pacman/po` directory depending
on which translation you wish to work on first, and execute the following
command to update your specific language's translation file
(replace `lang_code` with your language code e.g. 'pt_BR', and `pot_file`
with `libalpm.pot`, `pacman.pot` or `pacman-scripts.pot`):
msgmerge --update --previous <lang_code>.po <pot_filename>.pot
At this point, you can do the translation. To submit your changes, either email At this point, you can do the translation. To submit your changes, either email
the new `.po` file to the mailing-list with *[translation]* in the subject, or the new `.po` file to the mailing-list with *[translation]* in the subject, or
@ -103,7 +107,7 @@ submit a Git-formatted patch (please do not include any `.pot` file changes).
As a shortcut, all translation files (including `.pot` files) can be updated As a shortcut, all translation files (including `.pot` files) can be updated
with the following command: with the following command:
make update-po ./build-aux/update-po
Adding a New Language Adding a New Language
~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~
@ -112,10 +116,10 @@ Making a new language is not too hard, but be sure to follow all the steps.
You will have to do the following steps in both the `lib/libalpm/po/` and `po/` You will have to do the following steps in both the `lib/libalpm/po/` and `po/`
directories, substituting where appropriate. First, edit the `LINGUAS` file and directories, substituting where appropriate. First, edit the `LINGUAS` file and
add your new language code at the bottom. Next, run the following command, add your new language code at the bottom. Next, run the following command,
substituting 'libalpm.pot' or 'pacman.pot' for potfile depending on which substituting `libalpm.pot` or `pacman.pot` for potfile depending on which
directory you are currently working in: directory you are currently working in:
msginit -l <lang code> -o <lang code>.po -i <potfile> msginit -l <lang_code> -o <lang_code>.po -i <potfile>
You can then also add your language code to the end of the `LINGUAS` file You can then also add your language code to the end of the `LINGUAS` file
located in each po directory. located in each po directory.
@ -137,11 +141,13 @@ following two translations are equivalent:
msgstr "" msgstr ""
"This is a test translation" "This is a test translation"
If you want to test the translation (for example, the front-end one): If you want to test the translation (copy the .po file you want to test,
you may ignore the rest), replacing `<lang_code>` accordingly:
rm *.gmo stamp-po meson compile -C build pacman-scripts-gmo pacman-gmo libalpm-gmo
make cp ./build/lib/libalpm/po/<lang_code>/LC_MESSAGES/libalpm.mo /usr/share/locale/<lang_code>/LC_MESSAGES/libalpm.mo
cp <lang code>.gmo /usr/share/locale/<lang code>/LC_MESSAGES/pacman.mo cp ./build/scripts/po/<lang_code>/LC_MESSAGES/pacman-scripts.mo /usr/share/locale/<lang_code>/LC_MESSAGES/pacman-scripts.mo
cp ./build/src/pacman/po/<lang_code>/LC_MESSAGES/pacman.mo /usr/share/locale/<lang_code>/LC_MESSAGES/pacman.mo
Translating Manpages Translating Manpages
@ -150,4 +156,4 @@ There are currently no efforts underway to include translated manual pages in
the pacman codebase. However, this is not to say translations are unwelcome. If the pacman codebase. However, this is not to say translations are unwelcome. If
someone has experience with i18n man pages and how to best include them with our someone has experience with i18n man pages and how to best include them with our
source, please contact the pacman-dev mailing list at source, please contact the pacman-dev mailing list at
mailto:pacman-dev@archlinux.org[]. mailto:pacman-dev@lists.archlinux.org[].

View file

@ -0,0 +1,18 @@
#!/hint/bash
#
# @sysconfdir@/makepkg.conf.d/fortran.conf
#
#########################################################################
# FORTRAN LANGUAGE SUPPORT
#########################################################################
# Flags used for the Fortran compiler, similar in spirit to CFLAGS. Read
# linkman:gfortran[1] for more details on the available flags.
#FFLAGS="-O2 -pipe"
#FCFLAGS="$FFLAGS"
# Additional compiler flags appended to `FFLAGS` and `FCFLAGS` for use in debugging. Usually
# this would include: ``-g''. Read linkman:gfortran[1] for more details on the wide
# variety of compiler flags available.
#DEBUG_FFLAGS="-g"

View file

@ -0,0 +1,17 @@
#!/hint/bash
#
# @sysconfdir@/makepkg.conf.d/rust.conf
#
#########################################################################
# RUST LANGUAGE SUPPORT
#########################################################################
# Flags used for the Rust compiler, similar in spirit to CFLAGS. Read
# linkman:rustc[1] for more details on the available flags.
#RUSTFLAGS="-C opt-level=3"
# Additional compiler flags appended to `RUSTFLAGS` for use in debugging.
# Usually this would include: ``-C debuginfo=2''. Read linkman:rustc[1] for
# more details on the available flags.
#DEBUG_RUSTFLAGS="-C debuginfo=2"

View file

@ -9,10 +9,10 @@
# #
#-- The download utilities that makepkg should use to acquire sources #-- The download utilities that makepkg should use to acquire sources
# Format: 'protocol::agent' # Format: 'protocol::agent'
DLAGENTS=('file::/usr/bin/curl -gqC - -o %o %u' DLAGENTS=('file::/usr/bin/curl -qgC - -o %o %u'
'ftp::/usr/bin/curl -gqfC - --ftp-pasv --retry 3 --retry-delay 3 -o %o %u' 'ftp::/usr/bin/curl -qgfC - --ftp-pasv --retry 3 --retry-delay 3 -o %o %u'
'http::/usr/bin/curl -gqb "" -fLC - --retry 3 --retry-delay 3 -o %o %u' 'http::/usr/bin/curl -qgb "" -fLC - --retry 3 --retry-delay 3 -o %o %u'
'https::/usr/bin/curl -gqb "" -fLC - --retry 3 --retry-delay 3 -o %o %u' 'https::/usr/bin/curl -qgb "" -fLC - --retry 3 --retry-delay 3 -o %o %u'
'rsync::/usr/bin/rsync --no-motd -z %u %o' 'rsync::/usr/bin/rsync --no-motd -z %u %o'
'scp::/usr/bin/scp -C %u %o') 'scp::/usr/bin/scp -C %u %o')
@ -23,7 +23,7 @@ DLAGENTS=('file::/usr/bin/curl -gqC - -o %o %u'
#-- The package required by makepkg to download VCS sources #-- The package required by makepkg to download VCS sources
# Format: 'protocol::package' # Format: 'protocol::package'
VCSCLIENTS=('bzr::bzr' VCSCLIENTS=('bzr::breezy'
'fossil::fossil' 'fossil::fossil'
'git::git' 'git::git'
'hg::mercurial' 'hg::mercurial'
@ -36,18 +36,19 @@ VCSCLIENTS=('bzr::bzr'
CARCH="@CARCH@" CARCH="@CARCH@"
CHOST="@CHOST@" CHOST="@CHOST@"
#NPROC=2
#-- Compiler and Linker Flags #-- Compiler and Linker Flags
#CPPFLAGS="" #CPPFLAGS=""
#CFLAGS="-O2 -pipe" #CFLAGS="-O2 -pipe"
#CXXFLAGS="-O2 -pipe" #CXXFLAGS="-O2 -pipe"
#LDFLAGS="" #LDFLAGS=""
#RUSTFLAGS="-C opt-level=2" #LTOFLAGS="-flto"
#-- Make Flags: change this for DistCC/SMP systems #-- Make Flags: change this for DistCC/SMP systems
#MAKEFLAGS="-j2" #MAKEFLAGS="-j2"
#-- Debugging flags #-- Debugging flags
#DEBUG_CFLAGS="-g" #DEBUG_CFLAGS="-g"
#DEBUG_CXXFLAGS="-g" #DEBUG_CXXFLAGS="-g"
#DEBUG_RUSTFLAGS="-C debuginfo=2"
######################################################################### #########################################################################
# BUILD ENVIRONMENT # BUILD ENVIRONMENT
@ -76,7 +77,8 @@ BUILDENV=(!distcc color !ccache check !sign)
# These are default values for the options=() settings # These are default values for the options=() settings
######################################################################### #########################################################################
# #
# Makepkg defaults: OPTIONS=(!strip docs libtool staticlibs emptydirs !zipman !purge !debug !lto) # Makepkg defaults:
# OPTIONS=(!strip docs libtool staticlibs emptydirs !zipman !purge !debug !lto !autodeps)
# A negated option will do the opposite of the comments below. # A negated option will do the opposite of the comments below.
# #
#-- strip: Strip symbols from binaries/libraries #-- strip: Strip symbols from binaries/libraries
@ -88,8 +90,9 @@ BUILDENV=(!distcc color !ccache check !sign)
#-- purge: Remove files specified by PURGE_TARGETS #-- purge: Remove files specified by PURGE_TARGETS
#-- debug: Add debugging flags as specified in DEBUG_* variables #-- debug: Add debugging flags as specified in DEBUG_* variables
#-- lto: Add compile flags for building with link time optimization #-- lto: Add compile flags for building with link time optimization
#-- autodeps: Automatically add depends/provides
# #
OPTIONS=(strip docs libtool staticlibs emptydirs zipman purge !debug !lto) OPTIONS=(strip docs libtool staticlibs emptydirs zipman purge !debug !lto !autodeps)
#-- File integrity checks to use. Valid: ck, md5, sha1, sha224, sha256, sha384, sha512, b2 #-- File integrity checks to use. Valid: ck, md5, sha1, sha224, sha256, sha384, sha512, b2
INTEGRITY_CHECK=(ck) INTEGRITY_CHECK=(ck)
@ -107,6 +110,8 @@ DOC_DIRS=(usr/{,local/}{,share/}{doc,gtk-doc} opt/*/{doc,gtk-doc})
PURGE_TARGETS=(usr/{,share}/info/dir .packlist *.pod) PURGE_TARGETS=(usr/{,share}/info/dir .packlist *.pod)
#-- Directory to store source code in for debug packages #-- Directory to store source code in for debug packages
DBGSRCDIR="/usr/src/debug" DBGSRCDIR="/usr/src/debug"
#-- Prefix and directories for library autodeps
LIB_DIRS=('lib:usr/lib' 'lib32:usr/lib32')
######################################################################### #########################################################################
# PACKAGE OUTPUT # PACKAGE OUTPUT

View file

@ -35,6 +35,8 @@ Architecture = auto
CheckSpace CheckSpace
#VerbosePkgLists #VerbosePkgLists
ParallelDownloads = 5 ParallelDownloads = 5
#DownloadUser = alpm
#DisableSandbox
# PGP signature checking # PGP signature checking
#SigLevel = Optional #SigLevel = Optional
@ -74,4 +76,4 @@ ParallelDownloads = 5
# tips on creating your own repositories. # tips on creating your own repositories.
#[custom] #[custom]
#SigLevel = Optional TrustAll #SigLevel = Optional TrustAll
#Server = file:///home/custompkgs #Server = file:///home/packages

View file

@ -1,7 +1,7 @@
/* /*
* add.c * add.c
* *
* Copyright (c) 2006-2021 Pacman Development Team <pacman-dev@archlinux.org> * Copyright (c) 2006-2025 Pacman Development Team <pacman-dev@lists.archlinux.org>
* Copyright (c) 2002-2006 by Judd Vinet <jvinet@zeroflux.org> * Copyright (c) 2002-2006 by Judd Vinet <jvinet@zeroflux.org>
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify
@ -262,7 +262,7 @@ static int extract_single_file(alpm_handle_t *handle, struct archive *archive,
"filesystem: %o package: %o\n"), filename, lsbuf.st_mode & mask, "filesystem: %o package: %o\n"), filename, lsbuf.st_mode & mask,
entrymode & mask); entrymode & mask);
alpm_logaction(handle, ALPM_CALLER_PREFIX, alpm_logaction(handle, ALPM_CALLER_PREFIX,
"warning: directory permissions differ on %s\n" "warning: directory permissions differ on %s, "
"filesystem: %o package: %o\n", filename, lsbuf.st_mode & mask, "filesystem: %o package: %o\n", filename, lsbuf.st_mode & mask,
entrymode & mask); entrymode & mask);
} }
@ -277,7 +277,7 @@ static int extract_single_file(alpm_handle_t *handle, struct archive *archive,
"filesystem: %u:%u package: %u:%u\n"), filename, "filesystem: %u:%u package: %u:%u\n"), filename,
lsbuf.st_uid, lsbuf.st_gid, entryuid, entrygid); lsbuf.st_uid, lsbuf.st_gid, entryuid, entrygid);
alpm_logaction(handle, ALPM_CALLER_PREFIX, alpm_logaction(handle, ALPM_CALLER_PREFIX,
"warning: directory ownership differs on %s\n" "warning: directory ownership differs on %s, "
"filesystem: %u:%u package: %u:%u\n", filename, "filesystem: %u:%u package: %u:%u\n", filename,
lsbuf.st_uid, lsbuf.st_gid, entryuid, entrygid); lsbuf.st_uid, lsbuf.st_gid, entryuid, entrygid);
} }
@ -415,7 +415,7 @@ static int extract_single_file(alpm_handle_t *handle, struct archive *archive,
static int commit_single_pkg(alpm_handle_t *handle, alpm_pkg_t *newpkg, static int commit_single_pkg(alpm_handle_t *handle, alpm_pkg_t *newpkg,
size_t pkg_current, size_t pkg_count) size_t pkg_current, size_t pkg_count)
{ {
int i, ret = 0, errors = 0; int ret = 0, errors = 0;
int is_upgrade = 0; int is_upgrade = 0;
alpm_pkg_t *oldpkg = NULL; alpm_pkg_t *oldpkg = NULL;
alpm_db_t *db = handle->db_local; alpm_db_t *db = handle->db_local;
@ -538,7 +538,7 @@ static int commit_single_pkg(alpm_handle_t *handle, alpm_pkg_t *newpkg,
/* call PROGRESS once with 0 percent, as we sort-of skip that here */ /* call PROGRESS once with 0 percent, as we sort-of skip that here */
PROGRESS(handle, progress, newpkg->name, 0, pkg_count, pkg_current); PROGRESS(handle, progress, newpkg->name, 0, pkg_count, pkg_current);
for(i = 0; archive_read_next_header(archive, &entry) == ARCHIVE_OK; i++) { while(archive_read_next_header(archive, &entry) == ARCHIVE_OK) {
int percent; int percent;
if(newpkg->size != 0) { if(newpkg->size != 0) {

View file

@ -1,7 +1,7 @@
/* /*
* add.h * add.h
* *
* Copyright (c) 2006-2021 Pacman Development Team <pacman-dev@archlinux.org> * Copyright (c) 2006-2025 Pacman Development Team <pacman-dev@lists.archlinux.org>
* Copyright (c) 2002-2006 by Judd Vinet <jvinet@zeroflux.org> * Copyright (c) 2002-2006 by Judd Vinet <jvinet@zeroflux.org>
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify

View file

@ -1,7 +1,7 @@
/* /*
* alpm.c * alpm.c
* *
* Copyright (c) 2006-2021 Pacman Development Team <pacman-dev@archlinux.org> * Copyright (c) 2006-2025 Pacman Development Team <pacman-dev@lists.archlinux.org>
* Copyright (c) 2002-2006 by Judd Vinet <jvinet@zeroflux.org> * Copyright (c) 2002-2006 by Judd Vinet <jvinet@zeroflux.org>
* Copyright (c) 2005 by Aurelien Foret <orelien@chez.com> * Copyright (c) 2005 by Aurelien Foret <orelien@chez.com>
* Copyright (c) 2005 by Christian Hamar <krics@linuxforum.hu> * Copyright (c) 2005 by Christian Hamar <krics@linuxforum.hu>
@ -25,6 +25,9 @@
#include <curl/curl.h> #include <curl/curl.h>
#endif #endif
#include <errno.h>
#include <pwd.h>
/* libalpm */ /* libalpm */
#include "alpm.h" #include "alpm.h"
#include "alpm_list.h" #include "alpm_list.h"
@ -38,7 +41,8 @@ alpm_handle_t SYMEXPORT *alpm_initialize(const char *root, const char *dbpath,
alpm_errno_t myerr; alpm_errno_t myerr;
const char *lf = "db.lck"; const char *lf = "db.lck";
char *hookdir; char *hookdir;
size_t lockfilelen; size_t hookdirlen, lockfilelen;
struct passwd const *pw = NULL;
alpm_handle_t *myhandle = _alpm_handle_new(); alpm_handle_t *myhandle = _alpm_handle_new();
if(myhandle == NULL) { if(myhandle == NULL) {
@ -54,8 +58,9 @@ alpm_handle_t SYMEXPORT *alpm_initialize(const char *root, const char *dbpath,
/* to concatenate myhandle->root (ends with a slash) with SYSHOOKDIR (starts /* to concatenate myhandle->root (ends with a slash) with SYSHOOKDIR (starts
* with a slash) correctly, we skip SYSHOOKDIR[0]; the regular +1 therefore * with a slash) correctly, we skip SYSHOOKDIR[0]; the regular +1 therefore
* disappears from the allocation */ * disappears from the allocation */
MALLOC(hookdir, strlen(myhandle->root) + strlen(SYSHOOKDIR), goto nomem); hookdirlen = strlen(myhandle->root) + strlen(SYSHOOKDIR);
sprintf(hookdir, "%s%s", myhandle->root, &SYSHOOKDIR[1]); MALLOC(hookdir, hookdirlen, goto nomem);
snprintf(hookdir, hookdirlen, "%s%s", myhandle->root, &SYSHOOKDIR[1]);
myhandle->hookdirs = alpm_list_add(NULL, hookdir); myhandle->hookdirs = alpm_list_add(NULL, hookdir);
/* set default database extension */ /* set default database extension */
@ -77,6 +82,10 @@ alpm_handle_t SYMEXPORT *alpm_initialize(const char *root, const char *dbpath,
myhandle->parallel_downloads = 1; myhandle->parallel_downloads = 1;
/* set default sandboxuser */
ASSERT((pw = getpwuid(0)) != NULL, myerr = errno; goto cleanup);
STRDUP(myhandle->sandboxuser, pw->pw_name, goto nomem);
#ifdef ENABLE_NLS #ifdef ENABLE_NLS
bindtextdomain("libalpm", LOCALEDIR); bindtextdomain("libalpm", LOCALEDIR);
#endif #endif
@ -93,34 +102,16 @@ cleanup:
return NULL; return NULL;
} }
/* check current state and free all resources including storage locks */
int SYMEXPORT alpm_release(alpm_handle_t *myhandle) int SYMEXPORT alpm_release(alpm_handle_t *myhandle)
{ {
int ret = 0;
alpm_db_t *db;
CHECK_HANDLE(myhandle, return -1); CHECK_HANDLE(myhandle, return -1);
ASSERT(myhandle->trans == NULL, RET_ERR(myhandle, ALPM_ERR_TRANS_NOT_NULL, -1));
/* close local database */
db = myhandle->db_local;
if(db) {
db->ops->unregister(db);
myhandle->db_local = NULL;
}
if(alpm_unregister_all_syncdbs(myhandle) == -1) {
ret = -1;
}
#ifdef HAVE_LIBCURL
curl_multi_cleanup(myhandle->curlm);
curl_global_cleanup();
FREELIST(myhandle->server_errors);
#endif
_alpm_handle_unlock(myhandle); _alpm_handle_unlock(myhandle);
_alpm_handle_free(myhandle); _alpm_handle_free(myhandle);
return ret; return 0;
} }
const char SYMEXPORT *alpm_version(void) const char SYMEXPORT *alpm_version(void)

View file

@ -1,7 +1,7 @@
/* /*
* alpm.h * alpm.h
* *
* Copyright (c) 2006-2021 Pacman Development Team <pacman-dev@archlinux.org> * Copyright (c) 2006-2025 Pacman Development Team <pacman-dev@lists.archlinux.org>
* Copyright (c) 2002-2006 by Judd Vinet <jvinet@zeroflux.org> * Copyright (c) 2002-2006 by Judd Vinet <jvinet@zeroflux.org>
* Copyright (c) 2005 by Aurelien Foret <orelien@chez.com> * Copyright (c) 2005 by Aurelien Foret <orelien@chez.com>
* Copyright (c) 2005 by Christian Hamar <krics@linuxforum.hu> * Copyright (c) 2005 by Christian Hamar <krics@linuxforum.hu>
@ -34,6 +34,7 @@
extern "C" { extern "C" {
#endif #endif
#include <stdbool.h> /* bool */
#include <stdint.h> /* int64_t */ #include <stdint.h> /* int64_t */
#include <sys/types.h> /* off_t */ #include <sys/types.h> /* off_t */
#include <stdarg.h> /* va_list */ #include <stdarg.h> /* va_list */
@ -107,12 +108,20 @@ typedef struct _alpm_db_t alpm_db_t;
* Packages from databases are automatically freed when the database is unregistered. Packages loaded * Packages from databases are automatically freed when the database is unregistered. Packages loaded
* from a file must be freed manually. * from a file must be freed manually.
* *
* Packages can then be queried for metadata or added to a \link alpm_trans_t transaction \endlink * Packages can then be queried for metadata or added to a transaction
* to be added or removed from the system. * to be added or removed from the system.
* @ingroup libalpm_packages * @ingroup libalpm_packages
*/ */
typedef struct _alpm_pkg_t alpm_pkg_t; typedef struct _alpm_pkg_t alpm_pkg_t;
/** The extended data type used to store non-standard package data fields
* @ingroup libalpm_packages
*/
typedef struct _alpm_pkg_xdata_t {
char *name;
char *value;
} alpm_pkg_xdata_t;
/** The time type used by libalpm. Represents a unix time stamp /** The time type used by libalpm. Represents a unix time stamp
* @ingroup libalpm_misc */ * @ingroup libalpm_misc */
typedef int64_t alpm_time_t; typedef int64_t alpm_time_t;
@ -156,7 +165,7 @@ typedef struct _alpm_backup_t {
* @param path the path to search for in the package * @param path the path to search for in the package
* @return a pointer to the matching file or NULL if not found * @return a pointer to the matching file or NULL if not found
*/ */
alpm_file_t *alpm_filelist_contains(alpm_filelist_t *filelist, const char *path); alpm_file_t *alpm_filelist_contains(const alpm_filelist_t *filelist, const char *path);
/* End of libalpm_files */ /* End of libalpm_files */
/** @} */ /** @} */
@ -442,14 +451,6 @@ typedef struct _alpm_pgpkey_t {
unsigned int length; unsigned int length;
/** has the key been revoked */ /** has the key been revoked */
unsigned int revoked; unsigned int revoked;
/** A character representing the encryption algorithm used by the public key
*
* ? = unknown
* R = RSA
* D = DSA
* E = EDDSA
*/
char pubkey_algo;
} alpm_pgpkey_t; } alpm_pgpkey_t;
/** /**
@ -480,7 +481,7 @@ typedef struct _alpm_siglist_t {
* Check the PGP signature for the given package file. * Check the PGP signature for the given package file.
* @param pkg the package to check * @param pkg the package to check
* @param siglist a pointer to storage for signature results * @param siglist a pointer to storage for signature results
* @return a int value : 0 (valid), 1 (invalid), -1 (an error occurred) * @return 0 if valid, -1 if an error occurred or signature is invalid
*/ */
int alpm_pkg_check_pgp_signature(alpm_pkg_t *pkg, alpm_siglist_t *siglist); int alpm_pkg_check_pgp_signature(alpm_pkg_t *pkg, alpm_siglist_t *siglist);
@ -488,7 +489,7 @@ int alpm_pkg_check_pgp_signature(alpm_pkg_t *pkg, alpm_siglist_t *siglist);
* Check the PGP signature for the given database. * Check the PGP signature for the given database.
* @param db the database to check * @param db the database to check
* @param siglist a pointer to storage for signature results * @param siglist a pointer to storage for signature results
* @return a int value : 0 (valid), 1 (invalid), -1 (an error occurred) * @return 0 if valid, -1 if an error occurred or signature is invalid
*/ */
int alpm_db_check_pgp_signature(alpm_db_t *db, alpm_siglist_t *siglist); int alpm_db_check_pgp_signature(alpm_db_t *db, alpm_siglist_t *siglist);
@ -592,16 +593,10 @@ typedef struct _alpm_depmissing_t {
/** A conflict that has occurred between two packages. */ /** A conflict that has occurred between two packages. */
typedef struct _alpm_conflict_t { typedef struct _alpm_conflict_t {
/** Hash of the first package name /** The first package */
* (used internally to speed up conflict checks) */ alpm_pkg_t *package1;
unsigned long package1_hash; /** The second package */
/** Hash of the second package name alpm_pkg_t *package2;
* (used internally to speed up conflict checks) */
unsigned long package2_hash;
/** Name of the first package */
char *package1;
/** Name of the second package */
char *package2;
/** The conflict */ /** The conflict */
alpm_depend_t *reason; alpm_depend_t *reason;
} alpm_conflict_t; } alpm_conflict_t;
@ -967,7 +962,7 @@ typedef union _alpm_event_t {
* Called when an event occurs * Called when an event occurs
* @param ctx user-provided context * @param ctx user-provided context
* @param event the event that occurred */ * @param event the event that occurred */
typedef void (*alpm_cb_event)(void *ctx, alpm_event_t *); typedef void (*alpm_cb_event)(void *ctx, alpm_event_t *event);
/** /**
* Type of question. * Type of question.
@ -1114,7 +1109,7 @@ typedef union _alpm_question_t {
* @param ctx user-provided context * @param ctx user-provided context
* @param question the question being asked. * @param question the question being asked.
*/ */
typedef void (*alpm_cb_question)(void *ctx, alpm_question_t *); typedef void (*alpm_cb_question)(void *ctx, alpm_question_t *question);
/** An enum over different kinds of progress alerts. */ /** An enum over different kinds of progress alerts. */
typedef enum _alpm_progress_t { typedef enum _alpm_progress_t {
@ -1281,6 +1276,12 @@ int alpm_unregister_all_syncdbs(alpm_handle_t *handle);
*/ */
int alpm_db_unregister(alpm_db_t *db); int alpm_db_unregister(alpm_db_t *db);
/** Get the handle of a package database.
* @param db pointer to the package database
* @return the alpm handle that the package database belongs to
*/
alpm_handle_t *alpm_db_get_handle(alpm_db_t *db);
/** Get the name of a package database. /** Get the name of a package database.
* @param db pointer to the package database * @param db pointer to the package database
* @return the name of the package database, NULL on error * @return the name of the package database, NULL on error
@ -1335,6 +1336,34 @@ int alpm_db_add_server(alpm_db_t *db, const char *url);
*/ */
int alpm_db_remove_server(alpm_db_t *db, const char *url); int alpm_db_remove_server(alpm_db_t *db, const char *url);
/** Get the list of cache servers assigned to this db.
* @param db pointer to the database to get the servers from
* @return a char* list of servers
*/
alpm_list_t *alpm_db_get_cache_servers(const alpm_db_t *db);
/** Sets the list of cache servers for the database to use.
* @param db the database to set the servers. The list will be duped and
* the original will still need to be freed by the caller.
* @param servers a char* list of servers.
*/
int alpm_db_set_cache_servers(alpm_db_t *db, alpm_list_t *servers);
/** Add a download cache server to a database.
* @param db database pointer
* @param url url of the server
* @return 0 on success, -1 on error (pm_errno is set accordingly)
*/
int alpm_db_add_cache_server(alpm_db_t *db, const char *url);
/** Remove a download cache server from a database.
* @param db database pointer
* @param url url of the server
* @return 0 on success, 1 on server not present,
* -1 on error (pm_errno is set accordingly)
*/
int alpm_db_remove_cache_server(alpm_db_t *db, const char *url);
/* End of server accessors */ /* End of server accessors */
/** @} */ /** @} */
@ -1830,7 +1859,29 @@ const char *alpm_option_get_gpgdir(alpm_handle_t *handle);
* @param gpgdir the gpgdir to set * @param gpgdir the gpgdir to set
*/ */
int alpm_option_set_gpgdir(alpm_handle_t *handle, const char *gpgdir); int alpm_option_set_gpgdir(alpm_handle_t *handle, const char *gpgdir);
/* End of gpdir accessors */ /* End of gpgdir accessors */
/** @} */
/** @name Accessors for use sandboxuser
*
* This controls the user that libalpm will use for sensitive operations like
* downloading files.
* @{
*/
/** Returns the user to switch to for sensitive operations.
* @return the user name
*/
const char *alpm_option_get_sandboxuser(alpm_handle_t *handle);
/** Sets the user to switch to for sensitive operations.
* @param handle the context handle
* @param sandboxuser the user to set
*/
int alpm_option_set_sandboxuser(alpm_handle_t *handle, const char *sandboxuser);
/* End of sandboxuser accessors */
/** @} */ /** @} */
@ -2126,7 +2177,7 @@ int alpm_option_set_checkspace(alpm_handle_t *handle, int checkspace);
/** @name Accessors for the database extension /** @name Accessors for the database extension
* *
* This controls the extension used for sync databases. libalpm will use this * This controls the extension used for sync databases. libalpm will use this
* extension to both lookup remote databses and as the name used when opening * extension to both lookup remote databases and as the name used when opening
* reading them. * reading them.
* *
* This is useful for file databases. Seems as files can increase the size of * This is useful for file databases. Seems as files can increase the size of
@ -2206,6 +2257,12 @@ int alpm_option_set_remote_file_siglevel(alpm_handle_t *handle, int level);
* @{ * @{
*/ */
/** Get the download timeout state
* @param handle the context handle
* @return 0 for enabled, 1 for disabled
*/
int alpm_option_get_disable_dl_timeout(alpm_handle_t *handle);
/** Enables/disables the download timeout. /** Enables/disables the download timeout.
* @param handle the context handle * @param handle the context handle
* @param disable_dl_timeout 0 for enabled, 1 for disabled * @param disable_dl_timeout 0 for enabled, 1 for disabled
@ -2242,6 +2299,26 @@ int alpm_option_set_parallel_downloads(alpm_handle_t *handle, unsigned int num_s
/* End of parallel_downloads accessors */ /* End of parallel_downloads accessors */
/** @} */ /** @} */
/** @name Accessors for sandbox
*
* By default, libalpm will sandbox the downloader process.
* @{
*/
/** Get the sandbox state
* @param handle the context handle
* @return 0 for enabled, 1 for disabled
*/
int alpm_option_get_disable_sandbox(alpm_handle_t *handle);
/** Enables/disables the sandbox.
* @param handle the context handle
* @param disable_sandbox 0 for enabled, 1 for disabled
* @return 0 on success, -1 on error (pm_errno is set accordingly)
*/
int alpm_option_set_disable_sandbox(alpm_handle_t *handle, unsigned short disable_sandbox);
/* End of disable_sandbox accessors */
/** @} */
/* End of libalpm_options */ /* End of libalpm_options */
/** @} */ /** @} */
@ -2257,7 +2334,9 @@ typedef enum _alpm_pkgreason_t {
/** Explicitly requested by the user. */ /** Explicitly requested by the user. */
ALPM_PKG_REASON_EXPLICIT = 0, ALPM_PKG_REASON_EXPLICIT = 0,
/** Installed as a dependency for another package. */ /** Installed as a dependency for another package. */
ALPM_PKG_REASON_DEPEND = 1 ALPM_PKG_REASON_DEPEND = 1,
/** Failed parsing of local database */
ALPM_PKG_REASON_UNKNOWN = 2
} alpm_pkgreason_t; } alpm_pkgreason_t;
/** Location a package object was loaded from. */ /** Location a package object was loaded from. */
@ -2386,6 +2465,12 @@ int alpm_pkg_should_ignore(alpm_handle_t *handle, alpm_pkg_t *pkg);
* @{ * @{
*/ */
/** Gets the handle of a package
* @param pkg a pointer to package
* @return the alpm handle that the package belongs to
*/
alpm_handle_t *alpm_pkg_get_handle(alpm_pkg_t *pkg);
/** Gets the name of the file from which the package was loaded. /** Gets the name of the file from which the package was loaded.
* @param pkg a pointer to package * @param pkg a pointer to package
* @return a reference to an internal string * @return a reference to an internal string
@ -2586,6 +2671,12 @@ int alpm_pkg_get_sig(alpm_pkg_t *pkg, unsigned char **sig, size_t *sig_len);
*/ */
int alpm_pkg_get_validation(alpm_pkg_t *pkg); int alpm_pkg_get_validation(alpm_pkg_t *pkg);
/** Gets the extended data field of a package.
* @param pkg a pointer to package
* @return a reference to a list of alpm_pkg_xdata_t objects
*/
alpm_list_t *alpm_pkg_get_xdata(alpm_pkg_t *pkg);
/** Returns whether the package has an install scriptlet. /** Returns whether the package has an install scriptlet.
* @return 0 if FALSE, TRUE otherwise * @return 0 if FALSE, TRUE otherwise
*/ */
@ -2881,6 +2972,15 @@ const char *alpm_version(void);
* */ * */
int alpm_capabilities(void); int alpm_capabilities(void);
/** Drop privileges by switching to a different user.
* @param handle the context handle
* @param sandboxuser the user to switch to
* @param sandbox_path if non-NULL, restrict writes to this filesystem path
* @param restrict_syscalls whether to deny access to a list of dangerous syscalls
* @return 0 on success, -1 on failure
*/
int alpm_sandbox_setup_child(alpm_handle_t *handle, const char *sandboxuser, const char *sandbox_path, bool restrict_syscalls);
/* End of libalpm_misc */ /* End of libalpm_misc */
/** @} */ /** @} */

View file

@ -1,7 +1,7 @@
/* /*
* alpm_list.c * alpm_list.c
* *
* Copyright (c) 2006-2021 Pacman Development Team <pacman-dev@archlinux.org> * Copyright (c) 2006-2025 Pacman Development Team <pacman-dev@lists.archlinux.org>
* Copyright (c) 2002-2006 by Judd Vinet <jvinet@zeroflux.org> * Copyright (c) 2002-2006 by Judd Vinet <jvinet@zeroflux.org>
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify
@ -417,6 +417,7 @@ alpm_list_t SYMEXPORT *alpm_list_reverse(alpm_list_t *list)
while(lp) { while(lp) {
if(alpm_list_append(&newlist, lp->data) == NULL) { if(alpm_list_append(&newlist, lp->data) == NULL) {
alpm_list_free(newlist); alpm_list_free(newlist);
list->prev = backup;
return NULL; return NULL;
} }
lp = lp->prev; lp = lp->prev;
@ -508,6 +509,63 @@ char SYMEXPORT *alpm_list_find_str(const alpm_list_t *haystack,
(alpm_list_fn_cmp)strcmp); (alpm_list_fn_cmp)strcmp);
} }
int SYMEXPORT alpm_list_cmp_unsorted(const alpm_list_t *left,
const alpm_list_t *right, alpm_list_fn_cmp fn)
{
const alpm_list_t *l = left;
const alpm_list_t *r = right;
int *matched;
/* short circuiting length comparison */
while(l && r) {
l = l->next;
r = r->next;
}
if(l || r) {
return 0;
}
/* faster comparison for if the lists happen to be in the same order */
while(left && fn(left->data, right->data) == 0) {
left = left->next;
right = right->next;
}
if(!left) {
return 1;
}
matched = calloc(alpm_list_count(right), sizeof(int));
if(matched == NULL) {
return -1;
}
for(l = left; l; l = l->next) {
int found = 0;
int n = 0;
for(r = right; r; r = r->next, n++) {
/* make sure we don't match the same value twice */
if(matched[n]) {
continue;
}
if(fn(l->data, r->data) == 0) {
found = 1;
matched[n] = 1;
break;
}
}
if(!found) {
free(matched);
return 0;
}
}
free(matched);
return 1;
}
void SYMEXPORT alpm_list_diff_sorted(const alpm_list_t *left, void SYMEXPORT alpm_list_diff_sorted(const alpm_list_t *left,
const alpm_list_t *right, alpm_list_fn_cmp fn, const alpm_list_t *right, alpm_list_fn_cmp fn,
alpm_list_t **onlyleft, alpm_list_t **onlyright) alpm_list_t **onlyleft, alpm_list_t **onlyright)

View file

@ -1,7 +1,7 @@
/* /*
* alpm_list.h * alpm_list.h
* *
* Copyright (c) 2006-2021 Pacman Development Team <pacman-dev@archlinux.org> * Copyright (c) 2006-2025 Pacman Development Team <pacman-dev@lists.archlinux.org>
* Copyright (c) 2002-2006 by Judd Vinet <jvinet@zeroflux.org> * Copyright (c) 2002-2006 by Judd Vinet <jvinet@zeroflux.org>
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify
@ -328,6 +328,22 @@ void *alpm_list_find_ptr(const alpm_list_t *haystack, const void *needle);
*/ */
char *alpm_list_find_str(const alpm_list_t *haystack, const char *needle); char *alpm_list_find_str(const alpm_list_t *haystack, const char *needle);
/**
* @brief Check if two lists contain the same data, ignoring order.
*
* Lists are considered equal if they both contain the same data regardless
* of order.
*
* @param left the first list
* @param right the second list
* @param fn the comparison function
*
* @return 1 if the lists are equal, 0 if not equal, -1 on error.
*/
int alpm_list_cmp_unsorted(const alpm_list_t *left,
const alpm_list_t *right, alpm_list_fn_cmp fn);
/** /**
* @brief Find the differences between list `left` and list `right` * @brief Find the differences between list `left` and list `right`
* *

View file

@ -1,7 +1,7 @@
/* /*
* backup.c * backup.c
* *
* Copyright (c) 2006-2021 Pacman Development Team <pacman-dev@archlinux.org> * Copyright (c) 2006-2025 Pacman Development Team <pacman-dev@lists.archlinux.org>
* Copyright (c) 2005 by Judd Vinet <jvinet@zeroflux.org> * Copyright (c) 2005 by Judd Vinet <jvinet@zeroflux.org>
* Copyright (c) 2005 by Aurelien Foret <orelien@chez.com> * Copyright (c) 2005 by Aurelien Foret <orelien@chez.com>
* Copyright (c) 2005 by Christian Hamar <krics@linuxforum.hu> * Copyright (c) 2005 by Christian Hamar <krics@linuxforum.hu>

View file

@ -1,7 +1,7 @@
/* /*
* backup.h * backup.h
* *
* Copyright (c) 2006-2021 Pacman Development Team <pacman-dev@archlinux.org> * Copyright (c) 2006-2025 Pacman Development Team <pacman-dev@lists.archlinux.org>
* Copyright (c) 2002-2006 by Judd Vinet <jvinet@zeroflux.org> * Copyright (c) 2002-2006 by Judd Vinet <jvinet@zeroflux.org>
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify

View file

@ -1,7 +1,7 @@
/* /*
* be_local.c : backend for the local database * be_local.c : backend for the local database
* *
* Copyright (c) 2006-2021 Pacman Development Team <pacman-dev@archlinux.org> * Copyright (c) 2006-2025 Pacman Development Team <pacman-dev@lists.archlinux.org>
* Copyright (c) 2002-2006 by Judd Vinet <jvinet@zeroflux.org> * Copyright (c) 2002-2006 by Judd Vinet <jvinet@zeroflux.org>
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify
@ -195,6 +195,12 @@ static alpm_list_t *_cache_get_backup(alpm_pkg_t *pkg)
return pkg->backup; return pkg->backup;
} }
static alpm_list_t *_cache_get_xdata(alpm_pkg_t *pkg)
{
LAZY_LOAD(INFRQ_DESC);
return pkg->xdata;
}
/** /**
* Open a package changelog for reading. Similar to fopen in functionality, * Open a package changelog for reading. Similar to fopen in functionality,
* except that the returned 'file stream' is from the database. * except that the returned 'file stream' is from the database.
@ -244,7 +250,6 @@ static int _cache_changelog_close(const alpm_pkg_t UNUSED *pkg, void *fp)
*/ */
static struct archive *_cache_mtree_open(alpm_pkg_t *pkg) static struct archive *_cache_mtree_open(alpm_pkg_t *pkg)
{ {
int r;
struct archive *mtree; struct archive *mtree;
alpm_db_t *db = alpm_pkg_get_db(pkg); alpm_db_t *db = alpm_pkg_get_db(pkg);
@ -262,7 +267,7 @@ static struct archive *_cache_mtree_open(alpm_pkg_t *pkg)
_alpm_archive_read_support_filter_all(mtree); _alpm_archive_read_support_filter_all(mtree);
archive_read_support_format_mtree(mtree); archive_read_support_format_mtree(mtree);
if((r = _alpm_archive_read_open_file(mtree, mtfile, ALPM_BUFFER_SIZE))) { if(_alpm_archive_read_open_file(mtree, mtfile, ALPM_BUFFER_SIZE)) {
_alpm_log(pkg->handle, ALPM_LOG_ERROR, _("error while reading file %s: %s\n"), _alpm_log(pkg->handle, ALPM_LOG_ERROR, _("error while reading file %s: %s\n"),
mtfile, archive_error_string(mtree)); mtfile, archive_error_string(mtree));
_alpm_archive_read_free(mtree); _alpm_archive_read_free(mtree);
@ -349,6 +354,7 @@ static const struct pkg_operations local_pkg_ops = {
.get_replaces = _cache_get_replaces, .get_replaces = _cache_get_replaces,
.get_files = _cache_get_files, .get_files = _cache_get_files,
.get_backup = _cache_get_backup, .get_backup = _cache_get_backup,
.get_xdata = _cache_get_xdata,
.changelog_open = _cache_changelog_open, .changelog_open = _cache_changelog_open,
.changelog_read = _cache_changelog_read, .changelog_read = _cache_changelog_read,
@ -624,6 +630,10 @@ static int local_db_populate(alpm_db_t *db)
continue; continue;
} }
/* treat local metadata errors as warning-only,
* they are already installed and otherwise they can't be operated on */
_alpm_pkg_check_meta(pkg);
/* add to the collection */ /* add to the collection */
_alpm_log(db->handle, ALPM_LOG_FUNCTION, "adding '%s' to package cache for db '%s'\n", _alpm_log(db->handle, ALPM_LOG_FUNCTION, "adding '%s' to package cache for db '%s'\n",
pkg->name, db->treename); pkg->name, db->treename);
@ -644,6 +654,17 @@ static int local_db_populate(alpm_db_t *db)
return 0; return 0;
} }
static alpm_pkgreason_t _read_pkgreason(alpm_handle_t *handle, const char *pkgname, const char *line) {
if(strcmp(line, "0") == 0) {
return ALPM_PKG_REASON_EXPLICIT;
} else if(strcmp(line, "1") == 0) {
return ALPM_PKG_REASON_DEPEND;
} else {
_alpm_log(handle, ALPM_LOG_ERROR, _("unknown install reason for package %s: %s\n"), pkgname, line);
return ALPM_PKG_REASON_UNKNOWN;
}
}
/* Note: the return value must be freed by the caller */ /* Note: the return value must be freed by the caller */
char *_alpm_local_db_pkgpath(alpm_db_t *db, alpm_pkg_t *info, char *_alpm_local_db_pkgpath(alpm_db_t *db, alpm_pkg_t *info,
const char *filename) const char *filename)
@ -656,7 +677,7 @@ char *_alpm_local_db_pkgpath(alpm_db_t *db, alpm_pkg_t *info,
len = strlen(dbpath) + strlen(info->name) + strlen(info->version) + 3; len = strlen(dbpath) + strlen(info->name) + strlen(info->version) + 3;
len += filename ? strlen(filename) : 0; len += filename ? strlen(filename) : 0;
MALLOC(pkgpath, len, RET_ERR(db->handle, ALPM_ERR_MEMORY, NULL)); MALLOC(pkgpath, len, RET_ERR(db->handle, ALPM_ERR_MEMORY, NULL));
sprintf(pkgpath, "%s%s-%s/%s", dbpath, info->name, info->version, snprintf(pkgpath, len, "%s%s-%s/%s", dbpath, info->name, info->version,
filename ? filename : ""); filename ? filename : "");
return pkgpath; return pkgpath;
} }
@ -766,7 +787,7 @@ static int local_db_read(alpm_pkg_t *info, int inforeq)
READ_AND_STORE(info->packager); READ_AND_STORE(info->packager);
} else if(strcmp(line, "%REASON%") == 0) { } else if(strcmp(line, "%REASON%") == 0) {
READ_NEXT(); READ_NEXT();
info->reason = (alpm_pkgreason_t)atoi(line); info->reason = _read_pkgreason(db->handle, info->name, line);
} else if(strcmp(line, "%VALIDATION%") == 0) { } else if(strcmp(line, "%VALIDATION%") == 0) {
alpm_list_t *i, *v = NULL; alpm_list_t *i, *v = NULL;
READ_AND_STORE_ALL(v); READ_AND_STORE_ALL(v);
@ -804,6 +825,23 @@ static int local_db_read(alpm_pkg_t *info, int inforeq)
READ_AND_SPLITDEP(info->conflicts); READ_AND_SPLITDEP(info->conflicts);
} else if(strcmp(line, "%PROVIDES%") == 0) { } else if(strcmp(line, "%PROVIDES%") == 0) {
READ_AND_SPLITDEP(info->provides); READ_AND_SPLITDEP(info->provides);
} else if(strcmp(line, "%XDATA%") == 0) {
alpm_list_t *i, *lines = NULL;
READ_AND_STORE_ALL(lines);
for(i = lines; i; i = i->next) {
alpm_pkg_xdata_t *pd = _alpm_pkg_parse_xdata(i->data);
if(pd == NULL || !alpm_list_append(&info->xdata, pd)) {
_alpm_pkg_xdata_free(pd);
FREELIST(lines);
goto error;
}
}
FREELIST(lines);
} else {
_alpm_log(db->handle, ALPM_LOG_WARNING, _("%s: unknown key '%s' in local database\n"), info->name, line);
alpm_list_t *lines = NULL;
READ_AND_STORE_ALL(lines);
FREELIST(lines);
} }
} }
fclose(fp); fclose(fp);
@ -1040,6 +1078,15 @@ int _alpm_local_db_write(alpm_db_t *db, alpm_pkg_t *info, int inforeq)
write_deps(fp, "%CONFLICTS%", info->conflicts); write_deps(fp, "%CONFLICTS%", info->conflicts);
write_deps(fp, "%PROVIDES%", info->provides); write_deps(fp, "%PROVIDES%", info->provides);
if(info->xdata) {
fputs("%XDATA%\n", fp);
for(lp = info->xdata; lp; lp = lp->next) {
alpm_pkg_xdata_t *pd = lp->data;
fprintf(fp, "%s=%s\n", pd->name, pd->value);
}
fputc('\n', fp);
}
fclose(fp); fclose(fp);
fp = NULL; fp = NULL;
} }
@ -1117,7 +1164,7 @@ int _alpm_local_db_remove(alpm_db_t *db, alpm_pkg_t *info)
/* file path is too long to remove, hmm. */ /* file path is too long to remove, hmm. */
ret = -1; ret = -1;
} else { } else {
sprintf(name, "%s/%s", pkgpath, dp->d_name); snprintf(name, PATH_MAX, "%s/%s", pkgpath, dp->d_name);
if(unlink(name)) { if(unlink(name)) {
ret = -1; ret = -1;
} }

View file

@ -1,7 +1,7 @@
/* /*
* be_package.c : backend for packages * be_package.c : backend for packages
* *
* Copyright (c) 2006-2021 Pacman Development Team <pacman-dev@archlinux.org> * Copyright (c) 2006-2025 Pacman Development Team <pacman-dev@lists.archlinux.org>
* Copyright (c) 2002-2006 by Judd Vinet <jvinet@zeroflux.org> * Copyright (c) 2002-2006 by Judd Vinet <jvinet@zeroflux.org>
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify
@ -244,13 +244,17 @@ static int parse_descfile(alpm_handle_t *handle, struct archive *a, alpm_pkg_t *
CALLOC(backup, 1, sizeof(alpm_backup_t), return -1); CALLOC(backup, 1, sizeof(alpm_backup_t), return -1);
STRDUP(backup->name, ptr, FREE(backup); return -1); STRDUP(backup->name, ptr, FREE(backup); return -1);
newpkg->backup = alpm_list_add(newpkg->backup, backup); newpkg->backup = alpm_list_add(newpkg->backup, backup);
} else if(strcmp(key, "force") == 0) { } else if(strcmp(key, "xdata") == 0) {
/* deprecated, skip it */ alpm_pkg_xdata_t *pd = _alpm_pkg_parse_xdata(ptr);
} else if(strcmp(key, "makepkgopt") == 0) { if(pd == NULL || !alpm_list_append(&newpkg->xdata, pd)) {
/* not used atm */ _alpm_pkg_xdata_free(pd);
return -1;
}
} else { } else {
const char *pkgname = newpkg->name ? newpkg->name : "error";
_alpm_log(handle, ALPM_LOG_WARNING, _("%s: unknown key '%s' in package description\n"), pkgname, key);
_alpm_log(handle, ALPM_LOG_DEBUG, "%s: unknown key '%s' in description file line %d\n", _alpm_log(handle, ALPM_LOG_DEBUG, "%s: unknown key '%s' in description file line %d\n",
newpkg->name ? newpkg->name : "error", key, linenum); pkgname, key, linenum);
} }
} }
} }
@ -650,9 +654,6 @@ alpm_pkg_t *_alpm_pkg_load_internal(alpm_handle_t *handle,
goto pkg_invalid; goto pkg_invalid;
} }
_alpm_archive_read_free(archive);
close(fd);
/* internal fields for package struct */ /* internal fields for package struct */
newpkg->origin = ALPM_PKG_FROM_FILE; newpkg->origin = ALPM_PKG_FROM_FILE;
STRDUP(newpkg->origin_data.file, pkgfile, goto error); STRDUP(newpkg->origin_data.file, pkgfile, goto error);
@ -674,6 +675,12 @@ alpm_pkg_t *_alpm_pkg_load_internal(alpm_handle_t *handle,
newpkg->infolevel |= INFRQ_FILES; newpkg->infolevel |= INFRQ_FILES;
} }
if(_alpm_pkg_check_meta(newpkg) != 0) {
goto pkg_invalid;
}
_alpm_archive_read_free(archive);
close(fd);
return newpkg; return newpkg;
pkg_invalid: pkg_invalid:
@ -681,9 +688,7 @@ pkg_invalid:
error: error:
_alpm_pkg_free(newpkg); _alpm_pkg_free(newpkg);
_alpm_archive_read_free(archive); _alpm_archive_read_free(archive);
if(fd >= 0) { close(fd);
close(fd);
}
return NULL; return NULL;
} }
@ -723,7 +728,6 @@ int SYMEXPORT alpm_pkg_load(alpm_handle_t *handle, const char *filename, int ful
int validation = 0; int validation = 0;
char *sigpath; char *sigpath;
alpm_pkg_t *pkg_temp; alpm_pkg_t *pkg_temp;
char *packager;
CHECK_HANDLE(handle, return -1); CHECK_HANDLE(handle, return -1);
ASSERT(pkg != NULL, RET_ERR(handle, ALPM_ERR_WRONG_ARGS, -1)); ASSERT(pkg != NULL, RET_ERR(handle, ALPM_ERR_WRONG_ARGS, -1));
@ -749,13 +753,7 @@ int SYMEXPORT alpm_pkg_load(alpm_handle_t *handle, const char *filename, int ful
char *key = k->data; char *key = k->data;
if(_alpm_key_in_keychain(handle, key) == 0) { if(_alpm_key_in_keychain(handle, key) == 0) {
pkg_temp = _alpm_pkg_load_internal(handle, filename, full); pkg_temp = _alpm_pkg_load_internal(handle, filename, full);
if(pkg_temp) { if(_alpm_key_import(handle, NULL, key) == -1) {
packager = pkg_temp->packager;
} else {
packager = NULL;
}
if(_alpm_key_import(handle, packager, key) == -1) {
fail = 1; fail = 1;
} }
_alpm_pkg_free(pkg_temp); _alpm_pkg_free(pkg_temp);

View file

@ -1,7 +1,7 @@
/* /*
* be_sync.c : backend for sync databases * be_sync.c : backend for sync databases
* *
* Copyright (c) 2006-2021 Pacman Development Team <pacman-dev@archlinux.org> * Copyright (c) 2006-2025 Pacman Development Team <pacman-dev@lists.archlinux.org>
* Copyright (c) 2002-2006 by Judd Vinet <jvinet@zeroflux.org> * Copyright (c) 2002-2006 by Judd Vinet <jvinet@zeroflux.org>
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify
@ -48,7 +48,7 @@ static char *get_sync_dir(alpm_handle_t *handle)
struct stat buf; struct stat buf;
MALLOC(syncpath, len, RET_ERR(handle, ALPM_ERR_MEMORY, NULL)); MALLOC(syncpath, len, RET_ERR(handle, ALPM_ERR_MEMORY, NULL));
sprintf(syncpath, "%s%s", handle->dbpath, "sync/"); snprintf(syncpath, len, "%s%s", handle->dbpath, "sync/");
if(stat(syncpath, &buf) != 0) { if(stat(syncpath, &buf) != 0) {
_alpm_log(handle, ALPM_LOG_DEBUG, "database dir '%s' does not exist, creating it\n", _alpm_log(handle, ALPM_LOG_DEBUG, "database dir '%s' does not exist, creating it\n",
@ -138,6 +138,7 @@ valid:
int SYMEXPORT alpm_db_update(alpm_handle_t *handle, alpm_list_t *dbs, int force) { int SYMEXPORT alpm_db_update(alpm_handle_t *handle, alpm_list_t *dbs, int force) {
char *syncpath; char *syncpath;
char *temporary_syncpath;
const char *dbext = handle->dbext; const char *dbext = handle->dbext;
alpm_list_t *i; alpm_list_t *i;
int ret = -1; int ret = -1;
@ -152,6 +153,8 @@ int SYMEXPORT alpm_db_update(alpm_handle_t *handle, alpm_list_t *dbs, int force)
syncpath = get_sync_dir(handle); syncpath = get_sync_dir(handle);
ASSERT(syncpath != NULL, return -1); ASSERT(syncpath != NULL, return -1);
temporary_syncpath = _alpm_temporary_download_dir_setup(syncpath, handle->sandboxuser);
ASSERT(temporary_syncpath != NULL, FREE(syncpath); return -1);
/* make sure we have a sane umask */ /* make sure we have a sane umask */
oldmask = umask(0022); oldmask = umask(0022);
@ -189,6 +192,18 @@ int SYMEXPORT alpm_db_update(alpm_handle_t *handle, alpm_list_t *dbs, int force)
MALLOC(payload->filepath, len, MALLOC(payload->filepath, len,
FREE(payload); GOTO_ERR(handle, ALPM_ERR_MEMORY, cleanup)); FREE(payload); GOTO_ERR(handle, ALPM_ERR_MEMORY, cleanup));
snprintf(payload->filepath, len, "%s%s", db->treename, dbext); snprintf(payload->filepath, len, "%s%s", db->treename, dbext);
STRDUP(payload->remote_name, payload->filepath,
_alpm_dload_payload_reset(payload); FREE(payload);
GOTO_ERR(handle, ALPM_ERR_MEMORY, cleanup));
payload->destfile_name = _alpm_get_fullpath(temporary_syncpath, payload->remote_name, "");
payload->tempfile_name = _alpm_get_fullpath(temporary_syncpath, payload->remote_name, ".part");
if(!payload->destfile_name || !payload->tempfile_name) {
_alpm_dload_payload_reset(payload);
FREE(payload);
GOTO_ERR(handle, ALPM_ERR_MEMORY, cleanup);
}
payload->handle = handle; payload->handle = handle;
payload->force = dbforce; payload->force = dbforce;
payload->unlink_on_fail = 1; payload->unlink_on_fail = 1;
@ -205,7 +220,7 @@ int SYMEXPORT alpm_db_update(alpm_handle_t *handle, alpm_list_t *dbs, int force)
event.type = ALPM_EVENT_DB_RETRIEVE_START; event.type = ALPM_EVENT_DB_RETRIEVE_START;
EVENT(handle, &event); EVENT(handle, &event);
ret = _alpm_download(handle, payloads, syncpath); ret = _alpm_download(handle, payloads, syncpath, temporary_syncpath);
if(ret < 0) { if(ret < 0) {
event.type = ALPM_EVENT_DB_RETRIEVE_FAILED; event.type = ALPM_EVENT_DB_RETRIEVE_FAILED;
EVENT(handle, &event); EVENT(handle, &event);
@ -253,7 +268,8 @@ cleanup:
alpm_list_free_inner(payloads, (alpm_list_fn_free)_alpm_dload_payload_reset); alpm_list_free_inner(payloads, (alpm_list_fn_free)_alpm_dload_payload_reset);
FREELIST(payloads); FREELIST(payloads);
} }
free(syncpath); FREE(temporary_syncpath);
FREE(syncpath);
umask(oldmask); umask(oldmask);
return ret; return ret;
} }
@ -292,11 +308,11 @@ static int _sync_get_validation(alpm_pkg_t *pkg)
static const struct pkg_operations *get_sync_pkg_ops(void) static const struct pkg_operations *get_sync_pkg_ops(void)
{ {
static struct pkg_operations sync_pkg_ops; static struct pkg_operations sync_pkg_ops;
static int sync_pkg_ops_initalized = 0; static int sync_pkg_ops_initialized = 0;
if(!sync_pkg_ops_initalized) { if(!sync_pkg_ops_initialized) {
sync_pkg_ops = default_pkg_ops; sync_pkg_ops = default_pkg_ops;
sync_pkg_ops.get_validation = _sync_get_validation; sync_pkg_ops.get_validation = _sync_get_validation;
sync_pkg_ops_initalized = 1; sync_pkg_ops_initialized = 1;
} }
return &sync_pkg_ops; return &sync_pkg_ops;
} }
@ -344,6 +360,11 @@ static alpm_pkg_t *load_pkg_for_entry(alpm_db_t *db, const char *entryname,
pkg->ops = get_sync_pkg_ops(); pkg->ops = get_sync_pkg_ops();
pkg->handle = db->handle; pkg->handle = db->handle;
if(_alpm_pkg_check_meta(pkg) != 0) {
_alpm_pkg_free(pkg);
RET_ERR(db->handle, ALPM_ERR_PKG_INVALID, NULL);
}
/* add to the collection */ /* add to the collection */
_alpm_log(db->handle, ALPM_LOG_FUNCTION, "adding '%s' to package cache for db '%s'\n", _alpm_log(db->handle, ALPM_LOG_FUNCTION, "adding '%s' to package cache for db '%s'\n",
pkg->name, db->treename); pkg->name, db->treename);
@ -452,6 +473,14 @@ static int sync_db_populate(alpm_db_t *db)
} }
} }
} }
/* the db file was successfully read, but contained errors */
if(ret == -1) {
db->status &= ~DB_STATUS_VALID;
db->status |= DB_STATUS_INVALID;
_alpm_db_free_pkgcache(db);
GOTO_ERR(db->handle, ALPM_ERR_DB_INVALID, cleanup);
}
/* reading the db file failed */
if(archive_ret != ARCHIVE_EOF) { if(archive_ret != ARCHIVE_EOF) {
_alpm_log(db->handle, ALPM_LOG_ERROR, _("could not read db '%s' (%s)\n"), _alpm_log(db->handle, ALPM_LOG_ERROR, _("could not read db '%s' (%s)\n"),
db->treename, archive_error_string(archive)); db->treename, archive_error_string(archive));
@ -666,6 +695,23 @@ static int sync_db_read(alpm_db_t *db, struct archive *archive,
pkg->files.count = files_count; pkg->files.count = files_count;
pkg->files.files = files; pkg->files.files = files;
_alpm_filelist_sort(&pkg->files); _alpm_filelist_sort(&pkg->files);
} else if(strcmp(line, "%DATA%") == 0) {
alpm_list_t *i, *lines = NULL;
READ_AND_STORE_ALL(lines);
for(i = lines; i; i = i->next) {
alpm_pkg_xdata_t *pd = _alpm_pkg_parse_xdata(i->data);
if(pd == NULL || !alpm_list_append(&pkg->xdata, pd)) {
_alpm_pkg_xdata_free(pd);
FREELIST(lines);
goto error;
}
}
FREELIST(lines);
} else {
_alpm_log(db->handle, ALPM_LOG_WARNING, _("%s: unknown key '%s' in sync database\n"), pkg->name, line);
alpm_list_t *lines = NULL;
READ_AND_STORE_ALL(lines);
FREELIST(lines);
} }
} }
if(ret != ARCHIVE_EOF) { if(ret != ARCHIVE_EOF) {

View file

@ -1,7 +1,7 @@
/* /*
* conflict.c * conflict.c
* *
* Copyright (c) 2006-2021 Pacman Development Team <pacman-dev@archlinux.org> * Copyright (c) 2006-2025 Pacman Development Team <pacman-dev@lists.archlinux.org>
* Copyright (c) 2002-2006 by Judd Vinet <jvinet@zeroflux.org> * Copyright (c) 2002-2006 by Judd Vinet <jvinet@zeroflux.org>
* Copyright (c) 2005 by Aurelien Foret <orelien@chez.com> * Copyright (c) 2005 by Aurelien Foret <orelien@chez.com>
* Copyright (c) 2006 by David Kimpe <dnaku@frugalware.org> * Copyright (c) 2006 by David Kimpe <dnaku@frugalware.org>
@ -50,10 +50,8 @@ static alpm_conflict_t *conflict_new(alpm_pkg_t *pkg1, alpm_pkg_t *pkg2,
CALLOC(conflict, 1, sizeof(alpm_conflict_t), return NULL); CALLOC(conflict, 1, sizeof(alpm_conflict_t), return NULL);
conflict->package1_hash = pkg1->name_hash; ASSERT(_alpm_pkg_dup(pkg1, &conflict->package1) == 0, goto error);
conflict->package2_hash = pkg2->name_hash; ASSERT(_alpm_pkg_dup(pkg2, &conflict->package2) == 0, goto error);
STRDUP(conflict->package1, pkg1->name, goto error);
STRDUP(conflict->package2, pkg2->name, goto error);
conflict->reason = reason; conflict->reason = reason;
return conflict; return conflict;
@ -66,8 +64,9 @@ error:
void SYMEXPORT alpm_conflict_free(alpm_conflict_t *conflict) void SYMEXPORT alpm_conflict_free(alpm_conflict_t *conflict)
{ {
ASSERT(conflict != NULL, return); ASSERT(conflict != NULL, return);
FREE(conflict->package2); _alpm_pkg_free(conflict->package1);
FREE(conflict->package1); _alpm_pkg_free(conflict->package2);
FREE(conflict); FREE(conflict);
} }
@ -79,10 +78,8 @@ alpm_conflict_t *_alpm_conflict_dup(const alpm_conflict_t *conflict)
alpm_conflict_t *newconflict; alpm_conflict_t *newconflict;
CALLOC(newconflict, 1, sizeof(alpm_conflict_t), return NULL); CALLOC(newconflict, 1, sizeof(alpm_conflict_t), return NULL);
newconflict->package1_hash = conflict->package1_hash; ASSERT(_alpm_pkg_dup(conflict->package1, &newconflict->package1) == 0, goto error);
newconflict->package2_hash = conflict->package2_hash; ASSERT(_alpm_pkg_dup(conflict->package2, &newconflict->package2) == 0, goto error);
STRDUP(newconflict->package1, conflict->package1, goto error);
STRDUP(newconflict->package2, conflict->package2, goto error);
newconflict->reason = conflict->reason; newconflict->reason = conflict->reason;
return newconflict; return newconflict;
@ -105,10 +102,10 @@ static int conflict_isin(alpm_conflict_t *needle, alpm_list_t *haystack)
alpm_list_t *i; alpm_list_t *i;
for(i = haystack; i; i = i->next) { for(i = haystack; i; i = i->next) {
alpm_conflict_t *conflict = i->data; alpm_conflict_t *conflict = i->data;
if(needle->package1_hash == conflict->package1_hash if(needle->package1->name_hash == conflict->package1->name_hash
&& needle->package2_hash == conflict->package2_hash && needle->package2->name_hash == conflict->package2->name_hash
&& strcmp(needle->package1, conflict->package1) == 0 && strcmp(needle->package1->name, conflict->package1->name) == 0
&& strcmp(needle->package2, conflict->package2) == 0) { && strcmp(needle->package2->name, conflict->package2->name) == 0) {
return 1; return 1;
} }
} }
@ -269,6 +266,7 @@ static alpm_list_t *add_fileconflict(alpm_handle_t *handle,
STRDUP(conflict->file, filestr, goto error); STRDUP(conflict->file, filestr, goto error);
if(!pkg2) { if(!pkg2) {
conflict->type = ALPM_FILECONFLICT_FILESYSTEM; conflict->type = ALPM_FILECONFLICT_FILESYSTEM;
STRDUP(conflict->ctarget, "", goto error);
} else if(pkg2->origin == ALPM_PKG_FROM_LOCALDB) { } else if(pkg2->origin == ALPM_PKG_FROM_LOCALDB) {
conflict->type = ALPM_FILECONFLICT_FILESYSTEM; conflict->type = ALPM_FILECONFLICT_FILESYSTEM;
STRDUP(conflict->ctarget, pkg2->name, goto error); STRDUP(conflict->ctarget, pkg2->name, goto error);
@ -614,8 +612,9 @@ alpm_list_t *_alpm_db_find_fileconflicts(alpm_handle_t *handle,
/* check if all files of the dir belong to the installed pkg */ /* check if all files of the dir belong to the installed pkg */
if(!resolved_conflict && S_ISDIR(lsbuf.st_mode)) { if(!resolved_conflict && S_ISDIR(lsbuf.st_mode)) {
alpm_list_t *owners; alpm_list_t *owners;
char *dir = malloc(strlen(relative_path) + 2); size_t dir_len = strlen(relative_path) + 2;
sprintf(dir, "%s/", relative_path); char *dir = malloc(dir_len);
snprintf(dir, dir_len, "%s/", relative_path);
owners = alpm_db_find_file_owners(handle->db_local, dir); owners = alpm_db_find_file_owners(handle->db_local, dir);
if(owners) { if(owners) {

View file

@ -1,7 +1,7 @@
/* /*
* conflict.h * conflict.h
* *
* Copyright (c) 2006-2021 Pacman Development Team <pacman-dev@archlinux.org> * Copyright (c) 2006-2025 Pacman Development Team <pacman-dev@lists.archlinux.org>
* Copyright (c) 2002-2006 by Judd Vinet <jvinet@zeroflux.org> * Copyright (c) 2002-2006 by Judd Vinet <jvinet@zeroflux.org>
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify

View file

@ -1,7 +1,7 @@
/* /*
* db.c * db.c
* *
* Copyright (c) 2006-2021 Pacman Development Team <pacman-dev@archlinux.org> * Copyright (c) 2006-2025 Pacman Development Team <pacman-dev@lists.archlinux.org>
* Copyright (c) 2002-2006 by Judd Vinet <jvinet@zeroflux.org> * Copyright (c) 2002-2006 by Judd Vinet <jvinet@zeroflux.org>
* Copyright (c) 2005 by Aurelien Foret <orelien@chez.com> * Copyright (c) 2005 by Aurelien Foret <orelien@chez.com>
* Copyright (c) 2005 by Christian Hamar <krics@linuxforum.hu> * Copyright (c) 2005 by Christian Hamar <krics@linuxforum.hu>
@ -131,6 +131,26 @@ int SYMEXPORT alpm_db_unregister(alpm_db_t *db)
return 0; return 0;
} }
alpm_list_t SYMEXPORT *alpm_db_get_cache_servers(const alpm_db_t *db)
{
ASSERT(db != NULL, return NULL);
return db->cache_servers;
}
int SYMEXPORT alpm_db_set_cache_servers(alpm_db_t *db, alpm_list_t *cache_servers)
{
alpm_list_t *i;
ASSERT(db != NULL, return -1);
FREELIST(db->cache_servers);
for(i = cache_servers; i; i = i->next) {
char *url = i->data;
if(alpm_db_add_cache_server(db, url) != 0) {
return -1;
}
}
return 0;
}
alpm_list_t SYMEXPORT *alpm_db_get_servers(const alpm_db_t *db) alpm_list_t SYMEXPORT *alpm_db_get_servers(const alpm_db_t *db)
{ {
ASSERT(db != NULL, return NULL); ASSERT(db != NULL, return NULL);
@ -164,6 +184,25 @@ static char *sanitize_url(const char *url)
return newurl; return newurl;
} }
int SYMEXPORT alpm_db_add_cache_server(alpm_db_t *db, const char *url)
{
char *newurl;
/* Sanity checks */
ASSERT(db != NULL, return -1);
db->handle->pm_errno = ALPM_ERR_OK;
ASSERT(url != NULL && strlen(url) != 0, RET_ERR(db->handle, ALPM_ERR_WRONG_ARGS, -1));
newurl = sanitize_url(url);
ASSERT(newurl != NULL, RET_ERR(db->handle, ALPM_ERR_MEMORY, -1));
db->cache_servers = alpm_list_add(db->cache_servers, newurl);
_alpm_log(db->handle, ALPM_LOG_DEBUG, "adding new cache server URL to database '%s': %s\n",
db->treename, newurl);
return 0;
}
int SYMEXPORT alpm_db_add_server(alpm_db_t *db, const char *url) int SYMEXPORT alpm_db_add_server(alpm_db_t *db, const char *url)
{ {
char *newurl; char *newurl;
@ -174,9 +213,8 @@ int SYMEXPORT alpm_db_add_server(alpm_db_t *db, const char *url)
ASSERT(url != NULL && strlen(url) != 0, RET_ERR(db->handle, ALPM_ERR_WRONG_ARGS, -1)); ASSERT(url != NULL && strlen(url) != 0, RET_ERR(db->handle, ALPM_ERR_WRONG_ARGS, -1));
newurl = sanitize_url(url); newurl = sanitize_url(url);
if(!newurl) { ASSERT(newurl != NULL, RET_ERR(db->handle, ALPM_ERR_MEMORY, -1));
return -1;
}
db->servers = alpm_list_add(db->servers, newurl); db->servers = alpm_list_add(db->servers, newurl);
_alpm_log(db->handle, ALPM_LOG_DEBUG, "adding new server URL to database '%s': %s\n", _alpm_log(db->handle, ALPM_LOG_DEBUG, "adding new server URL to database '%s': %s\n",
db->treename, newurl); db->treename, newurl);
@ -184,6 +222,32 @@ int SYMEXPORT alpm_db_add_server(alpm_db_t *db, const char *url)
return 0; return 0;
} }
int SYMEXPORT alpm_db_remove_cache_server(alpm_db_t *db, const char *url)
{
char *newurl, *vdata = NULL;
int ret = 1;
/* Sanity checks */
ASSERT(db != NULL, return -1);
db->handle->pm_errno = ALPM_ERR_OK;
ASSERT(url != NULL && strlen(url) != 0, RET_ERR(db->handle, ALPM_ERR_WRONG_ARGS, -1));
newurl = sanitize_url(url);
ASSERT(newurl != NULL, RET_ERR(db->handle, ALPM_ERR_MEMORY, -1));
db->cache_servers = alpm_list_remove_str(db->cache_servers, newurl, &vdata);
if(vdata) {
_alpm_log(db->handle, ALPM_LOG_DEBUG, "removed cache server URL from database '%s': %s\n",
db->treename, newurl);
free(vdata);
ret = 0;
}
free(newurl);
return ret;
}
int SYMEXPORT alpm_db_remove_server(alpm_db_t *db, const char *url) int SYMEXPORT alpm_db_remove_server(alpm_db_t *db, const char *url)
{ {
char *newurl, *vdata = NULL; char *newurl, *vdata = NULL;
@ -195,9 +259,7 @@ int SYMEXPORT alpm_db_remove_server(alpm_db_t *db, const char *url)
ASSERT(url != NULL && strlen(url) != 0, RET_ERR(db->handle, ALPM_ERR_WRONG_ARGS, -1)); ASSERT(url != NULL && strlen(url) != 0, RET_ERR(db->handle, ALPM_ERR_WRONG_ARGS, -1));
newurl = sanitize_url(url); newurl = sanitize_url(url);
if(!newurl) { ASSERT(newurl != NULL, RET_ERR(db->handle, ALPM_ERR_MEMORY, -1));
return -1;
}
db->servers = alpm_list_remove_str(db->servers, newurl, &vdata); db->servers = alpm_list_remove_str(db->servers, newurl, &vdata);
@ -212,6 +274,12 @@ int SYMEXPORT alpm_db_remove_server(alpm_db_t *db, const char *url)
return ret; return ret;
} }
alpm_handle_t SYMEXPORT *alpm_db_get_handle(alpm_db_t *db)
{
ASSERT(db != NULL, return NULL);
return db->handle;
}
const char SYMEXPORT *alpm_db_get_name(const alpm_db_t *db) const char SYMEXPORT *alpm_db_get_name(const alpm_db_t *db)
{ {
ASSERT(db != NULL, return NULL); ASSERT(db != NULL, return NULL);
@ -322,6 +390,7 @@ void _alpm_db_free(alpm_db_t *db)
/* cleanup pkgcache */ /* cleanup pkgcache */
_alpm_db_free_pkgcache(db); _alpm_db_free_pkgcache(db);
/* cleanup server list */ /* cleanup server list */
FREELIST(db->cache_servers);
FREELIST(db->servers); FREELIST(db->servers);
FREE(db->_path); FREE(db->_path);
FREE(db->treename); FREE(db->treename);
@ -348,14 +417,14 @@ const char *_alpm_db_path(alpm_db_t *db)
if(db->status & DB_STATUS_LOCAL) { if(db->status & DB_STATUS_LOCAL) {
pathsize = strlen(dbpath) + strlen(db->treename) + 2; pathsize = strlen(dbpath) + strlen(db->treename) + 2;
CALLOC(db->_path, 1, pathsize, RET_ERR(db->handle, ALPM_ERR_MEMORY, NULL)); CALLOC(db->_path, 1, pathsize, RET_ERR(db->handle, ALPM_ERR_MEMORY, NULL));
sprintf(db->_path, "%s%s/", dbpath, db->treename); snprintf(db->_path, pathsize, "%s%s/", dbpath, db->treename);
} else { } else {
const char *dbext = db->handle->dbext; const char *dbext = db->handle->dbext;
pathsize = strlen(dbpath) + 5 + strlen(db->treename) + strlen(dbext) + 1; pathsize = strlen(dbpath) + 5 + strlen(db->treename) + strlen(dbext) + 1;
CALLOC(db->_path, 1, pathsize, RET_ERR(db->handle, ALPM_ERR_MEMORY, NULL)); CALLOC(db->_path, 1, pathsize, RET_ERR(db->handle, ALPM_ERR_MEMORY, NULL));
/* all sync DBs now reside in the sync/ subdir of the dbpath */ /* all sync DBs now reside in the sync/ subdir of the dbpath */
sprintf(db->_path, "%ssync/%s%s", dbpath, db->treename, dbext); snprintf(db->_path, pathsize, "%ssync/%s%s", dbpath, db->treename, dbext);
} }
_alpm_log(db->handle, ALPM_LOG_DEBUG, "database path for tree %s set to %s\n", _alpm_log(db->handle, ALPM_LOG_DEBUG, "database path for tree %s set to %s\n",
db->treename, db->_path); db->treename, db->_path);
@ -494,18 +563,17 @@ static void free_groupcache(alpm_db_t *db)
void _alpm_db_free_pkgcache(alpm_db_t *db) void _alpm_db_free_pkgcache(alpm_db_t *db)
{ {
if(db == NULL || !(db->status & DB_STATUS_PKGCACHE)) { if(db == NULL || db->pkgcache == NULL) {
return; return;
} }
_alpm_log(db->handle, ALPM_LOG_DEBUG, _alpm_log(db->handle, ALPM_LOG_DEBUG,
"freeing package cache for repository '%s'\n", db->treename); "freeing package cache for repository '%s'\n", db->treename);
if(db->pkgcache) { alpm_list_free_inner(db->pkgcache->list,
alpm_list_free_inner(db->pkgcache->list, (alpm_list_fn_free)_alpm_pkg_free);
(alpm_list_fn_free)_alpm_pkg_free); _alpm_pkghash_free(db->pkgcache);
_alpm_pkghash_free(db->pkgcache); db->pkgcache = NULL;
}
db->status &= ~DB_STATUS_PKGCACHE; db->status &= ~DB_STATUS_PKGCACHE;
free_groupcache(db); free_groupcache(db);

View file

@ -1,7 +1,7 @@
/* /*
* db.h * db.h
* *
* Copyright (c) 2006-2021 Pacman Development Team <pacman-dev@archlinux.org> * Copyright (c) 2006-2025 Pacman Development Team <pacman-dev@lists.archlinux.org>
* Copyright (c) 2002-2006 by Judd Vinet <jvinet@zeroflux.org> * Copyright (c) 2002-2006 by Judd Vinet <jvinet@zeroflux.org>
* Copyright (c) 2005 by Aurelien Foret <orelien@chez.com> * Copyright (c) 2005 by Aurelien Foret <orelien@chez.com>
* Copyright (c) 2006 by Miklos Vajna <vmiklos@frugalware.org> * Copyright (c) 2006 by Miklos Vajna <vmiklos@frugalware.org>
@ -69,6 +69,7 @@ struct _alpm_db_t {
char *_path; char *_path;
alpm_pkghash_t *pkgcache; alpm_pkghash_t *pkgcache;
alpm_list_t *grpcache; alpm_list_t *grpcache;
alpm_list_t *cache_servers;
alpm_list_t *servers; alpm_list_t *servers;
const struct db_operations *ops; const struct db_operations *ops;

View file

@ -1,7 +1,7 @@
/* /*
* deps.c * deps.c
* *
* Copyright (c) 2006-2021 Pacman Development Team <pacman-dev@archlinux.org> * Copyright (c) 2006-2025 Pacman Development Team <pacman-dev@lists.archlinux.org>
* Copyright (c) 2002-2006 by Judd Vinet <jvinet@zeroflux.org> * Copyright (c) 2002-2006 by Judd Vinet <jvinet@zeroflux.org>
* Copyright (c) 2005 by Aurelien Foret <orelien@chez.com> * Copyright (c) 2005 by Aurelien Foret <orelien@chez.com>
* Copyright (c) 2005, 2006 by Miklos Vajna <vmiklos@frugalware.org> * Copyright (c) 2005, 2006 by Miklos Vajna <vmiklos@frugalware.org>
@ -181,13 +181,13 @@ static void _alpm_warn_dep_cycle(alpm_handle_t *handle, alpm_list_t *targets,
} else { } else {
alpm_pkg_t *ancestorpkg = ancestor->data; alpm_pkg_t *ancestorpkg = ancestor->data;
alpm_pkg_t *childpkg = vertex->data; alpm_pkg_t *childpkg = vertex->data;
_alpm_log(handle, ALPM_LOG_WARNING, _("dependency cycle detected:\n")); _alpm_log(handle, ALPM_LOG_DEBUG, _("dependency cycle detected:\n"));
if(reverse) { if(reverse) {
_alpm_log(handle, ALPM_LOG_WARNING, _alpm_log(handle, ALPM_LOG_DEBUG,
_("%s will be removed after its %s dependency\n"), _("%s will be removed after its %s dependency\n"),
ancestorpkg->name, childpkg->name); ancestorpkg->name, childpkg->name);
} else { } else {
_alpm_log(handle, ALPM_LOG_WARNING, _alpm_log(handle, ALPM_LOG_DEBUG,
_("%s will be installed before its %s dependency\n"), _("%s will be installed before its %s dependency\n"),
ancestorpkg->name, childpkg->name); ancestorpkg->name, childpkg->name);
} }
@ -556,7 +556,7 @@ static void _alpm_select_depends(alpm_list_t **from, alpm_list_t **to,
for(i = *from; i; i = next) { for(i = *from; i; i = next) {
alpm_pkg_t *deppkg = i->data; alpm_pkg_t *deppkg = i->data;
next = i->next; next = i->next;
if((explicit || alpm_pkg_get_reason(deppkg) != ALPM_PKG_REASON_EXPLICIT) if((explicit || alpm_pkg_get_reason(deppkg) == ALPM_PKG_REASON_DEPEND)
&& _alpm_pkg_depends_on(pkg, deppkg)) { && _alpm_pkg_depends_on(pkg, deppkg)) {
*to = alpm_list_add(*to, deppkg); *to = alpm_list_add(*to, deppkg);
*from = alpm_list_remove_item(*from, i); *from = alpm_list_remove_item(*from, i);

View file

@ -1,7 +1,7 @@
/* /*
* deps.h * deps.h
* *
* Copyright (c) 2006-2021 Pacman Development Team <pacman-dev@archlinux.org> * Copyright (c) 2006-2025 Pacman Development Team <pacman-dev@lists.archlinux.org>
* Copyright (c) 2002-2006 by Judd Vinet <jvinet@zeroflux.org> * Copyright (c) 2002-2006 by Judd Vinet <jvinet@zeroflux.org>
* Copyright (c) 2005 by Aurelien Foret <orelien@chez.com> * Copyright (c) 2005 by Aurelien Foret <orelien@chez.com>
* Copyright (c) 2006 by Miklos Vajna <vmiklos@frugalware.org> * Copyright (c) 2006 by Miklos Vajna <vmiklos@frugalware.org>

View file

@ -1,7 +1,7 @@
/* /*
* diskspace.c * diskspace.c
* *
* Copyright (c) 2010-2021 Pacman Development Team <pacman-dev@archlinux.org> * Copyright (c) 2010-2025 Pacman Development Team <pacman-dev@lists.archlinux.org>
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by
@ -111,6 +111,10 @@ static alpm_list_t *mount_point_list(alpm_handle_t *handle)
} }
while((mnt = getmntent(fp))) { while((mnt = getmntent(fp))) {
if(mnt->mnt_dir == NULL) {
continue;
}
CALLOC(mp, 1, sizeof(alpm_mountpoint_t), RET_ERR(handle, ALPM_ERR_MEMORY, NULL)); CALLOC(mp, 1, sizeof(alpm_mountpoint_t), RET_ERR(handle, ALPM_ERR_MEMORY, NULL));
STRDUP(mp->mount_dir, mnt->mnt_dir, free(mp); RET_ERR(handle, ALPM_ERR_MEMORY, NULL)); STRDUP(mp->mount_dir, mnt->mnt_dir, free(mp); RET_ERR(handle, ALPM_ERR_MEMORY, NULL));
mp->mount_dir_len = strlen(mp->mount_dir); mp->mount_dir_len = strlen(mp->mount_dir);
@ -134,6 +138,10 @@ static alpm_list_t *mount_point_list(alpm_handle_t *handle)
} }
while((ret = getmntent(fp, &mnt)) == 0) { while((ret = getmntent(fp, &mnt)) == 0) {
if(mnt->mnt_mountp == NULL) {
continue;
}
CALLOC(mp, 1, sizeof(alpm_mountpoint_t), RET_ERR(handle, ALPM_ERR_MEMORY, NULL)); CALLOC(mp, 1, sizeof(alpm_mountpoint_t), RET_ERR(handle, ALPM_ERR_MEMORY, NULL));
STRDUP(mp->mount_dir, mnt->mnt_mountp, free(mp); RET_ERR(handle, ALPM_ERR_MEMORY, NULL)); STRDUP(mp->mount_dir, mnt->mnt_mountp, free(mp); RET_ERR(handle, ALPM_ERR_MEMORY, NULL));
mp->mount_dir_len = strlen(mp->mount_dir); mp->mount_dir_len = strlen(mp->mount_dir);
@ -161,6 +169,10 @@ static alpm_list_t *mount_point_list(alpm_handle_t *handle)
} }
for(; entries-- > 0; fsp++) { for(; entries-- > 0; fsp++) {
if(fsp->f_mntonname == NULL) {
continue;
}
CALLOC(mp, 1, sizeof(alpm_mountpoint_t), RET_ERR(handle, ALPM_ERR_MEMORY, NULL)); CALLOC(mp, 1, sizeof(alpm_mountpoint_t), RET_ERR(handle, ALPM_ERR_MEMORY, NULL));
STRDUP(mp->mount_dir, fsp->f_mntonname, free(mp); RET_ERR(handle, ALPM_ERR_MEMORY, NULL)); STRDUP(mp->mount_dir, fsp->f_mntonname, free(mp); RET_ERR(handle, ALPM_ERR_MEMORY, NULL));
mp->mount_dir_len = strlen(mp->mount_dir); mp->mount_dir_len = strlen(mp->mount_dir);

View file

@ -1,7 +1,7 @@
/* /*
* diskspace.h * diskspace.h
* *
* Copyright (c) 2010-2021 Pacman Development Team <pacman-dev@archlinux.org> * Copyright (c) 2010-2025 Pacman Development Team <pacman-dev@lists.archlinux.org>
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by

File diff suppressed because it is too large Load diff

View file

@ -1,7 +1,7 @@
/* /*
* dload.h * dload.h
* *
* Copyright (c) 2006-2021 Pacman Development Team <pacman-dev@archlinux.org> * Copyright (c) 2006-2025 Pacman Development Team <pacman-dev@lists.archlinux.org>
* Copyright (c) 2002-2006 by Judd Vinet <jvinet@zeroflux.org> * Copyright (c) 2002-2006 by Judd Vinet <jvinet@zeroflux.org>
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify
@ -26,10 +26,12 @@
struct dload_payload { struct dload_payload {
alpm_handle_t *handle; alpm_handle_t *handle;
const char *tempfile_openmode; const char *tempfile_openmode;
/* name of the remote file */
char *remote_name; char *remote_name;
/* temporary file name, to which the payload is downloaded */
char *tempfile_name; char *tempfile_name;
/* name to which the downloaded file will be renamed */
char *destfile_name; char *destfile_name;
char *content_disp_name;
/* client has to provide either /* client has to provide either
* 1) fileurl - full URL to the file * 1) fileurl - full URL to the file
* 2) pair of (servers, filepath), in this case ALPM iterates over the * 2) pair of (servers, filepath), in this case ALPM iterates over the
@ -37,31 +39,34 @@ struct dload_payload {
*/ */
char *fileurl; char *fileurl;
char *filepath; /* download URL path */ char *filepath; /* download URL path */
alpm_list_t *cache_servers;
alpm_list_t *servers; alpm_list_t *servers;
long respcode; long respcode;
/* the mtime of the existing version of this file, if there is one */
long mtime_existing_file;
off_t initial_size; off_t initial_size;
off_t max_size; off_t max_size;
off_t prevprogress; off_t prevprogress;
int force; int force;
int allow_resume; int allow_resume;
int random_partfile;
int errors_ok; int errors_ok;
int unlink_on_fail; int unlink_on_fail;
int trust_remote_name;
int download_signature; /* specifies if an accompanion *.sig file need to be downloaded*/ int download_signature; /* specifies if an accompanion *.sig file need to be downloaded*/
int signature_optional; /* *.sig file is optional */ int signature_optional; /* *.sig file is optional */
#ifdef HAVE_LIBCURL #ifdef HAVE_LIBCURL
CURL *curl; CURL *curl;
char error_buffer[CURL_ERROR_SIZE]; char error_buffer[CURL_ERROR_SIZE];
FILE *localf; /* temp download file */
int signature; /* specifies if this payload is for a signature file */ int signature; /* specifies if this payload is for a signature file */
int request_errors_ok; /* per-request errors-ok */
#endif #endif
FILE *localf; /* temp download file */
}; };
void _alpm_dload_payload_reset(struct dload_payload *payload); void _alpm_dload_payload_reset(struct dload_payload *payload);
int _alpm_download(alpm_handle_t *handle, int _alpm_download(alpm_handle_t *handle,
alpm_list_t *payloads /* struct dload_payload */, alpm_list_t *payloads /* struct dload_payload */,
const char *localpath); const char *localpath,
const char *temporary_localpath);
#endif /* ALPM_DLOAD_H */ #endif /* ALPM_DLOAD_H */

View file

@ -1,7 +1,7 @@
/* /*
* error.c * error.c
* *
* Copyright (c) 2006-2021 Pacman Development Team <pacman-dev@archlinux.org> * Copyright (c) 2006-2025 Pacman Development Team <pacman-dev@lists.archlinux.org>
* Copyright (c) 2002-2006 by Judd Vinet <jvinet@zeroflux.org> * Copyright (c) 2002-2006 by Judd Vinet <jvinet@zeroflux.org>
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify
@ -137,7 +137,7 @@ const char SYMEXPORT *alpm_strerror(alpm_errno_t err)
return _("conflicting dependencies"); return _("conflicting dependencies");
case ALPM_ERR_FILE_CONFLICTS: case ALPM_ERR_FILE_CONFLICTS:
return _("conflicting files"); return _("conflicting files");
/* Miscellaenous */ /* Miscellaneous */
case ALPM_ERR_RETRIEVE: case ALPM_ERR_RETRIEVE:
return _("failed to retrieve some files"); return _("failed to retrieve some files");
case ALPM_ERR_INVALID_REGEX: case ALPM_ERR_INVALID_REGEX:

View file

@ -1,7 +1,7 @@
/* /*
* filelist.c * filelist.c
* *
* Copyright (c) 2012-2021 Pacman Development Team <pacman-dev@archlinux.org> * Copyright (c) 2012-2025 Pacman Development Team <pacman-dev@lists.archlinux.org>
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by
@ -118,12 +118,12 @@ static int _alpm_files_cmp(const void *f1, const void *f2)
return strcmp(file1->name, file2->name); return strcmp(file1->name, file2->name);
} }
alpm_file_t SYMEXPORT *alpm_filelist_contains(alpm_filelist_t *filelist, alpm_file_t SYMEXPORT *alpm_filelist_contains(const alpm_filelist_t *filelist,
const char *path) const char *path)
{ {
alpm_file_t key; alpm_file_t key;
if(!filelist) { if(!filelist || filelist->count == 0) {
return NULL; return NULL;
} }

View file

@ -1,7 +1,7 @@
/* /*
* filelist.h * filelist.h
* *
* Copyright (c) 2012-2021 Pacman Development Team <pacman-dev@archlinux.org> * Copyright (c) 2012-2025 Pacman Development Team <pacman-dev@lists.archlinux.org>
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by

View file

@ -1,7 +1,7 @@
/* /*
* graph.c - helpful graph structure and setup/teardown methods * graph.c - helpful graph structure and setup/teardown methods
* *
* Copyright (c) 2007-2021 Pacman Development Team <pacman-dev@archlinux.org> * Copyright (c) 2007-2025 Pacman Development Team <pacman-dev@lists.archlinux.org>
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by

View file

@ -1,7 +1,7 @@
/* /*
* graph.h - helpful graph structure and setup/teardown methods * graph.h - helpful graph structure and setup/teardown methods
* *
* Copyright (c) 2007-2021 Pacman Development Team <pacman-dev@archlinux.org> * Copyright (c) 2007-2025 Pacman Development Team <pacman-dev@lists.archlinux.org>
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by

View file

@ -1,7 +1,7 @@
/* /*
* group.c * group.c
* *
* Copyright (c) 2006-2021 Pacman Development Team <pacman-dev@archlinux.org> * Copyright (c) 2006-2025 Pacman Development Team <pacman-dev@lists.archlinux.org>
* Copyright (c) 2002-2006 by Judd Vinet <jvinet@zeroflux.org> * Copyright (c) 2002-2006 by Judd Vinet <jvinet@zeroflux.org>
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify

View file

@ -1,7 +1,7 @@
/* /*
* group.h * group.h
* *
* Copyright (c) 2006-2021 Pacman Development Team <pacman-dev@archlinux.org> * Copyright (c) 2006-2025 Pacman Development Team <pacman-dev@lists.archlinux.org>
* Copyright (c) 2002-2006 by Judd Vinet <jvinet@zeroflux.org> * Copyright (c) 2002-2006 by Judd Vinet <jvinet@zeroflux.org>
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify

View file

@ -1,7 +1,7 @@
/* /*
* handle.c * handle.c
* *
* Copyright (c) 2006-2021 Pacman Development Team <pacman-dev@archlinux.org> * Copyright (c) 2006-2025 Pacman Development Team <pacman-dev@lists.archlinux.org>
* Copyright (c) 2002-2006 by Judd Vinet <jvinet@zeroflux.org> * Copyright (c) 2002-2006 by Judd Vinet <jvinet@zeroflux.org>
* Copyright (c) 2005 by Aurelien Foret <orelien@chez.com> * Copyright (c) 2005 by Aurelien Foret <orelien@chez.com>
* Copyright (c) 2005, 2006 by Miklos Vajna <vmiklos@frugalware.org> * Copyright (c) 2005, 2006 by Miklos Vajna <vmiklos@frugalware.org>
@ -48,12 +48,28 @@ alpm_handle_t *_alpm_handle_new(void)
return handle; return handle;
} }
/* free all in-memory resources */
void _alpm_handle_free(alpm_handle_t *handle) void _alpm_handle_free(alpm_handle_t *handle)
{ {
alpm_list_t *i;
alpm_db_t *db;
if(handle == NULL) { if(handle == NULL) {
return; return;
} }
/* close local database */
if((db = handle->db_local)) {
db->ops->unregister(db);
}
/* unregister all sync dbs */
for(i = handle->dbs_sync; i; i = i->next) {
db = i->data;
db->ops->unregister(db);
}
alpm_list_free(handle->dbs_sync);
/* close logfile */ /* close logfile */
if(handle->logstream) { if(handle->logstream) {
fclose(handle->logstream); fclose(handle->logstream);
@ -68,6 +84,12 @@ void _alpm_handle_free(alpm_handle_t *handle)
FREELIST(handle->known_keys); FREELIST(handle->known_keys);
#endif #endif
#ifdef HAVE_LIBCURL
curl_multi_cleanup(handle->curlm);
curl_global_cleanup();
FREELIST(handle->server_errors);
#endif
/* free memory */ /* free memory */
_alpm_trans_free(handle->trans); _alpm_trans_free(handle->trans);
FREE(handle->root); FREE(handle->root);
@ -79,6 +101,7 @@ void _alpm_handle_free(alpm_handle_t *handle)
FREE(handle->lockfile); FREE(handle->lockfile);
FREELIST(handle->architectures); FREELIST(handle->architectures);
FREE(handle->gpgdir); FREE(handle->gpgdir);
FREE(handle->sandboxuser);
FREELIST(handle->noupgrade); FREELIST(handle->noupgrade);
FREELIST(handle->noextract); FREELIST(handle->noextract);
FREELIST(handle->ignorepkg); FREELIST(handle->ignorepkg);
@ -270,6 +293,12 @@ const char SYMEXPORT *alpm_option_get_gpgdir(alpm_handle_t *handle)
return handle->gpgdir; return handle->gpgdir;
} }
const char SYMEXPORT *alpm_option_get_sandboxuser(alpm_handle_t *handle)
{
CHECK_HANDLE(handle, return NULL);
return handle->sandboxuser;
}
int SYMEXPORT alpm_option_get_usesyslog(alpm_handle_t *handle) int SYMEXPORT alpm_option_get_usesyslog(alpm_handle_t *handle)
{ {
CHECK_HANDLE(handle, return -1); CHECK_HANDLE(handle, return -1);
@ -573,6 +602,19 @@ int SYMEXPORT alpm_option_set_gpgdir(alpm_handle_t *handle, const char *gpgdir)
return 0; return 0;
} }
int SYMEXPORT alpm_option_set_sandboxuser(alpm_handle_t *handle, const char *sandboxuser)
{
CHECK_HANDLE(handle, return -1);
if(handle->sandboxuser) {
FREE(handle->sandboxuser);
}
STRDUP(handle->sandboxuser, sandboxuser, RET_ERR(handle, ALPM_ERR_MEMORY, -1));
_alpm_log(handle, ALPM_LOG_DEBUG, "option 'sandboxuser' = %s\n", handle->sandboxuser);
return 0;
}
int SYMEXPORT alpm_option_set_usesyslog(alpm_handle_t *handle, int usesyslog) int SYMEXPORT alpm_option_set_usesyslog(alpm_handle_t *handle, int usesyslog)
{ {
CHECK_HANDLE(handle, return -1); CHECK_HANDLE(handle, return -1);
@ -893,6 +935,12 @@ int SYMEXPORT alpm_option_get_remote_file_siglevel(alpm_handle_t *handle)
} }
} }
int SYMEXPORT alpm_option_get_disable_dl_timeout(alpm_handle_t *handle)
{
CHECK_HANDLE(handle, return -1);
return handle->disable_dl_timeout;
}
int SYMEXPORT alpm_option_set_disable_dl_timeout(alpm_handle_t *handle, int SYMEXPORT alpm_option_set_disable_dl_timeout(alpm_handle_t *handle,
unsigned short disable_dl_timeout) unsigned short disable_dl_timeout)
{ {
@ -909,3 +957,17 @@ int SYMEXPORT alpm_option_set_parallel_downloads(alpm_handle_t *handle,
handle->parallel_downloads = num_streams; handle->parallel_downloads = num_streams;
return 0; return 0;
} }
int SYMEXPORT alpm_option_get_disable_sandbox(alpm_handle_t *handle)
{
CHECK_HANDLE(handle, return -1);
return handle->disable_sandbox;
}
int SYMEXPORT alpm_option_set_disable_sandbox(alpm_handle_t *handle,
unsigned short disable_sandbox)
{
CHECK_HANDLE(handle, return -1);
handle->disable_sandbox = disable_sandbox;
return 0;
}

View file

@ -1,7 +1,7 @@
/* /*
* handle.h * handle.h
* *
* Copyright (c) 2006-2021 Pacman Development Team <pacman-dev@archlinux.org> * Copyright (c) 2006-2025 Pacman Development Team <pacman-dev@lists.archlinux.org>
* Copyright (c) 2002-2006 by Judd Vinet <jvinet@zeroflux.org> * Copyright (c) 2002-2006 by Judd Vinet <jvinet@zeroflux.org>
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify
@ -65,6 +65,7 @@ struct _alpm_handle_t {
#endif #endif
unsigned short disable_dl_timeout; unsigned short disable_dl_timeout;
unsigned short disable_sandbox;
unsigned int parallel_downloads; /* number of download streams */ unsigned int parallel_downloads; /* number of download streams */
#ifdef HAVE_LIBGPGME #ifdef HAVE_LIBGPGME
@ -91,6 +92,7 @@ struct _alpm_handle_t {
char *logfile; /* Name of the log file */ char *logfile; /* Name of the log file */
char *lockfile; /* Name of the lock file */ char *lockfile; /* Name of the lock file */
char *gpgdir; /* Directory where GnuPG files are stored */ char *gpgdir; /* Directory where GnuPG files are stored */
char *sandboxuser; /* User to switch to for sensitive operations */
alpm_list_t *cachedirs; /* Paths to pacman cache directories */ alpm_list_t *cachedirs; /* Paths to pacman cache directories */
alpm_list_t *hookdirs; /* Paths to hook directories */ alpm_list_t *hookdirs; /* Paths to hook directories */
alpm_list_t *overwrite_files; /* Paths that may be overwritten */ alpm_list_t *overwrite_files; /* Paths that may be overwritten */

View file

@ -1,7 +1,7 @@
/* /*
* hook.c * hook.c
* *
* Copyright (c) 2015-2021 Pacman Development Team <pacman-dev@archlinux.org> * Copyright (c) 2015-2025 Pacman Development Team <pacman-dev@lists.archlinux.org>
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by

View file

@ -1,7 +1,7 @@
/* /*
* hook.h * hook.h
* *
* Copyright (c) 2015-2021 Pacman Development Team <pacman-dev@archlinux.org> * Copyright (c) 2015-2025 Pacman Development Team <pacman-dev@lists.archlinux.org>
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by

View file

@ -1,13 +0,0 @@
prefix=@prefix@
exec_prefix=@exec_prefix@
libdir=@libdir@
includedir=@includedir@
Name: libalpm
Description: Arch Linux package management library
URL: http://archlinux.org/pacman/
Version: @LIB_VERSION@
Requires.private: libarchive @pc_crypto@ @pc_libcurl@ @pc_gpgme@
Cflags: -I${includedir} @LFS_CFLAGS@
Libs: -L${libdir} -lalpm
Libs.private: @LIBS@ @pc_gpgme_libs@ @LIBINTL@

View file

@ -4,7 +4,7 @@
/* /*
* libarchive-compat.h * libarchive-compat.h
* *
* Copyright (c) 2013-2021 Pacman Development Team <pacman-dev@archlinux.org> * Copyright (c) 2013-2025 Pacman Development Team <pacman-dev@lists.archlinux.org>
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by

View file

@ -1,7 +1,7 @@
/* /*
* log.c * log.c
* *
* Copyright (c) 2006-2021 Pacman Development Team <pacman-dev@archlinux.org> * Copyright (c) 2006-2025 Pacman Development Team <pacman-dev@lists.archlinux.org>
* Copyright (c) 2002-2006 by Judd Vinet <jvinet@zeroflux.org> * Copyright (c) 2002-2006 by Judd Vinet <jvinet@zeroflux.org>
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify

View file

@ -1,7 +1,7 @@
/* /*
* log.h * log.h
* *
* Copyright (c) 2006-2021 Pacman Development Team <pacman-dev@archlinux.org> * Copyright (c) 2006-2025 Pacman Development Team <pacman-dev@lists.archlinux.org>
* Copyright (c) 2002-2006 by Judd Vinet <jvinet@zeroflux.org> * Copyright (c) 2002-2006 by Judd Vinet <jvinet@zeroflux.org>
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify

View file

@ -24,6 +24,9 @@ libalpm_sources = files('''
pkghash.h pkghash.c pkghash.h pkghash.c
rawstr.c rawstr.c
remove.h remove.c remove.h remove.c
sandbox.h sandbox.c
sandbox_fs.h sandbox_fs.c
sandbox_syscalls.h sandbox_syscalls.c
signing.c signing.h signing.c signing.h
sync.h sync.c sync.h sync.c
trans.h trans.c trans.h trans.c

View file

@ -1,7 +1,7 @@
/* /*
* package.c * package.c
* *
* Copyright (c) 2006-2021 Pacman Development Team <pacman-dev@archlinux.org> * Copyright (c) 2006-2025 Pacman Development Team <pacman-dev@lists.archlinux.org>
* Copyright (c) 2002-2006 by Judd Vinet <jvinet@zeroflux.org> * Copyright (c) 2002-2006 by Judd Vinet <jvinet@zeroflux.org>
* Copyright (c) 2005 by Aurelien Foret <orelien@chez.com> * Copyright (c) 2005 by Aurelien Foret <orelien@chez.com>
* Copyright (c) 2005, 2006 by Christian Hamar <krics@linuxforum.hu> * Copyright (c) 2005, 2006 by Christian Hamar <krics@linuxforum.hu>
@ -21,6 +21,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
#include <limits.h>
#include <stdlib.h> #include <stdlib.h>
#include <string.h> #include <string.h>
#include <sys/types.h> #include <sys/types.h>
@ -98,6 +99,7 @@ static alpm_list_t *_pkg_get_provides(alpm_pkg_t *pkg) { return pkg->provides;
static alpm_list_t *_pkg_get_replaces(alpm_pkg_t *pkg) { return pkg->replaces; } static alpm_list_t *_pkg_get_replaces(alpm_pkg_t *pkg) { return pkg->replaces; }
static alpm_filelist_t *_pkg_get_files(alpm_pkg_t *pkg) { return &(pkg->files); } static alpm_filelist_t *_pkg_get_files(alpm_pkg_t *pkg) { return &(pkg->files); }
static alpm_list_t *_pkg_get_backup(alpm_pkg_t *pkg) { return pkg->backup; } static alpm_list_t *_pkg_get_backup(alpm_pkg_t *pkg) { return pkg->backup; }
static alpm_list_t *_pkg_get_xdata(alpm_pkg_t *pkg) { return pkg->xdata; }
static void *_pkg_changelog_open(alpm_pkg_t UNUSED *pkg) static void *_pkg_changelog_open(alpm_pkg_t UNUSED *pkg)
{ {
@ -162,6 +164,7 @@ const struct pkg_operations default_pkg_ops = {
.get_replaces = _pkg_get_replaces, .get_replaces = _pkg_get_replaces,
.get_files = _pkg_get_files, .get_files = _pkg_get_files,
.get_backup = _pkg_get_backup, .get_backup = _pkg_get_backup,
.get_xdata = _pkg_get_xdata,
.changelog_open = _pkg_changelog_open, .changelog_open = _pkg_changelog_open,
.changelog_read = _pkg_changelog_read, .changelog_read = _pkg_changelog_read,
@ -191,6 +194,12 @@ const char SYMEXPORT *alpm_pkg_get_base(alpm_pkg_t *pkg)
return pkg->ops->get_base(pkg); return pkg->ops->get_base(pkg);
} }
alpm_handle_t SYMEXPORT *alpm_pkg_get_handle(alpm_pkg_t *pkg)
{
ASSERT(pkg != NULL, return NULL);
return pkg->handle;
}
const char SYMEXPORT *alpm_pkg_get_name(alpm_pkg_t *pkg) const char SYMEXPORT *alpm_pkg_get_name(alpm_pkg_t *pkg)
{ {
ASSERT(pkg != NULL, return NULL); ASSERT(pkg != NULL, return NULL);
@ -479,6 +488,13 @@ int SYMEXPORT alpm_pkg_has_scriptlet(alpm_pkg_t *pkg)
return pkg->ops->has_scriptlet(pkg); return pkg->ops->has_scriptlet(pkg);
} }
alpm_list_t SYMEXPORT *alpm_pkg_get_xdata(alpm_pkg_t *pkg)
{
ASSERT(pkg != NULL, return NULL);
pkg->handle->pm_errno = ALPM_ERR_OK;
return pkg->ops->get_xdata(pkg);
}
static void find_requiredby(alpm_pkg_t *pkg, alpm_db_t *db, alpm_list_t **reqs, static void find_requiredby(alpm_pkg_t *pkg, alpm_db_t *db, alpm_list_t **reqs,
int optional) int optional)
{ {
@ -671,6 +687,30 @@ static void free_deplist(alpm_list_t *deps)
alpm_list_free(deps); alpm_list_free(deps);
} }
alpm_pkg_xdata_t *_alpm_pkg_parse_xdata(const char *string)
{
alpm_pkg_xdata_t *pd;
const char *sep;
if(string == NULL || (sep = strchr(string, '=')) == NULL) {
return NULL;
}
CALLOC(pd, 1, sizeof(alpm_pkg_xdata_t), return NULL);
STRNDUP(pd->name, string, sep - string, FREE(pd); return NULL);
STRDUP(pd->value, sep + 1, FREE(pd->name); FREE(pd); return NULL);
return pd;
}
void _alpm_pkg_xdata_free(alpm_pkg_xdata_t *pd)
{
if(pd) {
free(pd->name);
free(pd->value);
free(pd);
}
}
void _alpm_pkg_free(alpm_pkg_t *pkg) void _alpm_pkg_free(alpm_pkg_t *pkg)
{ {
if(pkg == NULL) { if(pkg == NULL) {
@ -701,6 +741,8 @@ void _alpm_pkg_free(alpm_pkg_t *pkg)
} }
alpm_list_free_inner(pkg->backup, (alpm_list_fn_free)_alpm_backup_free); alpm_list_free_inner(pkg->backup, (alpm_list_fn_free)_alpm_backup_free);
alpm_list_free(pkg->backup); alpm_list_free(pkg->backup);
alpm_list_free_inner(pkg->xdata, (alpm_list_fn_free)_alpm_pkg_xdata_free);
alpm_list_free(pkg->xdata);
free_deplist(pkg->depends); free_deplist(pkg->depends);
free_deplist(pkg->optdepends); free_deplist(pkg->optdepends);
free_deplist(pkg->checkdepends); free_deplist(pkg->checkdepends);
@ -803,3 +845,58 @@ int SYMEXPORT alpm_pkg_should_ignore(alpm_handle_t *handle, alpm_pkg_t *pkg)
return 0; return 0;
} }
/* check that package metadata meets our requirements */
int _alpm_pkg_check_meta(alpm_pkg_t *pkg)
{
char *c;
int error_found = 0;
#define EPKGMETA(error) do { \
error_found = -1; \
_alpm_log(pkg->handle, ALPM_LOG_ERROR, error, pkg->name, pkg->version); \
} while(0)
/* sanity check */
if(pkg->handle == NULL) {
return -1;
}
/* immediate bail if package doesn't have name or version */
if(pkg->name == NULL || pkg->name[0] == '\0'
|| pkg->version == NULL || pkg->version[0] == '\0') {
_alpm_log(pkg->handle, ALPM_LOG_ERROR,
_("invalid package metadata (name or version missing)"));
return -1;
}
if(pkg->name[0] == '-' || pkg->name[0] == '.') {
EPKGMETA(_("invalid metadata for package %s-%s "
"(package name cannot start with '.' or '-')\n"));
}
if(_alpm_fnmatch(pkg->name, "[![:alnum:]+_.@-]") == 0) {
EPKGMETA(_("invalid metadata for package %s-%s "
"(package name contains invalid characters)\n"));
}
/* multiple '-' in pkgver can cause local db entries for different packages
* to overlap (e.g. foo-1=2-3 and foo=1-2-3 both give foo-1-2-3) */
if((c = strchr(pkg->version, '-')) && (strchr(c + 1, '-'))) {
EPKGMETA(_("invalid metadata for package %s-%s "
"(package version contains invalid characters)\n"));
}
if(strchr(pkg->version, '/')) {
EPKGMETA(_("invalid metadata for package %s-%s "
"(package version contains invalid characters)\n"));
}
/* local db entry is <pkgname>-<pkgver> */
if(strlen(pkg->name) + strlen(pkg->version) + 1 > NAME_MAX) {
EPKGMETA(_("invalid metadata for package %s-%s "
"(package name and version too long)\n"));
}
#undef EPKGMETA
return error_found;
}

View file

@ -1,7 +1,7 @@
/* /*
* package.h * package.h
* *
* Copyright (c) 2006-2021 Pacman Development Team <pacman-dev@archlinux.org> * Copyright (c) 2006-2025 Pacman Development Team <pacman-dev@lists.archlinux.org>
* Copyright (c) 2002-2006 by Judd Vinet <jvinet@zeroflux.org> * Copyright (c) 2002-2006 by Judd Vinet <jvinet@zeroflux.org>
* Copyright (c) 2005 by Aurelien Foret <orelien@chez.com> * Copyright (c) 2005 by Aurelien Foret <orelien@chez.com>
* Copyright (c) 2006 by David Kimpe <dnaku@frugalware.org> * Copyright (c) 2006 by David Kimpe <dnaku@frugalware.org>
@ -67,6 +67,8 @@ struct pkg_operations {
alpm_filelist_t *(*get_files) (alpm_pkg_t *); alpm_filelist_t *(*get_files) (alpm_pkg_t *);
alpm_list_t *(*get_backup) (alpm_pkg_t *); alpm_list_t *(*get_backup) (alpm_pkg_t *);
alpm_list_t *(*get_xdata) (alpm_pkg_t *);
void *(*changelog_open) (alpm_pkg_t *); void *(*changelog_open) (alpm_pkg_t *);
size_t (*changelog_read) (void *, size_t, const alpm_pkg_t *, void *); size_t (*changelog_read) (void *, size_t, const alpm_pkg_t *, void *);
int (*changelog_close) (const alpm_pkg_t *, void *); int (*changelog_close) (const alpm_pkg_t *, void *);
@ -136,6 +138,8 @@ struct _alpm_pkg_t {
alpm_pkgreason_t reason; alpm_pkgreason_t reason;
int scriptlet; int scriptlet;
alpm_list_t *xdata;
/* Bitfield from alpm_dbinfrq_t */ /* Bitfield from alpm_dbinfrq_t */
int infolevel; int infolevel;
/* Bitfield from alpm_pkgvalidation_t */ /* Bitfield from alpm_pkgvalidation_t */
@ -158,4 +162,9 @@ alpm_pkg_t *_alpm_pkg_load_internal(alpm_handle_t *handle,
int _alpm_pkg_cmp(const void *p1, const void *p2); int _alpm_pkg_cmp(const void *p1, const void *p2);
int _alpm_pkg_compare_versions(alpm_pkg_t *local_pkg, alpm_pkg_t *pkg); int _alpm_pkg_compare_versions(alpm_pkg_t *local_pkg, alpm_pkg_t *pkg);
alpm_pkg_xdata_t *_alpm_pkg_parse_xdata(const char *string);
void _alpm_pkg_xdata_free(alpm_pkg_xdata_t *pd);
int _alpm_pkg_check_meta(alpm_pkg_t *pkg);
#endif /* ALPM_PACKAGE_H */ #endif /* ALPM_PACKAGE_H */

View file

@ -1,7 +1,7 @@
/* /*
* pkghash.c * pkghash.c
* *
* Copyright (c) 2011-2021 Pacman Development Team <pacman-dev@archlinux.org> * Copyright (c) 2011-2025 Pacman Development Team <pacman-dev@lists.archlinux.org>
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by

View file

@ -1,7 +1,7 @@
/* /*
* pkghash.h * pkghash.h
* *
* Copyright (c) 2011-2021 Pacman Development Team <pacman-dev@archlinux.org> * Copyright (c) 2011-2025 Pacman Development Team <pacman-dev@lists.archlinux.org>
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by

View file

@ -15,11 +15,11 @@ XGETTEXT_OPTIONS = \
# This is the copyright holder that gets inserted into the header of the # This is the copyright holder that gets inserted into the header of the
# $(DOMAIN).pot file. Set this to the copyright holder of the surrounding # $(DOMAIN).pot file. Set this to the copyright holder of the surrounding
# package. # package.
COPYRIGHT_HOLDER = Pacman Development Team <pacman-dev@archlinux.org> COPYRIGHT_HOLDER = Pacman Development Team <pacman-dev@lists.archlinux.org>
# This is the email address or URL to which the translators shall report # This is the email address or URL to which the translators shall report
# bugs in the untranslated strings. # bugs in the untranslated strings.
MSGID_BUGS_ADDRESS = http://bugs.archlinux.org/index.php?project=3 MSGID_BUGS_ADDRESS = https://gitlab.archlinux.org/pacman/pacman/-/issues
# This is the list of locale categories, beyond LC_MESSAGES, for which the # This is the list of locale categories, beyond LC_MESSAGES, for which the
# message catalogs shall be used. It is usually empty. # message catalogs shall be used. It is usually empty.

View file

@ -16,8 +16,8 @@
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Arch Linux Pacman package manager\n" "Project-Id-Version: Arch Linux Pacman package manager\n"
"Report-Msgid-Bugs-To: http://bugs.archlinux.org/index.php?project=3\n" "Report-Msgid-Bugs-To: https://gitlab.archlinux.org/pacman/pacman/-/issues\n"
"POT-Creation-Date: 2021-09-04 16:15+1000\n" "POT-Creation-Date: 2024-07-14 19:10+1000\n"
"PO-Revision-Date: 2021-05-20 02:25+0000\n" "PO-Revision-Date: 2021-05-20 02:25+0000\n"
"Last-Translator: Allan McRae <allan@archlinux.org>\n" "Last-Translator: Allan McRae <allan@archlinux.org>\n"
"Language-Team: Arabic (http://www.transifex.com/toofishes/archlinux-pacman/" "Language-Team: Arabic (http://www.transifex.com/toofishes/archlinux-pacman/"
@ -49,17 +49,17 @@ msgstr "سأُنزِل الحزمة %s (من %s إلى %s)\n"
msgid "cannot allocate disk archive object" msgid "cannot allocate disk archive object"
msgstr "" msgstr ""
#: lib/libalpm/add.c:143 lib/libalpm/util.c:384 #: lib/libalpm/add.c:143 lib/libalpm/util.c:408
#, c-format #, c-format
msgid "warning given when extracting %s (%s)\n" msgid "warning given when extracting %s (%s)\n"
msgstr "تحذير عند الاستخراج %s (%s)\n" msgstr "تحذير عند الاستخراج %s (%s)\n"
#: lib/libalpm/add.c:146 lib/libalpm/util.c:387 #: lib/libalpm/add.c:146 lib/libalpm/util.c:411
#, c-format #, c-format
msgid "could not extract %s (%s)\n" msgid "could not extract %s (%s)\n"
msgstr "تعذّر استخراج %s (%s)\n" msgstr "تعذّر استخراج %s (%s)\n"
#: lib/libalpm/add.c:159 lib/libalpm/dload.c:709 lib/libalpm/remove.c:534 #: lib/libalpm/add.c:159 lib/libalpm/dload.c:707 lib/libalpm/remove.c:550
#, c-format #, c-format
msgid "could not rename %s to %s (%s)\n" msgid "could not rename %s to %s (%s)\n"
msgstr "تعذر إعادة تسمية %s إلى %s (%s)\n" msgstr "تعذر إعادة تسمية %s إلى %s (%s)\n"
@ -102,18 +102,18 @@ msgstr "الاستخراج: عدم الكتابة فوق المجلد بالمل
msgid "unable to extract %s.pacnew: path too long" msgid "unable to extract %s.pacnew: path too long"
msgstr "" msgstr ""
#: lib/libalpm/add.c:510 lib/libalpm/util.c:335 lib/libalpm/util.c:600 #: lib/libalpm/add.c:510 lib/libalpm/util.c:354 lib/libalpm/util.c:624
#, c-format #, c-format
msgid "could not get current working directory\n" msgid "could not get current working directory\n"
msgstr "غير قادر على جلب مجلد العمل الحالي\n" msgstr "غير قادر على جلب مجلد العمل الحالي\n"
#: lib/libalpm/add.c:515 lib/libalpm/util.c:340 lib/libalpm/util.c:605 #: lib/libalpm/add.c:515 lib/libalpm/util.c:359 lib/libalpm/util.c:629
#: lib/libalpm/util.c:658 #: lib/libalpm/util.c:684
#, c-format #, c-format
msgid "could not change directory to %s (%s)\n" msgid "could not change directory to %s (%s)\n"
msgstr "غير قادر على تحويل المجلد إلى %s (%s)\n" msgstr "غير قادر على تحويل المجلد إلى %s (%s)\n"
#: lib/libalpm/add.c:571 lib/libalpm/util.c:405 lib/libalpm/util.c:774 #: lib/libalpm/add.c:571 lib/libalpm/util.c:429 lib/libalpm/util.c:808
#, c-format #, c-format
msgid "could not restore working directory (%s)\n" msgid "could not restore working directory (%s)\n"
msgstr "تعذر استعادة مجلد العمل (%s)\n" msgstr "تعذر استعادة مجلد العمل (%s)\n"
@ -138,101 +138,116 @@ msgstr "غير قادر على تحديث مدخل قاعدة البيانات %
msgid "could not add entry '%s' in cache\n" msgid "could not add entry '%s' in cache\n"
msgstr "غير قادر على إضافة المدخل '%s' إلى المخبئيات\n" msgstr "غير قادر على إضافة المدخل '%s' إلى المخبئيات\n"
#: lib/libalpm/be_local.c:266 #: lib/libalpm/be_local.c:271
#, c-format #, c-format
msgid "error while reading file %s: %s\n" msgid "error while reading file %s: %s\n"
msgstr "خطأ أثناء قراءة الملف %s: %s\n" msgstr "خطأ أثناء قراءة الملف %s: %s\n"
#: lib/libalpm/be_local.c:376 #: lib/libalpm/be_local.c:382
#, c-format #, c-format
msgid "removing invalid database: %s\n" msgid "removing invalid database: %s\n"
msgstr "تجري إزالة قاعدة البيانات الغير صالحة: %s\n" msgstr "تجري إزالة قاعدة البيانات الغير صالحة: %s\n"
#: lib/libalpm/be_local.c:427 lib/libalpm/be_local.c:909 #: lib/libalpm/be_local.c:433 lib/libalpm/be_local.c:947
#, c-format #, c-format
msgid "could not create directory %s: %s\n" msgid "could not create directory %s: %s\n"
msgstr "غير قادر على إنشاء الدليل %s : %s\n" msgstr "غير قادر على إنشاء الدليل %s : %s\n"
#: lib/libalpm/be_local.c:602 lib/libalpm/be_sync.c:322 #: lib/libalpm/be_local.c:608 lib/libalpm/be_sync.c:339
#, c-format #, c-format
msgid "invalid name for database entry '%s'\n" msgid "invalid name for database entry '%s'\n"
msgstr "مدخل قاعدة بيانات غير صالح '%s'\n" msgstr "مدخل قاعدة بيانات غير صالح '%s'\n"
#: lib/libalpm/be_local.c:610 #: lib/libalpm/be_local.c:616
#, c-format #, c-format
msgid "duplicated database entry '%s'\n" msgid "duplicated database entry '%s'\n"
msgstr "مدخل قاعدة بيانات مكرر '%s'\n" msgstr "مدخل قاعدة بيانات مكرر '%s'\n"
#: lib/libalpm/be_local.c:622 #: lib/libalpm/be_local.c:628
#, c-format #, c-format
msgid "corrupted database entry '%s'\n" msgid "corrupted database entry '%s'\n"
msgstr "مدخل قاعدة بيانات معطوب '%s'\n" msgstr "مدخل قاعدة بيانات معطوب '%s'\n"
#: lib/libalpm/be_local.c:722 lib/libalpm/be_local.c:818 #: lib/libalpm/be_local.c:663
#: lib/libalpm/be_local.c:958 lib/libalpm/be_local.c:1055 #, fuzzy, c-format
#: lib/libalpm/diskspace.c:131 lib/libalpm/dload.c:823 lib/libalpm/util.c:254 msgid "unknown install reason for package %s: %s\n"
#: lib/libalpm/util.c:270 msgstr "نوع التّحقق غير مألوف في الحزمة %s: %s\n"
#: lib/libalpm/be_local.c:743 lib/libalpm/be_local.c:856
#: lib/libalpm/be_local.c:996 lib/libalpm/be_local.c:1102
#: lib/libalpm/diskspace.c:135 lib/libalpm/dload.c:792 lib/libalpm/util.c:273
#: lib/libalpm/util.c:289
#, c-format #, c-format
msgid "could not open file %s: %s\n" msgid "could not open file %s: %s\n"
msgstr "غير قادر على فتح اللمف %s: %s\n" msgstr "غير قادر على فتح اللمف %s: %s\n"
#: lib/libalpm/be_local.c:738 lib/libalpm/be_sync.c:582 #: lib/libalpm/be_local.c:759 lib/libalpm/be_sync.c:612
#, c-format #, c-format
msgid "%s database is inconsistent: name mismatch on package %s\n" msgid "%s database is inconsistent: name mismatch on package %s\n"
msgstr "%s قاعدة البيانات غير متناسقة : اسم الحزمة غير مطابق %s\n" msgstr "%s قاعدة البيانات غير متناسقة : اسم الحزمة غير مطابق %s\n"
#: lib/libalpm/be_local.c:744 lib/libalpm/be_sync.c:588 #: lib/libalpm/be_local.c:765 lib/libalpm/be_sync.c:618
#, c-format #, c-format
msgid "%s database is inconsistent: version mismatch on package %s\n" msgid "%s database is inconsistent: version mismatch on package %s\n"
msgstr "%s قاعدة البيانات غير متناسقة : إصدار الحزمة غير مطابق %s\n" msgstr "%s قاعدة البيانات غير متناسقة : إصدار الحزمة غير مطابق %s\n"
#: lib/libalpm/be_local.c:785 #: lib/libalpm/be_local.c:806
#, c-format #, c-format
msgid "unknown validation type for package %s: %s\n" msgid "unknown validation type for package %s: %s\n"
msgstr "نوع التّحقق غير مألوف في الحزمة %s: %s\n" msgstr "نوع التّحقق غير مألوف في الحزمة %s: %s\n"
#: lib/libalpm/be_package.c:478 lib/libalpm/be_package.c:631 #: lib/libalpm/be_local.c:841
#: lib/libalpm/be_package.c:643 #, c-format
msgid "%s: unknown key '%s' in local database\n"
msgstr ""
#: lib/libalpm/be_package.c:255
#, c-format
msgid "%s: unknown key '%s' in package description\n"
msgstr ""
#: lib/libalpm/be_package.c:482 lib/libalpm/be_package.c:635
#: lib/libalpm/be_package.c:647
#, c-format #, c-format
msgid "error while reading package %s: %s\n" msgid "error while reading package %s: %s\n"
msgstr "خطأ أثناء قراءة الحزمة %s: %s\n" msgstr "خطأ أثناء قراءة الحزمة %s: %s\n"
#: lib/libalpm/be_package.c:491 lib/libalpm/be_package.c:514 #: lib/libalpm/be_package.c:495 lib/libalpm/be_package.c:518
#, c-format #, c-format
msgid "error while reading mtree of package %s: %s\n" msgid "error while reading mtree of package %s: %s\n"
msgstr "خطأ أثناء قراءة mtree في الحزمة %s: %s\n" msgstr "خطأ أثناء قراءة mtree في الحزمة %s: %s\n"
#: lib/libalpm/be_package.c:597 #: lib/libalpm/be_package.c:601
#, c-format #, c-format
msgid "could not parse package description file in %s\n" msgid "could not parse package description file in %s\n"
msgstr "تعذّر تحليل ملف وصف الحزمة في %s\n" msgstr "تعذّر تحليل ملف وصف الحزمة في %s\n"
#: lib/libalpm/be_package.c:602 #: lib/libalpm/be_package.c:606
#, c-format #, c-format
msgid "missing package name in %s\n" msgid "missing package name in %s\n"
msgstr "اسم الحزمة مفقود في %s\n" msgstr "اسم الحزمة مفقود في %s\n"
#: lib/libalpm/be_package.c:606 #: lib/libalpm/be_package.c:610
#, c-format #, c-format
msgid "missing package version in %s\n" msgid "missing package version in %s\n"
msgstr "إصدارة الحزمة مفقودة في %s\n" msgstr "إصدارة الحزمة مفقودة في %s\n"
#: lib/libalpm/be_package.c:610 #: lib/libalpm/be_package.c:614
#, c-format #, c-format
msgid "invalid package version in %s\n" msgid "invalid package version in %s\n"
msgstr "إصدارة الحزمة غير صالح في %s\n" msgstr "إصدارة الحزمة غير صالح في %s\n"
#: lib/libalpm/be_package.c:649 #: lib/libalpm/be_package.c:653
#, c-format #, c-format
msgid "missing package metadata in %s\n" msgid "missing package metadata in %s\n"
msgstr "معلومات الحزمة مفقودة في %s\n" msgstr "معلومات الحزمة مفقودة في %s\n"
#: lib/libalpm/be_package.c:741 #: lib/libalpm/be_package.c:745
#, c-format #, c-format
msgid "failed to read signature file: %s\n" msgid "failed to read signature file: %s\n"
msgstr "فشل في قراءة ملف التّوقيع: %s\n" msgstr "فشل في قراءة ملف التّوقيع: %s\n"
#: lib/libalpm/be_package.c:770 lib/libalpm/sync.c:953 #: lib/libalpm/be_package.c:768 lib/libalpm/sync.c:976
#, c-format #, c-format
msgid "required key missing from keyring\n" msgid "required key missing from keyring\n"
msgstr "مفتاح ضروري غير موجود في حلقة المفاتيح\n" msgstr "مفتاح ضروري غير موجود في حلقة المفاتيح\n"
@ -242,32 +257,37 @@ msgstr "مفتاح ضروري غير موجود في حلقة المفاتيح\n
msgid "removing invalid file: %s\n" msgid "removing invalid file: %s\n"
msgstr "يجري حذف ملف غير صالح: %s\n" msgstr "يجري حذف ملف غير صالح: %s\n"
#: lib/libalpm/be_sync.c:449 #: lib/libalpm/be_sync.c:471
#, c-format #, c-format
msgid "could not parse package description file '%s' from db '%s'\n" msgid "could not parse package description file '%s' from db '%s'\n"
msgstr "تعذّر تحليل ملف وصف الحزمة '%s' من قاعدة البيانات '%s'\n" msgstr "تعذّر تحليل ملف وصف الحزمة '%s' من قاعدة البيانات '%s'\n"
#: lib/libalpm/be_sync.c:456 #: lib/libalpm/be_sync.c:486
#, c-format #, c-format
msgid "could not read db '%s' (%s)\n" msgid "could not read db '%s' (%s)\n"
msgstr "" msgstr ""
#: lib/libalpm/be_sync.c:489 lib/libalpm/be_sync.c:494 #: lib/libalpm/be_sync.c:519 lib/libalpm/be_sync.c:524
#, c-format #, c-format
msgid "%s database is inconsistent: filename of package %s is illegal\n" msgid "%s database is inconsistent: filename of package %s is illegal\n"
msgstr "%s قاعدة البيانات غير متناسقة : اسم ملف الحزمة غير قانوني %s\n" msgstr "%s قاعدة البيانات غير متناسقة : اسم ملف الحزمة غير قانوني %s\n"
#: lib/libalpm/be_sync.c:499 #: lib/libalpm/be_sync.c:529
#, c-format #, c-format
msgid "%s database is inconsistent: filename of package %s is too long\n" msgid "%s database is inconsistent: filename of package %s is too long\n"
msgstr "%s قاعدة البيانات غير متناسقة : اسم ملف الحزمة طويل جدًا %s\n" msgstr "%s قاعدة البيانات غير متناسقة : اسم ملف الحزمة طويل جدًا %s\n"
#: lib/libalpm/be_sync.c:564 #: lib/libalpm/be_sync.c:594
#, c-format #, c-format
msgid "unknown database file: %s\n" msgid "unknown database file: %s\n"
msgstr "ملف قاعدة البيانات مجهول : %s\n" msgstr "ملف قاعدة البيانات مجهول : %s\n"
#: lib/libalpm/db.c:344 #: lib/libalpm/be_sync.c:712
#, c-format
msgid "%s: unknown key '%s' in sync database\n"
msgstr ""
#: lib/libalpm/db.c:413
#, c-format #, c-format
msgid "database path is undefined\n" msgid "database path is undefined\n"
msgstr "مسار قاعدة البيانات غير معروف\n" msgstr "مسار قاعدة البيانات غير معروف\n"
@ -307,103 +327,118 @@ msgstr "تعذّر الحصول على معلومات نظام الملفات م
msgid "could not open file: %s: %s\n" msgid "could not open file: %s: %s\n"
msgstr "تعذر فتح الملف: %s: %s\n" msgstr "تعذر فتح الملف: %s: %s\n"
#: lib/libalpm/diskspace.c:146 lib/libalpm/diskspace.c:159 #: lib/libalpm/diskspace.c:154 lib/libalpm/diskspace.c:167
#, c-format #, c-format
msgid "could not get filesystem information\n" msgid "could not get filesystem information\n"
msgstr "غير قادر على جلب معلومات نظام الملفات\n" msgstr "غير قادر على جلب معلومات نظام الملفات\n"
#: lib/libalpm/diskspace.c:242 #: lib/libalpm/diskspace.c:254
#, c-format #, c-format
msgid "could not get file information for %s\n" msgid "could not get file information for %s\n"
msgstr "" msgstr ""
#: lib/libalpm/diskspace.c:256 lib/libalpm/diskspace.c:315 #: lib/libalpm/diskspace.c:268 lib/libalpm/diskspace.c:327
#, c-format #, c-format
msgid "could not determine mount point for file %s\n" msgid "could not determine mount point for file %s\n"
msgstr "تعذّر تحديد نقطة الوصل من أجل الملف %s\n" msgstr "تعذّر تحديد نقطة الوصل من أجل الملف %s\n"
#: lib/libalpm/diskspace.c:354 #: lib/libalpm/diskspace.c:366
#, c-format #, c-format
msgid "Partition %s too full: %jd blocks needed, %ju blocks free\n" msgid "Partition %s too full: %jd blocks needed, %ju blocks free\n"
msgstr "" msgstr ""
#: lib/libalpm/diskspace.c:379 lib/libalpm/diskspace.c:433 #: lib/libalpm/diskspace.c:391 lib/libalpm/diskspace.c:445
#, c-format #, c-format
msgid "could not determine filesystem mount points\n" msgid "could not determine filesystem mount points\n"
msgstr "تعذّر تحديد نقاط وصل أنظمة الملفات\n" msgstr "تعذّر تحديد نقاط وصل أنظمة الملفات\n"
#: lib/libalpm/diskspace.c:385 #: lib/libalpm/diskspace.c:397
#, c-format #, c-format
msgid "could not determine cachedir mount point %s\n" msgid "could not determine cachedir mount point %s\n"
msgstr "تعذّر تحديد نقطة وصل مجلد المخبئيات %s\n" msgstr "تعذّر تحديد نقطة وصل مجلد المخبئيات %s\n"
#: lib/libalpm/diskspace.c:438 #: lib/libalpm/diskspace.c:450
#, c-format #, c-format
msgid "could not determine root mount point %s\n" msgid "could not determine root mount point %s\n"
msgstr "غير قادر على تحديد نقطة وصل الجذر %s\n" msgstr "غير قادر على تحديد نقطة وصل الجذر %s\n"
#: lib/libalpm/diskspace.c:486 #: lib/libalpm/diskspace.c:498
#, c-format #, c-format
msgid "Partition %s is mounted read only\n" msgid "Partition %s is mounted read only\n"
msgstr "القسم %s موصول بصفة القراءة فقط\n" msgstr "القسم %s موصول بصفة القراءة فقط\n"
#: lib/libalpm/dload.c:116 #: lib/libalpm/dload.c:107
#, c-format
msgid "failed to create temporary file for download\n"
msgstr "غير قادر على إنشاء ملف مؤقت للتحميل\n"
#: lib/libalpm/dload.c:198
#, c-format #, c-format
msgid "" msgid ""
"too many errors from %s, skipping for the remainder of this transaction\n" "too many errors from %s, skipping for the remainder of this transaction\n"
msgstr "" msgstr ""
#: lib/libalpm/dload.c:220 #: lib/libalpm/dload.c:215
#, c-format
msgid "fatal error from %s, skipping for the remainder of this transaction\n"
msgstr ""
#: lib/libalpm/dload.c:310
#, c-format #, c-format
msgid "disk" msgid "disk"
msgstr "القرص" msgstr "القرص"
#: lib/libalpm/dload.c:392 #: lib/libalpm/dload.c:532 lib/libalpm/dload.c:570 lib/libalpm/dload.c:583
#, c-format
msgid "failed to create temporary file for download\n"
msgstr "غير قادر على إنشاء ملف مؤقت للتحميل\n"
#: lib/libalpm/dload.c:509 lib/libalpm/dload.c:547 lib/libalpm/dload.c:561
#, c-format #, c-format
msgid "failed retrieving file '%s' from %s : %s\n" msgid "failed retrieving file '%s' from %s : %s\n"
msgstr "فشل في استقبال الملف '%s' من %s : %s\n" msgstr "فشل في استقبال الملف '%s' من %s : %s\n"
#: lib/libalpm/dload.c:539 #: lib/libalpm/dload.c:562
#, c-format #, c-format
msgid "failed retrieving file '%s' from %s : expected download size exceeded\n" msgid "failed retrieving file '%s' from %s : expected download size exceeded\n"
msgstr "فشل في استقبال الملف '%s' من %s : تم تجاوز حجم التحميل\n" msgstr "فشل في استقبال الملف '%s' من %s : تم تجاوز حجم التحميل\n"
#: lib/libalpm/dload.c:687 #: lib/libalpm/dload.c:685
#, c-format #, c-format
msgid "%s appears to be truncated: %jd/%jd bytes\n" msgid "%s appears to be truncated: %jd/%jd bytes\n"
msgstr "%s يبدو غير موثوقًا: %jd/%jd بايت\n" msgstr "%s يبدو غير موثوقًا: %jd/%jd بايت\n"
#: lib/libalpm/dload.c:787 #: lib/libalpm/dload.c:776
#, c-format #, c-format
msgid "url '%s' is invalid\n" msgid "url '%s' is invalid\n"
msgstr "العنوان '%s' غير صالح\n" msgstr "العنوان '%s' غير صالح\n"
#: lib/libalpm/dload.c:893 #: lib/libalpm/dload.c:864
#, c-format #, c-format
msgid "failed to setup a download payload for %s\n" msgid "failed to setup a download payload for %s\n"
msgstr "" msgstr ""
#: lib/libalpm/dload.c:905 #: lib/libalpm/dload.c:876
#, c-format #, c-format
msgid "curl returned error %d from transfer\n" msgid "curl returned error %d from transfer\n"
msgstr "" msgstr ""
#: lib/libalpm/dload.c:929 #: lib/libalpm/dload.c:900
#, c-format #, c-format
msgid "curl transfer error: %d\n" msgid "curl transfer error: %d\n"
msgstr "" msgstr ""
#: lib/libalpm/dload.c:1055 lib/libalpm/sync.c:840 #: lib/libalpm/dload.c:963
#, fuzzy, c-format
msgid "could not chdir to download directory %s\n"
msgstr "تعذّر التعديل على مجلد الجذر (%s)\n"
#: lib/libalpm/dload.c:968
#, c-format
msgid "switching to sandbox user '%s' failed!\n"
msgstr ""
#: lib/libalpm/dload.c:1361 lib/libalpm/sync.c:861
#, c-format #, c-format
msgid "failed to retrieve some files\n" msgid "failed to retrieve some files\n"
msgstr "تعذّر استقبال بعض الملفات\n" msgstr "تعذّر استقبال بعض الملفات\n"
#: lib/libalpm/dload.c:1078 #: lib/libalpm/dload.c:1384
#, c-format #, c-format
msgid "download completed successfully but no file in the cache\n" msgid "download completed successfully but no file in the cache\n"
msgstr "" msgstr ""
@ -678,12 +713,12 @@ msgstr ""
msgid "unexpected error" msgid "unexpected error"
msgstr "خطأ غير متوقع" msgstr "خطأ غير متوقع"
#: lib/libalpm/handle.c:142 #: lib/libalpm/handle.c:165
#, c-format #, c-format
msgid "lock file missing %s\n" msgid "lock file missing %s\n"
msgstr "الملف المغلق مفقود %s\n" msgstr "الملف المغلق مفقود %s\n"
#: lib/libalpm/handle.c:148 #: lib/libalpm/handle.c:171
#, c-format #, c-format
msgid "could not remove lock file %s\n" msgid "could not remove lock file %s\n"
msgstr "تعذّر إزالة ملف القفل %s\n" msgstr "تعذّر إزالة ملف القفل %s\n"
@ -765,7 +800,7 @@ msgstr "تعذّر فتح المجلد: %s: %s\n"
msgid "could not open file: %s%s: %s\n" msgid "could not open file: %s%s: %s\n"
msgstr "" msgstr ""
#: lib/libalpm/hook.c:595 lib/libalpm/util.c:260 #: lib/libalpm/hook.c:595 lib/libalpm/util.c:279
#, c-format #, c-format
msgid "could not stat file %s: %s\n" msgid "could not stat file %s: %s\n"
msgstr "تعذّر إحصاء الملف %s: %s\n" msgstr "تعذّر إحصاء الملف %s: %s\n"
@ -775,11 +810,43 @@ msgstr "تعذّر إحصاء الملف %s: %s\n"
msgid "could not read directory: %s: %s\n" msgid "could not read directory: %s: %s\n"
msgstr "" msgstr ""
#: lib/libalpm/package.c:598 #: lib/libalpm/package.c:614
#, c-format #, c-format
msgid "could not fully load metadata for package %s-%s\n" msgid "could not fully load metadata for package %s-%s\n"
msgstr "غير قادر على استيراد معلومات الميتا للحزمة %s-%s\n" msgstr "غير قادر على استيراد معلومات الميتا للحزمة %s-%s\n"
#: lib/libalpm/package.c:869
#, c-format
msgid "invalid package metadata (name or version missing)"
msgstr ""
#: lib/libalpm/package.c:874
#, c-format
msgid ""
"invalid metadata for package %s-%s (package name cannot start with '.' or "
"'-')\n"
msgstr ""
#: lib/libalpm/package.c:878
#, c-format
msgid ""
"invalid metadata for package %s-%s (package name contains invalid "
"characters)\n"
msgstr ""
#: lib/libalpm/package.c:885 lib/libalpm/package.c:889
#, c-format
msgid ""
"invalid metadata for package %s-%s (package version contains invalid "
"characters)\n"
msgstr ""
#: lib/libalpm/package.c:895
#, c-format
msgid ""
"invalid metadata for package %s-%s (package name and version too long)\n"
msgstr ""
#: lib/libalpm/remove.c:111 #: lib/libalpm/remove.c:111
#, c-format #, c-format
msgid "could not find %s in database -- skipping\n" msgid "could not find %s in database -- skipping\n"
@ -802,17 +869,17 @@ msgstr ""
msgid "could not backup %s due to PATH_MAX overflow\n" msgid "could not backup %s due to PATH_MAX overflow\n"
msgstr "" msgstr ""
#: lib/libalpm/remove.c:554 #: lib/libalpm/remove.c:570
#, c-format #, c-format
msgid "cannot remove %s (%s)\n" msgid "cannot remove %s (%s)\n"
msgstr "تعذّر إزالة %s (%s)\n" msgstr "تعذّر إزالة %s (%s)\n"
#: lib/libalpm/remove.c:727 #: lib/libalpm/remove.c:743
#, c-format #, c-format
msgid "could not remove database entry %s-%s\n" msgid "could not remove database entry %s-%s\n"
msgstr "تعذّر إزالة مدخل قاعدة البيانات %s-%s\n" msgstr "تعذّر إزالة مدخل قاعدة البيانات %s-%s\n"
#: lib/libalpm/remove.c:732 #: lib/libalpm/remove.c:748
#, c-format #, c-format
msgid "could not remove entry '%s' from cache\n" msgid "could not remove entry '%s' from cache\n"
msgstr "تعذر إزالة المدخل '%s' من المخبئيات\n" msgstr "تعذر إزالة المدخل '%s' من المخبئيات\n"
@ -822,89 +889,89 @@ msgstr "تعذر إزالة المدخل '%s' من المخبئيات\n"
msgid "Public keyring not found; have you run '%s'?\n" msgid "Public keyring not found; have you run '%s'?\n"
msgstr "" msgstr ""
#: lib/libalpm/signing.c:199 lib/libalpm/signing.c:767 #: lib/libalpm/signing.c:199 lib/libalpm/signing.c:773
#, c-format #, c-format
msgid "GPGME error: %s\n" msgid "GPGME error: %s\n"
msgstr "" msgstr ""
#: lib/libalpm/signing.c:274 #: lib/libalpm/signing.c:275
#, c-format #, c-format
msgid "looking up key %s using WKD\n" msgid "looking up key %s using WKD\n"
msgstr "" msgstr ""
#: lib/libalpm/signing.c:283 #: lib/libalpm/signing.c:289
#, c-format #, c-format
msgid "gpg error: %s\n" msgid "gpg error: %s\n"
msgstr "" msgstr ""
#: lib/libalpm/signing.c:430 lib/libalpm/signing.c:503 #: lib/libalpm/signing.c:440 lib/libalpm/signing.c:513
#, c-format #, c-format
msgid "keyring is not writable\n" msgid "keyring is not writable\n"
msgstr "" msgstr ""
#: lib/libalpm/signing.c:531 #: lib/libalpm/signing.c:537
#, c-format #, c-format
msgid "key \"%s\" on keyserver\n" msgid "key \"%s\" on keyserver\n"
msgstr "" msgstr ""
#: lib/libalpm/signing.c:536 #: lib/libalpm/signing.c:542
#, c-format #, c-format
msgid "key \"%s\" could not be imported\n" msgid "key \"%s\" could not be imported\n"
msgstr "" msgstr ""
#: lib/libalpm/signing.c:540 #: lib/libalpm/signing.c:546
#, c-format #, c-format
msgid "key \"%s\" could not be looked up remotely\n" msgid "key \"%s\" could not be looked up remotely\n"
msgstr "" msgstr ""
#: lib/libalpm/signing.c:926 lib/libalpm/sync.c:1022 #: lib/libalpm/signing.c:932 lib/libalpm/sync.c:1052
#, c-format #, c-format
msgid "%s: missing required signature\n" msgid "%s: missing required signature\n"
msgstr "التوقيع المطلوب مفقود :%s\n" msgstr "التوقيع المطلوب مفقود :%s\n"
#: lib/libalpm/signing.c:941 #: lib/libalpm/signing.c:947
#, c-format #, c-format
msgid "%s: signature from \"%s\" is marginal trust\n" msgid "%s: signature from \"%s\" is marginal trust\n"
msgstr "" msgstr ""
#: lib/libalpm/signing.c:949 #: lib/libalpm/signing.c:955
#, c-format #, c-format
msgid "%s: signature from \"%s\" is unknown trust\n" msgid "%s: signature from \"%s\" is unknown trust\n"
msgstr "" msgstr ""
#: lib/libalpm/signing.c:956 #: lib/libalpm/signing.c:962
#, c-format #, c-format
msgid "%s: signature from \"%s\" should never be trusted\n" msgid "%s: signature from \"%s\" should never be trusted\n"
msgstr "" msgstr ""
#: lib/libalpm/signing.c:968 #: lib/libalpm/signing.c:974
#, c-format #, c-format
msgid "%s: key \"%s\" is unknown\n" msgid "%s: key \"%s\" is unknown\n"
msgstr "" msgstr ""
#: lib/libalpm/signing.c:977 #: lib/libalpm/signing.c:983
#, c-format #, c-format
msgid "%s: key \"%s\" is disabled\n" msgid "%s: key \"%s\" is disabled\n"
msgstr "" msgstr ""
#: lib/libalpm/signing.c:981 #: lib/libalpm/signing.c:987
#, c-format #, c-format
msgid "%s: signature from \"%s\" is expired\n" msgid "%s: signature from \"%s\" is expired\n"
msgstr "" msgstr ""
#: lib/libalpm/signing.c:985 #: lib/libalpm/signing.c:991
#, c-format #, c-format
msgid "%s: signature from \"%s\" is invalid\n" msgid "%s: signature from \"%s\" is invalid\n"
msgstr "" msgstr ""
#: lib/libalpm/signing.c:1043 lib/libalpm/signing.c:1104 #: lib/libalpm/signing.c:1049 lib/libalpm/signing.c:1110
#: lib/libalpm/signing.c:1183 #: lib/libalpm/signing.c:1189
#, c-format #, c-format
msgid "%s: signature format error\n" msgid "%s: signature format error\n"
msgstr "" msgstr ""
#: lib/libalpm/signing.c:1136 lib/libalpm/signing.c:1169 #: lib/libalpm/signing.c:1142 lib/libalpm/signing.c:1175
#: lib/libalpm/signing.c:1177 #: lib/libalpm/signing.c:1183
#, c-format #, c-format
msgid "%s: unsupported signature format\n" msgid "%s: unsupported signature format\n"
msgstr "" msgstr ""
@ -939,119 +1006,124 @@ msgstr "يجري تجاهل استبدال الحزمة (%s-%s => %s-%s)\n"
msgid "cannot replace %s by %s\n" msgid "cannot replace %s by %s\n"
msgstr "تعذر استبدال %s بـ %s\n" msgstr "تعذر استبدال %s بـ %s\n"
#: lib/libalpm/sync.c:476 #: lib/libalpm/sync.c:477
#, c-format #, c-format
msgid "packages %s and %s have the same filename: %s\n" msgid "packages %s and %s have the same filename: %s\n"
msgstr "" msgstr ""
#: lib/libalpm/sync.c:542 lib/libalpm/sync.c:612 #: lib/libalpm/sync.c:546 lib/libalpm/sync.c:618
#, c-format #, c-format
msgid "unresolvable package conflicts detected\n" msgid "unresolvable package conflicts detected\n"
msgstr "حدثت تعارضات حزميّة تعذّر تحليلها\n" msgstr "حدثت تعارضات حزميّة تعذّر تحليلها\n"
#: lib/libalpm/sync.c:562 #: lib/libalpm/sync.c:566
#, c-format #, c-format
msgid "removing '%s' from target list because it conflicts with '%s'\n" msgid "removing '%s-%s' from target list because it conflicts with '%s-%s'\n"
msgstr " يجري حذف '%s' من قائمة الأهداف بسبب تعارضها مع '%s'\n" msgstr ""
#: lib/libalpm/sync.c:1036 #: lib/libalpm/sync.c:1020 lib/libalpm/sync.c:1187
#, c-format
msgid "%s: could not find package in cache\n"
msgstr ""
#: lib/libalpm/sync.c:1066
#, c-format #, c-format
msgid "failed to read file %s: %s\n" msgid "failed to read file %s: %s\n"
msgstr "" msgstr ""
#: lib/libalpm/sync.c:1223 #: lib/libalpm/sync.c:1324
#, c-format #, c-format
msgid "not enough free disk space\n" msgid "not enough free disk space\n"
msgstr "لا توجد مساحة خالية كافية على القرص\n" msgstr "لا توجد مساحة خالية كافية على القرص\n"
#: lib/libalpm/sync.c:1245 #: lib/libalpm/sync.c:1346
#, c-format #, c-format
msgid "could not commit removal transaction\n" msgid "could not commit removal transaction\n"
msgstr "تعذّر بدء مُبادلة الإزالة\n" msgstr "تعذّر بدء مُبادلة الإزالة\n"
#: lib/libalpm/sync.c:1253 #: lib/libalpm/sync.c:1354
#, c-format #, c-format
msgid "could not commit transaction\n" msgid "could not commit transaction\n"
msgstr "فشل في بدء المُبادلة\n" msgstr "فشل في بدء المُبادلة\n"
#: lib/libalpm/trans.c:365 #: lib/libalpm/trans.c:369
#, c-format #, c-format
msgid "could not create temp directory\n" msgid "could not create temp directory\n"
msgstr "تعذّر إنشاء مجلد مؤقت\n" msgstr "تعذّر إنشاء مجلد مؤقت\n"
#: lib/libalpm/trans.c:380 #: lib/libalpm/trans.c:384
#, c-format #, c-format
msgid "could not copy tempfile to %s (%s)\n" msgid "could not copy tempfile to %s (%s)\n"
msgstr "تعذّر نسخ الملف المؤقّت إلى %s (%s)\n" msgstr "تعذّر نسخ الملف المؤقّت إلى %s (%s)\n"
#: lib/libalpm/trans.c:411 #: lib/libalpm/trans.c:415
#, c-format #, c-format
msgid "could not remove %s\n" msgid "could not remove %s\n"
msgstr "" msgstr ""
"تعذر إزالة %s\n" "تعذر إزالة %s\n"
"\n" "\n"
#: lib/libalpm/trans.c:415 #: lib/libalpm/trans.c:419
#, c-format #, c-format
msgid "could not remove tmpdir %s\n" msgid "could not remove tmpdir %s\n"
msgstr "تعذّر إزالة المجلد المؤقّت %s\n" msgstr "تعذّر إزالة المجلد المؤقّت %s\n"
#: lib/libalpm/util.c:488 #: lib/libalpm/util.c:512
#, c-format #, c-format
msgid "unable to write to pipe (%s)\n" msgid "unable to write to pipe (%s)\n"
msgstr "تعذّرت الكتابة إلى الأنبوب (%s)\n" msgstr "تعذّرت الكتابة إلى الأنبوب (%s)\n"
#: lib/libalpm/util.c:547 #: lib/libalpm/util.c:571
#, c-format #, c-format
msgid "unable to read from pipe (%s)\n" msgid "unable to read from pipe (%s)\n"
msgstr "تعذّرت القراءة من الأنبوب (%s)\n" msgstr "تعذّرت القراءة من الأنبوب (%s)\n"
#: lib/libalpm/util.c:617 lib/libalpm/util.c:623 #: lib/libalpm/util.c:641 lib/libalpm/util.c:647
#, c-format #, c-format
msgid "could not create pipe (%s)\n" msgid "could not create pipe (%s)\n"
msgstr "غير قادر على إنشاء العبارة (%s)\n" msgstr "غير قادر على إنشاء العبارة (%s)\n"
#: lib/libalpm/util.c:631 #: lib/libalpm/util.c:655
#, c-format #, c-format
msgid "could not fork a new process (%s)\n" msgid "could not fork a new process (%s)\n"
msgstr "تعذّر تفريع العملية إلى عملية جديدة (%s)\n" msgstr "تعذّر تفريع العملية إلى عملية جديدة (%s)\n"
#: lib/libalpm/util.c:654 #: lib/libalpm/util.c:680
#, c-format #, c-format
msgid "could not change the root directory (%s)\n" msgid "could not change the root directory (%s)\n"
msgstr "تعذّر التعديل على مجلد الجذر (%s)\n" msgstr "تعذّر التعديل على مجلد الجذر (%s)\n"
#: lib/libalpm/util.c:666 #: lib/libalpm/util.c:700
#, c-format #, c-format
msgid "call to execv failed (%s)\n" msgid "call to execv failed (%s)\n"
msgstr "تعذّر مخاطبة execv (%s)\n" msgstr "تعذّر مخاطبة execv (%s)\n"
#: lib/libalpm/util.c:745 #: lib/libalpm/util.c:779
#, c-format #, c-format
msgid "call to waitpid failed (%s)\n" msgid "call to waitpid failed (%s)\n"
msgstr "تعذّر مخاطبةwaitpid (%s)\n" msgstr "تعذّر مخاطبةwaitpid (%s)\n"
#: lib/libalpm/util.c:755 #: lib/libalpm/util.c:789
#, c-format #, c-format
msgid "command failed to execute correctly\n" msgid "command failed to execute correctly\n"
msgstr "فشل تطبيق الأمر بشكل صحيح\n" msgstr "فشل تطبيق الأمر بشكل صحيح\n"
#: lib/libalpm/util.c:762 #: lib/libalpm/util.c:796
#, c-format #, c-format
msgid "Unknown signal" msgid "Unknown signal"
msgstr "إشارة مجهوله" msgstr "إشارة مجهوله"
#: lib/libalpm/util.c:764 #: lib/libalpm/util.c:798
#, c-format #, c-format
msgid "command terminated by signal %d: %s\n" msgid "command terminated by signal %d: %s\n"
msgstr "تم انهاء الامر بواسطة الاشارة %d: %s\n" msgstr "تم انهاء الامر بواسطة الاشارة %d: %s\n"
#: lib/libalpm/util.c:875 #: lib/libalpm/util.c:916
#, c-format #, c-format
msgid "no %s cache exists, creating...\n" msgid "no %s cache exists, creating...\n"
msgstr "لا يوجد %s مخبئي، يجري الإنشاء...\n" msgstr "لا يوجد %s مخبئي، يجري الإنشاء...\n"
#: lib/libalpm/util.c:906 #: lib/libalpm/util.c:947
#, c-format #, c-format
msgid "couldn't find or create package cache, using %s instead\n" msgid "couldn't find or create package cache, using %s instead\n"
msgstr "تعذّر إيجاد أو إنشاء مخبئية للحزم ، استخدم %s بدلًا عنها\n" msgstr "تعذّر إيجاد أو إنشاء مخبئية للحزم ، استخدم %s بدلًا عنها\n"

View file

@ -11,11 +11,11 @@
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Arch Linux Pacman package manager\n" "Project-Id-Version: Arch Linux Pacman package manager\n"
"Report-Msgid-Bugs-To: http://bugs.archlinux.org/index.php?project=3\n" "Report-Msgid-Bugs-To: https://gitlab.archlinux.org/pacman/pacman/-/issues\n"
"POT-Creation-Date: 2021-09-04 16:15+1000\n" "POT-Creation-Date: 2024-07-14 19:10+1000\n"
"PO-Revision-Date: 2021-05-20 02:25+0000\n" "PO-Revision-Date: 2010-11-29 23:17+0000\n"
"Last-Translator: Allan McRae <allan@archlinux.org>\n" "Last-Translator: Ḷḷumex03, 2014\n"
"Language-Team: Asturian (http://www.transifex.com/toofishes/archlinux-pacman/" "Language-Team: Asturian (http://app.transifex.com/toofishes/archlinux-pacman/"
"language/ast/)\n" "language/ast/)\n"
"Language: ast\n" "Language: ast\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
@ -43,17 +43,17 @@ msgstr "baxando de versión el paquete %s (%s => %s)\n"
msgid "cannot allocate disk archive object" msgid "cannot allocate disk archive object"
msgstr "nun pue allugase l'oxetu del archivu del discu" msgstr "nun pue allugase l'oxetu del archivu del discu"
#: lib/libalpm/add.c:143 lib/libalpm/util.c:384 #: lib/libalpm/add.c:143 lib/libalpm/util.c:408
#, c-format #, c-format
msgid "warning given when extracting %s (%s)\n" msgid "warning given when extracting %s (%s)\n"
msgstr "alvertencia dada al estrayer el paquete %s (%s)\n" msgstr "alvertencia dada al estrayer el paquete %s (%s)\n"
#: lib/libalpm/add.c:146 lib/libalpm/util.c:387 #: lib/libalpm/add.c:146 lib/libalpm/util.c:411
#, c-format #, c-format
msgid "could not extract %s (%s)\n" msgid "could not extract %s (%s)\n"
msgstr "nun pudo estrayese %s (%s)\n" msgstr "nun pudo estrayese %s (%s)\n"
#: lib/libalpm/add.c:159 lib/libalpm/dload.c:709 lib/libalpm/remove.c:534 #: lib/libalpm/add.c:159 lib/libalpm/dload.c:707 lib/libalpm/remove.c:550
#, c-format #, c-format
msgid "could not rename %s to %s (%s)\n" msgid "could not rename %s to %s (%s)\n"
msgstr "nun pudo renomase %s a %s (%s)\n" msgstr "nun pudo renomase %s a %s (%s)\n"
@ -98,18 +98,18 @@ msgstr "estración: nun pue sobrescribise'l direutoriu col ficheru %s\n"
msgid "unable to extract %s.pacnew: path too long" msgid "unable to extract %s.pacnew: path too long"
msgstr "nun pue estrayese %s.pacnew: camín perllargu" msgstr "nun pue estrayese %s.pacnew: camín perllargu"
#: lib/libalpm/add.c:510 lib/libalpm/util.c:335 lib/libalpm/util.c:600 #: lib/libalpm/add.c:510 lib/libalpm/util.c:354 lib/libalpm/util.c:624
#, c-format #, c-format
msgid "could not get current working directory\n" msgid "could not get current working directory\n"
msgstr "nun pudo consiguise'l direutoriu de trabayu actual\n" msgstr "nun pudo consiguise'l direutoriu de trabayu actual\n"
#: lib/libalpm/add.c:515 lib/libalpm/util.c:340 lib/libalpm/util.c:605 #: lib/libalpm/add.c:515 lib/libalpm/util.c:359 lib/libalpm/util.c:629
#: lib/libalpm/util.c:658 #: lib/libalpm/util.c:684
#, c-format #, c-format
msgid "could not change directory to %s (%s)\n" msgid "could not change directory to %s (%s)\n"
msgstr "nun pudo cambiase'l direutoriu a %s (%s)\n" msgstr "nun pudo cambiase'l direutoriu a %s (%s)\n"
#: lib/libalpm/add.c:571 lib/libalpm/util.c:405 lib/libalpm/util.c:774 #: lib/libalpm/add.c:571 lib/libalpm/util.c:429 lib/libalpm/util.c:808
#, c-format #, c-format
msgid "could not restore working directory (%s)\n" msgid "could not restore working directory (%s)\n"
msgstr "nun pudo restaurase'l direutoriu de trabayu (%s)\n" msgstr "nun pudo restaurase'l direutoriu de trabayu (%s)\n"
@ -134,103 +134,118 @@ msgstr "nun pudo anovase la entrada de base de datos %s-%s\n"
msgid "could not add entry '%s' in cache\n" msgid "could not add entry '%s' in cache\n"
msgstr "nun pudo amestase la entrada '%s' na caché\n" msgstr "nun pudo amestase la entrada '%s' na caché\n"
#: lib/libalpm/be_local.c:266 #: lib/libalpm/be_local.c:271
#, c-format #, c-format
msgid "error while reading file %s: %s\n" msgid "error while reading file %s: %s\n"
msgstr "fallu al lleer el ficheru %s: %s\n" msgstr "fallu al lleer el ficheru %s: %s\n"
#: lib/libalpm/be_local.c:376 #: lib/libalpm/be_local.c:382
#, c-format #, c-format
msgid "removing invalid database: %s\n" msgid "removing invalid database: %s\n"
msgstr "desaniciando base de datos non válida: %s\n" msgstr "desaniciando base de datos non válida: %s\n"
#: lib/libalpm/be_local.c:427 lib/libalpm/be_local.c:909 #: lib/libalpm/be_local.c:433 lib/libalpm/be_local.c:947
#, c-format #, c-format
msgid "could not create directory %s: %s\n" msgid "could not create directory %s: %s\n"
msgstr "nun pudo crease'l direutoriu %s: %s\n" msgstr "nun pudo crease'l direutoriu %s: %s\n"
#: lib/libalpm/be_local.c:602 lib/libalpm/be_sync.c:322 #: lib/libalpm/be_local.c:608 lib/libalpm/be_sync.c:339
#, c-format #, c-format
msgid "invalid name for database entry '%s'\n" msgid "invalid name for database entry '%s'\n"
msgstr "nome non válidu pa la base de datos '%s'\n" msgstr "nome non válidu pa la base de datos '%s'\n"
#: lib/libalpm/be_local.c:610 #: lib/libalpm/be_local.c:616
#, c-format #, c-format
msgid "duplicated database entry '%s'\n" msgid "duplicated database entry '%s'\n"
msgstr "entrada de base de datos duplicada '%s'\n" msgstr "entrada de base de datos duplicada '%s'\n"
#: lib/libalpm/be_local.c:622 #: lib/libalpm/be_local.c:628
#, c-format #, c-format
msgid "corrupted database entry '%s'\n" msgid "corrupted database entry '%s'\n"
msgstr "entrada de base de datos toyida '%s'\n" msgstr "entrada de base de datos toyida '%s'\n"
#: lib/libalpm/be_local.c:722 lib/libalpm/be_local.c:818 #: lib/libalpm/be_local.c:663
#: lib/libalpm/be_local.c:958 lib/libalpm/be_local.c:1055 #, fuzzy, c-format
#: lib/libalpm/diskspace.c:131 lib/libalpm/dload.c:823 lib/libalpm/util.c:254 msgid "unknown install reason for package %s: %s\n"
#: lib/libalpm/util.c:270 msgstr "triba de validación desconocida pal paquete %s: %s\n"
#: lib/libalpm/be_local.c:743 lib/libalpm/be_local.c:856
#: lib/libalpm/be_local.c:996 lib/libalpm/be_local.c:1102
#: lib/libalpm/diskspace.c:135 lib/libalpm/dload.c:792 lib/libalpm/util.c:273
#: lib/libalpm/util.c:289
#, c-format #, c-format
msgid "could not open file %s: %s\n" msgid "could not open file %s: %s\n"
msgstr "nun pudo abrise'l ficheru %s: %s\n" msgstr "nun pudo abrise'l ficheru %s: %s\n"
#: lib/libalpm/be_local.c:738 lib/libalpm/be_sync.c:582 #: lib/libalpm/be_local.c:759 lib/libalpm/be_sync.c:612
#, c-format #, c-format
msgid "%s database is inconsistent: name mismatch on package %s\n" msgid "%s database is inconsistent: name mismatch on package %s\n"
msgstr "" msgstr ""
"la base de datos %s ye inconsistente: el nome nun concasa nel paquete %s\n" "la base de datos %s ye inconsistente: el nome nun concasa nel paquete %s\n"
#: lib/libalpm/be_local.c:744 lib/libalpm/be_sync.c:588 #: lib/libalpm/be_local.c:765 lib/libalpm/be_sync.c:618
#, c-format #, c-format
msgid "%s database is inconsistent: version mismatch on package %s\n" msgid "%s database is inconsistent: version mismatch on package %s\n"
msgstr "" msgstr ""
"la base de datos %s ye inconsistente: la versión nun concasa nel paquete %s\n" "la base de datos %s ye inconsistente: la versión nun concasa nel paquete %s\n"
#: lib/libalpm/be_local.c:785 #: lib/libalpm/be_local.c:806
#, c-format #, c-format
msgid "unknown validation type for package %s: %s\n" msgid "unknown validation type for package %s: %s\n"
msgstr "triba de validación desconocida pal paquete %s: %s\n" msgstr "triba de validación desconocida pal paquete %s: %s\n"
#: lib/libalpm/be_package.c:478 lib/libalpm/be_package.c:631 #: lib/libalpm/be_local.c:841
#: lib/libalpm/be_package.c:643 #, c-format
msgid "%s: unknown key '%s' in local database\n"
msgstr ""
#: lib/libalpm/be_package.c:255
#, c-format
msgid "%s: unknown key '%s' in package description\n"
msgstr ""
#: lib/libalpm/be_package.c:482 lib/libalpm/be_package.c:635
#: lib/libalpm/be_package.c:647
#, c-format #, c-format
msgid "error while reading package %s: %s\n" msgid "error while reading package %s: %s\n"
msgstr "fallu al lleer el paquete %s: %s\n" msgstr "fallu al lleer el paquete %s: %s\n"
#: lib/libalpm/be_package.c:491 lib/libalpm/be_package.c:514 #: lib/libalpm/be_package.c:495 lib/libalpm/be_package.c:518
#, c-format #, c-format
msgid "error while reading mtree of package %s: %s\n" msgid "error while reading mtree of package %s: %s\n"
msgstr "fallu al lleer el mtree del paquete %s: %s\n" msgstr "fallu al lleer el mtree del paquete %s: %s\n"
#: lib/libalpm/be_package.c:597 #: lib/libalpm/be_package.c:601
#, c-format #, c-format
msgid "could not parse package description file in %s\n" msgid "could not parse package description file in %s\n"
msgstr "nun pudo analizase'l ficheru de descripción del paquete en %s\n" msgstr "nun pudo analizase'l ficheru de descripción del paquete en %s\n"
#: lib/libalpm/be_package.c:602 #: lib/libalpm/be_package.c:606
#, c-format #, c-format
msgid "missing package name in %s\n" msgid "missing package name in %s\n"
msgstr "nome de paquete faltante en %s\n" msgstr "nome de paquete faltante en %s\n"
#: lib/libalpm/be_package.c:606 #: lib/libalpm/be_package.c:610
#, c-format #, c-format
msgid "missing package version in %s\n" msgid "missing package version in %s\n"
msgstr "versión de paquete faltante en %s\n" msgstr "versión de paquete faltante en %s\n"
#: lib/libalpm/be_package.c:610 #: lib/libalpm/be_package.c:614
#, c-format #, c-format
msgid "invalid package version in %s\n" msgid "invalid package version in %s\n"
msgstr "versión del paquete non válida en %s\n" msgstr "versión del paquete non válida en %s\n"
#: lib/libalpm/be_package.c:649 #: lib/libalpm/be_package.c:653
#, c-format #, c-format
msgid "missing package metadata in %s\n" msgid "missing package metadata in %s\n"
msgstr "datos meta de paquete faltantes en %s\n" msgstr "datos meta de paquete faltantes en %s\n"
#: lib/libalpm/be_package.c:741 #: lib/libalpm/be_package.c:745
#, c-format #, c-format
msgid "failed to read signature file: %s\n" msgid "failed to read signature file: %s\n"
msgstr "fallu al lleer el ficheru de robla: %s\n" msgstr "fallu al lleer el ficheru de robla: %s\n"
#: lib/libalpm/be_package.c:770 lib/libalpm/sync.c:953 #: lib/libalpm/be_package.c:768 lib/libalpm/sync.c:976
#, c-format #, c-format
msgid "required key missing from keyring\n" msgid "required key missing from keyring\n"
msgstr "clave riquida del aniellu claves faltante\n" msgstr "clave riquida del aniellu claves faltante\n"
@ -240,36 +255,41 @@ msgstr "clave riquida del aniellu claves faltante\n"
msgid "removing invalid file: %s\n" msgid "removing invalid file: %s\n"
msgstr "desaniciando ficheru non válidu: %s\n" msgstr "desaniciando ficheru non válidu: %s\n"
#: lib/libalpm/be_sync.c:449 #: lib/libalpm/be_sync.c:471
#, c-format #, c-format
msgid "could not parse package description file '%s' from db '%s'\n" msgid "could not parse package description file '%s' from db '%s'\n"
msgstr "" msgstr ""
"nun pudo analizase'l ficheru de descripción del paquete '%s' de la base de " "nun pudo analizase'l ficheru de descripción del paquete '%s' de la base de "
"datos '%s'\n" "datos '%s'\n"
#: lib/libalpm/be_sync.c:456 #: lib/libalpm/be_sync.c:486
#, c-format #, c-format
msgid "could not read db '%s' (%s)\n" msgid "could not read db '%s' (%s)\n"
msgstr "" msgstr ""
#: lib/libalpm/be_sync.c:489 lib/libalpm/be_sync.c:494 #: lib/libalpm/be_sync.c:519 lib/libalpm/be_sync.c:524
#, c-format #, c-format
msgid "%s database is inconsistent: filename of package %s is illegal\n" msgid "%s database is inconsistent: filename of package %s is illegal\n"
msgstr "" msgstr ""
"la base de datos %s ye inconsistente: el nome del paquete %s ye illegal\n" "la base de datos %s ye inconsistente: el nome del paquete %s ye illegal\n"
#: lib/libalpm/be_sync.c:499 #: lib/libalpm/be_sync.c:529
#, c-format #, c-format
msgid "%s database is inconsistent: filename of package %s is too long\n" msgid "%s database is inconsistent: filename of package %s is too long\n"
msgstr "" msgstr ""
"la base de datos %s ye inconsistente: el nome del paquete %s ye perllargu\n" "la base de datos %s ye inconsistente: el nome del paquete %s ye perllargu\n"
#: lib/libalpm/be_sync.c:564 #: lib/libalpm/be_sync.c:594
#, c-format #, c-format
msgid "unknown database file: %s\n" msgid "unknown database file: %s\n"
msgstr "ficheru de base de datos desconocíu: %s\n" msgstr "ficheru de base de datos desconocíu: %s\n"
#: lib/libalpm/db.c:344 #: lib/libalpm/be_sync.c:712
#, c-format
msgid "%s: unknown key '%s' in sync database\n"
msgstr ""
#: lib/libalpm/db.c:413
#, c-format #, c-format
msgid "database path is undefined\n" msgid "database path is undefined\n"
msgstr "nun ta definíu'l camín de la base de datos\n" msgstr "nun ta definíu'l camín de la base de datos\n"
@ -309,103 +329,118 @@ msgstr "nun pudo consiguise la información del sistema ficheros pa %s: %s\n"
msgid "could not open file: %s: %s\n" msgid "could not open file: %s: %s\n"
msgstr "nun pudo abrise'l ficheru: %s: %s\n" msgstr "nun pudo abrise'l ficheru: %s: %s\n"
#: lib/libalpm/diskspace.c:146 lib/libalpm/diskspace.c:159 #: lib/libalpm/diskspace.c:154 lib/libalpm/diskspace.c:167
#, c-format #, c-format
msgid "could not get filesystem information\n" msgid "could not get filesystem information\n"
msgstr "nun pudo consiguise la información del sistema de ficheros\n" msgstr "nun pudo consiguise la información del sistema de ficheros\n"
#: lib/libalpm/diskspace.c:242 #: lib/libalpm/diskspace.c:254
#, c-format #, c-format
msgid "could not get file information for %s\n" msgid "could not get file information for %s\n"
msgstr "nun pudo consiguise la información pa %s\n" msgstr "nun pudo consiguise la información pa %s\n"
#: lib/libalpm/diskspace.c:256 lib/libalpm/diskspace.c:315 #: lib/libalpm/diskspace.c:268 lib/libalpm/diskspace.c:327
#, c-format #, c-format
msgid "could not determine mount point for file %s\n" msgid "could not determine mount point for file %s\n"
msgstr "nun pudo determinase'l puntu montaxe pal ficheru %s\n" msgstr "nun pudo determinase'l puntu montaxe pal ficheru %s\n"
#: lib/libalpm/diskspace.c:354 #: lib/libalpm/diskspace.c:366
#, c-format #, c-format
msgid "Partition %s too full: %jd blocks needed, %ju blocks free\n" msgid "Partition %s too full: %jd blocks needed, %ju blocks free\n"
msgstr "La partición %s ta enllena: necesítense %jd, %ju bloques llibres\n" msgstr "La partición %s ta enllena: necesítense %jd, %ju bloques llibres\n"
#: lib/libalpm/diskspace.c:379 lib/libalpm/diskspace.c:433 #: lib/libalpm/diskspace.c:391 lib/libalpm/diskspace.c:445
#, c-format #, c-format
msgid "could not determine filesystem mount points\n" msgid "could not determine filesystem mount points\n"
msgstr "nun pudieron determinase los puntos de montaxe del sistema ficheros\n" msgstr "nun pudieron determinase los puntos de montaxe del sistema ficheros\n"
#: lib/libalpm/diskspace.c:385 #: lib/libalpm/diskspace.c:397
#, c-format #, c-format
msgid "could not determine cachedir mount point %s\n" msgid "could not determine cachedir mount point %s\n"
msgstr "nun pudo determinase'l puntu del direutoriu caché %s\n" msgstr "nun pudo determinase'l puntu del direutoriu caché %s\n"
#: lib/libalpm/diskspace.c:438 #: lib/libalpm/diskspace.c:450
#, c-format #, c-format
msgid "could not determine root mount point %s\n" msgid "could not determine root mount point %s\n"
msgstr "nun pudo determinase'l puntu de montaxe root %s\n" msgstr "nun pudo determinase'l puntu de montaxe root %s\n"
#: lib/libalpm/diskspace.c:486 #: lib/libalpm/diskspace.c:498
#, c-format #, c-format
msgid "Partition %s is mounted read only\n" msgid "Partition %s is mounted read only\n"
msgstr "La partición %s ta montada como namái llectura\n" msgstr "La partición %s ta montada como namái llectura\n"
#: lib/libalpm/dload.c:116 #: lib/libalpm/dload.c:107
#, c-format
msgid "failed to create temporary file for download\n"
msgstr "fallu al crear el ficheru temporal pa la descarga\n"
#: lib/libalpm/dload.c:198
#, c-format #, c-format
msgid "" msgid ""
"too many errors from %s, skipping for the remainder of this transaction\n" "too many errors from %s, skipping for the remainder of this transaction\n"
msgstr "" msgstr ""
#: lib/libalpm/dload.c:220 #: lib/libalpm/dload.c:215
#, c-format
msgid "fatal error from %s, skipping for the remainder of this transaction\n"
msgstr ""
#: lib/libalpm/dload.c:310
#, c-format #, c-format
msgid "disk" msgid "disk"
msgstr "discu" msgstr "discu"
#: lib/libalpm/dload.c:392 #: lib/libalpm/dload.c:532 lib/libalpm/dload.c:570 lib/libalpm/dload.c:583
#, c-format
msgid "failed to create temporary file for download\n"
msgstr "fallu al crear el ficheru temporal pa la descarga\n"
#: lib/libalpm/dload.c:509 lib/libalpm/dload.c:547 lib/libalpm/dload.c:561
#, c-format #, c-format
msgid "failed retrieving file '%s' from %s : %s\n" msgid "failed retrieving file '%s' from %s : %s\n"
msgstr "fallu recibiendo'l ficheru '%s' de %s: %s\n" msgstr "fallu recibiendo'l ficheru '%s' de %s: %s\n"
#: lib/libalpm/dload.c:539 #: lib/libalpm/dload.c:562
#, c-format #, c-format
msgid "failed retrieving file '%s' from %s : expected download size exceeded\n" msgid "failed retrieving file '%s' from %s : expected download size exceeded\n"
msgstr "fallu recibiendo'l ficheru '%s' de %s: tamañu de descarga superáu\n" msgstr "fallu recibiendo'l ficheru '%s' de %s: tamañu de descarga superáu\n"
#: lib/libalpm/dload.c:687 #: lib/libalpm/dload.c:685
#, c-format #, c-format
msgid "%s appears to be truncated: %jd/%jd bytes\n" msgid "%s appears to be truncated: %jd/%jd bytes\n"
msgstr "" msgstr ""
#: lib/libalpm/dload.c:787 #: lib/libalpm/dload.c:776
#, c-format #, c-format
msgid "url '%s' is invalid\n" msgid "url '%s' is invalid\n"
msgstr "l'enllaz '%s' ye inválidu\n" msgstr "l'enllaz '%s' ye inválidu\n"
#: lib/libalpm/dload.c:893 #: lib/libalpm/dload.c:864
#, c-format #, c-format
msgid "failed to setup a download payload for %s\n" msgid "failed to setup a download payload for %s\n"
msgstr "" msgstr ""
#: lib/libalpm/dload.c:905 #: lib/libalpm/dload.c:876
#, c-format #, c-format
msgid "curl returned error %d from transfer\n" msgid "curl returned error %d from transfer\n"
msgstr "" msgstr ""
#: lib/libalpm/dload.c:929 #: lib/libalpm/dload.c:900
#, c-format #, c-format
msgid "curl transfer error: %d\n" msgid "curl transfer error: %d\n"
msgstr "" msgstr ""
#: lib/libalpm/dload.c:1055 lib/libalpm/sync.c:840 #: lib/libalpm/dload.c:963
#, fuzzy, c-format
msgid "could not chdir to download directory %s\n"
msgstr "nun pudo cambiase'l direutoriu root (%s)\n"
#: lib/libalpm/dload.c:968
#, c-format
msgid "switching to sandbox user '%s' failed!\n"
msgstr ""
#: lib/libalpm/dload.c:1361 lib/libalpm/sync.c:861
#, c-format #, c-format
msgid "failed to retrieve some files\n" msgid "failed to retrieve some files\n"
msgstr "fallu al recuperar dellos ficheros\n" msgstr "fallu al recuperar dellos ficheros\n"
#: lib/libalpm/dload.c:1078 #: lib/libalpm/dload.c:1384
#, c-format #, c-format
msgid "download completed successfully but no file in the cache\n" msgid "download completed successfully but no file in the cache\n"
msgstr "" msgstr ""
@ -680,12 +715,12 @@ msgstr ""
msgid "unexpected error" msgid "unexpected error"
msgstr "fallu inesperáu" msgstr "fallu inesperáu"
#: lib/libalpm/handle.c:142 #: lib/libalpm/handle.c:165
#, c-format #, c-format
msgid "lock file missing %s\n" msgid "lock file missing %s\n"
msgstr "falta'l ficheru de bloquéu %s\n" msgstr "falta'l ficheru de bloquéu %s\n"
#: lib/libalpm/handle.c:148 #: lib/libalpm/handle.c:171
#, c-format #, c-format
msgid "could not remove lock file %s\n" msgid "could not remove lock file %s\n"
msgstr "nun pudo desaniciase'l ficheru de bloquéu %s\n" msgstr "nun pudo desaniciase'l ficheru de bloquéu %s\n"
@ -767,7 +802,7 @@ msgstr "nun pudo abrise'l direutoriu: %s: %s\n"
msgid "could not open file: %s%s: %s\n" msgid "could not open file: %s%s: %s\n"
msgstr "nun pudo abrise'l ficheru: %s%s: %s\n" msgstr "nun pudo abrise'l ficheru: %s%s: %s\n"
#: lib/libalpm/hook.c:595 lib/libalpm/util.c:260 #: lib/libalpm/hook.c:595 lib/libalpm/util.c:279
#, c-format #, c-format
msgid "could not stat file %s: %s\n" msgid "could not stat file %s: %s\n"
msgstr "" msgstr ""
@ -777,11 +812,43 @@ msgstr ""
msgid "could not read directory: %s: %s\n" msgid "could not read directory: %s: %s\n"
msgstr "nun pudo lleese'l ficheru: %s: %s\n" msgstr "nun pudo lleese'l ficheru: %s: %s\n"
#: lib/libalpm/package.c:598 #: lib/libalpm/package.c:614
#, c-format #, c-format
msgid "could not fully load metadata for package %s-%s\n" msgid "could not fully load metadata for package %s-%s\n"
msgstr "nun pudieron cargase dafechu los datos meta pal paquete %s-%s\n" msgstr "nun pudieron cargase dafechu los datos meta pal paquete %s-%s\n"
#: lib/libalpm/package.c:869
#, c-format
msgid "invalid package metadata (name or version missing)"
msgstr ""
#: lib/libalpm/package.c:874
#, c-format
msgid ""
"invalid metadata for package %s-%s (package name cannot start with '.' or "
"'-')\n"
msgstr ""
#: lib/libalpm/package.c:878
#, c-format
msgid ""
"invalid metadata for package %s-%s (package name contains invalid "
"characters)\n"
msgstr ""
#: lib/libalpm/package.c:885 lib/libalpm/package.c:889
#, c-format
msgid ""
"invalid metadata for package %s-%s (package version contains invalid "
"characters)\n"
msgstr ""
#: lib/libalpm/package.c:895
#, c-format
msgid ""
"invalid metadata for package %s-%s (package name and version too long)\n"
msgstr ""
#: lib/libalpm/remove.c:111 #: lib/libalpm/remove.c:111
#, c-format #, c-format
msgid "could not find %s in database -- skipping\n" msgid "could not find %s in database -- skipping\n"
@ -802,17 +869,17 @@ msgstr "nun pue desaniciase'l ficheru '%s': %s\n"
msgid "could not backup %s due to PATH_MAX overflow\n" msgid "could not backup %s due to PATH_MAX overflow\n"
msgstr "" msgstr ""
#: lib/libalpm/remove.c:554 #: lib/libalpm/remove.c:570
#, c-format #, c-format
msgid "cannot remove %s (%s)\n" msgid "cannot remove %s (%s)\n"
msgstr "nun pue desaniciase %s (%s)\n" msgstr "nun pue desaniciase %s (%s)\n"
#: lib/libalpm/remove.c:727 #: lib/libalpm/remove.c:743
#, c-format #, c-format
msgid "could not remove database entry %s-%s\n" msgid "could not remove database entry %s-%s\n"
msgstr "nun pudo desaniciase la entrada de la base de datos %s-%s\n" msgstr "nun pudo desaniciase la entrada de la base de datos %s-%s\n"
#: lib/libalpm/remove.c:732 #: lib/libalpm/remove.c:748
#, c-format #, c-format
msgid "could not remove entry '%s' from cache\n" msgid "could not remove entry '%s' from cache\n"
msgstr "nun pudo desaniciase la entrada '%s' de la caché\n" msgstr "nun pudo desaniciase la entrada '%s' de la caché\n"
@ -822,89 +889,89 @@ msgstr "nun pudo desaniciase la entrada '%s' de la caché\n"
msgid "Public keyring not found; have you run '%s'?\n" msgid "Public keyring not found; have you run '%s'?\n"
msgstr "" msgstr ""
#: lib/libalpm/signing.c:199 lib/libalpm/signing.c:767 #: lib/libalpm/signing.c:199 lib/libalpm/signing.c:773
#, c-format #, c-format
msgid "GPGME error: %s\n" msgid "GPGME error: %s\n"
msgstr "" msgstr ""
#: lib/libalpm/signing.c:274 #: lib/libalpm/signing.c:275
#, c-format #, c-format
msgid "looking up key %s using WKD\n" msgid "looking up key %s using WKD\n"
msgstr "" msgstr ""
#: lib/libalpm/signing.c:283 #: lib/libalpm/signing.c:289
#, c-format #, c-format
msgid "gpg error: %s\n" msgid "gpg error: %s\n"
msgstr "" msgstr ""
#: lib/libalpm/signing.c:430 lib/libalpm/signing.c:503 #: lib/libalpm/signing.c:440 lib/libalpm/signing.c:513
#, c-format #, c-format
msgid "keyring is not writable\n" msgid "keyring is not writable\n"
msgstr "" msgstr ""
#: lib/libalpm/signing.c:531 #: lib/libalpm/signing.c:537
#, c-format #, c-format
msgid "key \"%s\" on keyserver\n" msgid "key \"%s\" on keyserver\n"
msgstr "" msgstr ""
#: lib/libalpm/signing.c:536 #: lib/libalpm/signing.c:542
#, c-format #, c-format
msgid "key \"%s\" could not be imported\n" msgid "key \"%s\" could not be imported\n"
msgstr "" msgstr ""
#: lib/libalpm/signing.c:540 #: lib/libalpm/signing.c:546
#, c-format #, c-format
msgid "key \"%s\" could not be looked up remotely\n" msgid "key \"%s\" could not be looked up remotely\n"
msgstr "" msgstr ""
#: lib/libalpm/signing.c:926 lib/libalpm/sync.c:1022 #: lib/libalpm/signing.c:932 lib/libalpm/sync.c:1052
#, c-format #, c-format
msgid "%s: missing required signature\n" msgid "%s: missing required signature\n"
msgstr "%s: falta la robla riquida\n" msgstr "%s: falta la robla riquida\n"
#: lib/libalpm/signing.c:941 #: lib/libalpm/signing.c:947
#, c-format #, c-format
msgid "%s: signature from \"%s\" is marginal trust\n" msgid "%s: signature from \"%s\" is marginal trust\n"
msgstr "" msgstr ""
#: lib/libalpm/signing.c:949 #: lib/libalpm/signing.c:955
#, c-format #, c-format
msgid "%s: signature from \"%s\" is unknown trust\n" msgid "%s: signature from \"%s\" is unknown trust\n"
msgstr "" msgstr ""
#: lib/libalpm/signing.c:956 #: lib/libalpm/signing.c:962
#, c-format #, c-format
msgid "%s: signature from \"%s\" should never be trusted\n" msgid "%s: signature from \"%s\" should never be trusted\n"
msgstr "" msgstr ""
#: lib/libalpm/signing.c:968 #: lib/libalpm/signing.c:974
#, c-format #, c-format
msgid "%s: key \"%s\" is unknown\n" msgid "%s: key \"%s\" is unknown\n"
msgstr "" msgstr ""
#: lib/libalpm/signing.c:977 #: lib/libalpm/signing.c:983
#, c-format #, c-format
msgid "%s: key \"%s\" is disabled\n" msgid "%s: key \"%s\" is disabled\n"
msgstr "" msgstr ""
#: lib/libalpm/signing.c:981 #: lib/libalpm/signing.c:987
#, c-format #, c-format
msgid "%s: signature from \"%s\" is expired\n" msgid "%s: signature from \"%s\" is expired\n"
msgstr "" msgstr ""
#: lib/libalpm/signing.c:985 #: lib/libalpm/signing.c:991
#, c-format #, c-format
msgid "%s: signature from \"%s\" is invalid\n" msgid "%s: signature from \"%s\" is invalid\n"
msgstr "" msgstr ""
#: lib/libalpm/signing.c:1043 lib/libalpm/signing.c:1104 #: lib/libalpm/signing.c:1049 lib/libalpm/signing.c:1110
#: lib/libalpm/signing.c:1183 #: lib/libalpm/signing.c:1189
#, c-format #, c-format
msgid "%s: signature format error\n" msgid "%s: signature format error\n"
msgstr "" msgstr ""
#: lib/libalpm/signing.c:1136 lib/libalpm/signing.c:1169 #: lib/libalpm/signing.c:1142 lib/libalpm/signing.c:1175
#: lib/libalpm/signing.c:1177 #: lib/libalpm/signing.c:1183
#, c-format #, c-format
msgid "%s: unsupported signature format\n" msgid "%s: unsupported signature format\n"
msgstr "" msgstr ""
@ -939,118 +1006,122 @@ msgstr "inorando troquéu de paquete (%s-%s => %s-%s)\n"
msgid "cannot replace %s by %s\n" msgid "cannot replace %s by %s\n"
msgstr "nun pue trocase %s por %s\n" msgstr "nun pue trocase %s por %s\n"
#: lib/libalpm/sync.c:476 #: lib/libalpm/sync.c:477
#, c-format #, c-format
msgid "packages %s and %s have the same filename: %s\n" msgid "packages %s and %s have the same filename: %s\n"
msgstr "" msgstr ""
#: lib/libalpm/sync.c:542 lib/libalpm/sync.c:612 #: lib/libalpm/sync.c:546 lib/libalpm/sync.c:618
#, c-format #, c-format
msgid "unresolvable package conflicts detected\n" msgid "unresolvable package conflicts detected\n"
msgstr "deteutaos conflictos de paquete que nun puen iguase\n" msgstr "deteutaos conflictos de paquete que nun puen iguase\n"
#: lib/libalpm/sync.c:562 #: lib/libalpm/sync.c:566
#, c-format #, c-format
msgid "removing '%s' from target list because it conflicts with '%s'\n" msgid "removing '%s-%s' from target list because it conflicts with '%s-%s'\n"
msgstr "" msgstr ""
"desaniciando '%s' de la llista d'oxetivos porque ta en conflictu con '%s'\n"
#: lib/libalpm/sync.c:1036 #: lib/libalpm/sync.c:1020 lib/libalpm/sync.c:1187
#, c-format
msgid "%s: could not find package in cache\n"
msgstr ""
#: lib/libalpm/sync.c:1066
#, c-format #, c-format
msgid "failed to read file %s: %s\n" msgid "failed to read file %s: %s\n"
msgstr "" msgstr ""
#: lib/libalpm/sync.c:1223 #: lib/libalpm/sync.c:1324
#, c-format #, c-format
msgid "not enough free disk space\n" msgid "not enough free disk space\n"
msgstr "nun hai espaciu llibre abondu\n" msgstr "nun hai espaciu llibre abondu\n"
#: lib/libalpm/sync.c:1245 #: lib/libalpm/sync.c:1346
#, c-format #, c-format
msgid "could not commit removal transaction\n" msgid "could not commit removal transaction\n"
msgstr "nun pudo unviase la transaición de desaniciu\n" msgstr "nun pudo unviase la transaición de desaniciu\n"
#: lib/libalpm/sync.c:1253 #: lib/libalpm/sync.c:1354
#, c-format #, c-format
msgid "could not commit transaction\n" msgid "could not commit transaction\n"
msgstr "nun pudo unviase la transaición\n" msgstr "nun pudo unviase la transaición\n"
#: lib/libalpm/trans.c:365 #: lib/libalpm/trans.c:369
#, c-format #, c-format
msgid "could not create temp directory\n" msgid "could not create temp directory\n"
msgstr "nun pudo creaase'l direutoriu temporal\n" msgstr "nun pudo creaase'l direutoriu temporal\n"
#: lib/libalpm/trans.c:380 #: lib/libalpm/trans.c:384
#, c-format #, c-format
msgid "could not copy tempfile to %s (%s)\n" msgid "could not copy tempfile to %s (%s)\n"
msgstr "nun pudo copiase'l ficheru temporal a %s (%s)\n" msgstr "nun pudo copiase'l ficheru temporal a %s (%s)\n"
#: lib/libalpm/trans.c:411 #: lib/libalpm/trans.c:415
#, c-format #, c-format
msgid "could not remove %s\n" msgid "could not remove %s\n"
msgstr "nun pudo desaniciase %s\n" msgstr "nun pudo desaniciase %s\n"
#: lib/libalpm/trans.c:415 #: lib/libalpm/trans.c:419
#, c-format #, c-format
msgid "could not remove tmpdir %s\n" msgid "could not remove tmpdir %s\n"
msgstr "nun pudo desaniciase'l direutoriu temporal %s\n" msgstr "nun pudo desaniciase'l direutoriu temporal %s\n"
#: lib/libalpm/util.c:488 #: lib/libalpm/util.c:512
#, c-format #, c-format
msgid "unable to write to pipe (%s)\n" msgid "unable to write to pipe (%s)\n"
msgstr "" msgstr ""
#: lib/libalpm/util.c:547 #: lib/libalpm/util.c:571
#, c-format #, c-format
msgid "unable to read from pipe (%s)\n" msgid "unable to read from pipe (%s)\n"
msgstr "" msgstr ""
#: lib/libalpm/util.c:617 lib/libalpm/util.c:623 #: lib/libalpm/util.c:641 lib/libalpm/util.c:647
#, c-format #, c-format
msgid "could not create pipe (%s)\n" msgid "could not create pipe (%s)\n"
msgstr "" msgstr ""
#: lib/libalpm/util.c:631 #: lib/libalpm/util.c:655
#, c-format #, c-format
msgid "could not fork a new process (%s)\n" msgid "could not fork a new process (%s)\n"
msgstr "Nun pudo bifurcase un procesu nuevu (%s)\n" msgstr "Nun pudo bifurcase un procesu nuevu (%s)\n"
#: lib/libalpm/util.c:654 #: lib/libalpm/util.c:680
#, c-format #, c-format
msgid "could not change the root directory (%s)\n" msgid "could not change the root directory (%s)\n"
msgstr "nun pudo cambiase'l direutoriu root (%s)\n" msgstr "nun pudo cambiase'l direutoriu root (%s)\n"
#: lib/libalpm/util.c:666 #: lib/libalpm/util.c:700
#, c-format #, c-format
msgid "call to execv failed (%s)\n" msgid "call to execv failed (%s)\n"
msgstr "llamada a execv fallida (%s)\n" msgstr "llamada a execv fallida (%s)\n"
#: lib/libalpm/util.c:745 #: lib/libalpm/util.c:779
#, c-format #, c-format
msgid "call to waitpid failed (%s)\n" msgid "call to waitpid failed (%s)\n"
msgstr "llamada a waitpid fallida (%s)\n" msgstr "llamada a waitpid fallida (%s)\n"
#: lib/libalpm/util.c:755 #: lib/libalpm/util.c:789
#, c-format #, c-format
msgid "command failed to execute correctly\n" msgid "command failed to execute correctly\n"
msgstr "el comandu falló al executase afayadizamente\n" msgstr "el comandu falló al executase afayadizamente\n"
#: lib/libalpm/util.c:762 #: lib/libalpm/util.c:796
#, c-format #, c-format
msgid "Unknown signal" msgid "Unknown signal"
msgstr "Señal desconocida" msgstr "Señal desconocida"
#: lib/libalpm/util.c:764 #: lib/libalpm/util.c:798
#, c-format #, c-format
msgid "command terminated by signal %d: %s\n" msgid "command terminated by signal %d: %s\n"
msgstr "comandu fináu pola señal %d: %s\n" msgstr "comandu fináu pola señal %d: %s\n"
#: lib/libalpm/util.c:875 #: lib/libalpm/util.c:916
#, c-format #, c-format
msgid "no %s cache exists, creating...\n" msgid "no %s cache exists, creating...\n"
msgstr "nun esiste'l caché %s, creando...\n" msgstr "nun esiste'l caché %s, creando...\n"
#: lib/libalpm/util.c:906 #: lib/libalpm/util.c:947
#, c-format #, c-format
msgid "couldn't find or create package cache, using %s instead\n" msgid "couldn't find or create package cache, using %s instead\n"
msgstr "" msgstr ""

View file

@ -3,21 +3,22 @@
# This file is distributed under the same license as the libalpm package. # This file is distributed under the same license as the libalpm package.
# #
# Translators: # Translators:
# xxmn77 <xxmn77@gmail.com>, 2021 # Xəyyam Qocayev <xxmn77@gmail.com>, 2021-2024
# xxmn77 <xxmn77@gmail.com>, 2021 # Xəyyam Qocayev <xxmn77@gmail.com>, 2021,2024
# xxmn77 <xxmn77@gmail.com>, 2021 # Xəyyam Qocayev <xxmn77@gmail.com>, 2021
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Arch Linux Pacman package manager\n" "Project-Id-Version: Arch Linux Pacman package manager\n"
"Report-Msgid-Bugs-To: http://bugs.archlinux.org/index.php?project=3\n" "Report-Msgid-Bugs-To: https://gitlab.archlinux.org/pacman/pacman/-/issues\n"
"POT-Creation-Date: 2021-09-04 16:15+1000\n" "POT-Creation-Date: 2024-07-14 19:10+1000\n"
"PO-Revision-Date: 2021-07-04 11:31+0000\n" "PO-Revision-Date: 2010-11-29 23:17+0000\n"
"Last-Translator: xxmn77 <xxmn77@gmail.com>\n" "Last-Translator: Xəyyam Qocayev <xxmn77@gmail.com>, 2021-2024\n"
"Language-Team: Azerbaijani (Azerbaijan) (http://www.transifex.com/toofishes/archlinux-pacman/language/az_AZ/)\n" "Language-Team: Azerbaijani (Azerbaijan) (http://app.transifex.com/toofishes/"
"archlinux-pacman/language/az_AZ/)\n"
"Language: az_AZ\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"Language: az_AZ\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: lib/libalpm/add.c:90 lib/libalpm/sync.c:279 #: lib/libalpm/add.c:90 lib/libalpm/sync.c:279
@ -40,17 +41,17 @@ msgstr "%s paketi əvvəlki versiyaya endirilir (%s =>%s)\n"
msgid "cannot allocate disk archive object" msgid "cannot allocate disk archive object"
msgstr "Disk arxiv obyekti təsis edilə bilmir" msgstr "Disk arxiv obyekti təsis edilə bilmir"
#: lib/libalpm/add.c:143 lib/libalpm/util.c:384 #: lib/libalpm/add.c:143 lib/libalpm/util.c:408
#, c-format #, c-format
msgid "warning given when extracting %s (%s)\n" msgid "warning given when extracting %s (%s)\n"
msgstr "Çıxarılarkən verilən xəbərdarlıq %s (%s)\n" msgstr "Çıxarılarkən verilən xəbərdarlıq %s (%s)\n"
#: lib/libalpm/add.c:146 lib/libalpm/util.c:387 #: lib/libalpm/add.c:146 lib/libalpm/util.c:411
#, c-format #, c-format
msgid "could not extract %s (%s)\n" msgid "could not extract %s (%s)\n"
msgstr "Çıxarıla bilmədi %s (%s)\n" msgstr "Çıxarıla bilmədi %s (%s)\n"
#: lib/libalpm/add.c:159 lib/libalpm/dload.c:709 lib/libalpm/remove.c:534 #: lib/libalpm/add.c:159 lib/libalpm/dload.c:707 lib/libalpm/remove.c:550
#, c-format #, c-format
msgid "could not rename %s to %s (%s)\n" msgid "could not rename %s to %s (%s)\n"
msgstr "%s adı, %s kimi dəyişdirilə bilmədi (%s)\n" msgstr "%s adı, %s kimi dəyişdirilə bilmədi (%s)\n"
@ -58,7 +59,8 @@ msgstr "%s adı, %s kimi dəyişdirilə bilmədi (%s)\n"
#: lib/libalpm/add.c:210 #: lib/libalpm/add.c:210
#, c-format #, c-format
msgid "file not found in file list for package %s. skipping extraction of %s\n" msgid "file not found in file list for package %s. skipping extraction of %s\n"
msgstr "%s paketi üçün fayl siyahısında fayl tapılmadı. %s çıxarılması buraxılır\n" msgstr ""
"%s paketi üçün fayl siyahısında fayl tapılmadı. %s çıxarılması buraxılır\n"
#: lib/libalpm/add.c:219 #: lib/libalpm/add.c:219
#, c-format #, c-format
@ -70,14 +72,18 @@ msgstr "%s %s çıxarıla bilmədi: yol çox uzundur"
msgid "" msgid ""
"directory permissions differ on %s\n" "directory permissions differ on %s\n"
"filesystem: %o package: %o\n" "filesystem: %o package: %o\n"
msgstr "%s-də kataloqa giriş icazələri fərqlidir \nfayl sistemi: %o paketi: %o\n" msgstr ""
"%s-də kataloqa giriş icazələri fərqlidir \n"
"fayl sistemi: %o paketi: %o\n"
#: lib/libalpm/add.c:276 #: lib/libalpm/add.c:276
#, c-format #, c-format
msgid "" msgid ""
"directory ownership differs on %s\n" "directory ownership differs on %s\n"
"filesystem: %u:%u package: %u:%u\n" "filesystem: %u:%u package: %u:%u\n"
msgstr "kataloqa sahiblik %s fayl sistemində\nfətqlənir: %u:%u paketi: %u:%u\n" msgstr ""
"kataloqa sahiblik %s fayl sistemində\n"
"fətqlənir: %u:%u paketi: %u:%u\n"
#: lib/libalpm/add.c:292 #: lib/libalpm/add.c:292
#, c-format #, c-format
@ -89,18 +95,18 @@ msgstr "çıxarmaq: %s faylı qovluğun üzərinə yazılmır\n"
msgid "unable to extract %s.pacnew: path too long" msgid "unable to extract %s.pacnew: path too long"
msgstr "%s.pacnew çıxarıla bilmədi: yol çox uzundur" msgstr "%s.pacnew çıxarıla bilmədi: yol çox uzundur"
#: lib/libalpm/add.c:510 lib/libalpm/util.c:335 lib/libalpm/util.c:600 #: lib/libalpm/add.c:510 lib/libalpm/util.c:354 lib/libalpm/util.c:624
#, c-format #, c-format
msgid "could not get current working directory\n" msgid "could not get current working directory\n"
msgstr "cari iş qovluğu alına bilmədi\n" msgstr "cari iş qovluğu alına bilmədi\n"
#: lib/libalpm/add.c:515 lib/libalpm/util.c:340 lib/libalpm/util.c:605 #: lib/libalpm/add.c:515 lib/libalpm/util.c:359 lib/libalpm/util.c:629
#: lib/libalpm/util.c:658 #: lib/libalpm/util.c:684
#, c-format #, c-format
msgid "could not change directory to %s (%s)\n" msgid "could not change directory to %s (%s)\n"
msgstr "kataloq, %s kimi dəyişdirilə bilmədi (%s)\n" msgstr "kataloq, %s kimi dəyişdirilə bilmədi (%s)\n"
#: lib/libalpm/add.c:571 lib/libalpm/util.c:405 lib/libalpm/util.c:774 #: lib/libalpm/add.c:571 lib/libalpm/util.c:429 lib/libalpm/util.c:808
#, c-format #, c-format
msgid "could not restore working directory (%s)\n" msgid "could not restore working directory (%s)\n"
msgstr "iş kataloqu (%s) bərpa edilə bilmədi\n" msgstr "iş kataloqu (%s) bərpa edilə bilmədi\n"
@ -125,101 +131,118 @@ msgstr "%s-%s verilənlər bazası qeydləri yenilənmədi\n"
msgid "could not add entry '%s' in cache\n" msgid "could not add entry '%s' in cache\n"
msgstr "'%s' qeydi keşə əlavə oluna bilmədi\n" msgstr "'%s' qeydi keşə əlavə oluna bilmədi\n"
#: lib/libalpm/be_local.c:266 #: lib/libalpm/be_local.c:271
#, c-format #, c-format
msgid "error while reading file %s: %s\n" msgid "error while reading file %s: %s\n"
msgstr "%s faylının oxunması zamanı xəta: %s\n" msgstr "%s faylının oxunması zamanı xəta: %s\n"
#: lib/libalpm/be_local.c:376 #: lib/libalpm/be_local.c:382
#, c-format #, c-format
msgid "removing invalid database: %s\n" msgid "removing invalid database: %s\n"
msgstr "səhv verilənlər bazası silinir: %s\n" msgstr "səhv verilənlər bazası silinir: %s\n"
#: lib/libalpm/be_local.c:427 lib/libalpm/be_local.c:909 #: lib/libalpm/be_local.c:433 lib/libalpm/be_local.c:947
#, c-format #, c-format
msgid "could not create directory %s: %s\n" msgid "could not create directory %s: %s\n"
msgstr "%s qovluğu yaradıla bilmədi: %s\n" msgstr "%s qovluğu yaradıla bilmədi: %s\n"
#: lib/libalpm/be_local.c:602 lib/libalpm/be_sync.c:322 #: lib/libalpm/be_local.c:608 lib/libalpm/be_sync.c:339
#, c-format #, c-format
msgid "invalid name for database entry '%s'\n" msgid "invalid name for database entry '%s'\n"
msgstr "'%s ' verilənlər bazası qeydi üçün səhv ad\n" msgstr "'%s ' verilənlər bazası qeydi üçün səhv ad\n"
#: lib/libalpm/be_local.c:610 #: lib/libalpm/be_local.c:616
#, c-format #, c-format
msgid "duplicated database entry '%s'\n" msgid "duplicated database entry '%s'\n"
msgstr "təkrarlanmış '%s' verilənlər bazası qeydi\n" msgstr "təkrarlanmış '%s' verilənlər bazası qeydi\n"
#: lib/libalpm/be_local.c:622 #: lib/libalpm/be_local.c:628
#, c-format #, c-format
msgid "corrupted database entry '%s'\n" msgid "corrupted database entry '%s'\n"
msgstr "pozulmuş '%s' verilənlər bazası qeydi\n" msgstr "pozulmuş '%s' verilənlər bazası qeydi\n"
#: lib/libalpm/be_local.c:722 lib/libalpm/be_local.c:818 #: lib/libalpm/be_local.c:663
#: lib/libalpm/be_local.c:958 lib/libalpm/be_local.c:1055 #, c-format
#: lib/libalpm/diskspace.c:131 lib/libalpm/dload.c:823 lib/libalpm/util.c:254 msgid "unknown install reason for package %s: %s\n"
#: lib/libalpm/util.c:270 msgstr "%s paketi üçün naməlum quraşdırma səbəbi: %s\n"
#: lib/libalpm/be_local.c:743 lib/libalpm/be_local.c:856
#: lib/libalpm/be_local.c:996 lib/libalpm/be_local.c:1102
#: lib/libalpm/diskspace.c:135 lib/libalpm/dload.c:792 lib/libalpm/util.c:273
#: lib/libalpm/util.c:289
#, c-format #, c-format
msgid "could not open file %s: %s\n" msgid "could not open file %s: %s\n"
msgstr "%s faylııla bilmədi: %s\n" msgstr "%s faylııla bilmədi: %s\n"
#: lib/libalpm/be_local.c:738 lib/libalpm/be_sync.c:582 #: lib/libalpm/be_local.c:759 lib/libalpm/be_sync.c:612
#, c-format #, c-format
msgid "%s database is inconsistent: name mismatch on package %s\n" msgid "%s database is inconsistent: name mismatch on package %s\n"
msgstr "%s verilənlər bazası ziddiyətlidir: %s paketindəki ad ilə uyğun deyil\n" msgstr ""
"%s verilənlər bazası ziddiyətlidir: %s paketindəki ad ilə uyğun deyil\n"
#: lib/libalpm/be_local.c:744 lib/libalpm/be_sync.c:588 #: lib/libalpm/be_local.c:765 lib/libalpm/be_sync.c:618
#, c-format #, c-format
msgid "%s database is inconsistent: version mismatch on package %s\n" msgid "%s database is inconsistent: version mismatch on package %s\n"
msgstr "%s verilənlər bazası ziddiyyətlidir: %s paketindəki versiya uyğun gəlmir\n" msgstr ""
"%s verilənlər bazası ziddiyyətlidir: %s paketindəki versiya uyğun gəlmir\n"
#: lib/libalpm/be_local.c:785 #: lib/libalpm/be_local.c:806
#, c-format #, c-format
msgid "unknown validation type for package %s: %s\n" msgid "unknown validation type for package %s: %s\n"
msgstr "%s paketi üçün bilinməyən doğrulama: %s\n" msgstr "%s paketi üçün bilinməyən doğrulama: %s\n"
#: lib/libalpm/be_package.c:478 lib/libalpm/be_package.c:631 #: lib/libalpm/be_local.c:841
#: lib/libalpm/be_package.c:643 #, c-format
msgid "%s: unknown key '%s' in local database\n"
msgstr "%s: yerli verilənlər bazasında \"%s\" açarı naməlumdur\n"
#: lib/libalpm/be_package.c:255
#, c-format
msgid "%s: unknown key '%s' in package description\n"
msgstr "%s: paketin açıqlamasında\"%s\" açarı naməlumdur\n"
#: lib/libalpm/be_package.c:482 lib/libalpm/be_package.c:635
#: lib/libalpm/be_package.c:647
#, c-format #, c-format
msgid "error while reading package %s: %s\n" msgid "error while reading package %s: %s\n"
msgstr "%s paketinin oxunması zamanı xəta: %s\n" msgstr "%s paketinin oxunması zamanı xəta: %s\n"
#: lib/libalpm/be_package.c:491 lib/libalpm/be_package.c:514 #: lib/libalpm/be_package.c:495 lib/libalpm/be_package.c:518
#, c-format #, c-format
msgid "error while reading mtree of package %s: %s\n" msgid "error while reading mtree of package %s: %s\n"
msgstr "%s paketinin mtree faylının oxunması zamanı xəta: %s\n" msgstr "%s paketinin mtree faylının oxunması zamanı xəta: %s\n"
#: lib/libalpm/be_package.c:597 #: lib/libalpm/be_package.c:601
#, c-format #, c-format
msgid "could not parse package description file in %s\n" msgid "could not parse package description file in %s\n"
msgstr "%s paketindəki xüsusiyyətlər faylı təhlil edilə bilmədi\n" msgstr "%s paketindəki xüsusiyyətlər faylı təhlil edilə bilmədi\n"
#: lib/libalpm/be_package.c:602 #: lib/libalpm/be_package.c:606
#, c-format #, c-format
msgid "missing package name in %s\n" msgid "missing package name in %s\n"
msgstr "%s daxilində paket adı çatışmır\n" msgstr "%s daxilində paket adı çatışmır\n"
#: lib/libalpm/be_package.c:606 #: lib/libalpm/be_package.c:610
#, c-format #, c-format
msgid "missing package version in %s\n" msgid "missing package version in %s\n"
msgstr "%s daxilində paket versiyası çatışmır\n" msgstr "%s daxilində paket versiyası çatışmır\n"
#: lib/libalpm/be_package.c:610 #: lib/libalpm/be_package.c:614
#, c-format #, c-format
msgid "invalid package version in %s\n" msgid "invalid package version in %s\n"
msgstr "%s daxilində səhv paket versiyası\n" msgstr "%s daxilində səhv paket versiyası\n"
#: lib/libalpm/be_package.c:649 #: lib/libalpm/be_package.c:653
#, c-format #, c-format
msgid "missing package metadata in %s\n" msgid "missing package metadata in %s\n"
msgstr "%s daxilində paket meta məlumatları çatışmır\n" msgstr "%s daxilində paket meta məlumatları çatışmır\n"
#: lib/libalpm/be_package.c:741 #: lib/libalpm/be_package.c:745
#, c-format #, c-format
msgid "failed to read signature file: %s\n" msgid "failed to read signature file: %s\n"
msgstr "imza faylı oxuna bilmədi: %s\n" msgstr "imza faylı oxuna bilmədi: %s\n"
#: lib/libalpm/be_package.c:770 lib/libalpm/sync.c:953 #: lib/libalpm/be_package.c:768 lib/libalpm/sync.c:976
#, c-format #, c-format
msgid "required key missing from keyring\n" msgid "required key missing from keyring\n"
msgstr "lazımi açar, açarlar bağında yoxdur\n" msgstr "lazımi açar, açarlar bağında yoxdur\n"
@ -229,32 +252,39 @@ msgstr "lazımi açar, açarlar bağında yoxdur\n"
msgid "removing invalid file: %s\n" msgid "removing invalid file: %s\n"
msgstr "səhv fayl silinir: %s\n" msgstr "səhv fayl silinir: %s\n"
#: lib/libalpm/be_sync.c:449 #: lib/libalpm/be_sync.c:471
#, c-format #, c-format
msgid "could not parse package description file '%s' from db '%s'\n" msgid "could not parse package description file '%s' from db '%s'\n"
msgstr "'%s' açıqlama faylı '%s' veri. bazasından təhlil edilə bilmədi\n" msgstr "'%s' açıqlama faylı '%s' veri. bazasından təhlil edilə bilmədi\n"
#: lib/libalpm/be_sync.c:456 #: lib/libalpm/be_sync.c:486
#, c-format #, c-format
msgid "could not read db '%s' (%s)\n" msgid "could not read db '%s' (%s)\n"
msgstr "'%s' veri. bazası oxuna bilmədi (%s)\n" msgstr "'%s' veri. bazası oxuna bilmədi (%s)\n"
#: lib/libalpm/be_sync.c:489 lib/libalpm/be_sync.c:494 #: lib/libalpm/be_sync.c:519 lib/libalpm/be_sync.c:524
#, c-format #, c-format
msgid "%s database is inconsistent: filename of package %s is illegal\n" msgid "%s database is inconsistent: filename of package %s is illegal\n"
msgstr "%s verilənlər bazası ziddiyətlidir: %s paketinin fayl_adı yararsızdır\n" msgstr ""
"%s verilənlər bazası ziddiyətlidir: %s paketinin fayl_adı yararsızdır\n"
#: lib/libalpm/be_sync.c:499 #: lib/libalpm/be_sync.c:529
#, c-format #, c-format
msgid "%s database is inconsistent: filename of package %s is too long\n" msgid "%s database is inconsistent: filename of package %s is too long\n"
msgstr "%s verilənlər bazası ziddiyətlidir: %s paketinin fayl_adı çox uzundur\n" msgstr ""
"%s verilənlər bazası ziddiyətlidir: %s paketinin fayl_adı çox uzundur\n"
#: lib/libalpm/be_sync.c:564 #: lib/libalpm/be_sync.c:594
#, c-format #, c-format
msgid "unknown database file: %s\n" msgid "unknown database file: %s\n"
msgstr "bilinməyən verilənlər bazası faylı: %s\n" msgstr "bilinməyən verilənlər bazası faylı: %s\n"
#: lib/libalpm/db.c:344 #: lib/libalpm/be_sync.c:712
#, c-format
msgid "%s: unknown key '%s' in sync database\n"
msgstr "%s: eyniləşdirmə üçün verilənlər bazasında \"%s\" açarı naməlumdur\n"
#: lib/libalpm/db.c:413
#, c-format #, c-format
msgid "database path is undefined\n" msgid "database path is undefined\n"
msgstr "verilənlər bazası müəyyən edilməyib\n" msgstr "verilənlər bazası müəyyən edilməyib\n"
@ -262,7 +292,7 @@ msgstr "verilənlər bazası müəyyən edilməyib\n"
#: lib/libalpm/deps.c:184 #: lib/libalpm/deps.c:184
#, c-format #, c-format
msgid "dependency cycle detected:\n" msgid "dependency cycle detected:\n"
msgstr "dairəvi bağlılıq aşkarlandı:\n" msgstr "asılılıq dövrəsi aşkar edildi:\n"
#: lib/libalpm/deps.c:187 #: lib/libalpm/deps.c:187
#, c-format #, c-format
@ -272,7 +302,7 @@ msgstr "%s paketi %s asılılığından sonra silinəcəkdir\n"
#: lib/libalpm/deps.c:191 #: lib/libalpm/deps.c:191
#, c-format #, c-format
msgid "%s will be installed before its %s dependency\n" msgid "%s will be installed before its %s dependency\n"
msgstr "%s paketi %s asılılığından əvəl quraşdırılacaqdır\n" msgstr "%s paketi %s asılılığından öncə quraşdırılacaq\n"
#: lib/libalpm/deps.c:666 lib/libalpm/deps.c:697 #: lib/libalpm/deps.c:666 lib/libalpm/deps.c:697
#, c-format #, c-format
@ -294,103 +324,119 @@ msgstr "%s üçün fay sistemi məlumatları alına bilmədi: %s\n"
msgid "could not open file: %s: %s\n" msgid "could not open file: %s: %s\n"
msgstr "fayl açıla bilmədi: %s:%s\n" msgstr "fayl açıla bilmədi: %s:%s\n"
#: lib/libalpm/diskspace.c:146 lib/libalpm/diskspace.c:159 #: lib/libalpm/diskspace.c:154 lib/libalpm/diskspace.c:167
#, c-format #, c-format
msgid "could not get filesystem information\n" msgid "could not get filesystem information\n"
msgstr "fayl sistemi məlumatları alına bilmədi\n" msgstr "fayl sistemi məlumatları alına bilmədi\n"
#: lib/libalpm/diskspace.c:242 #: lib/libalpm/diskspace.c:254
#, c-format #, c-format
msgid "could not get file information for %s\n" msgid "could not get file information for %s\n"
msgstr "%s üçün fayl sistemi məlumatları alına bilmədi\n" msgstr "%s üçün fayl sistemi məlumatları alına bilmədi\n"
#: lib/libalpm/diskspace.c:256 lib/libalpm/diskspace.c:315 #: lib/libalpm/diskspace.c:268 lib/libalpm/diskspace.c:327
#, c-format #, c-format
msgid "could not determine mount point for file %s\n" msgid "could not determine mount point for file %s\n"
msgstr "%s faylı üçün qoşulma nöqtəsi aşkarlana bilmədi\n" msgstr "%s faylı üçün qoşulma nöqtəsi aşkarlana bilmədi\n"
#: lib/libalpm/diskspace.c:354 #: lib/libalpm/diskspace.c:366
#, c-format #, c-format
msgid "Partition %s too full: %jd blocks needed, %ju blocks free\n" msgid "Partition %s too full: %jd blocks needed, %ju blocks free\n"
msgstr "%s bölməsi çox doludur: %jdblok lazımdır, %ju blok boşdur\n" msgstr "%s bölməsi çox doludur: %jdblok lazımdır, %ju blok boşdur\n"
#: lib/libalpm/diskspace.c:379 lib/libalpm/diskspace.c:433 #: lib/libalpm/diskspace.c:391 lib/libalpm/diskspace.c:445
#, c-format #, c-format
msgid "could not determine filesystem mount points\n" msgid "could not determine filesystem mount points\n"
msgstr "fayl sistemi qoşulma nöqtələri aşkarlana bilmədi\n" msgstr "fayl sistemi qoşulma nöqtələri aşkarlana bilmədi\n"
#: lib/libalpm/diskspace.c:385 #: lib/libalpm/diskspace.c:397
#, c-format #, c-format
msgid "could not determine cachedir mount point %s\n" msgid "could not determine cachedir mount point %s\n"
msgstr "%s qoşulma nöqtəsi keş qovluğu aşkarlana bilmədi\n" msgstr "%s qoşulma nöqtəsi keş qovluğu aşkarlana bilmədi\n"
#: lib/libalpm/diskspace.c:438 #: lib/libalpm/diskspace.c:450
#, c-format #, c-format
msgid "could not determine root mount point %s\n" msgid "could not determine root mount point %s\n"
msgstr "%s qoşulma nöqtəsi kök qovluğu aşkarlana bilmədi\n" msgstr "%s qoşulma nöqtəsi kök qovluğu aşkarlana bilmədi\n"
#: lib/libalpm/diskspace.c:486 #: lib/libalpm/diskspace.c:498
#, c-format #, c-format
msgid "Partition %s is mounted read only\n" msgid "Partition %s is mounted read only\n"
msgstr "%s bölməsi yalnız oxumaq üçün qoşuldu\n" msgstr "%s bölməsi yalnız oxumaq üçün qoşuldu\n"
#: lib/libalpm/dload.c:116 #: lib/libalpm/dload.c:107
#, c-format
msgid "failed to create temporary file for download\n"
msgstr "endirmək üçün müvəqqəti fayl yaradıla bilmədi\n"
#: lib/libalpm/dload.c:198
#, c-format #, c-format
msgid "" msgid ""
"too many errors from %s, skipping for the remainder of this transaction\n" "too many errors from %s, skipping for the remainder of this transaction\n"
msgstr "%s-dən/dan çoxlu xətalar, bu əməliyyatın qalanları ötürülür\n" msgstr "%s-dən/dan çoxlu xətalar, bu əməliyyatın qalanları ötürülür\n"
#: lib/libalpm/dload.c:220 #: lib/libalpm/dload.c:215
#, c-format
msgid "fatal error from %s, skipping for the remainder of this transaction\n"
msgstr "%s ilə ciddi xəta baş verdi, bu əməliyyatın qalan hissəsi ötürülür\n"
#: lib/libalpm/dload.c:310
#, c-format #, c-format
msgid "disk" msgid "disk"
msgstr "disk" msgstr "disk"
#: lib/libalpm/dload.c:392 #: lib/libalpm/dload.c:532 lib/libalpm/dload.c:570 lib/libalpm/dload.c:583
#, c-format
msgid "failed to create temporary file for download\n"
msgstr "endirmək üçün müvəqqəti fayl yaradıla bilmədi\n"
#: lib/libalpm/dload.c:509 lib/libalpm/dload.c:547 lib/libalpm/dload.c:561
#, c-format #, c-format
msgid "failed retrieving file '%s' from %s : %s\n" msgid "failed retrieving file '%s' from %s : %s\n"
msgstr "'%s' faylının '%s'dən/dan alınması uğursuz oldu: %s\n" msgstr "'%s' faylının '%s'dən/dan alınması uğursuz oldu: %s\n"
#: lib/libalpm/dload.c:539 #: lib/libalpm/dload.c:562
#, c-format #, c-format
msgid "failed retrieving file '%s' from %s : expected download size exceeded\n" msgid "failed retrieving file '%s' from %s : expected download size exceeded\n"
msgstr "'%s' faylının '%s'dən/dan alınması uğursuz oldu: gözlənilən ölçünü aşdı\n" msgstr ""
"'%s' faylının '%s'dən/dan alınması uğursuz oldu: gözlənilən ölçünü aşdı\n"
#: lib/libalpm/dload.c:687 #: lib/libalpm/dload.c:685
#, c-format #, c-format
msgid "%s appears to be truncated: %jd/%jd bytes\n" msgid "%s appears to be truncated: %jd/%jd bytes\n"
msgstr "%s əksik görünür: %jd/%jd bayt\n" msgstr "%s əksik görünür: %jd/%jd bayt\n"
#: lib/libalpm/dload.c:787 #: lib/libalpm/dload.c:776
#, c-format #, c-format
msgid "url '%s' is invalid\n" msgid "url '%s' is invalid\n"
msgstr "url '%s' səhvdir\n" msgstr "url '%s' səhvdir\n"
#: lib/libalpm/dload.c:893 #: lib/libalpm/dload.c:864
#, c-format #, c-format
msgid "failed to setup a download payload for %s\n" msgid "failed to setup a download payload for %s\n"
msgstr "%s üçün endirmə yükü ayarlandı\n" msgstr "%s üçün endirmə yükü ayarlandı\n"
#: lib/libalpm/dload.c:905 #: lib/libalpm/dload.c:876
#, c-format #, c-format
msgid "curl returned error %d from transfer\n" msgid "curl returned error %d from transfer\n"
msgstr "curl əməliyyatdan %d xətası ilə cavab verdi\n" msgstr "curl əməliyyatdan %d xətası ilə cavab verdi\n"
#: lib/libalpm/dload.c:929 #: lib/libalpm/dload.c:900
#, c-format #, c-format
msgid "curl transfer error: %d\n" msgid "curl transfer error: %d\n"
msgstr "curl əməliyyat xətası: %d\n" msgstr "curl əməliyyat xətası: %d\n"
#: lib/libalpm/dload.c:1055 lib/libalpm/sync.c:840 #: lib/libalpm/dload.c:963
#, c-format
msgid "could not chdir to download directory %s\n"
msgstr "%s endirmə kataloquna keçilə bilmədi\n"
#: lib/libalpm/dload.c:968
#, c-format
msgid "switching to sandbox user '%s' failed!\n"
msgstr "\"%s\" təcrid mühiti istifadəçisinə keçid uğursuz oldu!\n"
#: lib/libalpm/dload.c:1361 lib/libalpm/sync.c:861
#, c-format #, c-format
msgid "failed to retrieve some files\n" msgid "failed to retrieve some files\n"
msgstr "bəzi fayllar alına bilmədi\n" msgstr "bəzi fayllar alına bilmədi\n"
#: lib/libalpm/dload.c:1078 #: lib/libalpm/dload.c:1384
#, c-format #, c-format
msgid "download completed successfully but no file in the cache\n" msgid "download completed successfully but no file in the cache\n"
msgstr "endirmə uğurla tamamlandı, lakin keşdə fayl yoxdur\n" msgstr "endirmə uğurla tamamlandı, lakin keşdə fayl yoxdur\n"
@ -665,12 +711,12 @@ msgstr "imza dəstəklənmədən tərtib edilib"
msgid "unexpected error" msgid "unexpected error"
msgstr "gözlənilməz xəta" msgstr "gözlənilməz xəta"
#: lib/libalpm/handle.c:142 #: lib/libalpm/handle.c:165
#, c-format #, c-format
msgid "lock file missing %s\n" msgid "lock file missing %s\n"
msgstr "kilid faylı çatışmır %s\n" msgstr "kilid faylı çatışmır %s\n"
#: lib/libalpm/handle.c:148 #: lib/libalpm/handle.c:171
#, c-format #, c-format
msgid "could not remove lock file %s\n" msgid "could not remove lock file %s\n"
msgstr "%s kilid faylı silinə bilmədi\n" msgstr "%s kilid faylı silinə bilmədi\n"
@ -752,7 +798,7 @@ msgstr "kataloq açıla bilmədi: %s: %s\n"
msgid "could not open file: %s%s: %s\n" msgid "could not open file: %s%s: %s\n"
msgstr "fayl açıla bilmədi: %s%s: %s\n" msgstr "fayl açıla bilmədi: %s%s: %s\n"
#: lib/libalpm/hook.c:595 lib/libalpm/util.c:260 #: lib/libalpm/hook.c:595 lib/libalpm/util.c:279
#, c-format #, c-format
msgid "could not stat file %s: %s\n" msgid "could not stat file %s: %s\n"
msgstr "%s faylı başladıla bilmədi: %s\n" msgstr "%s faylı başladıla bilmədi: %s\n"
@ -762,11 +808,51 @@ msgstr "%s faylı başladıla bilmədi: %s\n"
msgid "could not read directory: %s: %s\n" msgid "could not read directory: %s: %s\n"
msgstr "kataloq oxuna bilmədi: %s: %s\n" msgstr "kataloq oxuna bilmədi: %s: %s\n"
#: lib/libalpm/package.c:598 #: lib/libalpm/package.c:614
#, c-format #, c-format
msgid "could not fully load metadata for package %s-%s\n" msgid "could not fully load metadata for package %s-%s\n"
msgstr "%s-%s paketi üçün meta məlumatları tam yüklənə bilmədi\n" msgstr "%s-%s paketi üçün meta məlumatları tam yüklənə bilmədi\n"
#: lib/libalpm/package.c:869
#, c-format
msgid "invalid package metadata (name or version missing)"
msgstr "paketin meta verilənləri səhvdir (ad və ya versiya çatışmır)"
#: lib/libalpm/package.c:874
#, c-format
msgid ""
"invalid metadata for package %s-%s (package name cannot start with '.' or "
"'-')\n"
msgstr ""
"%s-%s paketi üçün meta verilənləri səhvdir (paketin adı \".\" və ya \"-\" "
"ilə başlaya bilməz)\n"
#: lib/libalpm/package.c:878
#, c-format
msgid ""
"invalid metadata for package %s-%s (package name contains invalid "
"characters)\n"
msgstr ""
"%s-%s paketi üçün meta verilənləri səhvdir (paketin adında səhv simvollar "
"var)\n"
#: lib/libalpm/package.c:885 lib/libalpm/package.c:889
#, c-format
msgid ""
"invalid metadata for package %s-%s (package version contains invalid "
"characters)\n"
msgstr ""
"%s-%s paketi üçün meta verilənlıri səhvdir (paketin adında səhv simvollar "
"var)\n"
#: lib/libalpm/package.c:895
#, c-format
msgid ""
"invalid metadata for package %s-%s (package name and version too long)\n"
msgstr ""
"%s-%s paketi üçün meta verilənləri səhvdir (paketin adı və ya versiyası çox "
"uzundur)\n"
#: lib/libalpm/remove.c:111 #: lib/libalpm/remove.c:111
#, c-format #, c-format
msgid "could not find %s in database -- skipping\n" msgid "could not find %s in database -- skipping\n"
@ -787,17 +873,17 @@ msgstr "'%s' faylı silinə bilmir: %s\n"
msgid "could not backup %s due to PATH_MAX overflow\n" msgid "could not backup %s due to PATH_MAX overflow\n"
msgstr "PATH_MAX daşması səbəbindən %s yedəklənə bilmədi\n" msgstr "PATH_MAX daşması səbəbindən %s yedəklənə bilmədi\n"
#: lib/libalpm/remove.c:554 #: lib/libalpm/remove.c:570
#, c-format #, c-format
msgid "cannot remove %s (%s)\n" msgid "cannot remove %s (%s)\n"
msgstr "%s silinə bilmir (%s)\n" msgstr "%s silinə bilmir (%s)\n"
#: lib/libalpm/remove.c:727 #: lib/libalpm/remove.c:743
#, c-format #, c-format
msgid "could not remove database entry %s-%s\n" msgid "could not remove database entry %s-%s\n"
msgstr "%s-%s verilənlər baası qeydi silinə bilmədi\n" msgstr "%s-%s verilənlər baası qeydi silinə bilmədi\n"
#: lib/libalpm/remove.c:732 #: lib/libalpm/remove.c:748
#, c-format #, c-format
msgid "could not remove entry '%s' from cache\n" msgid "could not remove entry '%s' from cache\n"
msgstr "'%s' qeydi keşdən silinə bilmədi\n" msgstr "'%s' qeydi keşdən silinə bilmədi\n"
@ -807,89 +893,89 @@ msgstr "'%s' qeydi keşdən silinə bilmədi\n"
msgid "Public keyring not found; have you run '%s'?\n" msgid "Public keyring not found; have you run '%s'?\n"
msgstr "Açıq açarlar bağı tapılmadı; '%s' başlatdınızmı?\n" msgstr "Açıq açarlar bağı tapılmadı; '%s' başlatdınızmı?\n"
#: lib/libalpm/signing.c:199 lib/libalpm/signing.c:767 #: lib/libalpm/signing.c:199 lib/libalpm/signing.c:773
#, c-format #, c-format
msgid "GPGME error: %s\n" msgid "GPGME error: %s\n"
msgstr "GPGME xətası: %s\n" msgstr "GPGME xətası: %s\n"
#: lib/libalpm/signing.c:274 #: lib/libalpm/signing.c:275
#, c-format #, c-format
msgid "looking up key %s using WKD\n" msgid "looking up key %s using WKD\n"
msgstr "WKD istifadə edərək %s açarının axtarıılması\n" msgstr "WKD istifadə edərək %s açarının axtarıılması\n"
#: lib/libalpm/signing.c:283 #: lib/libalpm/signing.c:289
#, c-format #, c-format
msgid "gpg error: %s\n" msgid "gpg error: %s\n"
msgstr "gpg xətası: %s\n" msgstr "gpg xətası: %s\n"
#: lib/libalpm/signing.c:430 lib/libalpm/signing.c:503 #: lib/libalpm/signing.c:440 lib/libalpm/signing.c:513
#, c-format #, c-format
msgid "keyring is not writable\n" msgid "keyring is not writable\n"
msgstr "açar bağı yazıla bilən deyil\n" msgstr "açar bağı yazıla bilən deyil\n"
#: lib/libalpm/signing.c:531 #: lib/libalpm/signing.c:537
#, c-format #, c-format
msgid "key \"%s\" on keyserver\n" msgid "key \"%s\" on keyserver\n"
msgstr "açar serverində \"%s\" açarı\n" msgstr "açar serverində \"%s\" açarı\n"
#: lib/libalpm/signing.c:536 #: lib/libalpm/signing.c:542
#, c-format #, c-format
msgid "key \"%s\" could not be imported\n" msgid "key \"%s\" could not be imported\n"
msgstr "açar \"%s\" idxal edilə bilmədi\n" msgstr "açar \"%s\" idxal edilə bilmədi\n"
#: lib/libalpm/signing.c:540 #: lib/libalpm/signing.c:546
#, c-format #, c-format
msgid "key \"%s\" could not be looked up remotely\n" msgid "key \"%s\" could not be looked up remotely\n"
msgstr "açar \"%s\" uzaqdan axtarıla bilmədi\n" msgstr "açar \"%s\" uzaqdan axtarıla bilmədi\n"
#: lib/libalpm/signing.c:926 lib/libalpm/sync.c:1022 #: lib/libalpm/signing.c:932 lib/libalpm/sync.c:1052
#, c-format #, c-format
msgid "%s: missing required signature\n" msgid "%s: missing required signature\n"
msgstr "%s: tələb olunana imza çatışmır\n" msgstr "%s: tələb olunana imza çatışmır\n"
#: lib/libalpm/signing.c:941 #: lib/libalpm/signing.c:947
#, c-format #, c-format
msgid "%s: signature from \"%s\" is marginal trust\n" msgid "%s: signature from \"%s\" is marginal trust\n"
msgstr "%s: \"%s\"-dən alınan imza olduqca etibrlıdır\n" msgstr "%s: \"%s\"-dən alınan imza olduqca etibrlıdır\n"
#: lib/libalpm/signing.c:949 #: lib/libalpm/signing.c:955
#, c-format #, c-format
msgid "%s: signature from \"%s\" is unknown trust\n" msgid "%s: signature from \"%s\" is unknown trust\n"
msgstr "%s: \"%s\"-dən alınan imzanın etibarlılığı naməlumdur\n" msgstr "%s: \"%s\"-dən alınan imzanın etibarlılığı naməlumdur\n"
#: lib/libalpm/signing.c:956 #: lib/libalpm/signing.c:962
#, c-format #, c-format
msgid "%s: signature from \"%s\" should never be trusted\n" msgid "%s: signature from \"%s\" should never be trusted\n"
msgstr "%s: \"%s\"-dən alınnan imza heç vaxt etibarlı ola bilməz\n" msgstr "%s: \"%s\"-dən alınnan imza heç vaxt etibarlı ola bilməz\n"
#: lib/libalpm/signing.c:968 #: lib/libalpm/signing.c:974
#, c-format #, c-format
msgid "%s: key \"%s\" is unknown\n" msgid "%s: key \"%s\" is unknown\n"
msgstr "%s: \"%s\" açarı bilinməyəndir\n" msgstr "%s: \"%s\" açarı bilinməyəndir\n"
#: lib/libalpm/signing.c:977 #: lib/libalpm/signing.c:983
#, c-format #, c-format
msgid "%s: key \"%s\" is disabled\n" msgid "%s: key \"%s\" is disabled\n"
msgstr "%s: \"%s\" açarı söndürülüb\n" msgstr "%s: \"%s\" açarı söndürülüb\n"
#: lib/libalpm/signing.c:981 #: lib/libalpm/signing.c:987
#, c-format #, c-format
msgid "%s: signature from \"%s\" is expired\n" msgid "%s: signature from \"%s\" is expired\n"
msgstr "%s: \"%s\"-dən alınana imzanın vaxtı bitib\n" msgstr "%s: \"%s\"-dən alınana imzanın vaxtı bitib\n"
#: lib/libalpm/signing.c:985 #: lib/libalpm/signing.c:991
#, c-format #, c-format
msgid "%s: signature from \"%s\" is invalid\n" msgid "%s: signature from \"%s\" is invalid\n"
msgstr "%s: \"%s\"-dən alınan imza səhvdir\n" msgstr "%s: \"%s\"-dən alınan imza səhvdir\n"
#: lib/libalpm/signing.c:1043 lib/libalpm/signing.c:1104 #: lib/libalpm/signing.c:1049 lib/libalpm/signing.c:1110
#: lib/libalpm/signing.c:1183 #: lib/libalpm/signing.c:1189
#, c-format #, c-format
msgid "%s: signature format error\n" msgid "%s: signature format error\n"
msgstr "%s: imza formatı xətası\n" msgstr "%s: imza formatı xətası\n"
#: lib/libalpm/signing.c:1136 lib/libalpm/signing.c:1169 #: lib/libalpm/signing.c:1142 lib/libalpm/signing.c:1175
#: lib/libalpm/signing.c:1177 #: lib/libalpm/signing.c:1183
#, c-format #, c-format
msgid "%s: unsupported signature format\n" msgid "%s: unsupported signature format\n"
msgstr "%s: dəstəklənməyən imza formatı\n" msgstr "%s: dəstəklənməyən imza formatı\n"
@ -924,117 +1010,124 @@ msgstr "paketin əvəzlənməsi gözardı edilir (%s-%s => %s-%s)\n"
msgid "cannot replace %s by %s\n" msgid "cannot replace %s by %s\n"
msgstr "%s, %s ilə əvəzlənə bilməz\n" msgstr "%s, %s ilə əvəzlənə bilməz\n"
#: lib/libalpm/sync.c:476 #: lib/libalpm/sync.c:477
#, c-format #, c-format
msgid "packages %s and %s have the same filename: %s\n" msgid "packages %s and %s have the same filename: %s\n"
msgstr "%s və %s paketlərinin adı eynidir: %s\n" msgstr "%s və %s paketlərinin adı eynidir: %s\n"
#: lib/libalpm/sync.c:542 lib/libalpm/sync.c:612 #: lib/libalpm/sync.c:546 lib/libalpm/sync.c:618
#, c-format #, c-format
msgid "unresolvable package conflicts detected\n" msgid "unresolvable package conflicts detected\n"
msgstr "həll olunmamış paket ziddiyyətləri aşkarlandı\n" msgstr "həll olunmamış paket ziddiyyətləri aşkarlandı\n"
#: lib/libalpm/sync.c:562 #: lib/libalpm/sync.c:566
#, c-format #, c-format
msgid "removing '%s' from target list because it conflicts with '%s'\n" msgid "removing '%s-%s' from target list because it conflicts with '%s-%s'\n"
msgstr "'%s' hədəf siyahısından silinir, çünki, o '%s' ilə ziddiyyətlidir\n" msgstr ""
"\"%s-%s\" hədəf siyahısından silinir, çünki o, \"%s-%s\" ilə ziddiyyət "
"təşkil edir\n"
#: lib/libalpm/sync.c:1036 #: lib/libalpm/sync.c:1020 lib/libalpm/sync.c:1187
#, c-format
msgid "%s: could not find package in cache\n"
msgstr "%s: keşdə paketi tapmaq mümkün olmadı\n"
#: lib/libalpm/sync.c:1066
#, c-format #, c-format
msgid "failed to read file %s: %s\n" msgid "failed to read file %s: %s\n"
msgstr "%s faylı oxuna bilmədi: %s\n" msgstr "%s faylı oxuna bilmədi: %s\n"
#: lib/libalpm/sync.c:1223 #: lib/libalpm/sync.c:1324
#, c-format #, c-format
msgid "not enough free disk space\n" msgid "not enough free disk space\n"
msgstr "kifayət qədər boş diks sahəsi yoxdur\n" msgstr "kifayət qədər boş diks sahəsi yoxdur\n"
#: lib/libalpm/sync.c:1245 #: lib/libalpm/sync.c:1346
#, c-format #, c-format
msgid "could not commit removal transaction\n" msgid "could not commit removal transaction\n"
msgstr "silinmə əməliyyatı tamamlana bilmədi\n" msgstr "silinmə əməliyyatı tamamlana bilmədi\n"
#: lib/libalpm/sync.c:1253 #: lib/libalpm/sync.c:1354
#, c-format #, c-format
msgid "could not commit transaction\n" msgid "could not commit transaction\n"
msgstr "əməliyyat tamamlana bilmədi\n" msgstr "əməliyyat tamamlana bilmədi\n"
#: lib/libalpm/trans.c:365 #: lib/libalpm/trans.c:369
#, c-format #, c-format
msgid "could not create temp directory\n" msgid "could not create temp directory\n"
msgstr "müvəqqəti qovluq yaradıla bilmədi\n" msgstr "müvəqqəti qovluq yaradıla bilmədi\n"
#: lib/libalpm/trans.c:380 #: lib/libalpm/trans.c:384
#, c-format #, c-format
msgid "could not copy tempfile to %s (%s)\n" msgid "could not copy tempfile to %s (%s)\n"
msgstr "müvəqqəti fayllar %s qovluğuna kopyalana bilmıdi (%s)\n" msgstr "müvəqqəti fayllar %s qovluğuna kopyalana bilmıdi (%s)\n"
#: lib/libalpm/trans.c:411 #: lib/libalpm/trans.c:415
#, c-format #, c-format
msgid "could not remove %s\n" msgid "could not remove %s\n"
msgstr "%s silinə bilmədi\n" msgstr "%s silinə bilmədi\n"
#: lib/libalpm/trans.c:415 #: lib/libalpm/trans.c:419
#, c-format #, c-format
msgid "could not remove tmpdir %s\n" msgid "could not remove tmpdir %s\n"
msgstr "%s müvəqqəti qovluğu silinə bilmədi\n" msgstr "%s müvəqqəti qovluğu silinə bilmədi\n"
#: lib/libalpm/util.c:488 #: lib/libalpm/util.c:512
#, c-format #, c-format
msgid "unable to write to pipe (%s)\n" msgid "unable to write to pipe (%s)\n"
msgstr "kanala yazıla bilmədi (%s)\n" msgstr "kanala yazıla bilmədi (%s)\n"
#: lib/libalpm/util.c:547 #: lib/libalpm/util.c:571
#, c-format #, c-format
msgid "unable to read from pipe (%s)\n" msgid "unable to read from pipe (%s)\n"
msgstr "kanaldan oxuna bilmədi (%s)\n" msgstr "kanaldan oxuna bilmədi (%s)\n"
#: lib/libalpm/util.c:617 lib/libalpm/util.c:623 #: lib/libalpm/util.c:641 lib/libalpm/util.c:647
#, c-format #, c-format
msgid "could not create pipe (%s)\n" msgid "could not create pipe (%s)\n"
msgstr "kanal yaradıla bilmədi (%s)\n" msgstr "kanal yaradıla bilmədi (%s)\n"
#: lib/libalpm/util.c:631 #: lib/libalpm/util.c:655
#, c-format #, c-format
msgid "could not fork a new process (%s)\n" msgid "could not fork a new process (%s)\n"
msgstr "yeni proses yaradıla bilmədi (%s)\n" msgstr "yeni proses yaradıla bilmədi (%s)\n"
#: lib/libalpm/util.c:654 #: lib/libalpm/util.c:680
#, c-format #, c-format
msgid "could not change the root directory (%s)\n" msgid "could not change the root directory (%s)\n"
msgstr "kök qovluğu dəyişdirilə bilmədi (%s)\n" msgstr "kök qovluğu dəyişdirilə bilmədi (%s)\n"
#: lib/libalpm/util.c:666 #: lib/libalpm/util.c:700
#, c-format #, c-format
msgid "call to execv failed (%s)\n" msgid "call to execv failed (%s)\n"
msgstr "execv çağırışı baş tutmadı (%s)\n" msgstr "execv çağırışı baş tutmadı (%s)\n"
#: lib/libalpm/util.c:745 #: lib/libalpm/util.c:779
#, c-format #, c-format
msgid "call to waitpid failed (%s)\n" msgid "call to waitpid failed (%s)\n"
msgstr "waitpid çağırışı baş tutmadı (%s)\n" msgstr "waitpid çağırışı baş tutmadı (%s)\n"
#: lib/libalpm/util.c:755 #: lib/libalpm/util.c:789
#, c-format #, c-format
msgid "command failed to execute correctly\n" msgid "command failed to execute correctly\n"
msgstr "əmr düzgün icra oluna bilmədi\n" msgstr "əmr düzgün icra oluna bilmədi\n"
#: lib/libalpm/util.c:762 #: lib/libalpm/util.c:796
#, c-format #, c-format
msgid "Unknown signal" msgid "Unknown signal"
msgstr "Bilinməyən siqnal" msgstr "Bilinməyən siqnal"
#: lib/libalpm/util.c:764 #: lib/libalpm/util.c:798
#, c-format #, c-format
msgid "command terminated by signal %d: %s\n" msgid "command terminated by signal %d: %s\n"
msgstr "əmr, %d siqnalı tərəfindən dayandırıldı: %s\n" msgstr "əmr, %d siqnalı tərəfindən dayandırıldı: %s\n"
#: lib/libalpm/util.c:875 #: lib/libalpm/util.c:916
#, c-format #, c-format
msgid "no %s cache exists, creating...\n" msgid "no %s cache exists, creating...\n"
msgstr "keş %s mövcud deyil, yaradılır...\n" msgstr "keş %s mövcud deyil, yaradılır...\n"
#: lib/libalpm/util.c:906 #: lib/libalpm/util.c:947
#, c-format #, c-format
msgid "couldn't find or create package cache, using %s instead\n" msgid "couldn't find or create package cache, using %s instead\n"
msgstr "paket keşi tapılmadı və yaradıla bilmədi, əvəzinə %s istifadə olunur\n" msgstr "paket keşi tapılmadı və yaradıla bilmədi, əvəzinə %s istifadə olunur\n"

View file

@ -3,16 +3,16 @@
# This file is distributed under the same license as the libalpm package. # This file is distributed under the same license as the libalpm package.
# #
# Translators: # Translators:
# Galin Iskrenov <loot270@abv.bg>, 2017-2019 # Galin Iskrenov <loot270@abv.bg>, 2017-2019,2022,2024
# Ivailo Monev <xakepa10@gmail.com>, 2014-2016 # Ivailo Monev <xakepa10@gmail.com>, 2014-2016
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Arch Linux Pacman package manager\n" "Project-Id-Version: Arch Linux Pacman package manager\n"
"Report-Msgid-Bugs-To: http://bugs.archlinux.org/index.php?project=3\n" "Report-Msgid-Bugs-To: https://gitlab.archlinux.org/pacman/pacman/-/issues\n"
"POT-Creation-Date: 2021-09-04 16:15+1000\n" "POT-Creation-Date: 2024-07-14 19:10+1000\n"
"PO-Revision-Date: 2021-05-20 02:25+0000\n" "PO-Revision-Date: 2010-11-29 23:17+0000\n"
"Last-Translator: Allan McRae <allan@archlinux.org>\n" "Last-Translator: Galin Iskrenov <loot270@abv.bg>, 2017-2019,2022,2024\n"
"Language-Team: Bulgarian (http://www.transifex.com/toofishes/archlinux-" "Language-Team: Bulgarian (http://app.transifex.com/toofishes/archlinux-"
"pacman/language/bg/)\n" "pacman/language/bg/)\n"
"Language: bg\n" "Language: bg\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
@ -40,17 +40,17 @@ msgstr "понижаване на пакет %s (%s => %s)\n"
msgid "cannot allocate disk archive object" msgid "cannot allocate disk archive object"
msgstr "не се открие указания архив на диск" msgstr "не се открие указания архив на диск"
#: lib/libalpm/add.c:143 lib/libalpm/util.c:384 #: lib/libalpm/add.c:143 lib/libalpm/util.c:408
#, c-format #, c-format
msgid "warning given when extracting %s (%s)\n" msgid "warning given when extracting %s (%s)\n"
msgstr "има предупреждение при извличане %s (%s)\n" msgstr "има предупреждение при извличане %s (%s)\n"
#: lib/libalpm/add.c:146 lib/libalpm/util.c:387 #: lib/libalpm/add.c:146 lib/libalpm/util.c:411
#, c-format #, c-format
msgid "could not extract %s (%s)\n" msgid "could not extract %s (%s)\n"
msgstr "не може да се извлече %s (%s)\n" msgstr "не може да се извлече %s (%s)\n"
#: lib/libalpm/add.c:159 lib/libalpm/dload.c:709 lib/libalpm/remove.c:534 #: lib/libalpm/add.c:159 lib/libalpm/dload.c:707 lib/libalpm/remove.c:550
#, c-format #, c-format
msgid "could not rename %s to %s (%s)\n" msgid "could not rename %s to %s (%s)\n"
msgstr "не може да се преименува %s на %s (%s)\n" msgstr "не може да се преименува %s на %s (%s)\n"
@ -95,18 +95,18 @@ msgstr "извличане: не се презаписва папка с фай
msgid "unable to extract %s.pacnew: path too long" msgid "unable to extract %s.pacnew: path too long"
msgstr "неспешно извличането на %s.pacnew: пътят е твърде дълъг" msgstr "неспешно извличането на %s.pacnew: пътят е твърде дълъг"
#: lib/libalpm/add.c:510 lib/libalpm/util.c:335 lib/libalpm/util.c:600 #: lib/libalpm/add.c:510 lib/libalpm/util.c:354 lib/libalpm/util.c:624
#, c-format #, c-format
msgid "could not get current working directory\n" msgid "could not get current working directory\n"
msgstr "не може да се разбере текущата директория\n" msgstr "не може да се разбере текущата директория\n"
#: lib/libalpm/add.c:515 lib/libalpm/util.c:340 lib/libalpm/util.c:605 #: lib/libalpm/add.c:515 lib/libalpm/util.c:359 lib/libalpm/util.c:629
#: lib/libalpm/util.c:658 #: lib/libalpm/util.c:684
#, c-format #, c-format
msgid "could not change directory to %s (%s)\n" msgid "could not change directory to %s (%s)\n"
msgstr "не може да се смени директория на %s (%s)\n" msgstr "не може да се смени директория на %s (%s)\n"
#: lib/libalpm/add.c:571 lib/libalpm/util.c:405 lib/libalpm/util.c:774 #: lib/libalpm/add.c:571 lib/libalpm/util.c:429 lib/libalpm/util.c:808
#, c-format #, c-format
msgid "could not restore working directory (%s)\n" msgid "could not restore working directory (%s)\n"
msgstr "не може да се възстанови работната директория (%s)\n" msgstr "не може да се възстанови работната директория (%s)\n"
@ -131,101 +131,116 @@ msgstr "не може да се поднови запис в базата %s-%s\
msgid "could not add entry '%s' in cache\n" msgid "could not add entry '%s' in cache\n"
msgstr "не може да се добави запис '%s' в кеша\n" msgstr "не може да се добави запис '%s' в кеша\n"
#: lib/libalpm/be_local.c:266 #: lib/libalpm/be_local.c:271
#, c-format #, c-format
msgid "error while reading file %s: %s\n" msgid "error while reading file %s: %s\n"
msgstr "грешка при четене на файл %s: %s\n" msgstr "грешка при четене на файл %s: %s\n"
#: lib/libalpm/be_local.c:376 #: lib/libalpm/be_local.c:382
#, c-format #, c-format
msgid "removing invalid database: %s\n" msgid "removing invalid database: %s\n"
msgstr "премахване на невалидна база: %s\n" msgstr "премахване на невалидна база: %s\n"
#: lib/libalpm/be_local.c:427 lib/libalpm/be_local.c:909 #: lib/libalpm/be_local.c:433 lib/libalpm/be_local.c:947
#, c-format #, c-format
msgid "could not create directory %s: %s\n" msgid "could not create directory %s: %s\n"
msgstr "не се създава директория %s: %s\n" msgstr "не се създава директория %s: %s\n"
#: lib/libalpm/be_local.c:602 lib/libalpm/be_sync.c:322 #: lib/libalpm/be_local.c:608 lib/libalpm/be_sync.c:339
#, c-format #, c-format
msgid "invalid name for database entry '%s'\n" msgid "invalid name for database entry '%s'\n"
msgstr "невалидно име за запис в базата '%s'\n" msgstr "невалидно име за запис в базата '%s'\n"
#: lib/libalpm/be_local.c:610 #: lib/libalpm/be_local.c:616
#, c-format #, c-format
msgid "duplicated database entry '%s'\n" msgid "duplicated database entry '%s'\n"
msgstr "дублиран запис в базата '%s'\n" msgstr "дублиран запис в базата '%s'\n"
#: lib/libalpm/be_local.c:622 #: lib/libalpm/be_local.c:628
#, c-format #, c-format
msgid "corrupted database entry '%s'\n" msgid "corrupted database entry '%s'\n"
msgstr "повреден запис в базата '%s'\n" msgstr "повреден запис в базата '%s'\n"
#: lib/libalpm/be_local.c:722 lib/libalpm/be_local.c:818 #: lib/libalpm/be_local.c:663
#: lib/libalpm/be_local.c:958 lib/libalpm/be_local.c:1055 #, c-format
#: lib/libalpm/diskspace.c:131 lib/libalpm/dload.c:823 lib/libalpm/util.c:254 msgid "unknown install reason for package %s: %s\n"
#: lib/libalpm/util.c:270 msgstr ""
#: lib/libalpm/be_local.c:743 lib/libalpm/be_local.c:856
#: lib/libalpm/be_local.c:996 lib/libalpm/be_local.c:1102
#: lib/libalpm/diskspace.c:135 lib/libalpm/dload.c:792 lib/libalpm/util.c:273
#: lib/libalpm/util.c:289
#, c-format #, c-format
msgid "could not open file %s: %s\n" msgid "could not open file %s: %s\n"
msgstr "не се отваря файл %s: %s\n" msgstr "не се отваря файл %s: %s\n"
#: lib/libalpm/be_local.c:738 lib/libalpm/be_sync.c:582 #: lib/libalpm/be_local.c:759 lib/libalpm/be_sync.c:612
#, c-format #, c-format
msgid "%s database is inconsistent: name mismatch on package %s\n" msgid "%s database is inconsistent: name mismatch on package %s\n"
msgstr "%s несъответствие в базата: името не съответства на пакета %s\n" msgstr "%s несъответствие в базата: името не съответства на пакета %s\n"
#: lib/libalpm/be_local.c:744 lib/libalpm/be_sync.c:588 #: lib/libalpm/be_local.c:765 lib/libalpm/be_sync.c:618
#, c-format #, c-format
msgid "%s database is inconsistent: version mismatch on package %s\n" msgid "%s database is inconsistent: version mismatch on package %s\n"
msgstr "%s несъответствие в базата: версията не съответства на пакета %s\n" msgstr "%s несъответствие в базата: версията не съответства на пакета %s\n"
#: lib/libalpm/be_local.c:785 #: lib/libalpm/be_local.c:806
#, c-format #, c-format
msgid "unknown validation type for package %s: %s\n" msgid "unknown validation type for package %s: %s\n"
msgstr "непознат валидиращ тип на пакета %s: %s\n" msgstr "непознат валидиращ тип на пакета %s: %s\n"
#: lib/libalpm/be_package.c:478 lib/libalpm/be_package.c:631 #: lib/libalpm/be_local.c:841
#: lib/libalpm/be_package.c:643 #, c-format
msgid "%s: unknown key '%s' in local database\n"
msgstr ""
#: lib/libalpm/be_package.c:255
#, c-format
msgid "%s: unknown key '%s' in package description\n"
msgstr ""
#: lib/libalpm/be_package.c:482 lib/libalpm/be_package.c:635
#: lib/libalpm/be_package.c:647
#, c-format #, c-format
msgid "error while reading package %s: %s\n" msgid "error while reading package %s: %s\n"
msgstr "грешка при четене на пакет %s: %s\n" msgstr "грешка при четене на пакет %s: %s\n"
#: lib/libalpm/be_package.c:491 lib/libalpm/be_package.c:514 #: lib/libalpm/be_package.c:495 lib/libalpm/be_package.c:518
#, c-format #, c-format
msgid "error while reading mtree of package %s: %s\n" msgid "error while reading mtree of package %s: %s\n"
msgstr "грешка при зареждане на mtree на пакет %s: %s\n" msgstr "грешка при зареждане на mtree на пакет %s: %s\n"
#: lib/libalpm/be_package.c:597 #: lib/libalpm/be_package.c:601
#, c-format #, c-format
msgid "could not parse package description file in %s\n" msgid "could not parse package description file in %s\n"
msgstr "не може да се анализира описателния файл в %s\n" msgstr "не може да се анализира описателния файл в %s\n"
#: lib/libalpm/be_package.c:602 #: lib/libalpm/be_package.c:606
#, c-format #, c-format
msgid "missing package name in %s\n" msgid "missing package name in %s\n"
msgstr "липсващо име на пакет в %s\n" msgstr "липсващо име на пакет в %s\n"
#: lib/libalpm/be_package.c:606 #: lib/libalpm/be_package.c:610
#, c-format #, c-format
msgid "missing package version in %s\n" msgid "missing package version in %s\n"
msgstr "липсваща версия на пакет в %s\n" msgstr "липсваща версия на пакет в %s\n"
#: lib/libalpm/be_package.c:610 #: lib/libalpm/be_package.c:614
#, c-format #, c-format
msgid "invalid package version in %s\n" msgid "invalid package version in %s\n"
msgstr "невалидна версия на пакет в %s\n" msgstr "невалидна версия на пакет в %s\n"
#: lib/libalpm/be_package.c:649 #: lib/libalpm/be_package.c:653
#, c-format #, c-format
msgid "missing package metadata in %s\n" msgid "missing package metadata in %s\n"
msgstr "липсват метаданни за пакета %s\n" msgstr "липсват метаданни за пакета %s\n"
#: lib/libalpm/be_package.c:741 #: lib/libalpm/be_package.c:745
#, c-format #, c-format
msgid "failed to read signature file: %s\n" msgid "failed to read signature file: %s\n"
msgstr "не се чете подписващият файл: %s\n" msgstr "не се чете подписващият файл: %s\n"
#: lib/libalpm/be_package.c:770 lib/libalpm/sync.c:953 #: lib/libalpm/be_package.c:768 lib/libalpm/sync.c:976
#, c-format #, c-format
msgid "required key missing from keyring\n" msgid "required key missing from keyring\n"
msgstr "нужния ключ липсва от keyring\n" msgstr "нужния ключ липсва от keyring\n"
@ -235,32 +250,37 @@ msgstr "нужния ключ липсва от keyring\n"
msgid "removing invalid file: %s\n" msgid "removing invalid file: %s\n"
msgstr "премахване невалиден файл: %s\n" msgstr "премахване невалиден файл: %s\n"
#: lib/libalpm/be_sync.c:449 #: lib/libalpm/be_sync.c:471
#, c-format #, c-format
msgid "could not parse package description file '%s' from db '%s'\n" msgid "could not parse package description file '%s' from db '%s'\n"
msgstr "не може да се анализира описателния файл '%s' от db '%s'\n" msgstr "не може да се анализира описателния файл '%s' от db '%s'\n"
#: lib/libalpm/be_sync.c:456 #: lib/libalpm/be_sync.c:486
#, c-format #, c-format
msgid "could not read db '%s' (%s)\n" msgid "could not read db '%s' (%s)\n"
msgstr "не да се прочете db '%s' (%s)\n" msgstr "не да се прочете db '%s' (%s)\n"
#: lib/libalpm/be_sync.c:489 lib/libalpm/be_sync.c:494 #: lib/libalpm/be_sync.c:519 lib/libalpm/be_sync.c:524
#, c-format #, c-format
msgid "%s database is inconsistent: filename of package %s is illegal\n" msgid "%s database is inconsistent: filename of package %s is illegal\n"
msgstr "%s базата е непълна: името на пакета %s е недопустимо\n" msgstr "%s базата е непълна: името на пакета %s е недопустимо\n"
#: lib/libalpm/be_sync.c:499 #: lib/libalpm/be_sync.c:529
#, c-format #, c-format
msgid "%s database is inconsistent: filename of package %s is too long\n" msgid "%s database is inconsistent: filename of package %s is too long\n"
msgstr "%s базата е непълна: името на пакета %s е твърде дълго\n" msgstr "%s базата е непълна: името на пакета %s е твърде дълго\n"
#: lib/libalpm/be_sync.c:564 #: lib/libalpm/be_sync.c:594
#, c-format #, c-format
msgid "unknown database file: %s\n" msgid "unknown database file: %s\n"
msgstr "непознат датабаза файл: %s\n" msgstr "непознат датабаза файл: %s\n"
#: lib/libalpm/db.c:344 #: lib/libalpm/be_sync.c:712
#, c-format
msgid "%s: unknown key '%s' in sync database\n"
msgstr ""
#: lib/libalpm/db.c:413
#, c-format #, c-format
msgid "database path is undefined\n" msgid "database path is undefined\n"
msgstr "пътя към базата е неопределен\n" msgstr "пътя към базата е неопределен\n"
@ -300,110 +320,125 @@ msgstr "не се получава системната информация з
msgid "could not open file: %s: %s\n" msgid "could not open file: %s: %s\n"
msgstr "не се отворя файл: %s: %s\n" msgstr "не се отворя файл: %s: %s\n"
#: lib/libalpm/diskspace.c:146 lib/libalpm/diskspace.c:159 #: lib/libalpm/diskspace.c:154 lib/libalpm/diskspace.c:167
#, c-format #, c-format
msgid "could not get filesystem information\n" msgid "could not get filesystem information\n"
msgstr "" msgstr ""
"не се получава системна информация\n" "не се получава системна информация\n"
"\n" "\n"
#: lib/libalpm/diskspace.c:242 #: lib/libalpm/diskspace.c:254
#, c-format #, c-format
msgid "could not get file information for %s\n" msgid "could not get file information for %s\n"
msgstr "неможе да се вземе информация отностно %s\n" msgstr "неможе да се вземе информация отностно %s\n"
#: lib/libalpm/diskspace.c:256 lib/libalpm/diskspace.c:315 #: lib/libalpm/diskspace.c:268 lib/libalpm/diskspace.c:327
#, c-format #, c-format
msgid "could not determine mount point for file %s\n" msgid "could not determine mount point for file %s\n"
msgstr "не може да се определи точката за монтиране на %s\n" msgstr "не може да се определи точката за монтиране на %s\n"
#: lib/libalpm/diskspace.c:354 #: lib/libalpm/diskspace.c:366
#, c-format #, c-format
msgid "Partition %s too full: %jd blocks needed, %ju blocks free\n" msgid "Partition %s too full: %jd blocks needed, %ju blocks free\n"
msgstr "Партишанът %s е твърде пълен: %jd блока са нужни, %ju блока свободни\n" msgstr "Партишанът %s е твърде пълен: %jd блока са нужни, %ju блока свободни\n"
#: lib/libalpm/diskspace.c:379 lib/libalpm/diskspace.c:433 #: lib/libalpm/diskspace.c:391 lib/libalpm/diskspace.c:445
#, c-format #, c-format
msgid "could not determine filesystem mount points\n" msgid "could not determine filesystem mount points\n"
msgstr "не може да се опреди filesystem mount points\n" msgstr "не може да се опреди filesystem mount points\n"
#: lib/libalpm/diskspace.c:385 #: lib/libalpm/diskspace.c:397
#, c-format #, c-format
msgid "could not determine cachedir mount point %s\n" msgid "could not determine cachedir mount point %s\n"
msgstr "не може да се определи cachedir mount point %s\n" msgstr "не може да се определи cachedir mount point %s\n"
#: lib/libalpm/diskspace.c:438 #: lib/libalpm/diskspace.c:450
#, c-format #, c-format
msgid "could not determine root mount point %s\n" msgid "could not determine root mount point %s\n"
msgstr "не може да се определи root mount point %s\n" msgstr "не може да се определи root mount point %s\n"
#: lib/libalpm/diskspace.c:486 #: lib/libalpm/diskspace.c:498
#, c-format #, c-format
msgid "Partition %s is mounted read only\n" msgid "Partition %s is mounted read only\n"
msgstr "Дялът %s е монтиран само за четене\n" msgstr "Дялът %s е монтиран само за четене\n"
#: lib/libalpm/dload.c:116 #: lib/libalpm/dload.c:107
#, c-format
msgid ""
"too many errors from %s, skipping for the remainder of this transaction\n"
msgstr ""
#: lib/libalpm/dload.c:220
#, c-format
msgid "disk"
msgstr "диск"
#: lib/libalpm/dload.c:392
#, c-format #, c-format
msgid "failed to create temporary file for download\n" msgid "failed to create temporary file for download\n"
msgstr "не може да се създаде временен файл за сваляне\n" msgstr "не може да се създаде временен файл за сваляне\n"
#: lib/libalpm/dload.c:509 lib/libalpm/dload.c:547 lib/libalpm/dload.c:561 #: lib/libalpm/dload.c:198
#, c-format
msgid ""
"too many errors from %s, skipping for the remainder of this transaction\n"
msgstr "твърде много грешки от %s, прескачане на останалото от транзакцията\n"
#: lib/libalpm/dload.c:215
#, c-format
msgid "fatal error from %s, skipping for the remainder of this transaction\n"
msgstr "фатална грешка от %s, прескачам остатъка от тази транзакция\n"
#: lib/libalpm/dload.c:310
#, c-format
msgid "disk"
msgstr "диск"
#: lib/libalpm/dload.c:532 lib/libalpm/dload.c:570 lib/libalpm/dload.c:583
#, c-format #, c-format
msgid "failed retrieving file '%s' from %s : %s\n" msgid "failed retrieving file '%s' from %s : %s\n"
msgstr "неуспех при извличане на файл '%s' от %s : %s\n" msgstr "неуспех при извличане на файл '%s' от %s : %s\n"
#: lib/libalpm/dload.c:539 #: lib/libalpm/dload.c:562
#, c-format #, c-format
msgid "failed retrieving file '%s' from %s : expected download size exceeded\n" msgid "failed retrieving file '%s' from %s : expected download size exceeded\n"
msgstr "" msgstr ""
"неуспех при получаването на файл '%s' от %s : очакваният размер за сваляне е " "неуспех при получаването на файл '%s' от %s : очакваният размер за сваляне е "
"надвишен\n" "надвишен\n"
#: lib/libalpm/dload.c:687 #: lib/libalpm/dload.c:685
#, c-format #, c-format
msgid "%s appears to be truncated: %jd/%jd bytes\n" msgid "%s appears to be truncated: %jd/%jd bytes\n"
msgstr "%s изглежда частичен: %jd/%jd bytes\n" msgstr "%s изглежда частичен: %jd/%jd bytes\n"
#: lib/libalpm/dload.c:787 #: lib/libalpm/dload.c:776
#, c-format #, c-format
msgid "url '%s' is invalid\n" msgid "url '%s' is invalid\n"
msgstr "url '%s' е невалиден\n" msgstr "url '%s' е невалиден\n"
#: lib/libalpm/dload.c:893 #: lib/libalpm/dload.c:864
#, c-format #, c-format
msgid "failed to setup a download payload for %s\n" msgid "failed to setup a download payload for %s\n"
msgstr "" msgstr "Неуспешно настройване на нужното за изтегляне %s\n"
#: lib/libalpm/dload.c:905 #: lib/libalpm/dload.c:876
#, c-format #, c-format
msgid "curl returned error %d from transfer\n" msgid "curl returned error %d from transfer\n"
msgstr "" msgstr "curl върна грешка %d при трансфера\n"
#: lib/libalpm/dload.c:929 #: lib/libalpm/dload.c:900
#, c-format #, c-format
msgid "curl transfer error: %d\n" msgid "curl transfer error: %d\n"
msgstr "curl трансферна грешка: %d\n"
#: lib/libalpm/dload.c:963
#, c-format
msgid "could not chdir to download directory %s\n"
msgstr "неуспех на chdir до директория за сваляне %s\n"
#: lib/libalpm/dload.c:968
#, c-format
msgid "switching to sandbox user '%s' failed!\n"
msgstr "" msgstr ""
#: lib/libalpm/dload.c:1055 lib/libalpm/sync.c:840 #: lib/libalpm/dload.c:1361 lib/libalpm/sync.c:861
#, c-format #, c-format
msgid "failed to retrieve some files\n" msgid "failed to retrieve some files\n"
msgstr "неуспех при извличане на файлове\n" msgstr "неуспех при извличане на файлове\n"
#: lib/libalpm/dload.c:1078 #: lib/libalpm/dload.c:1384
#, c-format #, c-format
msgid "download completed successfully but no file in the cache\n" msgid "download completed successfully but no file in the cache\n"
msgstr "" msgstr "изтеглянето завърши успешно, но няма файл в кеша\n"
#: lib/libalpm/error.c:40 #: lib/libalpm/error.c:40
#, c-format #, c-format
@ -533,7 +568,7 @@ msgstr "дублирана цел"
#: lib/libalpm/error.c:94 #: lib/libalpm/error.c:94
#, c-format #, c-format
msgid "duplicate filename" msgid "duplicate filename"
msgstr "" msgstr "дублиране на файлово име"
#: lib/libalpm/error.c:98 #: lib/libalpm/error.c:98
#, c-format #, c-format
@ -675,12 +710,12 @@ msgstr "компилиран без поддръжка на подпис"
msgid "unexpected error" msgid "unexpected error"
msgstr "неочаквана грешка" msgstr "неочаквана грешка"
#: lib/libalpm/handle.c:142 #: lib/libalpm/handle.c:165
#, c-format #, c-format
msgid "lock file missing %s\n" msgid "lock file missing %s\n"
msgstr "липсва заключващ файл %s\n" msgstr "липсва заключващ файл %s\n"
#: lib/libalpm/handle.c:148 #: lib/libalpm/handle.c:171
#, c-format #, c-format
msgid "could not remove lock file %s\n" msgid "could not remove lock file %s\n"
msgstr "не се премахва заключен файл %s\n" msgstr "не се премахва заключен файл %s\n"
@ -762,7 +797,7 @@ msgstr "не се отваря папка: %s: %s\n"
msgid "could not open file: %s%s: %s\n" msgid "could not open file: %s%s: %s\n"
msgstr "не може да се отвори файл: %s%s: %s\n" msgstr "не може да се отвори файл: %s%s: %s\n"
#: lib/libalpm/hook.c:595 lib/libalpm/util.c:260 #: lib/libalpm/hook.c:595 lib/libalpm/util.c:279
#, c-format #, c-format
msgid "could not stat file %s: %s\n" msgid "could not stat file %s: %s\n"
msgstr "не се коригира %s: %s\n" msgstr "не се коригира %s: %s\n"
@ -772,11 +807,43 @@ msgstr "не се коригира %s: %s\n"
msgid "could not read directory: %s: %s\n" msgid "could not read directory: %s: %s\n"
msgstr "не може да се прочете папката: %s: %s\n" msgstr "не може да се прочете папката: %s: %s\n"
#: lib/libalpm/package.c:598 #: lib/libalpm/package.c:614
#, c-format #, c-format
msgid "could not fully load metadata for package %s-%s\n" msgid "could not fully load metadata for package %s-%s\n"
msgstr "не пълно извеждане на метаданни за пакет %s-%s\n" msgstr "не пълно извеждане на метаданни за пакет %s-%s\n"
#: lib/libalpm/package.c:869
#, c-format
msgid "invalid package metadata (name or version missing)"
msgstr ""
#: lib/libalpm/package.c:874
#, c-format
msgid ""
"invalid metadata for package %s-%s (package name cannot start with '.' or "
"'-')\n"
msgstr ""
#: lib/libalpm/package.c:878
#, c-format
msgid ""
"invalid metadata for package %s-%s (package name contains invalid "
"characters)\n"
msgstr ""
#: lib/libalpm/package.c:885 lib/libalpm/package.c:889
#, c-format
msgid ""
"invalid metadata for package %s-%s (package version contains invalid "
"characters)\n"
msgstr ""
#: lib/libalpm/package.c:895
#, c-format
msgid ""
"invalid metadata for package %s-%s (package name and version too long)\n"
msgstr ""
#: lib/libalpm/remove.c:111 #: lib/libalpm/remove.c:111
#, c-format #, c-format
msgid "could not find %s in database -- skipping\n" msgid "could not find %s in database -- skipping\n"
@ -797,17 +864,17 @@ msgstr "не се премахва файла '%s': %s\n"
msgid "could not backup %s due to PATH_MAX overflow\n" msgid "could not backup %s due to PATH_MAX overflow\n"
msgstr "не може да се архивира %s поради препълване на PATH_MAX\n" msgstr "не може да се архивира %s поради препълване на PATH_MAX\n"
#: lib/libalpm/remove.c:554 #: lib/libalpm/remove.c:570
#, c-format #, c-format
msgid "cannot remove %s (%s)\n" msgid "cannot remove %s (%s)\n"
msgstr "не се премахва %s (%s)\n" msgstr "не се премахва %s (%s)\n"
#: lib/libalpm/remove.c:727 #: lib/libalpm/remove.c:743
#, c-format #, c-format
msgid "could not remove database entry %s-%s\n" msgid "could not remove database entry %s-%s\n"
msgstr "не може да се премахне запис в базата %s-%s\n" msgstr "не може да се премахне запис в базата %s-%s\n"
#: lib/libalpm/remove.c:732 #: lib/libalpm/remove.c:748
#, c-format #, c-format
msgid "could not remove entry '%s' from cache\n" msgid "could not remove entry '%s' from cache\n"
msgstr "не може да се премахне '%s' от кеша\n" msgstr "не може да се премахне '%s' от кеша\n"
@ -817,89 +884,89 @@ msgstr "не може да се премахне '%s' от кеша\n"
msgid "Public keyring not found; have you run '%s'?\n" msgid "Public keyring not found; have you run '%s'?\n"
msgstr "Публичният ключодържател не е открит; Ще пуснете ли '%s'?\n" msgstr "Публичният ключодържател не е открит; Ще пуснете ли '%s'?\n"
#: lib/libalpm/signing.c:199 lib/libalpm/signing.c:767 #: lib/libalpm/signing.c:199 lib/libalpm/signing.c:773
#, c-format #, c-format
msgid "GPGME error: %s\n" msgid "GPGME error: %s\n"
msgstr "GPGME грешка: %s\n" msgstr "GPGME грешка: %s\n"
#: lib/libalpm/signing.c:274 #: lib/libalpm/signing.c:275
#, c-format #, c-format
msgid "looking up key %s using WKD\n" msgid "looking up key %s using WKD\n"
msgstr "търсене на ключ %s използвайки WKD\n" msgstr "търсене на ключ %s използвайки WKD\n"
#: lib/libalpm/signing.c:283 #: lib/libalpm/signing.c:289
#, c-format #, c-format
msgid "gpg error: %s\n" msgid "gpg error: %s\n"
msgstr "gpg грешка: %s\n" msgstr "gpg грешка: %s\n"
#: lib/libalpm/signing.c:430 lib/libalpm/signing.c:503 #: lib/libalpm/signing.c:440 lib/libalpm/signing.c:513
#, c-format #, c-format
msgid "keyring is not writable\n" msgid "keyring is not writable\n"
msgstr "ключодържателя не се записва\n" msgstr "ключодържателя не се записва\n"
#: lib/libalpm/signing.c:531 #: lib/libalpm/signing.c:537
#, c-format #, c-format
msgid "key \"%s\" on keyserver\n" msgid "key \"%s\" on keyserver\n"
msgstr "ключ \"%s\" на ключов съвър\n" msgstr "ключ \"%s\" на ключов съвър\n"
#: lib/libalpm/signing.c:536 #: lib/libalpm/signing.c:542
#, c-format #, c-format
msgid "key \"%s\" could not be imported\n" msgid "key \"%s\" could not be imported\n"
msgstr "ключ \"%s\" не може да се внесе\n" msgstr "ключ \"%s\" не може да се внесе\n"
#: lib/libalpm/signing.c:540 #: lib/libalpm/signing.c:546
#, c-format #, c-format
msgid "key \"%s\" could not be looked up remotely\n" msgid "key \"%s\" could not be looked up remotely\n"
msgstr "ключ \"%s\" не може да се прегледа отдалечено\n" msgstr "ключ \"%s\" не може да се прегледа отдалечено\n"
#: lib/libalpm/signing.c:926 lib/libalpm/sync.c:1022 #: lib/libalpm/signing.c:932 lib/libalpm/sync.c:1052
#, c-format #, c-format
msgid "%s: missing required signature\n" msgid "%s: missing required signature\n"
msgstr "%s: липсва изискващ се подпис\n" msgstr "%s: липсва изискващ се подпис\n"
#: lib/libalpm/signing.c:941 #: lib/libalpm/signing.c:947
#, c-format #, c-format
msgid "%s: signature from \"%s\" is marginal trust\n" msgid "%s: signature from \"%s\" is marginal trust\n"
msgstr "%s: подписът от \"%s\" е изрично доверен\n" msgstr "%s: подписът от \"%s\" е изрично доверен\n"
#: lib/libalpm/signing.c:949 #: lib/libalpm/signing.c:955
#, c-format #, c-format
msgid "%s: signature from \"%s\" is unknown trust\n" msgid "%s: signature from \"%s\" is unknown trust\n"
msgstr "%s: подписът от \"%s\" е с непознато доверие\n" msgstr "%s: подписът от \"%s\" е с непознато доверие\n"
#: lib/libalpm/signing.c:956 #: lib/libalpm/signing.c:962
#, c-format #, c-format
msgid "%s: signature from \"%s\" should never be trusted\n" msgid "%s: signature from \"%s\" should never be trusted\n"
msgstr "%s: подписът от \"%s\" никога да не се му вярва\n" msgstr "%s: подписът от \"%s\" никога да не се му вярва\n"
#: lib/libalpm/signing.c:968 #: lib/libalpm/signing.c:974
#, c-format #, c-format
msgid "%s: key \"%s\" is unknown\n" msgid "%s: key \"%s\" is unknown\n"
msgstr "%s: ключ \"%s\" е непознат\n" msgstr "%s: ключ \"%s\" е непознат\n"
#: lib/libalpm/signing.c:977 #: lib/libalpm/signing.c:983
#, c-format #, c-format
msgid "%s: key \"%s\" is disabled\n" msgid "%s: key \"%s\" is disabled\n"
msgstr "%s: ключа е \"%s\" е негоден\n" msgstr "%s: ключа е \"%s\" е негоден\n"
#: lib/libalpm/signing.c:981 #: lib/libalpm/signing.c:987
#, c-format #, c-format
msgid "%s: signature from \"%s\" is expired\n" msgid "%s: signature from \"%s\" is expired\n"
msgstr "%s: подписът от \"%s\" е изтекъл\n" msgstr "%s: подписът от \"%s\" е изтекъл\n"
#: lib/libalpm/signing.c:985 #: lib/libalpm/signing.c:991
#, c-format #, c-format
msgid "%s: signature from \"%s\" is invalid\n" msgid "%s: signature from \"%s\" is invalid\n"
msgstr "%s: подписът от \"%s\" е невалиден\n" msgstr "%s: подписът от \"%s\" е невалиден\n"
#: lib/libalpm/signing.c:1043 lib/libalpm/signing.c:1104 #: lib/libalpm/signing.c:1049 lib/libalpm/signing.c:1110
#: lib/libalpm/signing.c:1183 #: lib/libalpm/signing.c:1189
#, c-format #, c-format
msgid "%s: signature format error\n" msgid "%s: signature format error\n"
msgstr "%s: грешен формат на подписа\n" msgstr "%s: грешен формат на подписа\n"
#: lib/libalpm/signing.c:1136 lib/libalpm/signing.c:1169 #: lib/libalpm/signing.c:1142 lib/libalpm/signing.c:1175
#: lib/libalpm/signing.c:1177 #: lib/libalpm/signing.c:1183
#, c-format #, c-format
msgid "%s: unsupported signature format\n" msgid "%s: unsupported signature format\n"
msgstr "%s: неподдържан формат на подписа\n" msgstr "%s: неподдържан формат на подписа\n"
@ -934,117 +1001,123 @@ msgstr "игнориране замяната на пакет (%s-%s => %s-%s)\n
msgid "cannot replace %s by %s\n" msgid "cannot replace %s by %s\n"
msgstr "не може да се замести %s от %s\n" msgstr "не може да се замести %s от %s\n"
#: lib/libalpm/sync.c:476 #: lib/libalpm/sync.c:477
#, c-format #, c-format
msgid "packages %s and %s have the same filename: %s\n" msgid "packages %s and %s have the same filename: %s\n"
msgstr "" msgstr "пакети %s и %s имат еднакво име: %s\n"
#: lib/libalpm/sync.c:542 lib/libalpm/sync.c:612 #: lib/libalpm/sync.c:546 lib/libalpm/sync.c:618
#, c-format #, c-format
msgid "unresolvable package conflicts detected\n" msgid "unresolvable package conflicts detected\n"
msgstr "засечени нерешени пакетни конфликти\n" msgstr "засечени нерешени пакетни конфликти\n"
#: lib/libalpm/sync.c:562 #: lib/libalpm/sync.c:566
#, c-format #, c-format
msgid "removing '%s' from target list because it conflicts with '%s'\n" msgid "removing '%s-%s' from target list because it conflicts with '%s-%s'\n"
msgstr "премахване '%s' от целевия списък заради конфликт с '%s'\n" msgstr ""
"Премахване на '%s-%s' от целевия списък, защото противоречи на '%s-%s'\n"
#: lib/libalpm/sync.c:1036 #: lib/libalpm/sync.c:1020 lib/libalpm/sync.c:1187
#, c-format
msgid "%s: could not find package in cache\n"
msgstr "%s: не можах да намеря пакет в кеша\n"
#: lib/libalpm/sync.c:1066
#, c-format #, c-format
msgid "failed to read file %s: %s\n" msgid "failed to read file %s: %s\n"
msgstr "не успя да се прочете файла %s: %s\n" msgstr "не успя да се прочете файла %s: %s\n"
#: lib/libalpm/sync.c:1223 #: lib/libalpm/sync.c:1324
#, c-format #, c-format
msgid "not enough free disk space\n" msgid "not enough free disk space\n"
msgstr "няма достатъчно свободно място на диска\n" msgstr "няма достатъчно свободно място на диска\n"
#: lib/libalpm/sync.c:1245 #: lib/libalpm/sync.c:1346
#, c-format #, c-format
msgid "could not commit removal transaction\n" msgid "could not commit removal transaction\n"
msgstr "не се потвърждава транзакцията по премахване\n" msgstr "не се потвърждава транзакцията по премахване\n"
#: lib/libalpm/sync.c:1253 #: lib/libalpm/sync.c:1354
#, c-format #, c-format
msgid "could not commit transaction\n" msgid "could not commit transaction\n"
msgstr "не се потвърждава транзакцията\n" msgstr "не се потвърждава транзакцията\n"
#: lib/libalpm/trans.c:365 #: lib/libalpm/trans.c:369
#, c-format #, c-format
msgid "could not create temp directory\n" msgid "could not create temp directory\n"
msgstr "не се създава temp папка\n" msgstr "не се създава temp папка\n"
#: lib/libalpm/trans.c:380 #: lib/libalpm/trans.c:384
#, c-format #, c-format
msgid "could not copy tempfile to %s (%s)\n" msgid "could not copy tempfile to %s (%s)\n"
msgstr "не се копира tempfile в %s (%s)\n" msgstr "не се копира tempfile в %s (%s)\n"
#: lib/libalpm/trans.c:411 #: lib/libalpm/trans.c:415
#, c-format #, c-format
msgid "could not remove %s\n" msgid "could not remove %s\n"
msgstr "не се премахва %s\n" msgstr "не се премахва %s\n"
#: lib/libalpm/trans.c:415 #: lib/libalpm/trans.c:419
#, c-format #, c-format
msgid "could not remove tmpdir %s\n" msgid "could not remove tmpdir %s\n"
msgstr "не се премахва tmpdir %s\n" msgstr "не се премахва tmpdir %s\n"
#: lib/libalpm/util.c:488 #: lib/libalpm/util.c:512
#, c-format #, c-format
msgid "unable to write to pipe (%s)\n" msgid "unable to write to pipe (%s)\n"
msgstr "неъспешно записването в тръбата (%s)\n" msgstr "неъспешно записването в тръбата (%s)\n"
#: lib/libalpm/util.c:547 #: lib/libalpm/util.c:571
#, c-format #, c-format
msgid "unable to read from pipe (%s)\n" msgid "unable to read from pipe (%s)\n"
msgstr "неуспешно четенето от тръбата (%s)\n" msgstr "неуспешно четенето от тръбата (%s)\n"
#: lib/libalpm/util.c:617 lib/libalpm/util.c:623 #: lib/libalpm/util.c:641 lib/libalpm/util.c:647
#, c-format #, c-format
msgid "could not create pipe (%s)\n" msgid "could not create pipe (%s)\n"
msgstr "не се създава pipe (%s)\n" msgstr "не се създава pipe (%s)\n"
#: lib/libalpm/util.c:631 #: lib/libalpm/util.c:655
#, c-format #, c-format
msgid "could not fork a new process (%s)\n" msgid "could not fork a new process (%s)\n"
msgstr "could not fork a new process (%s)\n" msgstr "could not fork a new process (%s)\n"
#: lib/libalpm/util.c:654 #: lib/libalpm/util.c:680
#, c-format #, c-format
msgid "could not change the root directory (%s)\n" msgid "could not change the root directory (%s)\n"
msgstr "не може да се промени root папката (%s)\n" msgstr "не може да се промени root папката (%s)\n"
#: lib/libalpm/util.c:666 #: lib/libalpm/util.c:700
#, c-format #, c-format
msgid "call to execv failed (%s)\n" msgid "call to execv failed (%s)\n"
msgstr "неуспех при извикване execv (%s)\n" msgstr "неуспех при извикване execv (%s)\n"
#: lib/libalpm/util.c:745 #: lib/libalpm/util.c:779
#, c-format #, c-format
msgid "call to waitpid failed (%s)\n" msgid "call to waitpid failed (%s)\n"
msgstr "неуспех при извикване на waitpid (%s)\n" msgstr "неуспех при извикване на waitpid (%s)\n"
#: lib/libalpm/util.c:755 #: lib/libalpm/util.c:789
#, c-format #, c-format
msgid "command failed to execute correctly\n" msgid "command failed to execute correctly\n"
msgstr "неуспешно правилно изпълнение на команда\n" msgstr "неуспешно правилно изпълнение на команда\n"
#: lib/libalpm/util.c:762 #: lib/libalpm/util.c:796
#, c-format #, c-format
msgid "Unknown signal" msgid "Unknown signal"
msgstr "Неизвестен сигнал" msgstr "Неизвестен сигнал"
#: lib/libalpm/util.c:764 #: lib/libalpm/util.c:798
#, c-format #, c-format
msgid "command terminated by signal %d: %s\n" msgid "command terminated by signal %d: %s\n"
msgstr "командата прекратена от сигнал %d: %s\n" msgstr "командата прекратена от сигнал %d: %s\n"
#: lib/libalpm/util.c:875 #: lib/libalpm/util.c:916
#, c-format #, c-format
msgid "no %s cache exists, creating...\n" msgid "no %s cache exists, creating...\n"
msgstr "не %s съществуваш кеш, създаване...\n" msgstr "не %s съществуваш кеш, създаване...\n"
#: lib/libalpm/util.c:906 #: lib/libalpm/util.c:947
#, c-format #, c-format
msgid "couldn't find or create package cache, using %s instead\n" msgid "couldn't find or create package cache, using %s instead\n"
msgstr "не се открива или създава пакетен кеш, използва се %s\n" msgstr "не се открива или създава пакетен кеш, използва се %s\n"

View file

@ -8,21 +8,21 @@
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Arch Linux Pacman package manager\n" "Project-Id-Version: Arch Linux Pacman package manager\n"
"Report-Msgid-Bugs-To: http://bugs.archlinux.org/index.php?project=3\n" "Report-Msgid-Bugs-To: https://gitlab.archlinux.org/pacman/pacman/-/issues\n"
"POT-Creation-Date: 2021-09-04 16:15+1000\n" "POT-Creation-Date: 2024-07-14 19:10+1000\n"
"PO-Revision-Date: 2021-05-20 02:25+0000\n" "PO-Revision-Date: 2010-11-29 23:17+0000\n"
"Last-Translator: Allan McRae <allan@archlinux.org>\n" "Last-Translator: Gwenn M <tornoz@laposte.net>, 2015,2018-2019\n"
"Language-Team: Breton (http://www.transifex.com/toofishes/archlinux-pacman/" "Language-Team: Breton (http://app.transifex.com/toofishes/archlinux-pacman/"
"language/br/)\n" "language/br/)\n"
"Language: br\n" "Language: br\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=5; plural=((n%10 == 1) && (n%100 != 11) && (n%100 !" "Plural-Forms: nplurals=5; plural=((n%10 == 1) && (n%100 != 11) && (n%100 !"
"=71) && (n%100 !=91) ? 0 :(n%10 == 2) && (n%100 != 12) && (n%100 !=72) && (n" "=71) && (n%100 !=91) ? 0 :(n%10 == 2) && (n%100 != 12) && (n%100 !=72) && "
"%100 !=92) ? 1 :(n%10 ==3 || n%10==4 || n%10==9) && (n%100 < 10 || n% 100 > " "(n%100 !=92) ? 1 :(n%10 ==3 || n%10==4 || n%10==9) && (n%100 < 10 || n% 100 "
"19) && (n%100 < 70 || n%100 > 79) && (n%100 < 90 || n%100 > 99) ? 2 :(n != 0 " "> 19) && (n%100 < 70 || n%100 > 79) && (n%100 < 90 || n%100 > 99) ? 2 :(n != "
"&& n % 1000000 == 0) ? 3 : 4);\n" "0 && n % 1000000 == 0) ? 3 : 4);\n"
#: lib/libalpm/add.c:90 lib/libalpm/sync.c:279 #: lib/libalpm/add.c:90 lib/libalpm/sync.c:279
#, c-format #, c-format
@ -44,17 +44,17 @@ msgstr "o pellgargañ ar pakad %s (%s => %s)\n"
msgid "cannot allocate disk archive object" msgid "cannot allocate disk archive object"
msgstr "n'haller ket derannañ an ergorenn kantenn diell" msgstr "n'haller ket derannañ an ergorenn kantenn diell"
#: lib/libalpm/add.c:143 lib/libalpm/util.c:384 #: lib/libalpm/add.c:143 lib/libalpm/util.c:408
#, c-format #, c-format
msgid "warning given when extracting %s (%s)\n" msgid "warning given when extracting %s (%s)\n"
msgstr "ur galv diwall a zo bet roet en ur eztennañ %s (%s)\n" msgstr "ur galv diwall a zo bet roet en ur eztennañ %s (%s)\n"
#: lib/libalpm/add.c:146 lib/libalpm/util.c:387 #: lib/libalpm/add.c:146 lib/libalpm/util.c:411
#, c-format #, c-format
msgid "could not extract %s (%s)\n" msgid "could not extract %s (%s)\n"
msgstr "n'haller ket eztennañ %s (%s)\n" msgstr "n'haller ket eztennañ %s (%s)\n"
#: lib/libalpm/add.c:159 lib/libalpm/dload.c:709 lib/libalpm/remove.c:534 #: lib/libalpm/add.c:159 lib/libalpm/dload.c:707 lib/libalpm/remove.c:550
#, c-format #, c-format
msgid "could not rename %s to %s (%s)\n" msgid "could not rename %s to %s (%s)\n"
msgstr "n'haller ket adenvel %s e %s (%s)\n" msgstr "n'haller ket adenvel %s e %s (%s)\n"
@ -99,18 +99,18 @@ msgstr "eztannadur : flastradur kavlec'h gant restr %s ebet \n"
msgid "unable to extract %s.pacnew: path too long" msgid "unable to extract %s.pacnew: path too long"
msgstr "n'haller ket eztennañ %s.pacnew : re hir eo an treug" msgstr "n'haller ket eztennañ %s.pacnew : re hir eo an treug"
#: lib/libalpm/add.c:510 lib/libalpm/util.c:335 lib/libalpm/util.c:600 #: lib/libalpm/add.c:510 lib/libalpm/util.c:354 lib/libalpm/util.c:624
#, c-format #, c-format
msgid "could not get current working directory\n" msgid "could not get current working directory\n"
msgstr "n'haller ket kaout ar c'havlec'h labour bremanel\n" msgstr "n'haller ket kaout ar c'havlec'h labour bremanel\n"
#: lib/libalpm/add.c:515 lib/libalpm/util.c:340 lib/libalpm/util.c:605 #: lib/libalpm/add.c:515 lib/libalpm/util.c:359 lib/libalpm/util.c:629
#: lib/libalpm/util.c:658 #: lib/libalpm/util.c:684
#, c-format #, c-format
msgid "could not change directory to %s (%s)\n" msgid "could not change directory to %s (%s)\n"
msgstr "n'haller ket kemmañ ar c'havlec'h da %s (%s)\n" msgstr "n'haller ket kemmañ ar c'havlec'h da %s (%s)\n"
#: lib/libalpm/add.c:571 lib/libalpm/util.c:405 lib/libalpm/util.c:774 #: lib/libalpm/add.c:571 lib/libalpm/util.c:429 lib/libalpm/util.c:808
#, c-format #, c-format
msgid "could not restore working directory (%s)\n" msgid "could not restore working directory (%s)\n"
msgstr "n'haller ket assav ar c'havlec'h labour (%s)\n" msgstr "n'haller ket assav ar c'havlec'h labour (%s)\n"
@ -135,102 +135,117 @@ msgstr "n'haller ket hizivaat an enankad stlennvon %s-%s\n"
msgid "could not add entry '%s' in cache\n" msgid "could not add entry '%s' in cache\n"
msgstr "n'haller ket ouzhpennañ an enankad '%s' er skurzer\n" msgstr "n'haller ket ouzhpennañ an enankad '%s' er skurzer\n"
#: lib/libalpm/be_local.c:266 #: lib/libalpm/be_local.c:271
#, c-format #, c-format
msgid "error while reading file %s: %s\n" msgid "error while reading file %s: %s\n"
msgstr "fazi en ul lenn ar restr %s : %s\n" msgstr "fazi en ul lenn ar restr %s : %s\n"
#: lib/libalpm/be_local.c:376 #: lib/libalpm/be_local.c:382
#, c-format #, c-format
msgid "removing invalid database: %s\n" msgid "removing invalid database: %s\n"
msgstr "o dilemel ar stlennvon direizh : %s\n" msgstr "o dilemel ar stlennvon direizh : %s\n"
#: lib/libalpm/be_local.c:427 lib/libalpm/be_local.c:909 #: lib/libalpm/be_local.c:433 lib/libalpm/be_local.c:947
#, c-format #, c-format
msgid "could not create directory %s: %s\n" msgid "could not create directory %s: %s\n"
msgstr "n'haller ker krouiñ ar c'havlec'h %s : %s\n" msgstr "n'haller ker krouiñ ar c'havlec'h %s : %s\n"
#: lib/libalpm/be_local.c:602 lib/libalpm/be_sync.c:322 #: lib/libalpm/be_local.c:608 lib/libalpm/be_sync.c:339
#, c-format #, c-format
msgid "invalid name for database entry '%s'\n" msgid "invalid name for database entry '%s'\n"
msgstr "anv direizh evit an enankad stlennvon '%s'\n" msgstr "anv direizh evit an enankad stlennvon '%s'\n"
#: lib/libalpm/be_local.c:610 #: lib/libalpm/be_local.c:616
#, c-format #, c-format
msgid "duplicated database entry '%s'\n" msgid "duplicated database entry '%s'\n"
msgstr "enankad stlennvon eilet '%s'\n" msgstr "enankad stlennvon eilet '%s'\n"
#: lib/libalpm/be_local.c:622 #: lib/libalpm/be_local.c:628
#, c-format #, c-format
msgid "corrupted database entry '%s'\n" msgid "corrupted database entry '%s'\n"
msgstr "enankad stlennvon kontronet '%s'\n" msgstr "enankad stlennvon kontronet '%s'\n"
#: lib/libalpm/be_local.c:722 lib/libalpm/be_local.c:818 #: lib/libalpm/be_local.c:663
#: lib/libalpm/be_local.c:958 lib/libalpm/be_local.c:1055 #, c-format
#: lib/libalpm/diskspace.c:131 lib/libalpm/dload.c:823 lib/libalpm/util.c:254 msgid "unknown install reason for package %s: %s\n"
#: lib/libalpm/util.c:270 msgstr ""
#: lib/libalpm/be_local.c:743 lib/libalpm/be_local.c:856
#: lib/libalpm/be_local.c:996 lib/libalpm/be_local.c:1102
#: lib/libalpm/diskspace.c:135 lib/libalpm/dload.c:792 lib/libalpm/util.c:273
#: lib/libalpm/util.c:289
#, c-format #, c-format
msgid "could not open file %s: %s\n" msgid "could not open file %s: %s\n"
msgstr "n'haller ket digeriñ ar restr %s : %s\n" msgstr "n'haller ket digeriñ ar restr %s : %s\n"
#: lib/libalpm/be_local.c:738 lib/libalpm/be_sync.c:582 #: lib/libalpm/be_local.c:759 lib/libalpm/be_sync.c:612
#, c-format #, c-format
msgid "%s database is inconsistent: name mismatch on package %s\n" msgid "%s database is inconsistent: name mismatch on package %s\n"
msgstr "digantalc'hek eo ar stlennvon %s : digenglotus eo anvioù ar pakad %s\n" msgstr "digantalc'hek eo ar stlennvon %s : digenglotus eo anvioù ar pakad %s\n"
#: lib/libalpm/be_local.c:744 lib/libalpm/be_sync.c:588 #: lib/libalpm/be_local.c:765 lib/libalpm/be_sync.c:618
#, c-format #, c-format
msgid "%s database is inconsistent: version mismatch on package %s\n" msgid "%s database is inconsistent: version mismatch on package %s\n"
msgstr "" msgstr ""
"digantalc'hek eo ar stlennvon %s : digenglotus eo handelvioù ar pakad %s\n" "digantalc'hek eo ar stlennvon %s : digenglotus eo handelvioù ar pakad %s\n"
#: lib/libalpm/be_local.c:785 #: lib/libalpm/be_local.c:806
#, c-format #, c-format
msgid "unknown validation type for package %s: %s\n" msgid "unknown validation type for package %s: %s\n"
msgstr "doare gwiriadur dianav evit ar pakad %s : %s\n" msgstr "doare gwiriadur dianav evit ar pakad %s : %s\n"
#: lib/libalpm/be_package.c:478 lib/libalpm/be_package.c:631 #: lib/libalpm/be_local.c:841
#: lib/libalpm/be_package.c:643 #, c-format
msgid "%s: unknown key '%s' in local database\n"
msgstr ""
#: lib/libalpm/be_package.c:255
#, c-format
msgid "%s: unknown key '%s' in package description\n"
msgstr ""
#: lib/libalpm/be_package.c:482 lib/libalpm/be_package.c:635
#: lib/libalpm/be_package.c:647
#, c-format #, c-format
msgid "error while reading package %s: %s\n" msgid "error while reading package %s: %s\n"
msgstr "fazi en ul lenn ar pakad %s : %s\n" msgstr "fazi en ul lenn ar pakad %s : %s\n"
#: lib/libalpm/be_package.c:491 lib/libalpm/be_package.c:514 #: lib/libalpm/be_package.c:495 lib/libalpm/be_package.c:518
#, c-format #, c-format
msgid "error while reading mtree of package %s: %s\n" msgid "error while reading mtree of package %s: %s\n"
msgstr "fazi en ul lenn mtree ar pakad %s : %s\n" msgstr "fazi en ul lenn mtree ar pakad %s : %s\n"
#: lib/libalpm/be_package.c:597 #: lib/libalpm/be_package.c:601
#, c-format #, c-format
msgid "could not parse package description file in %s\n" msgid "could not parse package description file in %s\n"
msgstr "n'haller ket dezrannañ restr deskrivañ ar pakad e %s\n" msgstr "n'haller ket dezrannañ restr deskrivañ ar pakad e %s\n"
#: lib/libalpm/be_package.c:602 #: lib/libalpm/be_package.c:606
#, c-format #, c-format
msgid "missing package name in %s\n" msgid "missing package name in %s\n"
msgstr "mankout a ra an anv pakad e %s\n" msgstr "mankout a ra an anv pakad e %s\n"
#: lib/libalpm/be_package.c:606 #: lib/libalpm/be_package.c:610
#, c-format #, c-format
msgid "missing package version in %s\n" msgid "missing package version in %s\n"
msgstr "mankout a ra handelv ar pakad e %s\n" msgstr "mankout a ra handelv ar pakad e %s\n"
#: lib/libalpm/be_package.c:610 #: lib/libalpm/be_package.c:614
#, c-format #, c-format
msgid "invalid package version in %s\n" msgid "invalid package version in %s\n"
msgstr "handelv pakad direizh e %s\n" msgstr "handelv pakad direizh e %s\n"
#: lib/libalpm/be_package.c:649 #: lib/libalpm/be_package.c:653
#, c-format #, c-format
msgid "missing package metadata in %s\n" msgid "missing package metadata in %s\n"
msgstr "mankout a ra metaroadennoù ar pakad e %s\n" msgstr "mankout a ra metaroadennoù ar pakad e %s\n"
#: lib/libalpm/be_package.c:741 #: lib/libalpm/be_package.c:745
#, c-format #, c-format
msgid "failed to read signature file: %s\n" msgid "failed to read signature file: %s\n"
msgstr "fazi en ul lenn ar restr sinadur : %s\n" msgstr "fazi en ul lenn ar restr sinadur : %s\n"
#: lib/libalpm/be_package.c:770 lib/libalpm/sync.c:953 #: lib/libalpm/be_package.c:768 lib/libalpm/sync.c:976
#, c-format #, c-format
msgid "required key missing from keyring\n" msgid "required key missing from keyring\n"
msgstr "mankout a ra an alc'hwez goulennet en droñsell\n" msgstr "mankout a ra an alc'hwez goulennet en droñsell\n"
@ -240,34 +255,39 @@ msgstr "mankout a ra an alc'hwez goulennet en droñsell\n"
msgid "removing invalid file: %s\n" msgid "removing invalid file: %s\n"
msgstr "o dilemel ar restr direizh : %s\n" msgstr "o dilemel ar restr direizh : %s\n"
#: lib/libalpm/be_sync.c:449 #: lib/libalpm/be_sync.c:471
#, c-format #, c-format
msgid "could not parse package description file '%s' from db '%s'\n" msgid "could not parse package description file '%s' from db '%s'\n"
msgstr "" msgstr ""
"n'haller ket dezrannañ ar restr deskrivadur pakadoù '%s' adalek ar sv '%s'\n" "n'haller ket dezrannañ ar restr deskrivadur pakadoù '%s' adalek ar sv '%s'\n"
#: lib/libalpm/be_sync.c:456 #: lib/libalpm/be_sync.c:486
#, c-format #, c-format
msgid "could not read db '%s' (%s)\n" msgid "could not read db '%s' (%s)\n"
msgstr "n'haller ket lenn ar stlennvon '%s' (%s)\n" msgstr "n'haller ket lenn ar stlennvon '%s' (%s)\n"
#: lib/libalpm/be_sync.c:489 lib/libalpm/be_sync.c:494 #: lib/libalpm/be_sync.c:519 lib/libalpm/be_sync.c:524
#, c-format #, c-format
msgid "%s database is inconsistent: filename of package %s is illegal\n" msgid "%s database is inconsistent: filename of package %s is illegal\n"
msgstr "" msgstr ""
"digantalc'hek eo ar stlennvon %s : didalvoudek eo anv restr ar pakad %s\n" "digantalc'hek eo ar stlennvon %s : didalvoudek eo anv restr ar pakad %s\n"
#: lib/libalpm/be_sync.c:499 #: lib/libalpm/be_sync.c:529
#, c-format #, c-format
msgid "%s database is inconsistent: filename of package %s is too long\n" msgid "%s database is inconsistent: filename of package %s is too long\n"
msgstr "digantalc'hek eo ar stlennvon %s : re hir eo anv restr ar pakad %s\n" msgstr "digantalc'hek eo ar stlennvon %s : re hir eo anv restr ar pakad %s\n"
#: lib/libalpm/be_sync.c:564 #: lib/libalpm/be_sync.c:594
#, c-format #, c-format
msgid "unknown database file: %s\n" msgid "unknown database file: %s\n"
msgstr "restr stlennvon dianav : %s\n" msgstr "restr stlennvon dianav : %s\n"
#: lib/libalpm/db.c:344 #: lib/libalpm/be_sync.c:712
#, c-format
msgid "%s: unknown key '%s' in sync database\n"
msgstr ""
#: lib/libalpm/db.c:413
#, c-format #, c-format
msgid "database path is undefined\n" msgid "database path is undefined\n"
msgstr "andespizet eo treug ar stlennvon\n" msgstr "andespizet eo treug ar stlennvon\n"
@ -307,106 +327,121 @@ msgstr "n'haller ket kaout titouroù ar reizhad evit %s : %s\n"
msgid "could not open file: %s: %s\n" msgid "could not open file: %s: %s\n"
msgstr "n'haller ket digeriñ ar restr : %s : %s\n" msgstr "n'haller ket digeriñ ar restr : %s : %s\n"
#: lib/libalpm/diskspace.c:146 lib/libalpm/diskspace.c:159 #: lib/libalpm/diskspace.c:154 lib/libalpm/diskspace.c:167
#, c-format #, c-format
msgid "could not get filesystem information\n" msgid "could not get filesystem information\n"
msgstr "n'haller ket kaout titouroù ar reizhad restroù\n" msgstr "n'haller ket kaout titouroù ar reizhad restroù\n"
#: lib/libalpm/diskspace.c:242 #: lib/libalpm/diskspace.c:254
#, c-format #, c-format
msgid "could not get file information for %s\n" msgid "could not get file information for %s\n"
msgstr "n'haller ket tapout titouroù ar restr evit %s\n" msgstr "n'haller ket tapout titouroù ar restr evit %s\n"
#: lib/libalpm/diskspace.c:256 lib/libalpm/diskspace.c:315 #: lib/libalpm/diskspace.c:268 lib/libalpm/diskspace.c:327
#, c-format #, c-format
msgid "could not determine mount point for file %s\n" msgid "could not determine mount point for file %s\n"
msgstr "n'haller ket despizañ ar poentoù kenstrollañ evit ar restr %s\n" msgstr "n'haller ket despizañ ar poentoù kenstrollañ evit ar restr %s\n"
#: lib/libalpm/diskspace.c:354 #: lib/libalpm/diskspace.c:366
#, c-format #, c-format
msgid "Partition %s too full: %jd blocks needed, %ju blocks free\n" msgid "Partition %s too full: %jd blocks needed, %ju blocks free\n"
msgstr "" msgstr ""
"Re leun eo ar parzhad %s : %jd a vloc'hoù dleet, %ju a vloc'hoù dieub\n" "Re leun eo ar parzhad %s : %jd a vloc'hoù dleet, %ju a vloc'hoù dieub\n"
#: lib/libalpm/diskspace.c:379 lib/libalpm/diskspace.c:433 #: lib/libalpm/diskspace.c:391 lib/libalpm/diskspace.c:445
#, c-format #, c-format
msgid "could not determine filesystem mount points\n" msgid "could not determine filesystem mount points\n"
msgstr "n'haller ket despizañ poentoù kenstrollañ ar reizhad restroù\n" msgstr "n'haller ket despizañ poentoù kenstrollañ ar reizhad restroù\n"
#: lib/libalpm/diskspace.c:385 #: lib/libalpm/diskspace.c:397
#, c-format #, c-format
msgid "could not determine cachedir mount point %s\n" msgid "could not determine cachedir mount point %s\n"
msgstr "n'haller ket despizañ poent kenstrollañ ar c'havlec'h krubuilh %s\n" msgstr "n'haller ket despizañ poent kenstrollañ ar c'havlec'h krubuilh %s\n"
#: lib/libalpm/diskspace.c:438 #: lib/libalpm/diskspace.c:450
#, c-format #, c-format
msgid "could not determine root mount point %s\n" msgid "could not determine root mount point %s\n"
msgstr "n'haller ket despizañ poent kenstrollañ ar gwrizienn %s\n" msgstr "n'haller ket despizañ poent kenstrollañ ar gwrizienn %s\n"
#: lib/libalpm/diskspace.c:486 #: lib/libalpm/diskspace.c:498
#, c-format #, c-format
msgid "Partition %s is mounted read only\n" msgid "Partition %s is mounted read only\n"
msgstr "E mod lenn nemetken eo kenstrollet ar parzhad %s\n" msgstr "E mod lenn nemetken eo kenstrollet ar parzhad %s\n"
#: lib/libalpm/dload.c:116 #: lib/libalpm/dload.c:107
#, c-format
msgid "failed to create temporary file for download\n"
msgstr "fazi en ur c'hrouiñ ar restr padennek evit ar pellgargañ\n"
#: lib/libalpm/dload.c:198
#, c-format #, c-format
msgid "" msgid ""
"too many errors from %s, skipping for the remainder of this transaction\n" "too many errors from %s, skipping for the remainder of this transaction\n"
msgstr "" msgstr ""
#: lib/libalpm/dload.c:220 #: lib/libalpm/dload.c:215
#, c-format
msgid "fatal error from %s, skipping for the remainder of this transaction\n"
msgstr ""
#: lib/libalpm/dload.c:310
#, c-format #, c-format
msgid "disk" msgid "disk"
msgstr "pladenn" msgstr "pladenn"
#: lib/libalpm/dload.c:392 #: lib/libalpm/dload.c:532 lib/libalpm/dload.c:570 lib/libalpm/dload.c:583
#, c-format
msgid "failed to create temporary file for download\n"
msgstr "fazi en ur c'hrouiñ ar restr padennek evit ar pellgargañ\n"
#: lib/libalpm/dload.c:509 lib/libalpm/dload.c:547 lib/libalpm/dload.c:561
#, c-format #, c-format
msgid "failed retrieving file '%s' from %s : %s\n" msgid "failed retrieving file '%s' from %s : %s\n"
msgstr "fazi en ur adkavout ar restr '%s' adalek %s : %s\n" msgstr "fazi en ur adkavout ar restr '%s' adalek %s : %s\n"
#: lib/libalpm/dload.c:539 #: lib/libalpm/dload.c:562
#, c-format #, c-format
msgid "failed retrieving file '%s' from %s : expected download size exceeded\n" msgid "failed retrieving file '%s' from %s : expected download size exceeded\n"
msgstr "" msgstr ""
"fazi en ur adkavout ar restr '%s' adalek %s : re vras eo ment ar " "fazi en ur adkavout ar restr '%s' adalek %s : re vras eo ment ar "
"pellgargadur\n" "pellgargadur\n"
#: lib/libalpm/dload.c:687 #: lib/libalpm/dload.c:685
#, c-format #, c-format
msgid "%s appears to be truncated: %jd/%jd bytes\n" msgid "%s appears to be truncated: %jd/%jd bytes\n"
msgstr "krennet e seblant bezañ %s : %jd/%jd eizhbit\n" msgstr "krennet e seblant bezañ %s : %jd/%jd eizhbit\n"
#: lib/libalpm/dload.c:787 #: lib/libalpm/dload.c:776
#, c-format #, c-format
msgid "url '%s' is invalid\n" msgid "url '%s' is invalid\n"
msgstr "direizh eo an url '%s'\n" msgstr "direizh eo an url '%s'\n"
#: lib/libalpm/dload.c:893 #: lib/libalpm/dload.c:864
#, c-format #, c-format
msgid "failed to setup a download payload for %s\n" msgid "failed to setup a download payload for %s\n"
msgstr "" msgstr ""
#: lib/libalpm/dload.c:905 #: lib/libalpm/dload.c:876
#, c-format #, c-format
msgid "curl returned error %d from transfer\n" msgid "curl returned error %d from transfer\n"
msgstr "" msgstr ""
#: lib/libalpm/dload.c:929 #: lib/libalpm/dload.c:900
#, c-format #, c-format
msgid "curl transfer error: %d\n" msgid "curl transfer error: %d\n"
msgstr "" msgstr ""
#: lib/libalpm/dload.c:1055 lib/libalpm/sync.c:840 #: lib/libalpm/dload.c:963
#, c-format
msgid "could not chdir to download directory %s\n"
msgstr "n'heller ket erounit chdir evit pellgargañ ar c'havlec'h %s\n"
#: lib/libalpm/dload.c:968
#, c-format
msgid "switching to sandbox user '%s' failed!\n"
msgstr ""
#: lib/libalpm/dload.c:1361 lib/libalpm/sync.c:861
#, c-format #, c-format
msgid "failed to retrieve some files\n" msgid "failed to retrieve some files\n"
msgstr "c'hwitadenn war atoradur restroù 'zo\n" msgstr "c'hwitadenn war atoradur restroù 'zo\n"
#: lib/libalpm/dload.c:1078 #: lib/libalpm/dload.c:1384
#, c-format #, c-format
msgid "download completed successfully but no file in the cache\n" msgid "download completed successfully but no file in the cache\n"
msgstr "" msgstr ""
@ -682,12 +717,12 @@ msgstr ""
msgid "unexpected error" msgid "unexpected error"
msgstr "fazi dic'hortoz" msgstr "fazi dic'hortoz"
#: lib/libalpm/handle.c:142 #: lib/libalpm/handle.c:165
#, c-format #, c-format
msgid "lock file missing %s\n" msgid "lock file missing %s\n"
msgstr "mankout a ra ar restr marilhañ %s\n" msgstr "mankout a ra ar restr marilhañ %s\n"
#: lib/libalpm/handle.c:148 #: lib/libalpm/handle.c:171
#, c-format #, c-format
msgid "could not remove lock file %s\n" msgid "could not remove lock file %s\n"
msgstr "n'haller ket dilemel ar restr marilhañ %s\n" msgstr "n'haller ket dilemel ar restr marilhañ %s\n"
@ -769,7 +804,7 @@ msgstr "n'haller ket digeriñ ar c'havlec'h : %s : %s\n"
msgid "could not open file: %s%s: %s\n" msgid "could not open file: %s%s: %s\n"
msgstr "n'haller ket digeriñ ar restr: %s %s: %s\n" msgstr "n'haller ket digeriñ ar restr: %s %s: %s\n"
#: lib/libalpm/hook.c:595 lib/libalpm/util.c:260 #: lib/libalpm/hook.c:595 lib/libalpm/util.c:279
#, c-format #, c-format
msgid "could not stat file %s: %s\n" msgid "could not stat file %s: %s\n"
msgstr "n'heller ket kaout stad ar restr %s : %s\n" msgstr "n'heller ket kaout stad ar restr %s : %s\n"
@ -779,11 +814,43 @@ msgstr "n'heller ket kaout stad ar restr %s : %s\n"
msgid "could not read directory: %s: %s\n" msgid "could not read directory: %s: %s\n"
msgstr "n'haller ket lenn ar c'havlec'h: %s: %s\n" msgstr "n'haller ket lenn ar c'havlec'h: %s: %s\n"
#: lib/libalpm/package.c:598 #: lib/libalpm/package.c:614
#, c-format #, c-format
msgid "could not fully load metadata for package %s-%s\n" msgid "could not fully load metadata for package %s-%s\n"
msgstr "n'haller ket kargañ ar metaroadennoù a-bezh evit ar pakad %s-%s\n" msgstr "n'haller ket kargañ ar metaroadennoù a-bezh evit ar pakad %s-%s\n"
#: lib/libalpm/package.c:869
#, c-format
msgid "invalid package metadata (name or version missing)"
msgstr ""
#: lib/libalpm/package.c:874
#, c-format
msgid ""
"invalid metadata for package %s-%s (package name cannot start with '.' or "
"'-')\n"
msgstr ""
#: lib/libalpm/package.c:878
#, c-format
msgid ""
"invalid metadata for package %s-%s (package name contains invalid "
"characters)\n"
msgstr ""
#: lib/libalpm/package.c:885 lib/libalpm/package.c:889
#, c-format
msgid ""
"invalid metadata for package %s-%s (package version contains invalid "
"characters)\n"
msgstr ""
#: lib/libalpm/package.c:895
#, c-format
msgid ""
"invalid metadata for package %s-%s (package name and version too long)\n"
msgstr ""
#: lib/libalpm/remove.c:111 #: lib/libalpm/remove.c:111
#, c-format #, c-format
msgid "could not find %s in database -- skipping\n" msgid "could not find %s in database -- skipping\n"
@ -804,17 +871,17 @@ msgstr "n'heller ket dilemel ar restr '%s' : %s\n"
msgid "could not backup %s due to PATH_MAX overflow\n" msgid "could not backup %s due to PATH_MAX overflow\n"
msgstr "n'haller ket gwarediñ %sabalamour d'an dic'hlann PATH_MAX\n" msgstr "n'haller ket gwarediñ %sabalamour d'an dic'hlann PATH_MAX\n"
#: lib/libalpm/remove.c:554 #: lib/libalpm/remove.c:570
#, c-format #, c-format
msgid "cannot remove %s (%s)\n" msgid "cannot remove %s (%s)\n"
msgstr "n'heller ket dilemel %s (%s)\n" msgstr "n'heller ket dilemel %s (%s)\n"
#: lib/libalpm/remove.c:727 #: lib/libalpm/remove.c:743
#, c-format #, c-format
msgid "could not remove database entry %s-%s\n" msgid "could not remove database entry %s-%s\n"
msgstr "n'haller ket dilemel an enankad stlennvon %s-%s\n" msgstr "n'haller ket dilemel an enankad stlennvon %s-%s\n"
#: lib/libalpm/remove.c:732 #: lib/libalpm/remove.c:748
#, c-format #, c-format
msgid "could not remove entry '%s' from cache\n" msgid "could not remove entry '%s' from cache\n"
msgstr "n'haller ket dilemel an enankad '%s' eus ar c'hrubuilh\n" msgstr "n'haller ket dilemel an enankad '%s' eus ar c'hrubuilh\n"
@ -824,89 +891,89 @@ msgstr "n'haller ket dilemel an enankad '%s' eus ar c'hrubuilh\n"
msgid "Public keyring not found; have you run '%s'?\n" msgid "Public keyring not found; have you run '%s'?\n"
msgstr "Ne gaver ket an droñsell foran; lañset ho peus '%s'?\n" msgstr "Ne gaver ket an droñsell foran; lañset ho peus '%s'?\n"
#: lib/libalpm/signing.c:199 lib/libalpm/signing.c:767 #: lib/libalpm/signing.c:199 lib/libalpm/signing.c:773
#, c-format #, c-format
msgid "GPGME error: %s\n" msgid "GPGME error: %s\n"
msgstr "Fazi GPGME: %s\n" msgstr "Fazi GPGME: %s\n"
#: lib/libalpm/signing.c:274 #: lib/libalpm/signing.c:275
#, c-format #, c-format
msgid "looking up key %s using WKD\n" msgid "looking up key %s using WKD\n"
msgstr "" msgstr ""
#: lib/libalpm/signing.c:283 #: lib/libalpm/signing.c:289
#, c-format #, c-format
msgid "gpg error: %s\n" msgid "gpg error: %s\n"
msgstr "" msgstr ""
#: lib/libalpm/signing.c:430 lib/libalpm/signing.c:503 #: lib/libalpm/signing.c:440 lib/libalpm/signing.c:513
#, c-format #, c-format
msgid "keyring is not writable\n" msgid "keyring is not writable\n"
msgstr "n'haller ket skrivañ en droñsell\n" msgstr "n'haller ket skrivañ en droñsell\n"
#: lib/libalpm/signing.c:531 #: lib/libalpm/signing.c:537
#, c-format #, c-format
msgid "key \"%s\" on keyserver\n" msgid "key \"%s\" on keyserver\n"
msgstr "" msgstr ""
#: lib/libalpm/signing.c:536 #: lib/libalpm/signing.c:542
#, c-format #, c-format
msgid "key \"%s\" could not be imported\n" msgid "key \"%s\" could not be imported\n"
msgstr "" msgstr ""
#: lib/libalpm/signing.c:540 #: lib/libalpm/signing.c:546
#, c-format #, c-format
msgid "key \"%s\" could not be looked up remotely\n" msgid "key \"%s\" could not be looked up remotely\n"
msgstr "" msgstr ""
#: lib/libalpm/signing.c:926 lib/libalpm/sync.c:1022 #: lib/libalpm/signing.c:932 lib/libalpm/sync.c:1052
#, c-format #, c-format
msgid "%s: missing required signature\n" msgid "%s: missing required signature\n"
msgstr "%s : mankout a ra ar sinadur dleet\n" msgstr "%s : mankout a ra ar sinadur dleet\n"
#: lib/libalpm/signing.c:941 #: lib/libalpm/signing.c:947
#, c-format #, c-format
msgid "%s: signature from \"%s\" is marginal trust\n" msgid "%s: signature from \"%s\" is marginal trust\n"
msgstr "%s: mentrezh ar sinadur \"%s\" n'eo ket fizius-tre\n" msgstr "%s: mentrezh ar sinadur \"%s\" n'eo ket fizius-tre\n"
#: lib/libalpm/signing.c:949 #: lib/libalpm/signing.c:955
#, c-format #, c-format
msgid "%s: signature from \"%s\" is unknown trust\n" msgid "%s: signature from \"%s\" is unknown trust\n"
msgstr "" msgstr ""
#: lib/libalpm/signing.c:956 #: lib/libalpm/signing.c:962
#, c-format #, c-format
msgid "%s: signature from \"%s\" should never be trusted\n" msgid "%s: signature from \"%s\" should never be trusted\n"
msgstr "" msgstr ""
#: lib/libalpm/signing.c:968 #: lib/libalpm/signing.c:974
#, c-format #, c-format
msgid "%s: key \"%s\" is unknown\n" msgid "%s: key \"%s\" is unknown\n"
msgstr "%s: dianav zo an alc'hwez \"%s\"\n" msgstr "%s: dianav zo an alc'hwez \"%s\"\n"
#: lib/libalpm/signing.c:977 #: lib/libalpm/signing.c:983
#, c-format #, c-format
msgid "%s: key \"%s\" is disabled\n" msgid "%s: key \"%s\" is disabled\n"
msgstr "" msgstr ""
#: lib/libalpm/signing.c:981 #: lib/libalpm/signing.c:987
#, c-format #, c-format
msgid "%s: signature from \"%s\" is expired\n" msgid "%s: signature from \"%s\" is expired\n"
msgstr "" msgstr ""
#: lib/libalpm/signing.c:985 #: lib/libalpm/signing.c:991
#, c-format #, c-format
msgid "%s: signature from \"%s\" is invalid\n" msgid "%s: signature from \"%s\" is invalid\n"
msgstr "" msgstr ""
#: lib/libalpm/signing.c:1043 lib/libalpm/signing.c:1104 #: lib/libalpm/signing.c:1049 lib/libalpm/signing.c:1110
#: lib/libalpm/signing.c:1183 #: lib/libalpm/signing.c:1189
#, c-format #, c-format
msgid "%s: signature format error\n" msgid "%s: signature format error\n"
msgstr "" msgstr ""
#: lib/libalpm/signing.c:1136 lib/libalpm/signing.c:1169 #: lib/libalpm/signing.c:1142 lib/libalpm/signing.c:1175
#: lib/libalpm/signing.c:1177 #: lib/libalpm/signing.c:1183
#, c-format #, c-format
msgid "%s: unsupported signature format\n" msgid "%s: unsupported signature format\n"
msgstr "%s: mentrezh sinadur anskor\n" msgstr "%s: mentrezh sinadur anskor\n"
@ -941,117 +1008,122 @@ msgstr "o leuskel an erlec'hiadur pakad a-gostez (%s-%s => %s-%s)\n"
msgid "cannot replace %s by %s\n" msgid "cannot replace %s by %s\n"
msgstr "n'haller ket erlec'hiañ %s gant %s\n" msgstr "n'haller ket erlec'hiañ %s gant %s\n"
#: lib/libalpm/sync.c:476 #: lib/libalpm/sync.c:477
#, c-format #, c-format
msgid "packages %s and %s have the same filename: %s\n" msgid "packages %s and %s have the same filename: %s\n"
msgstr "" msgstr ""
#: lib/libalpm/sync.c:542 lib/libalpm/sync.c:612 #: lib/libalpm/sync.c:546 lib/libalpm/sync.c:618
#, c-format #, c-format
msgid "unresolvable package conflicts detected\n" msgid "unresolvable package conflicts detected\n"
msgstr "tabutoù n'haller ket diskoulmañ a zo bet dinoet\n" msgstr "tabutoù n'haller ket diskoulmañ a zo bet dinoet\n"
#: lib/libalpm/sync.c:562 #: lib/libalpm/sync.c:566
#, c-format #, c-format
msgid "removing '%s' from target list because it conflicts with '%s'\n" msgid "removing '%s-%s' from target list because it conflicts with '%s-%s'\n"
msgstr "o dilemel '%s' eus ar roll bukenn dre m'en deus un tabut gant '%s'\n" msgstr ""
#: lib/libalpm/sync.c:1036 #: lib/libalpm/sync.c:1020 lib/libalpm/sync.c:1187
#, c-format
msgid "%s: could not find package in cache\n"
msgstr ""
#: lib/libalpm/sync.c:1066
#, c-format #, c-format
msgid "failed to read file %s: %s\n" msgid "failed to read file %s: %s\n"
msgstr "" msgstr ""
#: lib/libalpm/sync.c:1223 #: lib/libalpm/sync.c:1324
#, c-format #, c-format
msgid "not enough free disk space\n" msgid "not enough free disk space\n"
msgstr "n'eus ket plas dieub a-walc'h war ar bladenn\n" msgstr "n'eus ket plas dieub a-walc'h war ar bladenn\n"
#: lib/libalpm/sync.c:1245 #: lib/libalpm/sync.c:1346
#, c-format #, c-format
msgid "could not commit removal transaction\n" msgid "could not commit removal transaction\n"
msgstr "n'haller ket erounit an treuzkas dilemel\n" msgstr "n'haller ket erounit an treuzkas dilemel\n"
#: lib/libalpm/sync.c:1253 #: lib/libalpm/sync.c:1354
#, c-format #, c-format
msgid "could not commit transaction\n" msgid "could not commit transaction\n"
msgstr "n'haller ket erounit an treuzkas\n" msgstr "n'haller ket erounit an treuzkas\n"
#: lib/libalpm/trans.c:365 #: lib/libalpm/trans.c:369
#, c-format #, c-format
msgid "could not create temp directory\n" msgid "could not create temp directory\n"
msgstr "n'haller ket krouiñ ur c'havlec'h padennek\n" msgstr "n'haller ket krouiñ ur c'havlec'h padennek\n"
#: lib/libalpm/trans.c:380 #: lib/libalpm/trans.c:384
#, c-format #, c-format
msgid "could not copy tempfile to %s (%s)\n" msgid "could not copy tempfile to %s (%s)\n"
msgstr "n'haller ket eilañ ar restr padennek e %s (%s)\n" msgstr "n'haller ket eilañ ar restr padennek e %s (%s)\n"
#: lib/libalpm/trans.c:411 #: lib/libalpm/trans.c:415
#, c-format #, c-format
msgid "could not remove %s\n" msgid "could not remove %s\n"
msgstr "n'haller ket dilemel %s\n" msgstr "n'haller ket dilemel %s\n"
#: lib/libalpm/trans.c:415 #: lib/libalpm/trans.c:419
#, c-format #, c-format
msgid "could not remove tmpdir %s\n" msgid "could not remove tmpdir %s\n"
msgstr "n'haller ket dilemel ar c'havlec'h padennek e %s\n" msgstr "n'haller ket dilemel ar c'havlec'h padennek e %s\n"
#: lib/libalpm/util.c:488 #: lib/libalpm/util.c:512
#, c-format #, c-format
msgid "unable to write to pipe (%s)\n" msgid "unable to write to pipe (%s)\n"
msgstr "n'haller ket skrivañ er gorzenn (%s)\n" msgstr "n'haller ket skrivañ er gorzenn (%s)\n"
#: lib/libalpm/util.c:547 #: lib/libalpm/util.c:571
#, c-format #, c-format
msgid "unable to read from pipe (%s)\n" msgid "unable to read from pipe (%s)\n"
msgstr "n'haller ket lenn ar gorzenn (%s)\n" msgstr "n'haller ket lenn ar gorzenn (%s)\n"
#: lib/libalpm/util.c:617 lib/libalpm/util.c:623 #: lib/libalpm/util.c:641 lib/libalpm/util.c:647
#, c-format #, c-format
msgid "could not create pipe (%s)\n" msgid "could not create pipe (%s)\n"
msgstr "n'haller ket krouiñ ar gorzenn (%s)\n" msgstr "n'haller ket krouiñ ar gorzenn (%s)\n"
#: lib/libalpm/util.c:631 #: lib/libalpm/util.c:655
#, c-format #, c-format
msgid "could not fork a new process (%s)\n" msgid "could not fork a new process (%s)\n"
msgstr "n'haller ket genel un araezad nevez (%s)\n" msgstr "n'haller ket genel un araezad nevez (%s)\n"
#: lib/libalpm/util.c:654 #: lib/libalpm/util.c:680
#, c-format #, c-format
msgid "could not change the root directory (%s)\n" msgid "could not change the root directory (%s)\n"
msgstr "n'haller ket kemmañ ar c'havlec'h gwrizienn (%s)\n" msgstr "n'haller ket kemmañ ar c'havlec'h gwrizienn (%s)\n"
#: lib/libalpm/util.c:666 #: lib/libalpm/util.c:700
#, c-format #, c-format
msgid "call to execv failed (%s)\n" msgid "call to execv failed (%s)\n"
msgstr "c'hwitadenn war galv execv (%s)\n" msgstr "c'hwitadenn war galv execv (%s)\n"
#: lib/libalpm/util.c:745 #: lib/libalpm/util.c:779
#, c-format #, c-format
msgid "call to waitpid failed (%s)\n" msgid "call to waitpid failed (%s)\n"
msgstr "c'hwitadenn war galv waitpid (%s)\n" msgstr "c'hwitadenn war galv waitpid (%s)\n"
#: lib/libalpm/util.c:755 #: lib/libalpm/util.c:789
#, c-format #, c-format
msgid "command failed to execute correctly\n" msgid "command failed to execute correctly\n"
msgstr "c'hwitadenn war erounezadur an urzh\n" msgstr "c'hwitadenn war erounezadur an urzh\n"
#: lib/libalpm/util.c:762 #: lib/libalpm/util.c:796
#, c-format #, c-format
msgid "Unknown signal" msgid "Unknown signal"
msgstr "Arhent dianav" msgstr "Arhent dianav"
#: lib/libalpm/util.c:764 #: lib/libalpm/util.c:798
#, c-format #, c-format
msgid "command terminated by signal %d: %s\n" msgid "command terminated by signal %d: %s\n"
msgstr "arsavet eo bet an urzh gant an arhent %d : %s\n" msgstr "arsavet eo bet an urzh gant an arhent %d : %s\n"
#: lib/libalpm/util.c:875 #: lib/libalpm/util.c:916
#, c-format #, c-format
msgid "no %s cache exists, creating...\n" msgid "no %s cache exists, creating...\n"
msgstr "n'eus krubuilh %s ebet, o krouiñ...\n" msgstr "n'eus krubuilh %s ebet, o krouiñ...\n"
#: lib/libalpm/util.c:906 #: lib/libalpm/util.c:947
#, c-format #, c-format
msgid "couldn't find or create package cache, using %s instead\n" msgid "couldn't find or create package cache, using %s instead\n"
msgstr "" msgstr ""

View file

@ -10,16 +10,16 @@
# Josep <jpreales@gmail.com>, 2011,2013 # Josep <jpreales@gmail.com>, 2011,2013
# Josep <jpreales@gmail.com>, 2011,2013 # Josep <jpreales@gmail.com>, 2011,2013
# Josep <jpreales@gmail.com>, 2011 # Josep <jpreales@gmail.com>, 2011
# Davidmp <medipas@gmail.com>, 2015-2019,2021 # Davidmp <medipas@gmail.com>, 2015-2019,2021,2023-2024
# Ramon Buldó <rbuldo@gmail.com>, 2014 # Ramon Buldó <rbuldo@gmail.com>, 2014
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Arch Linux Pacman package manager\n" "Project-Id-Version: Arch Linux Pacman package manager\n"
"Report-Msgid-Bugs-To: http://bugs.archlinux.org/index.php?project=3\n" "Report-Msgid-Bugs-To: https://gitlab.archlinux.org/pacman/pacman/-/issues\n"
"POT-Creation-Date: 2021-09-04 16:15+1000\n" "POT-Creation-Date: 2024-07-14 19:10+1000\n"
"PO-Revision-Date: 2021-05-20 08:01+0000\n" "PO-Revision-Date: 2010-11-29 23:17+0000\n"
"Last-Translator: Davidmp <medipas@gmail.com>\n" "Last-Translator: Davidmp <medipas@gmail.com>, 2015-2019,2021,2023-2024\n"
"Language-Team: Catalan (http://www.transifex.com/toofishes/archlinux-pacman/" "Language-Team: Catalan (http://app.transifex.com/toofishes/archlinux-pacman/"
"language/ca/)\n" "language/ca/)\n"
"Language: ca\n" "Language: ca\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
@ -47,17 +47,17 @@ msgstr "Es degrada el paquet %s (%s => %s).\n"
msgid "cannot allocate disk archive object" msgid "cannot allocate disk archive object"
msgstr "no es pot assignar l'objecte d'arxiu del disc." msgstr "no es pot assignar l'objecte d'arxiu del disc."
#: lib/libalpm/add.c:143 lib/libalpm/util.c:384 #: lib/libalpm/add.c:143 lib/libalpm/util.c:408
#, c-format #, c-format
msgid "warning given when extracting %s (%s)\n" msgid "warning given when extracting %s (%s)\n"
msgstr "avís en extreure %s (%s)\n" msgstr "avís en extreure %s (%s)\n"
#: lib/libalpm/add.c:146 lib/libalpm/util.c:387 #: lib/libalpm/add.c:146 lib/libalpm/util.c:411
#, c-format #, c-format
msgid "could not extract %s (%s)\n" msgid "could not extract %s (%s)\n"
msgstr "no s'ha pogut extreure %s (%s).\n" msgstr "no s'ha pogut extreure %s (%s).\n"
#: lib/libalpm/add.c:159 lib/libalpm/dload.c:709 lib/libalpm/remove.c:534 #: lib/libalpm/add.c:159 lib/libalpm/dload.c:707 lib/libalpm/remove.c:550
#, c-format #, c-format
msgid "could not rename %s to %s (%s)\n" msgid "could not rename %s to %s (%s)\n"
msgstr "no s'ha pogut canviar el nom %s a %s (%s).\n" msgstr "no s'ha pogut canviar el nom %s a %s (%s).\n"
@ -102,18 +102,18 @@ msgstr "extracció: no se sobreescriurà el directori amb el fitxer %s.\n"
msgid "unable to extract %s.pacnew: path too long" msgid "unable to extract %s.pacnew: path too long"
msgstr "no es pot extreure %s.pacnew: camí massa llarg." msgstr "no es pot extreure %s.pacnew: camí massa llarg."
#: lib/libalpm/add.c:510 lib/libalpm/util.c:335 lib/libalpm/util.c:600 #: lib/libalpm/add.c:510 lib/libalpm/util.c:354 lib/libalpm/util.c:624
#, c-format #, c-format
msgid "could not get current working directory\n" msgid "could not get current working directory\n"
msgstr "no s'ha pogut obtenir el directori de treball actual.\n" msgstr "no s'ha pogut obtenir el directori de treball actual.\n"
#: lib/libalpm/add.c:515 lib/libalpm/util.c:340 lib/libalpm/util.c:605 #: lib/libalpm/add.c:515 lib/libalpm/util.c:359 lib/libalpm/util.c:629
#: lib/libalpm/util.c:658 #: lib/libalpm/util.c:684
#, c-format #, c-format
msgid "could not change directory to %s (%s)\n" msgid "could not change directory to %s (%s)\n"
msgstr "no s'ha pogut canviar el directori a %s (%s).\n" msgstr "no s'ha pogut canviar el directori a %s (%s).\n"
#: lib/libalpm/add.c:571 lib/libalpm/util.c:405 lib/libalpm/util.c:774 #: lib/libalpm/add.c:571 lib/libalpm/util.c:429 lib/libalpm/util.c:808
#, c-format #, c-format
msgid "could not restore working directory (%s)\n" msgid "could not restore working directory (%s)\n"
msgstr "no s'ha pogut restaurar el directori de treball (%s).\n" msgstr "no s'ha pogut restaurar el directori de treball (%s).\n"
@ -138,104 +138,119 @@ msgstr "no s'ha pogut actualitzar l'entrada de la base de dades %s-%s.\n"
msgid "could not add entry '%s' in cache\n" msgid "could not add entry '%s' in cache\n"
msgstr "no s'ha pogut afegir l'entrada \"%s\" a la memòria cau.\n" msgstr "no s'ha pogut afegir l'entrada \"%s\" a la memòria cau.\n"
#: lib/libalpm/be_local.c:266 #: lib/libalpm/be_local.c:271
#, c-format #, c-format
msgid "error while reading file %s: %s\n" msgid "error while reading file %s: %s\n"
msgstr "error en llegir el fitxer %s: %s\n" msgstr "error en llegir el fitxer %s: %s\n"
#: lib/libalpm/be_local.c:376 #: lib/libalpm/be_local.c:382
#, c-format #, c-format
msgid "removing invalid database: %s\n" msgid "removing invalid database: %s\n"
msgstr "Se suprimeix la base de dades no vàlida: %s.\n" msgstr "Se suprimeix la base de dades no vàlida: %s.\n"
#: lib/libalpm/be_local.c:427 lib/libalpm/be_local.c:909 #: lib/libalpm/be_local.c:433 lib/libalpm/be_local.c:947
#, c-format #, c-format
msgid "could not create directory %s: %s\n" msgid "could not create directory %s: %s\n"
msgstr "no s'ha pogut crear el directori %s: %s\n" msgstr "no s'ha pogut crear el directori %s: %s\n"
#: lib/libalpm/be_local.c:602 lib/libalpm/be_sync.c:322 #: lib/libalpm/be_local.c:608 lib/libalpm/be_sync.c:339
#, c-format #, c-format
msgid "invalid name for database entry '%s'\n" msgid "invalid name for database entry '%s'\n"
msgstr "nom no vàlid per a l'entrada de la base de dades \"%s\".\n" msgstr "nom no vàlid per a l'entrada de la base de dades \"%s\".\n"
#: lib/libalpm/be_local.c:610 #: lib/libalpm/be_local.c:616
#, c-format #, c-format
msgid "duplicated database entry '%s'\n" msgid "duplicated database entry '%s'\n"
msgstr "entrada de la base de dades duplicada \"%s\".\n" msgstr "entrada de la base de dades duplicada \"%s\".\n"
#: lib/libalpm/be_local.c:622 #: lib/libalpm/be_local.c:628
#, c-format #, c-format
msgid "corrupted database entry '%s'\n" msgid "corrupted database entry '%s'\n"
msgstr "entrada de la base de dades corrupta \"%s'\".\n" msgstr "entrada de la base de dades corrupta \"%s'\".\n"
#: lib/libalpm/be_local.c:722 lib/libalpm/be_local.c:818 #: lib/libalpm/be_local.c:663
#: lib/libalpm/be_local.c:958 lib/libalpm/be_local.c:1055 #, c-format
#: lib/libalpm/diskspace.c:131 lib/libalpm/dload.c:823 lib/libalpm/util.c:254 msgid "unknown install reason for package %s: %s\n"
#: lib/libalpm/util.c:270 msgstr "raó d'instal·lació desconeguda per al paquet %s:%s\n"
#: lib/libalpm/be_local.c:743 lib/libalpm/be_local.c:856
#: lib/libalpm/be_local.c:996 lib/libalpm/be_local.c:1102
#: lib/libalpm/diskspace.c:135 lib/libalpm/dload.c:792 lib/libalpm/util.c:273
#: lib/libalpm/util.c:289
#, c-format #, c-format
msgid "could not open file %s: %s\n" msgid "could not open file %s: %s\n"
msgstr "no s'ha pogut obrir el fitxer %s: %s\n" msgstr "no s'ha pogut obrir el fitxer %s: %s\n"
#: lib/libalpm/be_local.c:738 lib/libalpm/be_sync.c:582 #: lib/libalpm/be_local.c:759 lib/libalpm/be_sync.c:612
#, c-format #, c-format
msgid "%s database is inconsistent: name mismatch on package %s\n" msgid "%s database is inconsistent: name mismatch on package %s\n"
msgstr "" msgstr ""
"la base de dades %s és inconsistent: no coincidència de nom al paquet %s.\n" "la base de dades %s és inconsistent: no coincidència de nom al paquet %s.\n"
#: lib/libalpm/be_local.c:744 lib/libalpm/be_sync.c:588 #: lib/libalpm/be_local.c:765 lib/libalpm/be_sync.c:618
#, c-format #, c-format
msgid "%s database is inconsistent: version mismatch on package %s\n" msgid "%s database is inconsistent: version mismatch on package %s\n"
msgstr "" msgstr ""
"la base de dades %s és inconsistent: no coincidència de versió al paquet " "la base de dades %s és inconsistent: no coincidència de versió al paquet "
"%s.\n" "%s.\n"
#: lib/libalpm/be_local.c:785 #: lib/libalpm/be_local.c:806
#, c-format #, c-format
msgid "unknown validation type for package %s: %s\n" msgid "unknown validation type for package %s: %s\n"
msgstr "tipus de validació desconeguda per al paquet %s: %s\n" msgstr "tipus de validació desconeguda per al paquet %s: %s\n"
#: lib/libalpm/be_package.c:478 lib/libalpm/be_package.c:631 #: lib/libalpm/be_local.c:841
#: lib/libalpm/be_package.c:643 #, c-format
msgid "%s: unknown key '%s' in local database\n"
msgstr "%s: clau desconeguda %s a la base de dades local\n"
#: lib/libalpm/be_package.c:255
#, c-format
msgid "%s: unknown key '%s' in package description\n"
msgstr "%s: clau desconeguda %s a la descripció del paquet\n"
#: lib/libalpm/be_package.c:482 lib/libalpm/be_package.c:635
#: lib/libalpm/be_package.c:647
#, c-format #, c-format
msgid "error while reading package %s: %s\n" msgid "error while reading package %s: %s\n"
msgstr "error en llegir el paquet %s: %s\n" msgstr "error en llegir el paquet %s: %s\n"
#: lib/libalpm/be_package.c:491 lib/libalpm/be_package.c:514 #: lib/libalpm/be_package.c:495 lib/libalpm/be_package.c:518
#, c-format #, c-format
msgid "error while reading mtree of package %s: %s\n" msgid "error while reading mtree of package %s: %s\n"
msgstr "error en llegir mtree del paquet %s: %s.\n" msgstr "error en llegir mtree del paquet %s: %s.\n"
#: lib/libalpm/be_package.c:597 #: lib/libalpm/be_package.c:601
#, c-format #, c-format
msgid "could not parse package description file in %s\n" msgid "could not parse package description file in %s\n"
msgstr "no s'ha pogut analitzar el fitxer de descripció de paquet a %s.\n" msgstr "no s'ha pogut analitzar el fitxer de descripció de paquet a %s.\n"
#: lib/libalpm/be_package.c:602 #: lib/libalpm/be_package.c:606
#, c-format #, c-format
msgid "missing package name in %s\n" msgid "missing package name in %s\n"
msgstr "manca el nom del paquet a %s.\n" msgstr "manca el nom del paquet a %s.\n"
#: lib/libalpm/be_package.c:606 #: lib/libalpm/be_package.c:610
#, c-format #, c-format
msgid "missing package version in %s\n" msgid "missing package version in %s\n"
msgstr "manca la versió del paquet a %s.\n" msgstr "manca la versió del paquet a %s.\n"
#: lib/libalpm/be_package.c:610 #: lib/libalpm/be_package.c:614
#, c-format #, c-format
msgid "invalid package version in %s\n" msgid "invalid package version in %s\n"
msgstr "versió del paquet no vàlida a %s.\n" msgstr "versió del paquet no vàlida a %s.\n"
#: lib/libalpm/be_package.c:649 #: lib/libalpm/be_package.c:653
#, c-format #, c-format
msgid "missing package metadata in %s\n" msgid "missing package metadata in %s\n"
msgstr "manquen les metadades del paquet a %s.\n" msgstr "manquen les metadades del paquet a %s.\n"
#: lib/libalpm/be_package.c:741 #: lib/libalpm/be_package.c:745
#, c-format #, c-format
msgid "failed to read signature file: %s\n" msgid "failed to read signature file: %s\n"
msgstr "ha fallat llegir el fitxer de signatures: %s.\n" msgstr "ha fallat llegir el fitxer de signatures: %s.\n"
#: lib/libalpm/be_package.c:770 lib/libalpm/sync.c:953 #: lib/libalpm/be_package.c:768 lib/libalpm/sync.c:976
#, c-format #, c-format
msgid "required key missing from keyring\n" msgid "required key missing from keyring\n"
msgstr "la clau requerida manca al clauer.\n" msgstr "la clau requerida manca al clauer.\n"
@ -245,35 +260,40 @@ msgstr "la clau requerida manca al clauer.\n"
msgid "removing invalid file: %s\n" msgid "removing invalid file: %s\n"
msgstr "Se suprimeix el fitxer no vàlid %s.\n" msgstr "Se suprimeix el fitxer no vàlid %s.\n"
#: lib/libalpm/be_sync.c:449 #: lib/libalpm/be_sync.c:471
#, c-format #, c-format
msgid "could not parse package description file '%s' from db '%s'\n" msgid "could not parse package description file '%s' from db '%s'\n"
msgstr "" msgstr ""
"no s'ha pogut analitzar el fitxer de descripció de paquet \"%s\" de la base " "no s'ha pogut analitzar el fitxer de descripció de paquet \"%s\" de la base "
"de dades \"%s\".\n" "de dades \"%s\".\n"
#: lib/libalpm/be_sync.c:456 #: lib/libalpm/be_sync.c:486
#, c-format #, c-format
msgid "could not read db '%s' (%s)\n" msgid "could not read db '%s' (%s)\n"
msgstr "no s'ha pogut llegir la base de dades \"%s\" (%s).\n" msgstr "no s'ha pogut llegir la base de dades \"%s\" (%s).\n"
#: lib/libalpm/be_sync.c:489 lib/libalpm/be_sync.c:494 #: lib/libalpm/be_sync.c:519 lib/libalpm/be_sync.c:524
#, c-format #, c-format
msgid "%s database is inconsistent: filename of package %s is illegal\n" msgid "%s database is inconsistent: filename of package %s is illegal\n"
msgstr "La base de dades %s és inconsistent: nom erroni al paquet %s.\\n\n" msgstr "La base de dades %s és inconsistent: nom erroni al paquet %s.\\n\n"
#: lib/libalpm/be_sync.c:499 #: lib/libalpm/be_sync.c:529
#, c-format #, c-format
msgid "%s database is inconsistent: filename of package %s is too long\n" msgid "%s database is inconsistent: filename of package %s is too long\n"
msgstr "" msgstr ""
"La base de dades %s és inconsistent: el nom del paquet %s és massa llarg\\n\n" "La base de dades %s és inconsistent: el nom del paquet %s és massa llarg\\n\n"
#: lib/libalpm/be_sync.c:564 #: lib/libalpm/be_sync.c:594
#, c-format #, c-format
msgid "unknown database file: %s\n" msgid "unknown database file: %s\n"
msgstr "fitxer de base de dades desconegut: %s.\n" msgstr "fitxer de base de dades desconegut: %s.\n"
#: lib/libalpm/db.c:344 #: lib/libalpm/be_sync.c:712
#, c-format
msgid "%s: unknown key '%s' in sync database\n"
msgstr "%s: clau desconeguda %s a la base de dades sincronitzada\n"
#: lib/libalpm/db.c:413
#, c-format #, c-format
msgid "database path is undefined\n" msgid "database path is undefined\n"
msgstr "no s'ha definit el camí de la base de dades.\n" msgstr "no s'ha definit el camí de la base de dades.\n"
@ -314,109 +334,124 @@ msgstr ""
msgid "could not open file: %s: %s\n" msgid "could not open file: %s: %s\n"
msgstr "no s'ha pogut obrir el fitxer: %s: %s\n" msgstr "no s'ha pogut obrir el fitxer: %s: %s\n"
#: lib/libalpm/diskspace.c:146 lib/libalpm/diskspace.c:159 #: lib/libalpm/diskspace.c:154 lib/libalpm/diskspace.c:167
#, c-format #, c-format
msgid "could not get filesystem information\n" msgid "could not get filesystem information\n"
msgstr "no s'ha pogut obtenir la informació del sistema de fitxers.\n" msgstr "no s'ha pogut obtenir la informació del sistema de fitxers.\n"
#: lib/libalpm/diskspace.c:242 #: lib/libalpm/diskspace.c:254
#, c-format #, c-format
msgid "could not get file information for %s\n" msgid "could not get file information for %s\n"
msgstr "no s'ha pogut obtenir informació de fitxer per a %s.\n" msgstr "no s'ha pogut obtenir informació de fitxer per a %s.\n"
#: lib/libalpm/diskspace.c:256 lib/libalpm/diskspace.c:315 #: lib/libalpm/diskspace.c:268 lib/libalpm/diskspace.c:327
#, c-format #, c-format
msgid "could not determine mount point for file %s\n" msgid "could not determine mount point for file %s\n"
msgstr "no s'ha pogut determinar el punt de muntatge per al fitxer %s.\n" msgstr "no s'ha pogut determinar el punt de muntatge per al fitxer %s.\n"
#: lib/libalpm/diskspace.c:354 #: lib/libalpm/diskspace.c:366
#, c-format #, c-format
msgid "Partition %s too full: %jd blocks needed, %ju blocks free\n" msgid "Partition %s too full: %jd blocks needed, %ju blocks free\n"
msgstr "" msgstr ""
"La partició %s està massa plena: %jd blocs necessaris, %ju blocs lliures.\n" "La partició %s està massa plena: %jd blocs necessaris, %ju blocs lliures.\n"
#: lib/libalpm/diskspace.c:379 lib/libalpm/diskspace.c:433 #: lib/libalpm/diskspace.c:391 lib/libalpm/diskspace.c:445
#, c-format #, c-format
msgid "could not determine filesystem mount points\n" msgid "could not determine filesystem mount points\n"
msgstr "" msgstr ""
"no s'han pogut determinar els punts de muntatge del sistema de fitxers.\n" "no s'han pogut determinar els punts de muntatge del sistema de fitxers.\n"
#: lib/libalpm/diskspace.c:385 #: lib/libalpm/diskspace.c:397
#, c-format #, c-format
msgid "could not determine cachedir mount point %s\n" msgid "could not determine cachedir mount point %s\n"
msgstr "no s'ha pogut determinar el punt de muntatge cachedir %s.\n" msgstr "no s'ha pogut determinar el punt de muntatge cachedir %s.\n"
#: lib/libalpm/diskspace.c:438 #: lib/libalpm/diskspace.c:450
#, c-format #, c-format
msgid "could not determine root mount point %s\n" msgid "could not determine root mount point %s\n"
msgstr "" msgstr ""
"no s'ha pogut determinar el punt de muntatge del directori d'arrel %s.\n" "no s'ha pogut determinar el punt de muntatge del directori d'arrel %s.\n"
#: lib/libalpm/diskspace.c:486 #: lib/libalpm/diskspace.c:498
#, c-format #, c-format
msgid "Partition %s is mounted read only\n" msgid "Partition %s is mounted read only\n"
msgstr "La partició %s està muntada només en mode de lectura.\n" msgstr "La partició %s està muntada només en mode de lectura.\n"
#: lib/libalpm/dload.c:116 #: lib/libalpm/dload.c:107
#, c-format
msgid "failed to create temporary file for download\n"
msgstr "ha fallat crear un fitxer temporal per a la baixada.\n"
#: lib/libalpm/dload.c:198
#, c-format #, c-format
msgid "" msgid ""
"too many errors from %s, skipping for the remainder of this transaction\n" "too many errors from %s, skipping for the remainder of this transaction\n"
msgstr "" msgstr ""
"hi ha massa errors de %s, s'ometen per a la resta d'aquesta transacció\n" "hi ha massa errors de %s, s'ometen per a la resta d'aquesta transacció\n"
#: lib/libalpm/dload.c:220 #: lib/libalpm/dload.c:215
#, c-format
msgid "fatal error from %s, skipping for the remainder of this transaction\n"
msgstr "error fatal de %s, s'omet la resta d'aquesta transacció.\n"
#: lib/libalpm/dload.c:310
#, c-format #, c-format
msgid "disk" msgid "disk"
msgstr "disc" msgstr "disc"
#: lib/libalpm/dload.c:392 #: lib/libalpm/dload.c:532 lib/libalpm/dload.c:570 lib/libalpm/dload.c:583
#, c-format
msgid "failed to create temporary file for download\n"
msgstr "ha fallat crear un fitxer temporal per a la baixada.\n"
#: lib/libalpm/dload.c:509 lib/libalpm/dload.c:547 lib/libalpm/dload.c:561
#, c-format #, c-format
msgid "failed retrieving file '%s' from %s : %s\n" msgid "failed retrieving file '%s' from %s : %s\n"
msgstr "ha fallat la recuperació del fitxer \"%s\" des de %s: %s\n" msgstr "ha fallat la recuperació del fitxer \"%s\" des de %s: %s\n"
#: lib/libalpm/dload.c:539 #: lib/libalpm/dload.c:562
#, c-format #, c-format
msgid "failed retrieving file '%s' from %s : expected download size exceeded\n" msgid "failed retrieving file '%s' from %s : expected download size exceeded\n"
msgstr "" msgstr ""
"ha fallat recuperar el fitxer \"%s\" des de %s: mida de la baixada superior " "ha fallat recuperar el fitxer \"%s\" des de %s: mida de la baixada superior "
"a l'esperada.\n" "a l'esperada.\n"
#: lib/libalpm/dload.c:687 #: lib/libalpm/dload.c:685
#, c-format #, c-format
msgid "%s appears to be truncated: %jd/%jd bytes\n" msgid "%s appears to be truncated: %jd/%jd bytes\n"
msgstr "%s sembla que està truncat: %jd/%jd bytes.\n" msgstr "%s sembla que està truncat: %jd/%jd bytes.\n"
#: lib/libalpm/dload.c:787 #: lib/libalpm/dload.c:776
#, c-format #, c-format
msgid "url '%s' is invalid\n" msgid "url '%s' is invalid\n"
msgstr "l'url \"%s\" no és vàlid.\n" msgstr "l'url \"%s\" no és vàlid.\n"
#: lib/libalpm/dload.c:893 #: lib/libalpm/dload.c:864
#, c-format #, c-format
msgid "failed to setup a download payload for %s\n" msgid "failed to setup a download payload for %s\n"
msgstr "ha fallat configurar una càrrega de baixada per a %s\n" msgstr "ha fallat configurar una càrrega de baixada per a %s\n"
#: lib/libalpm/dload.c:905 #: lib/libalpm/dload.c:876
#, c-format #, c-format
msgid "curl returned error %d from transfer\n" msgid "curl returned error %d from transfer\n"
msgstr "curl ha retornat l'error %d de la transferència\n" msgstr "curl ha retornat l'error %d de la transferència\n"
#: lib/libalpm/dload.c:929 #: lib/libalpm/dload.c:900
#, c-format #, c-format
msgid "curl transfer error: %d\n" msgid "curl transfer error: %d\n"
msgstr "error de transferència de curl: %d\n" msgstr "error de transferència de curl: %d\n"
#: lib/libalpm/dload.c:1055 lib/libalpm/sync.c:840 #: lib/libalpm/dload.c:963
#, c-format
msgid "could not chdir to download directory %s\n"
msgstr "no s'ha pogut canviar al directori de baixades %s.\n"
#: lib/libalpm/dload.c:968
#, c-format
msgid "switching to sandbox user '%s' failed!\n"
msgstr "ha fallat canviar a l'usuari d'entorn de proves %s!\n"
#: lib/libalpm/dload.c:1361 lib/libalpm/sync.c:861
#, c-format #, c-format
msgid "failed to retrieve some files\n" msgid "failed to retrieve some files\n"
msgstr "ha fallat la recuperació d'alguns fitxers.\n" msgstr "ha fallat la recuperació d'alguns fitxers.\n"
#: lib/libalpm/dload.c:1078 #: lib/libalpm/dload.c:1384
#, c-format #, c-format
msgid "download completed successfully but no file in the cache\n" msgid "download completed successfully but no file in the cache\n"
msgstr "" msgstr ""
@ -693,12 +728,12 @@ msgstr "compilat sense suport de signatura."
msgid "unexpected error" msgid "unexpected error"
msgstr "error inesperat." msgstr "error inesperat."
#: lib/libalpm/handle.c:142 #: lib/libalpm/handle.c:165
#, c-format #, c-format
msgid "lock file missing %s\n" msgid "lock file missing %s\n"
msgstr "manca el fitxer de bloqueig %s.\n" msgstr "manca el fitxer de bloqueig %s.\n"
#: lib/libalpm/handle.c:148 #: lib/libalpm/handle.c:171
#, c-format #, c-format
msgid "could not remove lock file %s\n" msgid "could not remove lock file %s\n"
msgstr "no s'ha pogut suprimir el fitxer de bloqueig %s.\n" msgstr "no s'ha pogut suprimir el fitxer de bloqueig %s.\n"
@ -780,7 +815,7 @@ msgstr "no s'ha pogut obrir el directori: %s: %s\n"
msgid "could not open file: %s%s: %s\n" msgid "could not open file: %s%s: %s\n"
msgstr "no s'ha pogut obrir el fitxer: %s%s: %s\n" msgstr "no s'ha pogut obrir el fitxer: %s%s: %s\n"
#: lib/libalpm/hook.c:595 lib/libalpm/util.c:260 #: lib/libalpm/hook.c:595 lib/libalpm/util.c:279
#, c-format #, c-format
msgid "could not stat file %s: %s\n" msgid "could not stat file %s: %s\n"
msgstr "no s'ha pogut determinar l'estat del fitxer %s: %s\n" msgstr "no s'ha pogut determinar l'estat del fitxer %s: %s\n"
@ -790,16 +825,56 @@ msgstr "no s'ha pogut determinar l'estat del fitxer %s: %s\n"
msgid "could not read directory: %s: %s\n" msgid "could not read directory: %s: %s\n"
msgstr "no s'ha pogut llegir el directori: %s: %s\n" msgstr "no s'ha pogut llegir el directori: %s: %s\n"
#: lib/libalpm/package.c:598 #: lib/libalpm/package.c:614
#, c-format #, c-format
msgid "could not fully load metadata for package %s-%s\n" msgid "could not fully load metadata for package %s-%s\n"
msgstr "" msgstr ""
"no s'han pogut carregar completament les metadades per al paquet %s-%s.\n" "no s'han pogut carregar completament les metadades per al paquet %s-%s.\n"
#: lib/libalpm/package.c:869
#, c-format
msgid "invalid package metadata (name or version missing)"
msgstr "metadades del paquet no vàlides (en falta el nom o la versió)"
#: lib/libalpm/package.c:874
#, c-format
msgid ""
"invalid metadata for package %s-%s (package name cannot start with '.' or "
"'-')\n"
msgstr ""
"metadades no vàlides per al paquet %s-%s (el nom del paquet no pot començar "
"per . o -)\n"
#: lib/libalpm/package.c:878
#, c-format
msgid ""
"invalid metadata for package %s-%s (package name contains invalid "
"characters)\n"
msgstr ""
"metadades no vàlides per al paquet %s-%s (el nom del paquet conté caràcters "
"no vàlids)\n"
#: lib/libalpm/package.c:885 lib/libalpm/package.c:889
#, c-format
msgid ""
"invalid metadata for package %s-%s (package version contains invalid "
"characters)\n"
msgstr ""
"metadades no vàlides per al paquet %s-%s (la versió del paquet conté "
"caràcters no vàlids)\n"
#: lib/libalpm/package.c:895
#, c-format
msgid ""
"invalid metadata for package %s-%s (package name and version too long)\n"
msgstr ""
"metadades no vàlides per al paquet %s-%s (nom del paquet i la versió són "
"massa llargs)\n"
#: lib/libalpm/remove.c:111 #: lib/libalpm/remove.c:111
#, c-format #, c-format
msgid "could not find %s in database -- skipping\n" msgid "could not find %s in database -- skipping\n"
msgstr "No s'ha pogut trobar %s a la base de dades. S'omet.\n" msgstr "no s'ha pogut trobar %s a la base de dades. S'omet.\n"
#: lib/libalpm/remove.c:146 #: lib/libalpm/remove.c:146
#, c-format #, c-format
@ -818,17 +893,17 @@ msgstr ""
"no s'ha pogut fer una còpia de seguretat de %s a causa d'un desbordament de " "no s'ha pogut fer una còpia de seguretat de %s a causa d'un desbordament de "
"CAMÍ_MAX.\n" "CAMÍ_MAX.\n"
#: lib/libalpm/remove.c:554 #: lib/libalpm/remove.c:570
#, c-format #, c-format
msgid "cannot remove %s (%s)\n" msgid "cannot remove %s (%s)\n"
msgstr "no es pot suprimir %s (%s).\n" msgstr "no es pot suprimir %s (%s).\n"
#: lib/libalpm/remove.c:727 #: lib/libalpm/remove.c:743
#, c-format #, c-format
msgid "could not remove database entry %s-%s\n" msgid "could not remove database entry %s-%s\n"
msgstr "no s'ha pogut suprimir l'entrada de la base de dades %s-%s.\n" msgstr "no s'ha pogut suprimir l'entrada de la base de dades %s-%s.\n"
#: lib/libalpm/remove.c:732 #: lib/libalpm/remove.c:748
#, c-format #, c-format
msgid "could not remove entry '%s' from cache\n" msgid "could not remove entry '%s' from cache\n"
msgstr "no s'ha pogut suprimir l'entrada \"%s\" de la memòria cau.\n" msgstr "no s'ha pogut suprimir l'entrada \"%s\" de la memòria cau.\n"
@ -838,89 +913,89 @@ msgstr "no s'ha pogut suprimir l'entrada \"%s\" de la memòria cau.\n"
msgid "Public keyring not found; have you run '%s'?\n" msgid "Public keyring not found; have you run '%s'?\n"
msgstr "No s'ha trobat el clauer públic. Heu executat \"%s\"?\n" msgstr "No s'ha trobat el clauer públic. Heu executat \"%s\"?\n"
#: lib/libalpm/signing.c:199 lib/libalpm/signing.c:767 #: lib/libalpm/signing.c:199 lib/libalpm/signing.c:773
#, c-format #, c-format
msgid "GPGME error: %s\n" msgid "GPGME error: %s\n"
msgstr "error de GPGME: %s\n" msgstr "error de GPGME: %s\n"
#: lib/libalpm/signing.c:274 #: lib/libalpm/signing.c:275
#, c-format #, c-format
msgid "looking up key %s using WKD\n" msgid "looking up key %s using WKD\n"
msgstr "se cerca la clau %s amb WKD\n" msgstr "se cerca la clau %s amb WKD\n"
#: lib/libalpm/signing.c:283 #: lib/libalpm/signing.c:289
#, c-format #, c-format
msgid "gpg error: %s\n" msgid "gpg error: %s\n"
msgstr "error de gpg: %s\n" msgstr "error de gpg: %s\n"
#: lib/libalpm/signing.c:430 lib/libalpm/signing.c:503 #: lib/libalpm/signing.c:440 lib/libalpm/signing.c:513
#, c-format #, c-format
msgid "keyring is not writable\n" msgid "keyring is not writable\n"
msgstr "el clauer no és escrivible.\n" msgstr "el clauer no és escrivible.\n"
#: lib/libalpm/signing.c:531 #: lib/libalpm/signing.c:537
#, c-format #, c-format
msgid "key \"%s\" on keyserver\n" msgid "key \"%s\" on keyserver\n"
msgstr "clau \"%s\" al servidor de claus\n" msgstr "clau \"%s\" al servidor de claus\n"
#: lib/libalpm/signing.c:536 #: lib/libalpm/signing.c:542
#, c-format #, c-format
msgid "key \"%s\" could not be imported\n" msgid "key \"%s\" could not be imported\n"
msgstr "la clau \"%s\" no s'ha pogut importar.\n" msgstr "la clau \"%s\" no s'ha pogut importar.\n"
#: lib/libalpm/signing.c:540 #: lib/libalpm/signing.c:546
#, c-format #, c-format
msgid "key \"%s\" could not be looked up remotely\n" msgid "key \"%s\" could not be looked up remotely\n"
msgstr "la clau \"%s\" no s'ha pogut cercar remotament.\n" msgstr "la clau \"%s\" no s'ha pogut cercar remotament.\n"
#: lib/libalpm/signing.c:926 lib/libalpm/sync.c:1022 #: lib/libalpm/signing.c:932 lib/libalpm/sync.c:1052
#, c-format #, c-format
msgid "%s: missing required signature\n" msgid "%s: missing required signature\n"
msgstr "%s: manca la signatura requerida.\n" msgstr "%s: manca la signatura requerida.\n"
#: lib/libalpm/signing.c:941 #: lib/libalpm/signing.c:947
#, c-format #, c-format
msgid "%s: signature from \"%s\" is marginal trust\n" msgid "%s: signature from \"%s\" is marginal trust\n"
msgstr "%s: la signatura de \"%s\" és de confiança marginal.\n" msgstr "%s: la signatura de \"%s\" és de confiança marginal.\n"
#: lib/libalpm/signing.c:949 #: lib/libalpm/signing.c:955
#, c-format #, c-format
msgid "%s: signature from \"%s\" is unknown trust\n" msgid "%s: signature from \"%s\" is unknown trust\n"
msgstr "%s: la signatura de \"%s\" és de confiança desconeguda.\n" msgstr "%s: la signatura de \"%s\" és de confiança desconeguda.\n"
#: lib/libalpm/signing.c:956 #: lib/libalpm/signing.c:962
#, c-format #, c-format
msgid "%s: signature from \"%s\" should never be trusted\n" msgid "%s: signature from \"%s\" should never be trusted\n"
msgstr "%s: en la signatura de \"%s\" no s'hi hauria de confiar mai.\n" msgstr "%s: en la signatura de \"%s\" no s'hi hauria de confiar mai.\n"
#: lib/libalpm/signing.c:968 #: lib/libalpm/signing.c:974
#, c-format #, c-format
msgid "%s: key \"%s\" is unknown\n" msgid "%s: key \"%s\" is unknown\n"
msgstr "%s: la clau \"%s\" és desconeguda.\n" msgstr "%s: la clau \"%s\" és desconeguda.\n"
#: lib/libalpm/signing.c:977 #: lib/libalpm/signing.c:983
#, c-format #, c-format
msgid "%s: key \"%s\" is disabled\n" msgid "%s: key \"%s\" is disabled\n"
msgstr "%s: la clau \"%s\" està inhabilitada.\n" msgstr "%s: la clau \"%s\" està inhabilitada.\n"
#: lib/libalpm/signing.c:981 #: lib/libalpm/signing.c:987
#, c-format #, c-format
msgid "%s: signature from \"%s\" is expired\n" msgid "%s: signature from \"%s\" is expired\n"
msgstr "%s: la signatura de \"%s\" està caducada.\n" msgstr "%s: la signatura de \"%s\" està caducada.\n"
#: lib/libalpm/signing.c:985 #: lib/libalpm/signing.c:991
#, c-format #, c-format
msgid "%s: signature from \"%s\" is invalid\n" msgid "%s: signature from \"%s\" is invalid\n"
msgstr "%s: la signatura de \"%s\" no és vàlida.\n" msgstr "%s: la signatura de \"%s\" no és vàlida.\n"
#: lib/libalpm/signing.c:1043 lib/libalpm/signing.c:1104 #: lib/libalpm/signing.c:1049 lib/libalpm/signing.c:1110
#: lib/libalpm/signing.c:1183 #: lib/libalpm/signing.c:1189
#, c-format #, c-format
msgid "%s: signature format error\n" msgid "%s: signature format error\n"
msgstr "%s: error de format de la signatura.\n" msgstr "%s: error de format de la signatura.\n"
#: lib/libalpm/signing.c:1136 lib/libalpm/signing.c:1169 #: lib/libalpm/signing.c:1142 lib/libalpm/signing.c:1175
#: lib/libalpm/signing.c:1177 #: lib/libalpm/signing.c:1183
#, c-format #, c-format
msgid "%s: unsupported signature format\n" msgid "%s: unsupported signature format\n"
msgstr "%s: format de la signatura no admès.\n" msgstr "%s: format de la signatura no admès.\n"
@ -955,121 +1030,125 @@ msgstr "S'ignora el reemplaçament del paquet (%s-%s => %s-%s).\n"
msgid "cannot replace %s by %s\n" msgid "cannot replace %s by %s\n"
msgstr "no es pot reemplaçar %s per %s.\n" msgstr "no es pot reemplaçar %s per %s.\n"
#: lib/libalpm/sync.c:476 #: lib/libalpm/sync.c:477
#, c-format #, c-format
msgid "packages %s and %s have the same filename: %s\n" msgid "packages %s and %s have the same filename: %s\n"
msgstr "els paquets %s i %s tenen el mateix nom de fitxer: %s\n" msgstr "els paquets %s i %s tenen el mateix nom de fitxer: %s\n"
#: lib/libalpm/sync.c:542 lib/libalpm/sync.c:612 #: lib/libalpm/sync.c:546 lib/libalpm/sync.c:618
#, c-format #, c-format
msgid "unresolvable package conflicts detected\n" msgid "unresolvable package conflicts detected\n"
msgstr "s'han detectat conflictes de paquets impossibles de resoldre.\n" msgstr "s'han detectat conflictes de paquets impossibles de resoldre.\n"
#: lib/libalpm/sync.c:562 #: lib/libalpm/sync.c:566
#, c-format #, c-format
msgid "removing '%s' from target list because it conflicts with '%s'\n" msgid "removing '%s-%s' from target list because it conflicts with '%s-%s'\n"
msgstr "" msgstr ""
"Se suprimeix \"%s\" de la llista d'objectius perquè té conflictes amb \"%s" "Se suprimeix %s-%s de la llista d'objectius perquè té conflicte amb %s-%s.\n"
"\".\n"
#: lib/libalpm/sync.c:1036 #: lib/libalpm/sync.c:1020 lib/libalpm/sync.c:1187
#, c-format
msgid "%s: could not find package in cache\n"
msgstr "%s: no s'ha pogut trobar el paquet a la memòria cau.\n"
#: lib/libalpm/sync.c:1066
#, c-format #, c-format
msgid "failed to read file %s: %s\n" msgid "failed to read file %s: %s\n"
msgstr "ha fallat llegir el fitxer %s: %s\n" msgstr "ha fallat llegir el fitxer %s: %s\n"
#: lib/libalpm/sync.c:1223 #: lib/libalpm/sync.c:1324
#, c-format #, c-format
msgid "not enough free disk space\n" msgid "not enough free disk space\n"
msgstr "no hi ha prou espai de disc lliure.\n" msgstr "no hi ha prou espai de disc lliure.\n"
#: lib/libalpm/sync.c:1245 #: lib/libalpm/sync.c:1346
#, c-format #, c-format
msgid "could not commit removal transaction\n" msgid "could not commit removal transaction\n"
msgstr "no s'ha pogut fer la transacció de supressió.\n" msgstr "no s'ha pogut fer la transacció de supressió.\n"
#: lib/libalpm/sync.c:1253 #: lib/libalpm/sync.c:1354
#, c-format #, c-format
msgid "could not commit transaction\n" msgid "could not commit transaction\n"
msgstr "no s'ha pogut fer la transacció.\n" msgstr "no s'ha pogut fer la transacció.\n"
#: lib/libalpm/trans.c:365 #: lib/libalpm/trans.c:369
#, c-format #, c-format
msgid "could not create temp directory\n" msgid "could not create temp directory\n"
msgstr "no s'ha pogut crear el directori temporal.\n" msgstr "no s'ha pogut crear el directori temporal.\n"
#: lib/libalpm/trans.c:380 #: lib/libalpm/trans.c:384
#, c-format #, c-format
msgid "could not copy tempfile to %s (%s)\n" msgid "could not copy tempfile to %s (%s)\n"
msgstr "no s'ha pogut copiar el fitxer temporal a %s (%s).\n" msgstr "no s'ha pogut copiar el fitxer temporal a %s (%s).\n"
#: lib/libalpm/trans.c:411 #: lib/libalpm/trans.c:415
#, c-format #, c-format
msgid "could not remove %s\n" msgid "could not remove %s\n"
msgstr "no s'ha pogut suprimir %s\n" msgstr "no s'ha pogut suprimir %s\n"
#: lib/libalpm/trans.c:415 #: lib/libalpm/trans.c:419
#, c-format #, c-format
msgid "could not remove tmpdir %s\n" msgid "could not remove tmpdir %s\n"
msgstr "no s'ha pogut suprimir el directori temporal %s.\n" msgstr "no s'ha pogut suprimir el directori temporal %s.\n"
#: lib/libalpm/util.c:488 #: lib/libalpm/util.c:512
#, c-format #, c-format
msgid "unable to write to pipe (%s)\n" msgid "unable to write to pipe (%s)\n"
msgstr "no es pot escriure al conducte (%s).\n" msgstr "no es pot escriure al conducte (%s).\n"
#: lib/libalpm/util.c:547 #: lib/libalpm/util.c:571
#, c-format #, c-format
msgid "unable to read from pipe (%s)\n" msgid "unable to read from pipe (%s)\n"
msgstr "no es pot llegir des del conducte (%s).\n" msgstr "no es pot llegir des del conducte (%s).\n"
#: lib/libalpm/util.c:617 lib/libalpm/util.c:623 #: lib/libalpm/util.c:641 lib/libalpm/util.c:647
#, c-format #, c-format
msgid "could not create pipe (%s)\n" msgid "could not create pipe (%s)\n"
msgstr "no s'ha pogut crear el conducte (%s).\n" msgstr "no s'ha pogut crear el conducte (%s).\n"
#: lib/libalpm/util.c:631 #: lib/libalpm/util.c:655
#, c-format #, c-format
msgid "could not fork a new process (%s)\n" msgid "could not fork a new process (%s)\n"
msgstr "no s'ha pogut bifurcar un procés nou (%s).\n" msgstr "no s'ha pogut bifurcar un procés nou (%s).\n"
#: lib/libalpm/util.c:654 #: lib/libalpm/util.c:680
#, c-format #, c-format
msgid "could not change the root directory (%s)\n" msgid "could not change the root directory (%s)\n"
msgstr "no s'ha pogut canviar el directori d'arrel (%s).\n" msgstr "no s'ha pogut canviar el directori d'arrel (%s).\n"
#: lib/libalpm/util.c:666 #: lib/libalpm/util.c:700
#, c-format #, c-format
msgid "call to execv failed (%s)\n" msgid "call to execv failed (%s)\n"
msgstr "la crida a execv ha fallat (%s).\n" msgstr "la crida a execv ha fallat (%s).\n"
#: lib/libalpm/util.c:745 #: lib/libalpm/util.c:779
#, c-format #, c-format
msgid "call to waitpid failed (%s)\n" msgid "call to waitpid failed (%s)\n"
msgstr "ha fallat la crida a waitpid (%s).\n" msgstr "ha fallat la crida a waitpid (%s).\n"
#: lib/libalpm/util.c:755 #: lib/libalpm/util.c:789
#, c-format #, c-format
msgid "command failed to execute correctly\n" msgid "command failed to execute correctly\n"
msgstr "l'ordre ha fallat executar-se correctament.\n" msgstr "l'ordre ha fallat executar-se correctament.\n"
#: lib/libalpm/util.c:762 #: lib/libalpm/util.c:796
#, c-format #, c-format
msgid "Unknown signal" msgid "Unknown signal"
msgstr "senyal desconegut" msgstr "senyal desconegut"
#: lib/libalpm/util.c:764 #: lib/libalpm/util.c:798
#, c-format #, c-format
msgid "command terminated by signal %d: %s\n" msgid "command terminated by signal %d: %s\n"
msgstr "orde cancel·lada pel senyal %d: %s\n" msgstr "orde cancel·lada pel senyal %d: %s\n"
#: lib/libalpm/util.c:875 #: lib/libalpm/util.c:916
#, c-format #, c-format
msgid "no %s cache exists, creating...\n" msgid "no %s cache exists, creating...\n"
msgstr "no existeix la memòria cau %s, es crea...\n" msgstr "no existeix la memòria cau %s, es crea...\n"
#: lib/libalpm/util.c:906 #: lib/libalpm/util.c:947
#, c-format #, c-format
msgid "couldn't find or create package cache, using %s instead\n" msgid "couldn't find or create package cache, using %s instead\n"
msgstr "" msgstr ""
"No s'ha pogut trobar o crear el paquet de memòria cau; en lloc d'això, s'usa" "No s'ha pogut trobar o crear el paquet de memòria cau; en lloc d'això, "
"%s.\n" "s'usa%s.\n"

View file

@ -7,8 +7,9 @@
# David Kolibáč <david@kolibac.cz>, 2011 # David Kolibáč <david@kolibac.cz>, 2011
# David Macek <david.macek.0@gmail.com>, 2018 # David Macek <david.macek.0@gmail.com>, 2018
# IAmNotImportant, 2017 # IAmNotImportant, 2017
# Jaroslav Lichtblau <jlichtblau@seznam.cz>, 2014-2015 # Jaroslav Lichtblau <l10n@lichtblau.cz>, 2014-2015
# Jaroslav Lichtblau <jlichtblau@seznam.cz>, 2014 # Jaroslav Lichtblau <jlichtblau@seznam.cz>, 2014,2022
# Jiří Podhorný <jp@email.cz>, 2023-2024
# Lukáš Kucharczyk <lukas@kucharczyk.xyz>, 2020 # Lukáš Kucharczyk <lukas@kucharczyk.xyz>, 2020
# mmm <markotahal@gmail.com>, 2013 # mmm <markotahal@gmail.com>, 2013
# mmm <markotahal@gmail.com>, 2011 # mmm <markotahal@gmail.com>, 2011
@ -18,11 +19,11 @@
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Arch Linux Pacman package manager\n" "Project-Id-Version: Arch Linux Pacman package manager\n"
"Report-Msgid-Bugs-To: http://bugs.archlinux.org/index.php?project=3\n" "Report-Msgid-Bugs-To: https://gitlab.archlinux.org/pacman/pacman/-/issues\n"
"POT-Creation-Date: 2021-09-04 16:15+1000\n" "POT-Creation-Date: 2024-07-14 19:10+1000\n"
"PO-Revision-Date: 2021-05-20 02:25+0000\n" "PO-Revision-Date: 2010-11-29 23:17+0000\n"
"Last-Translator: Allan McRae <allan@archlinux.org>\n" "Last-Translator: Vojtěch Gondžala <vojtech.gondzala@gmail.com>, 2011,2013\n"
"Language-Team: Czech (http://www.transifex.com/toofishes/archlinux-pacman/" "Language-Team: Czech (http://app.transifex.com/toofishes/archlinux-pacman/"
"language/cs/)\n" "language/cs/)\n"
"Language: cs\n" "Language: cs\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
@ -49,19 +50,19 @@ msgstr "snížení verze balíčku %s (%s => %s)\n"
#: lib/libalpm/add.c:129 #: lib/libalpm/add.c:129
#, c-format #, c-format
msgid "cannot allocate disk archive object" msgid "cannot allocate disk archive object"
msgstr "nedostatek paměti pro alokaci objektu" msgstr "nemohu alokovat objekt archivu na disku"
#: lib/libalpm/add.c:143 lib/libalpm/util.c:384 #: lib/libalpm/add.c:143 lib/libalpm/util.c:408
#, c-format #, c-format
msgid "warning given when extracting %s (%s)\n" msgid "warning given when extracting %s (%s)\n"
msgstr "varování při rozbalování %s (%s)\n" msgstr "varování při rozbalování %s (%s)\n"
#: lib/libalpm/add.c:146 lib/libalpm/util.c:387 #: lib/libalpm/add.c:146 lib/libalpm/util.c:411
#, c-format #, c-format
msgid "could not extract %s (%s)\n" msgid "could not extract %s (%s)\n"
msgstr "nelze rozbalit %s (%s)\n" msgstr "nelze rozbalit %s (%s)\n"
#: lib/libalpm/add.c:159 lib/libalpm/dload.c:709 lib/libalpm/remove.c:534 #: lib/libalpm/add.c:159 lib/libalpm/dload.c:707 lib/libalpm/remove.c:550
#, c-format #, c-format
msgid "could not rename %s to %s (%s)\n" msgid "could not rename %s to %s (%s)\n"
msgstr "nelze přejmenovat %s na %s (%s)\n" msgstr "nelze přejmenovat %s na %s (%s)\n"
@ -105,18 +106,18 @@ msgstr "rozbalení: adresář nebyl přepsán souborem %s\n"
msgid "unable to extract %s.pacnew: path too long" msgid "unable to extract %s.pacnew: path too long"
msgstr "nelze rozbalit %s.pacnew: příliš dlouhá cesta" msgstr "nelze rozbalit %s.pacnew: příliš dlouhá cesta"
#: lib/libalpm/add.c:510 lib/libalpm/util.c:335 lib/libalpm/util.c:600 #: lib/libalpm/add.c:510 lib/libalpm/util.c:354 lib/libalpm/util.c:624
#, c-format #, c-format
msgid "could not get current working directory\n" msgid "could not get current working directory\n"
msgstr "nelze určit aktuální pracovní adresář\n" msgstr "nelze určit aktuální pracovní adresář\n"
#: lib/libalpm/add.c:515 lib/libalpm/util.c:340 lib/libalpm/util.c:605 #: lib/libalpm/add.c:515 lib/libalpm/util.c:359 lib/libalpm/util.c:629
#: lib/libalpm/util.c:658 #: lib/libalpm/util.c:684
#, c-format #, c-format
msgid "could not change directory to %s (%s)\n" msgid "could not change directory to %s (%s)\n"
msgstr "nelze změnit adresář na %s (%s)\n" msgstr "nelze změnit adresář na %s (%s)\n"
#: lib/libalpm/add.c:571 lib/libalpm/util.c:405 lib/libalpm/util.c:774 #: lib/libalpm/add.c:571 lib/libalpm/util.c:429 lib/libalpm/util.c:808
#, c-format #, c-format
msgid "could not restore working directory (%s)\n" msgid "could not restore working directory (%s)\n"
msgstr "nelze obnovit pracovní adresář (%s)\n" msgstr "nelze obnovit pracovní adresář (%s)\n"
@ -141,101 +142,116 @@ msgstr "nelze aktualizovat záznam databáze %s-%s\n"
msgid "could not add entry '%s' in cache\n" msgid "could not add entry '%s' in cache\n"
msgstr "nelze přidat položku '%s' do mezipaměti\n" msgstr "nelze přidat položku '%s' do mezipaměti\n"
#: lib/libalpm/be_local.c:266 #: lib/libalpm/be_local.c:271
#, c-format #, c-format
msgid "error while reading file %s: %s\n" msgid "error while reading file %s: %s\n"
msgstr "chyba při čtení souboru %s: %s\n" msgstr "chyba při čtení souboru %s: %s\n"
#: lib/libalpm/be_local.c:376 #: lib/libalpm/be_local.c:382
#, c-format #, c-format
msgid "removing invalid database: %s\n" msgid "removing invalid database: %s\n"
msgstr "odstraňuje se chybná databáze: %s\n" msgstr "odstraňuje se chybná databáze: %s\n"
#: lib/libalpm/be_local.c:427 lib/libalpm/be_local.c:909 #: lib/libalpm/be_local.c:433 lib/libalpm/be_local.c:947
#, c-format #, c-format
msgid "could not create directory %s: %s\n" msgid "could not create directory %s: %s\n"
msgstr "nelze změnit adresář %s: %s\n" msgstr "nelze změnit adresář %s: %s\n"
#: lib/libalpm/be_local.c:602 lib/libalpm/be_sync.c:322 #: lib/libalpm/be_local.c:608 lib/libalpm/be_sync.c:339
#, c-format #, c-format
msgid "invalid name for database entry '%s'\n" msgid "invalid name for database entry '%s'\n"
msgstr "chybný název záznamu v databázi '%s'\n" msgstr "chybný název záznamu v databázi '%s'\n"
#: lib/libalpm/be_local.c:610 #: lib/libalpm/be_local.c:616
#, c-format #, c-format
msgid "duplicated database entry '%s'\n" msgid "duplicated database entry '%s'\n"
msgstr "duplicitní záznam v databázi '%s'\n" msgstr "duplicitní záznam v databázi '%s'\n"
#: lib/libalpm/be_local.c:622 #: lib/libalpm/be_local.c:628
#, c-format #, c-format
msgid "corrupted database entry '%s'\n" msgid "corrupted database entry '%s'\n"
msgstr "poškozený záznam v databázi '%s'\n" msgstr "poškozený záznam v databázi '%s'\n"
#: lib/libalpm/be_local.c:722 lib/libalpm/be_local.c:818 #: lib/libalpm/be_local.c:663
#: lib/libalpm/be_local.c:958 lib/libalpm/be_local.c:1055 #, c-format
#: lib/libalpm/diskspace.c:131 lib/libalpm/dload.c:823 lib/libalpm/util.c:254 msgid "unknown install reason for package %s: %s\n"
#: lib/libalpm/util.c:270 msgstr "neznámý důvod instalace balíčku %s: %s\n"
#: lib/libalpm/be_local.c:743 lib/libalpm/be_local.c:856
#: lib/libalpm/be_local.c:996 lib/libalpm/be_local.c:1102
#: lib/libalpm/diskspace.c:135 lib/libalpm/dload.c:792 lib/libalpm/util.c:273
#: lib/libalpm/util.c:289
#, c-format #, c-format
msgid "could not open file %s: %s\n" msgid "could not open file %s: %s\n"
msgstr "nelze otevřít soubor %s: %s\n" msgstr "nelze otevřít soubor %s: %s\n"
#: lib/libalpm/be_local.c:738 lib/libalpm/be_sync.c:582 #: lib/libalpm/be_local.c:759 lib/libalpm/be_sync.c:612
#, c-format #, c-format
msgid "%s database is inconsistent: name mismatch on package %s\n" msgid "%s database is inconsistent: name mismatch on package %s\n"
msgstr "databáze %s je nekonzistentní: nesouhlasí jméno balíčku %s\n" msgstr "databáze %s je nekonzistentní: nesouhlasí jméno balíčku %s\n"
#: lib/libalpm/be_local.c:744 lib/libalpm/be_sync.c:588 #: lib/libalpm/be_local.c:765 lib/libalpm/be_sync.c:618
#, c-format #, c-format
msgid "%s database is inconsistent: version mismatch on package %s\n" msgid "%s database is inconsistent: version mismatch on package %s\n"
msgstr "databáze %s je nekonzistentní: nesouhlasí verze balíčku %s\n" msgstr "databáze %s je nekonzistentní: nesouhlasí verze balíčku %s\n"
#: lib/libalpm/be_local.c:785 #: lib/libalpm/be_local.c:806
#, c-format #, c-format
msgid "unknown validation type for package %s: %s\n" msgid "unknown validation type for package %s: %s\n"
msgstr "neznámý způsob ověření pro balíček %s: %s\n" msgstr "neznámý způsob ověření pro balíček %s: %s\n"
#: lib/libalpm/be_package.c:478 lib/libalpm/be_package.c:631 #: lib/libalpm/be_local.c:841
#: lib/libalpm/be_package.c:643 #, c-format
msgid "%s: unknown key '%s' in local database\n"
msgstr "%s: neznámý klíč '%s' v lokální databázi\n"
#: lib/libalpm/be_package.c:255
#, c-format
msgid "%s: unknown key '%s' in package description\n"
msgstr "%s: neznámý klíč '%s' v popisu balíčku\n"
#: lib/libalpm/be_package.c:482 lib/libalpm/be_package.c:635
#: lib/libalpm/be_package.c:647
#, c-format #, c-format
msgid "error while reading package %s: %s\n" msgid "error while reading package %s: %s\n"
msgstr "chyba při čtení balíčku %s: %s\n" msgstr "chyba při čtení balíčku %s: %s\n"
#: lib/libalpm/be_package.c:491 lib/libalpm/be_package.c:514 #: lib/libalpm/be_package.c:495 lib/libalpm/be_package.c:518
#, c-format #, c-format
msgid "error while reading mtree of package %s: %s\n" msgid "error while reading mtree of package %s: %s\n"
msgstr "chyba při čtení souboru mtree balíčku %s: %s\n" msgstr "chyba při čtení souboru mtree balíčku %s: %s\n"
#: lib/libalpm/be_package.c:597 #: lib/libalpm/be_package.c:601
#, c-format #, c-format
msgid "could not parse package description file in %s\n" msgid "could not parse package description file in %s\n"
msgstr "nelze zpracovat soubor s popisem balíčku v %s\n" msgstr "nelze zpracovat soubor s popisem balíčku v %s\n"
#: lib/libalpm/be_package.c:602 #: lib/libalpm/be_package.c:606
#, c-format #, c-format
msgid "missing package name in %s\n" msgid "missing package name in %s\n"
msgstr "chybí jméno balíčku v %s\n" msgstr "chybí jméno balíčku v %s\n"
#: lib/libalpm/be_package.c:606 #: lib/libalpm/be_package.c:610
#, c-format #, c-format
msgid "missing package version in %s\n" msgid "missing package version in %s\n"
msgstr "chybí veze balíčku v %s\n" msgstr "chybí verze balíčku v %s\n"
#: lib/libalpm/be_package.c:610 #: lib/libalpm/be_package.c:614
#, c-format #, c-format
msgid "invalid package version in %s\n" msgid "invalid package version in %s\n"
msgstr "neplatná verze balíčku v %s\n" msgstr "neplatná verze balíčku v %s\n"
#: lib/libalpm/be_package.c:649 #: lib/libalpm/be_package.c:653
#, c-format #, c-format
msgid "missing package metadata in %s\n" msgid "missing package metadata in %s\n"
msgstr "chybí metadata balíčku v %s\n" msgstr "chybí metadata balíčku v %s\n"
#: lib/libalpm/be_package.c:741 #: lib/libalpm/be_package.c:745
#, c-format #, c-format
msgid "failed to read signature file: %s\n" msgid "failed to read signature file: %s\n"
msgstr "nelze načíst soubor s podpisy: %s\n" msgstr "nelze načíst soubor s podpisy: %s\n"
#: lib/libalpm/be_package.c:770 lib/libalpm/sync.c:953 #: lib/libalpm/be_package.c:768 lib/libalpm/sync.c:976
#, c-format #, c-format
msgid "required key missing from keyring\n" msgid "required key missing from keyring\n"
msgstr "požadovaný klíč není v klíčence\n" msgstr "požadovaný klíč není v klíčence\n"
@ -245,32 +261,37 @@ msgstr "požadovaný klíč není v klíčence\n"
msgid "removing invalid file: %s\n" msgid "removing invalid file: %s\n"
msgstr "odstraněn neplatný soubor: %s\n" msgstr "odstraněn neplatný soubor: %s\n"
#: lib/libalpm/be_sync.c:449 #: lib/libalpm/be_sync.c:471
#, c-format #, c-format
msgid "could not parse package description file '%s' from db '%s'\n" msgid "could not parse package description file '%s' from db '%s'\n"
msgstr "nelze načíst soubor s popisem balíčku '%s' z databáze '%s'\n" msgstr "nelze načíst soubor s popisem balíčku '%s' z databáze '%s'\n"
#: lib/libalpm/be_sync.c:456 #: lib/libalpm/be_sync.c:486
#, c-format #, c-format
msgid "could not read db '%s' (%s)\n" msgid "could not read db '%s' (%s)\n"
msgstr "nelze přečíst databázi '%s' (%s)\n" msgstr "nelze přečíst databázi '%s' (%s)\n"
#: lib/libalpm/be_sync.c:489 lib/libalpm/be_sync.c:494 #: lib/libalpm/be_sync.c:519 lib/libalpm/be_sync.c:524
#, c-format #, c-format
msgid "%s database is inconsistent: filename of package %s is illegal\n" msgid "%s database is inconsistent: filename of package %s is illegal\n"
msgstr "databáze %s je nekonzistentní: jméno balíčku %s je nepřípustné\n" msgstr "databáze %s je nekonzistentní: jméno balíčku %s je nepřípustné\n"
#: lib/libalpm/be_sync.c:499 #: lib/libalpm/be_sync.c:529
#, c-format #, c-format
msgid "%s database is inconsistent: filename of package %s is too long\n" msgid "%s database is inconsistent: filename of package %s is too long\n"
msgstr "databáze %s je nekonzistentní: jméno balíčku %s je příliš dlouhé\n" msgstr "databáze %s je nekonzistentní: jméno balíčku %s je příliš dlouhé\n"
#: lib/libalpm/be_sync.c:564 #: lib/libalpm/be_sync.c:594
#, c-format #, c-format
msgid "unknown database file: %s\n" msgid "unknown database file: %s\n"
msgstr "neznámý soubor databáze: %s\n" msgstr "neznámý soubor databáze: %s\n"
#: lib/libalpm/db.c:344 #: lib/libalpm/be_sync.c:712
#, c-format
msgid "%s: unknown key '%s' in sync database\n"
msgstr "%s: neznámý klíč '%s' v sync databázi\n"
#: lib/libalpm/db.c:413
#, c-format #, c-format
msgid "database path is undefined\n" msgid "database path is undefined\n"
msgstr "cesta k databázi není definována\n" msgstr "cesta k databázi není definována\n"
@ -310,108 +331,123 @@ msgstr "nepodařilo se získat informace o souborovém systému %s: %s\n"
msgid "could not open file: %s: %s\n" msgid "could not open file: %s: %s\n"
msgstr "nelze otevřít soubor: %s: %s\n" msgstr "nelze otevřít soubor: %s: %s\n"
#: lib/libalpm/diskspace.c:146 lib/libalpm/diskspace.c:159 #: lib/libalpm/diskspace.c:154 lib/libalpm/diskspace.c:167
#, c-format #, c-format
msgid "could not get filesystem information\n" msgid "could not get filesystem information\n"
msgstr "nepodařilo se získat informace o souborovém systému\n" msgstr "nepodařilo se získat informace o souborovém systému\n"
#: lib/libalpm/diskspace.c:242 #: lib/libalpm/diskspace.c:254
#, c-format #, c-format
msgid "could not get file information for %s\n" msgid "could not get file information for %s\n"
msgstr "nelze získat informace o souboru pro %s\n" msgstr "nelze získat informace o souboru %s\n"
#: lib/libalpm/diskspace.c:256 lib/libalpm/diskspace.c:315 #: lib/libalpm/diskspace.c:268 lib/libalpm/diskspace.c:327
#, c-format #, c-format
msgid "could not determine mount point for file %s\n" msgid "could not determine mount point for file %s\n"
msgstr "nepodařilo se určit připojovací bod pro soubor %s\n" msgstr "nepodařilo se určit připojovací bod pro soubor %s\n"
#: lib/libalpm/diskspace.c:354 #: lib/libalpm/diskspace.c:366
#, c-format #, c-format
msgid "Partition %s too full: %jd blocks needed, %ju blocks free\n" msgid "Partition %s too full: %jd blocks needed, %ju blocks free\n"
msgstr "Oddíl %s je plný: je potřeba %jd bloků, ale k dispozici je jen %ju\n" msgstr "Oddíl %s je plný: je potřeba %jd bloků, ale k dispozici je jen %ju\n"
#: lib/libalpm/diskspace.c:379 lib/libalpm/diskspace.c:433 #: lib/libalpm/diskspace.c:391 lib/libalpm/diskspace.c:445
#, c-format #, c-format
msgid "could not determine filesystem mount points\n" msgid "could not determine filesystem mount points\n"
msgstr "nepodařilo se určit přípojné body souborového systému\n" msgstr "nepodařilo se určit přípojné body souborového systému\n"
#: lib/libalpm/diskspace.c:385 #: lib/libalpm/diskspace.c:397
#, c-format #, c-format
msgid "could not determine cachedir mount point %s\n" msgid "could not determine cachedir mount point %s\n"
msgstr "nepodařilo se určit kořen přípojného bodu %s pro cachedir\n" msgstr "nepodařilo se určit kořen přípojného bodu %s pro cachedir\n"
#: lib/libalpm/diskspace.c:438 #: lib/libalpm/diskspace.c:450
#, c-format #, c-format
msgid "could not determine root mount point %s\n" msgid "could not determine root mount point %s\n"
msgstr "nepodařilo se určit kořen přípojného bodu %s\n" msgstr "nepodařilo se určit kořen přípojného bodu %s\n"
#: lib/libalpm/diskspace.c:486 #: lib/libalpm/diskspace.c:498
#, c-format #, c-format
msgid "Partition %s is mounted read only\n" msgid "Partition %s is mounted read only\n"
msgstr "Diskový oddíl %s je připojen jen pro čtení\n" msgstr "Diskový oddíl %s je připojen jen pro čtení\n"
#: lib/libalpm/dload.c:116 #: lib/libalpm/dload.c:107
#, c-format
msgid ""
"too many errors from %s, skipping for the remainder of this transaction\n"
msgstr ""
#: lib/libalpm/dload.c:220
#, c-format
msgid "disk"
msgstr "disk"
#: lib/libalpm/dload.c:392
#, c-format #, c-format
msgid "failed to create temporary file for download\n" msgid "failed to create temporary file for download\n"
msgstr "nepodařilo se vytvořit dočasný soubor pro stahování\n" msgstr "nepodařilo se vytvořit dočasný soubor pro stahování\n"
#: lib/libalpm/dload.c:509 lib/libalpm/dload.c:547 lib/libalpm/dload.c:561 #: lib/libalpm/dload.c:198
#, c-format
msgid ""
"too many errors from %s, skipping for the remainder of this transaction\n"
msgstr "příliš mnoho chyb v %s, vynechání pokračování této transakce\n"
#: lib/libalpm/dload.c:215
#, c-format
msgid "fatal error from %s, skipping for the remainder of this transaction\n"
msgstr "fatální chyba v %s, vynechání pokračování této transakce\n"
#: lib/libalpm/dload.c:310
#, c-format
msgid "disk"
msgstr "disk"
#: lib/libalpm/dload.c:532 lib/libalpm/dload.c:570 lib/libalpm/dload.c:583
#, c-format #, c-format
msgid "failed retrieving file '%s' from %s : %s\n" msgid "failed retrieving file '%s' from %s : %s\n"
msgstr "selhalo získání souboru '%s' z %s: %s\n" msgstr "selhalo získání souboru '%s' z %s: %s\n"
#: lib/libalpm/dload.c:539 #: lib/libalpm/dload.c:562
#, c-format #, c-format
msgid "failed retrieving file '%s' from %s : expected download size exceeded\n" msgid "failed retrieving file '%s' from %s : expected download size exceeded\n"
msgstr "" msgstr ""
"selhalo získání souboru '%s' z %s : překročení očekávané velikosti " "selhalo získání souboru '%s' z %s : překročení očekávané velikosti "
"stahování\n" "stahování\n"
#: lib/libalpm/dload.c:687 #: lib/libalpm/dload.c:685
#, c-format #, c-format
msgid "%s appears to be truncated: %jd/%jd bytes\n" msgid "%s appears to be truncated: %jd/%jd bytes\n"
msgstr "%s se zdá být zkrácen: %jd/%jd bytů\n" msgstr "%s se zdá být zkrácen: %jd/%jd bytů\n"
#: lib/libalpm/dload.c:787 #: lib/libalpm/dload.c:776
#, c-format #, c-format
msgid "url '%s' is invalid\n" msgid "url '%s' is invalid\n"
msgstr "URL '%s' je chybná\n" msgstr "URL '%s' je chybná\n"
#: lib/libalpm/dload.c:893 #: lib/libalpm/dload.c:864
#, c-format #, c-format
msgid "failed to setup a download payload for %s\n" msgid "failed to setup a download payload for %s\n"
msgstr "" msgstr "nepodařilo se nastavit datovou část stahování pro %s\n"
#: lib/libalpm/dload.c:905 #: lib/libalpm/dload.c:876
#, c-format #, c-format
msgid "curl returned error %d from transfer\n" msgid "curl returned error %d from transfer\n"
msgstr "" msgstr "chyba %d v curl při přenosu\n"
#: lib/libalpm/dload.c:929 #: lib/libalpm/dload.c:900
#, c-format #, c-format
msgid "curl transfer error: %d\n" msgid "curl transfer error: %d\n"
msgstr "chyba přenosu curl : %d\n"
#: lib/libalpm/dload.c:963
#, c-format
msgid "could not chdir to download directory %s\n"
msgstr "" msgstr ""
#: lib/libalpm/dload.c:1055 lib/libalpm/sync.c:840 #: lib/libalpm/dload.c:968
#, c-format
msgid "switching to sandbox user '%s' failed!\n"
msgstr ""
#: lib/libalpm/dload.c:1361 lib/libalpm/sync.c:861
#, c-format #, c-format
msgid "failed to retrieve some files\n" msgid "failed to retrieve some files\n"
msgstr "selhalo získání některých souborů\n" msgstr "selhalo získání některých souborů\n"
#: lib/libalpm/dload.c:1078 #: lib/libalpm/dload.c:1384
#, c-format #, c-format
msgid "download completed successfully but no file in the cache\n" msgid "download completed successfully but no file in the cache\n"
msgstr "" msgstr "stahování úspěšně dokončeno, ale soubor nenalezen v mezipaměti\n"
#: lib/libalpm/error.c:40 #: lib/libalpm/error.c:40
#, c-format #, c-format
@ -526,7 +562,7 @@ msgstr "pro repositář nejsou nastaveny žádné servery"
#: lib/libalpm/error.c:88 #: lib/libalpm/error.c:88
#, c-format #, c-format
msgid "transaction already initialized" msgid "transaction already initialized"
msgstr "transakce inicializována" msgstr "transakce již byla inicializována"
#: lib/libalpm/error.c:90 lib/libalpm/error.c:96 #: lib/libalpm/error.c:90 lib/libalpm/error.c:96
#, c-format #, c-format
@ -541,7 +577,7 @@ msgstr "duplicitní cíl"
#: lib/libalpm/error.c:94 #: lib/libalpm/error.c:94
#, c-format #, c-format
msgid "duplicate filename" msgid "duplicate filename"
msgstr "" msgstr "duplicitní jméno souboru"
#: lib/libalpm/error.c:98 #: lib/libalpm/error.c:98
#, c-format #, c-format
@ -576,7 +612,7 @@ msgstr "nelze nalézt nebo přečíst balíček"
#: lib/libalpm/error.c:111 #: lib/libalpm/error.c:111
#, c-format #, c-format
msgid "operation cancelled due to ignorepkg" msgid "operation cancelled due to ignorepkg"
msgstr "operace byla zrušena kvůli ignorovanému balíčku" msgstr "operace byla zrušena kvůli nastavení ignorepkg"
#: lib/libalpm/error.c:113 #: lib/libalpm/error.c:113
#, c-format #, c-format
@ -586,7 +622,7 @@ msgstr "neplatný nebo poškozený balíček"
#: lib/libalpm/error.c:115 #: lib/libalpm/error.c:115
#, c-format #, c-format
msgid "invalid or corrupted package (checksum)" msgid "invalid or corrupted package (checksum)"
msgstr "neplatná nebo poškozená databáze (kontrolní součty)" msgstr "neplatný nebo poškozený balíček (kontrolní součet)"
#: lib/libalpm/error.c:117 #: lib/libalpm/error.c:117
#, c-format #, c-format
@ -683,12 +719,12 @@ msgstr "zkompilováno bez podpory podepisování"
msgid "unexpected error" msgid "unexpected error"
msgstr "neočekávaná chyba" msgstr "neočekávaná chyba"
#: lib/libalpm/handle.c:142 #: lib/libalpm/handle.c:165
#, c-format #, c-format
msgid "lock file missing %s\n" msgid "lock file missing %s\n"
msgstr "chybí soubor zámku %s\n" msgstr "chybí soubor zámku %s\n"
#: lib/libalpm/handle.c:148 #: lib/libalpm/handle.c:171
#, c-format #, c-format
msgid "could not remove lock file %s\n" msgid "could not remove lock file %s\n"
msgstr "nelze odstranit zamykací soubor %s\n" msgstr "nelze odstranit zamykací soubor %s\n"
@ -763,14 +799,14 @@ msgstr "nelze spustit hook %s: %s\n"
#: lib/libalpm/hook.c:547 lib/libalpm/hook.c:559 lib/libalpm/remove.c:378 #: lib/libalpm/hook.c:547 lib/libalpm/hook.c:559 lib/libalpm/remove.c:378
#, c-format #, c-format
msgid "could not open directory: %s: %s\n" msgid "could not open directory: %s: %s\n"
msgstr "nelze otevřít adresář %s: %s\n" msgstr "nelze otevřít složku: %s: %s\n"
#: lib/libalpm/hook.c:575 #: lib/libalpm/hook.c:575
#, c-format #, c-format
msgid "could not open file: %s%s: %s\n" msgid "could not open file: %s%s: %s\n"
msgstr "nelze otevřít soubor: %s%s: %s\n" msgstr "nelze otevřít soubor: %s%s: %s\n"
#: lib/libalpm/hook.c:595 lib/libalpm/util.c:260 #: lib/libalpm/hook.c:595 lib/libalpm/util.c:279
#, c-format #, c-format
msgid "could not stat file %s: %s\n" msgid "could not stat file %s: %s\n"
msgstr "nelze najít soubor %s: %s\n" msgstr "nelze najít soubor %s: %s\n"
@ -778,13 +814,50 @@ msgstr "nelze najít soubor %s: %s\n"
#: lib/libalpm/hook.c:621 #: lib/libalpm/hook.c:621
#, c-format #, c-format
msgid "could not read directory: %s: %s\n" msgid "could not read directory: %s: %s\n"
msgstr "nelze přečíst adresář: %s: %s\n" msgstr "nelze přečíst složku: %s: %s\n"
#: lib/libalpm/package.c:598 #: lib/libalpm/package.c:614
#, c-format #, c-format
msgid "could not fully load metadata for package %s-%s\n" msgid "could not fully load metadata for package %s-%s\n"
msgstr "nelze zcela načíst metadata pro balíček %s-%s\n" msgstr "nelze zcela načíst metadata pro balíček %s-%s\n"
#: lib/libalpm/package.c:869
#, c-format
msgid "invalid package metadata (name or version missing)"
msgstr "neplatná metadata balíčku (chybí jméno nebo verze)"
#: lib/libalpm/package.c:874
#, c-format
msgid ""
"invalid metadata for package %s-%s (package name cannot start with '.' or "
"'-')\n"
msgstr ""
"neplatná metadata balíčku %s-%s (jméno balíčku nesmí začínat na '.' nebo "
"'-')\n"
#: lib/libalpm/package.c:878
#, c-format
msgid ""
"invalid metadata for package %s-%s (package name contains invalid "
"characters)\n"
msgstr ""
"neplatná metadata balíčku %s-%s (jméno balíčku obsahuje neplatné znaky)\n"
#: lib/libalpm/package.c:885 lib/libalpm/package.c:889
#, c-format
msgid ""
"invalid metadata for package %s-%s (package version contains invalid "
"characters)\n"
msgstr ""
"neplatná metadata balíčku %s-%s (verze balíčku obsahuje neplatné znaky)\n"
#: lib/libalpm/package.c:895
#, c-format
msgid ""
"invalid metadata for package %s-%s (package name and version too long)\n"
msgstr ""
"neplatná metadata balíčku %s-%s (jméno a verze balíčku je příliš dlouhé)\n"
#: lib/libalpm/remove.c:111 #: lib/libalpm/remove.c:111
#, c-format #, c-format
msgid "could not find %s in database -- skipping\n" msgid "could not find %s in database -- skipping\n"
@ -793,7 +866,7 @@ msgstr "nelze nalézt %s v databázi -- vynechat\n"
#: lib/libalpm/remove.c:146 #: lib/libalpm/remove.c:146
#, c-format #, c-format
msgid "removing %s from target list\n" msgid "removing %s from target list\n"
msgstr "'%s' odstraněn ze seznamu cílů\n" msgstr "%s odstraněn ze seznamu cílů\n"
#: lib/libalpm/remove.c:338 #: lib/libalpm/remove.c:338
#, c-format #, c-format
@ -805,17 +878,17 @@ msgstr "nelze odstranit soubor '%s': %s\n"
msgid "could not backup %s due to PATH_MAX overflow\n" msgid "could not backup %s due to PATH_MAX overflow\n"
msgstr "nelze zazálohovat %s kvůli přetečení PATH_MAX\n" msgstr "nelze zazálohovat %s kvůli přetečení PATH_MAX\n"
#: lib/libalpm/remove.c:554 #: lib/libalpm/remove.c:570
#, c-format #, c-format
msgid "cannot remove %s (%s)\n" msgid "cannot remove %s (%s)\n"
msgstr "nelze odstranit %s (%s)\n" msgstr "nelze odstranit %s (%s)\n"
#: lib/libalpm/remove.c:727 #: lib/libalpm/remove.c:743
#, c-format #, c-format
msgid "could not remove database entry %s-%s\n" msgid "could not remove database entry %s-%s\n"
msgstr "nelze odstranit záznam databáze %s-%s\n" msgstr "nelze odstranit záznam databáze %s-%s\n"
#: lib/libalpm/remove.c:732 #: lib/libalpm/remove.c:748
#, c-format #, c-format
msgid "could not remove entry '%s' from cache\n" msgid "could not remove entry '%s' from cache\n"
msgstr "nelze odstranit položku '%s' z mezipaměti\n" msgstr "nelze odstranit položku '%s' z mezipaměti\n"
@ -825,89 +898,89 @@ msgstr "nelze odstranit položku '%s' z mezipaměti\n"
msgid "Public keyring not found; have you run '%s'?\n" msgid "Public keyring not found; have you run '%s'?\n"
msgstr "Nebyla nalezena veřejná klíčenka; spustili jste '%s'?\n" msgstr "Nebyla nalezena veřejná klíčenka; spustili jste '%s'?\n"
#: lib/libalpm/signing.c:199 lib/libalpm/signing.c:767 #: lib/libalpm/signing.c:199 lib/libalpm/signing.c:773
#, c-format #, c-format
msgid "GPGME error: %s\n" msgid "GPGME error: %s\n"
msgstr "Chyba GPGME: %s\n" msgstr "Chyba GPGME: %s\n"
#: lib/libalpm/signing.c:274 #: lib/libalpm/signing.c:275
#, c-format #, c-format
msgid "looking up key %s using WKD\n" msgid "looking up key %s using WKD\n"
msgstr "vyhledávání klíče %s pomocí WKD\n" msgstr "vyhledávání klíče %s pomocí WKD\n"
#: lib/libalpm/signing.c:283 #: lib/libalpm/signing.c:289
#, c-format #, c-format
msgid "gpg error: %s\n" msgid "gpg error: %s\n"
msgstr "chyba gpg: %s\n" msgstr "chyba gpg: %s\n"
#: lib/libalpm/signing.c:430 lib/libalpm/signing.c:503 #: lib/libalpm/signing.c:440 lib/libalpm/signing.c:513
#, c-format #, c-format
msgid "keyring is not writable\n" msgid "keyring is not writable\n"
msgstr "do klíčenky nelze zapisovat\n" msgstr "do klíčenky nelze zapisovat\n"
#: lib/libalpm/signing.c:531 #: lib/libalpm/signing.c:537
#, c-format #, c-format
msgid "key \"%s\" on keyserver\n" msgid "key \"%s\" on keyserver\n"
msgstr "klíč \"%s\" na serveru\n" msgstr "klíč \"%s\" na serveru\n"
#: lib/libalpm/signing.c:536 #: lib/libalpm/signing.c:542
#, c-format #, c-format
msgid "key \"%s\" could not be imported\n" msgid "key \"%s\" could not be imported\n"
msgstr "klíč \"%s\" se nepodařilo importovat\n" msgstr "klíč \"%s\" se nepodařilo importovat\n"
#: lib/libalpm/signing.c:540 #: lib/libalpm/signing.c:546
#, c-format #, c-format
msgid "key \"%s\" could not be looked up remotely\n" msgid "key \"%s\" could not be looked up remotely\n"
msgstr "klíč \"%s\" nebylo možné vzdáleně vyhledat\n" msgstr "klíč \"%s\" nebylo možné vzdáleně vyhledat\n"
#: lib/libalpm/signing.c:926 lib/libalpm/sync.c:1022 #: lib/libalpm/signing.c:932 lib/libalpm/sync.c:1052
#, c-format #, c-format
msgid "%s: missing required signature\n" msgid "%s: missing required signature\n"
msgstr "%s: chybí vyžadovaný podpis\n" msgstr "%s: chybí vyžadovaný podpis\n"
#: lib/libalpm/signing.c:941 #: lib/libalpm/signing.c:947
#, c-format #, c-format
msgid "%s: signature from \"%s\" is marginal trust\n" msgid "%s: signature from \"%s\" is marginal trust\n"
msgstr "%s: podpis od \"%s\" má částečnou důvěru\n" msgstr "%s: podpis od \"%s\" má částečnou důvěru\n"
#: lib/libalpm/signing.c:949 #: lib/libalpm/signing.c:955
#, c-format #, c-format
msgid "%s: signature from \"%s\" is unknown trust\n" msgid "%s: signature from \"%s\" is unknown trust\n"
msgstr "%s: u podpisu od \"%s\" není známá úroveň důvěry\n" msgstr "%s: u podpisu od \"%s\" není známá úroveň důvěry\n"
#: lib/libalpm/signing.c:956 #: lib/libalpm/signing.c:962
#, c-format #, c-format
msgid "%s: signature from \"%s\" should never be trusted\n" msgid "%s: signature from \"%s\" should never be trusted\n"
msgstr "%s: podpis od \"%s\" je nedůvěryhodný\n" msgstr "%s: podpis od \"%s\" je nedůvěryhodný\n"
#: lib/libalpm/signing.c:968 #: lib/libalpm/signing.c:974
#, c-format #, c-format
msgid "%s: key \"%s\" is unknown\n" msgid "%s: key \"%s\" is unknown\n"
msgstr "%s: klíč \"%s\" je neznámý\n" msgstr "%s: klíč \"%s\" je neznámý\n"
#: lib/libalpm/signing.c:977 #: lib/libalpm/signing.c:983
#, c-format #, c-format
msgid "%s: key \"%s\" is disabled\n" msgid "%s: key \"%s\" is disabled\n"
msgstr "%s: klíč \"%s\" je vypnut\n" msgstr "%s: klíč \"%s\" je zakázán\n"
#: lib/libalpm/signing.c:981 #: lib/libalpm/signing.c:987
#, c-format #, c-format
msgid "%s: signature from \"%s\" is expired\n" msgid "%s: signature from \"%s\" is expired\n"
msgstr "%s: podpis od \"%s\" vypršel\n" msgstr "%s: podpisu od \"%s\" vypršela platnost\n"
#: lib/libalpm/signing.c:985 #: lib/libalpm/signing.c:991
#, c-format #, c-format
msgid "%s: signature from \"%s\" is invalid\n" msgid "%s: signature from \"%s\" is invalid\n"
msgstr "%s: podpis od \"%s\" je neplatný\n" msgstr "%s: podpis od \"%s\" je neplatný\n"
#: lib/libalpm/signing.c:1043 lib/libalpm/signing.c:1104 #: lib/libalpm/signing.c:1049 lib/libalpm/signing.c:1110
#: lib/libalpm/signing.c:1183 #: lib/libalpm/signing.c:1189
#, c-format #, c-format
msgid "%s: signature format error\n" msgid "%s: signature format error\n"
msgstr "%s: chyba formátu podpisu\n" msgstr "%s: chyba formátu podpisu\n"
#: lib/libalpm/signing.c:1136 lib/libalpm/signing.c:1169 #: lib/libalpm/signing.c:1142 lib/libalpm/signing.c:1175
#: lib/libalpm/signing.c:1177 #: lib/libalpm/signing.c:1183
#, c-format #, c-format
msgid "%s: unsupported signature format\n" msgid "%s: unsupported signature format\n"
msgstr "%s: nepodporovaný formát podpisu\n" msgstr "%s: nepodporovaný formát podpisu\n"
@ -942,117 +1015,123 @@ msgstr "ignoruje se náhrada balíčku (%s-%s => %s-%s)\n"
msgid "cannot replace %s by %s\n" msgid "cannot replace %s by %s\n"
msgstr "nelze nahradit soubor %s souborem %s\n" msgstr "nelze nahradit soubor %s souborem %s\n"
#: lib/libalpm/sync.c:476 #: lib/libalpm/sync.c:477
#, c-format #, c-format
msgid "packages %s and %s have the same filename: %s\n" msgid "packages %s and %s have the same filename: %s\n"
msgstr "" msgstr "balíčky %s a %s mají soubor se stejným jménem: %s\n"
#: lib/libalpm/sync.c:542 lib/libalpm/sync.c:612 #: lib/libalpm/sync.c:546 lib/libalpm/sync.c:618
#, c-format #, c-format
msgid "unresolvable package conflicts detected\n" msgid "unresolvable package conflicts detected\n"
msgstr "zjištěn konflikt nerozlišitelných balíčků\n" msgstr "zjištěn neřešitelný konflikt balíčků\n"
#: lib/libalpm/sync.c:562 #: lib/libalpm/sync.c:566
#, c-format #, c-format
msgid "removing '%s' from target list because it conflicts with '%s'\n" msgid "removing '%s-%s' from target list because it conflicts with '%s-%s'\n"
msgstr "'%s' odstraněn ze seznamu cílů, protože je konfliktní s '%s'\n" msgstr ""
"odstraňuji '%s-%s' z cílového seznamu, protože je v konfliktu s '%s-%s'\n"
#: lib/libalpm/sync.c:1036 #: lib/libalpm/sync.c:1020 lib/libalpm/sync.c:1187
#, c-format
msgid "%s: could not find package in cache\n"
msgstr "%s: balíček nenalezen v mezipaměti\n"
#: lib/libalpm/sync.c:1066
#, c-format #, c-format
msgid "failed to read file %s: %s\n" msgid "failed to read file %s: %s\n"
msgstr "načtení souboru %s se nezdařilo: %s\n" msgstr "načtení souboru %s se nezdařilo: %s\n"
#: lib/libalpm/sync.c:1223 #: lib/libalpm/sync.c:1324
#, c-format #, c-format
msgid "not enough free disk space\n" msgid "not enough free disk space\n"
msgstr "není dostatek volného místa na disku\n" msgstr "není dostatek volného místa na disku\n"
#: lib/libalpm/sync.c:1245 #: lib/libalpm/sync.c:1346
#, c-format #, c-format
msgid "could not commit removal transaction\n" msgid "could not commit removal transaction\n"
msgstr "nelze provést transakci pro odstranění\n" msgstr "nelze provést transakci pro odstranění\n"
#: lib/libalpm/sync.c:1253 #: lib/libalpm/sync.c:1354
#, c-format #, c-format
msgid "could not commit transaction\n" msgid "could not commit transaction\n"
msgstr "nelze provést transakci\n" msgstr "nelze provést transakci\n"
#: lib/libalpm/trans.c:365 #: lib/libalpm/trans.c:369
#, c-format #, c-format
msgid "could not create temp directory\n" msgid "could not create temp directory\n"
msgstr "nelze vytvořit dočasný adresář\n" msgstr "nelze vytvořit dočasný adresář\n"
#: lib/libalpm/trans.c:380 #: lib/libalpm/trans.c:384
#, c-format #, c-format
msgid "could not copy tempfile to %s (%s)\n" msgid "could not copy tempfile to %s (%s)\n"
msgstr "nelze zkopírovat dočasný soubor do %s (%s)\n" msgstr "nelze zkopírovat dočasný soubor do %s (%s)\n"
#: lib/libalpm/trans.c:411 #: lib/libalpm/trans.c:415
#, c-format #, c-format
msgid "could not remove %s\n" msgid "could not remove %s\n"
msgstr "nelze odstranit %s\n" msgstr "nelze odstranit %s\n"
#: lib/libalpm/trans.c:415 #: lib/libalpm/trans.c:419
#, c-format #, c-format
msgid "could not remove tmpdir %s\n" msgid "could not remove tmpdir %s\n"
msgstr "nelze odstranit dočasný adresář %s\n" msgstr "nelze odstranit dočasný adresář %s\n"
#: lib/libalpm/util.c:488 #: lib/libalpm/util.c:512
#, c-format #, c-format
msgid "unable to write to pipe (%s)\n" msgid "unable to write to pipe (%s)\n"
msgstr "nelze zapisovat do roury (%s)\n" msgstr "nelze zapisovat do roury (%s)\n"
#: lib/libalpm/util.c:547 #: lib/libalpm/util.c:571
#, c-format #, c-format
msgid "unable to read from pipe (%s)\n" msgid "unable to read from pipe (%s)\n"
msgstr "nelze číst z roury (%s)\n" msgstr "nelze číst z roury (%s)\n"
#: lib/libalpm/util.c:617 lib/libalpm/util.c:623 #: lib/libalpm/util.c:641 lib/libalpm/util.c:647
#, c-format #, c-format
msgid "could not create pipe (%s)\n" msgid "could not create pipe (%s)\n"
msgstr "nepodařilo se vytvořit rouru (%s)\n" msgstr "nepodařilo se vytvořit rouru (%s)\n"
#: lib/libalpm/util.c:631 #: lib/libalpm/util.c:655
#, c-format #, c-format
msgid "could not fork a new process (%s)\n" msgid "could not fork a new process (%s)\n"
msgstr "nelze spustit nový proces (%s)\n" msgstr "nelze spustit nový proces (%s)\n"
#: lib/libalpm/util.c:654 #: lib/libalpm/util.c:680
#, c-format #, c-format
msgid "could not change the root directory (%s)\n" msgid "could not change the root directory (%s)\n"
msgstr "nelze změnit kořenový adresář (%s)\n" msgstr "nelze změnit kořenový adresář (%s)\n"
#: lib/libalpm/util.c:666 #: lib/libalpm/util.c:700
#, c-format #, c-format
msgid "call to execv failed (%s)\n" msgid "call to execv failed (%s)\n"
msgstr "volání execv selhalo (%s)\n" msgstr "volání execv selhalo (%s)\n"
#: lib/libalpm/util.c:745 #: lib/libalpm/util.c:779
#, c-format #, c-format
msgid "call to waitpid failed (%s)\n" msgid "call to waitpid failed (%s)\n"
msgstr "volání waitpid selhalo (%s)\n" msgstr "volání waitpid selhalo (%s)\n"
#: lib/libalpm/util.c:755 #: lib/libalpm/util.c:789
#, c-format #, c-format
msgid "command failed to execute correctly\n" msgid "command failed to execute correctly\n"
msgstr "příkaz se nepodařilo spustit správně\n" msgstr "příkaz se nepodařilo spustit správně\n"
#: lib/libalpm/util.c:762 #: lib/libalpm/util.c:796
#, c-format #, c-format
msgid "Unknown signal" msgid "Unknown signal"
msgstr "Neznámý signál" msgstr "Neznámý signál"
#: lib/libalpm/util.c:764 #: lib/libalpm/util.c:798
#, c-format #, c-format
msgid "command terminated by signal %d: %s\n" msgid "command terminated by signal %d: %s\n"
msgstr "příkaz ukončen signálem %d: %s\n" msgstr "příkaz ukončen signálem %d: %s\n"
#: lib/libalpm/util.c:875 #: lib/libalpm/util.c:916
#, c-format #, c-format
msgid "no %s cache exists, creating...\n" msgid "no %s cache exists, creating...\n"
msgstr "neexistuje mezipaměť %s, vytváří se...\n" msgstr "neexistuje mezipaměť %s, vytváří se...\n"
#: lib/libalpm/util.c:906 #: lib/libalpm/util.c:947
#, c-format #, c-format
msgid "couldn't find or create package cache, using %s instead\n" msgid "couldn't find or create package cache, using %s instead\n"
msgstr "" msgstr ""

View file

@ -13,11 +13,11 @@
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Arch Linux Pacman package manager\n" "Project-Id-Version: Arch Linux Pacman package manager\n"
"Report-Msgid-Bugs-To: http://bugs.archlinux.org/index.php?project=3\n" "Report-Msgid-Bugs-To: https://gitlab.archlinux.org/pacman/pacman/-/issues\n"
"POT-Creation-Date: 2021-09-04 16:15+1000\n" "POT-Creation-Date: 2024-07-14 19:10+1000\n"
"PO-Revision-Date: 2021-05-20 02:25+0000\n" "PO-Revision-Date: 2010-11-29 23:17+0000\n"
"Last-Translator: Allan McRae <allan@archlinux.org>\n" "Last-Translator: scootergrisen, 2017\n"
"Language-Team: Danish (http://www.transifex.com/toofishes/archlinux-pacman/" "Language-Team: Danish (http://app.transifex.com/toofishes/archlinux-pacman/"
"language/da/)\n" "language/da/)\n"
"Language: da\n" "Language: da\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
@ -45,17 +45,17 @@ msgstr "nedgraderer pakke %s (%s => %s)\n"
msgid "cannot allocate disk archive object" msgid "cannot allocate disk archive object"
msgstr "kan ikke allokere diskarkiv-objekt" msgstr "kan ikke allokere diskarkiv-objekt"
#: lib/libalpm/add.c:143 lib/libalpm/util.c:384 #: lib/libalpm/add.c:143 lib/libalpm/util.c:408
#, c-format #, c-format
msgid "warning given when extracting %s (%s)\n" msgid "warning given when extracting %s (%s)\n"
msgstr "advarsel givet under udpakning %s (%s)\n" msgstr "advarsel givet under udpakning %s (%s)\n"
#: lib/libalpm/add.c:146 lib/libalpm/util.c:387 #: lib/libalpm/add.c:146 lib/libalpm/util.c:411
#, c-format #, c-format
msgid "could not extract %s (%s)\n" msgid "could not extract %s (%s)\n"
msgstr "kunne ikke udpakke %s (%s)\n" msgstr "kunne ikke udpakke %s (%s)\n"
#: lib/libalpm/add.c:159 lib/libalpm/dload.c:709 lib/libalpm/remove.c:534 #: lib/libalpm/add.c:159 lib/libalpm/dload.c:707 lib/libalpm/remove.c:550
#, c-format #, c-format
msgid "could not rename %s to %s (%s)\n" msgid "could not rename %s to %s (%s)\n"
msgstr "kunne ikke omdøbe %s til %s (%s)\n" msgstr "kunne ikke omdøbe %s til %s (%s)\n"
@ -99,18 +99,18 @@ msgstr "udtræk: overskriver ikke mappe med fil %s\n"
msgid "unable to extract %s.pacnew: path too long" msgid "unable to extract %s.pacnew: path too long"
msgstr "kan ikke pakke %s.pacnew ud: sti for lang" msgstr "kan ikke pakke %s.pacnew ud: sti for lang"
#: lib/libalpm/add.c:510 lib/libalpm/util.c:335 lib/libalpm/util.c:600 #: lib/libalpm/add.c:510 lib/libalpm/util.c:354 lib/libalpm/util.c:624
#, c-format #, c-format
msgid "could not get current working directory\n" msgid "could not get current working directory\n"
msgstr "kunne ikke hente nuværende arbejdsmappe\n" msgstr "kunne ikke hente nuværende arbejdsmappe\n"
#: lib/libalpm/add.c:515 lib/libalpm/util.c:340 lib/libalpm/util.c:605 #: lib/libalpm/add.c:515 lib/libalpm/util.c:359 lib/libalpm/util.c:629
#: lib/libalpm/util.c:658 #: lib/libalpm/util.c:684
#, c-format #, c-format
msgid "could not change directory to %s (%s)\n" msgid "could not change directory to %s (%s)\n"
msgstr "kunne ikke ændre mappe til %s (%s)\n" msgstr "kunne ikke ændre mappe til %s (%s)\n"
#: lib/libalpm/add.c:571 lib/libalpm/util.c:405 lib/libalpm/util.c:774 #: lib/libalpm/add.c:571 lib/libalpm/util.c:429 lib/libalpm/util.c:808
#, c-format #, c-format
msgid "could not restore working directory (%s)\n" msgid "could not restore working directory (%s)\n"
msgstr "kunne ikke genskabe arbejdsmappe (%s)\n" msgstr "kunne ikke genskabe arbejdsmappe (%s)\n"
@ -135,101 +135,116 @@ msgstr "kunne ikke opdatere databasepunkt %s-%s\n"
msgid "could not add entry '%s' in cache\n" 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"
#: lib/libalpm/be_local.c:266 #: lib/libalpm/be_local.c:271
#, c-format #, c-format
msgid "error while reading file %s: %s\n" msgid "error while reading file %s: %s\n"
msgstr "der opstod en fejl under læsning af fil %s: %s\n" msgstr "der opstod en fejl under læsning af fil %s: %s\n"
#: lib/libalpm/be_local.c:376 #: lib/libalpm/be_local.c:382
#, c-format #, c-format
msgid "removing invalid database: %s\n" msgid "removing invalid database: %s\n"
msgstr "fjerner ugyldig database: %s\n" msgstr "fjerner ugyldig database: %s\n"
#: lib/libalpm/be_local.c:427 lib/libalpm/be_local.c:909 #: lib/libalpm/be_local.c:433 lib/libalpm/be_local.c:947
#, c-format #, c-format
msgid "could not create directory %s: %s\n" msgid "could not create directory %s: %s\n"
msgstr "kunne ikke oprette mappe %s: %s\n" msgstr "kunne ikke oprette mappe %s: %s\n"
#: lib/libalpm/be_local.c:602 lib/libalpm/be_sync.c:322 #: lib/libalpm/be_local.c:608 lib/libalpm/be_sync.c:339
#, c-format #, c-format
msgid "invalid name for database entry '%s'\n" msgid "invalid name for database entry '%s'\n"
msgstr "ugyldigt navn for databasepunkt '%s'\n" msgstr "ugyldigt navn for databasepunkt '%s'\n"
#: lib/libalpm/be_local.c:610 #: lib/libalpm/be_local.c:616
#, c-format #, c-format
msgid "duplicated database entry '%s'\n" msgid "duplicated database entry '%s'\n"
msgstr "duplikeret databasepunkt '%s'\n" msgstr "duplikeret databasepunkt '%s'\n"
#: lib/libalpm/be_local.c:622 #: lib/libalpm/be_local.c:628
#, c-format #, c-format
msgid "corrupted database entry '%s'\n" msgid "corrupted database entry '%s'\n"
msgstr "beskadiget databasepunkt '%s'\n" msgstr "beskadiget databasepunkt '%s'\n"
#: lib/libalpm/be_local.c:722 lib/libalpm/be_local.c:818 #: lib/libalpm/be_local.c:663
#: lib/libalpm/be_local.c:958 lib/libalpm/be_local.c:1055 #, c-format
#: lib/libalpm/diskspace.c:131 lib/libalpm/dload.c:823 lib/libalpm/util.c:254 msgid "unknown install reason for package %s: %s\n"
#: lib/libalpm/util.c:270 msgstr ""
#: lib/libalpm/be_local.c:743 lib/libalpm/be_local.c:856
#: lib/libalpm/be_local.c:996 lib/libalpm/be_local.c:1102
#: lib/libalpm/diskspace.c:135 lib/libalpm/dload.c:792 lib/libalpm/util.c:273
#: lib/libalpm/util.c:289
#, c-format #, c-format
msgid "could not open file %s: %s\n" msgid "could not open file %s: %s\n"
msgstr "kunne ikke åbne fil %s: %s\n" msgstr "kunne ikke åbne fil %s: %s\n"
#: lib/libalpm/be_local.c:738 lib/libalpm/be_sync.c:582 #: lib/libalpm/be_local.c:759 lib/libalpm/be_sync.c:612
#, c-format #, c-format
msgid "%s database is inconsistent: name mismatch on package %s\n" msgid "%s database is inconsistent: name mismatch on package %s\n"
msgstr "%s-database er inkonsistent: forskellige navne på pakke %s\n" msgstr "%s-database er inkonsistent: forskellige navne på pakke %s\n"
#: lib/libalpm/be_local.c:744 lib/libalpm/be_sync.c:588 #: lib/libalpm/be_local.c:765 lib/libalpm/be_sync.c:618
#, c-format #, c-format
msgid "%s database is inconsistent: version mismatch on package %s\n" msgid "%s database is inconsistent: version mismatch on package %s\n"
msgstr "%s-database er inkonsistent: forskellige versioner på pakke %s\n" msgstr "%s-database er inkonsistent: forskellige versioner på pakke %s\n"
#: lib/libalpm/be_local.c:785 #: lib/libalpm/be_local.c:806
#, c-format #, c-format
msgid "unknown validation type for package %s: %s\n" msgid "unknown validation type for package %s: %s\n"
msgstr "ukendt valideringstype for pakke %s: %s\n" msgstr "ukendt valideringstype for pakke %s: %s\n"
#: lib/libalpm/be_package.c:478 lib/libalpm/be_package.c:631 #: lib/libalpm/be_local.c:841
#: lib/libalpm/be_package.c:643 #, c-format
msgid "%s: unknown key '%s' in local database\n"
msgstr ""
#: lib/libalpm/be_package.c:255
#, c-format
msgid "%s: unknown key '%s' in package description\n"
msgstr ""
#: lib/libalpm/be_package.c:482 lib/libalpm/be_package.c:635
#: lib/libalpm/be_package.c:647
#, c-format #, c-format
msgid "error while reading package %s: %s\n" msgid "error while reading package %s: %s\n"
msgstr "der opstod en fejl under læsning af pakke %s: %s\n" msgstr "der opstod en fejl under læsning af pakke %s: %s\n"
#: lib/libalpm/be_package.c:491 lib/libalpm/be_package.c:514 #: lib/libalpm/be_package.c:495 lib/libalpm/be_package.c:518
#, c-format #, c-format
msgid "error while reading mtree of package %s: %s\n" msgid "error while reading mtree of package %s: %s\n"
msgstr "fejl ved læsning af mtree af pakke %s: %s\n" msgstr "fejl ved læsning af mtree af pakke %s: %s\n"
#: lib/libalpm/be_package.c:597 #: lib/libalpm/be_package.c:601
#, c-format #, c-format
msgid "could not parse package description file in %s\n" msgid "could not parse package description file in %s\n"
msgstr "kunne ikke fortolke pakkebeskrivelsesfil i %s\n" msgstr "kunne ikke fortolke pakkebeskrivelsesfil i %s\n"
#: lib/libalpm/be_package.c:602 #: lib/libalpm/be_package.c:606
#, c-format #, c-format
msgid "missing package name in %s\n" msgid "missing package name in %s\n"
msgstr "manglende pakkenavn i %s\n" msgstr "manglende pakkenavn i %s\n"
#: lib/libalpm/be_package.c:606 #: lib/libalpm/be_package.c:610
#, c-format #, c-format
msgid "missing package version in %s\n" msgid "missing package version in %s\n"
msgstr "manglende pakkeversion i %s\n" msgstr "manglende pakkeversion i %s\n"
#: lib/libalpm/be_package.c:610 #: lib/libalpm/be_package.c:614
#, c-format #, c-format
msgid "invalid package version in %s\n" msgid "invalid package version in %s\n"
msgstr "ugyldig pakkeversion i %s\n" msgstr "ugyldig pakkeversion i %s\n"
#: lib/libalpm/be_package.c:649 #: lib/libalpm/be_package.c:653
#, c-format #, c-format
msgid "missing package metadata in %s\n" msgid "missing package metadata in %s\n"
msgstr "manglende pakkemetadata i %s\n" msgstr "manglende pakkemetadata i %s\n"
#: lib/libalpm/be_package.c:741 #: lib/libalpm/be_package.c:745
#, c-format #, c-format
msgid "failed to read signature file: %s\n" msgid "failed to read signature file: %s\n"
msgstr "kunne ikke læse underskriftfil: %s\n" msgstr "kunne ikke læse underskriftfil: %s\n"
#: lib/libalpm/be_package.c:770 lib/libalpm/sync.c:953 #: lib/libalpm/be_package.c:768 lib/libalpm/sync.c:976
#, c-format #, c-format
msgid "required key missing from keyring\n" msgid "required key missing from keyring\n"
msgstr "krævede nøgle mangler fra nøglering\n" msgstr "krævede nøgle mangler fra nøglering\n"
@ -239,32 +254,37 @@ msgstr "krævede nøgle mangler fra nøglering\n"
msgid "removing invalid file: %s\n" msgid "removing invalid file: %s\n"
msgstr "fjerner ugyldig fil: %s\n" msgstr "fjerner ugyldig fil: %s\n"
#: lib/libalpm/be_sync.c:449 #: lib/libalpm/be_sync.c:471
#, c-format #, c-format
msgid "could not parse package description file '%s' from db '%s'\n" msgid "could not parse package description file '%s' from db '%s'\n"
msgstr "kunne ikke fortolke pakkebeskrivelsesfil '%s' fra db '%s'\n" msgstr "kunne ikke fortolke pakkebeskrivelsesfil '%s' fra db '%s'\n"
#: lib/libalpm/be_sync.c:456 #: lib/libalpm/be_sync.c:486
#, c-format #, c-format
msgid "could not read db '%s' (%s)\n" msgid "could not read db '%s' (%s)\n"
msgstr "kunne ikke læse db '%s' (%s)\n" msgstr "kunne ikke læse db '%s' (%s)\n"
#: lib/libalpm/be_sync.c:489 lib/libalpm/be_sync.c:494 #: lib/libalpm/be_sync.c:519 lib/libalpm/be_sync.c:524
#, c-format #, c-format
msgid "%s database is inconsistent: filename of package %s is illegal\n" msgid "%s database is inconsistent: filename of package %s is illegal\n"
msgstr "%s-database er inkonsistent: filnavnet på pakken %s er ugyldigt\n" msgstr "%s-database er inkonsistent: filnavnet på pakken %s er ugyldigt\n"
#: lib/libalpm/be_sync.c:499 #: lib/libalpm/be_sync.c:529
#, c-format #, c-format
msgid "%s database is inconsistent: filename of package %s is too long\n" msgid "%s database is inconsistent: filename of package %s is too long\n"
msgstr "%s-database er inkonsistent: filnavnet på pakken %s er for langt\n" msgstr "%s-database er inkonsistent: filnavnet på pakken %s er for langt\n"
#: lib/libalpm/be_sync.c:564 #: lib/libalpm/be_sync.c:594
#, c-format #, c-format
msgid "unknown database file: %s\n" msgid "unknown database file: %s\n"
msgstr "ukendt databaseful: %s\n" msgstr "ukendt databaseful: %s\n"
#: lib/libalpm/db.c:344 #: lib/libalpm/be_sync.c:712
#, c-format
msgid "%s: unknown key '%s' in sync database\n"
msgstr ""
#: lib/libalpm/db.c:413
#, c-format #, c-format
msgid "database path is undefined\n" msgid "database path is undefined\n"
msgstr "databasesti er udefineret\n" msgstr "databasesti er udefineret\n"
@ -304,105 +324,120 @@ msgstr "kunne ikke hente filsysteminformation for %s: %s\n"
msgid "could not open file: %s: %s\n" msgid "could not open file: %s: %s\n"
msgstr "kunne ikke åbne fil: %s: %s\n" msgstr "kunne ikke åbne fil: %s: %s\n"
#: lib/libalpm/diskspace.c:146 lib/libalpm/diskspace.c:159 #: lib/libalpm/diskspace.c:154 lib/libalpm/diskspace.c:167
#, c-format #, c-format
msgid "could not get filesystem information\n" msgid "could not get filesystem information\n"
msgstr "kunne ikke hente filsysteminformation\n" msgstr "kunne ikke hente filsysteminformation\n"
#: lib/libalpm/diskspace.c:242 #: lib/libalpm/diskspace.c:254
#, c-format #, c-format
msgid "could not get file information for %s\n" msgid "could not get file information for %s\n"
msgstr "kunne ikke hente filinformation for %s\n" msgstr "kunne ikke hente filinformation for %s\n"
#: lib/libalpm/diskspace.c:256 lib/libalpm/diskspace.c:315 #: lib/libalpm/diskspace.c:268 lib/libalpm/diskspace.c:327
#, c-format #, c-format
msgid "could not determine mount point for file %s\n" msgid "could not determine mount point for file %s\n"
msgstr "kunne ikke bestemme monteringspunkt for fil %s\n" msgstr "kunne ikke bestemme monteringspunkt for fil %s\n"
#: lib/libalpm/diskspace.c:354 #: lib/libalpm/diskspace.c:366
#, c-format #, c-format
msgid "Partition %s too full: %jd blocks needed, %ju blocks free\n" msgid "Partition %s too full: %jd blocks needed, %ju blocks free\n"
msgstr "Partition %s for fuld: %jd blokke nødvendige, %ju blokke frie\n" msgstr "Partition %s for fuld: %jd blokke nødvendige, %ju blokke frie\n"
#: lib/libalpm/diskspace.c:379 lib/libalpm/diskspace.c:433 #: lib/libalpm/diskspace.c:391 lib/libalpm/diskspace.c:445
#, c-format #, c-format
msgid "could not determine filesystem mount points\n" msgid "could not determine filesystem mount points\n"
msgstr "kunne ikke bestemme monteringspunkter for filsystem\n" msgstr "kunne ikke bestemme monteringspunkter for filsystem\n"
#: lib/libalpm/diskspace.c:385 #: lib/libalpm/diskspace.c:397
#, c-format #, c-format
msgid "could not determine cachedir mount point %s\n" msgid "could not determine cachedir mount point %s\n"
msgstr "kunne ikke bestemme monteringspunkt for cachedir %s\n" msgstr "kunne ikke bestemme monteringspunkt for cachedir %s\n"
#: lib/libalpm/diskspace.c:438 #: lib/libalpm/diskspace.c:450
#, c-format #, c-format
msgid "could not determine root mount point %s\n" msgid "could not determine root mount point %s\n"
msgstr "kunne ikke bestemme rodmonteringspunkt %s\n" msgstr "kunne ikke bestemme rodmonteringspunkt %s\n"
#: lib/libalpm/diskspace.c:486 #: lib/libalpm/diskspace.c:498
#, c-format #, c-format
msgid "Partition %s is mounted read only\n" msgid "Partition %s is mounted read only\n"
msgstr "Partition %s er monteret som læs-kun\n" msgstr "Partition %s er monteret som læs-kun\n"
#: lib/libalpm/dload.c:116 #: lib/libalpm/dload.c:107
#, c-format
msgid "failed to create temporary file for download\n"
msgstr "kunne ikke oprette midlertidig fil til hentning\n"
#: lib/libalpm/dload.c:198
#, c-format #, c-format
msgid "" msgid ""
"too many errors from %s, skipping for the remainder of this transaction\n" "too many errors from %s, skipping for the remainder of this transaction\n"
msgstr "" msgstr ""
#: lib/libalpm/dload.c:220 #: lib/libalpm/dload.c:215
#, c-format
msgid "fatal error from %s, skipping for the remainder of this transaction\n"
msgstr ""
#: lib/libalpm/dload.c:310
#, c-format #, c-format
msgid "disk" msgid "disk"
msgstr "disk" msgstr "disk"
#: lib/libalpm/dload.c:392 #: lib/libalpm/dload.c:532 lib/libalpm/dload.c:570 lib/libalpm/dload.c:583
#, c-format
msgid "failed to create temporary file for download\n"
msgstr "kunne ikke oprette midlertidig fil til hentning\n"
#: lib/libalpm/dload.c:509 lib/libalpm/dload.c:547 lib/libalpm/dload.c:561
#, c-format #, c-format
msgid "failed retrieving file '%s' from %s : %s\n" msgid "failed retrieving file '%s' from %s : %s\n"
msgstr "fejlede i indhentning af fil '%s' fra %s: %s\n" msgstr "fejlede i indhentning af fil '%s' fra %s: %s\n"
#: lib/libalpm/dload.c:539 #: lib/libalpm/dload.c:562
#, c-format #, c-format
msgid "failed retrieving file '%s' from %s : expected download size exceeded\n" msgid "failed retrieving file '%s' from %s : expected download size exceeded\n"
msgstr "" msgstr ""
"kunne ikke indhente fil '%s' fra %s: forventet downloadstørrelse " "kunne ikke indhente fil '%s' fra %s: forventet downloadstørrelse "
"overskredet\n" "overskredet\n"
#: lib/libalpm/dload.c:687 #: lib/libalpm/dload.c:685
#, c-format #, c-format
msgid "%s appears to be truncated: %jd/%jd bytes\n" msgid "%s appears to be truncated: %jd/%jd bytes\n"
msgstr "%s ser ud til at være afkortet: %jd/%jd byte\n" msgstr "%s ser ud til at være afkortet: %jd/%jd byte\n"
#: lib/libalpm/dload.c:787 #: lib/libalpm/dload.c:776
#, c-format #, c-format
msgid "url '%s' is invalid\n" msgid "url '%s' is invalid\n"
msgstr "adressen '%s' er ugyldig\n" msgstr "adressen '%s' er ugyldig\n"
#: lib/libalpm/dload.c:893 #: lib/libalpm/dload.c:864
#, c-format #, c-format
msgid "failed to setup a download payload for %s\n" msgid "failed to setup a download payload for %s\n"
msgstr "" msgstr ""
#: lib/libalpm/dload.c:905 #: lib/libalpm/dload.c:876
#, c-format #, c-format
msgid "curl returned error %d from transfer\n" msgid "curl returned error %d from transfer\n"
msgstr "" msgstr ""
#: lib/libalpm/dload.c:929 #: lib/libalpm/dload.c:900
#, c-format #, c-format
msgid "curl transfer error: %d\n" msgid "curl transfer error: %d\n"
msgstr "" msgstr ""
#: lib/libalpm/dload.c:1055 lib/libalpm/sync.c:840 #: lib/libalpm/dload.c:963
#, c-format
msgid "could not chdir to download directory %s\n"
msgstr "kunne ikke ændre mappe (chdir) til overførelsesmappe %s\n"
#: lib/libalpm/dload.c:968
#, c-format
msgid "switching to sandbox user '%s' failed!\n"
msgstr ""
#: lib/libalpm/dload.c:1361 lib/libalpm/sync.c:861
#, c-format #, c-format
msgid "failed to retrieve some files\n" msgid "failed to retrieve some files\n"
msgstr "kunne ikke indhente nogle filer\n" msgstr "kunne ikke indhente nogle filer\n"
#: lib/libalpm/dload.c:1078 #: lib/libalpm/dload.c:1384
#, c-format #, c-format
msgid "download completed successfully but no file in the cache\n" msgid "download completed successfully but no file in the cache\n"
msgstr "" msgstr ""
@ -677,12 +712,12 @@ msgstr "kompileret uden understøttelse af signatur"
msgid "unexpected error" msgid "unexpected error"
msgstr "uventet fejl" msgstr "uventet fejl"
#: lib/libalpm/handle.c:142 #: lib/libalpm/handle.c:165
#, c-format #, c-format
msgid "lock file missing %s\n" msgid "lock file missing %s\n"
msgstr "låsefil mangler %s\n" msgstr "låsefil mangler %s\n"
#: lib/libalpm/handle.c:148 #: lib/libalpm/handle.c:171
#, c-format #, c-format
msgid "could not remove lock file %s\n" msgid "could not remove lock file %s\n"
msgstr "kunne ikke fjerne låsningsfil %s\n" msgstr "kunne ikke fjerne låsningsfil %s\n"
@ -764,7 +799,7 @@ msgstr "kunne ikke åbne mappe: %s: %s\n"
msgid "could not open file: %s%s: %s\n" msgid "could not open file: %s%s: %s\n"
msgstr "kunne ikke åbne fil: %s%s: %s\n" msgstr "kunne ikke åbne fil: %s%s: %s\n"
#: lib/libalpm/hook.c:595 lib/libalpm/util.c:260 #: lib/libalpm/hook.c:595 lib/libalpm/util.c:279
#, c-format #, c-format
msgid "could not stat file %s: %s\n" msgid "could not stat file %s: %s\n"
msgstr "kunne ikke køre (stat) fil %s: %s\n" msgstr "kunne ikke køre (stat) fil %s: %s\n"
@ -774,11 +809,43 @@ msgstr "kunne ikke køre (stat) fil %s: %s\n"
msgid "could not read directory: %s: %s\n" msgid "could not read directory: %s: %s\n"
msgstr "kunne ikke læse mappe: %s: %s\n" msgstr "kunne ikke læse mappe: %s: %s\n"
#: lib/libalpm/package.c:598 #: lib/libalpm/package.c:614
#, c-format #, c-format
msgid "could not fully load metadata for package %s-%s\n" msgid "could not fully load metadata for package %s-%s\n"
msgstr "kunne ikke fuldt indlæse metadata for pakke %s-%s\n" msgstr "kunne ikke fuldt indlæse metadata for pakke %s-%s\n"
#: lib/libalpm/package.c:869
#, c-format
msgid "invalid package metadata (name or version missing)"
msgstr ""
#: lib/libalpm/package.c:874
#, c-format
msgid ""
"invalid metadata for package %s-%s (package name cannot start with '.' or "
"'-')\n"
msgstr ""
#: lib/libalpm/package.c:878
#, c-format
msgid ""
"invalid metadata for package %s-%s (package name contains invalid "
"characters)\n"
msgstr ""
#: lib/libalpm/package.c:885 lib/libalpm/package.c:889
#, c-format
msgid ""
"invalid metadata for package %s-%s (package version contains invalid "
"characters)\n"
msgstr ""
#: lib/libalpm/package.c:895
#, c-format
msgid ""
"invalid metadata for package %s-%s (package name and version too long)\n"
msgstr ""
#: lib/libalpm/remove.c:111 #: lib/libalpm/remove.c:111
#, c-format #, c-format
msgid "could not find %s in database -- skipping\n" msgid "could not find %s in database -- skipping\n"
@ -799,17 +866,17 @@ msgstr "kan ikke fjerne fil »%s«:%s\n"
msgid "could not backup %s due to PATH_MAX overflow\n" msgid "could not backup %s due to PATH_MAX overflow\n"
msgstr "kunne ikke sikkerhedskopiere %s på grund af PATH_MAX-overløb\n" msgstr "kunne ikke sikkerhedskopiere %s på grund af PATH_MAX-overløb\n"
#: lib/libalpm/remove.c:554 #: lib/libalpm/remove.c:570
#, c-format #, c-format
msgid "cannot remove %s (%s)\n" msgid "cannot remove %s (%s)\n"
msgstr "kan ikke fjerne %s (%s)\n" msgstr "kan ikke fjerne %s (%s)\n"
#: lib/libalpm/remove.c:727 #: lib/libalpm/remove.c:743
#, c-format #, c-format
msgid "could not remove database entry %s-%s\n" msgid "could not remove database entry %s-%s\n"
msgstr "kunne ikke fjerne databasepunkt %s-%s\n" msgstr "kunne ikke fjerne databasepunkt %s-%s\n"
#: lib/libalpm/remove.c:732 #: lib/libalpm/remove.c:748
#, c-format #, c-format
msgid "could not remove entry '%s' from cache\n" msgid "could not remove entry '%s' from cache\n"
msgstr "kunne ikke fjerne punkt '%s' fra cache\n" msgstr "kunne ikke fjerne punkt '%s' fra cache\n"
@ -819,89 +886,89 @@ msgstr "kunne ikke fjerne punkt '%s' fra cache\n"
msgid "Public keyring not found; have you run '%s'?\n" msgid "Public keyring not found; have you run '%s'?\n"
msgstr "Offentlig nøglering ikke fundet. Har du kørt '%s'?\n" msgstr "Offentlig nøglering ikke fundet. Har du kørt '%s'?\n"
#: lib/libalpm/signing.c:199 lib/libalpm/signing.c:767 #: lib/libalpm/signing.c:199 lib/libalpm/signing.c:773
#, c-format #, c-format
msgid "GPGME error: %s\n" msgid "GPGME error: %s\n"
msgstr "Fejl ved GPGME: %s\n" msgstr "Fejl ved GPGME: %s\n"
#: lib/libalpm/signing.c:274 #: lib/libalpm/signing.c:275
#, c-format #, c-format
msgid "looking up key %s using WKD\n" msgid "looking up key %s using WKD\n"
msgstr "slår nøglen %s op med WKD\n" msgstr "slår nøglen %s op med WKD\n"
#: lib/libalpm/signing.c:283 #: lib/libalpm/signing.c:289
#, c-format #, c-format
msgid "gpg error: %s\n" msgid "gpg error: %s\n"
msgstr "fejl ved gpg: %s\n" msgstr "fejl ved gpg: %s\n"
#: lib/libalpm/signing.c:430 lib/libalpm/signing.c:503 #: lib/libalpm/signing.c:440 lib/libalpm/signing.c:513
#, c-format #, c-format
msgid "keyring is not writable\n" msgid "keyring is not writable\n"
msgstr "der kan ikke skrives til nøglering\n" msgstr "der kan ikke skrives til nøglering\n"
#: lib/libalpm/signing.c:531 #: lib/libalpm/signing.c:537
#, c-format #, c-format
msgid "key \"%s\" on keyserver\n" msgid "key \"%s\" on keyserver\n"
msgstr "nøglen\"%s\" på nøgleserver\n" msgstr "nøglen\"%s\" på nøgleserver\n"
#: lib/libalpm/signing.c:536 #: lib/libalpm/signing.c:542
#, c-format #, c-format
msgid "key \"%s\" could not be imported\n" msgid "key \"%s\" could not be imported\n"
msgstr "nøglen \"%s\" kunne ikke importeres\n" msgstr "nøglen \"%s\" kunne ikke importeres\n"
#: lib/libalpm/signing.c:540 #: lib/libalpm/signing.c:546
#, c-format #, c-format
msgid "key \"%s\" could not be looked up remotely\n" msgid "key \"%s\" could not be looked up remotely\n"
msgstr "nøglen \"%s\" kunne ikke opslås eksternt\n" msgstr "nøglen \"%s\" kunne ikke opslås eksternt\n"
#: lib/libalpm/signing.c:926 lib/libalpm/sync.c:1022 #: lib/libalpm/signing.c:932 lib/libalpm/sync.c:1052
#, c-format #, c-format
msgid "%s: missing required signature\n" msgid "%s: missing required signature\n"
msgstr "%s: mangler krævet signatur\n" msgstr "%s: mangler krævet signatur\n"
#: lib/libalpm/signing.c:941 #: lib/libalpm/signing.c:947
#, c-format #, c-format
msgid "%s: signature from \"%s\" is marginal trust\n" msgid "%s: signature from \"%s\" is marginal trust\n"
msgstr "%s: signatur fra \"%s\" er marginelt betroet\n" msgstr "%s: signatur fra \"%s\" er marginelt betroet\n"
#: lib/libalpm/signing.c:949 #: lib/libalpm/signing.c:955
#, c-format #, c-format
msgid "%s: signature from \"%s\" is unknown trust\n" msgid "%s: signature from \"%s\" is unknown trust\n"
msgstr "%s: signatur fra \"%s\" er ukendt betroet\n" msgstr "%s: signatur fra \"%s\" er ukendt betroet\n"
#: lib/libalpm/signing.c:956 #: lib/libalpm/signing.c:962
#, c-format #, c-format
msgid "%s: signature from \"%s\" should never be trusted\n" msgid "%s: signature from \"%s\" should never be trusted\n"
msgstr "%s: signatur fra \"%s\" skal aldrig betroes\n" msgstr "%s: signatur fra \"%s\" skal aldrig betroes\n"
#: lib/libalpm/signing.c:968 #: lib/libalpm/signing.c:974
#, c-format #, c-format
msgid "%s: key \"%s\" is unknown\n" msgid "%s: key \"%s\" is unknown\n"
msgstr "%s: nøgelen \"%s\" er ukendt\n" msgstr "%s: nøgelen \"%s\" er ukendt\n"
#: lib/libalpm/signing.c:977 #: lib/libalpm/signing.c:983
#, c-format #, c-format
msgid "%s: key \"%s\" is disabled\n" msgid "%s: key \"%s\" is disabled\n"
msgstr "%s: nøglen \"%s\" er deaktiveret\n" msgstr "%s: nøglen \"%s\" er deaktiveret\n"
#: lib/libalpm/signing.c:981 #: lib/libalpm/signing.c:987
#, c-format #, c-format
msgid "%s: signature from \"%s\" is expired\n" msgid "%s: signature from \"%s\" is expired\n"
msgstr "%s: signatur fra \"%s\" er udløbet\n" msgstr "%s: signatur fra \"%s\" er udløbet\n"
#: lib/libalpm/signing.c:985 #: lib/libalpm/signing.c:991
#, c-format #, c-format
msgid "%s: signature from \"%s\" is invalid\n" msgid "%s: signature from \"%s\" is invalid\n"
msgstr "%s: signatur fra \"%s\" er ugyldig\n" msgstr "%s: signatur fra \"%s\" er ugyldig\n"
#: lib/libalpm/signing.c:1043 lib/libalpm/signing.c:1104 #: lib/libalpm/signing.c:1049 lib/libalpm/signing.c:1110
#: lib/libalpm/signing.c:1183 #: lib/libalpm/signing.c:1189
#, c-format #, c-format
msgid "%s: signature format error\n" msgid "%s: signature format error\n"
msgstr "%s: fejl i signaturformat\n" msgstr "%s: fejl i signaturformat\n"
#: lib/libalpm/signing.c:1136 lib/libalpm/signing.c:1169 #: lib/libalpm/signing.c:1142 lib/libalpm/signing.c:1175
#: lib/libalpm/signing.c:1177 #: lib/libalpm/signing.c:1183
#, c-format #, c-format
msgid "%s: unsupported signature format\n" msgid "%s: unsupported signature format\n"
msgstr "%s: signaturformat understøttes ikke\n" msgstr "%s: signaturformat understøttes ikke\n"
@ -936,117 +1003,122 @@ msgstr "ignorerer pakkeerstatning (%s-%s => %s-%s)\n"
msgid "cannot replace %s by %s\n" msgid "cannot replace %s by %s\n"
msgstr "kan ikke erstatte %s med %s\n" msgstr "kan ikke erstatte %s med %s\n"
#: lib/libalpm/sync.c:476 #: lib/libalpm/sync.c:477
#, c-format #, c-format
msgid "packages %s and %s have the same filename: %s\n" msgid "packages %s and %s have the same filename: %s\n"
msgstr "" msgstr ""
#: lib/libalpm/sync.c:542 lib/libalpm/sync.c:612 #: lib/libalpm/sync.c:546 lib/libalpm/sync.c:618
#, c-format #, c-format
msgid "unresolvable package conflicts detected\n" msgid "unresolvable package conflicts detected\n"
msgstr "pakkekonflikter, der ikke kan løses, er detekteret\n" msgstr "pakkekonflikter, der ikke kan løses, er detekteret\n"
#: lib/libalpm/sync.c:562 #: lib/libalpm/sync.c:566
#, c-format #, c-format
msgid "removing '%s' from target list because it conflicts with '%s'\n" msgid "removing '%s-%s' from target list because it conflicts with '%s-%s'\n"
msgstr "fjerner »%s« fra målliste da det konflikter med »%s«\n" msgstr ""
#: lib/libalpm/sync.c:1036 #: lib/libalpm/sync.c:1020 lib/libalpm/sync.c:1187
#, c-format
msgid "%s: could not find package in cache\n"
msgstr ""
#: lib/libalpm/sync.c:1066
#, c-format #, c-format
msgid "failed to read file %s: %s\n" msgid "failed to read file %s: %s\n"
msgstr "kunne ikke læse filen %s: %s\n" msgstr "kunne ikke læse filen %s: %s\n"
#: lib/libalpm/sync.c:1223 #: lib/libalpm/sync.c:1324
#, c-format #, c-format
msgid "not enough free disk space\n" msgid "not enough free disk space\n"
msgstr "ikke nok ledig diskplads\n" msgstr "ikke nok ledig diskplads\n"
#: lib/libalpm/sync.c:1245 #: lib/libalpm/sync.c:1346
#, c-format #, c-format
msgid "could not commit removal transaction\n" msgid "could not commit removal transaction\n"
msgstr "kunne ikke indsende (commit) fjernelsestransaktion\n" msgstr "kunne ikke indsende (commit) fjernelsestransaktion\n"
#: lib/libalpm/sync.c:1253 #: lib/libalpm/sync.c:1354
#, c-format #, c-format
msgid "could not commit transaction\n" msgid "could not commit transaction\n"
msgstr "kunne ikke indsende (commit) transaktion\n" msgstr "kunne ikke indsende (commit) transaktion\n"
#: lib/libalpm/trans.c:365 #: lib/libalpm/trans.c:369
#, c-format #, c-format
msgid "could not create temp directory\n" msgid "could not create temp directory\n"
msgstr "kunne ikke oprette midlertidig mappe\n" msgstr "kunne ikke oprette midlertidig mappe\n"
#: lib/libalpm/trans.c:380 #: lib/libalpm/trans.c:384
#, c-format #, c-format
msgid "could not copy tempfile to %s (%s)\n" msgid "could not copy tempfile to %s (%s)\n"
msgstr "kunne ikke kopier midlertidig fil til %s (%s)\n" msgstr "kunne ikke kopier midlertidig fil til %s (%s)\n"
#: lib/libalpm/trans.c:411 #: lib/libalpm/trans.c:415
#, c-format #, c-format
msgid "could not remove %s\n" msgid "could not remove %s\n"
msgstr "kunne ikke slette %s\n" msgstr "kunne ikke slette %s\n"
#: lib/libalpm/trans.c:415 #: lib/libalpm/trans.c:419
#, c-format #, c-format
msgid "could not remove tmpdir %s\n" msgid "could not remove tmpdir %s\n"
msgstr "kunne ikke fjerne tmpdir %s\n" msgstr "kunne ikke fjerne tmpdir %s\n"
#: lib/libalpm/util.c:488 #: lib/libalpm/util.c:512
#, c-format #, c-format
msgid "unable to write to pipe (%s)\n" msgid "unable to write to pipe (%s)\n"
msgstr "kan ikke skrive til pipe (%s)\n" msgstr "kan ikke skrive til pipe (%s)\n"
#: lib/libalpm/util.c:547 #: lib/libalpm/util.c:571
#, c-format #, c-format
msgid "unable to read from pipe (%s)\n" msgid "unable to read from pipe (%s)\n"
msgstr "kan ikke læse fra pipe (%s)\n" msgstr "kan ikke læse fra pipe (%s)\n"
#: lib/libalpm/util.c:617 lib/libalpm/util.c:623 #: lib/libalpm/util.c:641 lib/libalpm/util.c:647
#, c-format #, c-format
msgid "could not create pipe (%s)\n" msgid "could not create pipe (%s)\n"
msgstr "kunne ikke oprette pipe (%s)\n" msgstr "kunne ikke oprette pipe (%s)\n"
#: lib/libalpm/util.c:631 #: lib/libalpm/util.c:655
#, c-format #, c-format
msgid "could not fork a new process (%s)\n" msgid "could not fork a new process (%s)\n"
msgstr "kunne ikke forgren en ny proces (%s)\n" msgstr "kunne ikke forgren en ny proces (%s)\n"
#: lib/libalpm/util.c:654 #: lib/libalpm/util.c:680
#, c-format #, c-format
msgid "could not change the root directory (%s)\n" msgid "could not change the root directory (%s)\n"
msgstr "kunne ikke ændre rodmappen (%s)\n" msgstr "kunne ikke ændre rodmappen (%s)\n"
#: lib/libalpm/util.c:666 #: lib/libalpm/util.c:700
#, c-format #, c-format
msgid "call to execv failed (%s)\n" msgid "call to execv failed (%s)\n"
msgstr "kald til execv fejlede (%s)\n" msgstr "kald til execv fejlede (%s)\n"
#: lib/libalpm/util.c:745 #: lib/libalpm/util.c:779
#, c-format #, c-format
msgid "call to waitpid failed (%s)\n" msgid "call to waitpid failed (%s)\n"
msgstr "kald til waitpid fejlede (%s)\n" msgstr "kald til waitpid fejlede (%s)\n"
#: lib/libalpm/util.c:755 #: lib/libalpm/util.c:789
#, c-format #, c-format
msgid "command failed to execute correctly\n" msgid "command failed to execute correctly\n"
msgstr "kommando kunne ikke udføres korrekt\n" msgstr "kommando kunne ikke udføres korrekt\n"
#: lib/libalpm/util.c:762 #: lib/libalpm/util.c:796
#, c-format #, c-format
msgid "Unknown signal" msgid "Unknown signal"
msgstr "Ukendt signal" msgstr "Ukendt signal"
#: lib/libalpm/util.c:764 #: lib/libalpm/util.c:798
#, c-format #, c-format
msgid "command terminated by signal %d: %s\n" msgid "command terminated by signal %d: %s\n"
msgstr "kommando afbrudt af signal %d: %s\n" msgstr "kommando afbrudt af signal %d: %s\n"
#: lib/libalpm/util.c:875 #: lib/libalpm/util.c:916
#, c-format #, c-format
msgid "no %s cache exists, creating...\n" msgid "no %s cache exists, creating...\n"
msgstr "ingen %s-cache findes, opretter...\n" msgstr "ingen %s-cache findes, opretter...\n"
#: lib/libalpm/util.c:906 #: lib/libalpm/util.c:947
#, c-format #, c-format
msgid "couldn't find or create package cache, using %s instead\n" msgid "couldn't find or create package cache, using %s instead\n"
msgstr "kunne ikke finde eller oprette pakke-cache, bruger i stedet %s\n" msgstr "kunne ikke finde eller oprette pakke-cache, bruger i stedet %s\n"

View file

@ -8,24 +8,25 @@
# 21db53640bd6018c4a99700a4cf2ee28_f478df7 <98034cbca98620f1cf39d6ebdfa44311_785827>, 2019-2020 # 21db53640bd6018c4a99700a4cf2ee28_f478df7 <98034cbca98620f1cf39d6ebdfa44311_785827>, 2019-2020
# Frank Theile, 2018 # Frank Theile, 2018
# Frank Theile, 2018 # Frank Theile, 2018
# Jakob Gahde <j5lx@fmail.co.uk>, 2014-2015 # Jakob <j5lx@fmail.co.uk>, 2014-2015
# 65138391f015e4001c6ef9d675c96796_707a378 <99e420e9f3ea1b91cb2cbbb4cbc7cd27_2862>, 2013 # 65138391f015e4001c6ef9d675c96796_707a378 <99e420e9f3ea1b91cb2cbbb4cbc7cd27_2862>, 2013
# 65138391f015e4001c6ef9d675c96796_707a378 <99e420e9f3ea1b91cb2cbbb4cbc7cd27_2862>, 2013 # 65138391f015e4001c6ef9d675c96796_707a378 <99e420e9f3ea1b91cb2cbbb4cbc7cd27_2862>, 2013
# Martin Kühne <mysatyre@gmail.com>, 2017 # Martin Kühne <mysatyre@gmail.com>, 2017
# Matthias Gorissen <matthias@archlinux.de>, 2011 # Matthias Gorissen <matthias@archlinux.de>, 2011
# Wieland Hoffmann <themineo+transifex@googlemail.com>, 2013 # Wieland Hoffmann <themineo+transifex@googlemail.com>, 2013
# 65138391f015e4001c6ef9d675c96796_707a378 <99e420e9f3ea1b91cb2cbbb4cbc7cd27_2862>, 2013 # 65138391f015e4001c6ef9d675c96796_707a378 <99e420e9f3ea1b91cb2cbbb4cbc7cd27_2862>, 2013
# Roman Volak <romanvolak@web.de>, 2021
# Silvan Jegen <s.jegen@gmail.com>, 2015 # Silvan Jegen <s.jegen@gmail.com>, 2015
# Wieland Hoffmann <themineo+transifex@googlemail.com>, 2013 # Wieland Hoffmann <themineo+transifex@googlemail.com>, 2013
# Wieland Hoffmann <themineo+transifex@googlemail.com>, 2013 # Wieland Hoffmann <themineo+transifex@googlemail.com>, 2013
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Arch Linux Pacman package manager\n" "Project-Id-Version: Arch Linux Pacman package manager\n"
"Report-Msgid-Bugs-To: http://bugs.archlinux.org/index.php?project=3\n" "Report-Msgid-Bugs-To: https://gitlab.archlinux.org/pacman/pacman/-/issues\n"
"POT-Creation-Date: 2021-09-04 16:15+1000\n" "POT-Creation-Date: 2024-07-14 19:10+1000\n"
"PO-Revision-Date: 2021-05-20 02:25+0000\n" "PO-Revision-Date: 2010-11-29 23:17+0000\n"
"Last-Translator: Allan McRae <allan@archlinux.org>\n" "Last-Translator: Wieland Hoffmann <themineo+transifex@googlemail.com>, 2013\n"
"Language-Team: German (http://www.transifex.com/toofishes/archlinux-pacman/" "Language-Team: German (http://app.transifex.com/toofishes/archlinux-pacman/"
"language/de/)\n" "language/de/)\n"
"Language: de\n" "Language: de\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
@ -53,17 +54,17 @@ msgstr "Downgrade des Paketes %s (%s => %s)\n"
msgid "cannot allocate disk archive object" msgid "cannot allocate disk archive object"
msgstr "Archivobjekt konnte nicht reserviert werden" msgstr "Archivobjekt konnte nicht reserviert werden"
#: lib/libalpm/add.c:143 lib/libalpm/util.c:384 #: lib/libalpm/add.c:143 lib/libalpm/util.c:408
#, c-format #, c-format
msgid "warning given when extracting %s (%s)\n" msgid "warning given when extracting %s (%s)\n"
msgstr "Es erscheint eine Warnung, wenn %s extrahiert wird (%s)\n" msgstr "Es erscheint eine Warnung, wenn %s extrahiert wird (%s)\n"
#: lib/libalpm/add.c:146 lib/libalpm/util.c:387 #: lib/libalpm/add.c:146 lib/libalpm/util.c:411
#, c-format #, c-format
msgid "could not extract %s (%s)\n" msgid "could not extract %s (%s)\n"
msgstr "Konnte %s nicht entpacken (%s)\n" msgstr "Konnte %s nicht entpacken (%s)\n"
#: lib/libalpm/add.c:159 lib/libalpm/dload.c:709 lib/libalpm/remove.c:534 #: lib/libalpm/add.c:159 lib/libalpm/dload.c:707 lib/libalpm/remove.c:550
#, c-format #, c-format
msgid "could not rename %s to %s (%s)\n" msgid "could not rename %s to %s (%s)\n"
msgstr "Konnte %s nicht in %s umbenennen (%s)\n" msgstr "Konnte %s nicht in %s umbenennen (%s)\n"
@ -108,18 +109,18 @@ msgstr "Entpacken: Überschreibe Verzeichnis nicht mit Datei %s\n"
msgid "unable to extract %s.pacnew: path too long" msgid "unable to extract %s.pacnew: path too long"
msgstr "konnte %s.pacnew nicht entpacken: Pfad zu lang" msgstr "konnte %s.pacnew nicht entpacken: Pfad zu lang"
#: lib/libalpm/add.c:510 lib/libalpm/util.c:335 lib/libalpm/util.c:600 #: lib/libalpm/add.c:510 lib/libalpm/util.c:354 lib/libalpm/util.c:624
#, c-format #, c-format
msgid "could not get current working directory\n" msgid "could not get current working directory\n"
msgstr "Konnte aktuelles Arbeitsverzeichnis nicht ermitteln\n" msgstr "Konnte aktuelles Arbeitsverzeichnis nicht ermitteln\n"
#: lib/libalpm/add.c:515 lib/libalpm/util.c:340 lib/libalpm/util.c:605 #: lib/libalpm/add.c:515 lib/libalpm/util.c:359 lib/libalpm/util.c:629
#: lib/libalpm/util.c:658 #: lib/libalpm/util.c:684
#, c-format #, c-format
msgid "could not change directory to %s (%s)\n" msgid "could not change directory to %s (%s)\n"
msgstr "Konnte nicht zu Verzeichnis %s wechseln (%s)\n" msgstr "Konnte nicht zu Verzeichnis %s wechseln (%s)\n"
#: lib/libalpm/add.c:571 lib/libalpm/util.c:405 lib/libalpm/util.c:774 #: lib/libalpm/add.c:571 lib/libalpm/util.c:429 lib/libalpm/util.c:808
#, c-format #, c-format
msgid "could not restore working directory (%s)\n" msgid "could not restore working directory (%s)\n"
msgstr "Konnte das Arbeitsverzeichnis (%s) nicht wiederherstellen\n" msgstr "Konnte das Arbeitsverzeichnis (%s) nicht wiederherstellen\n"
@ -144,105 +145,120 @@ msgstr "Konnte Datenbankeintrag %s-%s nicht aktualisieren\n"
msgid "could not add entry '%s' in cache\n" msgid "could not add entry '%s' in cache\n"
msgstr "Konnte Eintrag '%s' nicht zum Pufferspeicher hinzufügen\n" msgstr "Konnte Eintrag '%s' nicht zum Pufferspeicher hinzufügen\n"
#: lib/libalpm/be_local.c:266 #: lib/libalpm/be_local.c:271
#, c-format #, c-format
msgid "error while reading file %s: %s\n" msgid "error while reading file %s: %s\n"
msgstr "Fehler beim Lesen der Datei %s: %s\n" msgstr "Fehler beim Lesen der Datei %s: %s\n"
#: lib/libalpm/be_local.c:376 #: lib/libalpm/be_local.c:382
#, c-format #, c-format
msgid "removing invalid database: %s\n" msgid "removing invalid database: %s\n"
msgstr "Entferne die ungültige Datenbank: %s\n" msgstr "Entferne die ungültige Datenbank: %s\n"
#: lib/libalpm/be_local.c:427 lib/libalpm/be_local.c:909 #: lib/libalpm/be_local.c:433 lib/libalpm/be_local.c:947
#, c-format #, c-format
msgid "could not create directory %s: %s\n" msgid "could not create directory %s: %s\n"
msgstr "Konnte Verzeichnis %s nicht erstellen: %s\n" msgstr "Konnte Verzeichnis %s nicht erstellen: %s\n"
#: lib/libalpm/be_local.c:602 lib/libalpm/be_sync.c:322 #: lib/libalpm/be_local.c:608 lib/libalpm/be_sync.c:339
#, c-format #, c-format
msgid "invalid name for database entry '%s'\n" msgid "invalid name for database entry '%s'\n"
msgstr "Ungültiger Name für Datenbank-Eintrag '%s'\n" msgstr "Ungültiger Name für Datenbank-Eintrag '%s'\n"
#: lib/libalpm/be_local.c:610 #: lib/libalpm/be_local.c:616
#, c-format #, c-format
msgid "duplicated database entry '%s'\n" msgid "duplicated database entry '%s'\n"
msgstr "Doppelter Datenbank-Eintrag '%s'\n" msgstr "Doppelter Datenbank-Eintrag '%s'\n"
#: lib/libalpm/be_local.c:622 #: lib/libalpm/be_local.c:628
#, c-format #, c-format
msgid "corrupted database entry '%s'\n" msgid "corrupted database entry '%s'\n"
msgstr "Beschädigter Datenbank-Eintrag '%s'\n" msgstr "Beschädigter Datenbank-Eintrag '%s'\n"
#: lib/libalpm/be_local.c:722 lib/libalpm/be_local.c:818 #: lib/libalpm/be_local.c:663
#: lib/libalpm/be_local.c:958 lib/libalpm/be_local.c:1055 #, c-format
#: lib/libalpm/diskspace.c:131 lib/libalpm/dload.c:823 lib/libalpm/util.c:254 msgid "unknown install reason for package %s: %s\n"
#: lib/libalpm/util.c:270 msgstr ""
#: lib/libalpm/be_local.c:743 lib/libalpm/be_local.c:856
#: lib/libalpm/be_local.c:996 lib/libalpm/be_local.c:1102
#: lib/libalpm/diskspace.c:135 lib/libalpm/dload.c:792 lib/libalpm/util.c:273
#: lib/libalpm/util.c:289
#, c-format #, c-format
msgid "could not open file %s: %s\n" msgid "could not open file %s: %s\n"
msgstr "Konnte Datei %s nicht öffnen: %s\n" msgstr "Konnte Datei %s nicht öffnen: %s\n"
#: lib/libalpm/be_local.c:738 lib/libalpm/be_sync.c:582 #: lib/libalpm/be_local.c:759 lib/libalpm/be_sync.c:612
#, c-format #, c-format
msgid "%s database is inconsistent: name mismatch on package %s\n" msgid "%s database is inconsistent: name mismatch on package %s\n"
msgstr "" msgstr ""
"Die Datenbank von %s ist inkonsistent: Die Paketnamen für %s stimmen nicht " "Die Datenbank von %s ist inkonsistent: Die Paketnamen für %s stimmen nicht "
"überein\n" "überein\n"
#: lib/libalpm/be_local.c:744 lib/libalpm/be_sync.c:588 #: lib/libalpm/be_local.c:765 lib/libalpm/be_sync.c:618
#, c-format #, c-format
msgid "%s database is inconsistent: version mismatch on package %s\n" msgid "%s database is inconsistent: version mismatch on package %s\n"
msgstr "" msgstr ""
"Die Datenbank von %s ist inkonsistent: Die Versionsnummern für das Paket %s " "Die Datenbank von %s ist inkonsistent: Die Versionsnummern für das Paket %s "
"stimmen nicht überein\n" "stimmen nicht überein\n"
#: lib/libalpm/be_local.c:785 #: lib/libalpm/be_local.c:806
#, c-format #, c-format
msgid "unknown validation type for package %s: %s\n" msgid "unknown validation type for package %s: %s\n"
msgstr "Unbekannter Validierungstyp für das Paket %s: %s\n" msgstr "Unbekannter Validierungstyp für das Paket %s: %s\n"
#: lib/libalpm/be_package.c:478 lib/libalpm/be_package.c:631 #: lib/libalpm/be_local.c:841
#: lib/libalpm/be_package.c:643 #, c-format
msgid "%s: unknown key '%s' in local database\n"
msgstr ""
#: lib/libalpm/be_package.c:255
#, c-format
msgid "%s: unknown key '%s' in package description\n"
msgstr ""
#: lib/libalpm/be_package.c:482 lib/libalpm/be_package.c:635
#: lib/libalpm/be_package.c:647
#, c-format #, c-format
msgid "error while reading package %s: %s\n" msgid "error while reading package %s: %s\n"
msgstr "Fehler beim Lesen des Paketes %s: %s\n" msgstr "Fehler beim Lesen des Paketes %s: %s\n"
#: lib/libalpm/be_package.c:491 lib/libalpm/be_package.c:514 #: lib/libalpm/be_package.c:495 lib/libalpm/be_package.c:518
#, c-format #, c-format
msgid "error while reading mtree of package %s: %s\n" msgid "error while reading mtree of package %s: %s\n"
msgstr "Fehler beim Lesen des mtrees des Pakets %s: %s\n" msgstr "Fehler beim Lesen des mtrees des Pakets %s: %s\n"
#: lib/libalpm/be_package.c:597 #: lib/libalpm/be_package.c:601
#, c-format #, c-format
msgid "could not parse package description file in %s\n" msgid "could not parse package description file in %s\n"
msgstr "Konnte Paket-Beschreibungsdatei in %s nicht analysieren\n" msgstr "Konnte Paket-Beschreibungsdatei in %s nicht analysieren\n"
#: lib/libalpm/be_package.c:602 #: lib/libalpm/be_package.c:606
#, c-format #, c-format
msgid "missing package name in %s\n" msgid "missing package name in %s\n"
msgstr "Fehlender Paketname in %s\n" msgstr "Fehlender Paketname in %s\n"
#: lib/libalpm/be_package.c:606 #: lib/libalpm/be_package.c:610
#, c-format #, c-format
msgid "missing package version in %s\n" msgid "missing package version in %s\n"
msgstr "Fehlende Paketversion in %s\n" msgstr "Fehlende Paketversion in %s\n"
#: lib/libalpm/be_package.c:610 #: lib/libalpm/be_package.c:614
#, c-format #, c-format
msgid "invalid package version in %s\n" msgid "invalid package version in %s\n"
msgstr "Ungültige Paketversion in %s\n" msgstr "Ungültige Paketversion in %s\n"
#: lib/libalpm/be_package.c:649 #: lib/libalpm/be_package.c:653
#, c-format #, c-format
msgid "missing package metadata in %s\n" msgid "missing package metadata in %s\n"
msgstr "Fehlende Paket-Metadaten in %s\n" msgstr "Fehlende Paket-Metadaten in %s\n"
#: lib/libalpm/be_package.c:741 #: lib/libalpm/be_package.c:745
#, c-format #, c-format
msgid "failed to read signature file: %s\n" msgid "failed to read signature file: %s\n"
msgstr "Konnte die Signatur-Datei nicht lesen: %s\n" msgstr "Konnte die Signatur-Datei nicht lesen: %s\n"
#: lib/libalpm/be_package.c:770 lib/libalpm/sync.c:953 #: lib/libalpm/be_package.c:768 lib/libalpm/sync.c:976
#, c-format #, c-format
msgid "required key missing from keyring\n" msgid "required key missing from keyring\n"
msgstr "Erforderlicher Schlüssel fehlt im Schlüsselbund\n" msgstr "Erforderlicher Schlüssel fehlt im Schlüsselbund\n"
@ -252,37 +268,42 @@ msgstr "Erforderlicher Schlüssel fehlt im Schlüsselbund\n"
msgid "removing invalid file: %s\n" msgid "removing invalid file: %s\n"
msgstr "Entferne ungültige Datei: %s\n" msgstr "Entferne ungültige Datei: %s\n"
#: lib/libalpm/be_sync.c:449 #: lib/libalpm/be_sync.c:471
#, c-format #, c-format
msgid "could not parse package description file '%s' from db '%s'\n" msgid "could not parse package description file '%s' from db '%s'\n"
msgstr "" msgstr ""
"Konnte Paket-Beschreibungsdatei '%s' der Datenbank '%s' nicht analysieren\n" "Konnte Paket-Beschreibungsdatei '%s' der Datenbank '%s' nicht analysieren\n"
#: lib/libalpm/be_sync.c:456 #: lib/libalpm/be_sync.c:486
#, c-format #, c-format
msgid "could not read db '%s' (%s)\n" msgid "could not read db '%s' (%s)\n"
msgstr "konnte Datenbank '%s' (%s) nicht lesen\n" msgstr "konnte Datenbank '%s' (%s) nicht lesen\n"
#: lib/libalpm/be_sync.c:489 lib/libalpm/be_sync.c:494 #: lib/libalpm/be_sync.c:519 lib/libalpm/be_sync.c:524
#, c-format #, c-format
msgid "%s database is inconsistent: filename of package %s is illegal\n" msgid "%s database is inconsistent: filename of package %s is illegal\n"
msgstr "" msgstr ""
"Datenbank %s ist inkonsistent: Der Dateiname des Paketes %s ist nicht " "Datenbank %s ist inkonsistent: Der Dateiname des Paketes %s ist nicht "
"erlaubt\n" "erlaubt\n"
#: lib/libalpm/be_sync.c:499 #: lib/libalpm/be_sync.c:529
#, c-format #, c-format
msgid "%s database is inconsistent: filename of package %s is too long\n" msgid "%s database is inconsistent: filename of package %s is too long\n"
msgstr "" msgstr ""
"Die Datenbank von %s ist inkonsistent: Der Dateiname des Paketes %s ist zu " "Die Datenbank von %s ist inkonsistent: Der Dateiname des Paketes %s ist zu "
"lang\n" "lang\n"
#: lib/libalpm/be_sync.c:564 #: lib/libalpm/be_sync.c:594
#, c-format #, c-format
msgid "unknown database file: %s\n" msgid "unknown database file: %s\n"
msgstr "Unbekannte Datenbankdatei: %s\n" msgstr "Unbekannte Datenbankdatei: %s\n"
#: lib/libalpm/db.c:344 #: lib/libalpm/be_sync.c:712
#, c-format
msgid "%s: unknown key '%s' in sync database\n"
msgstr ""
#: lib/libalpm/db.c:413
#, c-format #, c-format
msgid "database path is undefined\n" msgid "database path is undefined\n"
msgstr "Datenbank-Pfad ist nicht definiert\n" msgstr "Datenbank-Pfad ist nicht definiert\n"
@ -322,110 +343,125 @@ msgstr "Konnte keine Dateisystem-Informationen für %s erhalten: %s\n"
msgid "could not open file: %s: %s\n" msgid "could not open file: %s: %s\n"
msgstr "Konnte die Datei nicht öffnen: %s %s\n" msgstr "Konnte die Datei nicht öffnen: %s %s\n"
#: lib/libalpm/diskspace.c:146 lib/libalpm/diskspace.c:159 #: lib/libalpm/diskspace.c:154 lib/libalpm/diskspace.c:167
#, c-format #, c-format
msgid "could not get filesystem information\n" msgid "could not get filesystem information\n"
msgstr "Konnte keine Dateisystem-Informationen erhalten\n" msgstr "Konnte keine Dateisystem-Informationen erhalten\n"
#: lib/libalpm/diskspace.c:242 #: lib/libalpm/diskspace.c:254
#, c-format #, c-format
msgid "could not get file information for %s\n" msgid "could not get file information for %s\n"
msgstr "konnte Dateiinformationen für %s nicht ermitteln\n" msgstr "konnte Dateiinformationen für %s nicht ermitteln\n"
#: lib/libalpm/diskspace.c:256 lib/libalpm/diskspace.c:315 #: lib/libalpm/diskspace.c:268 lib/libalpm/diskspace.c:327
#, c-format #, c-format
msgid "could not determine mount point for file %s\n" msgid "could not determine mount point for file %s\n"
msgstr "Konnte keinen Einhänge-Punkt für die Datei %s ermitteln\n" msgstr "Konnte keinen Einhänge-Punkt für die Datei %s ermitteln\n"
#: lib/libalpm/diskspace.c:354 #: lib/libalpm/diskspace.c:366
#, c-format #, c-format
msgid "Partition %s too full: %jd blocks needed, %ju blocks free\n" msgid "Partition %s too full: %jd blocks needed, %ju blocks free\n"
msgstr "" msgstr ""
"Partition %s ist überfüllt: %jd Blöcke werden benötigt, %ju Blöcke sind " "Partition %s ist überfüllt: %jd Blöcke werden benötigt, %ju Blöcke sind "
"frei\n" "frei\n"
#: lib/libalpm/diskspace.c:379 lib/libalpm/diskspace.c:433 #: lib/libalpm/diskspace.c:391 lib/libalpm/diskspace.c:445
#, c-format #, c-format
msgid "could not determine filesystem mount points\n" msgid "could not determine filesystem mount points\n"
msgstr "Konnte die Einhängepunkte des Dateisystems nicht ermitteln\n" msgstr "Konnte die Einhängepunkte des Dateisystems nicht ermitteln\n"
#: lib/libalpm/diskspace.c:385 #: lib/libalpm/diskspace.c:397
#, c-format #, c-format
msgid "could not determine cachedir mount point %s\n" msgid "could not determine cachedir mount point %s\n"
msgstr "Konnte den Einhängepunkt des Cachedir %s nicht bestimmen\n" msgstr "Konnte den Einhängepunkt des Cachedir %s nicht bestimmen\n"
#: lib/libalpm/diskspace.c:438 #: lib/libalpm/diskspace.c:450
#, c-format #, c-format
msgid "could not determine root mount point %s\n" msgid "could not determine root mount point %s\n"
msgstr "Konnte den Root-Einhängepunkt %s nicht ermitteln\n" msgstr "Konnte den Root-Einhängepunkt %s nicht ermitteln\n"
#: lib/libalpm/diskspace.c:486 #: lib/libalpm/diskspace.c:498
#, c-format #, c-format
msgid "Partition %s is mounted read only\n" msgid "Partition %s is mounted read only\n"
msgstr "Die Partition %s ist so eingehängt, dass sie nur gelesen werden kann\n" msgstr "Die Partition %s ist so eingehängt, dass sie nur gelesen werden kann\n"
#: lib/libalpm/dload.c:116 #: lib/libalpm/dload.c:107
#, c-format
msgid ""
"too many errors from %s, skipping for the remainder of this transaction\n"
msgstr ""
#: lib/libalpm/dload.c:220
#, c-format
msgid "disk"
msgstr "Platte"
#: lib/libalpm/dload.c:392
#, c-format #, c-format
msgid "failed to create temporary file for download\n" msgid "failed to create temporary file for download\n"
msgstr "Konnte temporäre Datei für den Download nicht anlegen\n" msgstr "Konnte temporäre Datei für den Download nicht anlegen\n"
#: lib/libalpm/dload.c:509 lib/libalpm/dload.c:547 lib/libalpm/dload.c:561 #: lib/libalpm/dload.c:198
#, c-format
msgid ""
"too many errors from %s, skipping for the remainder of this transaction\n"
msgstr "zu viele Fehlermeldungen von %s, überspringe den Rest des Vorgangs\n"
#: lib/libalpm/dload.c:215
#, c-format
msgid "fatal error from %s, skipping for the remainder of this transaction\n"
msgstr ""
#: lib/libalpm/dload.c:310
#, c-format
msgid "disk"
msgstr "Platte"
#: lib/libalpm/dload.c:532 lib/libalpm/dload.c:570 lib/libalpm/dload.c:583
#, c-format #, c-format
msgid "failed retrieving file '%s' from %s : %s\n" msgid "failed retrieving file '%s' from %s : %s\n"
msgstr "Konnte Datei '%s' nicht von %s übertragen : %s\n" msgstr "Konnte Datei '%s' nicht von %s übertragen : %s\n"
#: lib/libalpm/dload.c:539 #: lib/libalpm/dload.c:562
#, c-format #, c-format
msgid "failed retrieving file '%s' from %s : expected download size exceeded\n" msgid "failed retrieving file '%s' from %s : expected download size exceeded\n"
msgstr "" msgstr ""
"Konnte Datei '%s' nicht von %s empfangen: Erwartete Downloadgröße " "Konnte Datei '%s' nicht von %s empfangen: Erwartete Downloadgröße "
"überschritten\n" "überschritten\n"
#: lib/libalpm/dload.c:687 #: lib/libalpm/dload.c:685
#, c-format #, c-format
msgid "%s appears to be truncated: %jd/%jd bytes\n" msgid "%s appears to be truncated: %jd/%jd bytes\n"
msgstr "%s scheint abgeschnitten zu sein: %jd/%jd Bytes\n" msgstr "%s scheint abgeschnitten zu sein: %jd/%jd Bytes\n"
#: lib/libalpm/dload.c:787 #: lib/libalpm/dload.c:776
#, c-format #, c-format
msgid "url '%s' is invalid\n" msgid "url '%s' is invalid\n"
msgstr "URL '%s' ist ungültig\n" msgstr "URL '%s' ist ungültig\n"
#: lib/libalpm/dload.c:893 #: lib/libalpm/dload.c:864
#, c-format #, c-format
msgid "failed to setup a download payload for %s\n" msgid "failed to setup a download payload for %s\n"
msgstr "" msgstr "gescheiterte Einstellung der Downloadmenge für %s\n"
#: lib/libalpm/dload.c:905 #: lib/libalpm/dload.c:876
#, c-format #, c-format
msgid "curl returned error %d from transfer\n" msgid "curl returned error %d from transfer\n"
msgstr "" msgstr "curl(=Programm) meldet Fehler %d von der Übertragung\n"
#: lib/libalpm/dload.c:929 #: lib/libalpm/dload.c:900
#, c-format #, c-format
msgid "curl transfer error: %d\n" msgid "curl transfer error: %d\n"
msgstr "curl(=Programm) Übertragungsfehler %d\n"
#: lib/libalpm/dload.c:963
#, c-format
msgid "could not chdir to download directory %s\n"
msgstr "Wechsel in Download-Verzeichnis %s ist fehlgeschlagen\n"
#: lib/libalpm/dload.c:968
#, c-format
msgid "switching to sandbox user '%s' failed!\n"
msgstr "" msgstr ""
#: lib/libalpm/dload.c:1055 lib/libalpm/sync.c:840 #: lib/libalpm/dload.c:1361 lib/libalpm/sync.c:861
#, c-format #, c-format
msgid "failed to retrieve some files\n" msgid "failed to retrieve some files\n"
msgstr "Konnte einige Dateien nicht übertragen\n" msgstr "Konnte einige Dateien nicht übertragen\n"
#: lib/libalpm/dload.c:1078 #: lib/libalpm/dload.c:1384
#, c-format #, c-format
msgid "download completed successfully but no file in the cache\n" msgid "download completed successfully but no file in the cache\n"
msgstr "" msgstr "Download vollständig und keine Datei im Zwischenspeicher\n"
#: lib/libalpm/error.c:40 #: lib/libalpm/error.c:40
#, c-format #, c-format
@ -555,7 +591,7 @@ msgstr "Doppelte Ziele"
#: lib/libalpm/error.c:94 #: lib/libalpm/error.c:94
#, c-format #, c-format
msgid "duplicate filename" msgid "duplicate filename"
msgstr "" msgstr "gleicher Dateiname"
#: lib/libalpm/error.c:98 #: lib/libalpm/error.c:98
#, c-format #, c-format
@ -698,12 +734,12 @@ msgstr "Kompiliert ohne Signatur-Unterstützung"
msgid "unexpected error" msgid "unexpected error"
msgstr "Unerwarteter Fehler" msgstr "Unerwarteter Fehler"
#: lib/libalpm/handle.c:142 #: lib/libalpm/handle.c:165
#, c-format #, c-format
msgid "lock file missing %s\n" msgid "lock file missing %s\n"
msgstr "%s fehlt in Sperrdatei\n" msgstr "%s fehlt in Sperrdatei\n"
#: lib/libalpm/handle.c:148 #: lib/libalpm/handle.c:171
#, c-format #, c-format
msgid "could not remove lock file %s\n" msgid "could not remove lock file %s\n"
msgstr "Konnte Sperrdatei %s nicht entfernen\n" msgstr "Konnte Sperrdatei %s nicht entfernen\n"
@ -785,7 +821,7 @@ msgstr "Konnte das Verzeichnis nicht öffnen: %s: %s\n"
msgid "could not open file: %s%s: %s\n" msgid "could not open file: %s%s: %s\n"
msgstr "Konnte die Datei nicht öffnen: %s%s: %s\n" msgstr "Konnte die Datei nicht öffnen: %s%s: %s\n"
#: lib/libalpm/hook.c:595 lib/libalpm/util.c:260 #: lib/libalpm/hook.c:595 lib/libalpm/util.c:279
#, c-format #, c-format
msgid "could not stat file %s: %s\n" msgid "could not stat file %s: %s\n"
msgstr "Konnte Status-Information für die Datei %s nicht ermitteln: %s\n" msgstr "Konnte Status-Information für die Datei %s nicht ermitteln: %s\n"
@ -795,11 +831,43 @@ msgstr "Konnte Status-Information für die Datei %s nicht ermitteln: %s\n"
msgid "could not read directory: %s: %s\n" msgid "could not read directory: %s: %s\n"
msgstr "Konnte Verzeichnis nicht lesen: %s: %s\n" msgstr "Konnte Verzeichnis nicht lesen: %s: %s\n"
#: lib/libalpm/package.c:598 #: lib/libalpm/package.c:614
#, c-format #, c-format
msgid "could not fully load metadata for package %s-%s\n" msgid "could not fully load metadata for package %s-%s\n"
msgstr "Konnte die Metadaten für Paket %s-%s nicht vollständig laden\n" msgstr "Konnte die Metadaten für Paket %s-%s nicht vollständig laden\n"
#: lib/libalpm/package.c:869
#, c-format
msgid "invalid package metadata (name or version missing)"
msgstr ""
#: lib/libalpm/package.c:874
#, c-format
msgid ""
"invalid metadata for package %s-%s (package name cannot start with '.' or "
"'-')\n"
msgstr ""
#: lib/libalpm/package.c:878
#, c-format
msgid ""
"invalid metadata for package %s-%s (package name contains invalid "
"characters)\n"
msgstr ""
#: lib/libalpm/package.c:885 lib/libalpm/package.c:889
#, c-format
msgid ""
"invalid metadata for package %s-%s (package version contains invalid "
"characters)\n"
msgstr ""
#: lib/libalpm/package.c:895
#, c-format
msgid ""
"invalid metadata for package %s-%s (package name and version too long)\n"
msgstr ""
#: lib/libalpm/remove.c:111 #: lib/libalpm/remove.c:111
#, c-format #, c-format
msgid "could not find %s in database -- skipping\n" msgid "could not find %s in database -- skipping\n"
@ -820,17 +888,17 @@ msgstr "Kann Datei '%s' nicht entfernen: %s\n"
msgid "could not backup %s due to PATH_MAX overflow\n" msgid "could not backup %s due to PATH_MAX overflow\n"
msgstr "Kann kein Backup von %s erstellen, auf Grund eines PATH_MAX overflow\n" msgstr "Kann kein Backup von %s erstellen, auf Grund eines PATH_MAX overflow\n"
#: lib/libalpm/remove.c:554 #: lib/libalpm/remove.c:570
#, c-format #, c-format
msgid "cannot remove %s (%s)\n" msgid "cannot remove %s (%s)\n"
msgstr "Konnte %s nicht entfernen (%s)\n" msgstr "Konnte %s nicht entfernen (%s)\n"
#: lib/libalpm/remove.c:727 #: lib/libalpm/remove.c:743
#, c-format #, c-format
msgid "could not remove database entry %s-%s\n" msgid "could not remove database entry %s-%s\n"
msgstr "Konnte Datenbank-Eintrag %s-%s nicht entfernen\n" msgstr "Konnte Datenbank-Eintrag %s-%s nicht entfernen\n"
#: lib/libalpm/remove.c:732 #: lib/libalpm/remove.c:748
#, c-format #, c-format
msgid "could not remove entry '%s' from cache\n" msgid "could not remove entry '%s' from cache\n"
msgstr "Konnte Eintrag '%s' nicht aus dem Puffer entfernen\n" msgstr "Konnte Eintrag '%s' nicht aus dem Puffer entfernen\n"
@ -840,89 +908,89 @@ msgstr "Konnte Eintrag '%s' nicht aus dem Puffer entfernen\n"
msgid "Public keyring not found; have you run '%s'?\n" msgid "Public keyring not found; have you run '%s'?\n"
msgstr "" msgstr ""
#: lib/libalpm/signing.c:199 lib/libalpm/signing.c:767 #: lib/libalpm/signing.c:199 lib/libalpm/signing.c:773
#, c-format #, c-format
msgid "GPGME error: %s\n" msgid "GPGME error: %s\n"
msgstr "" msgstr "GPGME-Fehler: %s\n"
#: lib/libalpm/signing.c:274 #: lib/libalpm/signing.c:275
#, c-format #, c-format
msgid "looking up key %s using WKD\n" msgid "looking up key %s using WKD\n"
msgstr "" msgstr ""
#: lib/libalpm/signing.c:283 #: lib/libalpm/signing.c:289
#, c-format #, c-format
msgid "gpg error: %s\n" msgid "gpg error: %s\n"
msgstr "gpg-Fehler: %s\n" msgstr "gpg-Fehler: %s\n"
#: lib/libalpm/signing.c:430 lib/libalpm/signing.c:503 #: lib/libalpm/signing.c:440 lib/libalpm/signing.c:513
#, c-format #, c-format
msgid "keyring is not writable\n" msgid "keyring is not writable\n"
msgstr "Schlüssebund ist nicht schreibbar\n" msgstr "Schlüssebund ist nicht schreibbar\n"
#: lib/libalpm/signing.c:531 #: lib/libalpm/signing.c:537
#, c-format #, c-format
msgid "key \"%s\" on keyserver\n" msgid "key \"%s\" on keyserver\n"
msgstr "Schlüssel \"%s\" auf Schlüsselserver\n" msgstr "Schlüssel \"%s\" auf Schlüsselserver\n"
#: lib/libalpm/signing.c:536 #: lib/libalpm/signing.c:542
#, c-format #, c-format
msgid "key \"%s\" could not be imported\n" msgid "key \"%s\" could not be imported\n"
msgstr "Schlüssel \"%s\" konnte nicht importiert werden\n" msgstr "Schlüssel \"%s\" konnte nicht importiert werden\n"
#: lib/libalpm/signing.c:540 #: lib/libalpm/signing.c:546
#, c-format #, c-format
msgid "key \"%s\" could not be looked up remotely\n" msgid "key \"%s\" could not be looked up remotely\n"
msgstr "Schlüssel \"%s\" konnte nicht entfernt abgerufen werden\n" msgstr "Schlüssel \"%s\" konnte nicht entfernt abgerufen werden\n"
#: lib/libalpm/signing.c:926 lib/libalpm/sync.c:1022 #: lib/libalpm/signing.c:932 lib/libalpm/sync.c:1052
#, c-format #, c-format
msgid "%s: missing required signature\n" msgid "%s: missing required signature\n"
msgstr "%s: Erforderliche Signatur fehlt\n" msgstr "%s: Erforderliche Signatur fehlt\n"
#: lib/libalpm/signing.c:941 #: lib/libalpm/signing.c:947
#, c-format #, c-format
msgid "%s: signature from \"%s\" is marginal trust\n" msgid "%s: signature from \"%s\" is marginal trust\n"
msgstr "" msgstr ""
#: lib/libalpm/signing.c:949 #: lib/libalpm/signing.c:955
#, c-format #, c-format
msgid "%s: signature from \"%s\" is unknown trust\n" msgid "%s: signature from \"%s\" is unknown trust\n"
msgstr "" msgstr ""
#: lib/libalpm/signing.c:956 #: lib/libalpm/signing.c:962
#, c-format #, c-format
msgid "%s: signature from \"%s\" should never be trusted\n" msgid "%s: signature from \"%s\" should never be trusted\n"
msgstr "" msgstr ""
#: lib/libalpm/signing.c:968 #: lib/libalpm/signing.c:974
#, c-format #, c-format
msgid "%s: key \"%s\" is unknown\n" msgid "%s: key \"%s\" is unknown\n"
msgstr "%s: Schlüssel \"%s\" ist unbekannt\n" msgstr "%s: Schlüssel \"%s\" ist unbekannt\n"
#: lib/libalpm/signing.c:977 #: lib/libalpm/signing.c:983
#, c-format #, c-format
msgid "%s: key \"%s\" is disabled\n" msgid "%s: key \"%s\" is disabled\n"
msgstr "%s: Schlüssel \"%s\" ist deaktiviert\n" msgstr "%s: Schlüssel \"%s\" ist deaktiviert\n"
#: lib/libalpm/signing.c:981 #: lib/libalpm/signing.c:987
#, c-format #, c-format
msgid "%s: signature from \"%s\" is expired\n" msgid "%s: signature from \"%s\" is expired\n"
msgstr "%s: Signatur von \"%s\" ist abgelaufen\n" msgstr "%s: Signatur von \"%s\" ist abgelaufen\n"
#: lib/libalpm/signing.c:985 #: lib/libalpm/signing.c:991
#, c-format #, c-format
msgid "%s: signature from \"%s\" is invalid\n" msgid "%s: signature from \"%s\" is invalid\n"
msgstr "%s: Signatur von \"%s\" ist ungültig\n" msgstr "%s: Signatur von \"%s\" ist ungültig\n"
#: lib/libalpm/signing.c:1043 lib/libalpm/signing.c:1104 #: lib/libalpm/signing.c:1049 lib/libalpm/signing.c:1110
#: lib/libalpm/signing.c:1183 #: lib/libalpm/signing.c:1189
#, c-format #, c-format
msgid "%s: signature format error\n" msgid "%s: signature format error\n"
msgstr "%s: Signaturformatfehler\n" msgstr "%s: Signaturformatfehler\n"
#: lib/libalpm/signing.c:1136 lib/libalpm/signing.c:1169 #: lib/libalpm/signing.c:1142 lib/libalpm/signing.c:1175
#: lib/libalpm/signing.c:1177 #: lib/libalpm/signing.c:1183
#, c-format #, c-format
msgid "%s: unsupported signature format\n" msgid "%s: unsupported signature format\n"
msgstr "%s: nicht unterstütztes Signaturformat\n" msgstr "%s: nicht unterstütztes Signaturformat\n"
@ -957,117 +1025,122 @@ msgstr "Ignoriere Paket-Ersetzung (%s-%s => %s-%s)\n"
msgid "cannot replace %s by %s\n" msgid "cannot replace %s by %s\n"
msgstr "Kann %s nicht durch %s ersetzen\n" msgstr "Kann %s nicht durch %s ersetzen\n"
#: lib/libalpm/sync.c:476 #: lib/libalpm/sync.c:477
#, c-format #, c-format
msgid "packages %s and %s have the same filename: %s\n" msgid "packages %s and %s have the same filename: %s\n"
msgstr "" msgstr ""
#: lib/libalpm/sync.c:542 lib/libalpm/sync.c:612 #: lib/libalpm/sync.c:546 lib/libalpm/sync.c:618
#, c-format #, c-format
msgid "unresolvable package conflicts detected\n" msgid "unresolvable package conflicts detected\n"
msgstr "Nicht auflösbare Paketkonflikte gefunden\n" msgstr "Nicht auflösbare Paketkonflikte gefunden\n"
#: lib/libalpm/sync.c:562 #: lib/libalpm/sync.c:566
#, c-format #, c-format
msgid "removing '%s' from target list because it conflicts with '%s'\n" msgid "removing '%s-%s' from target list because it conflicts with '%s-%s'\n"
msgstr "Entferne '%s' aus der Ziel-Liste, da es mit '%s' in Konflikt steht\n" msgstr ""
#: lib/libalpm/sync.c:1036 #: lib/libalpm/sync.c:1020 lib/libalpm/sync.c:1187
#, c-format
msgid "%s: could not find package in cache\n"
msgstr ""
#: lib/libalpm/sync.c:1066
#, c-format #, c-format
msgid "failed to read file %s: %s\n" msgid "failed to read file %s: %s\n"
msgstr "konnte die Datei nicht lesen %s: %s\n" msgstr "konnte die Datei nicht lesen %s: %s\n"
#: lib/libalpm/sync.c:1223 #: lib/libalpm/sync.c:1324
#, c-format #, c-format
msgid "not enough free disk space\n" msgid "not enough free disk space\n"
msgstr "Nicht genug freier Festplattenspeicher\n" msgstr "Nicht genug freier Festplattenspeicher\n"
#: lib/libalpm/sync.c:1245 #: lib/libalpm/sync.c:1346
#, c-format #, c-format
msgid "could not commit removal transaction\n" msgid "could not commit removal transaction\n"
msgstr "Konnte Löschvorgang nicht durchführen\n" msgstr "Konnte Löschvorgang nicht durchführen\n"
#: lib/libalpm/sync.c:1253 #: lib/libalpm/sync.c:1354
#, c-format #, c-format
msgid "could not commit transaction\n" msgid "could not commit transaction\n"
msgstr "Konnte den Vorgang nicht durchführen\n" msgstr "Konnte den Vorgang nicht durchführen\n"
#: lib/libalpm/trans.c:365 #: lib/libalpm/trans.c:369
#, c-format #, c-format
msgid "could not create temp directory\n" msgid "could not create temp directory\n"
msgstr "Konnte temporäres Verzeichnis nicht erstellen\n" msgstr "Konnte temporäres Verzeichnis nicht erstellen\n"
#: lib/libalpm/trans.c:380 #: lib/libalpm/trans.c:384
#, c-format #, c-format
msgid "could not copy tempfile to %s (%s)\n" msgid "could not copy tempfile to %s (%s)\n"
msgstr "Konnte temporäre Datei nicht nach %s kopieren (%s)\n" msgstr "Konnte temporäre Datei nicht nach %s kopieren (%s)\n"
#: lib/libalpm/trans.c:411 #: lib/libalpm/trans.c:415
#, c-format #, c-format
msgid "could not remove %s\n" msgid "could not remove %s\n"
msgstr "Konnte %s nicht entfernen\n" msgstr "Konnte %s nicht entfernen\n"
#: lib/libalpm/trans.c:415 #: lib/libalpm/trans.c:419
#, c-format #, c-format
msgid "could not remove tmpdir %s\n" msgid "could not remove tmpdir %s\n"
msgstr "Konnte temporäres Verzeichnis %s nicht entfernen\n" msgstr "Konnte temporäres Verzeichnis %s nicht entfernen\n"
#: lib/libalpm/util.c:488 #: lib/libalpm/util.c:512
#, c-format #, c-format
msgid "unable to write to pipe (%s)\n" msgid "unable to write to pipe (%s)\n"
msgstr "konnte nicht in Weiterleitung schreiben (%s)\n" msgstr "konnte nicht in Weiterleitung schreiben (%s)\n"
#: lib/libalpm/util.c:547 #: lib/libalpm/util.c:571
#, c-format #, c-format
msgid "unable to read from pipe (%s)\n" msgid "unable to read from pipe (%s)\n"
msgstr "konnte nicht von Weiterleitung lesen (%s)\n" msgstr "konnte nicht von Weiterleitung lesen (%s)\n"
#: lib/libalpm/util.c:617 lib/libalpm/util.c:623 #: lib/libalpm/util.c:641 lib/libalpm/util.c:647
#, c-format #, c-format
msgid "could not create pipe (%s)\n" msgid "could not create pipe (%s)\n"
msgstr "Konnte Weiterleitung nicht erstellen (%s)\n" msgstr "Konnte Weiterleitung nicht erstellen (%s)\n"
#: lib/libalpm/util.c:631 #: lib/libalpm/util.c:655
#, c-format #, c-format
msgid "could not fork a new process (%s)\n" msgid "could not fork a new process (%s)\n"
msgstr "Konnte keinen neuen Prozess starten (%s)\n" msgstr "Konnte keinen neuen Prozess starten (%s)\n"
#: lib/libalpm/util.c:654 #: lib/libalpm/util.c:680
#, c-format #, c-format
msgid "could not change the root directory (%s)\n" msgid "could not change the root directory (%s)\n"
msgstr "Konnte Root-Verzeichnis nicht wechseln (%s)\n" msgstr "Konnte Root-Verzeichnis nicht wechseln (%s)\n"
#: lib/libalpm/util.c:666 #: lib/libalpm/util.c:700
#, c-format #, c-format
msgid "call to execv failed (%s)\n" msgid "call to execv failed (%s)\n"
msgstr "Konnte execv nicht aufrufen (%s)\n" msgstr "Konnte execv nicht aufrufen (%s)\n"
#: lib/libalpm/util.c:745 #: lib/libalpm/util.c:779
#, c-format #, c-format
msgid "call to waitpid failed (%s)\n" msgid "call to waitpid failed (%s)\n"
msgstr "Aufruf von waitpid fehlgeschlagen (%s)\n" msgstr "Aufruf von waitpid fehlgeschlagen (%s)\n"
#: lib/libalpm/util.c:755 #: lib/libalpm/util.c:789
#, c-format #, c-format
msgid "command failed to execute correctly\n" msgid "command failed to execute correctly\n"
msgstr "Befehl konnte nicht korrekt ausgeführt werden\n" msgstr "Befehl konnte nicht korrekt ausgeführt werden\n"
#: lib/libalpm/util.c:762 #: lib/libalpm/util.c:796
#, c-format #, c-format
msgid "Unknown signal" msgid "Unknown signal"
msgstr "Unbekanntes Signal" msgstr "Unbekanntes Signal"
#: lib/libalpm/util.c:764 #: lib/libalpm/util.c:798
#, c-format #, c-format
msgid "command terminated by signal %d: %s\n" msgid "command terminated by signal %d: %s\n"
msgstr "Befehl unterbrochen durch Signal %d: %s\n" msgstr "Befehl unterbrochen durch Signal %d: %s\n"
#: lib/libalpm/util.c:875 #: lib/libalpm/util.c:916
#, c-format #, c-format
msgid "no %s cache exists, creating...\n" msgid "no %s cache exists, creating...\n"
msgstr "Es existiert kein %s-Puffer, erstelle...\n" msgstr "Es existiert kein %s-Puffer, erstelle...\n"
#: lib/libalpm/util.c:906 #: lib/libalpm/util.c:947
#, c-format #, c-format
msgid "couldn't find or create package cache, using %s instead\n" msgid "couldn't find or create package cache, using %s instead\n"
msgstr "" msgstr ""

View file

@ -3,25 +3,27 @@
# This file is distributed under the same license as the libalpm package. # This file is distributed under the same license as the libalpm package.
# #
# Translators: # Translators:
# 492d30ca33568c5819a4f95c90617de1_3730d98 <c1a4cca7e440358a87e394a300ed18e2_882277>, 2021
# Achilleas Pipinellis, 2013-2014 # Achilleas Pipinellis, 2013-2014
# Achilleas Pipinellis, 2014 # Achilleas Pipinellis, 2014
# Achilleas Pipinellis, 2013 # Achilleas Pipinellis, 2013
# Achilleas Pipinellis, 2013 # Achilleas Pipinellis, 2013
# Christos Nouskas <nous@artixlinux.org>, 2011,2013-2014,2017,2019-2020 # Christos Nouskas <nous@artixlinux.org>, 2011,2013-2014,2017,2019-2020
# Christos Nouskas <nous@artixlinux.org>, 2011 # Christos Nouskas <nous@artixlinux.org>, 2011,2023
# Dan McGee <dpmcgee@gmail.com>, 2011 # Dan McGee <dpmcgee@gmail.com>, 2011
# ifaigios <ifaigios@gmail.com>, 2015 # ifaigios <ifaigios@gmail.com>, 2015
# ifaigios <ifaigios@gmail.com>, 2015 # ifaigios <ifaigios@gmail.com>, 2015
# Christos Nouskas <nous@artixlinux.org>, 2011 # Christos Nouskas <nous@artixlinux.org>, 2011
# 492d30ca33568c5819a4f95c90617de1_3730d98 <c1a4cca7e440358a87e394a300ed18e2_882277>, 2021
# th_ts <tsesmelistheodore@gmail.com>, 2014 # th_ts <tsesmelistheodore@gmail.com>, 2014
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Arch Linux Pacman package manager\n" "Project-Id-Version: Arch Linux Pacman package manager\n"
"Report-Msgid-Bugs-To: http://bugs.archlinux.org/index.php?project=3\n" "Report-Msgid-Bugs-To: https://gitlab.archlinux.org/pacman/pacman/-/issues\n"
"POT-Creation-Date: 2021-09-04 16:15+1000\n" "POT-Creation-Date: 2024-07-14 19:10+1000\n"
"PO-Revision-Date: 2021-05-20 02:25+0000\n" "PO-Revision-Date: 2010-11-29 23:17+0000\n"
"Last-Translator: Allan McRae <allan@archlinux.org>\n" "Last-Translator: th_ts <tsesmelistheodore@gmail.com>, 2014\n"
"Language-Team: Greek (http://www.transifex.com/toofishes/archlinux-pacman/" "Language-Team: Greek (http://app.transifex.com/toofishes/archlinux-pacman/"
"language/el/)\n" "language/el/)\n"
"Language: el\n" "Language: el\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
@ -49,17 +51,17 @@ msgstr "υποβάθμιση πακέτου %s (%s => %s)\n"
msgid "cannot allocate disk archive object" msgid "cannot allocate disk archive object"
msgstr "αδυναμία κατανομής αντικειμένου αρχείου δίσκου" msgstr "αδυναμία κατανομής αντικειμένου αρχείου δίσκου"
#: lib/libalpm/add.c:143 lib/libalpm/util.c:384 #: lib/libalpm/add.c:143 lib/libalpm/util.c:408
#, c-format #, c-format
msgid "warning given when extracting %s (%s)\n" msgid "warning given when extracting %s (%s)\n"
msgstr "προειδοποίηση κατά την εξαγωγή του %s (%s)\n" msgstr "προειδοποίηση κατά την εξαγωγή του %s (%s)\n"
#: lib/libalpm/add.c:146 lib/libalpm/util.c:387 #: lib/libalpm/add.c:146 lib/libalpm/util.c:411
#, c-format #, c-format
msgid "could not extract %s (%s)\n" msgid "could not extract %s (%s)\n"
msgstr "αδυναμία εξαγωγής %s (%s)\n" msgstr "αδυναμία εξαγωγής %s (%s)\n"
#: lib/libalpm/add.c:159 lib/libalpm/dload.c:709 lib/libalpm/remove.c:534 #: lib/libalpm/add.c:159 lib/libalpm/dload.c:707 lib/libalpm/remove.c:550
#, c-format #, c-format
msgid "could not rename %s to %s (%s)\n" msgid "could not rename %s to %s (%s)\n"
msgstr "αδυναμία μετονομασίας %s σε %s (%s)\n" msgstr "αδυναμία μετονομασίας %s σε %s (%s)\n"
@ -104,18 +106,18 @@ msgstr "εξαγωγή: μη αντικατάσταση καταλόγου με
msgid "unable to extract %s.pacnew: path too long" msgid "unable to extract %s.pacnew: path too long"
msgstr "αδυναμία εξαγωγής %s.pacnew: πολύ μεγάλο μήκος διαδρομής" msgstr "αδυναμία εξαγωγής %s.pacnew: πολύ μεγάλο μήκος διαδρομής"
#: lib/libalpm/add.c:510 lib/libalpm/util.c:335 lib/libalpm/util.c:600 #: lib/libalpm/add.c:510 lib/libalpm/util.c:354 lib/libalpm/util.c:624
#, c-format #, c-format
msgid "could not get current working directory\n" msgid "could not get current working directory\n"
msgstr "αδυναμία χρήσης τρέχοντος καταλόγου\n" msgstr "αδυναμία χρήσης τρέχοντος καταλόγου\n"
#: lib/libalpm/add.c:515 lib/libalpm/util.c:340 lib/libalpm/util.c:605 #: lib/libalpm/add.c:515 lib/libalpm/util.c:359 lib/libalpm/util.c:629
#: lib/libalpm/util.c:658 #: lib/libalpm/util.c:684
#, c-format #, c-format
msgid "could not change directory to %s (%s)\n" msgid "could not change directory to %s (%s)\n"
msgstr "αδυναμία μετάβασης στον κατάλογο %s (%s)\n" msgstr "αδυναμία μετάβασης στον κατάλογο %s (%s)\n"
#: lib/libalpm/add.c:571 lib/libalpm/util.c:405 lib/libalpm/util.c:774 #: lib/libalpm/add.c:571 lib/libalpm/util.c:429 lib/libalpm/util.c:808
#, c-format #, c-format
msgid "could not restore working directory (%s)\n" msgid "could not restore working directory (%s)\n"
msgstr "αδυναμία επαναφοράς καταλόγου εργασίας (%s)\n" msgstr "αδυναμία επαναφοράς καταλόγου εργασίας (%s)\n"
@ -140,101 +142,116 @@ msgstr "αδυναμία ενημέρωσης εγγραφής βάσης %s-%s\
msgid "could not add entry '%s' in cache\n" msgid "could not add entry '%s' in cache\n"
msgstr "αδυναμία προσθήκης εγγραφής '%s' στην κρύπτη\n" msgstr "αδυναμία προσθήκης εγγραφής '%s' στην κρύπτη\n"
#: lib/libalpm/be_local.c:266 #: lib/libalpm/be_local.c:271
#, c-format #, c-format
msgid "error while reading file %s: %s\n" msgid "error while reading file %s: %s\n"
msgstr "σφάλμα ανάγνωσης αρχείου %s: %s\n" msgstr "σφάλμα ανάγνωσης αρχείου %s: %s\n"
#: lib/libalpm/be_local.c:376 #: lib/libalpm/be_local.c:382
#, c-format #, c-format
msgid "removing invalid database: %s\n" msgid "removing invalid database: %s\n"
msgstr "διαγραφή άκυρης βάσης: %s\n" msgstr "διαγραφή άκυρης βάσης: %s\n"
#: lib/libalpm/be_local.c:427 lib/libalpm/be_local.c:909 #: lib/libalpm/be_local.c:433 lib/libalpm/be_local.c:947
#, c-format #, c-format
msgid "could not create directory %s: %s\n" msgid "could not create directory %s: %s\n"
msgstr "αδυναμία δημιουργίας καταλόγου %s: %s\n" msgstr "αδυναμία δημιουργίας καταλόγου %s: %s\n"
#: lib/libalpm/be_local.c:602 lib/libalpm/be_sync.c:322 #: lib/libalpm/be_local.c:608 lib/libalpm/be_sync.c:339
#, c-format #, c-format
msgid "invalid name for database entry '%s'\n" msgid "invalid name for database entry '%s'\n"
msgstr "άκυρο όνομα εγγραφής βάσης '%s'\n" msgstr "άκυρο όνομα εγγραφής βάσης '%s'\n"
#: lib/libalpm/be_local.c:610 #: lib/libalpm/be_local.c:616
#, c-format #, c-format
msgid "duplicated database entry '%s'\n" msgid "duplicated database entry '%s'\n"
msgstr "διπλότυπη εγγραφή βάσης '%s'\n" msgstr "διπλότυπη εγγραφή βάσης '%s'\n"
#: lib/libalpm/be_local.c:622 #: lib/libalpm/be_local.c:628
#, c-format #, c-format
msgid "corrupted database entry '%s'\n" msgid "corrupted database entry '%s'\n"
msgstr "κατεστραμμένη εγγραφή βάσης '%s'\n" msgstr "κατεστραμμένη εγγραφή βάσης '%s'\n"
#: lib/libalpm/be_local.c:722 lib/libalpm/be_local.c:818 #: lib/libalpm/be_local.c:663
#: lib/libalpm/be_local.c:958 lib/libalpm/be_local.c:1055 #, c-format
#: lib/libalpm/diskspace.c:131 lib/libalpm/dload.c:823 lib/libalpm/util.c:254 msgid "unknown install reason for package %s: %s\n"
#: lib/libalpm/util.c:270 msgstr ""
#: lib/libalpm/be_local.c:743 lib/libalpm/be_local.c:856
#: lib/libalpm/be_local.c:996 lib/libalpm/be_local.c:1102
#: lib/libalpm/diskspace.c:135 lib/libalpm/dload.c:792 lib/libalpm/util.c:273
#: lib/libalpm/util.c:289
#, c-format #, c-format
msgid "could not open file %s: %s\n" msgid "could not open file %s: %s\n"
msgstr "αδυναμία ανάγνωσης αρχείου %s: %s\n" msgstr "αδυναμία ανάγνωσης αρχείου %s: %s\n"
#: lib/libalpm/be_local.c:738 lib/libalpm/be_sync.c:582 #: lib/libalpm/be_local.c:759 lib/libalpm/be_sync.c:612
#, c-format #, c-format
msgid "%s database is inconsistent: name mismatch on package %s\n" msgid "%s database is inconsistent: name mismatch on package %s\n"
msgstr "ανακολουθία στην βάση %s: αναντιστοιχία ονόματος πακέτου %s\n" msgstr "ανακολουθία στην βάση %s: αναντιστοιχία ονόματος πακέτου %s\n"
#: lib/libalpm/be_local.c:744 lib/libalpm/be_sync.c:588 #: lib/libalpm/be_local.c:765 lib/libalpm/be_sync.c:618
#, c-format #, c-format
msgid "%s database is inconsistent: version mismatch on package %s\n" msgid "%s database is inconsistent: version mismatch on package %s\n"
msgstr "ανακολουθία στην βάση %s: ασυμφωνία έκδοσης πακέτου %s\n" msgstr "ανακολουθία στην βάση %s: ασυμφωνία έκδοσης πακέτου %s\n"
#: lib/libalpm/be_local.c:785 #: lib/libalpm/be_local.c:806
#, c-format #, c-format
msgid "unknown validation type for package %s: %s\n" msgid "unknown validation type for package %s: %s\n"
msgstr "άγνωστος τύπος επικύρωσης πακέτου %s: %s\n" msgstr "άγνωστος τύπος επικύρωσης πακέτου %s: %s\n"
#: lib/libalpm/be_package.c:478 lib/libalpm/be_package.c:631 #: lib/libalpm/be_local.c:841
#: lib/libalpm/be_package.c:643 #, c-format
msgid "%s: unknown key '%s' in local database\n"
msgstr ""
#: lib/libalpm/be_package.c:255
#, c-format
msgid "%s: unknown key '%s' in package description\n"
msgstr ""
#: lib/libalpm/be_package.c:482 lib/libalpm/be_package.c:635
#: lib/libalpm/be_package.c:647
#, c-format #, c-format
msgid "error while reading package %s: %s\n" msgid "error while reading package %s: %s\n"
msgstr "σφάλμα ανάγνωσης πακέτου %s: %s\n" msgstr "σφάλμα ανάγνωσης πακέτου %s: %s\n"
#: lib/libalpm/be_package.c:491 lib/libalpm/be_package.c:514 #: lib/libalpm/be_package.c:495 lib/libalpm/be_package.c:518
#, c-format #, c-format
msgid "error while reading mtree of package %s: %s\n" msgid "error while reading mtree of package %s: %s\n"
msgstr "σφάλμα ανάγνωσης mtree πακέτου %s: %s\n" msgstr "σφάλμα ανάγνωσης mtree πακέτου %s: %s\n"
#: lib/libalpm/be_package.c:597 #: lib/libalpm/be_package.c:601
#, c-format #, c-format
msgid "could not parse package description file in %s\n" msgid "could not parse package description file in %s\n"
msgstr "αδυναμία ανάλυσης αρχείου περιγραφής πακέτου στο %s\n" msgstr "αδυναμία ανάλυσης αρχείου περιγραφής πακέτου στο %s\n"
#: lib/libalpm/be_package.c:602 #: lib/libalpm/be_package.c:606
#, c-format #, c-format
msgid "missing package name in %s\n" msgid "missing package name in %s\n"
msgstr "απόν όνομα πακέτου στο %s\n" msgstr "απόν όνομα πακέτου στο %s\n"
#: lib/libalpm/be_package.c:606 #: lib/libalpm/be_package.c:610
#, c-format #, c-format
msgid "missing package version in %s\n" msgid "missing package version in %s\n"
msgstr "απούσα έκδοση πακέτου στο %s\n" msgstr "απούσα έκδοση πακέτου στο %s\n"
#: lib/libalpm/be_package.c:610 #: lib/libalpm/be_package.c:614
#, c-format #, c-format
msgid "invalid package version in %s\n" msgid "invalid package version in %s\n"
msgstr "άκυρη έκδοση πακέτου στο %s\n" msgstr "άκυρη έκδοση πακέτου στο %s\n"
#: lib/libalpm/be_package.c:649 #: lib/libalpm/be_package.c:653
#, c-format #, c-format
msgid "missing package metadata in %s\n" msgid "missing package metadata in %s\n"
msgstr "απόντα μετα-δεδομένα πακέτου στο %s\n" msgstr "απόντα μετα-δεδομένα πακέτου στο %s\n"
#: lib/libalpm/be_package.c:741 #: lib/libalpm/be_package.c:745
#, c-format #, c-format
msgid "failed to read signature file: %s\n" msgid "failed to read signature file: %s\n"
msgstr "αδυναμία ανάγνωσης αρχείου υπογραφής: %s\n" msgstr "αδυναμία ανάγνωσης αρχείου υπογραφής: %s\n"
#: lib/libalpm/be_package.c:770 lib/libalpm/sync.c:953 #: lib/libalpm/be_package.c:768 lib/libalpm/sync.c:976
#, c-format #, c-format
msgid "required key missing from keyring\n" msgid "required key missing from keyring\n"
msgstr "" msgstr ""
@ -246,33 +263,38 @@ msgstr ""
msgid "removing invalid file: %s\n" msgid "removing invalid file: %s\n"
msgstr "διαγραφή άκυρου αρχείου: %s\n" msgstr "διαγραφή άκυρου αρχείου: %s\n"
#: lib/libalpm/be_sync.c:449 #: lib/libalpm/be_sync.c:471
#, c-format #, c-format
msgid "could not parse package description file '%s' from db '%s'\n" msgid "could not parse package description file '%s' from db '%s'\n"
msgstr "" msgstr ""
"αδυναμία ανάλυσης αρχείου περιγραφής πακέτου '%s' στη βάση δεδομένων '%s'\n" "αδυναμία ανάλυσης αρχείου περιγραφής πακέτου '%s' στη βάση δεδομένων '%s'\n"
#: lib/libalpm/be_sync.c:456 #: lib/libalpm/be_sync.c:486
#, c-format #, c-format
msgid "could not read db '%s' (%s)\n" msgid "could not read db '%s' (%s)\n"
msgstr "αδυναμία ανάγνωσης βάσης '%s' (%s)\n" msgstr "αδυναμία ανάγνωσης βάσης '%s' (%s)\n"
#: lib/libalpm/be_sync.c:489 lib/libalpm/be_sync.c:494 #: lib/libalpm/be_sync.c:519 lib/libalpm/be_sync.c:524
#, c-format #, c-format
msgid "%s database is inconsistent: filename of package %s is illegal\n" msgid "%s database is inconsistent: filename of package %s is illegal\n"
msgstr "ασυνέπεια βάσης %s: μη έγκυρο όνομα πακέτου %s\n" msgstr "ασυνέπεια βάσης %s: μη έγκυρο όνομα πακέτου %s\n"
#: lib/libalpm/be_sync.c:499 #: lib/libalpm/be_sync.c:529
#, c-format #, c-format
msgid "%s database is inconsistent: filename of package %s is too long\n" msgid "%s database is inconsistent: filename of package %s is too long\n"
msgstr "ασυνέπεια βάσης %s: πολύ μεγάλο όνομα πακέτου %s\n" msgstr "ασυνέπεια βάσης %s: πολύ μεγάλο όνομα πακέτου %s\n"
#: lib/libalpm/be_sync.c:564 #: lib/libalpm/be_sync.c:594
#, c-format #, c-format
msgid "unknown database file: %s\n" msgid "unknown database file: %s\n"
msgstr "άγνωστο αρχείο βάσης: %s\n" msgstr "άγνωστο αρχείο βάσης: %s\n"
#: lib/libalpm/db.c:344 #: lib/libalpm/be_sync.c:712
#, c-format
msgid "%s: unknown key '%s' in sync database\n"
msgstr ""
#: lib/libalpm/db.c:413
#, c-format #, c-format
msgid "database path is undefined\n" msgid "database path is undefined\n"
msgstr "απροσδιόριστη διαδρομή βάσης\n" msgstr "απροσδιόριστη διαδρομή βάσης\n"
@ -312,109 +334,125 @@ msgstr "αδυναμία λήψης πληροφοριών συστήματος
msgid "could not open file: %s: %s\n" msgid "could not open file: %s: %s\n"
msgstr "αδυναμία ανοίγματος αρχείου %s: %s\n" msgstr "αδυναμία ανοίγματος αρχείου %s: %s\n"
#: lib/libalpm/diskspace.c:146 lib/libalpm/diskspace.c:159 #: lib/libalpm/diskspace.c:154 lib/libalpm/diskspace.c:167
#, c-format #, c-format
msgid "could not get filesystem information\n" msgid "could not get filesystem information\n"
msgstr "αδυναμία λήψης πληροφοριών συστήματος αρχείων\n" msgstr "αδυναμία λήψης πληροφοριών συστήματος αρχείων\n"
#: lib/libalpm/diskspace.c:242 #: lib/libalpm/diskspace.c:254
#, c-format #, c-format
msgid "could not get file information for %s\n" msgid "could not get file information for %s\n"
msgstr "" msgstr ""
"αδυναμία λήψης πληροφοριών αρχείου για το %s:\n" "αδυναμία λήψης πληροφοριών αρχείου για το %s:\n"
"\n" "\n"
#: lib/libalpm/diskspace.c:256 lib/libalpm/diskspace.c:315 #: lib/libalpm/diskspace.c:268 lib/libalpm/diskspace.c:327
#, c-format #, c-format
msgid "could not determine mount point for file %s\n" msgid "could not determine mount point for file %s\n"
msgstr "αδυναμία καθορισμού σημείου προσάρτησης αρχείου %s\n" msgstr "αδυναμία καθορισμού σημείου προσάρτησης αρχείου %s\n"
#: lib/libalpm/diskspace.c:354 #: lib/libalpm/diskspace.c:366
#, c-format #, c-format
msgid "Partition %s too full: %jd blocks needed, %ju blocks free\n" msgid "Partition %s too full: %jd blocks needed, %ju blocks free\n"
msgstr "Κατάτμηση %s πλήρης: απαιτούνται %jd μπλοκ, %ju ελεύθερα \n" msgstr "Κατάτμηση %s πλήρης: απαιτούνται %jd μπλοκ, %ju ελεύθερα \n"
#: lib/libalpm/diskspace.c:379 lib/libalpm/diskspace.c:433 #: lib/libalpm/diskspace.c:391 lib/libalpm/diskspace.c:445
#, c-format #, c-format
msgid "could not determine filesystem mount points\n" msgid "could not determine filesystem mount points\n"
msgstr "αδυναμία καθορισμού σημείων προσάρτησης στο σύστημα αρχείων\n" msgstr "αδυναμία καθορισμού σημείων προσάρτησης στο σύστημα αρχείων\n"
#: lib/libalpm/diskspace.c:385 #: lib/libalpm/diskspace.c:397
#, c-format #, c-format
msgid "could not determine cachedir mount point %s\n" msgid "could not determine cachedir mount point %s\n"
msgstr "αδυναμία προσδιορισμού σημείου προσάρτησης καταλόγου κρύπτης %s\n" msgstr "αδυναμία προσδιορισμού σημείου προσάρτησης καταλόγου κρύπτης %s\n"
#: lib/libalpm/diskspace.c:438 #: lib/libalpm/diskspace.c:450
#, c-format #, c-format
msgid "could not determine root mount point %s\n" msgid "could not determine root mount point %s\n"
msgstr "αδυναμία καθορισμού ριζικού σημείου προσάρτησης %s\n" msgstr "αδυναμία καθορισμού ριζικού σημείου προσάρτησης %s\n"
#: lib/libalpm/diskspace.c:486 #: lib/libalpm/diskspace.c:498
#, c-format #, c-format
msgid "Partition %s is mounted read only\n" msgid "Partition %s is mounted read only\n"
msgstr "Η κατάτμηση %s είναι προσαρτημένη μόνο για ανάγνωση\n" msgstr "Η κατάτμηση %s είναι προσαρτημένη μόνο για ανάγνωση\n"
#: lib/libalpm/dload.c:116 #: lib/libalpm/dload.c:107
#, c-format
msgid ""
"too many errors from %s, skipping for the remainder of this transaction\n"
msgstr ""
#: lib/libalpm/dload.c:220
#, c-format
msgid "disk"
msgstr "δίσκο"
#: lib/libalpm/dload.c:392
#, c-format #, c-format
msgid "failed to create temporary file for download\n" msgid "failed to create temporary file for download\n"
msgstr "αποτυχία δημιουργίας προσωρινού αρχείου λήψης\n" msgstr "αποτυχία δημιουργίας προσωρινού αρχείου λήψης\n"
#: lib/libalpm/dload.c:509 lib/libalpm/dload.c:547 lib/libalpm/dload.c:561 #: lib/libalpm/dload.c:198
#, c-format
msgid ""
"too many errors from %s, skipping for the remainder of this transaction\n"
msgstr ""
"πάρα πολλά σφάλματα από %s, παράλειψη για το υπόλοιπο αυτής της συναλλαγής\n"
#: lib/libalpm/dload.c:215
#, c-format
msgid "fatal error from %s, skipping for the remainder of this transaction\n"
msgstr "μοιραίο σφάλμα από %s, παράλειψη για το υπόλοιπο της συναλλαγής\n"
#: lib/libalpm/dload.c:310
#, c-format
msgid "disk"
msgstr "δίσκο"
#: lib/libalpm/dload.c:532 lib/libalpm/dload.c:570 lib/libalpm/dload.c:583
#, c-format #, c-format
msgid "failed retrieving file '%s' from %s : %s\n" msgid "failed retrieving file '%s' from %s : %s\n"
msgstr "αποτυχία λήψης αρχείου '%s' από %s : %s\n" msgstr "αποτυχία λήψης αρχείου '%s' από %s : %s\n"
#: lib/libalpm/dload.c:539 #: lib/libalpm/dload.c:562
#, c-format #, c-format
msgid "failed retrieving file '%s' from %s : expected download size exceeded\n" msgid "failed retrieving file '%s' from %s : expected download size exceeded\n"
msgstr "" msgstr ""
"αποτυχία λήψης αρχείου '%s' από %s : υπέρβαση αναμενομένου μεγέθους λήψης\n" "αποτυχία λήψης αρχείου '%s' από %s : υπέρβαση αναμενομένου μεγέθους λήψης\n"
#: lib/libalpm/dload.c:687 #: lib/libalpm/dload.c:685
#, c-format #, c-format
msgid "%s appears to be truncated: %jd/%jd bytes\n" msgid "%s appears to be truncated: %jd/%jd bytes\n"
msgstr "το %s δείχνει ημιτελές: %jd/%jd bytes\n" msgstr "το %s δείχνει ημιτελές: %jd/%jd bytes\n"
#: lib/libalpm/dload.c:787 #: lib/libalpm/dload.c:776
#, c-format #, c-format
msgid "url '%s' is invalid\n" msgid "url '%s' is invalid\n"
msgstr "άκυρη διεύθυνση '%s'\n" msgstr "άκυρη διεύθυνση '%s'\n"
#: lib/libalpm/dload.c:893 #: lib/libalpm/dload.c:864
#, c-format #, c-format
msgid "failed to setup a download payload for %s\n" msgid "failed to setup a download payload for %s\n"
msgstr "" msgstr "αδυναμία ρύθμισης αντικειμένου λήψης του %s\n"
#: lib/libalpm/dload.c:905 #: lib/libalpm/dload.c:876
#, c-format #, c-format
msgid "curl returned error %d from transfer\n" msgid "curl returned error %d from transfer\n"
msgstr "" msgstr "σφάλμα curl %d από λήψη\n"
#: lib/libalpm/dload.c:929 #: lib/libalpm/dload.c:900
#, c-format #, c-format
msgid "curl transfer error: %d\n" msgid "curl transfer error: %d\n"
msgstr "σφάλμα λήψης curl: %d\n"
#: lib/libalpm/dload.c:963
#, c-format
msgid "could not chdir to download directory %s\n"
msgstr "" msgstr ""
#: lib/libalpm/dload.c:1055 lib/libalpm/sync.c:840 #: lib/libalpm/dload.c:968
#, c-format
msgid "switching to sandbox user '%s' failed!\n"
msgstr ""
#: lib/libalpm/dload.c:1361 lib/libalpm/sync.c:861
#, c-format #, c-format
msgid "failed to retrieve some files\n" msgid "failed to retrieve some files\n"
msgstr "σφάλμα λήψης μερικών αρχείων\n" msgstr "σφάλμα λήψης μερικών αρχείων\n"
#: lib/libalpm/dload.c:1078 #: lib/libalpm/dload.c:1384
#, c-format #, c-format
msgid "download completed successfully but no file in the cache\n" msgid "download completed successfully but no file in the cache\n"
msgstr "" msgstr "επιτυχής ολοκλήρωση λήψης αλλά δίχως αρχείο στην κρύπτη\n"
#: lib/libalpm/error.c:40 #: lib/libalpm/error.c:40
#, c-format #, c-format
@ -544,7 +582,7 @@ msgstr "διπλότυπος στόχος"
#: lib/libalpm/error.c:94 #: lib/libalpm/error.c:94
#, c-format #, c-format
msgid "duplicate filename" msgid "duplicate filename"
msgstr "" msgstr "διπλότυπο όνομα αρχείου"
#: lib/libalpm/error.c:98 #: lib/libalpm/error.c:98
#, c-format #, c-format
@ -686,12 +724,12 @@ msgstr "μεταγλώττιση χωρίς υποστήριξη υπογραφ
msgid "unexpected error" msgid "unexpected error"
msgstr "απρόσμενο σφάλμα" msgstr "απρόσμενο σφάλμα"
#: lib/libalpm/handle.c:142 #: lib/libalpm/handle.c:165
#, c-format #, c-format
msgid "lock file missing %s\n" msgid "lock file missing %s\n"
msgstr "απόν αρχείο κλειδώματος %s\n" msgstr "απόν αρχείο κλειδώματος %s\n"
#: lib/libalpm/handle.c:148 #: lib/libalpm/handle.c:171
#, c-format #, c-format
msgid "could not remove lock file %s\n" msgid "could not remove lock file %s\n"
msgstr "αδυναμία διαγραφής αρχείου κλειδώματος %s\n" msgstr "αδυναμία διαγραφής αρχείου κλειδώματος %s\n"
@ -773,7 +811,7 @@ msgstr "αδυναμία ανοίγματος καταλόγου %s: %s\n"
msgid "could not open file: %s%s: %s\n" msgid "could not open file: %s%s: %s\n"
msgstr "αδυναμία ανοίγματος αρχείου: %s%s: %s\n" msgstr "αδυναμία ανοίγματος αρχείου: %s%s: %s\n"
#: lib/libalpm/hook.c:595 lib/libalpm/util.c:260 #: lib/libalpm/hook.c:595 lib/libalpm/util.c:279
#, c-format #, c-format
msgid "could not stat file %s: %s\n" msgid "could not stat file %s: %s\n"
msgstr "αδυναμία εντοπισμού αρχείου %s: %s\n" msgstr "αδυναμία εντοπισμού αρχείου %s: %s\n"
@ -783,11 +821,43 @@ msgstr "αδυναμία εντοπισμού αρχείου %s: %s\n"
msgid "could not read directory: %s: %s\n" msgid "could not read directory: %s: %s\n"
msgstr "αδυναμία ανάγνωσης καταλόγου: %s: %s\n" msgstr "αδυναμία ανάγνωσης καταλόγου: %s: %s\n"
#: lib/libalpm/package.c:598 #: lib/libalpm/package.c:614
#, c-format #, c-format
msgid "could not fully load metadata for package %s-%s\n" msgid "could not fully load metadata for package %s-%s\n"
msgstr "αδυναμία πλήρους φόρτωσης μεταδεδομένων πακέτου %s-%s\n" msgstr "αδυναμία πλήρους φόρτωσης μεταδεδομένων πακέτου %s-%s\n"
#: lib/libalpm/package.c:869
#, c-format
msgid "invalid package metadata (name or version missing)"
msgstr ""
#: lib/libalpm/package.c:874
#, c-format
msgid ""
"invalid metadata for package %s-%s (package name cannot start with '.' or "
"'-')\n"
msgstr ""
#: lib/libalpm/package.c:878
#, c-format
msgid ""
"invalid metadata for package %s-%s (package name contains invalid "
"characters)\n"
msgstr ""
#: lib/libalpm/package.c:885 lib/libalpm/package.c:889
#, c-format
msgid ""
"invalid metadata for package %s-%s (package version contains invalid "
"characters)\n"
msgstr ""
#: lib/libalpm/package.c:895
#, c-format
msgid ""
"invalid metadata for package %s-%s (package name and version too long)\n"
msgstr ""
#: lib/libalpm/remove.c:111 #: lib/libalpm/remove.c:111
#, c-format #, c-format
msgid "could not find %s in database -- skipping\n" msgid "could not find %s in database -- skipping\n"
@ -808,17 +878,17 @@ msgstr "αδυναμία διαγραφής αρχείου '%s': %s\n"
msgid "could not backup %s due to PATH_MAX overflow\n" msgid "could not backup %s due to PATH_MAX overflow\n"
msgstr "αδυναμία εφεδρικής αντιγραφής %s εξαιτίας υπερχείλισης PATH_MAX\n" msgstr "αδυναμία εφεδρικής αντιγραφής %s εξαιτίας υπερχείλισης PATH_MAX\n"
#: lib/libalpm/remove.c:554 #: lib/libalpm/remove.c:570
#, c-format #, c-format
msgid "cannot remove %s (%s)\n" msgid "cannot remove %s (%s)\n"
msgstr "αδυναμία κατάργησης %s (%s)\n" msgstr "αδυναμία κατάργησης %s (%s)\n"
#: lib/libalpm/remove.c:727 #: lib/libalpm/remove.c:743
#, c-format #, c-format
msgid "could not remove database entry %s-%s\n" msgid "could not remove database entry %s-%s\n"
msgstr "αδυναμία κατάργησης εγγραφής βάσης %s-%s\n" msgstr "αδυναμία κατάργησης εγγραφής βάσης %s-%s\n"
#: lib/libalpm/remove.c:732 #: lib/libalpm/remove.c:748
#, c-format #, c-format
msgid "could not remove entry '%s' from cache\n" msgid "could not remove entry '%s' from cache\n"
msgstr "αδυναμία κατάργησης εγγραφής '%s' από κρύπτη\n" msgstr "αδυναμία κατάργησης εγγραφής '%s' από κρύπτη\n"
@ -828,89 +898,89 @@ msgstr "αδυναμία κατάργησης εγγραφής '%s' από κρ
msgid "Public keyring not found; have you run '%s'?\n" msgid "Public keyring not found; have you run '%s'?\n"
msgstr "Δεν ευρέθη δημόσιος κλειδούχος· εκτελέστηκε '%s';\n" msgstr "Δεν ευρέθη δημόσιος κλειδούχος· εκτελέστηκε '%s';\n"
#: lib/libalpm/signing.c:199 lib/libalpm/signing.c:767 #: lib/libalpm/signing.c:199 lib/libalpm/signing.c:773
#, c-format #, c-format
msgid "GPGME error: %s\n" msgid "GPGME error: %s\n"
msgstr "σφάλμα GPGME: %s\n" msgstr "σφάλμα GPGME: %s\n"
#: lib/libalpm/signing.c:274 #: lib/libalpm/signing.c:275
#, c-format #, c-format
msgid "looking up key %s using WKD\n" msgid "looking up key %s using WKD\n"
msgstr "αναζήτησή κλειδιού %s με χρήση WKD\n" msgstr "αναζήτησή κλειδιού %s με χρήση WKD\n"
#: lib/libalpm/signing.c:283 #: lib/libalpm/signing.c:289
#, c-format #, c-format
msgid "gpg error: %s\n" msgid "gpg error: %s\n"
msgstr "σφάλμα gpg: %s\n" msgstr "σφάλμα gpg: %s\n"
#: lib/libalpm/signing.c:430 lib/libalpm/signing.c:503 #: lib/libalpm/signing.c:440 lib/libalpm/signing.c:513
#, c-format #, c-format
msgid "keyring is not writable\n" msgid "keyring is not writable\n"
msgstr "μη εγγράψιμος κλειδούχος\n" msgstr "μη εγγράψιμος κλειδούχος\n"
#: lib/libalpm/signing.c:531 #: lib/libalpm/signing.c:537
#, c-format #, c-format
msgid "key \"%s\" on keyserver\n" msgid "key \"%s\" on keyserver\n"
msgstr "κλειδί \"%s\" στον διακομιστή κλειδιών\n" msgstr "κλειδί \"%s\" στον διακομιστή κλειδιών\n"
#: lib/libalpm/signing.c:536 #: lib/libalpm/signing.c:542
#, c-format #, c-format
msgid "key \"%s\" could not be imported\n" msgid "key \"%s\" could not be imported\n"
msgstr "αδυναμία εισαγωγής κλειδιού \"%s\"\n" msgstr "αδυναμία εισαγωγής κλειδιού \"%s\"\n"
#: lib/libalpm/signing.c:540 #: lib/libalpm/signing.c:546
#, c-format #, c-format
msgid "key \"%s\" could not be looked up remotely\n" msgid "key \"%s\" could not be looked up remotely\n"
msgstr "αδυναμία απομεμακρυσμένης αναζήτησης κλειδιού \"%s\"\n" msgstr "αδυναμία απομεμακρυσμένης αναζήτησης κλειδιού \"%s\"\n"
#: lib/libalpm/signing.c:926 lib/libalpm/sync.c:1022 #: lib/libalpm/signing.c:932 lib/libalpm/sync.c:1052
#, c-format #, c-format
msgid "%s: missing required signature\n" msgid "%s: missing required signature\n"
msgstr "%s: απούσα απαιτούμενη υπογραφή\n" msgstr "%s: απούσα απαιτούμενη υπογραφή\n"
#: lib/libalpm/signing.c:941 #: lib/libalpm/signing.c:947
#, c-format #, c-format
msgid "%s: signature from \"%s\" is marginal trust\n" msgid "%s: signature from \"%s\" is marginal trust\n"
msgstr "%s: υπογραφή από \"%s\" οριακής εμπιστοσύνης\n" msgstr "%s: υπογραφή από \"%s\" οριακής εμπιστοσύνης\n"
#: lib/libalpm/signing.c:949 #: lib/libalpm/signing.c:955
#, c-format #, c-format
msgid "%s: signature from \"%s\" is unknown trust\n" msgid "%s: signature from \"%s\" is unknown trust\n"
msgstr "%s: υπογραφή από \"%s\" αγνώστου εμπιστοσύνης\n" msgstr "%s: υπογραφή από \"%s\" αγνώστου εμπιστοσύνης\n"
#: lib/libalpm/signing.c:956 #: lib/libalpm/signing.c:962
#, c-format #, c-format
msgid "%s: signature from \"%s\" should never be trusted\n" msgid "%s: signature from \"%s\" should never be trusted\n"
msgstr "%s: υπογραφή από \"%s\" ουδεμίας εμπιστοσύνης\n" msgstr "%s: υπογραφή από \"%s\" ουδεμίας εμπιστοσύνης\n"
#: lib/libalpm/signing.c:968 #: lib/libalpm/signing.c:974
#, c-format #, c-format
msgid "%s: key \"%s\" is unknown\n" msgid "%s: key \"%s\" is unknown\n"
msgstr "%s: κλειδί \"%s\" άγνωστο\n" msgstr "%s: κλειδί \"%s\" άγνωστο\n"
#: lib/libalpm/signing.c:977 #: lib/libalpm/signing.c:983
#, c-format #, c-format
msgid "%s: key \"%s\" is disabled\n" msgid "%s: key \"%s\" is disabled\n"
msgstr "%s: κλειδί \"%s\" απενεργοποιημένο\n" msgstr "%s: κλειδί \"%s\" απενεργοποιημένο\n"
#: lib/libalpm/signing.c:981 #: lib/libalpm/signing.c:987
#, c-format #, c-format
msgid "%s: signature from \"%s\" is expired\n" msgid "%s: signature from \"%s\" is expired\n"
msgstr "%s: υπογραφή από \"%s\" ληγμένη\n" msgstr "%s: υπογραφή από \"%s\" ληγμένη\n"
#: lib/libalpm/signing.c:985 #: lib/libalpm/signing.c:991
#, c-format #, c-format
msgid "%s: signature from \"%s\" is invalid\n" msgid "%s: signature from \"%s\" is invalid\n"
msgstr "%s: υπογραφή από \"%s\" άκυρη\n" msgstr "%s: υπογραφή από \"%s\" άκυρη\n"
#: lib/libalpm/signing.c:1043 lib/libalpm/signing.c:1104 #: lib/libalpm/signing.c:1049 lib/libalpm/signing.c:1110
#: lib/libalpm/signing.c:1183 #: lib/libalpm/signing.c:1189
#, c-format #, c-format
msgid "%s: signature format error\n" msgid "%s: signature format error\n"
msgstr "%s: σφάλμα μορφής υπογραφής\n" msgstr "%s: σφάλμα μορφής υπογραφής\n"
#: lib/libalpm/signing.c:1136 lib/libalpm/signing.c:1169 #: lib/libalpm/signing.c:1142 lib/libalpm/signing.c:1175
#: lib/libalpm/signing.c:1177 #: lib/libalpm/signing.c:1183
#, c-format #, c-format
msgid "%s: unsupported signature format\n" msgid "%s: unsupported signature format\n"
msgstr "%s: μη υποστηριζόμενη μορφή υπογραφής\n" msgstr "%s: μη υποστηριζόμενη μορφή υπογραφής\n"
@ -945,118 +1015,122 @@ msgstr "παράβλεψη αντικατάστασης πακέτου (%s-%s =>
msgid "cannot replace %s by %s\n" msgid "cannot replace %s by %s\n"
msgstr "αδυναμία αντικατάστασης του %s από το %s\n" msgstr "αδυναμία αντικατάστασης του %s από το %s\n"
#: lib/libalpm/sync.c:476 #: lib/libalpm/sync.c:477
#, c-format #, c-format
msgid "packages %s and %s have the same filename: %s\n" msgid "packages %s and %s have the same filename: %s\n"
msgstr "" msgstr "τα πακέτα %s και %s έχουν το ίδιο όνομα αρχείου: %s\n"
#: lib/libalpm/sync.c:542 lib/libalpm/sync.c:612 #: lib/libalpm/sync.c:546 lib/libalpm/sync.c:618
#, c-format #, c-format
msgid "unresolvable package conflicts detected\n" msgid "unresolvable package conflicts detected\n"
msgstr "εντοπισμός ανεπίλυτων διενέξεων πακέτων\n" msgstr "εντοπισμός ανεπίλυτων διενέξεων πακέτων\n"
#: lib/libalpm/sync.c:562 #: lib/libalpm/sync.c:566
#, c-format #, c-format
msgid "removing '%s' from target list because it conflicts with '%s'\n" msgid "removing '%s-%s' from target list because it conflicts with '%s-%s'\n"
msgstr "" msgstr "αφαίρεση '%s-%s' από λίστα στόχων λόγω διένεξης με '%s-%s'\n"
"αφαίρεση του '%s' από την λίστα διεκπεραίωσης λόγω διένεξης με το '%s'\n"
#: lib/libalpm/sync.c:1036 #: lib/libalpm/sync.c:1020 lib/libalpm/sync.c:1187
#, c-format
msgid "%s: could not find package in cache\n"
msgstr "%s: δεν βρέθηκε πακέτο στην κρύπτη\n"
#: lib/libalpm/sync.c:1066
#, c-format #, c-format
msgid "failed to read file %s: %s\n" msgid "failed to read file %s: %s\n"
msgstr "αποτυχία ανάγνωσης αρχείου %s: %s\n" msgstr "αποτυχία ανάγνωσης αρχείου %s: %s\n"
#: lib/libalpm/sync.c:1223 #: lib/libalpm/sync.c:1324
#, c-format #, c-format
msgid "not enough free disk space\n" msgid "not enough free disk space\n"
msgstr "μη αρκετός ελεύθερος χώρος στο δίσκο\n" msgstr "μη αρκετός ελεύθερος χώρος στο δίσκο\n"
#: lib/libalpm/sync.c:1245 #: lib/libalpm/sync.c:1346
#, c-format #, c-format
msgid "could not commit removal transaction\n" msgid "could not commit removal transaction\n"
msgstr "αδυναμία διεκπεραίωσης διαγραφής\n" msgstr "αδυναμία διεκπεραίωσης διαγραφής\n"
#: lib/libalpm/sync.c:1253 #: lib/libalpm/sync.c:1354
#, c-format #, c-format
msgid "could not commit transaction\n" msgid "could not commit transaction\n"
msgstr "αδυναμία διεκπεραίωσης\n" msgstr "αδυναμία διεκπεραίωσης\n"
#: lib/libalpm/trans.c:365 #: lib/libalpm/trans.c:369
#, c-format #, c-format
msgid "could not create temp directory\n" msgid "could not create temp directory\n"
msgstr "αδυναμία δημιουργίας προσωρινού καταλόγου\n" msgstr "αδυναμία δημιουργίας προσωρινού καταλόγου\n"
#: lib/libalpm/trans.c:380 #: lib/libalpm/trans.c:384
#, c-format #, c-format
msgid "could not copy tempfile to %s (%s)\n" msgid "could not copy tempfile to %s (%s)\n"
msgstr "αδυναμία αντιγραφής προσωρινού αρχείου στο %s (%s)\n" msgstr "αδυναμία αντιγραφής προσωρινού αρχείου στο %s (%s)\n"
#: lib/libalpm/trans.c:411 #: lib/libalpm/trans.c:415
#, c-format #, c-format
msgid "could not remove %s\n" msgid "could not remove %s\n"
msgstr "αδυναμία κατάργησης %s\n" msgstr "αδυναμία κατάργησης %s\n"
#: lib/libalpm/trans.c:415 #: lib/libalpm/trans.c:419
#, c-format #, c-format
msgid "could not remove tmpdir %s\n" msgid "could not remove tmpdir %s\n"
msgstr "αδυναμία διαγραφής προσωρινού καταλόγου %s\n" msgstr "αδυναμία διαγραφής προσωρινού καταλόγου %s\n"
#: lib/libalpm/util.c:488 #: lib/libalpm/util.c:512
#, c-format #, c-format
msgid "unable to write to pipe (%s)\n" msgid "unable to write to pipe (%s)\n"
msgstr "αποτυχία εγγραφής σε αγωγό (%s)\n" msgstr "αποτυχία εγγραφής σε αγωγό (%s)\n"
#: lib/libalpm/util.c:547 #: lib/libalpm/util.c:571
#, c-format #, c-format
msgid "unable to read from pipe (%s)\n" msgid "unable to read from pipe (%s)\n"
msgstr "αποτυχία ανάγνωσης από αγωγό (%s)\n" msgstr "αποτυχία ανάγνωσης από αγωγό (%s)\n"
#: lib/libalpm/util.c:617 lib/libalpm/util.c:623 #: lib/libalpm/util.c:641 lib/libalpm/util.c:647
#, c-format #, c-format
msgid "could not create pipe (%s)\n" msgid "could not create pipe (%s)\n"
msgstr "αδυναμία δημιουργίας αγωγού (%s)\n" msgstr "αδυναμία δημιουργίας αγωγού (%s)\n"
#: lib/libalpm/util.c:631 #: lib/libalpm/util.c:655
#, c-format #, c-format
msgid "could not fork a new process (%s)\n" msgid "could not fork a new process (%s)\n"
msgstr "αδυναμία εκκίνησης νέας διεργασίας (%s)\n" msgstr "αδυναμία εκκίνησης νέας διεργασίας (%s)\n"
#: lib/libalpm/util.c:654 #: lib/libalpm/util.c:680
#, c-format #, c-format
msgid "could not change the root directory (%s)\n" msgid "could not change the root directory (%s)\n"
msgstr "αδυναμία αλλαγής ριζικού καταλόγου (%s)\n" msgstr "αδυναμία αλλαγής ριζικού καταλόγου (%s)\n"
#: lib/libalpm/util.c:666 #: lib/libalpm/util.c:700
#, c-format #, c-format
msgid "call to execv failed (%s)\n" msgid "call to execv failed (%s)\n"
msgstr "αποτυχία κλήσης execv (%s)\n" msgstr "αποτυχία κλήσης execv (%s)\n"
#: lib/libalpm/util.c:745 #: lib/libalpm/util.c:779
#, c-format #, c-format
msgid "call to waitpid failed (%s)\n" msgid "call to waitpid failed (%s)\n"
msgstr "αποτυχία κλήσης waitpid (%s)\n" msgstr "αποτυχία κλήσης waitpid (%s)\n"
#: lib/libalpm/util.c:755 #: lib/libalpm/util.c:789
#, c-format #, c-format
msgid "command failed to execute correctly\n" msgid "command failed to execute correctly\n"
msgstr "αποτυχία σωστής εκτέλεσης εντολής\n" msgstr "αποτυχία σωστής εκτέλεσης εντολής\n"
#: lib/libalpm/util.c:762 #: lib/libalpm/util.c:796
#, c-format #, c-format
msgid "Unknown signal" msgid "Unknown signal"
msgstr "Άγνωστο σήμα" msgstr "Άγνωστο σήμα"
#: lib/libalpm/util.c:764 #: lib/libalpm/util.c:798
#, c-format #, c-format
msgid "command terminated by signal %d: %s\n" msgid "command terminated by signal %d: %s\n"
msgstr "τερματισμός εντολής με σήμα %d: %s\n" msgstr "τερματισμός εντολής με σήμα %d: %s\n"
#: lib/libalpm/util.c:875 #: lib/libalpm/util.c:916
#, c-format #, c-format
msgid "no %s cache exists, creating...\n" msgid "no %s cache exists, creating...\n"
msgstr "μη υπάρχουσα κρύπτη %s, δημιουργία...\n" msgstr "μη υπάρχουσα κρύπτη %s, δημιουργία...\n"
#: lib/libalpm/util.c:906 #: lib/libalpm/util.c:947
#, c-format #, c-format
msgid "couldn't find or create package cache, using %s instead\n" msgid "couldn't find or create package cache, using %s instead\n"
msgstr "αδυναμία εύρεσης ή δημιουργίας κρύπτης πακέτων, χρήση %s\n" msgstr "αδυναμία εύρεσης ή δημιουργίας κρύπτης πακέτων, χρήση %s\n"

View file

@ -4,16 +4,17 @@
# #
# Translators: # Translators:
# Allan McRae <allan@archlinux.org>, 2013 # Allan McRae <allan@archlinux.org>, 2013
# Allan McRae <allan@archlinux.org>, 2013-2015,2017-2019,2021 # Allan McRae <allan@archlinux.org>, 2013-2015,2017-2019,2021,2024
# Dan McGee <dpmcgee@gmail.com>, 2011 # Dan McGee <dpmcgee@gmail.com>, 2011
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Arch Linux Pacman package manager\n" "Project-Id-Version: Arch Linux Pacman package manager\n"
"Report-Msgid-Bugs-To: http://bugs.archlinux.org/index.php?project=3\n" "Report-Msgid-Bugs-To: https://gitlab.archlinux.org/pacman/pacman/-/issues\n"
"POT-Creation-Date: 2021-09-04 16:15+1000\n" "POT-Creation-Date: 2024-07-14 19:10+1000\n"
"PO-Revision-Date: 2021-05-20 02:25+0000\n" "PO-Revision-Date: 2010-11-29 23:17+0000\n"
"Last-Translator: Allan McRae <allan@archlinux.org>\n" "Last-Translator: Allan McRae <allan@archlinux.org>, "
"Language-Team: English (United Kingdom) (http://www.transifex.com/toofishes/" "2013-2015,2017-2019,2021,2024\n"
"Language-Team: English (United Kingdom) (http://app.transifex.com/toofishes/"
"archlinux-pacman/language/en_GB/)\n" "archlinux-pacman/language/en_GB/)\n"
"Language: en_GB\n" "Language: en_GB\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
@ -41,17 +42,17 @@ msgstr "downgrading package %s (%s => %s)\n"
msgid "cannot allocate disk archive object" msgid "cannot allocate disk archive object"
msgstr "cannot allocate disk archive object" msgstr "cannot allocate disk archive object"
#: lib/libalpm/add.c:143 lib/libalpm/util.c:384 #: lib/libalpm/add.c:143 lib/libalpm/util.c:408
#, c-format #, c-format
msgid "warning given when extracting %s (%s)\n" msgid "warning given when extracting %s (%s)\n"
msgstr "warning given when extracting %s (%s)\n" msgstr "warning given when extracting %s (%s)\n"
#: lib/libalpm/add.c:146 lib/libalpm/util.c:387 #: lib/libalpm/add.c:146 lib/libalpm/util.c:411
#, c-format #, c-format
msgid "could not extract %s (%s)\n" msgid "could not extract %s (%s)\n"
msgstr "could not extract %s (%s)\n" msgstr "could not extract %s (%s)\n"
#: lib/libalpm/add.c:159 lib/libalpm/dload.c:709 lib/libalpm/remove.c:534 #: lib/libalpm/add.c:159 lib/libalpm/dload.c:707 lib/libalpm/remove.c:550
#, c-format #, c-format
msgid "could not rename %s to %s (%s)\n" msgid "could not rename %s to %s (%s)\n"
msgstr "could not rename %s to %s (%s)\n" msgstr "could not rename %s to %s (%s)\n"
@ -95,18 +96,18 @@ msgstr "extract: not overwriting dir with file %s\n"
msgid "unable to extract %s.pacnew: path too long" msgid "unable to extract %s.pacnew: path too long"
msgstr "unable to extract %s.pacnew: path too long" msgstr "unable to extract %s.pacnew: path too long"
#: lib/libalpm/add.c:510 lib/libalpm/util.c:335 lib/libalpm/util.c:600 #: lib/libalpm/add.c:510 lib/libalpm/util.c:354 lib/libalpm/util.c:624
#, c-format #, c-format
msgid "could not get current working directory\n" msgid "could not get current working directory\n"
msgstr "could not get current working directory\n" msgstr "could not get current working directory\n"
#: lib/libalpm/add.c:515 lib/libalpm/util.c:340 lib/libalpm/util.c:605 #: lib/libalpm/add.c:515 lib/libalpm/util.c:359 lib/libalpm/util.c:629
#: lib/libalpm/util.c:658 #: lib/libalpm/util.c:684
#, c-format #, c-format
msgid "could not change directory to %s (%s)\n" msgid "could not change directory to %s (%s)\n"
msgstr "could not change directory to %s (%s)\n" msgstr "could not change directory to %s (%s)\n"
#: lib/libalpm/add.c:571 lib/libalpm/util.c:405 lib/libalpm/util.c:774 #: lib/libalpm/add.c:571 lib/libalpm/util.c:429 lib/libalpm/util.c:808
#, c-format #, c-format
msgid "could not restore working directory (%s)\n" msgid "could not restore working directory (%s)\n"
msgstr "could not restore working directory (%s)\n" msgstr "could not restore working directory (%s)\n"
@ -131,101 +132,116 @@ msgstr "could not update database entry %s-%s\n"
msgid "could not add entry '%s' in cache\n" msgid "could not add entry '%s' in cache\n"
msgstr "could not add entry '%s' in cache\n" msgstr "could not add entry '%s' in cache\n"
#: lib/libalpm/be_local.c:266 #: lib/libalpm/be_local.c:271
#, c-format #, c-format
msgid "error while reading file %s: %s\n" msgid "error while reading file %s: %s\n"
msgstr "error while reading file %s: %s\n" msgstr "error while reading file %s: %s\n"
#: lib/libalpm/be_local.c:376 #: lib/libalpm/be_local.c:382
#, c-format #, c-format
msgid "removing invalid database: %s\n" msgid "removing invalid database: %s\n"
msgstr "removing invalid database: %s\n" msgstr "removing invalid database: %s\n"
#: lib/libalpm/be_local.c:427 lib/libalpm/be_local.c:909 #: lib/libalpm/be_local.c:433 lib/libalpm/be_local.c:947
#, c-format #, c-format
msgid "could not create directory %s: %s\n" msgid "could not create directory %s: %s\n"
msgstr "could not create directory %s: %s\n" msgstr "could not create directory %s: %s\n"
#: lib/libalpm/be_local.c:602 lib/libalpm/be_sync.c:322 #: lib/libalpm/be_local.c:608 lib/libalpm/be_sync.c:339
#, c-format #, c-format
msgid "invalid name for database entry '%s'\n" msgid "invalid name for database entry '%s'\n"
msgstr "invalid name for database entry '%s'\n" msgstr "invalid name for database entry '%s'\n"
#: lib/libalpm/be_local.c:610 #: lib/libalpm/be_local.c:616
#, c-format #, c-format
msgid "duplicated database entry '%s'\n" msgid "duplicated database entry '%s'\n"
msgstr "duplicated database entry '%s'\n" msgstr "duplicated database entry '%s'\n"
#: lib/libalpm/be_local.c:622 #: lib/libalpm/be_local.c:628
#, c-format #, c-format
msgid "corrupted database entry '%s'\n" msgid "corrupted database entry '%s'\n"
msgstr "corrupted database entry '%s'\n" msgstr "corrupted database entry '%s'\n"
#: lib/libalpm/be_local.c:722 lib/libalpm/be_local.c:818 #: lib/libalpm/be_local.c:663
#: lib/libalpm/be_local.c:958 lib/libalpm/be_local.c:1055 #, c-format
#: lib/libalpm/diskspace.c:131 lib/libalpm/dload.c:823 lib/libalpm/util.c:254 msgid "unknown install reason for package %s: %s\n"
#: lib/libalpm/util.c:270 msgstr "unknown install reason for package %s: %s\n"
#: lib/libalpm/be_local.c:743 lib/libalpm/be_local.c:856
#: lib/libalpm/be_local.c:996 lib/libalpm/be_local.c:1102
#: lib/libalpm/diskspace.c:135 lib/libalpm/dload.c:792 lib/libalpm/util.c:273
#: lib/libalpm/util.c:289
#, c-format #, c-format
msgid "could not open file %s: %s\n" msgid "could not open file %s: %s\n"
msgstr "could not open file %s: %s\n" msgstr "could not open file %s: %s\n"
#: lib/libalpm/be_local.c:738 lib/libalpm/be_sync.c:582 #: lib/libalpm/be_local.c:759 lib/libalpm/be_sync.c:612
#, c-format #, c-format
msgid "%s database is inconsistent: name mismatch on package %s\n" msgid "%s database is inconsistent: name mismatch on package %s\n"
msgstr "%s database is inconsistent: name mismatch on package %s\n" msgstr "%s database is inconsistent: name mismatch on package %s\n"
#: lib/libalpm/be_local.c:744 lib/libalpm/be_sync.c:588 #: lib/libalpm/be_local.c:765 lib/libalpm/be_sync.c:618
#, c-format #, c-format
msgid "%s database is inconsistent: version mismatch on package %s\n" msgid "%s database is inconsistent: version mismatch on package %s\n"
msgstr "%s database is inconsistent: version mismatch on package %s\n" msgstr "%s database is inconsistent: version mismatch on package %s\n"
#: lib/libalpm/be_local.c:785 #: lib/libalpm/be_local.c:806
#, c-format #, c-format
msgid "unknown validation type for package %s: %s\n" msgid "unknown validation type for package %s: %s\n"
msgstr "unknown validation type for package %s: %s\n" msgstr "unknown validation type for package %s: %s\n"
#: lib/libalpm/be_package.c:478 lib/libalpm/be_package.c:631 #: lib/libalpm/be_local.c:841
#: lib/libalpm/be_package.c:643 #, c-format
msgid "%s: unknown key '%s' in local database\n"
msgstr "%s: unknown key '%s' in local database\n"
#: lib/libalpm/be_package.c:255
#, c-format
msgid "%s: unknown key '%s' in package description\n"
msgstr "%s: unknown key '%s' in package description\n"
#: lib/libalpm/be_package.c:482 lib/libalpm/be_package.c:635
#: lib/libalpm/be_package.c:647
#, c-format #, c-format
msgid "error while reading package %s: %s\n" msgid "error while reading package %s: %s\n"
msgstr "error while reading package %s: %s\n" msgstr "error while reading package %s: %s\n"
#: lib/libalpm/be_package.c:491 lib/libalpm/be_package.c:514 #: lib/libalpm/be_package.c:495 lib/libalpm/be_package.c:518
#, c-format #, c-format
msgid "error while reading mtree of package %s: %s\n" msgid "error while reading mtree of package %s: %s\n"
msgstr "error while reading mtree of package %s: %s\n" msgstr "error while reading mtree of package %s: %s\n"
#: lib/libalpm/be_package.c:597 #: lib/libalpm/be_package.c:601
#, c-format #, c-format
msgid "could not parse package description file in %s\n" msgid "could not parse package description file in %s\n"
msgstr "could not parse package description file in %s\n" msgstr "could not parse package description file in %s\n"
#: lib/libalpm/be_package.c:602 #: lib/libalpm/be_package.c:606
#, c-format #, c-format
msgid "missing package name in %s\n" msgid "missing package name in %s\n"
msgstr "missing package name in %s\n" msgstr "missing package name in %s\n"
#: lib/libalpm/be_package.c:606 #: lib/libalpm/be_package.c:610
#, c-format #, c-format
msgid "missing package version in %s\n" msgid "missing package version in %s\n"
msgstr "missing package version in %s\n" msgstr "missing package version in %s\n"
#: lib/libalpm/be_package.c:610 #: lib/libalpm/be_package.c:614
#, c-format #, c-format
msgid "invalid package version in %s\n" msgid "invalid package version in %s\n"
msgstr "invalid package version in %s\n" msgstr "invalid package version in %s\n"
#: lib/libalpm/be_package.c:649 #: lib/libalpm/be_package.c:653
#, c-format #, c-format
msgid "missing package metadata in %s\n" msgid "missing package metadata in %s\n"
msgstr "missing package metadata in %s\n" msgstr "missing package metadata in %s\n"
#: lib/libalpm/be_package.c:741 #: lib/libalpm/be_package.c:745
#, c-format #, c-format
msgid "failed to read signature file: %s\n" msgid "failed to read signature file: %s\n"
msgstr "failed to read signature file: %s\n" msgstr "failed to read signature file: %s\n"
#: lib/libalpm/be_package.c:770 lib/libalpm/sync.c:953 #: lib/libalpm/be_package.c:768 lib/libalpm/sync.c:976
#, c-format #, c-format
msgid "required key missing from keyring\n" msgid "required key missing from keyring\n"
msgstr "required key missing from keyring\n" msgstr "required key missing from keyring\n"
@ -235,32 +251,37 @@ msgstr "required key missing from keyring\n"
msgid "removing invalid file: %s\n" msgid "removing invalid file: %s\n"
msgstr "removing invalid file: %s\n" msgstr "removing invalid file: %s\n"
#: lib/libalpm/be_sync.c:449 #: lib/libalpm/be_sync.c:471
#, c-format #, c-format
msgid "could not parse package description file '%s' from db '%s'\n" msgid "could not parse package description file '%s' from db '%s'\n"
msgstr "could not parse package description file '%s' from db '%s'\n" msgstr "could not parse package description file '%s' from db '%s'\n"
#: lib/libalpm/be_sync.c:456 #: lib/libalpm/be_sync.c:486
#, c-format #, c-format
msgid "could not read db '%s' (%s)\n" msgid "could not read db '%s' (%s)\n"
msgstr "could not read db '%s' (%s)\n" msgstr "could not read db '%s' (%s)\n"
#: lib/libalpm/be_sync.c:489 lib/libalpm/be_sync.c:494 #: lib/libalpm/be_sync.c:519 lib/libalpm/be_sync.c:524
#, c-format #, c-format
msgid "%s database is inconsistent: filename of package %s is illegal\n" msgid "%s database is inconsistent: filename of package %s is illegal\n"
msgstr "%s database is inconsistent: filename of package %s is illegal\n" msgstr "%s database is inconsistent: filename of package %s is illegal\n"
#: lib/libalpm/be_sync.c:499 #: lib/libalpm/be_sync.c:529
#, c-format #, c-format
msgid "%s database is inconsistent: filename of package %s is too long\n" msgid "%s database is inconsistent: filename of package %s is too long\n"
msgstr "%s database is inconsistent: filename of package %s is too long\n" msgstr "%s database is inconsistent: filename of package %s is too long\n"
#: lib/libalpm/be_sync.c:564 #: lib/libalpm/be_sync.c:594
#, c-format #, c-format
msgid "unknown database file: %s\n" msgid "unknown database file: %s\n"
msgstr "unknown database file: %s\n" msgstr "unknown database file: %s\n"
#: lib/libalpm/db.c:344 #: lib/libalpm/be_sync.c:712
#, c-format
msgid "%s: unknown key '%s' in sync database\n"
msgstr "%s: unknown key '%s' in sync database\n"
#: lib/libalpm/db.c:413
#, c-format #, c-format
msgid "database path is undefined\n" msgid "database path is undefined\n"
msgstr "database path is undefined\n" msgstr "database path is undefined\n"
@ -300,105 +321,120 @@ msgstr "could not get filesystem information for %s: %s\n"
msgid "could not open file: %s: %s\n" msgid "could not open file: %s: %s\n"
msgstr "could not open file: %s: %s\n" msgstr "could not open file: %s: %s\n"
#: lib/libalpm/diskspace.c:146 lib/libalpm/diskspace.c:159 #: lib/libalpm/diskspace.c:154 lib/libalpm/diskspace.c:167
#, c-format #, c-format
msgid "could not get filesystem information\n" msgid "could not get filesystem information\n"
msgstr "could not get filesystem information\n" msgstr "could not get filesystem information\n"
#: lib/libalpm/diskspace.c:242 #: lib/libalpm/diskspace.c:254
#, c-format #, c-format
msgid "could not get file information for %s\n" msgid "could not get file information for %s\n"
msgstr "could not get file information for %s\n" msgstr "could not get file information for %s\n"
#: lib/libalpm/diskspace.c:256 lib/libalpm/diskspace.c:315 #: lib/libalpm/diskspace.c:268 lib/libalpm/diskspace.c:327
#, c-format #, c-format
msgid "could not determine mount point for file %s\n" msgid "could not determine mount point for file %s\n"
msgstr "could not determine mount point for file %s\n" msgstr "could not determine mount point for file %s\n"
#: lib/libalpm/diskspace.c:354 #: lib/libalpm/diskspace.c:366
#, c-format #, c-format
msgid "Partition %s too full: %jd blocks needed, %ju blocks free\n" msgid "Partition %s too full: %jd blocks needed, %ju blocks free\n"
msgstr "Partition %s too full: %jd blocks needed, %ju blocks free\n" msgstr "Partition %s too full: %jd blocks needed, %ju blocks free\n"
#: lib/libalpm/diskspace.c:379 lib/libalpm/diskspace.c:433 #: lib/libalpm/diskspace.c:391 lib/libalpm/diskspace.c:445
#, c-format #, c-format
msgid "could not determine filesystem mount points\n" msgid "could not determine filesystem mount points\n"
msgstr "could not determine filesystem mount points\n" msgstr "could not determine filesystem mount points\n"
#: lib/libalpm/diskspace.c:385 #: lib/libalpm/diskspace.c:397
#, c-format #, c-format
msgid "could not determine cachedir mount point %s\n" msgid "could not determine cachedir mount point %s\n"
msgstr "could not determine cachedir mount point %s\n" msgstr "could not determine cachedir mount point %s\n"
#: lib/libalpm/diskspace.c:438 #: lib/libalpm/diskspace.c:450
#, c-format #, c-format
msgid "could not determine root mount point %s\n" msgid "could not determine root mount point %s\n"
msgstr "could not determine root mount point %s\n" msgstr "could not determine root mount point %s\n"
#: lib/libalpm/diskspace.c:486 #: lib/libalpm/diskspace.c:498
#, c-format #, c-format
msgid "Partition %s is mounted read only\n" msgid "Partition %s is mounted read only\n"
msgstr "Partition %s is mounted read only\n" msgstr "Partition %s is mounted read only\n"
#: lib/libalpm/dload.c:116 #: lib/libalpm/dload.c:107
#, c-format
msgid "failed to create temporary file for download\n"
msgstr "failed to create temporary file for download\n"
#: lib/libalpm/dload.c:198
#, c-format #, c-format
msgid "" msgid ""
"too many errors from %s, skipping for the remainder of this transaction\n" "too many errors from %s, skipping for the remainder of this transaction\n"
msgstr "" msgstr ""
"too many errors from %s, skipping for the remainder of this transaction\n" "too many errors from %s, skipping for the remainder of this transaction\n"
#: lib/libalpm/dload.c:220 #: lib/libalpm/dload.c:215
#, c-format
msgid "fatal error from %s, skipping for the remainder of this transaction\n"
msgstr "fatal error from %s, skipping for the remainder of this transaction\n"
#: lib/libalpm/dload.c:310
#, c-format #, c-format
msgid "disk" msgid "disk"
msgstr "disk" msgstr "disk"
#: lib/libalpm/dload.c:392 #: lib/libalpm/dload.c:532 lib/libalpm/dload.c:570 lib/libalpm/dload.c:583
#, c-format
msgid "failed to create temporary file for download\n"
msgstr "failed to create temporary file for download\n"
#: lib/libalpm/dload.c:509 lib/libalpm/dload.c:547 lib/libalpm/dload.c:561
#, c-format #, c-format
msgid "failed retrieving file '%s' from %s : %s\n" msgid "failed retrieving file '%s' from %s : %s\n"
msgstr "failed retrieving file '%s' from %s : %s\n" msgstr "failed retrieving file '%s' from %s : %s\n"
#: lib/libalpm/dload.c:539 #: lib/libalpm/dload.c:562
#, c-format #, c-format
msgid "failed retrieving file '%s' from %s : expected download size exceeded\n" msgid "failed retrieving file '%s' from %s : expected download size exceeded\n"
msgstr "" msgstr ""
"failed retrieving file '%s' from %s : expected download size exceeded\n" "failed retrieving file '%s' from %s : expected download size exceeded\n"
#: lib/libalpm/dload.c:687 #: lib/libalpm/dload.c:685
#, c-format #, c-format
msgid "%s appears to be truncated: %jd/%jd bytes\n" msgid "%s appears to be truncated: %jd/%jd bytes\n"
msgstr "%s appears to be truncated: %jd/%jd bytes\n" msgstr "%s appears to be truncated: %jd/%jd bytes\n"
#: lib/libalpm/dload.c:787 #: lib/libalpm/dload.c:776
#, c-format #, c-format
msgid "url '%s' is invalid\n" msgid "url '%s' is invalid\n"
msgstr "URL '%s' is invalid\n" msgstr "URL '%s' is invalid\n"
#: lib/libalpm/dload.c:893 #: lib/libalpm/dload.c:864
#, c-format #, c-format
msgid "failed to setup a download payload for %s\n" msgid "failed to setup a download payload for %s\n"
msgstr "failed to setup a download payload for %s\n" msgstr "failed to setup a download payload for %s\n"
#: lib/libalpm/dload.c:905 #: lib/libalpm/dload.c:876
#, c-format #, c-format
msgid "curl returned error %d from transfer\n" msgid "curl returned error %d from transfer\n"
msgstr "curl returned error %d from transfer\n" msgstr "curl returned error %d from transfer\n"
#: lib/libalpm/dload.c:929 #: lib/libalpm/dload.c:900
#, c-format #, c-format
msgid "curl transfer error: %d\n" msgid "curl transfer error: %d\n"
msgstr "curl transfer error: %d\n" msgstr "curl transfer error: %d\n"
#: lib/libalpm/dload.c:1055 lib/libalpm/sync.c:840 #: lib/libalpm/dload.c:963
#, c-format
msgid "could not chdir to download directory %s\n"
msgstr "could not chdir to download directory %s\n"
#: lib/libalpm/dload.c:968
#, c-format
msgid "switching to sandbox user '%s' failed!\n"
msgstr "switching to sandbox user '%s' failed!\n"
#: lib/libalpm/dload.c:1361 lib/libalpm/sync.c:861
#, c-format #, c-format
msgid "failed to retrieve some files\n" msgid "failed to retrieve some files\n"
msgstr "failed to retrieve some files\n" msgstr "failed to retrieve some files\n"
#: lib/libalpm/dload.c:1078 #: lib/libalpm/dload.c:1384
#, c-format #, c-format
msgid "download completed successfully but no file in the cache\n" msgid "download completed successfully but no file in the cache\n"
msgstr "download completed successfully but no file in the cache\n" msgstr "download completed successfully but no file in the cache\n"
@ -531,7 +567,7 @@ msgstr "duplicate target"
#: lib/libalpm/error.c:94 #: lib/libalpm/error.c:94
#, c-format #, c-format
msgid "duplicate filename" msgid "duplicate filename"
msgstr "" msgstr "duplicate filename"
#: lib/libalpm/error.c:98 #: lib/libalpm/error.c:98
#, c-format #, c-format
@ -673,12 +709,12 @@ msgstr "compiled without signature support"
msgid "unexpected error" msgid "unexpected error"
msgstr "unexpected error" msgstr "unexpected error"
#: lib/libalpm/handle.c:142 #: lib/libalpm/handle.c:165
#, c-format #, c-format
msgid "lock file missing %s\n" msgid "lock file missing %s\n"
msgstr "lock file missing %s\n" msgstr "lock file missing %s\n"
#: lib/libalpm/handle.c:148 #: lib/libalpm/handle.c:171
#, c-format #, c-format
msgid "could not remove lock file %s\n" msgid "could not remove lock file %s\n"
msgstr "could not remove lock file %s\n" msgstr "could not remove lock file %s\n"
@ -760,7 +796,7 @@ msgstr "could not open directory: %s: %s\n"
msgid "could not open file: %s%s: %s\n" msgid "could not open file: %s%s: %s\n"
msgstr "could not open file: %s%s: %s\n" msgstr "could not open file: %s%s: %s\n"
#: lib/libalpm/hook.c:595 lib/libalpm/util.c:260 #: lib/libalpm/hook.c:595 lib/libalpm/util.c:279
#, c-format #, c-format
msgid "could not stat file %s: %s\n" msgid "could not stat file %s: %s\n"
msgstr "could not stat file %s: %s\n" msgstr "could not stat file %s: %s\n"
@ -770,11 +806,50 @@ msgstr "could not stat file %s: %s\n"
msgid "could not read directory: %s: %s\n" msgid "could not read directory: %s: %s\n"
msgstr "could not read directory: %s: %s\n" msgstr "could not read directory: %s: %s\n"
#: lib/libalpm/package.c:598 #: lib/libalpm/package.c:614
#, c-format #, c-format
msgid "could not fully load metadata for package %s-%s\n" msgid "could not fully load metadata for package %s-%s\n"
msgstr "could not fully load metadata for package %s-%s\n" msgstr "could not fully load metadata for package %s-%s\n"
#: lib/libalpm/package.c:869
#, c-format
msgid "invalid package metadata (name or version missing)"
msgstr "invalid package metadata (name or version missing)"
#: lib/libalpm/package.c:874
#, c-format
msgid ""
"invalid metadata for package %s-%s (package name cannot start with '.' or "
"'-')\n"
msgstr ""
"invalid metadata for package %s-%s (package name cannot start with '.' or "
"'-')\n"
#: lib/libalpm/package.c:878
#, c-format
msgid ""
"invalid metadata for package %s-%s (package name contains invalid "
"characters)\n"
msgstr ""
"invalid metadata for package %s-%s (package name contains invalid "
"characters)\n"
#: lib/libalpm/package.c:885 lib/libalpm/package.c:889
#, c-format
msgid ""
"invalid metadata for package %s-%s (package version contains invalid "
"characters)\n"
msgstr ""
"invalid metadata for package %s-%s (package version contains invalid "
"characters)\n"
#: lib/libalpm/package.c:895
#, c-format
msgid ""
"invalid metadata for package %s-%s (package name and version too long)\n"
msgstr ""
"invalid metadata for package %s-%s (package name and version too long)\n"
#: lib/libalpm/remove.c:111 #: lib/libalpm/remove.c:111
#, c-format #, c-format
msgid "could not find %s in database -- skipping\n" msgid "could not find %s in database -- skipping\n"
@ -795,17 +870,17 @@ msgstr "cannot remove file '%s': %s\n"
msgid "could not backup %s due to PATH_MAX overflow\n" msgid "could not backup %s due to PATH_MAX overflow\n"
msgstr "could not backup %s due to PATH_MAX overflow\n" msgstr "could not backup %s due to PATH_MAX overflow\n"
#: lib/libalpm/remove.c:554 #: lib/libalpm/remove.c:570
#, c-format #, c-format
msgid "cannot remove %s (%s)\n" msgid "cannot remove %s (%s)\n"
msgstr "cannot remove %s (%s)\n" msgstr "cannot remove %s (%s)\n"
#: lib/libalpm/remove.c:727 #: lib/libalpm/remove.c:743
#, c-format #, c-format
msgid "could not remove database entry %s-%s\n" msgid "could not remove database entry %s-%s\n"
msgstr "could not remove database entry %s-%s\n" msgstr "could not remove database entry %s-%s\n"
#: lib/libalpm/remove.c:732 #: lib/libalpm/remove.c:748
#, c-format #, c-format
msgid "could not remove entry '%s' from cache\n" msgid "could not remove entry '%s' from cache\n"
msgstr "could not remove entry '%s' from cache\n" msgstr "could not remove entry '%s' from cache\n"
@ -815,89 +890,89 @@ msgstr "could not remove entry '%s' from cache\n"
msgid "Public keyring not found; have you run '%s'?\n" msgid "Public keyring not found; have you run '%s'?\n"
msgstr "Public keyring not found; have you run '%s'?\n" msgstr "Public keyring not found; have you run '%s'?\n"
#: lib/libalpm/signing.c:199 lib/libalpm/signing.c:767 #: lib/libalpm/signing.c:199 lib/libalpm/signing.c:773
#, c-format #, c-format
msgid "GPGME error: %s\n" msgid "GPGME error: %s\n"
msgstr "GPGME error: %s\n" msgstr "GPGME error: %s\n"
#: lib/libalpm/signing.c:274 #: lib/libalpm/signing.c:275
#, c-format #, c-format
msgid "looking up key %s using WKD\n" msgid "looking up key %s using WKD\n"
msgstr "looking up key %s using WKD\n" msgstr "looking up key %s using WKD\n"
#: lib/libalpm/signing.c:283 #: lib/libalpm/signing.c:289
#, c-format #, c-format
msgid "gpg error: %s\n" msgid "gpg error: %s\n"
msgstr "gpg error: %s\n" msgstr "gpg error: %s\n"
#: lib/libalpm/signing.c:430 lib/libalpm/signing.c:503 #: lib/libalpm/signing.c:440 lib/libalpm/signing.c:513
#, c-format #, c-format
msgid "keyring is not writable\n" msgid "keyring is not writable\n"
msgstr "keyring is not writable\n" msgstr "keyring is not writable\n"
#: lib/libalpm/signing.c:531 #: lib/libalpm/signing.c:537
#, c-format #, c-format
msgid "key \"%s\" on keyserver\n" msgid "key \"%s\" on keyserver\n"
msgstr "key \"%s\" on keyserver\n" msgstr "key \"%s\" on keyserver\n"
#: lib/libalpm/signing.c:536 #: lib/libalpm/signing.c:542
#, c-format #, c-format
msgid "key \"%s\" could not be imported\n" msgid "key \"%s\" could not be imported\n"
msgstr "key \"%s\" could not be imported\n" msgstr "key \"%s\" could not be imported\n"
#: lib/libalpm/signing.c:540 #: lib/libalpm/signing.c:546
#, c-format #, c-format
msgid "key \"%s\" could not be looked up remotely\n" msgid "key \"%s\" could not be looked up remotely\n"
msgstr "key \"%s\" could not be looked up remotely\n" msgstr "key \"%s\" could not be looked up remotely\n"
#: lib/libalpm/signing.c:926 lib/libalpm/sync.c:1022 #: lib/libalpm/signing.c:932 lib/libalpm/sync.c:1052
#, c-format #, c-format
msgid "%s: missing required signature\n" msgid "%s: missing required signature\n"
msgstr "%s: missing required signature\n" msgstr "%s: missing required signature\n"
#: lib/libalpm/signing.c:941 #: lib/libalpm/signing.c:947
#, c-format #, c-format
msgid "%s: signature from \"%s\" is marginal trust\n" msgid "%s: signature from \"%s\" is marginal trust\n"
msgstr "%s: signature from \"%s\" is marginal trust\n" msgstr "%s: signature from \"%s\" is marginal trust\n"
#: lib/libalpm/signing.c:949 #: lib/libalpm/signing.c:955
#, c-format #, c-format
msgid "%s: signature from \"%s\" is unknown trust\n" msgid "%s: signature from \"%s\" is unknown trust\n"
msgstr "%s: signature from \"%s\" is unknown trust\n" msgstr "%s: signature from \"%s\" is unknown trust\n"
#: lib/libalpm/signing.c:956 #: lib/libalpm/signing.c:962
#, c-format #, c-format
msgid "%s: signature from \"%s\" should never be trusted\n" msgid "%s: signature from \"%s\" should never be trusted\n"
msgstr "%s: signature from \"%s\" should never be trusted\n" msgstr "%s: signature from \"%s\" should never be trusted\n"
#: lib/libalpm/signing.c:968 #: lib/libalpm/signing.c:974
#, c-format #, c-format
msgid "%s: key \"%s\" is unknown\n" msgid "%s: key \"%s\" is unknown\n"
msgstr "%s: key \"%s\" is unknown\n" msgstr "%s: key \"%s\" is unknown\n"
#: lib/libalpm/signing.c:977 #: lib/libalpm/signing.c:983
#, c-format #, c-format
msgid "%s: key \"%s\" is disabled\n" msgid "%s: key \"%s\" is disabled\n"
msgstr "%s: key \"%s\" is disabled\n" msgstr "%s: key \"%s\" is disabled\n"
#: lib/libalpm/signing.c:981 #: lib/libalpm/signing.c:987
#, c-format #, c-format
msgid "%s: signature from \"%s\" is expired\n" msgid "%s: signature from \"%s\" is expired\n"
msgstr "%s: signature from \"%s\" is expired\n" msgstr "%s: signature from \"%s\" is expired\n"
#: lib/libalpm/signing.c:985 #: lib/libalpm/signing.c:991
#, c-format #, c-format
msgid "%s: signature from \"%s\" is invalid\n" msgid "%s: signature from \"%s\" is invalid\n"
msgstr "%s: signature from \"%s\" is invalid\n" msgstr "%s: signature from \"%s\" is invalid\n"
#: lib/libalpm/signing.c:1043 lib/libalpm/signing.c:1104 #: lib/libalpm/signing.c:1049 lib/libalpm/signing.c:1110
#: lib/libalpm/signing.c:1183 #: lib/libalpm/signing.c:1189
#, c-format #, c-format
msgid "%s: signature format error\n" msgid "%s: signature format error\n"
msgstr "%s: signature format error\n" msgstr "%s: signature format error\n"
#: lib/libalpm/signing.c:1136 lib/libalpm/signing.c:1169 #: lib/libalpm/signing.c:1142 lib/libalpm/signing.c:1175
#: lib/libalpm/signing.c:1177 #: lib/libalpm/signing.c:1183
#, c-format #, c-format
msgid "%s: unsupported signature format\n" msgid "%s: unsupported signature format\n"
msgstr "%s: unsupported signature format\n" msgstr "%s: unsupported signature format\n"
@ -932,117 +1007,122 @@ msgstr "ignoring package replacement (%s-%s => %s-%s)\n"
msgid "cannot replace %s by %s\n" msgid "cannot replace %s by %s\n"
msgstr "cannot replace %s by %s\n" msgstr "cannot replace %s by %s\n"
#: lib/libalpm/sync.c:476 #: lib/libalpm/sync.c:477
#, c-format #, c-format
msgid "packages %s and %s have the same filename: %s\n" msgid "packages %s and %s have the same filename: %s\n"
msgstr "" msgstr "packages %s and %s have the same filename: %s\n"
#: lib/libalpm/sync.c:542 lib/libalpm/sync.c:612 #: lib/libalpm/sync.c:546 lib/libalpm/sync.c:618
#, c-format #, c-format
msgid "unresolvable package conflicts detected\n" msgid "unresolvable package conflicts detected\n"
msgstr "unresolvable package conflicts detected\n" msgstr "unresolvable package conflicts detected\n"
#: lib/libalpm/sync.c:562 #: lib/libalpm/sync.c:566
#, c-format #, c-format
msgid "removing '%s' from target list because it conflicts with '%s'\n" msgid "removing '%s-%s' from target list because it conflicts with '%s-%s'\n"
msgstr "removing '%s' from target list because it conflicts with '%s'\n" msgstr "removing '%s-%s' from target list because it conflicts with '%s-%s'\n"
#: lib/libalpm/sync.c:1036 #: lib/libalpm/sync.c:1020 lib/libalpm/sync.c:1187
#, c-format
msgid "%s: could not find package in cache\n"
msgstr "%s: could not find package in cache\n"
#: lib/libalpm/sync.c:1066
#, c-format #, c-format
msgid "failed to read file %s: %s\n" msgid "failed to read file %s: %s\n"
msgstr "failed to read file %s: %s\n" msgstr "failed to read file %s: %s\n"
#: lib/libalpm/sync.c:1223 #: lib/libalpm/sync.c:1324
#, c-format #, c-format
msgid "not enough free disk space\n" msgid "not enough free disk space\n"
msgstr "not enough free disk space\n" msgstr "not enough free disk space\n"
#: lib/libalpm/sync.c:1245 #: lib/libalpm/sync.c:1346
#, c-format #, c-format
msgid "could not commit removal transaction\n" msgid "could not commit removal transaction\n"
msgstr "could not commit removal transaction\n" msgstr "could not commit removal transaction\n"
#: lib/libalpm/sync.c:1253 #: lib/libalpm/sync.c:1354
#, c-format #, c-format
msgid "could not commit transaction\n" msgid "could not commit transaction\n"
msgstr "could not commit transaction\n" msgstr "could not commit transaction\n"
#: lib/libalpm/trans.c:365 #: lib/libalpm/trans.c:369
#, c-format #, c-format
msgid "could not create temp directory\n" msgid "could not create temp directory\n"
msgstr "could not create temp directory\n" msgstr "could not create temp directory\n"
#: lib/libalpm/trans.c:380 #: lib/libalpm/trans.c:384
#, c-format #, c-format
msgid "could not copy tempfile to %s (%s)\n" msgid "could not copy tempfile to %s (%s)\n"
msgstr "could not copy tempfile to %s (%s)\n" msgstr "could not copy tempfile to %s (%s)\n"
#: lib/libalpm/trans.c:411 #: lib/libalpm/trans.c:415
#, c-format #, c-format
msgid "could not remove %s\n" msgid "could not remove %s\n"
msgstr "could not remove %s\n" msgstr "could not remove %s\n"
#: lib/libalpm/trans.c:415 #: lib/libalpm/trans.c:419
#, c-format #, c-format
msgid "could not remove tmpdir %s\n" msgid "could not remove tmpdir %s\n"
msgstr "could not remove tmpdir %s\n" msgstr "could not remove tmpdir %s\n"
#: lib/libalpm/util.c:488 #: lib/libalpm/util.c:512
#, c-format #, c-format
msgid "unable to write to pipe (%s)\n" msgid "unable to write to pipe (%s)\n"
msgstr "unable to write to pipe (%s)\n" msgstr "unable to write to pipe (%s)\n"
#: lib/libalpm/util.c:547 #: lib/libalpm/util.c:571
#, c-format #, c-format
msgid "unable to read from pipe (%s)\n" msgid "unable to read from pipe (%s)\n"
msgstr "unable to read from pipe (%s)\n" msgstr "unable to read from pipe (%s)\n"
#: lib/libalpm/util.c:617 lib/libalpm/util.c:623 #: lib/libalpm/util.c:641 lib/libalpm/util.c:647
#, c-format #, c-format
msgid "could not create pipe (%s)\n" msgid "could not create pipe (%s)\n"
msgstr "could not create pipe (%s)\n" msgstr "could not create pipe (%s)\n"
#: lib/libalpm/util.c:631 #: lib/libalpm/util.c:655
#, c-format #, c-format
msgid "could not fork a new process (%s)\n" msgid "could not fork a new process (%s)\n"
msgstr "could not fork a new process (%s)\n" msgstr "could not fork a new process (%s)\n"
#: lib/libalpm/util.c:654 #: lib/libalpm/util.c:680
#, c-format #, c-format
msgid "could not change the root directory (%s)\n" msgid "could not change the root directory (%s)\n"
msgstr "could not change the root directory (%s)\n" msgstr "could not change the root directory (%s)\n"
#: lib/libalpm/util.c:666 #: lib/libalpm/util.c:700
#, c-format #, c-format
msgid "call to execv failed (%s)\n" msgid "call to execv failed (%s)\n"
msgstr "call to execv failed (%s)\n" msgstr "call to execv failed (%s)\n"
#: lib/libalpm/util.c:745 #: lib/libalpm/util.c:779
#, c-format #, c-format
msgid "call to waitpid failed (%s)\n" msgid "call to waitpid failed (%s)\n"
msgstr "call to waitpid failed (%s)\n" msgstr "call to waitpid failed (%s)\n"
#: lib/libalpm/util.c:755 #: lib/libalpm/util.c:789
#, c-format #, c-format
msgid "command failed to execute correctly\n" msgid "command failed to execute correctly\n"
msgstr "command failed to execute correctly\n" msgstr "command failed to execute correctly\n"
#: lib/libalpm/util.c:762 #: lib/libalpm/util.c:796
#, c-format #, c-format
msgid "Unknown signal" msgid "Unknown signal"
msgstr "Unknown signal" msgstr "Unknown signal"
#: lib/libalpm/util.c:764 #: lib/libalpm/util.c:798
#, c-format #, c-format
msgid "command terminated by signal %d: %s\n" msgid "command terminated by signal %d: %s\n"
msgstr "command terminated by signal %d: %s\n" msgstr "command terminated by signal %d: %s\n"
#: lib/libalpm/util.c:875 #: lib/libalpm/util.c:916
#, c-format #, c-format
msgid "no %s cache exists, creating...\n" msgid "no %s cache exists, creating...\n"
msgstr "no %s cache exists, creating...\n" msgstr "no %s cache exists, creating...\n"
#: lib/libalpm/util.c:906 #: lib/libalpm/util.c:947
#, c-format #, c-format
msgid "couldn't find or create package cache, using %s instead\n" msgid "couldn't find or create package cache, using %s instead\n"
msgstr "couldn't find or create package cache, using %s instead\n" msgstr "couldn't find or create package cache, using %s instead\n"

View file

@ -11,11 +11,11 @@
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Arch Linux Pacman package manager\n" "Project-Id-Version: Arch Linux Pacman package manager\n"
"Report-Msgid-Bugs-To: http://bugs.archlinux.org/index.php?project=3\n" "Report-Msgid-Bugs-To: https://gitlab.archlinux.org/pacman/pacman/-/issues\n"
"POT-Creation-Date: 2021-09-04 16:15+1000\n" "POT-Creation-Date: 2024-07-14 19:10+1000\n"
"PO-Revision-Date: 2021-05-20 02:25+0000\n" "PO-Revision-Date: 2010-11-29 23:17+0000\n"
"Last-Translator: Allan McRae <allan@archlinux.org>\n" "Last-Translator: Sebastien Zurfluh <sebastien.zurfluh@gmail.com>, 2017\n"
"Language-Team: Esperanto (http://www.transifex.com/toofishes/archlinux-" "Language-Team: Esperanto (http://app.transifex.com/toofishes/archlinux-"
"pacman/language/eo/)\n" "pacman/language/eo/)\n"
"Language: eo\n" "Language: eo\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
@ -43,17 +43,17 @@ msgstr "malpromociado de pakaĵo %s (%s => %s)\n"
msgid "cannot allocate disk archive object" msgid "cannot allocate disk archive object"
msgstr "ne eblas asigni diskarkivan objekton" msgstr "ne eblas asigni diskarkivan objekton"
#: lib/libalpm/add.c:143 lib/libalpm/util.c:384 #: lib/libalpm/add.c:143 lib/libalpm/util.c:408
#, c-format #, c-format
msgid "warning given when extracting %s (%s)\n" msgid "warning given when extracting %s (%s)\n"
msgstr "averto donita dum eltiri %s (%s)\n" msgstr "averto donita dum eltiri %s (%s)\n"
#: lib/libalpm/add.c:146 lib/libalpm/util.c:387 #: lib/libalpm/add.c:146 lib/libalpm/util.c:411
#, c-format #, c-format
msgid "could not extract %s (%s)\n" msgid "could not extract %s (%s)\n"
msgstr "ne eblis eltiri %s (%s)\n" msgstr "ne eblis eltiri %s (%s)\n"
#: lib/libalpm/add.c:159 lib/libalpm/dload.c:709 lib/libalpm/remove.c:534 #: lib/libalpm/add.c:159 lib/libalpm/dload.c:707 lib/libalpm/remove.c:550
#, c-format #, c-format
msgid "could not rename %s to %s (%s)\n" msgid "could not rename %s to %s (%s)\n"
msgstr "ne eblis renomi %s al %s (%s)\n" msgstr "ne eblis renomi %s al %s (%s)\n"
@ -98,18 +98,18 @@ msgstr "eltiri: ne superskribas dosierujon per dosiero %s\n"
msgid "unable to extract %s.pacnew: path too long" msgid "unable to extract %s.pacnew: path too long"
msgstr "ne eblas eltiri %s.pacnew: la dosierindiko tro longa" msgstr "ne eblas eltiri %s.pacnew: la dosierindiko tro longa"
#: lib/libalpm/add.c:510 lib/libalpm/util.c:335 lib/libalpm/util.c:600 #: lib/libalpm/add.c:510 lib/libalpm/util.c:354 lib/libalpm/util.c:624
#, c-format #, c-format
msgid "could not get current working directory\n" msgid "could not get current working directory\n"
msgstr "ne eblis akiri kurantan dosierujon\n" msgstr "ne eblis akiri kurantan dosierujon\n"
#: lib/libalpm/add.c:515 lib/libalpm/util.c:340 lib/libalpm/util.c:605 #: lib/libalpm/add.c:515 lib/libalpm/util.c:359 lib/libalpm/util.c:629
#: lib/libalpm/util.c:658 #: lib/libalpm/util.c:684
#, c-format #, c-format
msgid "could not change directory to %s (%s)\n" msgid "could not change directory to %s (%s)\n"
msgstr "ne eblis ŝanĝi dosierujon al %s (%s)\n" msgstr "ne eblis ŝanĝi dosierujon al %s (%s)\n"
#: lib/libalpm/add.c:571 lib/libalpm/util.c:405 lib/libalpm/util.c:774 #: lib/libalpm/add.c:571 lib/libalpm/util.c:429 lib/libalpm/util.c:808
#, c-format #, c-format
msgid "could not restore working directory (%s)\n" msgid "could not restore working directory (%s)\n"
msgstr "ne eblis restaŭri kurantan dosierujon (%s)\n" msgstr "ne eblis restaŭri kurantan dosierujon (%s)\n"
@ -134,101 +134,116 @@ msgstr "ne eblis ĝisdatigi datumbazan enigon %s-%s\n"
msgid "could not add entry '%s' in cache\n" msgid "could not add entry '%s' in cache\n"
msgstr "ne eblis aldoni enigon '%s' en kaŝmemoro\n" msgstr "ne eblis aldoni enigon '%s' en kaŝmemoro\n"
#: lib/libalpm/be_local.c:266 #: lib/libalpm/be_local.c:271
#, c-format #, c-format
msgid "error while reading file %s: %s\n" msgid "error while reading file %s: %s\n"
msgstr "eraro dum legi dosieron %s: %s\n" msgstr "eraro dum legi dosieron %s: %s\n"
#: lib/libalpm/be_local.c:376 #: lib/libalpm/be_local.c:382
#, c-format #, c-format
msgid "removing invalid database: %s\n" msgid "removing invalid database: %s\n"
msgstr "forigado de nevalida datumbazo: %s\n" msgstr "forigado de nevalida datumbazo: %s\n"
#: lib/libalpm/be_local.c:427 lib/libalpm/be_local.c:909 #: lib/libalpm/be_local.c:433 lib/libalpm/be_local.c:947
#, c-format #, c-format
msgid "could not create directory %s: %s\n" msgid "could not create directory %s: %s\n"
msgstr "ne eblis krei dosierujon %s: %s\n" msgstr "ne eblis krei dosierujon %s: %s\n"
#: lib/libalpm/be_local.c:602 lib/libalpm/be_sync.c:322 #: lib/libalpm/be_local.c:608 lib/libalpm/be_sync.c:339
#, c-format #, c-format
msgid "invalid name for database entry '%s'\n" msgid "invalid name for database entry '%s'\n"
msgstr "nevalida nomo por datumbaz-enigo '%s'\n" msgstr "nevalida nomo por datumbaz-enigo '%s'\n"
#: lib/libalpm/be_local.c:610 #: lib/libalpm/be_local.c:616
#, c-format #, c-format
msgid "duplicated database entry '%s'\n" msgid "duplicated database entry '%s'\n"
msgstr "duobligita datumbaz-enigo '%s'\n" msgstr "duobligita datumbaz-enigo '%s'\n"
#: lib/libalpm/be_local.c:622 #: lib/libalpm/be_local.c:628
#, c-format #, c-format
msgid "corrupted database entry '%s'\n" msgid "corrupted database entry '%s'\n"
msgstr "difektita datumbaz-enigo '%s'\n" msgstr "difektita datumbaz-enigo '%s'\n"
#: lib/libalpm/be_local.c:722 lib/libalpm/be_local.c:818 #: lib/libalpm/be_local.c:663
#: lib/libalpm/be_local.c:958 lib/libalpm/be_local.c:1055 #, c-format
#: lib/libalpm/diskspace.c:131 lib/libalpm/dload.c:823 lib/libalpm/util.c:254 msgid "unknown install reason for package %s: %s\n"
#: lib/libalpm/util.c:270 msgstr ""
#: lib/libalpm/be_local.c:743 lib/libalpm/be_local.c:856
#: lib/libalpm/be_local.c:996 lib/libalpm/be_local.c:1102
#: lib/libalpm/diskspace.c:135 lib/libalpm/dload.c:792 lib/libalpm/util.c:273
#: lib/libalpm/util.c:289
#, c-format #, c-format
msgid "could not open file %s: %s\n" msgid "could not open file %s: %s\n"
msgstr "ne eblis malfermi dosieron %s: %s\n" msgstr "ne eblis malfermi dosieron %s: %s\n"
#: lib/libalpm/be_local.c:738 lib/libalpm/be_sync.c:582 #: lib/libalpm/be_local.c:759 lib/libalpm/be_sync.c:612
#, c-format #, c-format
msgid "%s database is inconsistent: name mismatch on package %s\n" msgid "%s database is inconsistent: name mismatch on package %s\n"
msgstr "datumbazo %s estas nekohera: noma miskongruo de pakaĵo %s\n" msgstr "datumbazo %s estas nekohera: noma miskongruo de pakaĵo %s\n"
#: lib/libalpm/be_local.c:744 lib/libalpm/be_sync.c:588 #: lib/libalpm/be_local.c:765 lib/libalpm/be_sync.c:618
#, c-format #, c-format
msgid "%s database is inconsistent: version mismatch on package %s\n" msgid "%s database is inconsistent: version mismatch on package %s\n"
msgstr "datumbazo %s estas nekohera: versia miskongruo de pakaĵo %s\n" msgstr "datumbazo %s estas nekohera: versia miskongruo de pakaĵo %s\n"
#: lib/libalpm/be_local.c:785 #: lib/libalpm/be_local.c:806
#, c-format #, c-format
msgid "unknown validation type for package %s: %s\n" msgid "unknown validation type for package %s: %s\n"
msgstr "nekonata kontrola speco por pakaĵo %s: %s\n" msgstr "nekonata kontrola speco por pakaĵo %s: %s\n"
#: lib/libalpm/be_package.c:478 lib/libalpm/be_package.c:631 #: lib/libalpm/be_local.c:841
#: lib/libalpm/be_package.c:643 #, c-format
msgid "%s: unknown key '%s' in local database\n"
msgstr ""
#: lib/libalpm/be_package.c:255
#, c-format
msgid "%s: unknown key '%s' in package description\n"
msgstr ""
#: lib/libalpm/be_package.c:482 lib/libalpm/be_package.c:635
#: lib/libalpm/be_package.c:647
#, c-format #, c-format
msgid "error while reading package %s: %s\n" msgid "error while reading package %s: %s\n"
msgstr "eraro dum legi pakaĵon %s: %s\n" msgstr "eraro dum legi pakaĵon %s: %s\n"
#: lib/libalpm/be_package.c:491 lib/libalpm/be_package.c:514 #: lib/libalpm/be_package.c:495 lib/libalpm/be_package.c:518
#, c-format #, c-format
msgid "error while reading mtree of package %s: %s\n" msgid "error while reading mtree of package %s: %s\n"
msgstr "eraro dum legi mtree de pakaĵo %s: %s\n" msgstr "eraro dum legi mtree de pakaĵo %s: %s\n"
#: lib/libalpm/be_package.c:597 #: lib/libalpm/be_package.c:601
#, c-format #, c-format
msgid "could not parse package description file in %s\n" msgid "could not parse package description file in %s\n"
msgstr "ne eblis analizi pakaĵpriskriban dosieron en %s\n" msgstr "ne eblis analizi pakaĵpriskriban dosieron en %s\n"
#: lib/libalpm/be_package.c:602 #: lib/libalpm/be_package.c:606
#, c-format #, c-format
msgid "missing package name in %s\n" msgid "missing package name in %s\n"
msgstr "mankanta pakaĵa nomo en %s\n" msgstr "mankanta pakaĵa nomo en %s\n"
#: lib/libalpm/be_package.c:606 #: lib/libalpm/be_package.c:610
#, c-format #, c-format
msgid "missing package version in %s\n" msgid "missing package version in %s\n"
msgstr "mankanta pakaĵa versio en %s\n" msgstr "mankanta pakaĵa versio en %s\n"
#: lib/libalpm/be_package.c:610 #: lib/libalpm/be_package.c:614
#, c-format #, c-format
msgid "invalid package version in %s\n" msgid "invalid package version in %s\n"
msgstr "nevalida pakaĵa versio en %s\n" msgstr "nevalida pakaĵa versio en %s\n"
#: lib/libalpm/be_package.c:649 #: lib/libalpm/be_package.c:653
#, c-format #, c-format
msgid "missing package metadata in %s\n" msgid "missing package metadata in %s\n"
msgstr "mankantaj pakaĵaj metadatumoj en %s\n" msgstr "mankantaj pakaĵaj metadatumoj en %s\n"
#: lib/libalpm/be_package.c:741 #: lib/libalpm/be_package.c:745
#, c-format #, c-format
msgid "failed to read signature file: %s\n" msgid "failed to read signature file: %s\n"
msgstr "malsukcesis legi subskriban dosieron: %s\n" msgstr "malsukcesis legi subskriban dosieron: %s\n"
#: lib/libalpm/be_package.c:770 lib/libalpm/sync.c:953 #: lib/libalpm/be_package.c:768 lib/libalpm/sync.c:976
#, c-format #, c-format
msgid "required key missing from keyring\n" msgid "required key missing from keyring\n"
msgstr "bezonata ŝlosilo mankas de ŝlosilingo\n" msgstr "bezonata ŝlosilo mankas de ŝlosilingo\n"
@ -238,33 +253,38 @@ msgstr "bezonata ŝlosilo mankas de ŝlosilingo\n"
msgid "removing invalid file: %s\n" msgid "removing invalid file: %s\n"
msgstr "forigado de nevalida dosiero: %s\n" msgstr "forigado de nevalida dosiero: %s\n"
#: lib/libalpm/be_sync.c:449 #: lib/libalpm/be_sync.c:471
#, c-format #, c-format
msgid "could not parse package description file '%s' from db '%s'\n" msgid "could not parse package description file '%s' from db '%s'\n"
msgstr "ne eblis analizi pakaĵpriskriban dosieron '%s' el datumbazo '%s'\n" msgstr "ne eblis analizi pakaĵpriskriban dosieron '%s' el datumbazo '%s'\n"
#: lib/libalpm/be_sync.c:456 #: lib/libalpm/be_sync.c:486
#, c-format #, c-format
msgid "could not read db '%s' (%s)\n" msgid "could not read db '%s' (%s)\n"
msgstr "ne povis legi datumbazon '%s' (%s)\n" msgstr "ne povis legi datumbazon '%s' (%s)\n"
#: lib/libalpm/be_sync.c:489 lib/libalpm/be_sync.c:494 #: lib/libalpm/be_sync.c:519 lib/libalpm/be_sync.c:524
#, c-format #, c-format
msgid "%s database is inconsistent: filename of package %s is illegal\n" msgid "%s database is inconsistent: filename of package %s is illegal\n"
msgstr "" msgstr ""
"datumbazo %s estas nekohera: dosiernomo de pakaĵo %s estas malpermesita\n" "datumbazo %s estas nekohera: dosiernomo de pakaĵo %s estas malpermesita\n"
#: lib/libalpm/be_sync.c:499 #: lib/libalpm/be_sync.c:529
#, c-format #, c-format
msgid "%s database is inconsistent: filename of package %s is too long\n" msgid "%s database is inconsistent: filename of package %s is too long\n"
msgstr "datumbazo %s estas nekohera: dosiernomo de pakaĵo %s estas tro longa\n" msgstr "datumbazo %s estas nekohera: dosiernomo de pakaĵo %s estas tro longa\n"
#: lib/libalpm/be_sync.c:564 #: lib/libalpm/be_sync.c:594
#, c-format #, c-format
msgid "unknown database file: %s\n" msgid "unknown database file: %s\n"
msgstr "nekonata datumbaza dosiero: %s\n" msgstr "nekonata datumbaza dosiero: %s\n"
#: lib/libalpm/db.c:344 #: lib/libalpm/be_sync.c:712
#, c-format
msgid "%s: unknown key '%s' in sync database\n"
msgstr ""
#: lib/libalpm/db.c:413
#, c-format #, c-format
msgid "database path is undefined\n" msgid "database path is undefined\n"
msgstr "datumbaza dosierindiko estas senvalora\n" msgstr "datumbaza dosierindiko estas senvalora\n"
@ -304,105 +324,120 @@ msgstr "ne eblis akiri dosiersistema informo de %s: %s\n"
msgid "could not open file: %s: %s\n" msgid "could not open file: %s: %s\n"
msgstr "ne eblis malfermi dosieron: %s: %s\n" msgstr "ne eblis malfermi dosieron: %s: %s\n"
#: lib/libalpm/diskspace.c:146 lib/libalpm/diskspace.c:159 #: lib/libalpm/diskspace.c:154 lib/libalpm/diskspace.c:167
#, c-format #, c-format
msgid "could not get filesystem information\n" msgid "could not get filesystem information\n"
msgstr "ne eblis akiri dosiersistemajn informojn\n" msgstr "ne eblis akiri dosiersistemajn informojn\n"
#: lib/libalpm/diskspace.c:242 #: lib/libalpm/diskspace.c:254
#, c-format #, c-format
msgid "could not get file information for %s\n" msgid "could not get file information for %s\n"
msgstr "ne eblis akiri dosierinformon de %s\n" msgstr "ne eblis akiri dosierinformon de %s\n"
#: lib/libalpm/diskspace.c:256 lib/libalpm/diskspace.c:315 #: lib/libalpm/diskspace.c:268 lib/libalpm/diskspace.c:327
#, c-format #, c-format
msgid "could not determine mount point for file %s\n" msgid "could not determine mount point for file %s\n"
msgstr "ne eblis determini surmetingon de dosiero %s\n" msgstr "ne eblis determini surmetingon de dosiero %s\n"
#: lib/libalpm/diskspace.c:354 #: lib/libalpm/diskspace.c:366
#, c-format #, c-format
msgid "Partition %s too full: %jd blocks needed, %ju blocks free\n" msgid "Partition %s too full: %jd blocks needed, %ju blocks free\n"
msgstr "Subdisko %s tro plena: %jd blokoj bezonataj, %ju blokoj liberaj\n" msgstr "Subdisko %s tro plena: %jd blokoj bezonataj, %ju blokoj liberaj\n"
#: lib/libalpm/diskspace.c:379 lib/libalpm/diskspace.c:433 #: lib/libalpm/diskspace.c:391 lib/libalpm/diskspace.c:445
#, c-format #, c-format
msgid "could not determine filesystem mount points\n" msgid "could not determine filesystem mount points\n"
msgstr "ne eblis determini dosiersistemajn surmetingojn\n" msgstr "ne eblis determini dosiersistemajn surmetingojn\n"
#: lib/libalpm/diskspace.c:385 #: lib/libalpm/diskspace.c:397
#, c-format #, c-format
msgid "could not determine cachedir mount point %s\n" msgid "could not determine cachedir mount point %s\n"
msgstr "ne eblis determini kaŝmemoro-dosierujan surmetingon %s\n" msgstr "ne eblis determini kaŝmemoro-dosierujan surmetingon %s\n"
#: lib/libalpm/diskspace.c:438 #: lib/libalpm/diskspace.c:450
#, c-format #, c-format
msgid "could not determine root mount point %s\n" msgid "could not determine root mount point %s\n"
msgstr "ne eblis determini radikan surmetingon %s\n" msgstr "ne eblis determini radikan surmetingon %s\n"
#: lib/libalpm/diskspace.c:486 #: lib/libalpm/diskspace.c:498
#, c-format #, c-format
msgid "Partition %s is mounted read only\n" msgid "Partition %s is mounted read only\n"
msgstr "Subdisko %s estas surmetita nurlege\n" msgstr "Subdisko %s estas surmetita nurlege\n"
#: lib/libalpm/dload.c:116 #: lib/libalpm/dload.c:107
#, c-format
msgid "failed to create temporary file for download\n"
msgstr "malsukcesis krei provizoran dosieron por elŝuto\n"
#: lib/libalpm/dload.c:198
#, c-format #, c-format
msgid "" msgid ""
"too many errors from %s, skipping for the remainder of this transaction\n" "too many errors from %s, skipping for the remainder of this transaction\n"
msgstr "" msgstr ""
#: lib/libalpm/dload.c:220 #: lib/libalpm/dload.c:215
#, c-format
msgid "fatal error from %s, skipping for the remainder of this transaction\n"
msgstr ""
#: lib/libalpm/dload.c:310
#, c-format #, c-format
msgid "disk" msgid "disk"
msgstr "disko" msgstr "disko"
#: lib/libalpm/dload.c:392 #: lib/libalpm/dload.c:532 lib/libalpm/dload.c:570 lib/libalpm/dload.c:583
#, c-format
msgid "failed to create temporary file for download\n"
msgstr "malsukcesis krei provizoran dosieron por elŝuto\n"
#: lib/libalpm/dload.c:509 lib/libalpm/dload.c:547 lib/libalpm/dload.c:561
#, c-format #, c-format
msgid "failed retrieving file '%s' from %s : %s\n" msgid "failed retrieving file '%s' from %s : %s\n"
msgstr "malsukcesis ekstrakti dosieron '%s' de %s: %s\n" msgstr "malsukcesis ekstrakti dosieron '%s' de %s: %s\n"
#: lib/libalpm/dload.c:539 #: lib/libalpm/dload.c:562
#, c-format #, c-format
msgid "failed retrieving file '%s' from %s : expected download size exceeded\n" msgid "failed retrieving file '%s' from %s : expected download size exceeded\n"
msgstr "" msgstr ""
"malsukcesis ekstrakti dosieron '%s' de %s : atendita elŝuta grando " "malsukcesis ekstrakti dosieron '%s' de %s : atendita elŝuta grando "
"transpaŝita\n" "transpaŝita\n"
#: lib/libalpm/dload.c:687 #: lib/libalpm/dload.c:685
#, c-format #, c-format
msgid "%s appears to be truncated: %jd/%jd bytes\n" msgid "%s appears to be truncated: %jd/%jd bytes\n"
msgstr "%s aspektas trunkite: %jd/%jd bitokoj\n" msgstr "%s aspektas trunkite: %jd/%jd bitokoj\n"
#: lib/libalpm/dload.c:787 #: lib/libalpm/dload.c:776
#, c-format #, c-format
msgid "url '%s' is invalid\n" msgid "url '%s' is invalid\n"
msgstr "url '%s' estas nevalida\n" msgstr "url '%s' estas nevalida\n"
#: lib/libalpm/dload.c:893 #: lib/libalpm/dload.c:864
#, c-format #, c-format
msgid "failed to setup a download payload for %s\n" msgid "failed to setup a download payload for %s\n"
msgstr "" msgstr ""
#: lib/libalpm/dload.c:905 #: lib/libalpm/dload.c:876
#, c-format #, c-format
msgid "curl returned error %d from transfer\n" msgid "curl returned error %d from transfer\n"
msgstr "" msgstr ""
#: lib/libalpm/dload.c:929 #: lib/libalpm/dload.c:900
#, c-format #, c-format
msgid "curl transfer error: %d\n" msgid "curl transfer error: %d\n"
msgstr "" msgstr ""
#: lib/libalpm/dload.c:1055 lib/libalpm/sync.c:840 #: lib/libalpm/dload.c:963
#, c-format
msgid "could not chdir to download directory %s\n"
msgstr "ne eblis chdir al elŝuteja dosierujo %s\n"
#: lib/libalpm/dload.c:968
#, c-format
msgid "switching to sandbox user '%s' failed!\n"
msgstr ""
#: lib/libalpm/dload.c:1361 lib/libalpm/sync.c:861
#, c-format #, c-format
msgid "failed to retrieve some files\n" msgid "failed to retrieve some files\n"
msgstr "malsukcesis ricevi kelkajn dosierojn\n" msgstr "malsukcesis ricevi kelkajn dosierojn\n"
#: lib/libalpm/dload.c:1078 #: lib/libalpm/dload.c:1384
#, c-format #, c-format
msgid "download completed successfully but no file in the cache\n" msgid "download completed successfully but no file in the cache\n"
msgstr "" msgstr ""
@ -677,12 +712,12 @@ msgstr "programtradukita sen subskriba subteno"
msgid "unexpected error" msgid "unexpected error"
msgstr "neatendita eraro" msgstr "neatendita eraro"
#: lib/libalpm/handle.c:142 #: lib/libalpm/handle.c:165
#, c-format #, c-format
msgid "lock file missing %s\n" msgid "lock file missing %s\n"
msgstr "mankas al ŝlosa dosiero %s\n" msgstr "mankas al ŝlosa dosiero %s\n"
#: lib/libalpm/handle.c:148 #: lib/libalpm/handle.c:171
#, c-format #, c-format
msgid "could not remove lock file %s\n" msgid "could not remove lock file %s\n"
msgstr "ne eblis forigi la ŝlosdosieron %s\n" msgstr "ne eblis forigi la ŝlosdosieron %s\n"
@ -764,7 +799,7 @@ msgstr "ne eblis malfermi dosierujon: %s: %s\n"
msgid "could not open file: %s%s: %s\n" msgid "could not open file: %s%s: %s\n"
msgstr "ne povis malfermi dosieron: %s%s: %s\n" msgstr "ne povis malfermi dosieron: %s%s: %s\n"
#: lib/libalpm/hook.c:595 lib/libalpm/util.c:260 #: lib/libalpm/hook.c:595 lib/libalpm/util.c:279
#, c-format #, c-format
msgid "could not stat file %s: %s\n" msgid "could not stat file %s: %s\n"
msgstr "ne eblis statikigi dosieron %s: %s\n" msgstr "ne eblis statikigi dosieron %s: %s\n"
@ -774,11 +809,43 @@ msgstr "ne eblis statikigi dosieron %s: %s\n"
msgid "could not read directory: %s: %s\n" msgid "could not read directory: %s: %s\n"
msgstr "ne povis legi dosierujon: %s: %s\n" msgstr "ne povis legi dosierujon: %s: %s\n"
#: lib/libalpm/package.c:598 #: lib/libalpm/package.c:614
#, c-format #, c-format
msgid "could not fully load metadata for package %s-%s\n" msgid "could not fully load metadata for package %s-%s\n"
msgstr "ne eblis tute ŝarĝi la metadatumojn por la pakaĵo %s-%s\n" msgstr "ne eblis tute ŝarĝi la metadatumojn por la pakaĵo %s-%s\n"
#: lib/libalpm/package.c:869
#, c-format
msgid "invalid package metadata (name or version missing)"
msgstr ""
#: lib/libalpm/package.c:874
#, c-format
msgid ""
"invalid metadata for package %s-%s (package name cannot start with '.' or "
"'-')\n"
msgstr ""
#: lib/libalpm/package.c:878
#, c-format
msgid ""
"invalid metadata for package %s-%s (package name contains invalid "
"characters)\n"
msgstr ""
#: lib/libalpm/package.c:885 lib/libalpm/package.c:889
#, c-format
msgid ""
"invalid metadata for package %s-%s (package version contains invalid "
"characters)\n"
msgstr ""
#: lib/libalpm/package.c:895
#, c-format
msgid ""
"invalid metadata for package %s-%s (package name and version too long)\n"
msgstr ""
#: lib/libalpm/remove.c:111 #: lib/libalpm/remove.c:111
#, c-format #, c-format
msgid "could not find %s in database -- skipping\n" msgid "could not find %s in database -- skipping\n"
@ -799,17 +866,17 @@ msgstr "ne povas forigi la dosieron '%s': '%s'\n"
msgid "could not backup %s due to PATH_MAX overflow\n" msgid "could not backup %s due to PATH_MAX overflow\n"
msgstr "ne povis restaŭrkopii %s pro PATH_MAX-troo\n" msgstr "ne povis restaŭrkopii %s pro PATH_MAX-troo\n"
#: lib/libalpm/remove.c:554 #: lib/libalpm/remove.c:570
#, c-format #, c-format
msgid "cannot remove %s (%s)\n" msgid "cannot remove %s (%s)\n"
msgstr "ne eblas forigi %s (%s)\n" msgstr "ne eblas forigi %s (%s)\n"
#: lib/libalpm/remove.c:727 #: lib/libalpm/remove.c:743
#, c-format #, c-format
msgid "could not remove database entry %s-%s\n" msgid "could not remove database entry %s-%s\n"
msgstr "ne povis forigi la datumbaz-enigon %s-%s\n" msgstr "ne povis forigi la datumbaz-enigon %s-%s\n"
#: lib/libalpm/remove.c:732 #: lib/libalpm/remove.c:748
#, c-format #, c-format
msgid "could not remove entry '%s' from cache\n" msgid "could not remove entry '%s' from cache\n"
msgstr "ne povis forigi la enigon '%s' el la kaŝmemoro\n" msgstr "ne povis forigi la enigon '%s' el la kaŝmemoro\n"
@ -819,89 +886,89 @@ msgstr "ne povis forigi la enigon '%s' el la kaŝmemoro\n"
msgid "Public keyring not found; have you run '%s'?\n" msgid "Public keyring not found; have you run '%s'?\n"
msgstr "Publika ŝlosilingo ne trovita; ĉu vi rulis '%s'?\n" msgstr "Publika ŝlosilingo ne trovita; ĉu vi rulis '%s'?\n"
#: lib/libalpm/signing.c:199 lib/libalpm/signing.c:767 #: lib/libalpm/signing.c:199 lib/libalpm/signing.c:773
#, c-format #, c-format
msgid "GPGME error: %s\n" msgid "GPGME error: %s\n"
msgstr "GPGME-eraro: %s\n" msgstr "GPGME-eraro: %s\n"
#: lib/libalpm/signing.c:274 #: lib/libalpm/signing.c:275
#, c-format #, c-format
msgid "looking up key %s using WKD\n" msgid "looking up key %s using WKD\n"
msgstr "elserĉado de la ŝlosilo %s per WKD\n" msgstr "elserĉado de la ŝlosilo %s per WKD\n"
#: lib/libalpm/signing.c:283 #: lib/libalpm/signing.c:289
#, c-format #, c-format
msgid "gpg error: %s\n" msgid "gpg error: %s\n"
msgstr "gpg-eraro: %s\n" msgstr "gpg-eraro: %s\n"
#: lib/libalpm/signing.c:430 lib/libalpm/signing.c:503 #: lib/libalpm/signing.c:440 lib/libalpm/signing.c:513
#, c-format #, c-format
msgid "keyring is not writable\n" msgid "keyring is not writable\n"
msgstr "ŝlosilingo ne estas skribebla\n" msgstr "ŝlosilingo ne estas skribebla\n"
#: lib/libalpm/signing.c:531 #: lib/libalpm/signing.c:537
#, c-format #, c-format
msgid "key \"%s\" on keyserver\n" msgid "key \"%s\" on keyserver\n"
msgstr "la ŝlosilo \"%s\" sur ŝlosilservilo\n" msgstr "la ŝlosilo \"%s\" sur ŝlosilservilo\n"
#: lib/libalpm/signing.c:536 #: lib/libalpm/signing.c:542
#, c-format #, c-format
msgid "key \"%s\" could not be imported\n" msgid "key \"%s\" could not be imported\n"
msgstr "la ŝlosilon \"%s\" ne povis importi\n" msgstr "la ŝlosilon \"%s\" ne povis importi\n"
#: lib/libalpm/signing.c:540 #: lib/libalpm/signing.c:546
#, c-format #, c-format
msgid "key \"%s\" could not be looked up remotely\n" msgid "key \"%s\" could not be looked up remotely\n"
msgstr "la ŝlosilon \"%s\" ne povis elserĉi fore\n" msgstr "la ŝlosilon \"%s\" ne povis elserĉi fore\n"
#: lib/libalpm/signing.c:926 lib/libalpm/sync.c:1022 #: lib/libalpm/signing.c:932 lib/libalpm/sync.c:1052
#, c-format #, c-format
msgid "%s: missing required signature\n" msgid "%s: missing required signature\n"
msgstr "%s: mankanta bezonata subskribo\n" msgstr "%s: mankanta bezonata subskribo\n"
#: lib/libalpm/signing.c:941 #: lib/libalpm/signing.c:947
#, c-format #, c-format
msgid "%s: signature from \"%s\" is marginal trust\n" msgid "%s: signature from \"%s\" is marginal trust\n"
msgstr "%s: subskribo de \"%s\" estas iometa fido\n" msgstr "%s: subskribo de \"%s\" estas iometa fido\n"
#: lib/libalpm/signing.c:949 #: lib/libalpm/signing.c:955
#, c-format #, c-format
msgid "%s: signature from \"%s\" is unknown trust\n" msgid "%s: signature from \"%s\" is unknown trust\n"
msgstr "%s: subskribo de \"%s\" estas nekonata fido\n" msgstr "%s: subskribo de \"%s\" estas nekonata fido\n"
#: lib/libalpm/signing.c:956 #: lib/libalpm/signing.c:962
#, c-format #, c-format
msgid "%s: signature from \"%s\" should never be trusted\n" msgid "%s: signature from \"%s\" should never be trusted\n"
msgstr "%s: subskribon de \"%s\" neniam devas fidi\n" msgstr "%s: subskribon de \"%s\" neniam devas fidi\n"
#: lib/libalpm/signing.c:968 #: lib/libalpm/signing.c:974
#, c-format #, c-format
msgid "%s: key \"%s\" is unknown\n" msgid "%s: key \"%s\" is unknown\n"
msgstr "%s: la ŝlosilo \"%s\" estas nekonata\n" msgstr "%s: la ŝlosilo \"%s\" estas nekonata\n"
#: lib/libalpm/signing.c:977 #: lib/libalpm/signing.c:983
#, c-format #, c-format
msgid "%s: key \"%s\" is disabled\n" msgid "%s: key \"%s\" is disabled\n"
msgstr "%s: la ŝlosilon \"%s\" estas malvalidigita\n" msgstr "%s: la ŝlosilon \"%s\" estas malvalidigita\n"
#: lib/libalpm/signing.c:981 #: lib/libalpm/signing.c:987
#, c-format #, c-format
msgid "%s: signature from \"%s\" is expired\n" msgid "%s: signature from \"%s\" is expired\n"
msgstr "%s: subskribo de \"%s\" estas eksvalidiĝita\n" msgstr "%s: subskribo de \"%s\" estas eksvalidiĝita\n"
#: lib/libalpm/signing.c:985 #: lib/libalpm/signing.c:991
#, c-format #, c-format
msgid "%s: signature from \"%s\" is invalid\n" msgid "%s: signature from \"%s\" is invalid\n"
msgstr "%s: subskribo de \"%s\" estas nevalida\n" msgstr "%s: subskribo de \"%s\" estas nevalida\n"
#: lib/libalpm/signing.c:1043 lib/libalpm/signing.c:1104 #: lib/libalpm/signing.c:1049 lib/libalpm/signing.c:1110
#: lib/libalpm/signing.c:1183 #: lib/libalpm/signing.c:1189
#, c-format #, c-format
msgid "%s: signature format error\n" msgid "%s: signature format error\n"
msgstr "%s: subskribforma eraro\n" msgstr "%s: subskribforma eraro\n"
#: lib/libalpm/signing.c:1136 lib/libalpm/signing.c:1169 #: lib/libalpm/signing.c:1142 lib/libalpm/signing.c:1175
#: lib/libalpm/signing.c:1177 #: lib/libalpm/signing.c:1183
#, c-format #, c-format
msgid "%s: unsupported signature format\n" msgid "%s: unsupported signature format\n"
msgstr "%s: nesubtenata subskribformo\n" msgstr "%s: nesubtenata subskribformo\n"
@ -936,119 +1003,124 @@ msgstr "ignorado de pakaĵa anstataŭo (%s-%s => %s-%s)\n"
msgid "cannot replace %s by %s\n" msgid "cannot replace %s by %s\n"
msgstr "ne eblas anstataŭi %s por %s\n" msgstr "ne eblas anstataŭi %s por %s\n"
#: lib/libalpm/sync.c:476 #: lib/libalpm/sync.c:477
#, c-format #, c-format
msgid "packages %s and %s have the same filename: %s\n" msgid "packages %s and %s have the same filename: %s\n"
msgstr "" msgstr ""
#: lib/libalpm/sync.c:542 lib/libalpm/sync.c:612 #: lib/libalpm/sync.c:546 lib/libalpm/sync.c:618
#, c-format #, c-format
msgid "unresolvable package conflicts detected\n" msgid "unresolvable package conflicts detected\n"
msgstr "nesolveblaj pakaĵaj konfliktoj detektitaj\n" msgstr "nesolveblaj pakaĵaj konfliktoj detektitaj\n"
#: lib/libalpm/sync.c:562 #: lib/libalpm/sync.c:566
#, c-format #, c-format
msgid "removing '%s' from target list because it conflicts with '%s'\n" msgid "removing '%s-%s' from target list because it conflicts with '%s-%s'\n"
msgstr "forigado de '%s' el celolisto ĉar ĝi konfliktas kun '%s'\n" msgstr ""
#: lib/libalpm/sync.c:1036 #: lib/libalpm/sync.c:1020 lib/libalpm/sync.c:1187
#, c-format
msgid "%s: could not find package in cache\n"
msgstr ""
#: lib/libalpm/sync.c:1066
#, c-format #, c-format
msgid "failed to read file %s: %s\n" msgid "failed to read file %s: %s\n"
msgstr "malsukcesis legi la dosieron %s: %s\n" msgstr "malsukcesis legi la dosieron %s: %s\n"
#: lib/libalpm/sync.c:1223 #: lib/libalpm/sync.c:1324
#, c-format #, c-format
msgid "not enough free disk space\n" msgid "not enough free disk space\n"
msgstr "ne estas sufiĉe granda malokupata diskspaco\n" msgstr "ne estas sufiĉe granda malokupata diskspaco\n"
#: lib/libalpm/sync.c:1245 #: lib/libalpm/sync.c:1346
#, c-format #, c-format
msgid "could not commit removal transaction\n" msgid "could not commit removal transaction\n"
msgstr "" msgstr ""
"malsukcesis enmeti forigan transakcion\n" "malsukcesis enmeti forigan transakcion\n"
"\n" "\n"
#: lib/libalpm/sync.c:1253 #: lib/libalpm/sync.c:1354
#, c-format #, c-format
msgid "could not commit transaction\n" msgid "could not commit transaction\n"
msgstr "ne eblis enmeti transakcion\n" msgstr "ne eblis enmeti transakcion\n"
#: lib/libalpm/trans.c:365 #: lib/libalpm/trans.c:369
#, c-format #, c-format
msgid "could not create temp directory\n" msgid "could not create temp directory\n"
msgstr "ne eblis krei provizoran dosierujon\n" msgstr "ne eblis krei provizoran dosierujon\n"
#: lib/libalpm/trans.c:380 #: lib/libalpm/trans.c:384
#, c-format #, c-format
msgid "could not copy tempfile to %s (%s)\n" msgid "could not copy tempfile to %s (%s)\n"
msgstr "ne eblis kopii provizordosieron al %s (%s)\n" msgstr "ne eblis kopii provizordosieron al %s (%s)\n"
#: lib/libalpm/trans.c:411 #: lib/libalpm/trans.c:415
#, c-format #, c-format
msgid "could not remove %s\n" msgid "could not remove %s\n"
msgstr "ne eblis forigi %s\n" msgstr "ne eblis forigi %s\n"
#: lib/libalpm/trans.c:415 #: lib/libalpm/trans.c:419
#, c-format #, c-format
msgid "could not remove tmpdir %s\n" msgid "could not remove tmpdir %s\n"
msgstr "ne povis forigi la provizoran dosierujon %s\n" msgstr "ne povis forigi la provizoran dosierujon %s\n"
#: lib/libalpm/util.c:488 #: lib/libalpm/util.c:512
#, c-format #, c-format
msgid "unable to write to pipe (%s)\n" msgid "unable to write to pipe (%s)\n"
msgstr "ne eblas skribi al dukto (%s)\n" msgstr "ne eblas skribi al dukto (%s)\n"
#: lib/libalpm/util.c:547 #: lib/libalpm/util.c:571
#, c-format #, c-format
msgid "unable to read from pipe (%s)\n" msgid "unable to read from pipe (%s)\n"
msgstr "ne eblas legi el dukto (%s)\n" msgstr "ne eblas legi el dukto (%s)\n"
#: lib/libalpm/util.c:617 lib/libalpm/util.c:623 #: lib/libalpm/util.c:641 lib/libalpm/util.c:647
#, c-format #, c-format
msgid "could not create pipe (%s)\n" msgid "could not create pipe (%s)\n"
msgstr "ne eblis krei dukton (%s)\n" msgstr "ne eblis krei dukton (%s)\n"
#: lib/libalpm/util.c:631 #: lib/libalpm/util.c:655
#, c-format #, c-format
msgid "could not fork a new process (%s)\n" msgid "could not fork a new process (%s)\n"
msgstr "ne eblis forki novan procezon (%s)\n" msgstr "ne eblis forki novan procezon (%s)\n"
#: lib/libalpm/util.c:654 #: lib/libalpm/util.c:680
#, c-format #, c-format
msgid "could not change the root directory (%s)\n" msgid "could not change the root directory (%s)\n"
msgstr "ne eblis ŝanĝi la radikan dosierujon (%s)\n" msgstr "ne eblis ŝanĝi la radikan dosierujon (%s)\n"
#: lib/libalpm/util.c:666 #: lib/libalpm/util.c:700
#, c-format #, c-format
msgid "call to execv failed (%s)\n" msgid "call to execv failed (%s)\n"
msgstr "alvoko al execv fiaskis (%s)\n" msgstr "alvoko al execv fiaskis (%s)\n"
#: lib/libalpm/util.c:745 #: lib/libalpm/util.c:779
#, c-format #, c-format
msgid "call to waitpid failed (%s)\n" msgid "call to waitpid failed (%s)\n"
msgstr "alvoko al waitpid fiaskis (%s)\n" msgstr "alvoko al waitpid fiaskis (%s)\n"
#: lib/libalpm/util.c:755 #: lib/libalpm/util.c:789
#, c-format #, c-format
msgid "command failed to execute correctly\n" msgid "command failed to execute correctly\n"
msgstr "la komando malsukcese rulis ĝuste\n" msgstr "la komando malsukcese rulis ĝuste\n"
#: lib/libalpm/util.c:762 #: lib/libalpm/util.c:796
#, c-format #, c-format
msgid "Unknown signal" msgid "Unknown signal"
msgstr "Nekonata signalo" msgstr "Nekonata signalo"
#: lib/libalpm/util.c:764 #: lib/libalpm/util.c:798
#, c-format #, c-format
msgid "command terminated by signal %d: %s\n" msgid "command terminated by signal %d: %s\n"
msgstr "komando ĉesigita de signalo %d: %s\n" msgstr "komando ĉesigita de signalo %d: %s\n"
#: lib/libalpm/util.c:875 #: lib/libalpm/util.c:916
#, c-format #, c-format
msgid "no %s cache exists, creating...\n" msgid "no %s cache exists, creating...\n"
msgstr "nenia kaŝmemoro de %s ekzistas, kreado...\n" msgstr "nenia kaŝmemoro de %s ekzistas, kreado...\n"
#: lib/libalpm/util.c:906 #: lib/libalpm/util.c:947
#, c-format #, c-format
msgid "couldn't find or create package cache, using %s instead\n" msgid "couldn't find or create package cache, using %s instead\n"
msgstr "ne eblis trovi aŭ krei pakaĵan kaŝmemoron, uzante %s anstataŭ\n" msgstr "ne eblis trovi aŭ krei pakaĵan kaŝmemoron, uzante %s anstataŭ\n"

View file

@ -11,28 +11,30 @@
# Leonel <leonelmalon@gmail.com>, 2013 # Leonel <leonelmalon@gmail.com>, 2013
# Leonel <leonelmalon@gmail.com>, 2013 # Leonel <leonelmalon@gmail.com>, 2013
# neiko <neikokz+tsfx@gmail.com>, 2011 # neiko <neikokz+tsfx@gmail.com>, 2011
# prflr88 <prflr88@gmail.com>, 2017 # Pablo Lezaeta Reyes <prflr88@gmail.com>, 2017
# prflr88 <prflr88@gmail.com>, 2013-2016 # Pablo Lezaeta Reyes <prflr88@gmail.com>, 2017
# prflr88 <prflr88@gmail.com>, 2017 # Pablo Lezaeta Reyes <prflr88@gmail.com>, 2013-2016
# Pablo Lezaeta Reyes <prflr88@gmail.com>, 2017
# Pedro Román <roizheim@gmail.com>, 2013-2014,2016-2019 # Pedro Román <roizheim@gmail.com>, 2013-2014,2016-2019
# picodotdev <pico.dev@gmail.com>, 2016,2019,2021 # picodotdev <pico.dev@gmail.com>, 2016,2019,2021-2023
# prflr88 <prflr88@gmail.com>, 2017 # Pablo Lezaeta Reyes <prflr88@gmail.com>, 2017
# Swyter <Swyterzone@gmail.com>, 2015,2017-2018,2021 # Swyter <Swyterzone@gmail.com>, 2015,2017-2018,2021,2024
# Swyter <Swyterzone@gmail.com>, 2021 # Swyter <Swyterzone@gmail.com>, 2021
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Arch Linux Pacman package manager\n" "Project-Id-Version: Arch Linux Pacman package manager\n"
"Report-Msgid-Bugs-To: http://bugs.archlinux.org/index.php?project=3\n" "Report-Msgid-Bugs-To: https://gitlab.archlinux.org/pacman/pacman/-/issues\n"
"POT-Creation-Date: 2021-09-04 16:15+1000\n" "POT-Creation-Date: 2024-07-14 19:10+1000\n"
"PO-Revision-Date: 2021-05-20 04:57+0000\n" "PO-Revision-Date: 2010-11-29 23:17+0000\n"
"Last-Translator: Swyter <Swyterzone@gmail.com>\n" "Last-Translator: Swyter <Swyterzone@gmail.com>, 2015,2017-2018,2021,2024\n"
"Language-Team: Spanish (http://www.transifex.com/toofishes/archlinux-pacman/" "Language-Team: Spanish (http://app.transifex.com/toofishes/archlinux-pacman/"
"language/es/)\n" "language/es/)\n"
"Language: es\n" "Language: es\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n" "Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? "
"1 : 2;\n"
#: lib/libalpm/add.c:90 lib/libalpm/sync.c:279 #: lib/libalpm/add.c:90 lib/libalpm/sync.c:279
#, c-format #, c-format
@ -55,17 +57,17 @@ msgid "cannot allocate disk archive object"
msgstr "" msgstr ""
"memoria insuficiente en el sistema para lograr los objetivos del archivo" "memoria insuficiente en el sistema para lograr los objetivos del archivo"
#: lib/libalpm/add.c:143 lib/libalpm/util.c:384 #: lib/libalpm/add.c:143 lib/libalpm/util.c:408
#, c-format #, c-format
msgid "warning given when extracting %s (%s)\n" msgid "warning given when extracting %s (%s)\n"
msgstr "se han advertido errores mientras se extraía %s (%s)\n" msgstr "se han advertido errores mientras se extraía %s (%s)\n"
#: lib/libalpm/add.c:146 lib/libalpm/util.c:387 #: lib/libalpm/add.c:146 lib/libalpm/util.c:411
#, c-format #, c-format
msgid "could not extract %s (%s)\n" msgid "could not extract %s (%s)\n"
msgstr "no se pudo extraer %s (%s)\n" msgstr "no se pudo extraer %s (%s)\n"
#: lib/libalpm/add.c:159 lib/libalpm/dload.c:709 lib/libalpm/remove.c:534 #: lib/libalpm/add.c:159 lib/libalpm/dload.c:707 lib/libalpm/remove.c:550
#, c-format #, c-format
msgid "could not rename %s to %s (%s)\n" msgid "could not rename %s to %s (%s)\n"
msgstr "no se pudo renombrar %s a %s (%s)\n" msgstr "no se pudo renombrar %s a %s (%s)\n"
@ -112,18 +114,18 @@ msgstr ""
msgid "unable to extract %s.pacnew: path too long" msgid "unable to extract %s.pacnew: path too long"
msgstr "no se pudo extraer %s.pacnew: ruta demasiado larga" msgstr "no se pudo extraer %s.pacnew: ruta demasiado larga"
#: lib/libalpm/add.c:510 lib/libalpm/util.c:335 lib/libalpm/util.c:600 #: lib/libalpm/add.c:510 lib/libalpm/util.c:354 lib/libalpm/util.c:624
#, c-format #, c-format
msgid "could not get current working directory\n" msgid "could not get current working directory\n"
msgstr "no se pudo determinar el directorio de trabajo actual\n" msgstr "no se pudo determinar el directorio de trabajo actual\n"
#: lib/libalpm/add.c:515 lib/libalpm/util.c:340 lib/libalpm/util.c:605 #: lib/libalpm/add.c:515 lib/libalpm/util.c:359 lib/libalpm/util.c:629
#: lib/libalpm/util.c:658 #: lib/libalpm/util.c:684
#, c-format #, c-format
msgid "could not change directory to %s (%s)\n" msgid "could not change directory to %s (%s)\n"
msgstr "no se pudo cambiar el directorio a %s (%s)\n" msgstr "no se pudo cambiar el directorio a %s (%s)\n"
#: lib/libalpm/add.c:571 lib/libalpm/util.c:405 lib/libalpm/util.c:774 #: lib/libalpm/add.c:571 lib/libalpm/util.c:429 lib/libalpm/util.c:808
#, c-format #, c-format
msgid "could not restore working directory (%s)\n" msgid "could not restore working directory (%s)\n"
msgstr "no se pudo restaurar el directorio de trabajo (%s)\n" msgstr "no se pudo restaurar el directorio de trabajo (%s)\n"
@ -148,105 +150,120 @@ msgstr "no se pudo actualizar la entrada %s-%s en la base de datos\n"
msgid "could not add entry '%s' in cache\n" msgid "could not add entry '%s' in cache\n"
msgstr "no se pudo agregar la entrada «%s» a la caché\n" msgstr "no se pudo agregar la entrada «%s» a la caché\n"
#: lib/libalpm/be_local.c:266 #: lib/libalpm/be_local.c:271
#, c-format #, c-format
msgid "error while reading file %s: %s\n" msgid "error while reading file %s: %s\n"
msgstr "error al leer el archivo %s: %s\n" msgstr "error al leer el archivo %s: %s\n"
#: lib/libalpm/be_local.c:376 #: lib/libalpm/be_local.c:382
#, c-format #, c-format
msgid "removing invalid database: %s\n" msgid "removing invalid database: %s\n"
msgstr "quitando la base de datos no válida: %s\n" msgstr "quitando la base de datos no válida: %s\n"
#: lib/libalpm/be_local.c:427 lib/libalpm/be_local.c:909 #: lib/libalpm/be_local.c:433 lib/libalpm/be_local.c:947
#, c-format #, c-format
msgid "could not create directory %s: %s\n" msgid "could not create directory %s: %s\n"
msgstr "no se pudo crear el directorio %s: %s\n" msgstr "no se pudo crear el directorio %s: %s\n"
#: lib/libalpm/be_local.c:602 lib/libalpm/be_sync.c:322 #: lib/libalpm/be_local.c:608 lib/libalpm/be_sync.c:339
#, c-format #, c-format
msgid "invalid name for database entry '%s'\n" msgid "invalid name for database entry '%s'\n"
msgstr "nombre no válido para la entrada «%s» de la base de datos\n" msgstr "nombre no válido para la entrada «%s» de la base de datos\n"
#: lib/libalpm/be_local.c:610 #: lib/libalpm/be_local.c:616
#, c-format #, c-format
msgid "duplicated database entry '%s'\n" msgid "duplicated database entry '%s'\n"
msgstr "entrada «%s» duplicada en la base de datos\n" msgstr "entrada «%s» duplicada en la base de datos\n"
#: lib/libalpm/be_local.c:622 #: lib/libalpm/be_local.c:628
#, c-format #, c-format
msgid "corrupted database entry '%s'\n" msgid "corrupted database entry '%s'\n"
msgstr "la entrada «%s» de la base de datos está dañada\n" msgstr "la entrada «%s» de la base de datos está dañada\n"
#: lib/libalpm/be_local.c:722 lib/libalpm/be_local.c:818 #: lib/libalpm/be_local.c:663
#: lib/libalpm/be_local.c:958 lib/libalpm/be_local.c:1055 #, c-format
#: lib/libalpm/diskspace.c:131 lib/libalpm/dload.c:823 lib/libalpm/util.c:254 msgid "unknown install reason for package %s: %s\n"
#: lib/libalpm/util.c:270 msgstr "se desconoce el motivo de la instalación del paquete %s: %s\n"
#: lib/libalpm/be_local.c:743 lib/libalpm/be_local.c:856
#: lib/libalpm/be_local.c:996 lib/libalpm/be_local.c:1102
#: lib/libalpm/diskspace.c:135 lib/libalpm/dload.c:792 lib/libalpm/util.c:273
#: lib/libalpm/util.c:289
#, c-format #, c-format
msgid "could not open file %s: %s\n" msgid "could not open file %s: %s\n"
msgstr "no se pudo abrir el archivo %s: %s\n" msgstr "no se pudo abrir el archivo %s: %s\n"
#: lib/libalpm/be_local.c:738 lib/libalpm/be_sync.c:582 #: lib/libalpm/be_local.c:759 lib/libalpm/be_sync.c:612
#, c-format #, c-format
msgid "%s database is inconsistent: name mismatch on package %s\n" msgid "%s database is inconsistent: name mismatch on package %s\n"
msgstr "" msgstr ""
"la base de datos %s es inconsistente: nombre mal emparejado en el paquete " "la base de datos %s es inconsistente: nombre mal emparejado en el paquete "
"%s\n" "%s\n"
#: lib/libalpm/be_local.c:744 lib/libalpm/be_sync.c:588 #: lib/libalpm/be_local.c:765 lib/libalpm/be_sync.c:618
#, c-format #, c-format
msgid "%s database is inconsistent: version mismatch on package %s\n" msgid "%s database is inconsistent: version mismatch on package %s\n"
msgstr "" msgstr ""
"la base de datos %s es inconsistente: versión mal emparejada en el paquete " "la base de datos %s es inconsistente: versión mal emparejada en el paquete "
"%s\n" "%s\n"
#: lib/libalpm/be_local.c:785 #: lib/libalpm/be_local.c:806
#, c-format #, c-format
msgid "unknown validation type for package %s: %s\n" msgid "unknown validation type for package %s: %s\n"
msgstr "tipo de validación desconocida para el paquete %s: %s\n" msgstr "tipo de validación desconocida para el paquete %s: %s\n"
#: lib/libalpm/be_package.c:478 lib/libalpm/be_package.c:631 #: lib/libalpm/be_local.c:841
#: lib/libalpm/be_package.c:643 #, c-format
msgid "%s: unknown key '%s' in local database\n"
msgstr "%s: no se encuentra la clave «%s» en la base de datos local\n"
#: lib/libalpm/be_package.c:255
#, c-format
msgid "%s: unknown key '%s' in package description\n"
msgstr "%s: no se encuentra la clave «%s» en la descripción del paquete\n"
#: lib/libalpm/be_package.c:482 lib/libalpm/be_package.c:635
#: lib/libalpm/be_package.c:647
#, c-format #, c-format
msgid "error while reading package %s: %s\n" msgid "error while reading package %s: %s\n"
msgstr "error al leer el paquete %s: %s\n" msgstr "error al leer el paquete %s: %s\n"
#: lib/libalpm/be_package.c:491 lib/libalpm/be_package.c:514 #: lib/libalpm/be_package.c:495 lib/libalpm/be_package.c:518
#, c-format #, c-format
msgid "error while reading mtree of package %s: %s\n" msgid "error while reading mtree of package %s: %s\n"
msgstr "error al leer «mtree» del paquete %s: %s\n" msgstr "error al leer «mtree» del paquete %s: %s\n"
#: lib/libalpm/be_package.c:597 #: lib/libalpm/be_package.c:601
#, c-format #, c-format
msgid "could not parse package description file in %s\n" msgid "could not parse package description file in %s\n"
msgstr "no se pudo analizar el archivo de descripción del paquete en %s\n" msgstr "no se pudo analizar el archivo de descripción del paquete en %s\n"
#: lib/libalpm/be_package.c:602 #: lib/libalpm/be_package.c:606
#, c-format #, c-format
msgid "missing package name in %s\n" msgid "missing package name in %s\n"
msgstr "falta el nombre del paquete en %s\n" msgstr "falta el nombre del paquete en %s\n"
#: lib/libalpm/be_package.c:606 #: lib/libalpm/be_package.c:610
#, c-format #, c-format
msgid "missing package version in %s\n" msgid "missing package version in %s\n"
msgstr "falta la versión del paquete en %s\n" msgstr "falta la versión del paquete en %s\n"
#: lib/libalpm/be_package.c:610 #: lib/libalpm/be_package.c:614
#, c-format #, c-format
msgid "invalid package version in %s\n" msgid "invalid package version in %s\n"
msgstr "versión del paquete no válida en %s\n" msgstr "versión del paquete no válida en %s\n"
#: lib/libalpm/be_package.c:649 #: lib/libalpm/be_package.c:653
#, c-format #, c-format
msgid "missing package metadata in %s\n" msgid "missing package metadata in %s\n"
msgstr "faltan los metadatos del paquete en %s\n" msgstr "faltan los metadatos del paquete en %s\n"
#: lib/libalpm/be_package.c:741 #: lib/libalpm/be_package.c:745
#, c-format #, c-format
msgid "failed to read signature file: %s\n" msgid "failed to read signature file: %s\n"
msgstr "no se pudo leer correctamente el archivo de firmas: %s\n" msgstr "no se pudo leer correctamente el archivo de firmas: %s\n"
#: lib/libalpm/be_package.c:770 lib/libalpm/sync.c:953 #: lib/libalpm/be_package.c:768 lib/libalpm/sync.c:976
#, c-format #, c-format
msgid "required key missing from keyring\n" msgid "required key missing from keyring\n"
msgstr "la clave necesaria no está presente en el depósito\n" msgstr "la clave necesaria no está presente en el depósito\n"
@ -256,38 +273,44 @@ msgstr "la clave necesaria no está presente en el depósito\n"
msgid "removing invalid file: %s\n" msgid "removing invalid file: %s\n"
msgstr "quitando archivo no válido: %s\n" msgstr "quitando archivo no válido: %s\n"
#: lib/libalpm/be_sync.c:449 #: lib/libalpm/be_sync.c:471
#, c-format #, c-format
msgid "could not parse package description file '%s' from db '%s'\n" msgid "could not parse package description file '%s' from db '%s'\n"
msgstr "" msgstr ""
"no se pudo analizar el archivo de descripción del paquete «%s» de la base de " "no se pudo analizar el archivo de descripción del paquete «%s» de la base de "
"datos «%s»\n" "datos «%s»\n"
#: lib/libalpm/be_sync.c:456 #: lib/libalpm/be_sync.c:486
#, c-format #, c-format
msgid "could not read db '%s' (%s)\n" msgid "could not read db '%s' (%s)\n"
msgstr "no se pudo leer la base de datos '%s' (%s)\n" msgstr "no se pudo leer la base de datos '%s' (%s)\n"
#: lib/libalpm/be_sync.c:489 lib/libalpm/be_sync.c:494 #: lib/libalpm/be_sync.c:519 lib/libalpm/be_sync.c:524
#, c-format #, c-format
msgid "%s database is inconsistent: filename of package %s is illegal\n" msgid "%s database is inconsistent: filename of package %s is illegal\n"
msgstr "" msgstr ""
"la base de datos %s es inconsistente: el nombre del archivo del paquete %s " "la base de datos %s es inconsistente: el nombre del archivo del paquete %s "
"no entra dentro de lo permisible\n" "no entra dentro de lo permisible\n"
#: lib/libalpm/be_sync.c:499 #: lib/libalpm/be_sync.c:529
#, c-format #, c-format
msgid "%s database is inconsistent: filename of package %s is too long\n" msgid "%s database is inconsistent: filename of package %s is too long\n"
msgstr "" msgstr ""
"la base de datos %s es inconsistente: el nombre del archivo del paquete %s " "la base de datos %s es inconsistente: el nombre del archivo del paquete %s "
"es demasiado largo\n" "es demasiado largo\n"
#: lib/libalpm/be_sync.c:564 #: lib/libalpm/be_sync.c:594
#, c-format #, c-format
msgid "unknown database file: %s\n" msgid "unknown database file: %s\n"
msgstr "archivo de base de datos desconocido: %s\n" msgstr "archivo de base de datos desconocido: %s\n"
#: lib/libalpm/db.c:344 #: lib/libalpm/be_sync.c:712
#, c-format
msgid "%s: unknown key '%s' in sync database\n"
msgstr ""
"%s: no se encuentra la clave «%s» en la base de datos de sincronización\n"
#: lib/libalpm/db.c:413
#, c-format #, c-format
msgid "database path is undefined\n" msgid "database path is undefined\n"
msgstr "la ruta de la base de datos no está definida\n" msgstr "la ruta de la base de datos no está definida\n"
@ -327,51 +350,56 @@ msgstr "no se pudo obtener información del sistema de archivos para %s: %s\n"
msgid "could not open file: %s: %s\n" msgid "could not open file: %s: %s\n"
msgstr "no se pudo abrir el archivo: %s: %s\n" msgstr "no se pudo abrir el archivo: %s: %s\n"
#: lib/libalpm/diskspace.c:146 lib/libalpm/diskspace.c:159 #: lib/libalpm/diskspace.c:154 lib/libalpm/diskspace.c:167
#, c-format #, c-format
msgid "could not get filesystem information\n" msgid "could not get filesystem information\n"
msgstr "no se pudo obtener información del sistema de archivos\n" msgstr "no se pudo obtener información del sistema de archivos\n"
#: lib/libalpm/diskspace.c:242 #: lib/libalpm/diskspace.c:254
#, c-format #, c-format
msgid "could not get file information for %s\n" msgid "could not get file information for %s\n"
msgstr "no se pudo obtener información del archivo %s\n" msgstr "no se pudo obtener información del archivo %s\n"
#: lib/libalpm/diskspace.c:256 lib/libalpm/diskspace.c:315 #: lib/libalpm/diskspace.c:268 lib/libalpm/diskspace.c:327
#, c-format #, c-format
msgid "could not determine mount point for file %s\n" msgid "could not determine mount point for file %s\n"
msgstr "no se pudo determinar el punto de montaje para el archivo %s\n" msgstr "no se pudo determinar el punto de montaje para el archivo %s\n"
#: lib/libalpm/diskspace.c:354 #: lib/libalpm/diskspace.c:366
#, c-format #, c-format
msgid "Partition %s too full: %jd blocks needed, %ju blocks free\n" msgid "Partition %s too full: %jd blocks needed, %ju blocks free\n"
msgstr "" msgstr ""
"La partición %s está demasiado llena: se necesitan %jd bloques, hay %ju " "La partición %s está demasiado llena: se necesitan %jd bloques, hay %ju "
"bloques libres\n" "bloques libres\n"
#: lib/libalpm/diskspace.c:379 lib/libalpm/diskspace.c:433 #: lib/libalpm/diskspace.c:391 lib/libalpm/diskspace.c:445
#, c-format #, c-format
msgid "could not determine filesystem mount points\n" msgid "could not determine filesystem mount points\n"
msgstr "no se puede determinar el punto de montaje del sistema de archivos\n" msgstr "no se puede determinar el punto de montaje del sistema de archivos\n"
#: lib/libalpm/diskspace.c:385 #: lib/libalpm/diskspace.c:397
#, c-format #, c-format
msgid "could not determine cachedir mount point %s\n" msgid "could not determine cachedir mount point %s\n"
msgstr "" msgstr ""
"no se pudo determinar el punto de montaje del directorio de la memoria caché " "no se pudo determinar el punto de montaje del directorio de la memoria caché "
"%s\n" "%s\n"
#: lib/libalpm/diskspace.c:438 #: lib/libalpm/diskspace.c:450
#, c-format #, c-format
msgid "could not determine root mount point %s\n" msgid "could not determine root mount point %s\n"
msgstr "no se pudo determinar el punto de montaje de la raíz %s\n" msgstr "no se pudo determinar el punto de montaje de la raíz %s\n"
#: lib/libalpm/diskspace.c:486 #: lib/libalpm/diskspace.c:498
#, c-format #, c-format
msgid "Partition %s is mounted read only\n" msgid "Partition %s is mounted read only\n"
msgstr "La partición %s está montada solamente en modo lectura\n" msgstr "La partición %s está montada solamente en modo lectura\n"
#: lib/libalpm/dload.c:116 #: lib/libalpm/dload.c:107
#, c-format
msgid "failed to create temporary file for download\n"
msgstr "no se pudo crear el archivo temporal para la descarga\n"
#: lib/libalpm/dload.c:198
#, c-format #, c-format
msgid "" msgid ""
"too many errors from %s, skipping for the remainder of this transaction\n" "too many errors from %s, skipping for the remainder of this transaction\n"
@ -379,59 +407,69 @@ msgstr ""
"demasiados errores al descargar de %s, pasando al siguiente servidor de la " "demasiados errores al descargar de %s, pasando al siguiente servidor de la "
"lista\n" "lista\n"
#: lib/libalpm/dload.c:220 #: lib/libalpm/dload.c:215
#, c-format
msgid "fatal error from %s, skipping for the remainder of this transaction\n"
msgstr "error fatal desde %s, omitiendo para el resto de esta transacción\n"
#: lib/libalpm/dload.c:310
#, c-format #, c-format
msgid "disk" msgid "disk"
msgstr "disco" msgstr "disco"
#: lib/libalpm/dload.c:392 #: lib/libalpm/dload.c:532 lib/libalpm/dload.c:570 lib/libalpm/dload.c:583
#, c-format
msgid "failed to create temporary file for download\n"
msgstr "no se pudo crear el archivo temporal para la descarga\n"
#: lib/libalpm/dload.c:509 lib/libalpm/dload.c:547 lib/libalpm/dload.c:561
#, c-format #, c-format
msgid "failed retrieving file '%s' from %s : %s\n" msgid "failed retrieving file '%s' from %s : %s\n"
msgstr "no se pudo obtener el archivo «%s» desde %s: %s\n" msgstr "no se pudo obtener el archivo «%s» desde %s: %s\n"
#: lib/libalpm/dload.c:539 #: lib/libalpm/dload.c:562
#, c-format #, c-format
msgid "failed retrieving file '%s' from %s : expected download size exceeded\n" msgid "failed retrieving file '%s' from %s : expected download size exceeded\n"
msgstr "" msgstr ""
"no se pudo obtener el archivo «%s» desde %s : el tamaño de la descarga " "no se pudo obtener el archivo «%s» desde %s : el tamaño de la descarga "
"supera lo esperado\n" "supera lo esperado\n"
#: lib/libalpm/dload.c:687 #: lib/libalpm/dload.c:685
#, c-format #, c-format
msgid "%s appears to be truncated: %jd/%jd bytes\n" msgid "%s appears to be truncated: %jd/%jd bytes\n"
msgstr "%s parece estar incompleto: %jd/%jd bytes\n" msgstr "%s parece estar incompleto: %jd/%jd bytes\n"
#: lib/libalpm/dload.c:787 #: lib/libalpm/dload.c:776
#, c-format #, c-format
msgid "url '%s' is invalid\n" msgid "url '%s' is invalid\n"
msgstr "la dirección «%s» no es válida\n" msgstr "la dirección «%s» no es válida\n"
#: lib/libalpm/dload.c:893 #: lib/libalpm/dload.c:864
#, c-format #, c-format
msgid "failed to setup a download payload for %s\n" msgid "failed to setup a download payload for %s\n"
msgstr "no se pudo configurar un objeto de descarga para %s\n" msgstr "no se pudo configurar un objeto de descarga para %s\n"
#: lib/libalpm/dload.c:905 #: lib/libalpm/dload.c:876
#, c-format #, c-format
msgid "curl returned error %d from transfer\n" msgid "curl returned error %d from transfer\n"
msgstr "curl ha generado un error de transferencia %d\n" msgstr "curl ha generado un error de transferencia %d\n"
#: lib/libalpm/dload.c:929 #: lib/libalpm/dload.c:900
#, c-format #, c-format
msgid "curl transfer error: %d\n" msgid "curl transfer error: %d\n"
msgstr "error de transferencia de curl: %d\n" msgstr "error de transferencia de curl: %d\n"
#: lib/libalpm/dload.c:1055 lib/libalpm/sync.c:840 #: lib/libalpm/dload.c:963
#, c-format
msgid "could not chdir to download directory %s\n"
msgstr "no se pudo acceder al directorio de descargas %s\n"
#: lib/libalpm/dload.c:968
#, c-format
msgid "switching to sandbox user '%s' failed!\n"
msgstr "no se pudo cambiar al usuario restringido «%s»\n"
#: lib/libalpm/dload.c:1361 lib/libalpm/sync.c:861
#, c-format #, c-format
msgid "failed to retrieve some files\n" msgid "failed to retrieve some files\n"
msgstr "no se pudieron recibir algunos archivos\n" msgstr "no se pudieron recibir algunos archivos\n"
#: lib/libalpm/dload.c:1078 #: lib/libalpm/dload.c:1384
#, c-format #, c-format
msgid "download completed successfully but no file in the cache\n" msgid "download completed successfully but no file in the cache\n"
msgstr "se ha completado la descarga, pero el archivo no está en la caché\n" msgstr "se ha completado la descarga, pero el archivo no está en la caché\n"
@ -707,12 +745,12 @@ msgstr "compilado sin soporte de firma"
msgid "unexpected error" msgid "unexpected error"
msgstr "error inesperado" msgstr "error inesperado"
#: lib/libalpm/handle.c:142 #: lib/libalpm/handle.c:165
#, c-format #, c-format
msgid "lock file missing %s\n" msgid "lock file missing %s\n"
msgstr "falta el archivo de bloqueo %s\n" msgstr "falta el archivo de bloqueo %s\n"
#: lib/libalpm/handle.c:148 #: lib/libalpm/handle.c:171
#, c-format #, c-format
msgid "could not remove lock file %s\n" msgid "could not remove lock file %s\n"
msgstr "no se pudo quitar el archivo de bloqueo %s\n" msgstr "no se pudo quitar el archivo de bloqueo %s\n"
@ -794,7 +832,7 @@ msgstr "no se pudo abrir el directorio: %s: %s\n"
msgid "could not open file: %s%s: %s\n" msgid "could not open file: %s%s: %s\n"
msgstr "no se pudo abrir el archivo: %s%s: %s\n" msgstr "no se pudo abrir el archivo: %s%s: %s\n"
#: lib/libalpm/hook.c:595 lib/libalpm/util.c:260 #: lib/libalpm/hook.c:595 lib/libalpm/util.c:279
#, c-format #, c-format
msgid "could not stat file %s: %s\n" msgid "could not stat file %s: %s\n"
msgstr "no se pudo recuperar la información del archivo %s: %s\n" msgstr "no se pudo recuperar la información del archivo %s: %s\n"
@ -804,12 +842,53 @@ msgstr "no se pudo recuperar la información del archivo %s: %s\n"
msgid "could not read directory: %s: %s\n" msgid "could not read directory: %s: %s\n"
msgstr "no se pudo crear la carpeta: %s: %s\n" msgstr "no se pudo crear la carpeta: %s: %s\n"
#: lib/libalpm/package.c:598 #: lib/libalpm/package.c:614
#, c-format #, c-format
msgid "could not fully load metadata for package %s-%s\n" msgid "could not fully load metadata for package %s-%s\n"
msgstr "" msgstr ""
"no se pudieron cargar completamente los metadatos para el paquete %s-%s\n" "no se pudieron cargar completamente los metadatos para el paquete %s-%s\n"
#: lib/libalpm/package.c:869
#, c-format
msgid "invalid package metadata (name or version missing)"
msgstr ""
"los metadatos del paquete están incompletos (faltan o el nombre o la versión)"
#: lib/libalpm/package.c:874
#, c-format
msgid ""
"invalid metadata for package %s-%s (package name cannot start with '.' or "
"'-')\n"
msgstr ""
"los metadatos del paquete %s-%s no parecen ser correctos (las primeras "
"letras de los nombres de paquetes nunca pueden ser «.» o «-»)\n"
#: lib/libalpm/package.c:878
#, c-format
msgid ""
"invalid metadata for package %s-%s (package name contains invalid "
"characters)\n"
msgstr ""
"los metadatos del paquete %s-%s no parecen ser correctos (el campo de nombre "
"contiene caracteres fuera del rango permitido)\n"
#: lib/libalpm/package.c:885 lib/libalpm/package.c:889
#, c-format
msgid ""
"invalid metadata for package %s-%s (package version contains invalid "
"characters)\n"
msgstr ""
"los metadatos del paquete %s-%s no parecen ser correctos (el campo de "
"versión contiene caracteres fuera del rango permitido)\n"
#: lib/libalpm/package.c:895
#, c-format
msgid ""
"invalid metadata for package %s-%s (package name and version too long)\n"
msgstr ""
"los metadatos del paquete %s-%s no parecen ser correctos (los campos de "
"nombre y versión son demasiado largos)\n"
#: lib/libalpm/remove.c:111 #: lib/libalpm/remove.c:111
#, c-format #, c-format
msgid "could not find %s in database -- skipping\n" msgid "could not find %s in database -- skipping\n"
@ -832,17 +911,17 @@ msgstr ""
"no se ha podido respaldar %s debido a que la ruta supera el tamaño de " "no se ha podido respaldar %s debido a que la ruta supera el tamaño de "
"PATH_MAX\n" "PATH_MAX\n"
#: lib/libalpm/remove.c:554 #: lib/libalpm/remove.c:570
#, c-format #, c-format
msgid "cannot remove %s (%s)\n" msgid "cannot remove %s (%s)\n"
msgstr "no se pudo quitar %s (%s)\n" msgstr "no se pudo quitar %s (%s)\n"
#: lib/libalpm/remove.c:727 #: lib/libalpm/remove.c:743
#, c-format #, c-format
msgid "could not remove database entry %s-%s\n" msgid "could not remove database entry %s-%s\n"
msgstr "no se pudo quitar la entrada %s-%s de la base de datos\n" msgstr "no se pudo quitar la entrada %s-%s de la base de datos\n"
#: lib/libalpm/remove.c:732 #: lib/libalpm/remove.c:748
#, c-format #, c-format
msgid "could not remove entry '%s' from cache\n" msgid "could not remove entry '%s' from cache\n"
msgstr "no se pudo quitar la entrada «%s» de la caché\n" msgstr "no se pudo quitar la entrada «%s» de la caché\n"
@ -854,91 +933,91 @@ msgstr ""
"No se ha encontrado el depósito público de claves; ¿ya se ha ejecutado " "No se ha encontrado el depósito público de claves; ¿ya se ha ejecutado "
"«%s»?\n" "«%s»?\n"
#: lib/libalpm/signing.c:199 lib/libalpm/signing.c:767 #: lib/libalpm/signing.c:199 lib/libalpm/signing.c:773
#, c-format #, c-format
msgid "GPGME error: %s\n" msgid "GPGME error: %s\n"
msgstr "Error de GPGME: %s\n" msgstr "Error de GPGME: %s\n"
#: lib/libalpm/signing.c:274 #: lib/libalpm/signing.c:275
#, c-format #, c-format
msgid "looking up key %s using WKD\n" msgid "looking up key %s using WKD\n"
msgstr "buscando clave %s usando WKD\n" msgstr "buscando clave %s usando WKD\n"
#: lib/libalpm/signing.c:283 #: lib/libalpm/signing.c:289
#, c-format #, c-format
msgid "gpg error: %s\n" msgid "gpg error: %s\n"
msgstr "error gpg: %s\n" msgstr "error gpg: %s\n"
#: lib/libalpm/signing.c:430 lib/libalpm/signing.c:503 #: lib/libalpm/signing.c:440 lib/libalpm/signing.c:513
#, c-format #, c-format
msgid "keyring is not writable\n" msgid "keyring is not writable\n"
msgstr "no se puede escribir en el depósito de claves\n" msgstr "no se puede escribir en el depósito de claves\n"
#: lib/libalpm/signing.c:531 #: lib/libalpm/signing.c:537
#, c-format #, c-format
msgid "key \"%s\" on keyserver\n" msgid "key \"%s\" on keyserver\n"
msgstr "clave «%s» en servidor de claves\n" msgstr "clave «%s» en servidor de claves\n"
#: lib/libalpm/signing.c:536 #: lib/libalpm/signing.c:542
#, c-format #, c-format
msgid "key \"%s\" could not be imported\n" msgid "key \"%s\" could not be imported\n"
msgstr "no se pudo importar la clave «%s»\n" msgstr "no se pudo importar la clave «%s»\n"
#: lib/libalpm/signing.c:540 #: lib/libalpm/signing.c:546
#, c-format #, c-format
msgid "key \"%s\" could not be looked up remotely\n" msgid "key \"%s\" could not be looked up remotely\n"
msgstr "no se pudo buscar la clave «%s» de forma remota\n" msgstr "no se pudo buscar la clave «%s» de forma remota\n"
#: lib/libalpm/signing.c:926 lib/libalpm/sync.c:1022 #: lib/libalpm/signing.c:932 lib/libalpm/sync.c:1052
#, c-format #, c-format
msgid "%s: missing required signature\n" msgid "%s: missing required signature\n"
msgstr "%s: falta la firma exigida\n" msgstr "%s: falta la firma exigida\n"
#: lib/libalpm/signing.c:941 #: lib/libalpm/signing.c:947
#, c-format #, c-format
msgid "%s: signature from \"%s\" is marginal trust\n" msgid "%s: signature from \"%s\" is marginal trust\n"
msgstr "%s: la firma de «%s» es de confianza mínima\n" msgstr "%s: la firma de «%s» es de confianza mínima\n"
#: lib/libalpm/signing.c:949 #: lib/libalpm/signing.c:955
#, c-format #, c-format
msgid "%s: signature from \"%s\" is unknown trust\n" msgid "%s: signature from \"%s\" is unknown trust\n"
msgstr "%s: se desconoce el nivel de confianza de la firma de «%s»\n" msgstr "%s: se desconoce el nivel de confianza de la firma de «%s»\n"
#: lib/libalpm/signing.c:956 #: lib/libalpm/signing.c:962
#, c-format #, c-format
msgid "%s: signature from \"%s\" should never be trusted\n" msgid "%s: signature from \"%s\" should never be trusted\n"
msgstr "" msgstr ""
"%s: la firma de «%s» no es de confianza y no se debería confiar en ella bajo " "%s: la firma de «%s» no es de confianza y no se debería confiar en ella bajo "
"ningún concepto\n" "ningún concepto\n"
#: lib/libalpm/signing.c:968 #: lib/libalpm/signing.c:974
#, c-format #, c-format
msgid "%s: key \"%s\" is unknown\n" msgid "%s: key \"%s\" is unknown\n"
msgstr "%s: clave «%s» desconocida\n" msgstr "%s: clave «%s» desconocida\n"
#: lib/libalpm/signing.c:977 #: lib/libalpm/signing.c:983
#, c-format #, c-format
msgid "%s: key \"%s\" is disabled\n" msgid "%s: key \"%s\" is disabled\n"
msgstr "%s: la clave «%s» está desactivada\n" msgstr "%s: la clave «%s» está desactivada\n"
#: lib/libalpm/signing.c:981 #: lib/libalpm/signing.c:987
#, c-format #, c-format
msgid "%s: signature from \"%s\" is expired\n" msgid "%s: signature from \"%s\" is expired\n"
msgstr "%s: la firma de «%s» ha expirado\n" msgstr "%s: la firma de «%s» ha expirado\n"
#: lib/libalpm/signing.c:985 #: lib/libalpm/signing.c:991
#, c-format #, c-format
msgid "%s: signature from \"%s\" is invalid\n" msgid "%s: signature from \"%s\" is invalid\n"
msgstr "%s: la firma de «%s» no es válida\n" msgstr "%s: la firma de «%s» no es válida\n"
#: lib/libalpm/signing.c:1043 lib/libalpm/signing.c:1104 #: lib/libalpm/signing.c:1049 lib/libalpm/signing.c:1110
#: lib/libalpm/signing.c:1183 #: lib/libalpm/signing.c:1189
#, c-format #, c-format
msgid "%s: signature format error\n" msgid "%s: signature format error\n"
msgstr "%s: hubo un error con el formato de la firma\n" msgstr "%s: hubo un error con el formato de la firma\n"
#: lib/libalpm/signing.c:1136 lib/libalpm/signing.c:1169 #: lib/libalpm/signing.c:1142 lib/libalpm/signing.c:1175
#: lib/libalpm/signing.c:1177 #: lib/libalpm/signing.c:1183
#, c-format #, c-format
msgid "%s: unsupported signature format\n" msgid "%s: unsupported signature format\n"
msgstr "%s: formato de firma desconocido\n" msgstr "%s: formato de firma desconocido\n"
@ -973,119 +1052,123 @@ msgstr "ignorando el remplazo del paquete (%s-%s => %s-%s)\n"
msgid "cannot replace %s by %s\n" msgid "cannot replace %s by %s\n"
msgstr "no se pudo remplazar el archivo %s por %s\n" msgstr "no se pudo remplazar el archivo %s por %s\n"
#: lib/libalpm/sync.c:476 #: lib/libalpm/sync.c:477
#, c-format #, c-format
msgid "packages %s and %s have the same filename: %s\n" msgid "packages %s and %s have the same filename: %s\n"
msgstr "los paquetes %s y %s comparten un archivo con el mismo nombre: «%s»\n" msgstr "los paquetes %s y %s comparten un archivo con el mismo nombre: «%s»\n"
#: lib/libalpm/sync.c:542 lib/libalpm/sync.c:612 #: lib/libalpm/sync.c:546 lib/libalpm/sync.c:618
#, c-format #, c-format
msgid "unresolvable package conflicts detected\n" msgid "unresolvable package conflicts detected\n"
msgstr "se han detectado paquetes con conflictos sin resolver\n" msgstr "se han detectado paquetes con conflictos sin resolver\n"
#: lib/libalpm/sync.c:562 #: lib/libalpm/sync.c:566
#, c-format #, c-format
msgid "removing '%s' from target list because it conflicts with '%s'\n" msgid "removing '%s-%s' from target list because it conflicts with '%s-%s'\n"
msgstr "" msgstr ""
"quitando «%s» de la lista de paquetes debido a que tiene conflictos con " "eliminado «%s-%s» de la lista objetivo porque está en conflicto con «%s-%s»\n"
"«%s»\n"
#: lib/libalpm/sync.c:1036 #: lib/libalpm/sync.c:1020 lib/libalpm/sync.c:1187
#, c-format
msgid "%s: could not find package in cache\n"
msgstr "%s: no se pudo encontrar paquete en la caché\n"
#: lib/libalpm/sync.c:1066
#, c-format #, c-format
msgid "failed to read file %s: %s\n" msgid "failed to read file %s: %s\n"
msgstr "no se pudo leer el archivo %s: %s\n" msgstr "no se pudo leer el archivo %s: %s\n"
#: lib/libalpm/sync.c:1223 #: lib/libalpm/sync.c:1324
#, c-format #, c-format
msgid "not enough free disk space\n" msgid "not enough free disk space\n"
msgstr "no hay suficiente espacio libre en el disco\n" msgstr "no hay suficiente espacio libre en el disco\n"
#: lib/libalpm/sync.c:1245 #: lib/libalpm/sync.c:1346
#, c-format #, c-format
msgid "could not commit removal transaction\n" msgid "could not commit removal transaction\n"
msgstr "no se pudo realizar la operación de eliminación\n" msgstr "no se pudo realizar la operación de eliminación\n"
#: lib/libalpm/sync.c:1253 #: lib/libalpm/sync.c:1354
#, c-format #, c-format
msgid "could not commit transaction\n" msgid "could not commit transaction\n"
msgstr "no se pudo realizar la operación\n" msgstr "no se pudo realizar la operación\n"
#: lib/libalpm/trans.c:365 #: lib/libalpm/trans.c:369
#, c-format #, c-format
msgid "could not create temp directory\n" msgid "could not create temp directory\n"
msgstr "no se pudo crear el directorio temporal\n" msgstr "no se pudo crear el directorio temporal\n"
#: lib/libalpm/trans.c:380 #: lib/libalpm/trans.c:384
#, c-format #, c-format
msgid "could not copy tempfile to %s (%s)\n" msgid "could not copy tempfile to %s (%s)\n"
msgstr "no se pudo copiar el archivo temporal a %s (%s)\n" msgstr "no se pudo copiar el archivo temporal a %s (%s)\n"
#: lib/libalpm/trans.c:411 #: lib/libalpm/trans.c:415
#, c-format #, c-format
msgid "could not remove %s\n" msgid "could not remove %s\n"
msgstr "no se pudo quitar %s\n" msgstr "no se pudo quitar %s\n"
#: lib/libalpm/trans.c:415 #: lib/libalpm/trans.c:419
#, c-format #, c-format
msgid "could not remove tmpdir %s\n" msgid "could not remove tmpdir %s\n"
msgstr "no se pudo quitar el directorio temporal %s\n" msgstr "no se pudo quitar el directorio temporal %s\n"
#: lib/libalpm/util.c:488 #: lib/libalpm/util.c:512
#, c-format #, c-format
msgid "unable to write to pipe (%s)\n" msgid "unable to write to pipe (%s)\n"
msgstr "no se pudo escribir en la tubería (%s)\n" msgstr "no se pudo escribir en la tubería (%s)\n"
#: lib/libalpm/util.c:547 #: lib/libalpm/util.c:571
#, c-format #, c-format
msgid "unable to read from pipe (%s)\n" msgid "unable to read from pipe (%s)\n"
msgstr "no se pudo leer de la tubería (%s)\n" msgstr "no se pudo leer de la tubería (%s)\n"
#: lib/libalpm/util.c:617 lib/libalpm/util.c:623 #: lib/libalpm/util.c:641 lib/libalpm/util.c:647
#, c-format #, c-format
msgid "could not create pipe (%s)\n" msgid "could not create pipe (%s)\n"
msgstr "no se pudo crear la tubería (%s)\n" msgstr "no se pudo crear la tubería (%s)\n"
#: lib/libalpm/util.c:631 #: lib/libalpm/util.c:655
#, c-format #, c-format
msgid "could not fork a new process (%s)\n" msgid "could not fork a new process (%s)\n"
msgstr "no se pudo crear un nuevo proceso (%s)\n" msgstr "no se pudo crear un nuevo proceso (%s)\n"
#: lib/libalpm/util.c:654 #: lib/libalpm/util.c:680
#, c-format #, c-format
msgid "could not change the root directory (%s)\n" msgid "could not change the root directory (%s)\n"
msgstr "no se pudo cambiar el directorio raíz (%s)\n" msgstr "no se pudo cambiar el directorio raíz (%s)\n"
#: lib/libalpm/util.c:666 #: lib/libalpm/util.c:700
#, c-format #, c-format
msgid "call to execv failed (%s)\n" msgid "call to execv failed (%s)\n"
msgstr "llamada a execv fallida (%s)\n" msgstr "llamada a execv fallida (%s)\n"
#: lib/libalpm/util.c:745 #: lib/libalpm/util.c:779
#, c-format #, c-format
msgid "call to waitpid failed (%s)\n" msgid "call to waitpid failed (%s)\n"
msgstr "llamada a waitpid fallida (%s)\n" msgstr "llamada a waitpid fallida (%s)\n"
#: lib/libalpm/util.c:755 #: lib/libalpm/util.c:789
#, c-format #, c-format
msgid "command failed to execute correctly\n" msgid "command failed to execute correctly\n"
msgstr "la orden no se ejecutó correctamente\n" msgstr "la orden no se ejecutó correctamente\n"
#: lib/libalpm/util.c:762 #: lib/libalpm/util.c:796
#, c-format #, c-format
msgid "Unknown signal" msgid "Unknown signal"
msgstr "Firma desconocida" msgstr "Firma desconocida"
#: lib/libalpm/util.c:764 #: lib/libalpm/util.c:798
#, c-format #, c-format
msgid "command terminated by signal %d: %s\n" msgid "command terminated by signal %d: %s\n"
msgstr "orden terminada por la señal %d: %s\n" msgstr "orden terminada por la señal %d: %s\n"
#: lib/libalpm/util.c:875 #: lib/libalpm/util.c:916
#, c-format #, c-format
msgid "no %s cache exists, creating...\n" msgid "no %s cache exists, creating...\n"
msgstr "no existe la caché de %s, creándola...\n" msgstr "no existe la caché de %s, creándola...\n"
#: lib/libalpm/util.c:906 #: lib/libalpm/util.c:947
#, c-format #, c-format
msgid "couldn't find or create package cache, using %s instead\n" msgid "couldn't find or create package cache, using %s instead\n"
msgstr "" msgstr ""

View file

@ -12,24 +12,25 @@
# ice, 2016 # ice, 2016
# Leonel <leonelmalon@gmail.com>, 2013 # Leonel <leonelmalon@gmail.com>, 2013
# neiko <neikokz+tsfx@gmail.com>, 2011 # neiko <neikokz+tsfx@gmail.com>, 2011
# prflr88 <prflr88@gmail.com>, 2015,2017 # Pablo Lezaeta Reyes <prflr88@gmail.com>, 2015,2017
# prflr88 <prflr88@gmail.com>, 2015 # Pablo Lezaeta Reyes <prflr88@gmail.com>, 2015
# prflr88 <prflr88@gmail.com>, 2015,2017 # Pablo Lezaeta Reyes <prflr88@gmail.com>, 2015,2017
# prflr88 <prflr88@gmail.com>, 2015,2017 # Pablo Lezaeta Reyes <prflr88@gmail.com>, 2015,2017
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Arch Linux Pacman package manager\n" "Project-Id-Version: Arch Linux Pacman package manager\n"
"Report-Msgid-Bugs-To: http://bugs.archlinux.org/index.php?project=3\n" "Report-Msgid-Bugs-To: https://gitlab.archlinux.org/pacman/pacman/-/issues\n"
"POT-Creation-Date: 2021-09-04 16:15+1000\n" "POT-Creation-Date: 2024-07-14 19:10+1000\n"
"PO-Revision-Date: 2021-05-20 02:25+0000\n" "PO-Revision-Date: 2010-11-29 23:17+0000\n"
"Last-Translator: Allan McRae <allan@archlinux.org>\n" "Last-Translator: Pablo Lezaeta Reyes <prflr88@gmail.com>, 2015,2017\n"
"Language-Team: Spanish (Latin America) (http://www.transifex.com/toofishes/" "Language-Team: Spanish (Latin America) (http://app.transifex.com/toofishes/"
"archlinux-pacman/language/es_419/)\n" "archlinux-pacman/language/es_419/)\n"
"Language: es_419\n" "Language: es_419\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n" "Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? "
"1 : 2;\n"
#: lib/libalpm/add.c:90 lib/libalpm/sync.c:279 #: lib/libalpm/add.c:90 lib/libalpm/sync.c:279
#, c-format #, c-format
@ -51,17 +52,17 @@ msgstr "regresando a una versión anterior del paquete %s (%s => %s)\n"
msgid "cannot allocate disk archive object" msgid "cannot allocate disk archive object"
msgstr "No se puede asignar objeto de archivo de disco" msgstr "No se puede asignar objeto de archivo de disco"
#: lib/libalpm/add.c:143 lib/libalpm/util.c:384 #: lib/libalpm/add.c:143 lib/libalpm/util.c:408
#, c-format #, c-format
msgid "warning given when extracting %s (%s)\n" msgid "warning given when extracting %s (%s)\n"
msgstr "alerta producida mientras se extraía %s (%s)\n" msgstr "alerta producida mientras se extraía %s (%s)\n"
#: lib/libalpm/add.c:146 lib/libalpm/util.c:387 #: lib/libalpm/add.c:146 lib/libalpm/util.c:411
#, c-format #, c-format
msgid "could not extract %s (%s)\n" msgid "could not extract %s (%s)\n"
msgstr "no se pudo extraer %s (%s)\n" msgstr "no se pudo extraer %s (%s)\n"
#: lib/libalpm/add.c:159 lib/libalpm/dload.c:709 lib/libalpm/remove.c:534 #: lib/libalpm/add.c:159 lib/libalpm/dload.c:707 lib/libalpm/remove.c:550
#, c-format #, c-format
msgid "could not rename %s to %s (%s)\n" msgid "could not rename %s to %s (%s)\n"
msgstr "no se pudo renombrar %s a %s (%s)\n" msgstr "no se pudo renombrar %s a %s (%s)\n"
@ -106,18 +107,18 @@ msgstr "extracto: no se puede sobrescribir el directorio con el archivo %s\n"
msgid "unable to extract %s.pacnew: path too long" msgid "unable to extract %s.pacnew: path too long"
msgstr "no se pudo extraer %s.pacnew: ruta demasiado larga" msgstr "no se pudo extraer %s.pacnew: ruta demasiado larga"
#: lib/libalpm/add.c:510 lib/libalpm/util.c:335 lib/libalpm/util.c:600 #: lib/libalpm/add.c:510 lib/libalpm/util.c:354 lib/libalpm/util.c:624
#, c-format #, c-format
msgid "could not get current working directory\n" msgid "could not get current working directory\n"
msgstr "no se pudo determinar el directorio de trabajo actual\n" msgstr "no se pudo determinar el directorio de trabajo actual\n"
#: lib/libalpm/add.c:515 lib/libalpm/util.c:340 lib/libalpm/util.c:605 #: lib/libalpm/add.c:515 lib/libalpm/util.c:359 lib/libalpm/util.c:629
#: lib/libalpm/util.c:658 #: lib/libalpm/util.c:684
#, c-format #, c-format
msgid "could not change directory to %s (%s)\n" msgid "could not change directory to %s (%s)\n"
msgstr "no se pudo cambiar el directorio a %s (%s)\n" msgstr "no se pudo cambiar el directorio a %s (%s)\n"
#: lib/libalpm/add.c:571 lib/libalpm/util.c:405 lib/libalpm/util.c:774 #: lib/libalpm/add.c:571 lib/libalpm/util.c:429 lib/libalpm/util.c:808
#, c-format #, c-format
msgid "could not restore working directory (%s)\n" msgid "could not restore working directory (%s)\n"
msgstr "no se pudo restaurar el directorio de trabajo (%s)\n" msgstr "no se pudo restaurar el directorio de trabajo (%s)\n"
@ -142,105 +143,120 @@ msgstr "no se pudo actualizar la entrada %s-%s en la base de datos\n"
msgid "could not add entry '%s' in cache\n" msgid "could not add entry '%s' in cache\n"
msgstr "no se pudo agregar la entrada «%s» a la caché\n" msgstr "no se pudo agregar la entrada «%s» a la caché\n"
#: lib/libalpm/be_local.c:266 #: lib/libalpm/be_local.c:271
#, c-format #, c-format
msgid "error while reading file %s: %s\n" msgid "error while reading file %s: %s\n"
msgstr "error durante la lectura del archivo %s: %s\n" msgstr "error durante la lectura del archivo %s: %s\n"
#: lib/libalpm/be_local.c:376 #: lib/libalpm/be_local.c:382
#, c-format #, c-format
msgid "removing invalid database: %s\n" msgid "removing invalid database: %s\n"
msgstr "quitando la base de datos no válida: %s\n" msgstr "quitando la base de datos no válida: %s\n"
#: lib/libalpm/be_local.c:427 lib/libalpm/be_local.c:909 #: lib/libalpm/be_local.c:433 lib/libalpm/be_local.c:947
#, c-format #, c-format
msgid "could not create directory %s: %s\n" msgid "could not create directory %s: %s\n"
msgstr "no se pudo crear el directorio %s: %s\n" msgstr "no se pudo crear el directorio %s: %s\n"
#: lib/libalpm/be_local.c:602 lib/libalpm/be_sync.c:322 #: lib/libalpm/be_local.c:608 lib/libalpm/be_sync.c:339
#, c-format #, c-format
msgid "invalid name for database entry '%s'\n" msgid "invalid name for database entry '%s'\n"
msgstr "nombre no válido para la entrada «%s» de la base de datos\n" msgstr "nombre no válido para la entrada «%s» de la base de datos\n"
#: lib/libalpm/be_local.c:610 #: lib/libalpm/be_local.c:616
#, c-format #, c-format
msgid "duplicated database entry '%s'\n" msgid "duplicated database entry '%s'\n"
msgstr "entrada «%s» duplicada en la base de datos\n" msgstr "entrada «%s» duplicada en la base de datos\n"
#: lib/libalpm/be_local.c:622 #: lib/libalpm/be_local.c:628
#, c-format #, c-format
msgid "corrupted database entry '%s'\n" msgid "corrupted database entry '%s'\n"
msgstr "la entrada «%s» de la base de datos está dañada\n" msgstr "la entrada «%s» de la base de datos está dañada\n"
#: lib/libalpm/be_local.c:722 lib/libalpm/be_local.c:818 #: lib/libalpm/be_local.c:663
#: lib/libalpm/be_local.c:958 lib/libalpm/be_local.c:1055 #, fuzzy, c-format
#: lib/libalpm/diskspace.c:131 lib/libalpm/dload.c:823 lib/libalpm/util.c:254 msgid "unknown install reason for package %s: %s\n"
#: lib/libalpm/util.c:270 msgstr "tipo de validación desconocida para el paquete %s: %s\n"
#: lib/libalpm/be_local.c:743 lib/libalpm/be_local.c:856
#: lib/libalpm/be_local.c:996 lib/libalpm/be_local.c:1102
#: lib/libalpm/diskspace.c:135 lib/libalpm/dload.c:792 lib/libalpm/util.c:273
#: lib/libalpm/util.c:289
#, c-format #, c-format
msgid "could not open file %s: %s\n" msgid "could not open file %s: %s\n"
msgstr "no se pudo abrir el archivo %s: %s\n" msgstr "no se pudo abrir el archivo %s: %s\n"
#: lib/libalpm/be_local.c:738 lib/libalpm/be_sync.c:582 #: lib/libalpm/be_local.c:759 lib/libalpm/be_sync.c:612
#, c-format #, c-format
msgid "%s database is inconsistent: name mismatch on package %s\n" msgid "%s database is inconsistent: name mismatch on package %s\n"
msgstr "" msgstr ""
"la base de datos %s es inconsistente: nombre mal emparejado en el paquete " "la base de datos %s es inconsistente: nombre mal emparejado en el paquete "
"%s\n" "%s\n"
#: lib/libalpm/be_local.c:744 lib/libalpm/be_sync.c:588 #: lib/libalpm/be_local.c:765 lib/libalpm/be_sync.c:618
#, c-format #, c-format
msgid "%s database is inconsistent: version mismatch on package %s\n" msgid "%s database is inconsistent: version mismatch on package %s\n"
msgstr "" msgstr ""
"la base de datos %s es inconsistente: versión mal emparejada en el paquete " "la base de datos %s es inconsistente: versión mal emparejada en el paquete "
"%s\n" "%s\n"
#: lib/libalpm/be_local.c:785 #: lib/libalpm/be_local.c:806
#, c-format #, c-format
msgid "unknown validation type for package %s: %s\n" msgid "unknown validation type for package %s: %s\n"
msgstr "tipo de validación desconocida para el paquete %s: %s\n" msgstr "tipo de validación desconocida para el paquete %s: %s\n"
#: lib/libalpm/be_package.c:478 lib/libalpm/be_package.c:631 #: lib/libalpm/be_local.c:841
#: lib/libalpm/be_package.c:643 #, c-format
msgid "%s: unknown key '%s' in local database\n"
msgstr ""
#: lib/libalpm/be_package.c:255
#, c-format
msgid "%s: unknown key '%s' in package description\n"
msgstr ""
#: lib/libalpm/be_package.c:482 lib/libalpm/be_package.c:635
#: lib/libalpm/be_package.c:647
#, c-format #, c-format
msgid "error while reading package %s: %s\n" msgid "error while reading package %s: %s\n"
msgstr "error mientras se leía el paquete %s: %s\n" msgstr "error mientras se leía el paquete %s: %s\n"
#: lib/libalpm/be_package.c:491 lib/libalpm/be_package.c:514 #: lib/libalpm/be_package.c:495 lib/libalpm/be_package.c:518
#, c-format #, c-format
msgid "error while reading mtree of package %s: %s\n" msgid "error while reading mtree of package %s: %s\n"
msgstr "error al leer mtree del paquete %s: %s\n" msgstr "error al leer mtree del paquete %s: %s\n"
#: lib/libalpm/be_package.c:597 #: lib/libalpm/be_package.c:601
#, c-format #, c-format
msgid "could not parse package description file in %s\n" msgid "could not parse package description file in %s\n"
msgstr "no se pudo analizar el archivo de descripción del paquete en %s\n" msgstr "no se pudo analizar el archivo de descripción del paquete en %s\n"
#: lib/libalpm/be_package.c:602 #: lib/libalpm/be_package.c:606
#, c-format #, c-format
msgid "missing package name in %s\n" msgid "missing package name in %s\n"
msgstr "falta el nombre del paquete en %s\n" msgstr "falta el nombre del paquete en %s\n"
#: lib/libalpm/be_package.c:606 #: lib/libalpm/be_package.c:610
#, c-format #, c-format
msgid "missing package version in %s\n" msgid "missing package version in %s\n"
msgstr "falta la versión del paquete en %s\n" msgstr "falta la versión del paquete en %s\n"
#: lib/libalpm/be_package.c:610 #: lib/libalpm/be_package.c:614
#, c-format #, c-format
msgid "invalid package version in %s\n" msgid "invalid package version in %s\n"
msgstr "versión del paquete no válida en %s\n" msgstr "versión del paquete no válida en %s\n"
#: lib/libalpm/be_package.c:649 #: lib/libalpm/be_package.c:653
#, c-format #, c-format
msgid "missing package metadata in %s\n" msgid "missing package metadata in %s\n"
msgstr "faltan los metadatos del paquete en %s\n" msgstr "faltan los metadatos del paquete en %s\n"
#: lib/libalpm/be_package.c:741 #: lib/libalpm/be_package.c:745
#, c-format #, c-format
msgid "failed to read signature file: %s\n" msgid "failed to read signature file: %s\n"
msgstr "no se pudo leer correctamente el archivo de firma: %s\n" msgstr "no se pudo leer correctamente el archivo de firma: %s\n"
#: lib/libalpm/be_package.c:770 lib/libalpm/sync.c:953 #: lib/libalpm/be_package.c:768 lib/libalpm/sync.c:976
#, c-format #, c-format
msgid "required key missing from keyring\n" msgid "required key missing from keyring\n"
msgstr "la clave requerida no está presente en el llavero\n" msgstr "la clave requerida no está presente en el llavero\n"
@ -250,38 +266,43 @@ msgstr "la clave requerida no está presente en el llavero\n"
msgid "removing invalid file: %s\n" msgid "removing invalid file: %s\n"
msgstr "eliminando archivo no válido: %s\n" msgstr "eliminando archivo no válido: %s\n"
#: lib/libalpm/be_sync.c:449 #: lib/libalpm/be_sync.c:471
#, c-format #, c-format
msgid "could not parse package description file '%s' from db '%s'\n" msgid "could not parse package description file '%s' from db '%s'\n"
msgstr "" msgstr ""
"no se pudo analizar el archivo de descripción del paquete «%s» de la base de " "no se pudo analizar el archivo de descripción del paquete «%s» de la base de "
"datos «%s»\n" "datos «%s»\n"
#: lib/libalpm/be_sync.c:456 #: lib/libalpm/be_sync.c:486
#, c-format #, c-format
msgid "could not read db '%s' (%s)\n" msgid "could not read db '%s' (%s)\n"
msgstr "" msgstr ""
#: lib/libalpm/be_sync.c:489 lib/libalpm/be_sync.c:494 #: lib/libalpm/be_sync.c:519 lib/libalpm/be_sync.c:524
#, c-format #, c-format
msgid "%s database is inconsistent: filename of package %s is illegal\n" msgid "%s database is inconsistent: filename of package %s is illegal\n"
msgstr "" msgstr ""
"la base de datos %s es inconsistente: el nombre del archivo del paquete %s " "la base de datos %s es inconsistente: el nombre del archivo del paquete %s "
"es ilegal\n" "es ilegal\n"
#: lib/libalpm/be_sync.c:499 #: lib/libalpm/be_sync.c:529
#, c-format #, c-format
msgid "%s database is inconsistent: filename of package %s is too long\n" msgid "%s database is inconsistent: filename of package %s is too long\n"
msgstr "" msgstr ""
"la base de datos %s es inconsistente: el nombre del archivo del paquete %s " "la base de datos %s es inconsistente: el nombre del archivo del paquete %s "
"es demasiado largo\n" "es demasiado largo\n"
#: lib/libalpm/be_sync.c:564 #: lib/libalpm/be_sync.c:594
#, c-format #, c-format
msgid "unknown database file: %s\n" msgid "unknown database file: %s\n"
msgstr "archivo de base de datos desconocido: %s\n" msgstr "archivo de base de datos desconocido: %s\n"
#: lib/libalpm/db.c:344 #: lib/libalpm/be_sync.c:712
#, c-format
msgid "%s: unknown key '%s' in sync database\n"
msgstr ""
#: lib/libalpm/db.c:413
#, c-format #, c-format
msgid "database path is undefined\n" msgid "database path is undefined\n"
msgstr "la ruta de la base de datos no está definida\n" msgstr "la ruta de la base de datos no está definida\n"
@ -323,109 +344,124 @@ msgstr ""
msgid "could not open file: %s: %s\n" msgid "could not open file: %s: %s\n"
msgstr "No se pudo abrir el archivo: %s: %s\n" msgstr "No se pudo abrir el archivo: %s: %s\n"
#: lib/libalpm/diskspace.c:146 lib/libalpm/diskspace.c:159 #: lib/libalpm/diskspace.c:154 lib/libalpm/diskspace.c:167
#, c-format #, c-format
msgid "could not get filesystem information\n" msgid "could not get filesystem information\n"
msgstr "no se pudo obtener información del sistema de archivos\n" msgstr "no se pudo obtener información del sistema de archivos\n"
#: lib/libalpm/diskspace.c:242 #: lib/libalpm/diskspace.c:254
#, c-format #, c-format
msgid "could not get file information for %s\n" msgid "could not get file information for %s\n"
msgstr "no se pudo obtener información del archivo %s\n" msgstr "no se pudo obtener información del archivo %s\n"
#: lib/libalpm/diskspace.c:256 lib/libalpm/diskspace.c:315 #: lib/libalpm/diskspace.c:268 lib/libalpm/diskspace.c:327
#, c-format #, c-format
msgid "could not determine mount point for file %s\n" msgid "could not determine mount point for file %s\n"
msgstr "no se pudo determinar el punto de montaje para el archivo %s\n" msgstr "no se pudo determinar el punto de montaje para el archivo %s\n"
#: lib/libalpm/diskspace.c:354 #: lib/libalpm/diskspace.c:366
#, c-format #, c-format
msgid "Partition %s too full: %jd blocks needed, %ju blocks free\n" msgid "Partition %s too full: %jd blocks needed, %ju blocks free\n"
msgstr "" msgstr ""
"Partición %s demasiado llena: se necesitan %jd bloques, hay %ju bloques " "Partición %s demasiado llena: se necesitan %jd bloques, hay %ju bloques "
"libres\n" "libres\n"
#: lib/libalpm/diskspace.c:379 lib/libalpm/diskspace.c:433 #: lib/libalpm/diskspace.c:391 lib/libalpm/diskspace.c:445
#, c-format #, c-format
msgid "could not determine filesystem mount points\n" msgid "could not determine filesystem mount points\n"
msgstr "no se puede determinar el punto de montaje del sistema de archivos\n" msgstr "no se puede determinar el punto de montaje del sistema de archivos\n"
#: lib/libalpm/diskspace.c:385 #: lib/libalpm/diskspace.c:397
#, c-format #, c-format
msgid "could not determine cachedir mount point %s\n" msgid "could not determine cachedir mount point %s\n"
msgstr "" msgstr ""
"no se pudo determinar el punto de montaje del directorio de la memoria caché " "no se pudo determinar el punto de montaje del directorio de la memoria caché "
"%s\n" "%s\n"
#: lib/libalpm/diskspace.c:438 #: lib/libalpm/diskspace.c:450
#, c-format #, c-format
msgid "could not determine root mount point %s\n" msgid "could not determine root mount point %s\n"
msgstr "no se pudo determinar el punto de montaje de la raíz %s\n" msgstr "no se pudo determinar el punto de montaje de la raíz %s\n"
#: lib/libalpm/diskspace.c:486 #: lib/libalpm/diskspace.c:498
#, c-format #, c-format
msgid "Partition %s is mounted read only\n" msgid "Partition %s is mounted read only\n"
msgstr "La partición %s está montada como solamente lectura\n" msgstr "La partición %s está montada como solamente lectura\n"
#: lib/libalpm/dload.c:116 #: lib/libalpm/dload.c:107
#, c-format
msgid "failed to create temporary file for download\n"
msgstr "no se pudo crear el archivo temporal para la descarga\n"
#: lib/libalpm/dload.c:198
#, c-format #, c-format
msgid "" msgid ""
"too many errors from %s, skipping for the remainder of this transaction\n" "too many errors from %s, skipping for the remainder of this transaction\n"
msgstr "" msgstr ""
#: lib/libalpm/dload.c:220 #: lib/libalpm/dload.c:215
#, c-format
msgid "fatal error from %s, skipping for the remainder of this transaction\n"
msgstr ""
#: lib/libalpm/dload.c:310
#, c-format #, c-format
msgid "disk" msgid "disk"
msgstr "disco" msgstr "disco"
#: lib/libalpm/dload.c:392 #: lib/libalpm/dload.c:532 lib/libalpm/dload.c:570 lib/libalpm/dload.c:583
#, c-format
msgid "failed to create temporary file for download\n"
msgstr "no se pudo crear el archivo temporal para la descarga\n"
#: lib/libalpm/dload.c:509 lib/libalpm/dload.c:547 lib/libalpm/dload.c:561
#, c-format #, c-format
msgid "failed retrieving file '%s' from %s : %s\n" msgid "failed retrieving file '%s' from %s : %s\n"
msgstr "no se pudo obtener el archivo «%s» desde %s: %s\n" msgstr "no se pudo obtener el archivo «%s» desde %s: %s\n"
#: lib/libalpm/dload.c:539 #: lib/libalpm/dload.c:562
#, c-format #, c-format
msgid "failed retrieving file '%s' from %s : expected download size exceeded\n" msgid "failed retrieving file '%s' from %s : expected download size exceeded\n"
msgstr "" msgstr ""
"no se pudo obtener el archivo «%s» desde %s : tamaño de la descarga superior " "no se pudo obtener el archivo «%s» desde %s : tamaño de la descarga superior "
"del esperado\n" "del esperado\n"
#: lib/libalpm/dload.c:687 #: lib/libalpm/dload.c:685
#, c-format #, c-format
msgid "%s appears to be truncated: %jd/%jd bytes\n" msgid "%s appears to be truncated: %jd/%jd bytes\n"
msgstr "%s parece estar incompleto: %jd/%jd bytes\n" msgstr "%s parece estar incompleto: %jd/%jd bytes\n"
#: lib/libalpm/dload.c:787 #: lib/libalpm/dload.c:776
#, c-format #, c-format
msgid "url '%s' is invalid\n" msgid "url '%s' is invalid\n"
msgstr "la dirección «%s» no es válida\n" msgstr "la dirección «%s» no es válida\n"
#: lib/libalpm/dload.c:893 #: lib/libalpm/dload.c:864
#, c-format #, c-format
msgid "failed to setup a download payload for %s\n" msgid "failed to setup a download payload for %s\n"
msgstr "" msgstr ""
#: lib/libalpm/dload.c:905 #: lib/libalpm/dload.c:876
#, c-format #, c-format
msgid "curl returned error %d from transfer\n" msgid "curl returned error %d from transfer\n"
msgstr "" msgstr ""
#: lib/libalpm/dload.c:929 #: lib/libalpm/dload.c:900
#, c-format #, c-format
msgid "curl transfer error: %d\n" msgid "curl transfer error: %d\n"
msgstr "" msgstr ""
#: lib/libalpm/dload.c:1055 lib/libalpm/sync.c:840 #: lib/libalpm/dload.c:963
#, fuzzy, c-format
msgid "could not chdir to download directory %s\n"
msgstr "no se pudo cambiar el directorio raíz (%s)\n"
#: lib/libalpm/dload.c:968
#, c-format
msgid "switching to sandbox user '%s' failed!\n"
msgstr ""
#: lib/libalpm/dload.c:1361 lib/libalpm/sync.c:861
#, c-format #, c-format
msgid "failed to retrieve some files\n" msgid "failed to retrieve some files\n"
msgstr "no se pudieron recibir algunos archivos\n" msgstr "no se pudieron recibir algunos archivos\n"
#: lib/libalpm/dload.c:1078 #: lib/libalpm/dload.c:1384
#, c-format #, c-format
msgid "download completed successfully but no file in the cache\n" msgid "download completed successfully but no file in the cache\n"
msgstr "" msgstr ""
@ -701,12 +737,12 @@ msgstr ""
msgid "unexpected error" msgid "unexpected error"
msgstr "error inesperado" msgstr "error inesperado"
#: lib/libalpm/handle.c:142 #: lib/libalpm/handle.c:165
#, c-format #, c-format
msgid "lock file missing %s\n" msgid "lock file missing %s\n"
msgstr "falta el archivo de bloqueo %s\n" msgstr "falta el archivo de bloqueo %s\n"
#: lib/libalpm/handle.c:148 #: lib/libalpm/handle.c:171
#, c-format #, c-format
msgid "could not remove lock file %s\n" msgid "could not remove lock file %s\n"
msgstr "no se pudo eliminar el archivo de bloqueo %s\n" msgstr "no se pudo eliminar el archivo de bloqueo %s\n"
@ -788,7 +824,7 @@ msgstr "no se pudo abrir el directorio: %s: %s\n"
msgid "could not open file: %s%s: %s\n" msgid "could not open file: %s%s: %s\n"
msgstr "" msgstr ""
#: lib/libalpm/hook.c:595 lib/libalpm/util.c:260 #: lib/libalpm/hook.c:595 lib/libalpm/util.c:279
#, c-format #, c-format
msgid "could not stat file %s: %s\n" msgid "could not stat file %s: %s\n"
msgstr "no se pudo recuperar la información del archivo %s: %s\n" msgstr "no se pudo recuperar la información del archivo %s: %s\n"
@ -798,12 +834,44 @@ msgstr "no se pudo recuperar la información del archivo %s: %s\n"
msgid "could not read directory: %s: %s\n" msgid "could not read directory: %s: %s\n"
msgstr "" msgstr ""
#: lib/libalpm/package.c:598 #: lib/libalpm/package.c:614
#, c-format #, c-format
msgid "could not fully load metadata for package %s-%s\n" msgid "could not fully load metadata for package %s-%s\n"
msgstr "" msgstr ""
"no se pudieron cargar completamente los metadatos para el paquete %s-%s\n" "no se pudieron cargar completamente los metadatos para el paquete %s-%s\n"
#: lib/libalpm/package.c:869
#, c-format
msgid "invalid package metadata (name or version missing)"
msgstr ""
#: lib/libalpm/package.c:874
#, c-format
msgid ""
"invalid metadata for package %s-%s (package name cannot start with '.' or "
"'-')\n"
msgstr ""
#: lib/libalpm/package.c:878
#, c-format
msgid ""
"invalid metadata for package %s-%s (package name contains invalid "
"characters)\n"
msgstr ""
#: lib/libalpm/package.c:885 lib/libalpm/package.c:889
#, c-format
msgid ""
"invalid metadata for package %s-%s (package version contains invalid "
"characters)\n"
msgstr ""
#: lib/libalpm/package.c:895
#, c-format
msgid ""
"invalid metadata for package %s-%s (package name and version too long)\n"
msgstr ""
#: lib/libalpm/remove.c:111 #: lib/libalpm/remove.c:111
#, c-format #, c-format
msgid "could not find %s in database -- skipping\n" msgid "could not find %s in database -- skipping\n"
@ -824,17 +892,17 @@ msgstr "no se pudo quitar el archivo «%s»: %s\n"
msgid "could not backup %s due to PATH_MAX overflow\n" msgid "could not backup %s due to PATH_MAX overflow\n"
msgstr "" msgstr ""
#: lib/libalpm/remove.c:554 #: lib/libalpm/remove.c:570
#, c-format #, c-format
msgid "cannot remove %s (%s)\n" msgid "cannot remove %s (%s)\n"
msgstr "no se pudo eliminar %s (%s)\n" msgstr "no se pudo eliminar %s (%s)\n"
#: lib/libalpm/remove.c:727 #: lib/libalpm/remove.c:743
#, c-format #, c-format
msgid "could not remove database entry %s-%s\n" msgid "could not remove database entry %s-%s\n"
msgstr "no se pudo quitar la entrada %s-%s de la base de datos\n" msgstr "no se pudo quitar la entrada %s-%s de la base de datos\n"
#: lib/libalpm/remove.c:732 #: lib/libalpm/remove.c:748
#, c-format #, c-format
msgid "could not remove entry '%s' from cache\n" msgid "could not remove entry '%s' from cache\n"
msgstr "no se pudo quitar la entrada «%s» de la caché\n" msgstr "no se pudo quitar la entrada «%s» de la caché\n"
@ -844,89 +912,89 @@ msgstr "no se pudo quitar la entrada «%s» de la caché\n"
msgid "Public keyring not found; have you run '%s'?\n" msgid "Public keyring not found; have you run '%s'?\n"
msgstr "" msgstr ""
#: lib/libalpm/signing.c:199 lib/libalpm/signing.c:767 #: lib/libalpm/signing.c:199 lib/libalpm/signing.c:773
#, c-format #, c-format
msgid "GPGME error: %s\n" msgid "GPGME error: %s\n"
msgstr "" msgstr ""
#: lib/libalpm/signing.c:274 #: lib/libalpm/signing.c:275
#, c-format #, c-format
msgid "looking up key %s using WKD\n" msgid "looking up key %s using WKD\n"
msgstr "" msgstr ""
#: lib/libalpm/signing.c:283 #: lib/libalpm/signing.c:289
#, c-format #, c-format
msgid "gpg error: %s\n" msgid "gpg error: %s\n"
msgstr "" msgstr ""
#: lib/libalpm/signing.c:430 lib/libalpm/signing.c:503 #: lib/libalpm/signing.c:440 lib/libalpm/signing.c:513
#, c-format #, c-format
msgid "keyring is not writable\n" msgid "keyring is not writable\n"
msgstr "" msgstr ""
#: lib/libalpm/signing.c:531 #: lib/libalpm/signing.c:537
#, c-format #, c-format
msgid "key \"%s\" on keyserver\n" msgid "key \"%s\" on keyserver\n"
msgstr "" msgstr ""
#: lib/libalpm/signing.c:536 #: lib/libalpm/signing.c:542
#, c-format #, c-format
msgid "key \"%s\" could not be imported\n" msgid "key \"%s\" could not be imported\n"
msgstr "" msgstr ""
#: lib/libalpm/signing.c:540 #: lib/libalpm/signing.c:546
#, c-format #, c-format
msgid "key \"%s\" could not be looked up remotely\n" msgid "key \"%s\" could not be looked up remotely\n"
msgstr "" msgstr ""
#: lib/libalpm/signing.c:926 lib/libalpm/sync.c:1022 #: lib/libalpm/signing.c:932 lib/libalpm/sync.c:1052
#, c-format #, c-format
msgid "%s: missing required signature\n" msgid "%s: missing required signature\n"
msgstr "%s: falta la firma exigida\n" msgstr "%s: falta la firma exigida\n"
#: lib/libalpm/signing.c:941 #: lib/libalpm/signing.c:947
#, c-format #, c-format
msgid "%s: signature from \"%s\" is marginal trust\n" msgid "%s: signature from \"%s\" is marginal trust\n"
msgstr "" msgstr ""
#: lib/libalpm/signing.c:949 #: lib/libalpm/signing.c:955
#, c-format #, c-format
msgid "%s: signature from \"%s\" is unknown trust\n" msgid "%s: signature from \"%s\" is unknown trust\n"
msgstr "" msgstr ""
#: lib/libalpm/signing.c:956 #: lib/libalpm/signing.c:962
#, c-format #, c-format
msgid "%s: signature from \"%s\" should never be trusted\n" msgid "%s: signature from \"%s\" should never be trusted\n"
msgstr "" msgstr ""
#: lib/libalpm/signing.c:968 #: lib/libalpm/signing.c:974
#, c-format #, c-format
msgid "%s: key \"%s\" is unknown\n" msgid "%s: key \"%s\" is unknown\n"
msgstr "" msgstr ""
#: lib/libalpm/signing.c:977 #: lib/libalpm/signing.c:983
#, c-format #, c-format
msgid "%s: key \"%s\" is disabled\n" msgid "%s: key \"%s\" is disabled\n"
msgstr "" msgstr ""
#: lib/libalpm/signing.c:981 #: lib/libalpm/signing.c:987
#, c-format #, c-format
msgid "%s: signature from \"%s\" is expired\n" msgid "%s: signature from \"%s\" is expired\n"
msgstr "" msgstr ""
#: lib/libalpm/signing.c:985 #: lib/libalpm/signing.c:991
#, c-format #, c-format
msgid "%s: signature from \"%s\" is invalid\n" msgid "%s: signature from \"%s\" is invalid\n"
msgstr "" msgstr ""
#: lib/libalpm/signing.c:1043 lib/libalpm/signing.c:1104 #: lib/libalpm/signing.c:1049 lib/libalpm/signing.c:1110
#: lib/libalpm/signing.c:1183 #: lib/libalpm/signing.c:1189
#, c-format #, c-format
msgid "%s: signature format error\n" msgid "%s: signature format error\n"
msgstr "" msgstr ""
#: lib/libalpm/signing.c:1136 lib/libalpm/signing.c:1169 #: lib/libalpm/signing.c:1142 lib/libalpm/signing.c:1175
#: lib/libalpm/signing.c:1177 #: lib/libalpm/signing.c:1183
#, c-format #, c-format
msgid "%s: unsupported signature format\n" msgid "%s: unsupported signature format\n"
msgstr "" msgstr ""
@ -961,119 +1029,122 @@ msgstr "ignorando el remplazo del paquete (%s-%s => %s-%s)\n"
msgid "cannot replace %s by %s\n" msgid "cannot replace %s by %s\n"
msgstr "no se pudo remplazar el archivo %s por %s\n" msgstr "no se pudo remplazar el archivo %s por %s\n"
#: lib/libalpm/sync.c:476 #: lib/libalpm/sync.c:477
#, c-format #, c-format
msgid "packages %s and %s have the same filename: %s\n" msgid "packages %s and %s have the same filename: %s\n"
msgstr "" msgstr ""
#: lib/libalpm/sync.c:542 lib/libalpm/sync.c:612 #: lib/libalpm/sync.c:546 lib/libalpm/sync.c:618
#, c-format #, c-format
msgid "unresolvable package conflicts detected\n" msgid "unresolvable package conflicts detected\n"
msgstr "se han detectado paquetes con conflictos irresolubles\n" msgstr "se han detectado paquetes con conflictos irresolubles\n"
#: lib/libalpm/sync.c:562 #: lib/libalpm/sync.c:566
#, c-format #, c-format
msgid "removing '%s' from target list because it conflicts with '%s'\n" msgid "removing '%s-%s' from target list because it conflicts with '%s-%s'\n"
msgstr "" msgstr ""
"quitando «%s» de la lista de objetivos debido a que tiene conflictos con "
"«%s»\n"
#: lib/libalpm/sync.c:1036 #: lib/libalpm/sync.c:1020 lib/libalpm/sync.c:1187
#, c-format
msgid "%s: could not find package in cache\n"
msgstr ""
#: lib/libalpm/sync.c:1066
#, c-format #, c-format
msgid "failed to read file %s: %s\n" msgid "failed to read file %s: %s\n"
msgstr "" msgstr ""
#: lib/libalpm/sync.c:1223 #: lib/libalpm/sync.c:1324
#, c-format #, c-format
msgid "not enough free disk space\n" msgid "not enough free disk space\n"
msgstr "no hay suficiente espacio libre en el disco\n" msgstr "no hay suficiente espacio libre en el disco\n"
#: lib/libalpm/sync.c:1245 #: lib/libalpm/sync.c:1346
#, c-format #, c-format
msgid "could not commit removal transaction\n" msgid "could not commit removal transaction\n"
msgstr "no se pudo realizar la operación de eliminación\n" msgstr "no se pudo realizar la operación de eliminación\n"
#: lib/libalpm/sync.c:1253 #: lib/libalpm/sync.c:1354
#, c-format #, c-format
msgid "could not commit transaction\n" msgid "could not commit transaction\n"
msgstr "no se pudo realizar la operación\n" msgstr "no se pudo realizar la operación\n"
#: lib/libalpm/trans.c:365 #: lib/libalpm/trans.c:369
#, c-format #, c-format
msgid "could not create temp directory\n" msgid "could not create temp directory\n"
msgstr "no se pudo crear el directorio temporal\n" msgstr "no se pudo crear el directorio temporal\n"
#: lib/libalpm/trans.c:380 #: lib/libalpm/trans.c:384
#, c-format #, c-format
msgid "could not copy tempfile to %s (%s)\n" msgid "could not copy tempfile to %s (%s)\n"
msgstr "no se pudo copiar el archivo temporal a %s (%s)\n" msgstr "no se pudo copiar el archivo temporal a %s (%s)\n"
#: lib/libalpm/trans.c:411 #: lib/libalpm/trans.c:415
#, c-format #, c-format
msgid "could not remove %s\n" msgid "could not remove %s\n"
msgstr "no se pudo eliminar %s\n" msgstr "no se pudo eliminar %s\n"
#: lib/libalpm/trans.c:415 #: lib/libalpm/trans.c:419
#, c-format #, c-format
msgid "could not remove tmpdir %s\n" msgid "could not remove tmpdir %s\n"
msgstr "no se pudo eliminar el directorio temporal %s\n" msgstr "no se pudo eliminar el directorio temporal %s\n"
#: lib/libalpm/util.c:488 #: lib/libalpm/util.c:512
#, c-format #, c-format
msgid "unable to write to pipe (%s)\n" msgid "unable to write to pipe (%s)\n"
msgstr "no se pudo escribir en la tubería (%s)\n" msgstr "no se pudo escribir en la tubería (%s)\n"
#: lib/libalpm/util.c:547 #: lib/libalpm/util.c:571
#, c-format #, c-format
msgid "unable to read from pipe (%s)\n" msgid "unable to read from pipe (%s)\n"
msgstr "no se pudo leer de la tubería (%s)\n" msgstr "no se pudo leer de la tubería (%s)\n"
#: lib/libalpm/util.c:617 lib/libalpm/util.c:623 #: lib/libalpm/util.c:641 lib/libalpm/util.c:647
#, c-format #, c-format
msgid "could not create pipe (%s)\n" msgid "could not create pipe (%s)\n"
msgstr "no se pudo crear la tubería (%s)\n" msgstr "no se pudo crear la tubería (%s)\n"
#: lib/libalpm/util.c:631 #: lib/libalpm/util.c:655
#, c-format #, c-format
msgid "could not fork a new process (%s)\n" msgid "could not fork a new process (%s)\n"
msgstr "no se pudo crear un nuevo proceso (%s)\n" msgstr "no se pudo crear un nuevo proceso (%s)\n"
#: lib/libalpm/util.c:654 #: lib/libalpm/util.c:680
#, c-format #, c-format
msgid "could not change the root directory (%s)\n" msgid "could not change the root directory (%s)\n"
msgstr "no se pudo cambiar el directorio raíz (%s)\n" msgstr "no se pudo cambiar el directorio raíz (%s)\n"
#: lib/libalpm/util.c:666 #: lib/libalpm/util.c:700
#, c-format #, c-format
msgid "call to execv failed (%s)\n" msgid "call to execv failed (%s)\n"
msgstr "llamada a execv fallida (%s)\n" msgstr "llamada a execv fallida (%s)\n"
#: lib/libalpm/util.c:745 #: lib/libalpm/util.c:779
#, c-format #, c-format
msgid "call to waitpid failed (%s)\n" msgid "call to waitpid failed (%s)\n"
msgstr "llamada a waitpid fallida (%s)\n" msgstr "llamada a waitpid fallida (%s)\n"
#: lib/libalpm/util.c:755 #: lib/libalpm/util.c:789
#, c-format #, c-format
msgid "command failed to execute correctly\n" msgid "command failed to execute correctly\n"
msgstr "la orden no se ejecutó correctamente\n" msgstr "la orden no se ejecutó correctamente\n"
#: lib/libalpm/util.c:762 #: lib/libalpm/util.c:796
#, c-format #, c-format
msgid "Unknown signal" msgid "Unknown signal"
msgstr "firma desconocida" msgstr "firma desconocida"
#: lib/libalpm/util.c:764 #: lib/libalpm/util.c:798
#, c-format #, c-format
msgid "command terminated by signal %d: %s\n" msgid "command terminated by signal %d: %s\n"
msgstr "orden terminada por la señal %d: %s\n" msgstr "orden terminada por la señal %d: %s\n"
#: lib/libalpm/util.c:875 #: lib/libalpm/util.c:916
#, c-format #, c-format
msgid "no %s cache exists, creating...\n" msgid "no %s cache exists, creating...\n"
msgstr "no existe la caché de %s, creándola…\n" msgstr "no existe la caché de %s, creándola…\n"
#: lib/libalpm/util.c:906 #: lib/libalpm/util.c:947
#, c-format #, c-format
msgid "couldn't find or create package cache, using %s instead\n" msgid "couldn't find or create package cache, using %s instead\n"
msgstr "" msgstr ""

View file

@ -8,11 +8,11 @@
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Arch Linux Pacman package manager\n" "Project-Id-Version: Arch Linux Pacman package manager\n"
"Report-Msgid-Bugs-To: http://bugs.archlinux.org/index.php?project=3\n" "Report-Msgid-Bugs-To: https://gitlab.archlinux.org/pacman/pacman/-/issues\n"
"POT-Creation-Date: 2021-09-04 16:15+1000\n" "POT-Creation-Date: 2024-07-14 19:10+1000\n"
"PO-Revision-Date: 2021-05-20 02:25+0000\n" "PO-Revision-Date: 2010-11-29 23:17+0000\n"
"Last-Translator: Allan McRae <allan@archlinux.org>\n" "Last-Translator: Osoitz <oelkoro@gmail.com>, 2013\n"
"Language-Team: Basque (http://www.transifex.com/toofishes/archlinux-pacman/" "Language-Team: Basque (http://app.transifex.com/toofishes/archlinux-pacman/"
"language/eu/)\n" "language/eu/)\n"
"Language: eu\n" "Language: eu\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
@ -40,17 +40,17 @@ msgstr "bertsio zahartzen %s paketea (%s => %s)\n"
msgid "cannot allocate disk archive object" msgid "cannot allocate disk archive object"
msgstr "ezin da artxibo-objektua esleitu" msgstr "ezin da artxibo-objektua esleitu"
#: lib/libalpm/add.c:143 lib/libalpm/util.c:384 #: lib/libalpm/add.c:143 lib/libalpm/util.c:408
#, c-format #, c-format
msgid "warning given when extracting %s (%s)\n" msgid "warning given when extracting %s (%s)\n"
msgstr "oharra eman da %s erauztean (%s)\n" msgstr "oharra eman da %s erauztean (%s)\n"
#: lib/libalpm/add.c:146 lib/libalpm/util.c:387 #: lib/libalpm/add.c:146 lib/libalpm/util.c:411
#, c-format #, c-format
msgid "could not extract %s (%s)\n" msgid "could not extract %s (%s)\n"
msgstr "ezin izan da %s erauzi (%s)\n" msgstr "ezin izan da %s erauzi (%s)\n"
#: lib/libalpm/add.c:159 lib/libalpm/dload.c:709 lib/libalpm/remove.c:534 #: lib/libalpm/add.c:159 lib/libalpm/dload.c:707 lib/libalpm/remove.c:550
#, c-format #, c-format
msgid "could not rename %s to %s (%s)\n" msgid "could not rename %s to %s (%s)\n"
msgstr "ezin izan da %s berrizendatu %s gisa (%s)\n" msgstr "ezin izan da %s berrizendatu %s gisa (%s)\n"
@ -96,18 +96,18 @@ msgstr "erauzi: ez da direktorioa %s fitxategiarekin gainidatziko\n"
msgid "unable to extract %s.pacnew: path too long" msgid "unable to extract %s.pacnew: path too long"
msgstr "ezin izan da %s.pacnew erauzi: bidea luzeegia da" msgstr "ezin izan da %s.pacnew erauzi: bidea luzeegia da"
#: lib/libalpm/add.c:510 lib/libalpm/util.c:335 lib/libalpm/util.c:600 #: lib/libalpm/add.c:510 lib/libalpm/util.c:354 lib/libalpm/util.c:624
#, c-format #, c-format
msgid "could not get current working directory\n" msgid "could not get current working directory\n"
msgstr "ezin izan da uneko lan direktorioa lortu\n" msgstr "ezin izan da uneko lan direktorioa lortu\n"
#: lib/libalpm/add.c:515 lib/libalpm/util.c:340 lib/libalpm/util.c:605 #: lib/libalpm/add.c:515 lib/libalpm/util.c:359 lib/libalpm/util.c:629
#: lib/libalpm/util.c:658 #: lib/libalpm/util.c:684
#, c-format #, c-format
msgid "could not change directory to %s (%s)\n" msgid "could not change directory to %s (%s)\n"
msgstr "ezin izan da direktorioa hona aldatu %s (%s)\n" msgstr "ezin izan da direktorioa hona aldatu %s (%s)\n"
#: lib/libalpm/add.c:571 lib/libalpm/util.c:405 lib/libalpm/util.c:774 #: lib/libalpm/add.c:571 lib/libalpm/util.c:429 lib/libalpm/util.c:808
#, c-format #, c-format
msgid "could not restore working directory (%s)\n" msgid "could not restore working directory (%s)\n"
msgstr "ezin izan da laneko direktorioa berreskuratu (%s)\n" msgstr "ezin izan da laneko direktorioa berreskuratu (%s)\n"
@ -132,103 +132,118 @@ msgstr "ezin izan da datu-base sarrera eguneratu %s-%s\n"
msgid "could not add entry '%s' in cache\n" msgid "could not add entry '%s' in cache\n"
msgstr "ezin izan da '%s' sarrera katxean gehitu\n" msgstr "ezin izan da '%s' sarrera katxean gehitu\n"
#: lib/libalpm/be_local.c:266 #: lib/libalpm/be_local.c:271
#, c-format #, c-format
msgid "error while reading file %s: %s\n" msgid "error while reading file %s: %s\n"
msgstr "errorea %s fitxategia irakurtzean: %s\n" msgstr "errorea %s fitxategia irakurtzean: %s\n"
#: lib/libalpm/be_local.c:376 #: lib/libalpm/be_local.c:382
#, c-format #, c-format
msgid "removing invalid database: %s\n" msgid "removing invalid database: %s\n"
msgstr "datu-base baliogabea ezabatzen:%s\n" msgstr "datu-base baliogabea ezabatzen:%s\n"
#: lib/libalpm/be_local.c:427 lib/libalpm/be_local.c:909 #: lib/libalpm/be_local.c:433 lib/libalpm/be_local.c:947
#, c-format #, c-format
msgid "could not create directory %s: %s\n" msgid "could not create directory %s: %s\n"
msgstr "" msgstr ""
"ezin izan da %s direktorioa sortu: %s\n" "ezin izan da %s direktorioa sortu: %s\n"
"\n" "\n"
#: lib/libalpm/be_local.c:602 lib/libalpm/be_sync.c:322 #: lib/libalpm/be_local.c:608 lib/libalpm/be_sync.c:339
#, c-format #, c-format
msgid "invalid name for database entry '%s'\n" msgid "invalid name for database entry '%s'\n"
msgstr "izen baliogabea '%s' datu-base sarreran\n" msgstr "izen baliogabea '%s' datu-base sarreran\n"
#: lib/libalpm/be_local.c:610 #: lib/libalpm/be_local.c:616
#, c-format #, c-format
msgid "duplicated database entry '%s'\n" msgid "duplicated database entry '%s'\n"
msgstr "bikoiztutako datu-base sarrera '%s'\n" msgstr "bikoiztutako datu-base sarrera '%s'\n"
#: lib/libalpm/be_local.c:622 #: lib/libalpm/be_local.c:628
#, c-format #, c-format
msgid "corrupted database entry '%s'\n" msgid "corrupted database entry '%s'\n"
msgstr "datu-base sarrera hondatua '%s'\n" msgstr "datu-base sarrera hondatua '%s'\n"
#: lib/libalpm/be_local.c:722 lib/libalpm/be_local.c:818 #: lib/libalpm/be_local.c:663
#: lib/libalpm/be_local.c:958 lib/libalpm/be_local.c:1055 #, fuzzy, c-format
#: lib/libalpm/diskspace.c:131 lib/libalpm/dload.c:823 lib/libalpm/util.c:254 msgid "unknown install reason for package %s: %s\n"
#: lib/libalpm/util.c:270 msgstr "Balidazio mota ezezaguna %s paketearentzat: %s\n"
#: lib/libalpm/be_local.c:743 lib/libalpm/be_local.c:856
#: lib/libalpm/be_local.c:996 lib/libalpm/be_local.c:1102
#: lib/libalpm/diskspace.c:135 lib/libalpm/dload.c:792 lib/libalpm/util.c:273
#: lib/libalpm/util.c:289
#, c-format #, c-format
msgid "could not open file %s: %s\n" msgid "could not open file %s: %s\n"
msgstr "ezin izan da %s fitxategia ireki: %s\n" msgstr "ezin izan da %s fitxategia ireki: %s\n"
#: lib/libalpm/be_local.c:738 lib/libalpm/be_sync.c:582 #: lib/libalpm/be_local.c:759 lib/libalpm/be_sync.c:612
#, c-format #, c-format
msgid "%s database is inconsistent: name mismatch on package %s\n" msgid "%s database is inconsistent: name mismatch on package %s\n"
msgstr "%s datu-basea kontraesankorra da: izenak ez datoz bat %s paketean\n" msgstr "%s datu-basea kontraesankorra da: izenak ez datoz bat %s paketean\n"
#: lib/libalpm/be_local.c:744 lib/libalpm/be_sync.c:588 #: lib/libalpm/be_local.c:765 lib/libalpm/be_sync.c:618
#, c-format #, c-format
msgid "%s database is inconsistent: version mismatch on package %s\n" msgid "%s database is inconsistent: version mismatch on package %s\n"
msgstr "%s datu-basea kontraesankorra da: bertsioak ez datoz bat %s paketean\n" msgstr "%s datu-basea kontraesankorra da: bertsioak ez datoz bat %s paketean\n"
#: lib/libalpm/be_local.c:785 #: lib/libalpm/be_local.c:806
#, c-format #, c-format
msgid "unknown validation type for package %s: %s\n" msgid "unknown validation type for package %s: %s\n"
msgstr "Balidazio mota ezezaguna %s paketearentzat: %s\n" msgstr "Balidazio mota ezezaguna %s paketearentzat: %s\n"
#: lib/libalpm/be_package.c:478 lib/libalpm/be_package.c:631 #: lib/libalpm/be_local.c:841
#: lib/libalpm/be_package.c:643 #, c-format
msgid "%s: unknown key '%s' in local database\n"
msgstr ""
#: lib/libalpm/be_package.c:255
#, c-format
msgid "%s: unknown key '%s' in package description\n"
msgstr ""
#: lib/libalpm/be_package.c:482 lib/libalpm/be_package.c:635
#: lib/libalpm/be_package.c:647
#, c-format #, c-format
msgid "error while reading package %s: %s\n" msgid "error while reading package %s: %s\n"
msgstr "errorea %s paketea irakurtzean: %s\n" msgstr "errorea %s paketea irakurtzean: %s\n"
#: lib/libalpm/be_package.c:491 lib/libalpm/be_package.c:514 #: lib/libalpm/be_package.c:495 lib/libalpm/be_package.c:518
#, c-format #, c-format
msgid "error while reading mtree of package %s: %s\n" msgid "error while reading mtree of package %s: %s\n"
msgstr "errorea %s paketearen mtree-a irakurtzean: %s\n" msgstr "errorea %s paketearen mtree-a irakurtzean: %s\n"
#: lib/libalpm/be_package.c:597 #: lib/libalpm/be_package.c:601
#, c-format #, c-format
msgid "could not parse package description file in %s\n" msgid "could not parse package description file in %s\n"
msgstr "ezin izan da paketearen deskripzioa prozesatu %s fitxategian\n" msgstr "ezin izan da paketearen deskripzioa prozesatu %s fitxategian\n"
#: lib/libalpm/be_package.c:602 #: lib/libalpm/be_package.c:606
#, c-format #, c-format
msgid "missing package name in %s\n" msgid "missing package name in %s\n"
msgstr "paketearen izena falta da hemen: %s\n" msgstr "paketearen izena falta da hemen: %s\n"
#: lib/libalpm/be_package.c:606 #: lib/libalpm/be_package.c:610
#, c-format #, c-format
msgid "missing package version in %s\n" msgid "missing package version in %s\n"
msgstr "paketearen bertsioa falta da hemen: %s\n" msgstr "paketearen bertsioa falta da hemen: %s\n"
#: lib/libalpm/be_package.c:610 #: lib/libalpm/be_package.c:614
#, c-format #, c-format
msgid "invalid package version in %s\n" msgid "invalid package version in %s\n"
msgstr "paketearen bertsio baliogabea hemen %s\n" msgstr "paketearen bertsio baliogabea hemen %s\n"
#: lib/libalpm/be_package.c:649 #: lib/libalpm/be_package.c:653
#, c-format #, c-format
msgid "missing package metadata in %s\n" msgid "missing package metadata in %s\n"
msgstr "paketearen metadatuak falta dira hemen: %s\n" msgstr "paketearen metadatuak falta dira hemen: %s\n"
#: lib/libalpm/be_package.c:741 #: lib/libalpm/be_package.c:745
#, c-format #, c-format
msgid "failed to read signature file: %s\n" msgid "failed to read signature file: %s\n"
msgstr "sinadura fitxategiaren irakurketak huts egin du: %s\n" msgstr "sinadura fitxategiaren irakurketak huts egin du: %s\n"
#: lib/libalpm/be_package.c:770 lib/libalpm/sync.c:953 #: lib/libalpm/be_package.c:768 lib/libalpm/sync.c:976
#, c-format #, c-format
msgid "required key missing from keyring\n" msgid "required key missing from keyring\n"
msgstr "beharrezko gakoa falta da gako sortan\n" msgstr "beharrezko gakoa falta da gako sortan\n"
@ -238,35 +253,40 @@ msgstr "beharrezko gakoa falta da gako sortan\n"
msgid "removing invalid file: %s\n" msgid "removing invalid file: %s\n"
msgstr "fitxategi baliogabea ezabatzen: %s\n" msgstr "fitxategi baliogabea ezabatzen: %s\n"
#: lib/libalpm/be_sync.c:449 #: lib/libalpm/be_sync.c:471
#, c-format #, c-format
msgid "could not parse package description file '%s' from db '%s'\n" msgid "could not parse package description file '%s' from db '%s'\n"
msgstr "ezin izan da '%s' fitxategi deskripzioa prozesatu '%s' datu-basetik\n" msgstr "ezin izan da '%s' fitxategi deskripzioa prozesatu '%s' datu-basetik\n"
#: lib/libalpm/be_sync.c:456 #: lib/libalpm/be_sync.c:486
#, c-format #, c-format
msgid "could not read db '%s' (%s)\n" msgid "could not read db '%s' (%s)\n"
msgstr "ezin izan da '%s' datu-basea irakurri (%s)\n" msgstr "ezin izan da '%s' datu-basea irakurri (%s)\n"
#: lib/libalpm/be_sync.c:489 lib/libalpm/be_sync.c:494 #: lib/libalpm/be_sync.c:519 lib/libalpm/be_sync.c:524
#, c-format #, c-format
msgid "%s database is inconsistent: filename of package %s is illegal\n" msgid "%s database is inconsistent: filename of package %s is illegal\n"
msgstr "" msgstr ""
"%s datu-basea kontraesankorra da: %s paketearen fitxategi izena legez " "%s datu-basea kontraesankorra da: %s paketearen fitxategi izena legez "
"kanpokoa da\n" "kanpokoa da\n"
#: lib/libalpm/be_sync.c:499 #: lib/libalpm/be_sync.c:529
#, c-format #, c-format
msgid "%s database is inconsistent: filename of package %s is too long\n" msgid "%s database is inconsistent: filename of package %s is too long\n"
msgstr "" msgstr ""
"%s datu-basea kontraesankorra da: %s paketearen fitxategi izena luzeegia da\n" "%s datu-basea kontraesankorra da: %s paketearen fitxategi izena luzeegia da\n"
#: lib/libalpm/be_sync.c:564 #: lib/libalpm/be_sync.c:594
#, c-format #, c-format
msgid "unknown database file: %s\n" msgid "unknown database file: %s\n"
msgstr "datu-base fitxategi ezezaguna: %s\n" msgstr "datu-base fitxategi ezezaguna: %s\n"
#: lib/libalpm/db.c:344 #: lib/libalpm/be_sync.c:712
#, c-format
msgid "%s: unknown key '%s' in sync database\n"
msgstr ""
#: lib/libalpm/db.c:413
#, c-format #, c-format
msgid "database path is undefined\n" msgid "database path is undefined\n"
msgstr "datu-basearen bide-izena definitu gabe dago\n" msgstr "datu-basearen bide-izena definitu gabe dago\n"
@ -306,108 +326,123 @@ msgstr "ezin izan da %s fitxategi sistema informazioa jaso: %s\n"
msgid "could not open file: %s: %s\n" msgid "could not open file: %s: %s\n"
msgstr "ezin izan da fitxategia ireki: %s :%s\n" msgstr "ezin izan da fitxategia ireki: %s :%s\n"
#: lib/libalpm/diskspace.c:146 lib/libalpm/diskspace.c:159 #: lib/libalpm/diskspace.c:154 lib/libalpm/diskspace.c:167
#, c-format #, c-format
msgid "could not get filesystem information\n" msgid "could not get filesystem information\n"
msgstr "ezin izan da fitxategi sistemaren informazioa jaso\n" msgstr "ezin izan da fitxategi sistemaren informazioa jaso\n"
#: lib/libalpm/diskspace.c:242 #: lib/libalpm/diskspace.c:254
#, c-format #, c-format
msgid "could not get file information for %s\n" msgid "could not get file information for %s\n"
msgstr "ezin izan da %sren informazioa jaso\n" msgstr "ezin izan da %sren informazioa jaso\n"
#: lib/libalpm/diskspace.c:256 lib/libalpm/diskspace.c:315 #: lib/libalpm/diskspace.c:268 lib/libalpm/diskspace.c:327
#, c-format #, c-format
msgid "could not determine mount point for file %s\n" msgid "could not determine mount point for file %s\n"
msgstr "ezin izan da %s fitxategiaren muntatze puntua zehaztu\n" msgstr "ezin izan da %s fitxategiaren muntatze puntua zehaztu\n"
#: lib/libalpm/diskspace.c:354 #: lib/libalpm/diskspace.c:366
#, c-format #, c-format
msgid "Partition %s too full: %jd blocks needed, %ju blocks free\n" msgid "Partition %s too full: %jd blocks needed, %ju blocks free\n"
msgstr "" msgstr ""
"%s partizioa beteta dago: %jd bloke behar dira, %ju bloke daude libre\n" "%s partizioa beteta dago: %jd bloke behar dira, %ju bloke daude libre\n"
#: lib/libalpm/diskspace.c:379 lib/libalpm/diskspace.c:433 #: lib/libalpm/diskspace.c:391 lib/libalpm/diskspace.c:445
#, c-format #, c-format
msgid "could not determine filesystem mount points\n" msgid "could not determine filesystem mount points\n"
msgstr "ezin izan dira fitxategi sistemaren muntatze puntuak zehaztu\n" msgstr "ezin izan dira fitxategi sistemaren muntatze puntuak zehaztu\n"
#: lib/libalpm/diskspace.c:385 #: lib/libalpm/diskspace.c:397
#, c-format #, c-format
msgid "could not determine cachedir mount point %s\n" msgid "could not determine cachedir mount point %s\n"
msgstr "ezin izan da cachedir muntatze puntua zehaztu %s\n" msgstr "ezin izan da cachedir muntatze puntua zehaztu %s\n"
#: lib/libalpm/diskspace.c:438 #: lib/libalpm/diskspace.c:450
#, c-format #, c-format
msgid "could not determine root mount point %s\n" msgid "could not determine root mount point %s\n"
msgstr "ezin izan da %s erro muntatze puntua zehaztu\n" msgstr "ezin izan da %s erro muntatze puntua zehaztu\n"
#: lib/libalpm/diskspace.c:486 #: lib/libalpm/diskspace.c:498
#, c-format #, c-format
msgid "Partition %s is mounted read only\n" msgid "Partition %s is mounted read only\n"
msgstr "%s partizioa soilik irakurtzeko moduan muntatuta dago\n" msgstr "%s partizioa soilik irakurtzeko moduan muntatuta dago\n"
#: lib/libalpm/dload.c:116 #: lib/libalpm/dload.c:107
#, c-format
msgid "failed to create temporary file for download\n"
msgstr "huts egin du deskargarako behin behineko fitxategiaren sorrerak\n"
#: lib/libalpm/dload.c:198
#, c-format #, c-format
msgid "" msgid ""
"too many errors from %s, skipping for the remainder of this transaction\n" "too many errors from %s, skipping for the remainder of this transaction\n"
msgstr "" msgstr ""
#: lib/libalpm/dload.c:220 #: lib/libalpm/dload.c:215
#, c-format
msgid "fatal error from %s, skipping for the remainder of this transaction\n"
msgstr ""
#: lib/libalpm/dload.c:310
#, c-format #, c-format
msgid "disk" msgid "disk"
msgstr "diskoa" msgstr "diskoa"
#: lib/libalpm/dload.c:392 #: lib/libalpm/dload.c:532 lib/libalpm/dload.c:570 lib/libalpm/dload.c:583
#, c-format
msgid "failed to create temporary file for download\n"
msgstr "huts egin du deskargarako behin behineko fitxategiaren sorrerak\n"
#: lib/libalpm/dload.c:509 lib/libalpm/dload.c:547 lib/libalpm/dload.c:561
#, c-format #, c-format
msgid "failed retrieving file '%s' from %s : %s\n" msgid "failed retrieving file '%s' from %s : %s\n"
msgstr "huts egin du '%s' fitxategia '%s'-tik erauzteak: %s\n" msgstr "huts egin du '%s' fitxategia '%s'-tik erauzteak: %s\n"
#: lib/libalpm/dload.c:539 #: lib/libalpm/dload.c:562
#, c-format #, c-format
msgid "failed retrieving file '%s' from %s : expected download size exceeded\n" msgid "failed retrieving file '%s' from %s : expected download size exceeded\n"
msgstr "" msgstr ""
"huts egin du '%s' fitxategia eskuratzean hemendik: %s : aurreikusitako " "huts egin du '%s' fitxategia eskuratzean hemendik: %s : aurreikusitako "
"deskarga tamaina gainditu da\n" "deskarga tamaina gainditu da\n"
#: lib/libalpm/dload.c:687 #: lib/libalpm/dload.c:685
#, c-format #, c-format
msgid "%s appears to be truncated: %jd/%jd bytes\n" msgid "%s appears to be truncated: %jd/%jd bytes\n"
msgstr "%s ez dago osorik antza: %jd/%jd byte\n" msgstr "%s ez dago osorik antza: %jd/%jd byte\n"
#: lib/libalpm/dload.c:787 #: lib/libalpm/dload.c:776
#, c-format #, c-format
msgid "url '%s' is invalid\n" msgid "url '%s' is invalid\n"
msgstr "" msgstr ""
"'%s' url baliogabea da\n" "'%s' url baliogabea da\n"
"\n" "\n"
#: lib/libalpm/dload.c:893 #: lib/libalpm/dload.c:864
#, c-format #, c-format
msgid "failed to setup a download payload for %s\n" msgid "failed to setup a download payload for %s\n"
msgstr "" msgstr ""
#: lib/libalpm/dload.c:905 #: lib/libalpm/dload.c:876
#, c-format #, c-format
msgid "curl returned error %d from transfer\n" msgid "curl returned error %d from transfer\n"
msgstr "" msgstr ""
#: lib/libalpm/dload.c:929 #: lib/libalpm/dload.c:900
#, c-format #, c-format
msgid "curl transfer error: %d\n" msgid "curl transfer error: %d\n"
msgstr "" msgstr ""
#: lib/libalpm/dload.c:1055 lib/libalpm/sync.c:840 #: lib/libalpm/dload.c:963
#, fuzzy, c-format
msgid "could not chdir to download directory %s\n"
msgstr "ezin izan da erro direktorioa aldatu (%s)\n"
#: lib/libalpm/dload.c:968
#, c-format
msgid "switching to sandbox user '%s' failed!\n"
msgstr ""
#: lib/libalpm/dload.c:1361 lib/libalpm/sync.c:861
#, c-format #, c-format
msgid "failed to retrieve some files\n" msgid "failed to retrieve some files\n"
msgstr "fitxategi batzuk eskuratzeak huts egin du\n" msgstr "fitxategi batzuk eskuratzeak huts egin du\n"
#: lib/libalpm/dload.c:1078 #: lib/libalpm/dload.c:1384
#, c-format #, c-format
msgid "download completed successfully but no file in the cache\n" msgid "download completed successfully but no file in the cache\n"
msgstr "" msgstr ""
@ -682,12 +717,12 @@ msgstr ""
msgid "unexpected error" msgid "unexpected error"
msgstr "ustegabeko errorea" msgstr "ustegabeko errorea"
#: lib/libalpm/handle.c:142 #: lib/libalpm/handle.c:165
#, c-format #, c-format
msgid "lock file missing %s\n" msgid "lock file missing %s\n"
msgstr "blokeo fitxategia falta da %s\n" msgstr "blokeo fitxategia falta da %s\n"
#: lib/libalpm/handle.c:148 #: lib/libalpm/handle.c:171
#, c-format #, c-format
msgid "could not remove lock file %s\n" msgid "could not remove lock file %s\n"
msgstr "ezin izan da %s blokeo fitxategia ezabatu\n" msgstr "ezin izan da %s blokeo fitxategia ezabatu\n"
@ -769,7 +804,7 @@ msgstr "ezin izan da direktorioa ireki: %s: %s\n"
msgid "could not open file: %s%s: %s\n" msgid "could not open file: %s%s: %s\n"
msgstr "" msgstr ""
#: lib/libalpm/hook.c:595 lib/libalpm/util.c:260 #: lib/libalpm/hook.c:595 lib/libalpm/util.c:279
#, c-format #, c-format
msgid "could not stat file %s: %s\n" msgid "could not stat file %s: %s\n"
msgstr "ezin izan da fitxategiaren egoera zehaztu: %s: %s\n" msgstr "ezin izan da fitxategiaren egoera zehaztu: %s: %s\n"
@ -779,11 +814,43 @@ msgstr "ezin izan da fitxategiaren egoera zehaztu: %s: %s\n"
msgid "could not read directory: %s: %s\n" msgid "could not read directory: %s: %s\n"
msgstr "" msgstr ""
#: lib/libalpm/package.c:598 #: lib/libalpm/package.c:614
#, c-format #, c-format
msgid "could not fully load metadata for package %s-%s\n" msgid "could not fully load metadata for package %s-%s\n"
msgstr "ezin izan dira %s-%s paketearen meta-datuak guztiz kargatu\n" msgstr "ezin izan dira %s-%s paketearen meta-datuak guztiz kargatu\n"
#: lib/libalpm/package.c:869
#, c-format
msgid "invalid package metadata (name or version missing)"
msgstr ""
#: lib/libalpm/package.c:874
#, c-format
msgid ""
"invalid metadata for package %s-%s (package name cannot start with '.' or "
"'-')\n"
msgstr ""
#: lib/libalpm/package.c:878
#, c-format
msgid ""
"invalid metadata for package %s-%s (package name contains invalid "
"characters)\n"
msgstr ""
#: lib/libalpm/package.c:885 lib/libalpm/package.c:889
#, c-format
msgid ""
"invalid metadata for package %s-%s (package version contains invalid "
"characters)\n"
msgstr ""
#: lib/libalpm/package.c:895
#, c-format
msgid ""
"invalid metadata for package %s-%s (package name and version too long)\n"
msgstr ""
#: lib/libalpm/remove.c:111 #: lib/libalpm/remove.c:111
#, c-format #, c-format
msgid "could not find %s in database -- skipping\n" msgid "could not find %s in database -- skipping\n"
@ -804,17 +871,17 @@ msgstr "ezin '%s' fitxategia ezabatu: %s\n"
msgid "could not backup %s due to PATH_MAX overflow\n" msgid "could not backup %s due to PATH_MAX overflow\n"
msgstr "" msgstr ""
#: lib/libalpm/remove.c:554 #: lib/libalpm/remove.c:570
#, c-format #, c-format
msgid "cannot remove %s (%s)\n" msgid "cannot remove %s (%s)\n"
msgstr "ezin ezabatu %s (%s)\n" msgstr "ezin ezabatu %s (%s)\n"
#: lib/libalpm/remove.c:727 #: lib/libalpm/remove.c:743
#, c-format #, c-format
msgid "could not remove database entry %s-%s\n" msgid "could not remove database entry %s-%s\n"
msgstr "ezin izan da datu-base sarrera ezabatu %s-%s\n" msgstr "ezin izan da datu-base sarrera ezabatu %s-%s\n"
#: lib/libalpm/remove.c:732 #: lib/libalpm/remove.c:748
#, c-format #, c-format
msgid "could not remove entry '%s' from cache\n" msgid "could not remove entry '%s' from cache\n"
msgstr "ezin izan da '%s' sarrera ezabatu katxetik\n" msgstr "ezin izan da '%s' sarrera ezabatu katxetik\n"
@ -824,89 +891,89 @@ msgstr "ezin izan da '%s' sarrera ezabatu katxetik\n"
msgid "Public keyring not found; have you run '%s'?\n" msgid "Public keyring not found; have you run '%s'?\n"
msgstr "" msgstr ""
#: lib/libalpm/signing.c:199 lib/libalpm/signing.c:767 #: lib/libalpm/signing.c:199 lib/libalpm/signing.c:773
#, c-format #, c-format
msgid "GPGME error: %s\n" msgid "GPGME error: %s\n"
msgstr "" msgstr ""
#: lib/libalpm/signing.c:274 #: lib/libalpm/signing.c:275
#, c-format #, c-format
msgid "looking up key %s using WKD\n" msgid "looking up key %s using WKD\n"
msgstr "" msgstr ""
#: lib/libalpm/signing.c:283 #: lib/libalpm/signing.c:289
#, c-format #, c-format
msgid "gpg error: %s\n" msgid "gpg error: %s\n"
msgstr "" msgstr ""
#: lib/libalpm/signing.c:430 lib/libalpm/signing.c:503 #: lib/libalpm/signing.c:440 lib/libalpm/signing.c:513
#, c-format #, c-format
msgid "keyring is not writable\n" msgid "keyring is not writable\n"
msgstr "" msgstr ""
#: lib/libalpm/signing.c:531 #: lib/libalpm/signing.c:537
#, c-format #, c-format
msgid "key \"%s\" on keyserver\n" msgid "key \"%s\" on keyserver\n"
msgstr "" msgstr ""
#: lib/libalpm/signing.c:536 #: lib/libalpm/signing.c:542
#, c-format #, c-format
msgid "key \"%s\" could not be imported\n" msgid "key \"%s\" could not be imported\n"
msgstr "" msgstr ""
#: lib/libalpm/signing.c:540 #: lib/libalpm/signing.c:546
#, c-format #, c-format
msgid "key \"%s\" could not be looked up remotely\n" msgid "key \"%s\" could not be looked up remotely\n"
msgstr "" msgstr ""
#: lib/libalpm/signing.c:926 lib/libalpm/sync.c:1022 #: lib/libalpm/signing.c:932 lib/libalpm/sync.c:1052
#, c-format #, c-format
msgid "%s: missing required signature\n" msgid "%s: missing required signature\n"
msgstr "%s: beharrezko sinadura falta da\n" msgstr "%s: beharrezko sinadura falta da\n"
#: lib/libalpm/signing.c:941 #: lib/libalpm/signing.c:947
#, c-format #, c-format
msgid "%s: signature from \"%s\" is marginal trust\n" msgid "%s: signature from \"%s\" is marginal trust\n"
msgstr "" msgstr ""
#: lib/libalpm/signing.c:949 #: lib/libalpm/signing.c:955
#, c-format #, c-format
msgid "%s: signature from \"%s\" is unknown trust\n" msgid "%s: signature from \"%s\" is unknown trust\n"
msgstr "" msgstr ""
#: lib/libalpm/signing.c:956 #: lib/libalpm/signing.c:962
#, c-format #, c-format
msgid "%s: signature from \"%s\" should never be trusted\n" msgid "%s: signature from \"%s\" should never be trusted\n"
msgstr "" msgstr ""
#: lib/libalpm/signing.c:968 #: lib/libalpm/signing.c:974
#, c-format #, c-format
msgid "%s: key \"%s\" is unknown\n" msgid "%s: key \"%s\" is unknown\n"
msgstr "" msgstr ""
#: lib/libalpm/signing.c:977 #: lib/libalpm/signing.c:983
#, c-format #, c-format
msgid "%s: key \"%s\" is disabled\n" msgid "%s: key \"%s\" is disabled\n"
msgstr "" msgstr ""
#: lib/libalpm/signing.c:981 #: lib/libalpm/signing.c:987
#, c-format #, c-format
msgid "%s: signature from \"%s\" is expired\n" msgid "%s: signature from \"%s\" is expired\n"
msgstr "" msgstr ""
#: lib/libalpm/signing.c:985 #: lib/libalpm/signing.c:991
#, c-format #, c-format
msgid "%s: signature from \"%s\" is invalid\n" msgid "%s: signature from \"%s\" is invalid\n"
msgstr "" msgstr ""
#: lib/libalpm/signing.c:1043 lib/libalpm/signing.c:1104 #: lib/libalpm/signing.c:1049 lib/libalpm/signing.c:1110
#: lib/libalpm/signing.c:1183 #: lib/libalpm/signing.c:1189
#, c-format #, c-format
msgid "%s: signature format error\n" msgid "%s: signature format error\n"
msgstr "" msgstr ""
#: lib/libalpm/signing.c:1136 lib/libalpm/signing.c:1169 #: lib/libalpm/signing.c:1142 lib/libalpm/signing.c:1175
#: lib/libalpm/signing.c:1177 #: lib/libalpm/signing.c:1183
#, c-format #, c-format
msgid "%s: unsupported signature format\n" msgid "%s: unsupported signature format\n"
msgstr "" msgstr ""
@ -941,117 +1008,122 @@ msgstr "ezikusi pakete ordezkapena (%s-%s => %s-%s)\n"
msgid "cannot replace %s by %s\n" msgid "cannot replace %s by %s\n"
msgstr "ezin %s ordezkatu %s paketearekin\n" msgstr "ezin %s ordezkatu %s paketearekin\n"
#: lib/libalpm/sync.c:476 #: lib/libalpm/sync.c:477
#, c-format #, c-format
msgid "packages %s and %s have the same filename: %s\n" msgid "packages %s and %s have the same filename: %s\n"
msgstr "" msgstr ""
#: lib/libalpm/sync.c:542 lib/libalpm/sync.c:612 #: lib/libalpm/sync.c:546 lib/libalpm/sync.c:618
#, c-format #, c-format
msgid "unresolvable package conflicts detected\n" msgid "unresolvable package conflicts detected\n"
msgstr "ebatzi ezineko paketeen arteko gatazka detektatu da\n" msgstr "ebatzi ezineko paketeen arteko gatazka detektatu da\n"
#: lib/libalpm/sync.c:562 #: lib/libalpm/sync.c:566
#, c-format #, c-format
msgid "removing '%s' from target list because it conflicts with '%s'\n" msgid "removing '%s-%s' from target list because it conflicts with '%s-%s'\n"
msgstr "'%s' helburutik ezabatzen gatazka sortzen duelako '%s' paketearekin\n" msgstr ""
#: lib/libalpm/sync.c:1036 #: lib/libalpm/sync.c:1020 lib/libalpm/sync.c:1187
#, c-format
msgid "%s: could not find package in cache\n"
msgstr ""
#: lib/libalpm/sync.c:1066
#, c-format #, c-format
msgid "failed to read file %s: %s\n" msgid "failed to read file %s: %s\n"
msgstr "" msgstr ""
#: lib/libalpm/sync.c:1223 #: lib/libalpm/sync.c:1324
#, c-format #, c-format
msgid "not enough free disk space\n" msgid "not enough free disk space\n"
msgstr "ez dago behar beste leku libre diskoan\n" msgstr "ez dago behar beste leku libre diskoan\n"
#: lib/libalpm/sync.c:1245 #: lib/libalpm/sync.c:1346
#, c-format #, c-format
msgid "could not commit removal transaction\n" msgid "could not commit removal transaction\n"
msgstr "ezin izan da ezabaketa transakzioa egikaritu\n" msgstr "ezin izan da ezabaketa transakzioa egikaritu\n"
#: lib/libalpm/sync.c:1253 #: lib/libalpm/sync.c:1354
#, c-format #, c-format
msgid "could not commit transaction\n" msgid "could not commit transaction\n"
msgstr "ezin izan da transakzioa egikaritu\n" msgstr "ezin izan da transakzioa egikaritu\n"
#: lib/libalpm/trans.c:365 #: lib/libalpm/trans.c:369
#, c-format #, c-format
msgid "could not create temp directory\n" msgid "could not create temp directory\n"
msgstr "ezin izan da temp direktorioa sortu\n" msgstr "ezin izan da temp direktorioa sortu\n"
#: lib/libalpm/trans.c:380 #: lib/libalpm/trans.c:384
#, c-format #, c-format
msgid "could not copy tempfile to %s (%s)\n" msgid "could not copy tempfile to %s (%s)\n"
msgstr "ezin izan da tempfile hona kopiatu %s (%s)\n" msgstr "ezin izan da tempfile hona kopiatu %s (%s)\n"
#: lib/libalpm/trans.c:411 #: lib/libalpm/trans.c:415
#, c-format #, c-format
msgid "could not remove %s\n" msgid "could not remove %s\n"
msgstr "ezin izan da %s ezabatu\n" msgstr "ezin izan da %s ezabatu\n"
#: lib/libalpm/trans.c:415 #: lib/libalpm/trans.c:419
#, c-format #, c-format
msgid "could not remove tmpdir %s\n" msgid "could not remove tmpdir %s\n"
msgstr "ezin tempdir ezabatu %s\n" msgstr "ezin tempdir ezabatu %s\n"
#: lib/libalpm/util.c:488 #: lib/libalpm/util.c:512
#, c-format #, c-format
msgid "unable to write to pipe (%s)\n" msgid "unable to write to pipe (%s)\n"
msgstr "ezin izan da kanalizazioan idatzi (%s)\n" msgstr "ezin izan da kanalizazioan idatzi (%s)\n"
#: lib/libalpm/util.c:547 #: lib/libalpm/util.c:571
#, c-format #, c-format
msgid "unable to read from pipe (%s)\n" msgid "unable to read from pipe (%s)\n"
msgstr "ezin izan da kanalizaziotik irakurri (%s)\n" msgstr "ezin izan da kanalizaziotik irakurri (%s)\n"
#: lib/libalpm/util.c:617 lib/libalpm/util.c:623 #: lib/libalpm/util.c:641 lib/libalpm/util.c:647
#, c-format #, c-format
msgid "could not create pipe (%s)\n" msgid "could not create pipe (%s)\n"
msgstr "ezin izan da kanalizazioa sortu (%s)\n" msgstr "ezin izan da kanalizazioa sortu (%s)\n"
#: lib/libalpm/util.c:631 #: lib/libalpm/util.c:655
#, c-format #, c-format
msgid "could not fork a new process (%s)\n" msgid "could not fork a new process (%s)\n"
msgstr "ezin izan da prozesu berri bat sardetu (%s)\n" msgstr "ezin izan da prozesu berri bat sardetu (%s)\n"
#: lib/libalpm/util.c:654 #: lib/libalpm/util.c:680
#, c-format #, c-format
msgid "could not change the root directory (%s)\n" msgid "could not change the root directory (%s)\n"
msgstr "ezin izan da erro direktorioa aldatu (%s)\n" msgstr "ezin izan da erro direktorioa aldatu (%s)\n"
#: lib/libalpm/util.c:666 #: lib/libalpm/util.c:700
#, c-format #, c-format
msgid "call to execv failed (%s)\n" msgid "call to execv failed (%s)\n"
msgstr "execv deiak huts egin du (%s)\n" msgstr "execv deiak huts egin du (%s)\n"
#: lib/libalpm/util.c:745 #: lib/libalpm/util.c:779
#, c-format #, c-format
msgid "call to waitpid failed (%s)\n" msgid "call to waitpid failed (%s)\n"
msgstr "waitpid deiak huts egin du (%s)\n" msgstr "waitpid deiak huts egin du (%s)\n"
#: lib/libalpm/util.c:755 #: lib/libalpm/util.c:789
#, c-format #, c-format
msgid "command failed to execute correctly\n" msgid "command failed to execute correctly\n"
msgstr "komandoa ez da behar bezala exekutatu\n" msgstr "komandoa ez da behar bezala exekutatu\n"
#: lib/libalpm/util.c:762 #: lib/libalpm/util.c:796
#, c-format #, c-format
msgid "Unknown signal" msgid "Unknown signal"
msgstr "Seinale ezezaguna" msgstr "Seinale ezezaguna"
#: lib/libalpm/util.c:764 #: lib/libalpm/util.c:798
#, c-format #, c-format
msgid "command terminated by signal %d: %s\n" msgid "command terminated by signal %d: %s\n"
msgstr "%d seinaleak eten du komandoa: %s\n" msgstr "%d seinaleak eten du komandoa: %s\n"
#: lib/libalpm/util.c:875 #: lib/libalpm/util.c:916
#, c-format #, c-format
msgid "no %s cache exists, creating...\n" msgid "no %s cache exists, creating...\n"
msgstr "ez dago %s katxerik, sortzen...\n" msgstr "ez dago %s katxerik, sortzen...\n"
#: lib/libalpm/util.c:906 #: lib/libalpm/util.c:947
#, c-format #, c-format
msgid "couldn't find or create package cache, using %s instead\n" msgid "couldn't find or create package cache, using %s instead\n"
msgstr "ezin izan da pakete katxea aurkitu edo sortu, %s erabiliko da ordez\n" msgstr "ezin izan da pakete katxea aurkitu edo sortu, %s erabiliko da ordez\n"

View file

@ -7,11 +7,11 @@
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Arch Linux Pacman package manager\n" "Project-Id-Version: Arch Linux Pacman package manager\n"
"Report-Msgid-Bugs-To: http://bugs.archlinux.org/index.php?project=3\n" "Report-Msgid-Bugs-To: https://gitlab.archlinux.org/pacman/pacman/-/issues\n"
"POT-Creation-Date: 2021-09-04 16:15+1000\n" "POT-Creation-Date: 2024-07-14 19:10+1000\n"
"PO-Revision-Date: 2021-05-20 02:25+0000\n" "PO-Revision-Date: 2010-11-29 23:17+0000\n"
"Last-Translator: Allan McRae <allan@archlinux.org>\n" "Last-Translator: Osoitz <oelkoro@gmail.com>, 2013\n"
"Language-Team: Basque (Spain) (http://www.transifex.com/toofishes/archlinux-" "Language-Team: Basque (Spain) (http://app.transifex.com/toofishes/archlinux-"
"pacman/language/eu_ES/)\n" "pacman/language/eu_ES/)\n"
"Language: eu_ES\n" "Language: eu_ES\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
@ -39,17 +39,17 @@ msgstr "bertsio zahartzen %s paketea (%s => %s)\n"
msgid "cannot allocate disk archive object" msgid "cannot allocate disk archive object"
msgstr "" msgstr ""
#: lib/libalpm/add.c:143 lib/libalpm/util.c:384 #: lib/libalpm/add.c:143 lib/libalpm/util.c:408
#, c-format #, c-format
msgid "warning given when extracting %s (%s)\n" msgid "warning given when extracting %s (%s)\n"
msgstr "oharra eman da %s erauztean (%s)\n" msgstr "oharra eman da %s erauztean (%s)\n"
#: lib/libalpm/add.c:146 lib/libalpm/util.c:387 #: lib/libalpm/add.c:146 lib/libalpm/util.c:411
#, c-format #, c-format
msgid "could not extract %s (%s)\n" msgid "could not extract %s (%s)\n"
msgstr "ezin izan da %s erauzi (%s)\n" msgstr "ezin izan da %s erauzi (%s)\n"
#: lib/libalpm/add.c:159 lib/libalpm/dload.c:709 lib/libalpm/remove.c:534 #: lib/libalpm/add.c:159 lib/libalpm/dload.c:707 lib/libalpm/remove.c:550
#, c-format #, c-format
msgid "could not rename %s to %s (%s)\n" msgid "could not rename %s to %s (%s)\n"
msgstr "ezin izan da %s berrizendatu %s gisa (%s)\n" msgstr "ezin izan da %s berrizendatu %s gisa (%s)\n"
@ -95,18 +95,18 @@ msgstr "erauzi: ez da direktorioa %s fitxategiarekin gainidatziko\n"
msgid "unable to extract %s.pacnew: path too long" msgid "unable to extract %s.pacnew: path too long"
msgstr "ezin izan da %s.pacnew erauzi: bidea luzeegia da" msgstr "ezin izan da %s.pacnew erauzi: bidea luzeegia da"
#: lib/libalpm/add.c:510 lib/libalpm/util.c:335 lib/libalpm/util.c:600 #: lib/libalpm/add.c:510 lib/libalpm/util.c:354 lib/libalpm/util.c:624
#, c-format #, c-format
msgid "could not get current working directory\n" msgid "could not get current working directory\n"
msgstr "ezin izan da uneko lan direktorioa lortu\n" msgstr "ezin izan da uneko lan direktorioa lortu\n"
#: lib/libalpm/add.c:515 lib/libalpm/util.c:340 lib/libalpm/util.c:605 #: lib/libalpm/add.c:515 lib/libalpm/util.c:359 lib/libalpm/util.c:629
#: lib/libalpm/util.c:658 #: lib/libalpm/util.c:684
#, c-format #, c-format
msgid "could not change directory to %s (%s)\n" msgid "could not change directory to %s (%s)\n"
msgstr "ezin izan da direktorioa hona aldatu %s (%s)\n" msgstr "ezin izan da direktorioa hona aldatu %s (%s)\n"
#: lib/libalpm/add.c:571 lib/libalpm/util.c:405 lib/libalpm/util.c:774 #: lib/libalpm/add.c:571 lib/libalpm/util.c:429 lib/libalpm/util.c:808
#, c-format #, c-format
msgid "could not restore working directory (%s)\n" msgid "could not restore working directory (%s)\n"
msgstr "ezin izan da laneko direktorioa berreskuratu (%s)\n" msgstr "ezin izan da laneko direktorioa berreskuratu (%s)\n"
@ -131,103 +131,118 @@ msgstr "ezin izan da datu-base sarrera eguneratu %s-%s\n"
msgid "could not add entry '%s' in cache\n" msgid "could not add entry '%s' in cache\n"
msgstr "ezin izan da '%s' sarrera katxean gehitu\n" msgstr "ezin izan da '%s' sarrera katxean gehitu\n"
#: lib/libalpm/be_local.c:266 #: lib/libalpm/be_local.c:271
#, c-format #, c-format
msgid "error while reading file %s: %s\n" msgid "error while reading file %s: %s\n"
msgstr "errorea %s fitxategia irakurtzean: %s\n" msgstr "errorea %s fitxategia irakurtzean: %s\n"
#: lib/libalpm/be_local.c:376 #: lib/libalpm/be_local.c:382
#, c-format #, c-format
msgid "removing invalid database: %s\n" msgid "removing invalid database: %s\n"
msgstr "datu-base baliogabea ezabatzen:%s\n" msgstr "datu-base baliogabea ezabatzen:%s\n"
#: lib/libalpm/be_local.c:427 lib/libalpm/be_local.c:909 #: lib/libalpm/be_local.c:433 lib/libalpm/be_local.c:947
#, c-format #, c-format
msgid "could not create directory %s: %s\n" msgid "could not create directory %s: %s\n"
msgstr "" msgstr ""
"ezin izan da %s direktorioa sortu: %s\n" "ezin izan da %s direktorioa sortu: %s\n"
"\n" "\n"
#: lib/libalpm/be_local.c:602 lib/libalpm/be_sync.c:322 #: lib/libalpm/be_local.c:608 lib/libalpm/be_sync.c:339
#, c-format #, c-format
msgid "invalid name for database entry '%s'\n" msgid "invalid name for database entry '%s'\n"
msgstr "izen baliogabea '%s' datu-base sarreran\n" msgstr "izen baliogabea '%s' datu-base sarreran\n"
#: lib/libalpm/be_local.c:610 #: lib/libalpm/be_local.c:616
#, c-format #, c-format
msgid "duplicated database entry '%s'\n" msgid "duplicated database entry '%s'\n"
msgstr "bikoiztutako datu-base sarrera '%s'\n" msgstr "bikoiztutako datu-base sarrera '%s'\n"
#: lib/libalpm/be_local.c:622 #: lib/libalpm/be_local.c:628
#, c-format #, c-format
msgid "corrupted database entry '%s'\n" msgid "corrupted database entry '%s'\n"
msgstr "datu-base sarrera hondatua '%s'\n" msgstr "datu-base sarrera hondatua '%s'\n"
#: lib/libalpm/be_local.c:722 lib/libalpm/be_local.c:818 #: lib/libalpm/be_local.c:663
#: lib/libalpm/be_local.c:958 lib/libalpm/be_local.c:1055 #, fuzzy, c-format
#: lib/libalpm/diskspace.c:131 lib/libalpm/dload.c:823 lib/libalpm/util.c:254 msgid "unknown install reason for package %s: %s\n"
#: lib/libalpm/util.c:270 msgstr "Balidazio mota ezezaguna %s paketearentzat: %s\n"
#: lib/libalpm/be_local.c:743 lib/libalpm/be_local.c:856
#: lib/libalpm/be_local.c:996 lib/libalpm/be_local.c:1102
#: lib/libalpm/diskspace.c:135 lib/libalpm/dload.c:792 lib/libalpm/util.c:273
#: lib/libalpm/util.c:289
#, c-format #, c-format
msgid "could not open file %s: %s\n" msgid "could not open file %s: %s\n"
msgstr "ezin izan da %s fitxategia ireki: %s\n" msgstr "ezin izan da %s fitxategia ireki: %s\n"
#: lib/libalpm/be_local.c:738 lib/libalpm/be_sync.c:582 #: lib/libalpm/be_local.c:759 lib/libalpm/be_sync.c:612
#, c-format #, c-format
msgid "%s database is inconsistent: name mismatch on package %s\n" msgid "%s database is inconsistent: name mismatch on package %s\n"
msgstr "%s datu-basea kontraesankorra da: izenak ez datoz bat %s paketean\n" msgstr "%s datu-basea kontraesankorra da: izenak ez datoz bat %s paketean\n"
#: lib/libalpm/be_local.c:744 lib/libalpm/be_sync.c:588 #: lib/libalpm/be_local.c:765 lib/libalpm/be_sync.c:618
#, c-format #, c-format
msgid "%s database is inconsistent: version mismatch on package %s\n" msgid "%s database is inconsistent: version mismatch on package %s\n"
msgstr "%s datu-basea kontraesankorra da: bertsioak ez datoz bat %s paketean\n" msgstr "%s datu-basea kontraesankorra da: bertsioak ez datoz bat %s paketean\n"
#: lib/libalpm/be_local.c:785 #: lib/libalpm/be_local.c:806
#, c-format #, c-format
msgid "unknown validation type for package %s: %s\n" msgid "unknown validation type for package %s: %s\n"
msgstr "Balidazio mota ezezaguna %s paketearentzat: %s\n" msgstr "Balidazio mota ezezaguna %s paketearentzat: %s\n"
#: lib/libalpm/be_package.c:478 lib/libalpm/be_package.c:631 #: lib/libalpm/be_local.c:841
#: lib/libalpm/be_package.c:643 #, c-format
msgid "%s: unknown key '%s' in local database\n"
msgstr ""
#: lib/libalpm/be_package.c:255
#, c-format
msgid "%s: unknown key '%s' in package description\n"
msgstr ""
#: lib/libalpm/be_package.c:482 lib/libalpm/be_package.c:635
#: lib/libalpm/be_package.c:647
#, c-format #, c-format
msgid "error while reading package %s: %s\n" msgid "error while reading package %s: %s\n"
msgstr "errorea %s paketea irakurtzean: %s\n" msgstr "errorea %s paketea irakurtzean: %s\n"
#: lib/libalpm/be_package.c:491 lib/libalpm/be_package.c:514 #: lib/libalpm/be_package.c:495 lib/libalpm/be_package.c:518
#, c-format #, c-format
msgid "error while reading mtree of package %s: %s\n" msgid "error while reading mtree of package %s: %s\n"
msgstr "errorea %s paketearen mtree-a irakurtzean: %s\n" msgstr "errorea %s paketearen mtree-a irakurtzean: %s\n"
#: lib/libalpm/be_package.c:597 #: lib/libalpm/be_package.c:601
#, c-format #, c-format
msgid "could not parse package description file in %s\n" msgid "could not parse package description file in %s\n"
msgstr "ezin izan da paketearen deskripzioa prozesatu %s fitxategian\n" msgstr "ezin izan da paketearen deskripzioa prozesatu %s fitxategian\n"
#: lib/libalpm/be_package.c:602 #: lib/libalpm/be_package.c:606
#, c-format #, c-format
msgid "missing package name in %s\n" msgid "missing package name in %s\n"
msgstr "paketearen izena falta da hemen: %s\n" msgstr "paketearen izena falta da hemen: %s\n"
#: lib/libalpm/be_package.c:606 #: lib/libalpm/be_package.c:610
#, c-format #, c-format
msgid "missing package version in %s\n" msgid "missing package version in %s\n"
msgstr "paketearen bertsioa falta da hemen: %s\n" msgstr "paketearen bertsioa falta da hemen: %s\n"
#: lib/libalpm/be_package.c:610 #: lib/libalpm/be_package.c:614
#, c-format #, c-format
msgid "invalid package version in %s\n" msgid "invalid package version in %s\n"
msgstr "paketearen bertsio baliogabea hemen %s\n" msgstr "paketearen bertsio baliogabea hemen %s\n"
#: lib/libalpm/be_package.c:649 #: lib/libalpm/be_package.c:653
#, c-format #, c-format
msgid "missing package metadata in %s\n" msgid "missing package metadata in %s\n"
msgstr "paketearen metadatuak falta dira hemen: %s\n" msgstr "paketearen metadatuak falta dira hemen: %s\n"
#: lib/libalpm/be_package.c:741 #: lib/libalpm/be_package.c:745
#, c-format #, c-format
msgid "failed to read signature file: %s\n" msgid "failed to read signature file: %s\n"
msgstr "sinadura fitxategiaren irakurketak huts egin du: %s\n" msgstr "sinadura fitxategiaren irakurketak huts egin du: %s\n"
#: lib/libalpm/be_package.c:770 lib/libalpm/sync.c:953 #: lib/libalpm/be_package.c:768 lib/libalpm/sync.c:976
#, c-format #, c-format
msgid "required key missing from keyring\n" msgid "required key missing from keyring\n"
msgstr "beharrezko gakoa falta da gako sortan\n" msgstr "beharrezko gakoa falta da gako sortan\n"
@ -237,35 +252,40 @@ msgstr "beharrezko gakoa falta da gako sortan\n"
msgid "removing invalid file: %s\n" msgid "removing invalid file: %s\n"
msgstr "fitxategi baliogabea ezabatzen: %s\n" msgstr "fitxategi baliogabea ezabatzen: %s\n"
#: lib/libalpm/be_sync.c:449 #: lib/libalpm/be_sync.c:471
#, c-format #, c-format
msgid "could not parse package description file '%s' from db '%s'\n" msgid "could not parse package description file '%s' from db '%s'\n"
msgstr "ezin izan da '%s' fitxategi deskripzioa prozesatu '%s' datu-basetik\n" msgstr "ezin izan da '%s' fitxategi deskripzioa prozesatu '%s' datu-basetik\n"
#: lib/libalpm/be_sync.c:456 #: lib/libalpm/be_sync.c:486
#, c-format #, c-format
msgid "could not read db '%s' (%s)\n" msgid "could not read db '%s' (%s)\n"
msgstr "" msgstr ""
#: lib/libalpm/be_sync.c:489 lib/libalpm/be_sync.c:494 #: lib/libalpm/be_sync.c:519 lib/libalpm/be_sync.c:524
#, c-format #, c-format
msgid "%s database is inconsistent: filename of package %s is illegal\n" msgid "%s database is inconsistent: filename of package %s is illegal\n"
msgstr "" msgstr ""
"%s datu-basea kontraesankorra da: %s paketearen fitxategi izena legez " "%s datu-basea kontraesankorra da: %s paketearen fitxategi izena legez "
"kanpokoa da\n" "kanpokoa da\n"
#: lib/libalpm/be_sync.c:499 #: lib/libalpm/be_sync.c:529
#, c-format #, c-format
msgid "%s database is inconsistent: filename of package %s is too long\n" msgid "%s database is inconsistent: filename of package %s is too long\n"
msgstr "" msgstr ""
"%s datu-basea kontraesankorra da: %s paketearen fitxategi izena luzeegia da\n" "%s datu-basea kontraesankorra da: %s paketearen fitxategi izena luzeegia da\n"
#: lib/libalpm/be_sync.c:564 #: lib/libalpm/be_sync.c:594
#, c-format #, c-format
msgid "unknown database file: %s\n" msgid "unknown database file: %s\n"
msgstr "datu-base fitxategi ezezaguna: %s\n" msgstr "datu-base fitxategi ezezaguna: %s\n"
#: lib/libalpm/db.c:344 #: lib/libalpm/be_sync.c:712
#, c-format
msgid "%s: unknown key '%s' in sync database\n"
msgstr ""
#: lib/libalpm/db.c:413
#, c-format #, c-format
msgid "database path is undefined\n" msgid "database path is undefined\n"
msgstr "datu-basearen bide-izena definitu gabe dago\n" msgstr "datu-basearen bide-izena definitu gabe dago\n"
@ -305,108 +325,123 @@ msgstr "ezin izan da %s fitxategi sistema informazioa jaso: %s\n"
msgid "could not open file: %s: %s\n" msgid "could not open file: %s: %s\n"
msgstr "ezin izan da fitxategia ireki: %s :%s\n" msgstr "ezin izan da fitxategia ireki: %s :%s\n"
#: lib/libalpm/diskspace.c:146 lib/libalpm/diskspace.c:159 #: lib/libalpm/diskspace.c:154 lib/libalpm/diskspace.c:167
#, c-format #, c-format
msgid "could not get filesystem information\n" msgid "could not get filesystem information\n"
msgstr "ezin izan da fitxategi sistemaren informazioa jaso\n" msgstr "ezin izan da fitxategi sistemaren informazioa jaso\n"
#: lib/libalpm/diskspace.c:242 #: lib/libalpm/diskspace.c:254
#, c-format #, c-format
msgid "could not get file information for %s\n" msgid "could not get file information for %s\n"
msgstr "ezin izan da %sren informazioa jaso\n" msgstr "ezin izan da %sren informazioa jaso\n"
#: lib/libalpm/diskspace.c:256 lib/libalpm/diskspace.c:315 #: lib/libalpm/diskspace.c:268 lib/libalpm/diskspace.c:327
#, c-format #, c-format
msgid "could not determine mount point for file %s\n" msgid "could not determine mount point for file %s\n"
msgstr "ezin izan da %s fitxategiaren muntatze puntua zehaztu\n" msgstr "ezin izan da %s fitxategiaren muntatze puntua zehaztu\n"
#: lib/libalpm/diskspace.c:354 #: lib/libalpm/diskspace.c:366
#, c-format #, c-format
msgid "Partition %s too full: %jd blocks needed, %ju blocks free\n" msgid "Partition %s too full: %jd blocks needed, %ju blocks free\n"
msgstr "" msgstr ""
"%s partizioa beteta dago: %jd bloke behar dira, %ju bloke daude libre\n" "%s partizioa beteta dago: %jd bloke behar dira, %ju bloke daude libre\n"
#: lib/libalpm/diskspace.c:379 lib/libalpm/diskspace.c:433 #: lib/libalpm/diskspace.c:391 lib/libalpm/diskspace.c:445
#, c-format #, c-format
msgid "could not determine filesystem mount points\n" msgid "could not determine filesystem mount points\n"
msgstr "ezin izan dira fitxategi sistemaren muntatze puntuak zehaztu\n" msgstr "ezin izan dira fitxategi sistemaren muntatze puntuak zehaztu\n"
#: lib/libalpm/diskspace.c:385 #: lib/libalpm/diskspace.c:397
#, c-format #, c-format
msgid "could not determine cachedir mount point %s\n" msgid "could not determine cachedir mount point %s\n"
msgstr "ezin izan da cachedir muntatze puntua zehaztu %s\n" msgstr "ezin izan da cachedir muntatze puntua zehaztu %s\n"
#: lib/libalpm/diskspace.c:438 #: lib/libalpm/diskspace.c:450
#, c-format #, c-format
msgid "could not determine root mount point %s\n" msgid "could not determine root mount point %s\n"
msgstr "ezin izan da %s erro muntatze puntua zehaztu\n" msgstr "ezin izan da %s erro muntatze puntua zehaztu\n"
#: lib/libalpm/diskspace.c:486 #: lib/libalpm/diskspace.c:498
#, c-format #, c-format
msgid "Partition %s is mounted read only\n" msgid "Partition %s is mounted read only\n"
msgstr "%s partizioa soilik irakurtzeko moduan muntatuta dago\n" msgstr "%s partizioa soilik irakurtzeko moduan muntatuta dago\n"
#: lib/libalpm/dload.c:116 #: lib/libalpm/dload.c:107
#, c-format
msgid "failed to create temporary file for download\n"
msgstr "huts egin du deskargarako behin behineko fitxategiaren sorrerak\n"
#: lib/libalpm/dload.c:198
#, c-format #, c-format
msgid "" msgid ""
"too many errors from %s, skipping for the remainder of this transaction\n" "too many errors from %s, skipping for the remainder of this transaction\n"
msgstr "" msgstr ""
#: lib/libalpm/dload.c:220 #: lib/libalpm/dload.c:215
#, c-format
msgid "fatal error from %s, skipping for the remainder of this transaction\n"
msgstr ""
#: lib/libalpm/dload.c:310
#, c-format #, c-format
msgid "disk" msgid "disk"
msgstr "diskoa" msgstr "diskoa"
#: lib/libalpm/dload.c:392 #: lib/libalpm/dload.c:532 lib/libalpm/dload.c:570 lib/libalpm/dload.c:583
#, c-format
msgid "failed to create temporary file for download\n"
msgstr "huts egin du deskargarako behin behineko fitxategiaren sorrerak\n"
#: lib/libalpm/dload.c:509 lib/libalpm/dload.c:547 lib/libalpm/dload.c:561
#, c-format #, c-format
msgid "failed retrieving file '%s' from %s : %s\n" msgid "failed retrieving file '%s' from %s : %s\n"
msgstr "huts egin du '%s' fitxategia '%s'-tik erauzteak: %s\n" msgstr "huts egin du '%s' fitxategia '%s'-tik erauzteak: %s\n"
#: lib/libalpm/dload.c:539 #: lib/libalpm/dload.c:562
#, c-format #, c-format
msgid "failed retrieving file '%s' from %s : expected download size exceeded\n" msgid "failed retrieving file '%s' from %s : expected download size exceeded\n"
msgstr "" msgstr ""
"huts egin du '%s' fitxategia eskuratzean hemendik: %s : aurreikusitako " "huts egin du '%s' fitxategia eskuratzean hemendik: %s : aurreikusitako "
"deskarga tamaina gainditu da\n" "deskarga tamaina gainditu da\n"
#: lib/libalpm/dload.c:687 #: lib/libalpm/dload.c:685
#, c-format #, c-format
msgid "%s appears to be truncated: %jd/%jd bytes\n" msgid "%s appears to be truncated: %jd/%jd bytes\n"
msgstr "%s ez dago osorik antza: %jd/%jd byte\n" msgstr "%s ez dago osorik antza: %jd/%jd byte\n"
#: lib/libalpm/dload.c:787 #: lib/libalpm/dload.c:776
#, c-format #, c-format
msgid "url '%s' is invalid\n" msgid "url '%s' is invalid\n"
msgstr "" msgstr ""
"'%s' url baliogabea da\n" "'%s' url baliogabea da\n"
"\n" "\n"
#: lib/libalpm/dload.c:893 #: lib/libalpm/dload.c:864
#, c-format #, c-format
msgid "failed to setup a download payload for %s\n" msgid "failed to setup a download payload for %s\n"
msgstr "" msgstr ""
#: lib/libalpm/dload.c:905 #: lib/libalpm/dload.c:876
#, c-format #, c-format
msgid "curl returned error %d from transfer\n" msgid "curl returned error %d from transfer\n"
msgstr "" msgstr ""
#: lib/libalpm/dload.c:929 #: lib/libalpm/dload.c:900
#, c-format #, c-format
msgid "curl transfer error: %d\n" msgid "curl transfer error: %d\n"
msgstr "" msgstr ""
#: lib/libalpm/dload.c:1055 lib/libalpm/sync.c:840 #: lib/libalpm/dload.c:963
#, fuzzy, c-format
msgid "could not chdir to download directory %s\n"
msgstr "ezin izan da erro direktorioa aldatu (%s)\n"
#: lib/libalpm/dload.c:968
#, c-format
msgid "switching to sandbox user '%s' failed!\n"
msgstr ""
#: lib/libalpm/dload.c:1361 lib/libalpm/sync.c:861
#, c-format #, c-format
msgid "failed to retrieve some files\n" msgid "failed to retrieve some files\n"
msgstr "fitxategi batzuk eskuratzeak huts egin du\n" msgstr "fitxategi batzuk eskuratzeak huts egin du\n"
#: lib/libalpm/dload.c:1078 #: lib/libalpm/dload.c:1384
#, c-format #, c-format
msgid "download completed successfully but no file in the cache\n" msgid "download completed successfully but no file in the cache\n"
msgstr "" msgstr ""
@ -681,12 +716,12 @@ msgstr ""
msgid "unexpected error" msgid "unexpected error"
msgstr "ustegabeko errorea" msgstr "ustegabeko errorea"
#: lib/libalpm/handle.c:142 #: lib/libalpm/handle.c:165
#, c-format #, c-format
msgid "lock file missing %s\n" msgid "lock file missing %s\n"
msgstr "blokeo fitxategia falta da %s\n" msgstr "blokeo fitxategia falta da %s\n"
#: lib/libalpm/handle.c:148 #: lib/libalpm/handle.c:171
#, c-format #, c-format
msgid "could not remove lock file %s\n" msgid "could not remove lock file %s\n"
msgstr "ezin izan da %s blokeo fitxategia ezabatu\n" msgstr "ezin izan da %s blokeo fitxategia ezabatu\n"
@ -768,7 +803,7 @@ msgstr "ezin izan da direktorioa ireki: %s: %s\n"
msgid "could not open file: %s%s: %s\n" msgid "could not open file: %s%s: %s\n"
msgstr "" msgstr ""
#: lib/libalpm/hook.c:595 lib/libalpm/util.c:260 #: lib/libalpm/hook.c:595 lib/libalpm/util.c:279
#, c-format #, c-format
msgid "could not stat file %s: %s\n" msgid "could not stat file %s: %s\n"
msgstr "ezin izan da fitxategiaren egoera zehaztu: %s: %s\n" msgstr "ezin izan da fitxategiaren egoera zehaztu: %s: %s\n"
@ -778,11 +813,43 @@ msgstr "ezin izan da fitxategiaren egoera zehaztu: %s: %s\n"
msgid "could not read directory: %s: %s\n" msgid "could not read directory: %s: %s\n"
msgstr "" msgstr ""
#: lib/libalpm/package.c:598 #: lib/libalpm/package.c:614
#, c-format #, c-format
msgid "could not fully load metadata for package %s-%s\n" msgid "could not fully load metadata for package %s-%s\n"
msgstr "ezin izan dira %s-%s paketearen meta-datuak guztiz kargatu\n" msgstr "ezin izan dira %s-%s paketearen meta-datuak guztiz kargatu\n"
#: lib/libalpm/package.c:869
#, c-format
msgid "invalid package metadata (name or version missing)"
msgstr ""
#: lib/libalpm/package.c:874
#, c-format
msgid ""
"invalid metadata for package %s-%s (package name cannot start with '.' or "
"'-')\n"
msgstr ""
#: lib/libalpm/package.c:878
#, c-format
msgid ""
"invalid metadata for package %s-%s (package name contains invalid "
"characters)\n"
msgstr ""
#: lib/libalpm/package.c:885 lib/libalpm/package.c:889
#, c-format
msgid ""
"invalid metadata for package %s-%s (package version contains invalid "
"characters)\n"
msgstr ""
#: lib/libalpm/package.c:895
#, c-format
msgid ""
"invalid metadata for package %s-%s (package name and version too long)\n"
msgstr ""
#: lib/libalpm/remove.c:111 #: lib/libalpm/remove.c:111
#, c-format #, c-format
msgid "could not find %s in database -- skipping\n" msgid "could not find %s in database -- skipping\n"
@ -803,17 +870,17 @@ msgstr "ezin '%s' fitxategia ezabatu: %s\n"
msgid "could not backup %s due to PATH_MAX overflow\n" msgid "could not backup %s due to PATH_MAX overflow\n"
msgstr "" msgstr ""
#: lib/libalpm/remove.c:554 #: lib/libalpm/remove.c:570
#, c-format #, c-format
msgid "cannot remove %s (%s)\n" msgid "cannot remove %s (%s)\n"
msgstr "ezin ezabatu %s (%s)\n" msgstr "ezin ezabatu %s (%s)\n"
#: lib/libalpm/remove.c:727 #: lib/libalpm/remove.c:743
#, c-format #, c-format
msgid "could not remove database entry %s-%s\n" msgid "could not remove database entry %s-%s\n"
msgstr "ezin izan da datu-base sarrera ezabatu %s-%s\n" msgstr "ezin izan da datu-base sarrera ezabatu %s-%s\n"
#: lib/libalpm/remove.c:732 #: lib/libalpm/remove.c:748
#, c-format #, c-format
msgid "could not remove entry '%s' from cache\n" msgid "could not remove entry '%s' from cache\n"
msgstr "ezin izan da '%s' sarrera ezabatu katxetik\n" msgstr "ezin izan da '%s' sarrera ezabatu katxetik\n"
@ -823,89 +890,89 @@ msgstr "ezin izan da '%s' sarrera ezabatu katxetik\n"
msgid "Public keyring not found; have you run '%s'?\n" msgid "Public keyring not found; have you run '%s'?\n"
msgstr "" msgstr ""
#: lib/libalpm/signing.c:199 lib/libalpm/signing.c:767 #: lib/libalpm/signing.c:199 lib/libalpm/signing.c:773
#, c-format #, c-format
msgid "GPGME error: %s\n" msgid "GPGME error: %s\n"
msgstr "" msgstr ""
#: lib/libalpm/signing.c:274 #: lib/libalpm/signing.c:275
#, c-format #, c-format
msgid "looking up key %s using WKD\n" msgid "looking up key %s using WKD\n"
msgstr "" msgstr ""
#: lib/libalpm/signing.c:283 #: lib/libalpm/signing.c:289
#, c-format #, c-format
msgid "gpg error: %s\n" msgid "gpg error: %s\n"
msgstr "" msgstr ""
#: lib/libalpm/signing.c:430 lib/libalpm/signing.c:503 #: lib/libalpm/signing.c:440 lib/libalpm/signing.c:513
#, c-format #, c-format
msgid "keyring is not writable\n" msgid "keyring is not writable\n"
msgstr "" msgstr ""
#: lib/libalpm/signing.c:531 #: lib/libalpm/signing.c:537
#, c-format #, c-format
msgid "key \"%s\" on keyserver\n" msgid "key \"%s\" on keyserver\n"
msgstr "" msgstr ""
#: lib/libalpm/signing.c:536 #: lib/libalpm/signing.c:542
#, c-format #, c-format
msgid "key \"%s\" could not be imported\n" msgid "key \"%s\" could not be imported\n"
msgstr "" msgstr ""
#: lib/libalpm/signing.c:540 #: lib/libalpm/signing.c:546
#, c-format #, c-format
msgid "key \"%s\" could not be looked up remotely\n" msgid "key \"%s\" could not be looked up remotely\n"
msgstr "" msgstr ""
#: lib/libalpm/signing.c:926 lib/libalpm/sync.c:1022 #: lib/libalpm/signing.c:932 lib/libalpm/sync.c:1052
#, c-format #, c-format
msgid "%s: missing required signature\n" msgid "%s: missing required signature\n"
msgstr "%s: beharrezko sinadura falta da\n" msgstr "%s: beharrezko sinadura falta da\n"
#: lib/libalpm/signing.c:941 #: lib/libalpm/signing.c:947
#, c-format #, c-format
msgid "%s: signature from \"%s\" is marginal trust\n" msgid "%s: signature from \"%s\" is marginal trust\n"
msgstr "" msgstr ""
#: lib/libalpm/signing.c:949 #: lib/libalpm/signing.c:955
#, c-format #, c-format
msgid "%s: signature from \"%s\" is unknown trust\n" msgid "%s: signature from \"%s\" is unknown trust\n"
msgstr "" msgstr ""
#: lib/libalpm/signing.c:956 #: lib/libalpm/signing.c:962
#, c-format #, c-format
msgid "%s: signature from \"%s\" should never be trusted\n" msgid "%s: signature from \"%s\" should never be trusted\n"
msgstr "" msgstr ""
#: lib/libalpm/signing.c:968 #: lib/libalpm/signing.c:974
#, c-format #, c-format
msgid "%s: key \"%s\" is unknown\n" msgid "%s: key \"%s\" is unknown\n"
msgstr "" msgstr ""
#: lib/libalpm/signing.c:977 #: lib/libalpm/signing.c:983
#, c-format #, c-format
msgid "%s: key \"%s\" is disabled\n" msgid "%s: key \"%s\" is disabled\n"
msgstr "" msgstr ""
#: lib/libalpm/signing.c:981 #: lib/libalpm/signing.c:987
#, c-format #, c-format
msgid "%s: signature from \"%s\" is expired\n" msgid "%s: signature from \"%s\" is expired\n"
msgstr "" msgstr ""
#: lib/libalpm/signing.c:985 #: lib/libalpm/signing.c:991
#, c-format #, c-format
msgid "%s: signature from \"%s\" is invalid\n" msgid "%s: signature from \"%s\" is invalid\n"
msgstr "" msgstr ""
#: lib/libalpm/signing.c:1043 lib/libalpm/signing.c:1104 #: lib/libalpm/signing.c:1049 lib/libalpm/signing.c:1110
#: lib/libalpm/signing.c:1183 #: lib/libalpm/signing.c:1189
#, c-format #, c-format
msgid "%s: signature format error\n" msgid "%s: signature format error\n"
msgstr "" msgstr ""
#: lib/libalpm/signing.c:1136 lib/libalpm/signing.c:1169 #: lib/libalpm/signing.c:1142 lib/libalpm/signing.c:1175
#: lib/libalpm/signing.c:1177 #: lib/libalpm/signing.c:1183
#, c-format #, c-format
msgid "%s: unsupported signature format\n" msgid "%s: unsupported signature format\n"
msgstr "" msgstr ""
@ -940,117 +1007,122 @@ msgstr "ezikusi pakete ordezkapena (%s-%s => %s-%s)\n"
msgid "cannot replace %s by %s\n" msgid "cannot replace %s by %s\n"
msgstr "ezin %s ordezkatu %s paketearekin\n" msgstr "ezin %s ordezkatu %s paketearekin\n"
#: lib/libalpm/sync.c:476 #: lib/libalpm/sync.c:477
#, c-format #, c-format
msgid "packages %s and %s have the same filename: %s\n" msgid "packages %s and %s have the same filename: %s\n"
msgstr "" msgstr ""
#: lib/libalpm/sync.c:542 lib/libalpm/sync.c:612 #: lib/libalpm/sync.c:546 lib/libalpm/sync.c:618
#, c-format #, c-format
msgid "unresolvable package conflicts detected\n" msgid "unresolvable package conflicts detected\n"
msgstr "ebatzi ezineko paketeen arteko gatazka detektatu da\n" msgstr "ebatzi ezineko paketeen arteko gatazka detektatu da\n"
#: lib/libalpm/sync.c:562 #: lib/libalpm/sync.c:566
#, c-format #, c-format
msgid "removing '%s' from target list because it conflicts with '%s'\n" msgid "removing '%s-%s' from target list because it conflicts with '%s-%s'\n"
msgstr "'%s' helburutik ezabatzen gatazka sortzen duelako '%s' paketearekin\n" msgstr ""
#: lib/libalpm/sync.c:1036 #: lib/libalpm/sync.c:1020 lib/libalpm/sync.c:1187
#, c-format
msgid "%s: could not find package in cache\n"
msgstr ""
#: lib/libalpm/sync.c:1066
#, c-format #, c-format
msgid "failed to read file %s: %s\n" msgid "failed to read file %s: %s\n"
msgstr "" msgstr ""
#: lib/libalpm/sync.c:1223 #: lib/libalpm/sync.c:1324
#, c-format #, c-format
msgid "not enough free disk space\n" msgid "not enough free disk space\n"
msgstr "ez dago behar beste leku libre diskoan\n" msgstr "ez dago behar beste leku libre diskoan\n"
#: lib/libalpm/sync.c:1245 #: lib/libalpm/sync.c:1346
#, c-format #, c-format
msgid "could not commit removal transaction\n" msgid "could not commit removal transaction\n"
msgstr "ezin izan da ezabaketa transakzioa egikaritu\n" msgstr "ezin izan da ezabaketa transakzioa egikaritu\n"
#: lib/libalpm/sync.c:1253 #: lib/libalpm/sync.c:1354
#, c-format #, c-format
msgid "could not commit transaction\n" msgid "could not commit transaction\n"
msgstr "ezin izan da transakzioa egikaritu\n" msgstr "ezin izan da transakzioa egikaritu\n"
#: lib/libalpm/trans.c:365 #: lib/libalpm/trans.c:369
#, c-format #, c-format
msgid "could not create temp directory\n" msgid "could not create temp directory\n"
msgstr "ezin izan da temp direktorioa sortu\n" msgstr "ezin izan da temp direktorioa sortu\n"
#: lib/libalpm/trans.c:380 #: lib/libalpm/trans.c:384
#, c-format #, c-format
msgid "could not copy tempfile to %s (%s)\n" msgid "could not copy tempfile to %s (%s)\n"
msgstr "ezin izan da tempfile hona kopiatu %s (%s)\n" msgstr "ezin izan da tempfile hona kopiatu %s (%s)\n"
#: lib/libalpm/trans.c:411 #: lib/libalpm/trans.c:415
#, c-format #, c-format
msgid "could not remove %s\n" msgid "could not remove %s\n"
msgstr "ezin izan da %s ezabatu\n" msgstr "ezin izan da %s ezabatu\n"
#: lib/libalpm/trans.c:415 #: lib/libalpm/trans.c:419
#, c-format #, c-format
msgid "could not remove tmpdir %s\n" msgid "could not remove tmpdir %s\n"
msgstr "ezin tempdir ezabatu %s\n" msgstr "ezin tempdir ezabatu %s\n"
#: lib/libalpm/util.c:488 #: lib/libalpm/util.c:512
#, c-format #, c-format
msgid "unable to write to pipe (%s)\n" msgid "unable to write to pipe (%s)\n"
msgstr "ezin izan da kanalizazioan idatzi (%s)\n" msgstr "ezin izan da kanalizazioan idatzi (%s)\n"
#: lib/libalpm/util.c:547 #: lib/libalpm/util.c:571
#, c-format #, c-format
msgid "unable to read from pipe (%s)\n" msgid "unable to read from pipe (%s)\n"
msgstr "ezin izan da kanalizaziotik irakurri (%s)\n" msgstr "ezin izan da kanalizaziotik irakurri (%s)\n"
#: lib/libalpm/util.c:617 lib/libalpm/util.c:623 #: lib/libalpm/util.c:641 lib/libalpm/util.c:647
#, c-format #, c-format
msgid "could not create pipe (%s)\n" msgid "could not create pipe (%s)\n"
msgstr "ezin izan da kanalizazioa sortu (%s)\n" msgstr "ezin izan da kanalizazioa sortu (%s)\n"
#: lib/libalpm/util.c:631 #: lib/libalpm/util.c:655
#, c-format #, c-format
msgid "could not fork a new process (%s)\n" msgid "could not fork a new process (%s)\n"
msgstr "ezin izan da prozesu berri bat sardetu (%s)\n" msgstr "ezin izan da prozesu berri bat sardetu (%s)\n"
#: lib/libalpm/util.c:654 #: lib/libalpm/util.c:680
#, c-format #, c-format
msgid "could not change the root directory (%s)\n" msgid "could not change the root directory (%s)\n"
msgstr "ezin izan da erro direktorioa aldatu (%s)\n" msgstr "ezin izan da erro direktorioa aldatu (%s)\n"
#: lib/libalpm/util.c:666 #: lib/libalpm/util.c:700
#, c-format #, c-format
msgid "call to execv failed (%s)\n" msgid "call to execv failed (%s)\n"
msgstr "execv deiak huts egin du (%s)\n" msgstr "execv deiak huts egin du (%s)\n"
#: lib/libalpm/util.c:745 #: lib/libalpm/util.c:779
#, c-format #, c-format
msgid "call to waitpid failed (%s)\n" msgid "call to waitpid failed (%s)\n"
msgstr "waitpid deiak huts egin du (%s)\n" msgstr "waitpid deiak huts egin du (%s)\n"
#: lib/libalpm/util.c:755 #: lib/libalpm/util.c:789
#, c-format #, c-format
msgid "command failed to execute correctly\n" msgid "command failed to execute correctly\n"
msgstr "komandoa ez da behar bezala exekutatu\n" msgstr "komandoa ez da behar bezala exekutatu\n"
#: lib/libalpm/util.c:762 #: lib/libalpm/util.c:796
#, c-format #, c-format
msgid "Unknown signal" msgid "Unknown signal"
msgstr "Seinale ezezaguna" msgstr "Seinale ezezaguna"
#: lib/libalpm/util.c:764 #: lib/libalpm/util.c:798
#, c-format #, c-format
msgid "command terminated by signal %d: %s\n" msgid "command terminated by signal %d: %s\n"
msgstr "%d seinaleak eten du komandoa: %s\n" msgstr "%d seinaleak eten du komandoa: %s\n"
#: lib/libalpm/util.c:875 #: lib/libalpm/util.c:916
#, c-format #, c-format
msgid "no %s cache exists, creating...\n" msgid "no %s cache exists, creating...\n"
msgstr "ez dago %s katxerik, sortzen...\n" msgstr "ez dago %s katxerik, sortzen...\n"
#: lib/libalpm/util.c:906 #: lib/libalpm/util.c:947
#, c-format #, c-format
msgid "couldn't find or create package cache, using %s instead\n" msgid "couldn't find or create package cache, using %s instead\n"
msgstr "ezin izan da pakete katxea aurkitu edo sortu, %s erabiliko da ordez\n" msgstr "ezin izan da pakete katxea aurkitu edo sortu, %s erabiliko da ordez\n"

View file

@ -17,11 +17,11 @@
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Arch Linux Pacman package manager\n" "Project-Id-Version: Arch Linux Pacman package manager\n"
"Report-Msgid-Bugs-To: http://bugs.archlinux.org/index.php?project=3\n" "Report-Msgid-Bugs-To: https://gitlab.archlinux.org/pacman/pacman/-/issues\n"
"POT-Creation-Date: 2021-09-04 16:15+1000\n" "POT-Creation-Date: 2024-07-14 19:10+1000\n"
"PO-Revision-Date: 2021-05-20 02:25+0000\n" "PO-Revision-Date: 2010-11-29 23:17+0000\n"
"Last-Translator: Allan McRae <allan@archlinux.org>\n" "Last-Translator: Sami Korkalainen, 2018\n"
"Language-Team: Finnish (http://www.transifex.com/toofishes/archlinux-pacman/" "Language-Team: Finnish (http://app.transifex.com/toofishes/archlinux-pacman/"
"language/fi/)\n" "language/fi/)\n"
"Language: fi\n" "Language: fi\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
@ -49,17 +49,17 @@ msgstr "varhennetaan paketti %s (%s => %s)\n"
msgid "cannot allocate disk archive object" msgid "cannot allocate disk archive object"
msgstr "levyn arkisto-objektia ei voida varata" msgstr "levyn arkisto-objektia ei voida varata"
#: lib/libalpm/add.c:143 lib/libalpm/util.c:384 #: lib/libalpm/add.c:143 lib/libalpm/util.c:408
#, c-format #, c-format
msgid "warning given when extracting %s (%s)\n" msgid "warning given when extracting %s (%s)\n"
msgstr "annettiin varoitus purettaessa %s (%s)\n" msgstr "annettiin varoitus purettaessa %s (%s)\n"
#: lib/libalpm/add.c:146 lib/libalpm/util.c:387 #: lib/libalpm/add.c:146 lib/libalpm/util.c:411
#, c-format #, c-format
msgid "could not extract %s (%s)\n" msgid "could not extract %s (%s)\n"
msgstr "tiedostoa %s ei voitu purkaa (%s)\n" msgstr "tiedostoa %s ei voitu purkaa (%s)\n"
#: lib/libalpm/add.c:159 lib/libalpm/dload.c:709 lib/libalpm/remove.c:534 #: lib/libalpm/add.c:159 lib/libalpm/dload.c:707 lib/libalpm/remove.c:550
#, c-format #, c-format
msgid "could not rename %s to %s (%s)\n" msgid "could not rename %s to %s (%s)\n"
msgstr "kohdetta %s ei voitu nimetä uudelleen kohteeksi %s (%s)\n" msgstr "kohdetta %s ei voitu nimetä uudelleen kohteeksi %s (%s)\n"
@ -104,18 +104,18 @@ msgstr "purku: kansiota ei korvata tiedostolla %s\n"
msgid "unable to extract %s.pacnew: path too long" msgid "unable to extract %s.pacnew: path too long"
msgstr "ei voitu purkaa %s.pacnew: polku liian pitkä" msgstr "ei voitu purkaa %s.pacnew: polku liian pitkä"
#: lib/libalpm/add.c:510 lib/libalpm/util.c:335 lib/libalpm/util.c:600 #: lib/libalpm/add.c:510 lib/libalpm/util.c:354 lib/libalpm/util.c:624
#, c-format #, c-format
msgid "could not get current working directory\n" msgid "could not get current working directory\n"
msgstr "nykyisen kansion sijaintia ei voitu määrittää\n" msgstr "nykyisen kansion sijaintia ei voitu määrittää\n"
#: lib/libalpm/add.c:515 lib/libalpm/util.c:340 lib/libalpm/util.c:605 #: lib/libalpm/add.c:515 lib/libalpm/util.c:359 lib/libalpm/util.c:629
#: lib/libalpm/util.c:658 #: lib/libalpm/util.c:684
#, c-format #, c-format
msgid "could not change directory to %s (%s)\n" msgid "could not change directory to %s (%s)\n"
msgstr "ei voitu vaihtaa kansioon %s (%s)\n" msgstr "ei voitu vaihtaa kansioon %s (%s)\n"
#: lib/libalpm/add.c:571 lib/libalpm/util.c:405 lib/libalpm/util.c:774 #: lib/libalpm/add.c:571 lib/libalpm/util.c:429 lib/libalpm/util.c:808
#, c-format #, c-format
msgid "could not restore working directory (%s)\n" msgid "could not restore working directory (%s)\n"
msgstr "työhakemistoa ei voitu palauttaa (%s)\n" msgstr "työhakemistoa ei voitu palauttaa (%s)\n"
@ -140,101 +140,116 @@ msgstr "ei voitu päivittää tietokantamerkintää: %s-%s\n"
msgid "could not add entry '%s' in cache\n" msgid "could not add entry '%s' in cache\n"
msgstr "merkintää '%s' ei voitu lisätä välimuistiin\n" msgstr "merkintää '%s' ei voitu lisätä välimuistiin\n"
#: lib/libalpm/be_local.c:266 #: lib/libalpm/be_local.c:271
#, c-format #, c-format
msgid "error while reading file %s: %s\n" msgid "error while reading file %s: %s\n"
msgstr "virhe luettaessa tiedostoa %s: %s\n" msgstr "virhe luettaessa tiedostoa %s: %s\n"
#: lib/libalpm/be_local.c:376 #: lib/libalpm/be_local.c:382
#, c-format #, c-format
msgid "removing invalid database: %s\n" msgid "removing invalid database: %s\n"
msgstr "poistetaan virheellinen tietokanta: %s\n" msgstr "poistetaan virheellinen tietokanta: %s\n"
#: lib/libalpm/be_local.c:427 lib/libalpm/be_local.c:909 #: lib/libalpm/be_local.c:433 lib/libalpm/be_local.c:947
#, c-format #, c-format
msgid "could not create directory %s: %s\n" msgid "could not create directory %s: %s\n"
msgstr "kansiota %s ei voitu luoda: %s\n" msgstr "kansiota %s ei voitu luoda: %s\n"
#: lib/libalpm/be_local.c:602 lib/libalpm/be_sync.c:322 #: lib/libalpm/be_local.c:608 lib/libalpm/be_sync.c:339
#, c-format #, c-format
msgid "invalid name for database entry '%s'\n" msgid "invalid name for database entry '%s'\n"
msgstr "virheellinen nimi tietokantamerkinnälle '%s'\n" msgstr "virheellinen nimi tietokantamerkinnälle '%s'\n"
#: lib/libalpm/be_local.c:610 #: lib/libalpm/be_local.c:616
#, c-format #, c-format
msgid "duplicated database entry '%s'\n" msgid "duplicated database entry '%s'\n"
msgstr "tietokantamerkintä '%s' on useampaan kertaan\n" msgstr "tietokantamerkintä '%s' on useampaan kertaan\n"
#: lib/libalpm/be_local.c:622 #: lib/libalpm/be_local.c:628
#, c-format #, c-format
msgid "corrupted database entry '%s'\n" msgid "corrupted database entry '%s'\n"
msgstr "vahingoittunut tietokantamerkintä '%s'\n" msgstr "vahingoittunut tietokantamerkintä '%s'\n"
#: lib/libalpm/be_local.c:722 lib/libalpm/be_local.c:818 #: lib/libalpm/be_local.c:663
#: lib/libalpm/be_local.c:958 lib/libalpm/be_local.c:1055 #, fuzzy, c-format
#: lib/libalpm/diskspace.c:131 lib/libalpm/dload.c:823 lib/libalpm/util.c:254 msgid "unknown install reason for package %s: %s\n"
#: lib/libalpm/util.c:270 msgstr "tuntematon validointityyppi paketille %s: %s\n"
#: lib/libalpm/be_local.c:743 lib/libalpm/be_local.c:856
#: lib/libalpm/be_local.c:996 lib/libalpm/be_local.c:1102
#: lib/libalpm/diskspace.c:135 lib/libalpm/dload.c:792 lib/libalpm/util.c:273
#: lib/libalpm/util.c:289
#, c-format #, c-format
msgid "could not open file %s: %s\n" msgid "could not open file %s: %s\n"
msgstr "tiedostoa %s ei voitu avata: %s\n" msgstr "tiedostoa %s ei voitu avata: %s\n"
#: lib/libalpm/be_local.c:738 lib/libalpm/be_sync.c:582 #: lib/libalpm/be_local.c:759 lib/libalpm/be_sync.c:612
#, c-format #, c-format
msgid "%s database is inconsistent: name mismatch on package %s\n" msgid "%s database is inconsistent: name mismatch on package %s\n"
msgstr "tietokanta %s on epäyhtenäinen: paketin %s nimi ei täsmää\n" msgstr "tietokanta %s on epäyhtenäinen: paketin %s nimi ei täsmää\n"
#: lib/libalpm/be_local.c:744 lib/libalpm/be_sync.c:588 #: lib/libalpm/be_local.c:765 lib/libalpm/be_sync.c:618
#, c-format #, c-format
msgid "%s database is inconsistent: version mismatch on package %s\n" msgid "%s database is inconsistent: version mismatch on package %s\n"
msgstr "tietokanta %s on epäyhtenäinen: paketin %s versio ei täsmää\n" msgstr "tietokanta %s on epäyhtenäinen: paketin %s versio ei täsmää\n"
#: lib/libalpm/be_local.c:785 #: lib/libalpm/be_local.c:806
#, c-format #, c-format
msgid "unknown validation type for package %s: %s\n" msgid "unknown validation type for package %s: %s\n"
msgstr "tuntematon validointityyppi paketille %s: %s\n" msgstr "tuntematon validointityyppi paketille %s: %s\n"
#: lib/libalpm/be_package.c:478 lib/libalpm/be_package.c:631 #: lib/libalpm/be_local.c:841
#: lib/libalpm/be_package.c:643 #, c-format
msgid "%s: unknown key '%s' in local database\n"
msgstr ""
#: lib/libalpm/be_package.c:255
#, c-format
msgid "%s: unknown key '%s' in package description\n"
msgstr ""
#: lib/libalpm/be_package.c:482 lib/libalpm/be_package.c:635
#: lib/libalpm/be_package.c:647
#, c-format #, c-format
msgid "error while reading package %s: %s\n" msgid "error while reading package %s: %s\n"
msgstr "virhe luettaessa pakettia %s: %s\n" msgstr "virhe luettaessa pakettia %s: %s\n"
#: lib/libalpm/be_package.c:491 lib/libalpm/be_package.c:514 #: lib/libalpm/be_package.c:495 lib/libalpm/be_package.c:518
#, c-format #, c-format
msgid "error while reading mtree of package %s: %s\n" msgid "error while reading mtree of package %s: %s\n"
msgstr "virhe luettaessa paketin %s mtreetä: %s\n" msgstr "virhe luettaessa paketin %s mtreetä: %s\n"
#: lib/libalpm/be_package.c:597 #: lib/libalpm/be_package.c:601
#, c-format #, c-format
msgid "could not parse package description file in %s\n" msgid "could not parse package description file in %s\n"
msgstr "paketin kuvaustiedostoa %s ei voitu jäsentää\n" msgstr "paketin kuvaustiedostoa %s ei voitu jäsentää\n"
#: lib/libalpm/be_package.c:602 #: lib/libalpm/be_package.c:606
#, c-format #, c-format
msgid "missing package name in %s\n" msgid "missing package name in %s\n"
msgstr "paketin nimi puuttuu tiedostosta %s\n" msgstr "paketin nimi puuttuu tiedostosta %s\n"
#: lib/libalpm/be_package.c:606 #: lib/libalpm/be_package.c:610
#, c-format #, c-format
msgid "missing package version in %s\n" msgid "missing package version in %s\n"
msgstr "paketin versio puuttuu tiedostosta %s\n" msgstr "paketin versio puuttuu tiedostosta %s\n"
#: lib/libalpm/be_package.c:610 #: lib/libalpm/be_package.c:614
#, c-format #, c-format
msgid "invalid package version in %s\n" msgid "invalid package version in %s\n"
msgstr "virheellinen paketin versio tiedostossa %s\n" msgstr "virheellinen paketin versio tiedostossa %s\n"
#: lib/libalpm/be_package.c:649 #: lib/libalpm/be_package.c:653
#, c-format #, c-format
msgid "missing package metadata in %s\n" msgid "missing package metadata in %s\n"
msgstr "paketin metadata puuttuu tiedostosta %s\n" msgstr "paketin metadata puuttuu tiedostosta %s\n"
#: lib/libalpm/be_package.c:741 #: lib/libalpm/be_package.c:745
#, c-format #, c-format
msgid "failed to read signature file: %s\n" msgid "failed to read signature file: %s\n"
msgstr "allekirjoitustiedoston lukeminen epäonnistui: %s\n" msgstr "allekirjoitustiedoston lukeminen epäonnistui: %s\n"
#: lib/libalpm/be_package.c:770 lib/libalpm/sync.c:953 #: lib/libalpm/be_package.c:768 lib/libalpm/sync.c:976
#, c-format #, c-format
msgid "required key missing from keyring\n" msgid "required key missing from keyring\n"
msgstr "vaadittu avain puuttuu avainrenkaasta\n" msgstr "vaadittu avain puuttuu avainrenkaasta\n"
@ -244,34 +259,39 @@ msgstr "vaadittu avain puuttuu avainrenkaasta\n"
msgid "removing invalid file: %s\n" msgid "removing invalid file: %s\n"
msgstr "poistetaan virheellinen tiedosto: %s\n" msgstr "poistetaan virheellinen tiedosto: %s\n"
#: lib/libalpm/be_sync.c:449 #: lib/libalpm/be_sync.c:471
#, c-format #, c-format
msgid "could not parse package description file '%s' from db '%s'\n" msgid "could not parse package description file '%s' from db '%s'\n"
msgstr "paketin kuvaustiedostoa '%s' ei voitu jäsentää tietokannassa '%s'\n" msgstr "paketin kuvaustiedostoa '%s' ei voitu jäsentää tietokannassa '%s'\n"
#: lib/libalpm/be_sync.c:456 #: lib/libalpm/be_sync.c:486
#, c-format #, c-format
msgid "could not read db '%s' (%s)\n" msgid "could not read db '%s' (%s)\n"
msgstr "" msgstr ""
#: lib/libalpm/be_sync.c:489 lib/libalpm/be_sync.c:494 #: lib/libalpm/be_sync.c:519 lib/libalpm/be_sync.c:524
#, c-format #, c-format
msgid "%s database is inconsistent: filename of package %s is illegal\n" msgid "%s database is inconsistent: filename of package %s is illegal\n"
msgstr "" msgstr ""
"tietokanta %s on epäyhtenäinen: paketin %s tiedostonimi on virheellinen\n" "tietokanta %s on epäyhtenäinen: paketin %s tiedostonimi on virheellinen\n"
#: lib/libalpm/be_sync.c:499 #: lib/libalpm/be_sync.c:529
#, c-format #, c-format
msgid "%s database is inconsistent: filename of package %s is too long\n" msgid "%s database is inconsistent: filename of package %s is too long\n"
msgstr "" msgstr ""
"tietokanta %s on epäyhtenäinen: paketin %s tiedostonimi on liian pitkä\n" "tietokanta %s on epäyhtenäinen: paketin %s tiedostonimi on liian pitkä\n"
#: lib/libalpm/be_sync.c:564 #: lib/libalpm/be_sync.c:594
#, c-format #, c-format
msgid "unknown database file: %s\n" msgid "unknown database file: %s\n"
msgstr "tuntematon tietokantatiedosto: %s\n" msgstr "tuntematon tietokantatiedosto: %s\n"
#: lib/libalpm/db.c:344 #: lib/libalpm/be_sync.c:712
#, c-format
msgid "%s: unknown key '%s' in sync database\n"
msgstr ""
#: lib/libalpm/db.c:413
#, c-format #, c-format
msgid "database path is undefined\n" msgid "database path is undefined\n"
msgstr "tietokannan polkua ei ole määritelty\n" msgstr "tietokannan polkua ei ole määritelty\n"
@ -311,105 +331,120 @@ msgstr "ei saatu tietoja tiedostojärjestelmästä %s: %s\n"
msgid "could not open file: %s: %s\n" msgid "could not open file: %s: %s\n"
msgstr "tiedostoa ei voitu avata: %s: %s\n" msgstr "tiedostoa ei voitu avata: %s: %s\n"
#: lib/libalpm/diskspace.c:146 lib/libalpm/diskspace.c:159 #: lib/libalpm/diskspace.c:154 lib/libalpm/diskspace.c:167
#, c-format #, c-format
msgid "could not get filesystem information\n" msgid "could not get filesystem information\n"
msgstr "ei saatu tietoja tiedostojärjestelmästä\n" msgstr "ei saatu tietoja tiedostojärjestelmästä\n"
#: lib/libalpm/diskspace.c:242 #: lib/libalpm/diskspace.c:254
#, c-format #, c-format
msgid "could not get file information for %s\n" msgid "could not get file information for %s\n"
msgstr "ei voitu saada tietoja tiedostolle %s\n" msgstr "ei voitu saada tietoja tiedostolle %s\n"
#: lib/libalpm/diskspace.c:256 lib/libalpm/diskspace.c:315 #: lib/libalpm/diskspace.c:268 lib/libalpm/diskspace.c:327
#, c-format #, c-format
msgid "could not determine mount point for file %s\n" msgid "could not determine mount point for file %s\n"
msgstr "tiedoston %s tiedostojärjestelmän liitospistettä ei voitu selvittää\n" msgstr "tiedoston %s tiedostojärjestelmän liitospistettä ei voitu selvittää\n"
#: lib/libalpm/diskspace.c:354 #: lib/libalpm/diskspace.c:366
#, c-format #, c-format
msgid "Partition %s too full: %jd blocks needed, %ju blocks free\n" msgid "Partition %s too full: %jd blocks needed, %ju blocks free\n"
msgstr "Osio %s liian täynnä: %jd lohkoa tarvitaan, %ju lohkoa vapaana\n" msgstr "Osio %s liian täynnä: %jd lohkoa tarvitaan, %ju lohkoa vapaana\n"
#: lib/libalpm/diskspace.c:379 lib/libalpm/diskspace.c:433 #: lib/libalpm/diskspace.c:391 lib/libalpm/diskspace.c:445
#, c-format #, c-format
msgid "could not determine filesystem mount points\n" msgid "could not determine filesystem mount points\n"
msgstr "tiedostojärjestelmien liitospisteitä ei voitu selvittää\n" msgstr "tiedostojärjestelmien liitospisteitä ei voitu selvittää\n"
#: lib/libalpm/diskspace.c:385 #: lib/libalpm/diskspace.c:397
#, c-format #, c-format
msgid "could not determine cachedir mount point %s\n" msgid "could not determine cachedir mount point %s\n"
msgstr "välimuistikansion liitospistettä %s ei voitu selvittää\n" msgstr "välimuistikansion liitospistettä %s ei voitu selvittää\n"
#: lib/libalpm/diskspace.c:438 #: lib/libalpm/diskspace.c:450
#, c-format #, c-format
msgid "could not determine root mount point %s\n" msgid "could not determine root mount point %s\n"
msgstr "juuren %s liitospistettä ei voitu selvittää\n" msgstr "juuren %s liitospistettä ei voitu selvittää\n"
#: lib/libalpm/diskspace.c:486 #: lib/libalpm/diskspace.c:498
#, c-format #, c-format
msgid "Partition %s is mounted read only\n" msgid "Partition %s is mounted read only\n"
msgstr "Osio %s on liitetty vain lukutilassa\n" msgstr "Osio %s on liitetty vain lukutilassa\n"
#: lib/libalpm/dload.c:116 #: lib/libalpm/dload.c:107
#, c-format
msgid "failed to create temporary file for download\n"
msgstr "väliaikaistiedoston luonti lataamista varten epäonnistui\n"
#: lib/libalpm/dload.c:198
#, c-format #, c-format
msgid "" msgid ""
"too many errors from %s, skipping for the remainder of this transaction\n" "too many errors from %s, skipping for the remainder of this transaction\n"
msgstr "" msgstr ""
#: lib/libalpm/dload.c:220 #: lib/libalpm/dload.c:215
#, c-format
msgid "fatal error from %s, skipping for the remainder of this transaction\n"
msgstr ""
#: lib/libalpm/dload.c:310
#, c-format #, c-format
msgid "disk" msgid "disk"
msgstr "levy" msgstr "levy"
#: lib/libalpm/dload.c:392 #: lib/libalpm/dload.c:532 lib/libalpm/dload.c:570 lib/libalpm/dload.c:583
#, c-format
msgid "failed to create temporary file for download\n"
msgstr "väliaikaistiedoston luonti lataamista varten epäonnistui\n"
#: lib/libalpm/dload.c:509 lib/libalpm/dload.c:547 lib/libalpm/dload.c:561
#, c-format #, c-format
msgid "failed retrieving file '%s' from %s : %s\n" msgid "failed retrieving file '%s' from %s : %s\n"
msgstr "tiedoston '%s' nouto palvelimelta %s epäonnistui : %s\n" msgstr "tiedoston '%s' nouto palvelimelta %s epäonnistui : %s\n"
#: lib/libalpm/dload.c:539 #: lib/libalpm/dload.c:562
#, c-format #, c-format
msgid "failed retrieving file '%s' from %s : expected download size exceeded\n" msgid "failed retrieving file '%s' from %s : expected download size exceeded\n"
msgstr "" msgstr ""
"tiedoston '%s' noutaminen koneelta %s epäonnistui: odotettu latauskoko " "tiedoston '%s' noutaminen koneelta %s epäonnistui: odotettu latauskoko "
"ylittyi\n" "ylittyi\n"
#: lib/libalpm/dload.c:687 #: lib/libalpm/dload.c:685
#, c-format #, c-format
msgid "%s appears to be truncated: %jd/%jd bytes\n" msgid "%s appears to be truncated: %jd/%jd bytes\n"
msgstr "%s näyttää katkenneen: %jd/%jd tavua\n" msgstr "%s näyttää katkenneen: %jd/%jd tavua\n"
#: lib/libalpm/dload.c:787 #: lib/libalpm/dload.c:776
#, c-format #, c-format
msgid "url '%s' is invalid\n" msgid "url '%s' is invalid\n"
msgstr "osoite '%s' on virheellinen\n" msgstr "osoite '%s' on virheellinen\n"
#: lib/libalpm/dload.c:893 #: lib/libalpm/dload.c:864
#, c-format #, c-format
msgid "failed to setup a download payload for %s\n" msgid "failed to setup a download payload for %s\n"
msgstr "" msgstr ""
#: lib/libalpm/dload.c:905 #: lib/libalpm/dload.c:876
#, c-format #, c-format
msgid "curl returned error %d from transfer\n" msgid "curl returned error %d from transfer\n"
msgstr "" msgstr ""
#: lib/libalpm/dload.c:929 #: lib/libalpm/dload.c:900
#, c-format #, c-format
msgid "curl transfer error: %d\n" msgid "curl transfer error: %d\n"
msgstr "" msgstr ""
#: lib/libalpm/dload.c:1055 lib/libalpm/sync.c:840 #: lib/libalpm/dload.c:963
#, fuzzy, c-format
msgid "could not chdir to download directory %s\n"
msgstr "juurikansiota ei voitu vaihtaa (%s)\n"
#: lib/libalpm/dload.c:968
#, c-format
msgid "switching to sandbox user '%s' failed!\n"
msgstr ""
#: lib/libalpm/dload.c:1361 lib/libalpm/sync.c:861
#, c-format #, c-format
msgid "failed to retrieve some files\n" msgid "failed to retrieve some files\n"
msgstr "joidenkin tiedostojen noutaminen epäonnistui\n" msgstr "joidenkin tiedostojen noutaminen epäonnistui\n"
#: lib/libalpm/dload.c:1078 #: lib/libalpm/dload.c:1384
#, c-format #, c-format
msgid "download completed successfully but no file in the cache\n" msgid "download completed successfully but no file in the cache\n"
msgstr "" msgstr ""
@ -684,12 +719,12 @@ msgstr ""
msgid "unexpected error" msgid "unexpected error"
msgstr "odottamaton virhe" msgstr "odottamaton virhe"
#: lib/libalpm/handle.c:142 #: lib/libalpm/handle.c:165
#, c-format #, c-format
msgid "lock file missing %s\n" msgid "lock file missing %s\n"
msgstr "puuttuva lukkotiedosto %s\n" msgstr "puuttuva lukkotiedosto %s\n"
#: lib/libalpm/handle.c:148 #: lib/libalpm/handle.c:171
#, c-format #, c-format
msgid "could not remove lock file %s\n" msgid "could not remove lock file %s\n"
msgstr "lukkotiedostoa %s ei voitu poistaa\n" msgstr "lukkotiedostoa %s ei voitu poistaa\n"
@ -771,7 +806,7 @@ msgstr "kansiota ei voitu avata: %s: %s\n"
msgid "could not open file: %s%s: %s\n" msgid "could not open file: %s%s: %s\n"
msgstr "" msgstr ""
#: lib/libalpm/hook.c:595 lib/libalpm/util.c:260 #: lib/libalpm/hook.c:595 lib/libalpm/util.c:279
#, c-format #, c-format
msgid "could not stat file %s: %s\n" msgid "could not stat file %s: %s\n"
msgstr "tiedoston %s stat-toiminnon ei voitu tehdä: %s\n" msgstr "tiedoston %s stat-toiminnon ei voitu tehdä: %s\n"
@ -781,11 +816,43 @@ msgstr "tiedoston %s stat-toiminnon ei voitu tehdä: %s\n"
msgid "could not read directory: %s: %s\n" msgid "could not read directory: %s: %s\n"
msgstr "" msgstr ""
#: lib/libalpm/package.c:598 #: lib/libalpm/package.c:614
#, c-format #, c-format
msgid "could not fully load metadata for package %s-%s\n" msgid "could not fully load metadata for package %s-%s\n"
msgstr "paketin %s-%s metadataa ei voitu ladata täysin\n" msgstr "paketin %s-%s metadataa ei voitu ladata täysin\n"
#: lib/libalpm/package.c:869
#, c-format
msgid "invalid package metadata (name or version missing)"
msgstr ""
#: lib/libalpm/package.c:874
#, c-format
msgid ""
"invalid metadata for package %s-%s (package name cannot start with '.' or "
"'-')\n"
msgstr ""
#: lib/libalpm/package.c:878
#, c-format
msgid ""
"invalid metadata for package %s-%s (package name contains invalid "
"characters)\n"
msgstr ""
#: lib/libalpm/package.c:885 lib/libalpm/package.c:889
#, c-format
msgid ""
"invalid metadata for package %s-%s (package version contains invalid "
"characters)\n"
msgstr ""
#: lib/libalpm/package.c:895
#, c-format
msgid ""
"invalid metadata for package %s-%s (package name and version too long)\n"
msgstr ""
#: lib/libalpm/remove.c:111 #: lib/libalpm/remove.c:111
#, c-format #, c-format
msgid "could not find %s in database -- skipping\n" msgid "could not find %s in database -- skipping\n"
@ -806,17 +873,17 @@ msgstr "tiedostoa '%s' ei voitu poistaa: %s\n"
msgid "could not backup %s due to PATH_MAX overflow\n" msgid "could not backup %s due to PATH_MAX overflow\n"
msgstr "" msgstr ""
#: lib/libalpm/remove.c:554 #: lib/libalpm/remove.c:570
#, c-format #, c-format
msgid "cannot remove %s (%s)\n" msgid "cannot remove %s (%s)\n"
msgstr "tiedostoa %s ei voida poistaa (%s)\n" msgstr "tiedostoa %s ei voida poistaa (%s)\n"
#: lib/libalpm/remove.c:727 #: lib/libalpm/remove.c:743
#, c-format #, c-format
msgid "could not remove database entry %s-%s\n" msgid "could not remove database entry %s-%s\n"
msgstr "ei voitu poistaa tietokantamerkintää %s-%s\n" msgstr "ei voitu poistaa tietokantamerkintää %s-%s\n"
#: lib/libalpm/remove.c:732 #: lib/libalpm/remove.c:748
#, c-format #, c-format
msgid "could not remove entry '%s' from cache\n" msgid "could not remove entry '%s' from cache\n"
msgstr "merkintää '%s' ei voitu poistaa välimuistista\n" msgstr "merkintää '%s' ei voitu poistaa välimuistista\n"
@ -826,89 +893,89 @@ msgstr "merkintää '%s' ei voitu poistaa välimuistista\n"
msgid "Public keyring not found; have you run '%s'?\n" msgid "Public keyring not found; have you run '%s'?\n"
msgstr "" msgstr ""
#: lib/libalpm/signing.c:199 lib/libalpm/signing.c:767 #: lib/libalpm/signing.c:199 lib/libalpm/signing.c:773
#, c-format #, c-format
msgid "GPGME error: %s\n" msgid "GPGME error: %s\n"
msgstr "" msgstr ""
#: lib/libalpm/signing.c:274 #: lib/libalpm/signing.c:275
#, c-format #, c-format
msgid "looking up key %s using WKD\n" msgid "looking up key %s using WKD\n"
msgstr "" msgstr ""
#: lib/libalpm/signing.c:283 #: lib/libalpm/signing.c:289
#, c-format #, c-format
msgid "gpg error: %s\n" msgid "gpg error: %s\n"
msgstr "" msgstr ""
#: lib/libalpm/signing.c:430 lib/libalpm/signing.c:503 #: lib/libalpm/signing.c:440 lib/libalpm/signing.c:513
#, c-format #, c-format
msgid "keyring is not writable\n" msgid "keyring is not writable\n"
msgstr "" msgstr ""
#: lib/libalpm/signing.c:531 #: lib/libalpm/signing.c:537
#, c-format #, c-format
msgid "key \"%s\" on keyserver\n" msgid "key \"%s\" on keyserver\n"
msgstr "" msgstr ""
#: lib/libalpm/signing.c:536 #: lib/libalpm/signing.c:542
#, c-format #, c-format
msgid "key \"%s\" could not be imported\n" msgid "key \"%s\" could not be imported\n"
msgstr "" msgstr ""
#: lib/libalpm/signing.c:540 #: lib/libalpm/signing.c:546
#, c-format #, c-format
msgid "key \"%s\" could not be looked up remotely\n" msgid "key \"%s\" could not be looked up remotely\n"
msgstr "" msgstr ""
#: lib/libalpm/signing.c:926 lib/libalpm/sync.c:1022 #: lib/libalpm/signing.c:932 lib/libalpm/sync.c:1052
#, c-format #, c-format
msgid "%s: missing required signature\n" msgid "%s: missing required signature\n"
msgstr "%s: pakollinen allekirjoitus puuttuu\n" msgstr "%s: pakollinen allekirjoitus puuttuu\n"
#: lib/libalpm/signing.c:941 #: lib/libalpm/signing.c:947
#, c-format #, c-format
msgid "%s: signature from \"%s\" is marginal trust\n" msgid "%s: signature from \"%s\" is marginal trust\n"
msgstr "" msgstr ""
#: lib/libalpm/signing.c:949 #: lib/libalpm/signing.c:955
#, c-format #, c-format
msgid "%s: signature from \"%s\" is unknown trust\n" msgid "%s: signature from \"%s\" is unknown trust\n"
msgstr "" msgstr ""
#: lib/libalpm/signing.c:956 #: lib/libalpm/signing.c:962
#, c-format #, c-format
msgid "%s: signature from \"%s\" should never be trusted\n" msgid "%s: signature from \"%s\" should never be trusted\n"
msgstr "" msgstr ""
#: lib/libalpm/signing.c:968 #: lib/libalpm/signing.c:974
#, c-format #, c-format
msgid "%s: key \"%s\" is unknown\n" msgid "%s: key \"%s\" is unknown\n"
msgstr "" msgstr ""
#: lib/libalpm/signing.c:977 #: lib/libalpm/signing.c:983
#, c-format #, c-format
msgid "%s: key \"%s\" is disabled\n" msgid "%s: key \"%s\" is disabled\n"
msgstr "" msgstr ""
#: lib/libalpm/signing.c:981 #: lib/libalpm/signing.c:987
#, c-format #, c-format
msgid "%s: signature from \"%s\" is expired\n" msgid "%s: signature from \"%s\" is expired\n"
msgstr "" msgstr ""
#: lib/libalpm/signing.c:985 #: lib/libalpm/signing.c:991
#, c-format #, c-format
msgid "%s: signature from \"%s\" is invalid\n" msgid "%s: signature from \"%s\" is invalid\n"
msgstr "" msgstr ""
#: lib/libalpm/signing.c:1043 lib/libalpm/signing.c:1104 #: lib/libalpm/signing.c:1049 lib/libalpm/signing.c:1110
#: lib/libalpm/signing.c:1183 #: lib/libalpm/signing.c:1189
#, c-format #, c-format
msgid "%s: signature format error\n" msgid "%s: signature format error\n"
msgstr "" msgstr ""
#: lib/libalpm/signing.c:1136 lib/libalpm/signing.c:1169 #: lib/libalpm/signing.c:1142 lib/libalpm/signing.c:1175
#: lib/libalpm/signing.c:1177 #: lib/libalpm/signing.c:1183
#, c-format #, c-format
msgid "%s: unsupported signature format\n" msgid "%s: unsupported signature format\n"
msgstr "" msgstr ""
@ -943,119 +1010,122 @@ msgstr "ohitetaan paketin korvaus (%s-%s => %s-%s)\n"
msgid "cannot replace %s by %s\n" msgid "cannot replace %s by %s\n"
msgstr "pakettia %s ei voi korvata paketilla %s\n" msgstr "pakettia %s ei voi korvata paketilla %s\n"
#: lib/libalpm/sync.c:476 #: lib/libalpm/sync.c:477
#, c-format #, c-format
msgid "packages %s and %s have the same filename: %s\n" msgid "packages %s and %s have the same filename: %s\n"
msgstr "" msgstr ""
#: lib/libalpm/sync.c:542 lib/libalpm/sync.c:612 #: lib/libalpm/sync.c:546 lib/libalpm/sync.c:618
#, c-format #, c-format
msgid "unresolvable package conflicts detected\n" msgid "unresolvable package conflicts detected\n"
msgstr "ratkaisemattomia pakettiristiriitoja havaittu\n" msgstr "ratkaisemattomia pakettiristiriitoja havaittu\n"
#: lib/libalpm/sync.c:562 #: lib/libalpm/sync.c:566
#, c-format #, c-format
msgid "removing '%s' from target list because it conflicts with '%s'\n" msgid "removing '%s-%s' from target list because it conflicts with '%s-%s'\n"
msgstr "" msgstr ""
"poistetaan '%s' kohteiden listasta, koska se on ristiriidassa paketin '%s' "
"kanssa\n"
#: lib/libalpm/sync.c:1036 #: lib/libalpm/sync.c:1020 lib/libalpm/sync.c:1187
#, c-format
msgid "%s: could not find package in cache\n"
msgstr ""
#: lib/libalpm/sync.c:1066
#, c-format #, c-format
msgid "failed to read file %s: %s\n" msgid "failed to read file %s: %s\n"
msgstr "" msgstr ""
#: lib/libalpm/sync.c:1223 #: lib/libalpm/sync.c:1324
#, c-format #, c-format
msgid "not enough free disk space\n" msgid "not enough free disk space\n"
msgstr "ei tarpeeksi vapaata levytilaa\n" msgstr "ei tarpeeksi vapaata levytilaa\n"
#: lib/libalpm/sync.c:1245 #: lib/libalpm/sync.c:1346
#, c-format #, c-format
msgid "could not commit removal transaction\n" msgid "could not commit removal transaction\n"
msgstr "poistotoimenpidettä ei voitu suorittaa\n" msgstr "poistotoimenpidettä ei voitu suorittaa\n"
#: lib/libalpm/sync.c:1253 #: lib/libalpm/sync.c:1354
#, c-format #, c-format
msgid "could not commit transaction\n" msgid "could not commit transaction\n"
msgstr "toimenpidettä ei voitu suorittaa\n" msgstr "toimenpidettä ei voitu suorittaa\n"
#: lib/libalpm/trans.c:365 #: lib/libalpm/trans.c:369
#, c-format #, c-format
msgid "could not create temp directory\n" msgid "could not create temp directory\n"
msgstr "väliaikaiskansiota ei voitu luoda\n" msgstr "väliaikaiskansiota ei voitu luoda\n"
#: lib/libalpm/trans.c:380 #: lib/libalpm/trans.c:384
#, c-format #, c-format
msgid "could not copy tempfile to %s (%s)\n" msgid "could not copy tempfile to %s (%s)\n"
msgstr "väliaikaistiedostoa ei voitu kopioida kansioon %s (%s)\n" msgstr "väliaikaistiedostoa ei voitu kopioida kansioon %s (%s)\n"
#: lib/libalpm/trans.c:411 #: lib/libalpm/trans.c:415
#, c-format #, c-format
msgid "could not remove %s\n" msgid "could not remove %s\n"
msgstr "%s ei voitu poistaa\n" msgstr "%s ei voitu poistaa\n"
#: lib/libalpm/trans.c:415 #: lib/libalpm/trans.c:419
#, c-format #, c-format
msgid "could not remove tmpdir %s\n" msgid "could not remove tmpdir %s\n"
msgstr "väliaikaiskansiota %s ei voitu poistaa\n" msgstr "väliaikaiskansiota %s ei voitu poistaa\n"
#: lib/libalpm/util.c:488 #: lib/libalpm/util.c:512
#, c-format #, c-format
msgid "unable to write to pipe (%s)\n" msgid "unable to write to pipe (%s)\n"
msgstr "ei voitu kirjoittaa putkeen (%s)\n" msgstr "ei voitu kirjoittaa putkeen (%s)\n"
#: lib/libalpm/util.c:547 #: lib/libalpm/util.c:571
#, c-format #, c-format
msgid "unable to read from pipe (%s)\n" msgid "unable to read from pipe (%s)\n"
msgstr "ei voitu lukea putkesta (%s)\n" msgstr "ei voitu lukea putkesta (%s)\n"
#: lib/libalpm/util.c:617 lib/libalpm/util.c:623 #: lib/libalpm/util.c:641 lib/libalpm/util.c:647
#, c-format #, c-format
msgid "could not create pipe (%s)\n" msgid "could not create pipe (%s)\n"
msgstr "ei voitu luoda putkea (%s)\n" msgstr "ei voitu luoda putkea (%s)\n"
#: lib/libalpm/util.c:631 #: lib/libalpm/util.c:655
#, c-format #, c-format
msgid "could not fork a new process (%s)\n" msgid "could not fork a new process (%s)\n"
msgstr "ei voitu käynnistää uutta prosessia (%s)\n" msgstr "ei voitu käynnistää uutta prosessia (%s)\n"
#: lib/libalpm/util.c:654 #: lib/libalpm/util.c:680
#, c-format #, c-format
msgid "could not change the root directory (%s)\n" msgid "could not change the root directory (%s)\n"
msgstr "juurikansiota ei voitu vaihtaa (%s)\n" msgstr "juurikansiota ei voitu vaihtaa (%s)\n"
#: lib/libalpm/util.c:666 #: lib/libalpm/util.c:700
#, c-format #, c-format
msgid "call to execv failed (%s)\n" msgid "call to execv failed (%s)\n"
msgstr "execv-kutsu epäonnistui (%s)\n" msgstr "execv-kutsu epäonnistui (%s)\n"
#: lib/libalpm/util.c:745 #: lib/libalpm/util.c:779
#, c-format #, c-format
msgid "call to waitpid failed (%s)\n" msgid "call to waitpid failed (%s)\n"
msgstr "waitpid-kutsu epäonnistui (%s)\n" msgstr "waitpid-kutsu epäonnistui (%s)\n"
#: lib/libalpm/util.c:755 #: lib/libalpm/util.c:789
#, c-format #, c-format
msgid "command failed to execute correctly\n" msgid "command failed to execute correctly\n"
msgstr "komento päättyi virheeseen\n" msgstr "komento päättyi virheeseen\n"
#: lib/libalpm/util.c:762 #: lib/libalpm/util.c:796
#, c-format #, c-format
msgid "Unknown signal" msgid "Unknown signal"
msgstr "Tuntematon signaali" msgstr "Tuntematon signaali"
#: lib/libalpm/util.c:764 #: lib/libalpm/util.c:798
#, c-format #, c-format
msgid "command terminated by signal %d: %s\n" msgid "command terminated by signal %d: %s\n"
msgstr "signaali %d päätti komennon: %s\n" msgstr "signaali %d päätti komennon: %s\n"
#: lib/libalpm/util.c:875 #: lib/libalpm/util.c:916
#, c-format #, c-format
msgid "no %s cache exists, creating...\n" msgid "no %s cache exists, creating...\n"
msgstr "välimuistia %s ei ole olemassa, luodaan...\n" msgstr "välimuistia %s ei ole olemassa, luodaan...\n"
#: lib/libalpm/util.c:906 #: lib/libalpm/util.c:947
#, c-format #, c-format
msgid "couldn't find or create package cache, using %s instead\n" msgid "couldn't find or create package cache, using %s instead\n"
msgstr "" msgstr ""

View file

@ -8,28 +8,31 @@
# Antoine Lubineau <antoine@lubignon.info>, 2012 # Antoine Lubineau <antoine@lubignon.info>, 2012
# Antoine Lubineau <antoine@lubignon.info>, 2012-2014,2018 # Antoine Lubineau <antoine@lubignon.info>, 2012-2014,2018
# Cedric Girard <girard.cedric@gmail.com>, 2014 # Cedric Girard <girard.cedric@gmail.com>, 2014
# Charles Monzat <c.monzat@laposte.net>, 2018-2021 # Charles Monzat <c.monzat@laposte.net>, 2018-2021,2023
# Charles Monzat <c.monzat@laposte.net>, 2015-2018 # Charles Monzat <c.monzat@laposte.net>, 2015-2018
# Charles Monzat <c.monzat@laposte.net>, 2018 # Charles Monzat <c.monzat@laposte.net>, 2018
# Charles Monzat <c.monzat@laposte.net>, 2018 # Charles Monzat <c.monzat@laposte.net>, 2018
# Dan McGee <dpmcgee@gmail.com>, 2011 # Dan McGee <dpmcgee@gmail.com>, 2011
# jiehong <ma.jiehong@gmail.com>, 2011-2012 # jiehong <ma.jiehong@gmail.com>, 2011-2012
# shining <chantry.xavier@gmail.com>, 2011 # shining <chantry.xavier@gmail.com>, 2011
# solstice <solstice.dhiver@gmail.com>, 2023
# solstice <solstice.dhiver@gmail.com>, 2023
# Xavier Devlamynck <magicrhesus@ouranos.be>, 2011 # Xavier Devlamynck <magicrhesus@ouranos.be>, 2011
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Arch Linux Pacman package manager\n" "Project-Id-Version: Arch Linux Pacman package manager\n"
"Report-Msgid-Bugs-To: http://bugs.archlinux.org/index.php?project=3\n" "Report-Msgid-Bugs-To: https://gitlab.archlinux.org/pacman/pacman/-/issues\n"
"POT-Creation-Date: 2021-09-04 16:15+1000\n" "POT-Creation-Date: 2024-07-14 19:10+1000\n"
"PO-Revision-Date: 2021-07-05 08:09+0000\n" "PO-Revision-Date: 2010-11-29 23:17+0000\n"
"Last-Translator: Charles Monzat <c.monzat@laposte.net>\n" "Last-Translator: Xavier Devlamynck <magicrhesus@ouranos.be>, 2011\n"
"Language-Team: French (http://www.transifex.com/toofishes/archlinux-pacman/" "Language-Team: French (http://app.transifex.com/toofishes/archlinux-pacman/"
"language/fr/)\n" "language/fr/)\n"
"Language: fr\n" "Language: fr\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n" "Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % "
"1000000 == 0 ? 1 : 2;\n"
#: lib/libalpm/add.c:90 lib/libalpm/sync.c:279 #: lib/libalpm/add.c:90 lib/libalpm/sync.c:279
#, c-format #, c-format
@ -51,17 +54,17 @@ msgstr "retourne à la version antérieure du paquet %s (%s => %s)\n"
msgid "cannot allocate disk archive object" msgid "cannot allocate disk archive object"
msgstr "Impossible dallouer lobjet darchive disque" msgstr "Impossible dallouer lobjet darchive disque"
#: lib/libalpm/add.c:143 lib/libalpm/util.c:384 #: lib/libalpm/add.c:143 lib/libalpm/util.c:408
#, c-format #, c-format
msgid "warning given when extracting %s (%s)\n" msgid "warning given when extracting %s (%s)\n"
msgstr "problème pendant lextraction de %s (%s)\n" msgstr "problème pendant lextraction de %s (%s)\n"
#: lib/libalpm/add.c:146 lib/libalpm/util.c:387 #: lib/libalpm/add.c:146 lib/libalpm/util.c:411
#, c-format #, c-format
msgid "could not extract %s (%s)\n" msgid "could not extract %s (%s)\n"
msgstr "lextraction de %s a échoué (%s)\n" msgstr "lextraction de %s a échoué (%s)\n"
#: lib/libalpm/add.c:159 lib/libalpm/dload.c:709 lib/libalpm/remove.c:534 #: lib/libalpm/add.c:159 lib/libalpm/dload.c:707 lib/libalpm/remove.c:550
#, c-format #, c-format
msgid "could not rename %s to %s (%s)\n" msgid "could not rename %s to %s (%s)\n"
msgstr "impossible de renommer %s en %s (%s)\n" msgstr "impossible de renommer %s en %s (%s)\n"
@ -106,18 +109,18 @@ msgstr "extraction : nécrase pas le répertoire par le fichier %s\n"
msgid "unable to extract %s.pacnew: path too long" msgid "unable to extract %s.pacnew: path too long"
msgstr "impossible dextraire %s.pacnew : chemin trop long" msgstr "impossible dextraire %s.pacnew : chemin trop long"
#: lib/libalpm/add.c:510 lib/libalpm/util.c:335 lib/libalpm/util.c:600 #: lib/libalpm/add.c:510 lib/libalpm/util.c:354 lib/libalpm/util.c:624
#, c-format #, c-format
msgid "could not get current working directory\n" msgid "could not get current working directory\n"
msgstr "déterminer le répertoire courant a échoué\n" msgstr "déterminer le répertoire courant a échoué\n"
#: lib/libalpm/add.c:515 lib/libalpm/util.c:340 lib/libalpm/util.c:605 #: lib/libalpm/add.c:515 lib/libalpm/util.c:359 lib/libalpm/util.c:629
#: lib/libalpm/util.c:658 #: lib/libalpm/util.c:684
#, c-format #, c-format
msgid "could not change directory to %s (%s)\n" msgid "could not change directory to %s (%s)\n"
msgstr "changer de répertoire vers %s a échoué (%s)\n" msgstr "changer de répertoire vers %s a échoué (%s)\n"
#: lib/libalpm/add.c:571 lib/libalpm/util.c:405 lib/libalpm/util.c:774 #: lib/libalpm/add.c:571 lib/libalpm/util.c:429 lib/libalpm/util.c:808
#, c-format #, c-format
msgid "could not restore working directory (%s)\n" 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"
@ -142,101 +145,116 @@ msgstr "la mise à jour de lentrée de base de données %s-%s a échoué\n"
msgid "could not add entry '%s' in cache\n" msgid "could not add entry '%s' in cache\n"
msgstr "lajout au cache de lentrée « %s » a échoué\n" msgstr "lajout au cache de lentrée « %s » a échoué\n"
#: lib/libalpm/be_local.c:266 #: lib/libalpm/be_local.c:271
#, c-format #, c-format
msgid "error while reading file %s: %s\n" msgid "error while reading file %s: %s\n"
msgstr "erreur lors de la lecture du paquet %s : %s\n" msgstr "erreur lors de la lecture du paquet %s : %s\n"
#: lib/libalpm/be_local.c:376 #: lib/libalpm/be_local.c:382
#, c-format #, c-format
msgid "removing invalid database: %s\n" msgid "removing invalid database: %s\n"
msgstr "suppression dune base de données non valide : %s\n" msgstr "suppression dune base de données non valide : %s\n"
#: lib/libalpm/be_local.c:427 lib/libalpm/be_local.c:909 #: lib/libalpm/be_local.c:433 lib/libalpm/be_local.c:947
#, c-format #, c-format
msgid "could not create directory %s: %s\n" msgid "could not create directory %s: %s\n"
msgstr "la création du répertoire %s a échoué : %s\n" msgstr "la création du répertoire %s a échoué : %s\n"
#: lib/libalpm/be_local.c:602 lib/libalpm/be_sync.c:322 #: lib/libalpm/be_local.c:608 lib/libalpm/be_sync.c:339
#, c-format #, c-format
msgid "invalid name for database entry '%s'\n" msgid "invalid name for database entry '%s'\n"
msgstr "nom incorrect pour lentrée de base de données « %s »\n" msgstr "nom incorrect pour lentrée de base de données « %s »\n"
#: lib/libalpm/be_local.c:610 #: lib/libalpm/be_local.c:616
#, c-format #, c-format
msgid "duplicated database entry '%s'\n" msgid "duplicated database entry '%s'\n"
msgstr "lentrée « %s » de la base de données est dupliquée\n" msgstr "lentrée « %s » de la base de données est dupliquée\n"
#: lib/libalpm/be_local.c:622 #: lib/libalpm/be_local.c:628
#, c-format #, c-format
msgid "corrupted database entry '%s'\n" msgid "corrupted database entry '%s'\n"
msgstr "lentrée « %s » de la base de données est corrompue\n" msgstr "lentrée « %s » de la base de données est corrompue\n"
#: lib/libalpm/be_local.c:722 lib/libalpm/be_local.c:818 #: lib/libalpm/be_local.c:663
#: lib/libalpm/be_local.c:958 lib/libalpm/be_local.c:1055 #, c-format
#: lib/libalpm/diskspace.c:131 lib/libalpm/dload.c:823 lib/libalpm/util.c:254 msgid "unknown install reason for package %s: %s\n"
#: lib/libalpm/util.c:270 msgstr ""
#: lib/libalpm/be_local.c:743 lib/libalpm/be_local.c:856
#: lib/libalpm/be_local.c:996 lib/libalpm/be_local.c:1102
#: lib/libalpm/diskspace.c:135 lib/libalpm/dload.c:792 lib/libalpm/util.c:273
#: lib/libalpm/util.c:289
#, c-format #, c-format
msgid "could not open file %s: %s\n" msgid "could not open file %s: %s\n"
msgstr "louverture du fichier %s a échoué : %s\n" msgstr "louverture du fichier %s a échoué : %s\n"
#: lib/libalpm/be_local.c:738 lib/libalpm/be_sync.c:582 #: lib/libalpm/be_local.c:759 lib/libalpm/be_sync.c:612
#, c-format #, c-format
msgid "%s database is inconsistent: name mismatch on package %s\n" msgid "%s database is inconsistent: name mismatch on package %s\n"
msgstr "le dépôt %s est incohérent : noms différents pour le paquet %s\n" msgstr "le dépôt %s est incohérent : noms différents pour le paquet %s\n"
#: lib/libalpm/be_local.c:744 lib/libalpm/be_sync.c:588 #: lib/libalpm/be_local.c:765 lib/libalpm/be_sync.c:618
#, c-format #, c-format
msgid "%s database is inconsistent: version mismatch on package %s\n" msgid "%s database is inconsistent: version mismatch on package %s\n"
msgstr "le dépôt %s est incohérent : versions différentes pour le paquet %s\n" msgstr "le dépôt %s est incohérent : versions différentes pour le paquet %s\n"
#: lib/libalpm/be_local.c:785 #: lib/libalpm/be_local.c:806
#, c-format #, c-format
msgid "unknown validation type for package %s: %s\n" msgid "unknown validation type for package %s: %s\n"
msgstr "type de validation inconnu pour le paquet %s : %s\n" msgstr "type de validation inconnu pour le paquet %s : %s\n"
#: lib/libalpm/be_package.c:478 lib/libalpm/be_package.c:631 #: lib/libalpm/be_local.c:841
#: lib/libalpm/be_package.c:643 #, c-format
msgid "%s: unknown key '%s' in local database\n"
msgstr ""
#: lib/libalpm/be_package.c:255
#, c-format
msgid "%s: unknown key '%s' in package description\n"
msgstr ""
#: lib/libalpm/be_package.c:482 lib/libalpm/be_package.c:635
#: lib/libalpm/be_package.c:647
#, c-format #, c-format
msgid "error while reading package %s: %s\n" msgid "error while reading package %s: %s\n"
msgstr "erreur lors de la lecture du paquet %s : %s\n" msgstr "erreur lors de la lecture du paquet %s : %s\n"
#: lib/libalpm/be_package.c:491 lib/libalpm/be_package.c:514 #: lib/libalpm/be_package.c:495 lib/libalpm/be_package.c:518
#, c-format #, c-format
msgid "error while reading mtree of package %s: %s\n" msgid "error while reading mtree of package %s: %s\n"
msgstr "erreur lors de la lecture du fichier .MTREE du paquet %s : %s\n" msgstr "erreur lors de la lecture du fichier .MTREE du paquet %s : %s\n"
#: lib/libalpm/be_package.c:597 #: lib/libalpm/be_package.c:601
#, c-format #, c-format
msgid "could not parse package description file in %s\n" msgid "could not parse package description file in %s\n"
msgstr "lanalyse du fichier de description a échoué dans %s\n" msgstr "lanalyse du fichier de description a échoué dans %s\n"
#: lib/libalpm/be_package.c:602 #: lib/libalpm/be_package.c:606
#, c-format #, c-format
msgid "missing package name in %s\n" msgid "missing package name in %s\n"
msgstr "nom de paquet manquant dans %s\n" msgstr "nom de paquet manquant dans %s\n"
#: lib/libalpm/be_package.c:606 #: lib/libalpm/be_package.c:610
#, c-format #, c-format
msgid "missing package version in %s\n" msgid "missing package version in %s\n"
msgstr "version de paquet manquante dans %s\n" msgstr "version de paquet manquante dans %s\n"
#: lib/libalpm/be_package.c:610 #: lib/libalpm/be_package.c:614
#, c-format #, c-format
msgid "invalid package version in %s\n" msgid "invalid package version in %s\n"
msgstr "version de paquet non valide dans %s\n" msgstr "version de paquet non valide dans %s\n"
#: lib/libalpm/be_package.c:649 #: lib/libalpm/be_package.c:653
#, c-format #, c-format
msgid "missing package metadata in %s\n" msgid "missing package metadata in %s\n"
msgstr "méta-données du paquet manquantes dans %s\n" msgstr "méta-données du paquet manquantes dans %s\n"
#: lib/libalpm/be_package.c:741 #: lib/libalpm/be_package.c:745
#, c-format #, c-format
msgid "failed to read signature file: %s\n" msgid "failed to read signature file: %s\n"
msgstr "échec lors de la lecture du fichier de signature : %s\n" msgstr "échec lors de la lecture du fichier de signature : %s\n"
#: lib/libalpm/be_package.c:770 lib/libalpm/sync.c:953 #: lib/libalpm/be_package.c:768 lib/libalpm/sync.c:976
#, c-format #, c-format
msgid "required key missing from keyring\n" msgid "required key missing from keyring\n"
msgstr "clé requise absente du trousseau\n" msgstr "clé requise absente du trousseau\n"
@ -246,36 +264,41 @@ msgstr "clé requise absente du trousseau\n"
msgid "removing invalid file: %s\n" msgid "removing invalid file: %s\n"
msgstr "suppression du fichier non valide : %s\n" msgstr "suppression du fichier non valide : %s\n"
#: lib/libalpm/be_sync.c:449 #: lib/libalpm/be_sync.c:471
#, c-format #, c-format
msgid "could not parse package description file '%s' from db '%s'\n" msgid "could not parse package description file '%s' from db '%s'\n"
msgstr "" msgstr ""
"impossible danalyser le fichier « %s » de description du paquet depuis la " "impossible danalyser le fichier « %s » de description du paquet depuis la "
"base de données « %s »\n" "base de données « %s »\n"
#: lib/libalpm/be_sync.c:456 #: lib/libalpm/be_sync.c:486
#, c-format #, c-format
msgid "could not read db '%s' (%s)\n" msgid "could not read db '%s' (%s)\n"
msgstr "impossible de lire la base de données « %s » (%s)\n" msgstr "impossible de lire la base de données « %s » (%s)\n"
#: lib/libalpm/be_sync.c:489 lib/libalpm/be_sync.c:494 #: lib/libalpm/be_sync.c:519 lib/libalpm/be_sync.c:524
#, c-format #, c-format
msgid "%s database is inconsistent: filename of package %s is illegal\n" msgid "%s database is inconsistent: filename of package %s is illegal\n"
msgstr "" msgstr ""
"le dépôt %s est incohérent : le nom de fichier du paquet %s est incorrect\n" "le dépôt %s est incohérent : le nom de fichier du paquet %s est incorrect\n"
#: lib/libalpm/be_sync.c:499 #: lib/libalpm/be_sync.c:529
#, c-format #, c-format
msgid "%s database is inconsistent: filename of package %s is too long\n" msgid "%s database is inconsistent: filename of package %s is too long\n"
msgstr "" msgstr ""
"le dépôt %s est incohérent : le nom de fichier du paquet %s est trop long\n" "le dépôt %s est incohérent : le nom de fichier du paquet %s est trop long\n"
#: lib/libalpm/be_sync.c:564 #: lib/libalpm/be_sync.c:594
#, c-format #, c-format
msgid "unknown database file: %s\n" msgid "unknown database file: %s\n"
msgstr "fichier de base de données inconnu : %s\n" msgstr "fichier de base de données inconnu : %s\n"
#: lib/libalpm/db.c:344 #: lib/libalpm/be_sync.c:712
#, c-format
msgid "%s: unknown key '%s' in sync database\n"
msgstr ""
#: lib/libalpm/db.c:413
#, c-format #, c-format
msgid "database path is undefined\n" msgid "database path is undefined\n"
msgstr "base de données non initialisée\n" msgstr "base de données non initialisée\n"
@ -317,105 +340,120 @@ msgstr ""
msgid "could not open file: %s: %s\n" msgid "could not open file: %s: %s\n"
msgstr "impossible douvrir le fichier %s : %s\n" msgstr "impossible douvrir le fichier %s : %s\n"
#: lib/libalpm/diskspace.c:146 lib/libalpm/diskspace.c:159 #: lib/libalpm/diskspace.c:154 lib/libalpm/diskspace.c:167
#, c-format #, c-format
msgid "could not get filesystem information\n" msgid "could not get filesystem information\n"
msgstr "impossible de récupérer les informations du système de fichiers\n" msgstr "impossible de récupérer les informations du système de fichiers\n"
#: lib/libalpm/diskspace.c:242 #: lib/libalpm/diskspace.c:254
#, c-format #, c-format
msgid "could not get file information for %s\n" msgid "could not get file information for %s\n"
msgstr "impossible de récupérer les informations de fichier pour %s\n" msgstr "impossible de récupérer les informations de fichier pour %s\n"
#: lib/libalpm/diskspace.c:256 lib/libalpm/diskspace.c:315 #: lib/libalpm/diskspace.c:268 lib/libalpm/diskspace.c:327
#, c-format #, c-format
msgid "could not determine mount point for file %s\n" msgid "could not determine mount point for file %s\n"
msgstr "impossible de déterminer le point de montage pour le fichier %s\n" msgstr "impossible de déterminer le point de montage pour le fichier %s\n"
#: lib/libalpm/diskspace.c:354 #: lib/libalpm/diskspace.c:366
#, c-format #, c-format
msgid "Partition %s too full: %jd blocks needed, %ju blocks free\n" msgid "Partition %s too full: %jd blocks needed, %ju blocks free\n"
msgstr "Partition %s pleine : %jd blocs nécessaires, %ju blocs libres\n" msgstr "Partition %s pleine : %jd blocs nécessaires, %ju blocs libres\n"
#: lib/libalpm/diskspace.c:379 lib/libalpm/diskspace.c:433 #: lib/libalpm/diskspace.c:391 lib/libalpm/diskspace.c:445
#, c-format #, c-format
msgid "could not determine filesystem mount points\n" msgid "could not determine filesystem mount points\n"
msgstr "impossible de déterminer les points de montage\n" msgstr "impossible de déterminer les points de montage\n"
#: lib/libalpm/diskspace.c:385 #: lib/libalpm/diskspace.c:397
#, c-format #, c-format
msgid "could not determine cachedir mount point %s\n" msgid "could not determine cachedir mount point %s\n"
msgstr "impossible de déterminer le point de montage du dossier de cache %s\n" msgstr "impossible de déterminer le point de montage du dossier de cache %s\n"
#: lib/libalpm/diskspace.c:438 #: lib/libalpm/diskspace.c:450
#, c-format #, c-format
msgid "could not determine root mount point %s\n" msgid "could not determine root mount point %s\n"
msgstr "impossible de déterminer le point de montage de la racine %s\n" msgstr "impossible de déterminer le point de montage de la racine %s\n"
#: lib/libalpm/diskspace.c:486 #: lib/libalpm/diskspace.c:498
#, c-format #, c-format
msgid "Partition %s is mounted read only\n" msgid "Partition %s is mounted read only\n"
msgstr "La partition %s est en lecture seule\n" msgstr "La partition %s est en lecture seule\n"
#: lib/libalpm/dload.c:116 #: lib/libalpm/dload.c:107
#, c-format
msgid ""
"too many errors from %s, skipping for the remainder of this transaction\n"
msgstr ""
#: lib/libalpm/dload.c:220
#, c-format
msgid "disk"
msgstr "disque"
#: lib/libalpm/dload.c:392
#, c-format #, c-format
msgid "failed to create temporary file for download\n" msgid "failed to create temporary file for download\n"
msgstr "échec de création dun fichier temporaire pour le téléchargement\n" msgstr "échec de création dun fichier temporaire pour le téléchargement\n"
#: lib/libalpm/dload.c:509 lib/libalpm/dload.c:547 lib/libalpm/dload.c:561 #: lib/libalpm/dload.c:198
#, c-format
msgid ""
"too many errors from %s, skipping for the remainder of this transaction\n"
msgstr "trop d'erreurs pour %s, ignoré pour le reste de la transaction\n"
#: lib/libalpm/dload.c:215
#, c-format
msgid "fatal error from %s, skipping for the remainder of this transaction\n"
msgstr "erreur fatale pour %s, ignoré pour le reste de la transaction\n"
#: lib/libalpm/dload.c:310
#, c-format
msgid "disk"
msgstr "disque"
#: lib/libalpm/dload.c:532 lib/libalpm/dload.c:570 lib/libalpm/dload.c:583
#, c-format #, c-format
msgid "failed retrieving file '%s' from %s : %s\n" msgid "failed retrieving file '%s' from %s : %s\n"
msgstr "échec de récupération du fichier « %s » depuis %s : %s\n" msgstr "échec de récupération du fichier « %s » depuis %s : %s\n"
#: lib/libalpm/dload.c:539 #: lib/libalpm/dload.c:562
#, c-format #, c-format
msgid "failed retrieving file '%s' from %s : expected download size exceeded\n" msgid "failed retrieving file '%s' from %s : expected download size exceeded\n"
msgstr "" msgstr ""
"échec de récupération du fichier « %s » depuis %s : taille attendue " "échec de récupération du fichier « %s » depuis %s : taille attendue "
"dépassée\n" "dépassée\n"
#: lib/libalpm/dload.c:687 #: lib/libalpm/dload.c:685
#, c-format #, c-format
msgid "%s appears to be truncated: %jd/%jd bytes\n" msgid "%s appears to be truncated: %jd/%jd bytes\n"
msgstr "%s est apparemment tronqué : %jd/%jd octets\n" msgstr "%s est apparemment tronqué : %jd/%jd octets\n"
#: lib/libalpm/dload.c:787 #: lib/libalpm/dload.c:776
#, c-format #, c-format
msgid "url '%s' is invalid\n" msgid "url '%s' is invalid\n"
msgstr "lURL « %s » est non valide\n" msgstr "lURL « %s » est non valide\n"
#: lib/libalpm/dload.c:893 #: lib/libalpm/dload.c:864
#, c-format #, c-format
msgid "failed to setup a download payload for %s\n" msgid "failed to setup a download payload for %s\n"
msgstr "" msgstr "échec à initialiser une tâche de téléchargement pour %s\n"
#: lib/libalpm/dload.c:905 #: lib/libalpm/dload.c:876
#, c-format #, c-format
msgid "curl returned error %d from transfer\n" msgid "curl returned error %d from transfer\n"
msgstr "" msgstr "curl a retourné l'erreur %dpour le transfert\n"
#: lib/libalpm/dload.c:929 #: lib/libalpm/dload.c:900
#, c-format #, c-format
msgid "curl transfer error: %d\n" msgid "curl transfer error: %d\n"
msgstr "erreur de curl pour le transfert: %d\n"
#: lib/libalpm/dload.c:963
#, c-format
msgid "could not chdir to download directory %s\n"
msgstr "impossible de se placer dans le répertoire de téléchargement %s\n"
#: lib/libalpm/dload.c:968
#, c-format
msgid "switching to sandbox user '%s' failed!\n"
msgstr "" msgstr ""
#: lib/libalpm/dload.c:1055 lib/libalpm/sync.c:840 #: lib/libalpm/dload.c:1361 lib/libalpm/sync.c:861
#, c-format #, c-format
msgid "failed to retrieve some files\n" msgid "failed to retrieve some files\n"
msgstr "erreur lors de la récupération de certains fichiers\n" msgstr "erreur lors de la récupération de certains fichiers\n"
#: lib/libalpm/dload.c:1078 #: lib/libalpm/dload.c:1384
#, c-format #, c-format
msgid "download completed successfully but no file in the cache\n" msgid "download completed successfully but no file in the cache\n"
msgstr "téléchargement terminé avec succès mais aucun fichier dans le cache\n" msgstr "téléchargement terminé avec succès mais aucun fichier dans le cache\n"
@ -548,7 +586,7 @@ msgstr "cible répétée"
#: lib/libalpm/error.c:94 #: lib/libalpm/error.c:94
#, c-format #, c-format
msgid "duplicate filename" msgid "duplicate filename"
msgstr "" msgstr "nom de fichier en double"
#: lib/libalpm/error.c:98 #: lib/libalpm/error.c:98
#, c-format #, c-format
@ -692,12 +730,12 @@ msgstr "compilé sans prise en charge de signature"
msgid "unexpected error" msgid "unexpected error"
msgstr "erreur non prévue" msgstr "erreur non prévue"
#: lib/libalpm/handle.c:142 #: lib/libalpm/handle.c:165
#, c-format #, c-format
msgid "lock file missing %s\n" msgid "lock file missing %s\n"
msgstr "fichier de verrou manquant %s\n" msgstr "fichier de verrou manquant %s\n"
#: lib/libalpm/handle.c:148 #: lib/libalpm/handle.c:171
#, c-format #, c-format
msgid "could not remove lock file %s\n" msgid "could not remove lock file %s\n"
msgstr "la suppression du fichier de verrouillage %s a échoué\n" msgstr "la suppression du fichier de verrouillage %s a échoué\n"
@ -779,7 +817,7 @@ msgstr "impossible douvrir le dossier %s : %s\n"
msgid "could not open file: %s%s: %s\n" msgid "could not open file: %s%s: %s\n"
msgstr "impossible douvrir le fichier : %s%s : %s\n" msgstr "impossible douvrir le fichier : %s%s : %s\n"
#: lib/libalpm/hook.c:595 lib/libalpm/util.c:260 #: lib/libalpm/hook.c:595 lib/libalpm/util.c:279
#, c-format #, c-format
msgid "could not stat file %s: %s\n" msgid "could not stat file %s: %s\n"
msgstr "impossible de connaître létat du fichier %s : %s\n" msgstr "impossible de connaître létat du fichier %s : %s\n"
@ -789,12 +827,44 @@ msgstr "impossible de connaître létat du fichier %s : %s\n"
msgid "could not read directory: %s: %s\n" msgid "could not read directory: %s: %s\n"
msgstr "impossible de lire le répertoire : %s : %s\n" msgstr "impossible de lire le répertoire : %s : %s\n"
#: lib/libalpm/package.c:598 #: lib/libalpm/package.c:614
#, c-format #, c-format
msgid "could not fully load metadata for package %s-%s\n" msgid "could not fully load metadata for package %s-%s\n"
msgstr "" msgstr ""
"les métadonnées pour le paquet %s-%s nont pas pu être totalement chargées.\n" "les métadonnées pour le paquet %s-%s nont pas pu être totalement chargées.\n"
#: lib/libalpm/package.c:869
#, c-format
msgid "invalid package metadata (name or version missing)"
msgstr ""
#: lib/libalpm/package.c:874
#, c-format
msgid ""
"invalid metadata for package %s-%s (package name cannot start with '.' or "
"'-')\n"
msgstr ""
#: lib/libalpm/package.c:878
#, c-format
msgid ""
"invalid metadata for package %s-%s (package name contains invalid "
"characters)\n"
msgstr ""
#: lib/libalpm/package.c:885 lib/libalpm/package.c:889
#, c-format
msgid ""
"invalid metadata for package %s-%s (package version contains invalid "
"characters)\n"
msgstr ""
#: lib/libalpm/package.c:895
#, c-format
msgid ""
"invalid metadata for package %s-%s (package name and version too long)\n"
msgstr ""
#: lib/libalpm/remove.c:111 #: lib/libalpm/remove.c:111
#, c-format #, c-format
msgid "could not find %s in database -- skipping\n" msgid "could not find %s in database -- skipping\n"
@ -815,17 +885,17 @@ msgstr "suppression du fichier « %s » impossible : %s\n"
msgid "could not backup %s due to PATH_MAX overflow\n" msgid "could not backup %s due to PATH_MAX overflow\n"
msgstr "impossible de sauvegarder %s en raison du débordement de PATH_MAX\n" msgstr "impossible de sauvegarder %s en raison du débordement de PATH_MAX\n"
#: lib/libalpm/remove.c:554 #: lib/libalpm/remove.c:570
#, c-format #, c-format
msgid "cannot remove %s (%s)\n" msgid "cannot remove %s (%s)\n"
msgstr "impossible de supprimer %s (%s)\n" msgstr "impossible de supprimer %s (%s)\n"
#: lib/libalpm/remove.c:727 #: lib/libalpm/remove.c:743
#, c-format #, c-format
msgid "could not remove database entry %s-%s\n" msgid "could not remove database entry %s-%s\n"
msgstr "la suppression de lentrée de base de données %s-%s a échoué\n" msgstr "la suppression de lentrée de base de données %s-%s a échoué\n"
#: lib/libalpm/remove.c:732 #: lib/libalpm/remove.c:748
#, c-format #, c-format
msgid "could not remove entry '%s' from cache\n" msgid "could not remove entry '%s' from cache\n"
msgstr "la suppression du cache de lentrée « %s » a échoué\n" msgstr "la suppression du cache de lentrée « %s » a échoué\n"
@ -836,89 +906,89 @@ msgid "Public keyring not found; have you run '%s'?\n"
msgstr "" msgstr ""
"Le trousseau de clés publique est introuvable ; avez-vous exécuté « %s » ?\n" "Le trousseau de clés publique est introuvable ; avez-vous exécuté « %s » ?\n"
#: lib/libalpm/signing.c:199 lib/libalpm/signing.c:767 #: lib/libalpm/signing.c:199 lib/libalpm/signing.c:773
#, c-format #, c-format
msgid "GPGME error: %s\n" msgid "GPGME error: %s\n"
msgstr "erreur GPGME : %s\n" msgstr "erreur GPGME : %s\n"
#: lib/libalpm/signing.c:274 #: lib/libalpm/signing.c:275
#, c-format #, c-format
msgid "looking up key %s using WKD\n" msgid "looking up key %s using WKD\n"
msgstr "recherche de la clé %s via WKD\n" msgstr "recherche de la clé %s via WKD\n"
#: lib/libalpm/signing.c:283 #: lib/libalpm/signing.c:289
#, c-format #, c-format
msgid "gpg error: %s\n" msgid "gpg error: %s\n"
msgstr "erreur gpg : %s\n" msgstr "erreur gpg : %s\n"
#: lib/libalpm/signing.c:430 lib/libalpm/signing.c:503 #: lib/libalpm/signing.c:440 lib/libalpm/signing.c:513
#, c-format #, c-format
msgid "keyring is not writable\n" msgid "keyring is not writable\n"
msgstr "le trousseau de clés nest pas accessible en écriture\n" msgstr "le trousseau de clés nest pas accessible en écriture\n"
#: lib/libalpm/signing.c:531 #: lib/libalpm/signing.c:537
#, c-format #, c-format
msgid "key \"%s\" on keyserver\n" msgid "key \"%s\" on keyserver\n"
msgstr "clé « %s » sur le serveur de clés\n" msgstr "clé « %s » sur le serveur de clés\n"
#: lib/libalpm/signing.c:536 #: lib/libalpm/signing.c:542
#, c-format #, c-format
msgid "key \"%s\" could not be imported\n" msgid "key \"%s\" could not be imported\n"
msgstr "la clé « %s » na pas pu être importée\n" msgstr "la clé « %s » na pas pu être importée\n"
#: lib/libalpm/signing.c:540 #: lib/libalpm/signing.c:546
#, c-format #, c-format
msgid "key \"%s\" could not be looked up remotely\n" msgid "key \"%s\" could not be looked up remotely\n"
msgstr "la clé « %s » ne peut être recherchée à distance\n" msgstr "la clé « %s » ne peut être recherchée à distance\n"
#: lib/libalpm/signing.c:926 lib/libalpm/sync.c:1022 #: lib/libalpm/signing.c:932 lib/libalpm/sync.c:1052
#, c-format #, c-format
msgid "%s: missing required signature\n" msgid "%s: missing required signature\n"
msgstr "%s : signature requise manquante\n" msgstr "%s : signature requise manquante\n"
#: lib/libalpm/signing.c:941 #: lib/libalpm/signing.c:947
#, c-format #, c-format
msgid "%s: signature from \"%s\" is marginal trust\n" msgid "%s: signature from \"%s\" is marginal trust\n"
msgstr "%s : la signature de « %s » est de confiance mitigée\n" msgstr "%s : la signature de « %s » est de confiance mitigée\n"
#: lib/libalpm/signing.c:949 #: lib/libalpm/signing.c:955
#, c-format #, c-format
msgid "%s: signature from \"%s\" is unknown trust\n" msgid "%s: signature from \"%s\" is unknown trust\n"
msgstr "%s : la signature de « %s » est de confiance inconnue\n" msgstr "%s : la signature de « %s » est de confiance inconnue\n"
#: lib/libalpm/signing.c:956 #: lib/libalpm/signing.c:962
#, c-format #, c-format
msgid "%s: signature from \"%s\" should never be trusted\n" msgid "%s: signature from \"%s\" should never be trusted\n"
msgstr "%s : la signature de « %s » nest pas digne de confiance\n" msgstr "%s : la signature de « %s » nest pas digne de confiance\n"
#: lib/libalpm/signing.c:968 #: lib/libalpm/signing.c:974
#, c-format #, c-format
msgid "%s: key \"%s\" is unknown\n" msgid "%s: key \"%s\" is unknown\n"
msgstr "%s : la clé « %s » est inconnue\n" msgstr "%s : la clé « %s » est inconnue\n"
#: lib/libalpm/signing.c:977 #: lib/libalpm/signing.c:983
#, c-format #, c-format
msgid "%s: key \"%s\" is disabled\n" msgid "%s: key \"%s\" is disabled\n"
msgstr "%s : la clé « %s » est désactivée\n" msgstr "%s : la clé « %s » est désactivée\n"
#: lib/libalpm/signing.c:981 #: lib/libalpm/signing.c:987
#, c-format #, c-format
msgid "%s: signature from \"%s\" is expired\n" msgid "%s: signature from \"%s\" is expired\n"
msgstr "%s : la signature de « %s » est périmée\n" msgstr "%s : la signature de « %s » est périmée\n"
#: lib/libalpm/signing.c:985 #: lib/libalpm/signing.c:991
#, c-format #, c-format
msgid "%s: signature from \"%s\" is invalid\n" msgid "%s: signature from \"%s\" is invalid\n"
msgstr "%s : la signature de « %s » nest pas valide\n" msgstr "%s : la signature de « %s » nest pas valide\n"
#: lib/libalpm/signing.c:1043 lib/libalpm/signing.c:1104 #: lib/libalpm/signing.c:1049 lib/libalpm/signing.c:1110
#: lib/libalpm/signing.c:1183 #: lib/libalpm/signing.c:1189
#, c-format #, c-format
msgid "%s: signature format error\n" msgid "%s: signature format error\n"
msgstr "%s : erreur de format de signature\n" msgstr "%s : erreur de format de signature\n"
#: lib/libalpm/signing.c:1136 lib/libalpm/signing.c:1169 #: lib/libalpm/signing.c:1142 lib/libalpm/signing.c:1175
#: lib/libalpm/signing.c:1177 #: lib/libalpm/signing.c:1183
#, c-format #, c-format
msgid "%s: unsupported signature format\n" msgid "%s: unsupported signature format\n"
msgstr "%s : format de signature non pris en charge\n" msgstr "%s : format de signature non pris en charge\n"
@ -953,120 +1023,126 @@ msgstr "ignore le remplacement du paquet (%s-%s => %s-%s)\n"
msgid "cannot replace %s by %s\n" msgid "cannot replace %s by %s\n"
msgstr "le remplacement de %s par %s est impossible\n" msgstr "le remplacement de %s par %s est impossible\n"
#: lib/libalpm/sync.c:476 #: lib/libalpm/sync.c:477
#, c-format #, c-format
msgid "packages %s and %s have the same filename: %s\n" msgid "packages %s and %s have the same filename: %s\n"
msgstr "les paquets %s et %s ont le même nom de fichier : %s\n" msgstr "les paquets %s et %s ont le même nom de fichier : %s\n"
#: lib/libalpm/sync.c:542 lib/libalpm/sync.c:612 #: lib/libalpm/sync.c:546 lib/libalpm/sync.c:618
#, c-format #, c-format
msgid "unresolvable package conflicts detected\n" msgid "unresolvable package conflicts detected\n"
msgstr "un conflit de paquets impossible à résoudre a été détecté\n" msgstr "un conflit de paquets impossible à résoudre a été détecté\n"
#: lib/libalpm/sync.c:562 #: lib/libalpm/sync.c:566
#, c-format #, c-format
msgid "removing '%s' from target list because it conflicts with '%s'\n" msgid "removing '%s-%s' from target list because it conflicts with '%s-%s'\n"
msgstr "" msgstr ""
"supprime « %s » de la liste de cible car il est en conflit avec « %s »\n" "suppression de « %s-%s » de la liste cible car cela entre en conflit avec "
"« %s-%s »\n"
#: lib/libalpm/sync.c:1036 #: lib/libalpm/sync.c:1020 lib/libalpm/sync.c:1187
#, c-format
msgid "%s: could not find package in cache\n"
msgstr "%s : impossible de trouver le paquet dans le cache\n"
#: lib/libalpm/sync.c:1066
#, c-format #, c-format
msgid "failed to read file %s: %s\n" msgid "failed to read file %s: %s\n"
msgstr "impossible de lire le fichier %s : %s\n" msgstr "impossible de lire le fichier %s : %s\n"
#: lib/libalpm/sync.c:1223 #: lib/libalpm/sync.c:1324
#, c-format #, c-format
msgid "not enough free disk space\n" msgid "not enough free disk space\n"
msgstr "espace disque insuffisant\n" msgstr "espace disque insuffisant\n"
#: lib/libalpm/sync.c:1245 #: lib/libalpm/sync.c:1346
#, c-format #, c-format
msgid "could not commit removal transaction\n" msgid "could not commit removal transaction\n"
msgstr "appliquer la transaction de suppression a échoué\n" msgstr "appliquer la transaction de suppression a échoué\n"
#: lib/libalpm/sync.c:1253 #: lib/libalpm/sync.c:1354
#, c-format #, c-format
msgid "could not commit transaction\n" msgid "could not commit transaction\n"
msgstr "appliquer la transaction a échoué\n" msgstr "appliquer la transaction a échoué\n"
#: lib/libalpm/trans.c:365 #: lib/libalpm/trans.c:369
#, c-format #, c-format
msgid "could not create temp directory\n" msgid "could not create temp directory\n"
msgstr "la création du répertoire temporaire a échoué\n" msgstr "la création du répertoire temporaire a échoué\n"
#: lib/libalpm/trans.c:380 #: lib/libalpm/trans.c:384
#, c-format #, c-format
msgid "could not copy tempfile to %s (%s)\n" msgid "could not copy tempfile to %s (%s)\n"
msgstr "la copie du fichier temporaire vers %s a échoué (%s)\n" msgstr "la copie du fichier temporaire vers %s a échoué (%s)\n"
#: lib/libalpm/trans.c:411 #: lib/libalpm/trans.c:415
#, c-format #, c-format
msgid "could not remove %s\n" msgid "could not remove %s\n"
msgstr "la suppression de %s a échoué\n" msgstr "la suppression de %s a échoué\n"
#: lib/libalpm/trans.c:415 #: lib/libalpm/trans.c:419
#, c-format #, c-format
msgid "could not remove tmpdir %s\n" msgid "could not remove tmpdir %s\n"
msgstr "la suppression du répertoire temporaire %s a échoué\n" msgstr "la suppression du répertoire temporaire %s a échoué\n"
#: lib/libalpm/util.c:488 #: lib/libalpm/util.c:512
#, c-format #, c-format
msgid "unable to write to pipe (%s)\n" msgid "unable to write to pipe (%s)\n"
msgstr "" msgstr ""
"impossible décrire dans le tube (%s)\n" "impossible décrire dans le tube (%s)\n"
"\n" "\n"
#: lib/libalpm/util.c:547 #: lib/libalpm/util.c:571
#, c-format #, c-format
msgid "unable to read from pipe (%s)\n" msgid "unable to read from pipe (%s)\n"
msgstr "impossible de lire à partir du tube (%s)\n" msgstr "impossible de lire à partir du tube (%s)\n"
#: lib/libalpm/util.c:617 lib/libalpm/util.c:623 #: lib/libalpm/util.c:641 lib/libalpm/util.c:647
#, c-format #, c-format
msgid "could not create pipe (%s)\n" msgid "could not create pipe (%s)\n"
msgstr "impossible de créer le tube (%s)\n" msgstr "impossible de créer le tube (%s)\n"
#: lib/libalpm/util.c:631 #: lib/libalpm/util.c:655
#, c-format #, c-format
msgid "could not fork a new process (%s)\n" msgid "could not fork a new process (%s)\n"
msgstr "la génération dun nouveau processus a échoué (%s)\n" msgstr "la génération dun nouveau processus a échoué (%s)\n"
#: lib/libalpm/util.c:654 #: lib/libalpm/util.c:680
#, c-format #, c-format
msgid "could not change the root directory (%s)\n" msgid "could not change the root directory (%s)\n"
msgstr "changer le répertoire racine a échoué (%s)\n" msgstr "changer le répertoire racine a échoué (%s)\n"
#: lib/libalpm/util.c:666 #: lib/libalpm/util.c:700
#, c-format #, c-format
msgid "call to execv failed (%s)\n" msgid "call to execv failed (%s)\n"
msgstr "lappel à execv a échoué (%s)\n" msgstr "lappel à execv a échoué (%s)\n"
#: lib/libalpm/util.c:745 #: lib/libalpm/util.c:779
#, c-format #, c-format
msgid "call to waitpid failed (%s)\n" msgid "call to waitpid failed (%s)\n"
msgstr "lappel de waitpid a échoué (%s)\n" msgstr "lappel de waitpid a échoué (%s)\n"
#: lib/libalpm/util.c:755 #: lib/libalpm/util.c:789
#, c-format #, c-format
msgid "command failed to execute correctly\n" msgid "command failed to execute correctly\n"
msgstr "la commande na pas pu être exécutée correctement\n" msgstr "la commande na pas pu être exécutée correctement\n"
#: lib/libalpm/util.c:762 #: lib/libalpm/util.c:796
#, c-format #, c-format
msgid "Unknown signal" msgid "Unknown signal"
msgstr "Signal inconnu" msgstr "Signal inconnu"
#: lib/libalpm/util.c:764 #: lib/libalpm/util.c:798
#, c-format #, c-format
msgid "command terminated by signal %d: %s\n" msgid "command terminated by signal %d: %s\n"
msgstr "commande terminée par le signal %d : %s\n" msgstr "commande terminée par le signal %d : %s\n"
#: lib/libalpm/util.c:875 #: lib/libalpm/util.c:916
#, c-format #, c-format
msgid "no %s cache exists, creating...\n" msgid "no %s cache exists, creating...\n"
msgstr "le cache %s nexiste pas, création…\n" msgstr "le cache %s nexiste pas, création…\n"
#: lib/libalpm/util.c:906 #: lib/libalpm/util.c:947
#, c-format #, c-format
msgid "couldn't find or create package cache, using %s instead\n" msgid "couldn't find or create package cache, using %s instead\n"
msgstr "" msgstr ""

View file

@ -8,17 +8,17 @@
# Alexandre Filgueira <faidoc@gmail.com>, 2013 # Alexandre Filgueira <faidoc@gmail.com>, 2013
# Alexandre Filgueira <faidoc@gmail.com>, 2013 # Alexandre Filgueira <faidoc@gmail.com>, 2013
# Daniel, 2016 # Daniel, 2016
# Daniel, 2016-2018 # Daniel, 2016-2018,2023
# Alexandre Filgueira <faidoc@gmail.com>, 2013 # Alexandre Filgueira <faidoc@gmail.com>, 2013
# Alexandre Filgueira <faidoc@gmail.com>, 2013 # Alexandre Filgueira <faidoc@gmail.com>, 2013
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Arch Linux Pacman package manager\n" "Project-Id-Version: Arch Linux Pacman package manager\n"
"Report-Msgid-Bugs-To: http://bugs.archlinux.org/index.php?project=3\n" "Report-Msgid-Bugs-To: https://gitlab.archlinux.org/pacman/pacman/-/issues\n"
"POT-Creation-Date: 2021-09-04 16:15+1000\n" "POT-Creation-Date: 2024-07-14 19:10+1000\n"
"PO-Revision-Date: 2021-05-20 02:25+0000\n" "PO-Revision-Date: 2010-11-29 23:17+0000\n"
"Last-Translator: Allan McRae <allan@archlinux.org>\n" "Last-Translator: Alexandre Filgueira <faidoc@gmail.com>, 2013\n"
"Language-Team: Galician (http://www.transifex.com/toofishes/archlinux-pacman/" "Language-Team: Galician (http://app.transifex.com/toofishes/archlinux-pacman/"
"language/gl/)\n" "language/gl/)\n"
"Language: gl\n" "Language: gl\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
@ -34,7 +34,7 @@ msgstr "%s-%s está actualizado -- omitindo\n"
#: lib/libalpm/add.c:94 #: lib/libalpm/add.c:94
#, c-format #, c-format
msgid "%s-%s is up to date -- reinstalling\n" msgid "%s-%s is up to date -- reinstalling\n"
msgstr "%s-%s está actualizado --re-instalando\n" msgstr "%s-%s está actualizado -- re-instalando\n"
#: lib/libalpm/add.c:99 #: lib/libalpm/add.c:99
#, c-format #, c-format
@ -46,17 +46,17 @@ msgstr "desactualizando a versión do paquete %s (%s => %s)\n"
msgid "cannot allocate disk archive object" msgid "cannot allocate disk archive object"
msgstr "memoria insuficiente para o obxecto de arquivo de disco" msgstr "memoria insuficiente para o obxecto de arquivo de disco"
#: lib/libalpm/add.c:143 lib/libalpm/util.c:384 #: lib/libalpm/add.c:143 lib/libalpm/util.c:408
#, c-format #, c-format
msgid "warning given when extracting %s (%s)\n" msgid "warning given when extracting %s (%s)\n"
msgstr "alerta producida mentres se extraía %s (%s)\n" msgstr "alerta producida mentres se extraía %s (%s)\n"
#: lib/libalpm/add.c:146 lib/libalpm/util.c:387 #: lib/libalpm/add.c:146 lib/libalpm/util.c:411
#, c-format #, c-format
msgid "could not extract %s (%s)\n" msgid "could not extract %s (%s)\n"
msgstr "Non foi posíbel extraer «%s» (%s).\n" msgstr "Non foi posíbel extraer «%s» (%s).\n"
#: lib/libalpm/add.c:159 lib/libalpm/dload.c:709 lib/libalpm/remove.c:534 #: lib/libalpm/add.c:159 lib/libalpm/dload.c:707 lib/libalpm/remove.c:550
#, c-format #, c-format
msgid "could not rename %s to %s (%s)\n" msgid "could not rename %s to %s (%s)\n"
msgstr "Non foi posíbel cambiar o nome de «%s» a «%s» (%s).\n" msgstr "Non foi posíbel cambiar o nome de «%s» a «%s» (%s).\n"
@ -102,18 +102,18 @@ msgstr ""
msgid "unable to extract %s.pacnew: path too long" msgid "unable to extract %s.pacnew: path too long"
msgstr "non se pode extraer %s.pacnew: ruta demasiado longa" msgstr "non se pode extraer %s.pacnew: ruta demasiado longa"
#: lib/libalpm/add.c:510 lib/libalpm/util.c:335 lib/libalpm/util.c:600 #: lib/libalpm/add.c:510 lib/libalpm/util.c:354 lib/libalpm/util.c:624
#, c-format #, c-format
msgid "could not get current working directory\n" msgid "could not get current working directory\n"
msgstr "non se puido obter o directorio de traballo actual\n" msgstr "non se puido obter o directorio de traballo actual\n"
#: lib/libalpm/add.c:515 lib/libalpm/util.c:340 lib/libalpm/util.c:605 #: lib/libalpm/add.c:515 lib/libalpm/util.c:359 lib/libalpm/util.c:629
#: lib/libalpm/util.c:658 #: lib/libalpm/util.c:684
#, c-format #, c-format
msgid "could not change directory to %s (%s)\n" msgid "could not change directory to %s (%s)\n"
msgstr "non se puido cambiar o directorio a %s (%s)\n" msgstr "non se puido cambiar o directorio a %s (%s)\n"
#: lib/libalpm/add.c:571 lib/libalpm/util.c:405 lib/libalpm/util.c:774 #: lib/libalpm/add.c:571 lib/libalpm/util.c:429 lib/libalpm/util.c:808
#, c-format #, c-format
msgid "could not restore working directory (%s)\n" msgid "could not restore working directory (%s)\n"
msgstr "non se puido restaurar o directorio de traballo (%s)\n" msgstr "non se puido restaurar o directorio de traballo (%s)\n"
@ -138,145 +138,166 @@ msgstr "non se puido actualizar a entrada %s-%s na base de datos\n"
msgid "could not add entry '%s' in cache\n" msgid "could not add entry '%s' in cache\n"
msgstr "non se puido agregar a entrada '%s' á caché\n" msgstr "non se puido agregar a entrada '%s' á caché\n"
#: lib/libalpm/be_local.c:266 #: lib/libalpm/be_local.c:271
#, c-format #, c-format
msgid "error while reading file %s: %s\n" msgid "error while reading file %s: %s\n"
msgstr "erro ao ler o ficheiro «%s»: %s\n" msgstr "erro ao ler o ficheiro «%s»: %s\n"
#: lib/libalpm/be_local.c:376 #: lib/libalpm/be_local.c:382
#, c-format #, c-format
msgid "removing invalid database: %s\n" msgid "removing invalid database: %s\n"
msgstr "quitando a base de datos non válida: %s\n" msgstr "quitando a base de datos non válida: %s\n"
#: lib/libalpm/be_local.c:427 lib/libalpm/be_local.c:909 #: lib/libalpm/be_local.c:433 lib/libalpm/be_local.c:947
#, c-format #, c-format
msgid "could not create directory %s: %s\n" msgid "could not create directory %s: %s\n"
msgstr "non se puido crear o directorio %s: %s\n" msgstr "non se puido crear o directorio %s: %s\n"
#: lib/libalpm/be_local.c:602 lib/libalpm/be_sync.c:322 #: lib/libalpm/be_local.c:608 lib/libalpm/be_sync.c:339
#, c-format #, c-format
msgid "invalid name for database entry '%s'\n" msgid "invalid name for database entry '%s'\n"
msgstr "nome non válido para a entrada '%s' da base de datos\n" msgstr "nome non válido para a entrada '%s' da base de datos\n"
#: lib/libalpm/be_local.c:610 #: lib/libalpm/be_local.c:616
#, c-format #, c-format
msgid "duplicated database entry '%s'\n" msgid "duplicated database entry '%s'\n"
msgstr "entrada '%s' duplicada na base de datos\n" msgstr "entrada '%s' duplicada na base de datos\n"
#: lib/libalpm/be_local.c:622 #: lib/libalpm/be_local.c:628
#, c-format #, c-format
msgid "corrupted database entry '%s'\n" msgid "corrupted database entry '%s'\n"
msgstr "entrada dañada na base de datos '%s'\n" msgstr "entrada danada na base de datos '%s'\n"
#: lib/libalpm/be_local.c:722 lib/libalpm/be_local.c:818 #: lib/libalpm/be_local.c:663
#: lib/libalpm/be_local.c:958 lib/libalpm/be_local.c:1055 #, c-format
#: lib/libalpm/diskspace.c:131 lib/libalpm/dload.c:823 lib/libalpm/util.c:254 msgid "unknown install reason for package %s: %s\n"
#: lib/libalpm/util.c:270 msgstr ""
#: lib/libalpm/be_local.c:743 lib/libalpm/be_local.c:856
#: lib/libalpm/be_local.c:996 lib/libalpm/be_local.c:1102
#: lib/libalpm/diskspace.c:135 lib/libalpm/dload.c:792 lib/libalpm/util.c:273
#: lib/libalpm/util.c:289
#, c-format #, c-format
msgid "could not open file %s: %s\n" msgid "could not open file %s: %s\n"
msgstr "" msgstr ""
"non se puido abrir o arquivo %s: %s\n" "non se puido abrir o arquivo %s: %s\n"
"\n" "\n"
#: lib/libalpm/be_local.c:738 lib/libalpm/be_sync.c:582 #: lib/libalpm/be_local.c:759 lib/libalpm/be_sync.c:612
#, c-format #, c-format
msgid "%s database is inconsistent: name mismatch on package %s\n" msgid "%s database is inconsistent: name mismatch on package %s\n"
msgstr "" msgstr ""
"a base de datos %s é inconsistente: nome mal emparexado no paquete %s\n" "a base de datos %s é inconsistente: o nome no paquete %s non concorda\n"
#: lib/libalpm/be_local.c:744 lib/libalpm/be_sync.c:588 #: lib/libalpm/be_local.c:765 lib/libalpm/be_sync.c:618
#, c-format #, c-format
msgid "%s database is inconsistent: version mismatch on package %s\n" msgid "%s database is inconsistent: version mismatch on package %s\n"
msgstr "" msgstr ""
"a base de datos %s é inconsistente: versión mal emparexada no paquete %s\n" "a base de datos %s é inconsistente: a versión no paquete %s non concorda\n"
#: lib/libalpm/be_local.c:785 #: lib/libalpm/be_local.c:806
#, c-format #, c-format
msgid "unknown validation type for package %s: %s\n" msgid "unknown validation type for package %s: %s\n"
msgstr "o paquete «%s» ten un tipo de validación incorrecto: %s\n" msgstr "tipo de validación descoñecida para o paquete %s: %s\n"
#: lib/libalpm/be_package.c:478 lib/libalpm/be_package.c:631 #: lib/libalpm/be_local.c:841
#: lib/libalpm/be_package.c:643 #, c-format
msgid "%s: unknown key '%s' in local database\n"
msgstr ""
#: lib/libalpm/be_package.c:255
#, c-format
msgid "%s: unknown key '%s' in package description\n"
msgstr ""
#: lib/libalpm/be_package.c:482 lib/libalpm/be_package.c:635
#: lib/libalpm/be_package.c:647
#, c-format #, c-format
msgid "error while reading package %s: %s\n" msgid "error while reading package %s: %s\n"
msgstr "error ao ler o paquete %s: %s\n" msgstr "error ao ler o paquete %s: %s\n"
#: lib/libalpm/be_package.c:491 lib/libalpm/be_package.c:514 #: lib/libalpm/be_package.c:495 lib/libalpm/be_package.c:518
#, c-format #, c-format
msgid "error while reading mtree of package %s: %s\n" msgid "error while reading mtree of package %s: %s\n"
msgstr "Produciuse un erro ao ler os datos dos ficheiros do paquete «%s»: %s\n" msgstr "produciuse un erro lendo o «mtree» do paquete%s: %s\n"
#: lib/libalpm/be_package.c:597 #: lib/libalpm/be_package.c:601
#, c-format #, c-format
msgid "could not parse package description file in %s\n" msgid "could not parse package description file in %s\n"
msgstr "non se puido ler o arquivo de descripción en %s\n" msgstr "non se puido analizar o arquivo de descripción en %s\n"
#: lib/libalpm/be_package.c:602 #: lib/libalpm/be_package.c:606
#, c-format #, c-format
msgid "missing package name in %s\n" msgid "missing package name in %s\n"
msgstr "falta o nome do paquete en %s\n" msgstr "falta o nome do paquete en %s\n"
#: lib/libalpm/be_package.c:606 #: lib/libalpm/be_package.c:610
#, c-format #, c-format
msgid "missing package version in %s\n" msgid "missing package version in %s\n"
msgstr "falta a versión do paquete en %s\n" msgstr "falta a versión do paquete en %s\n"
#: lib/libalpm/be_package.c:610 #: lib/libalpm/be_package.c:614
#, c-format #, c-format
msgid "invalid package version in %s\n" msgid "invalid package version in %s\n"
msgstr "A versión do paquete %s non é correcta.\n" msgstr "a versión do paquete %s non é válida\n"
#: lib/libalpm/be_package.c:649 #: lib/libalpm/be_package.c:653
#, c-format #, c-format
msgid "missing package metadata in %s\n" msgid "missing package metadata in %s\n"
msgstr "faltan os metadatos do paquete en %s\n" msgstr "faltan os metadatos do paquete en %s\n"
#: lib/libalpm/be_package.c:741 #: lib/libalpm/be_package.c:745
#, c-format #, c-format
msgid "failed to read signature file: %s\n" msgid "failed to read signature file: %s\n"
msgstr "non foi posíbel ler o ficheiro da sinatura: %s\n" msgstr "non foi posíbel ler o ficheiro da sinatura: %s\n"
#: lib/libalpm/be_package.c:770 lib/libalpm/sync.c:953 #: lib/libalpm/be_package.c:768 lib/libalpm/sync.c:976
#, c-format #, c-format
msgid "required key missing from keyring\n" msgid "required key missing from keyring\n"
msgstr "a chave solicitada non está no anel\n" msgstr "a clave requirida falta no depósito de claves\n"
#: lib/libalpm/be_sync.c:61 #: lib/libalpm/be_sync.c:61
#, c-format #, c-format
msgid "removing invalid file: %s\n" msgid "removing invalid file: %s\n"
msgstr "eliminando arquivo inválido: %s\n" msgstr "eliminando arquivo inválido: %s\n"
#: lib/libalpm/be_sync.c:449 #: lib/libalpm/be_sync.c:471
#, c-format #, c-format
msgid "could not parse package description file '%s' from db '%s'\n" msgid "could not parse package description file '%s' from db '%s'\n"
msgstr "" msgstr ""
"error ao ler o arquivo de descripción '%s' do paquete da base de datos '%s'\n" "non se puido analizar o arquivo de descrición do paquete '%s' da base de "
"datos '%s'\n"
#: lib/libalpm/be_sync.c:456 #: lib/libalpm/be_sync.c:486
#, c-format #, c-format
msgid "could not read db '%s' (%s)\n" msgid "could not read db '%s' (%s)\n"
msgstr "non se puido ler a base de datos '%s' (%s)\n" msgstr "non se puido ler a base de datos '%s' (%s)\n"
#: lib/libalpm/be_sync.c:489 lib/libalpm/be_sync.c:494 #: lib/libalpm/be_sync.c:519 lib/libalpm/be_sync.c:524
#, c-format #, c-format
msgid "%s database is inconsistent: filename of package %s is illegal\n" msgid "%s database is inconsistent: filename of package %s is illegal\n"
msgstr "" msgstr ""
"A base de datos «%s» é inconsistente: a ruta do arquivo do paquete %s contén " "a base de datos %s é inconsistente: o nome do ficheiro do paquete %s non "
"caracteres non permitidos.\n" "está permitido\n"
#: lib/libalpm/be_sync.c:499 #: lib/libalpm/be_sync.c:529
#, c-format #, c-format
msgid "%s database is inconsistent: filename of package %s is too long\n" msgid "%s database is inconsistent: filename of package %s is too long\n"
msgstr "" msgstr ""
"A base de datos «%s» é inconsistente: a ruta do arquivo do paquete %s é " "a base de datos %s é inconsistente: o nome do ficheiro do paquete %s é "
"demasiado longa.\n" "demasiado longo\n"
#: lib/libalpm/be_sync.c:564 #: lib/libalpm/be_sync.c:594
#, c-format #, c-format
msgid "unknown database file: %s\n" msgid "unknown database file: %s\n"
msgstr "Ficheiro de base de datos descoñecido: %s\n" msgstr "ficheiro de base de datos descoñecido: %s\n"
#: lib/libalpm/db.c:344 #: lib/libalpm/be_sync.c:712
#, c-format
msgid "%s: unknown key '%s' in sync database\n"
msgstr ""
#: lib/libalpm/db.c:413
#, c-format #, c-format
msgid "database path is undefined\n" msgid "database path is undefined\n"
msgstr "a ruta da base de datos non está definida\n" msgstr "a ruta da base de datos non está definida\n"
@ -284,7 +305,7 @@ msgstr "a ruta da base de datos non está definida\n"
#: lib/libalpm/deps.c:184 #: lib/libalpm/deps.c:184
#, c-format #, c-format
msgid "dependency cycle detected:\n" msgid "dependency cycle detected:\n"
msgstr "bucle de dependencias detectado:\n" msgstr "ciclo de dependencias detectado:\n"
#: lib/libalpm/deps.c:187 #: lib/libalpm/deps.c:187
#, c-format #, c-format
@ -304,7 +325,7 @@ msgstr "ignorando o paquete %s-%s\n"
#: lib/libalpm/deps.c:842 #: lib/libalpm/deps.c:842
#, c-format #, c-format
msgid "cannot resolve \"%s\", a dependency of \"%s\"\n" msgid "cannot resolve \"%s\", a dependency of \"%s\"\n"
msgstr "non se puido resolver \"%s\", unha dependencia de \"%s\"\n" msgstr "non se pode resolver «%s», unha dependencia de «%s»\n"
#: lib/libalpm/diskspace.c:78 #: lib/libalpm/diskspace.c:78
#, c-format #, c-format
@ -316,111 +337,126 @@ msgstr "non se puido obter información do sistema de ficheiros para %s: %s\n"
msgid "could not open file: %s: %s\n" msgid "could not open file: %s: %s\n"
msgstr "non foi posíbel abrir o ficheiro «%s»: %s\n" msgstr "non foi posíbel abrir o ficheiro «%s»: %s\n"
#: lib/libalpm/diskspace.c:146 lib/libalpm/diskspace.c:159 #: lib/libalpm/diskspace.c:154 lib/libalpm/diskspace.c:167
#, c-format #, c-format
msgid "could not get filesystem information\n" msgid "could not get filesystem information\n"
msgstr "non se puido obter información do sistema de ficheiros\n" msgstr "non se puido obter información do sistema de ficheiros\n"
#: lib/libalpm/diskspace.c:242 #: lib/libalpm/diskspace.c:254
#, c-format #, c-format
msgid "could not get file information for %s\n" msgid "could not get file information for %s\n"
msgstr "non se puido obter información de ficheiro para %s\n" msgstr "non se puido obter información de ficheiro para %s\n"
#: lib/libalpm/diskspace.c:256 lib/libalpm/diskspace.c:315 #: lib/libalpm/diskspace.c:268 lib/libalpm/diskspace.c:327
#, c-format #, c-format
msgid "could not determine mount point for file %s\n" msgid "could not determine mount point for file %s\n"
msgstr "non se puido determinar o punto de montaxe para o arquivo %s\n" msgstr "non se puido determinar o punto de montaxe para o arquivo %s\n"
#: lib/libalpm/diskspace.c:354 #: lib/libalpm/diskspace.c:366
#, c-format #, c-format
msgid "Partition %s too full: %jd blocks needed, %ju blocks free\n" msgid "Partition %s too full: %jd blocks needed, %ju blocks free\n"
msgstr "" msgstr ""
"A partición %s está moi chea: necesítanse %jd bloques, quedan %ju bloques " "A partición %s está moi chea: necesítanse %jd bloques, quedan %ju bloques "
"libres\n" "libres\n"
#: lib/libalpm/diskspace.c:379 lib/libalpm/diskspace.c:433 #: lib/libalpm/diskspace.c:391 lib/libalpm/diskspace.c:445
#, c-format #, c-format
msgid "could not determine filesystem mount points\n" msgid "could not determine filesystem mount points\n"
msgstr "non se puido determinar o punto de montaxe do sistema de ficheiros\n" msgstr "non se puido determinar o punto de montaxe do sistema de ficheiros\n"
#: lib/libalpm/diskspace.c:385 #: lib/libalpm/diskspace.c:397
#, c-format #, c-format
msgid "could not determine cachedir mount point %s\n" msgid "could not determine cachedir mount point %s\n"
msgstr "" msgstr ""
"non foi posíbel determinar o punto de montaxe do directorio de caché «%s»\n" "non foi posíbel determinar o punto de montaxe do directorio de caché «%s»\n"
#: lib/libalpm/diskspace.c:438 #: lib/libalpm/diskspace.c:450
#, c-format #, c-format
msgid "could not determine root mount point %s\n" msgid "could not determine root mount point %s\n"
msgstr "non se puido determinar o punto de montaxe da raiz %s\n" msgstr "non se puido determinar o punto de montaxe da raiz %s\n"
#: lib/libalpm/diskspace.c:486 #: lib/libalpm/diskspace.c:498
#, c-format #, c-format
msgid "Partition %s is mounted read only\n" msgid "Partition %s is mounted read only\n"
msgstr "A partición %s está montada como só lectura\n" msgstr "A partición %s está montada como só lectura\n"
#: lib/libalpm/dload.c:116 #: lib/libalpm/dload.c:107
#, c-format
msgid ""
"too many errors from %s, skipping for the remainder of this transaction\n"
msgstr ""
#: lib/libalpm/dload.c:220
#, c-format
msgid "disk"
msgstr "disco"
#: lib/libalpm/dload.c:392
#, c-format #, c-format
msgid "failed to create temporary file for download\n" msgid "failed to create temporary file for download\n"
msgstr "error ao crear un arquivo temporal para a descarga\n" msgstr "error ao crear un arquivo temporal para a descarga\n"
#: lib/libalpm/dload.c:509 lib/libalpm/dload.c:547 lib/libalpm/dload.c:561 #: lib/libalpm/dload.c:198
#, c-format
msgid ""
"too many errors from %s, skipping for the remainder of this transaction\n"
msgstr "demasiados erros de %s, omitindo o que queda desta transacción\n"
#: lib/libalpm/dload.c:215
#, c-format
msgid "fatal error from %s, skipping for the remainder of this transaction\n"
msgstr "erro fatal de %s, omitindo o que queda desta transacción\n"
#: lib/libalpm/dload.c:310
#, c-format
msgid "disk"
msgstr "disco"
#: lib/libalpm/dload.c:532 lib/libalpm/dload.c:570 lib/libalpm/dload.c:583
#, c-format #, c-format
msgid "failed retrieving file '%s' from %s : %s\n" msgid "failed retrieving file '%s' from %s : %s\n"
msgstr "error ao obter o arquivo '%s' dende %s: %s\n" msgstr "error ao obter o arquivo '%s' dende %s: %s\n"
#: lib/libalpm/dload.c:539 #: lib/libalpm/dload.c:562
#, c-format #, c-format
msgid "failed retrieving file '%s' from %s : expected download size exceeded\n" msgid "failed retrieving file '%s' from %s : expected download size exceeded\n"
msgstr "" msgstr ""
"Non foi posíbel obter o ficheiro «%s» de «%s»: superouse o tamaño de " "Non foi posíbel obter o ficheiro «%s» de «%s»: superouse o tamaño de "
"descarga esperado.\n" "descarga esperado.\n"
#: lib/libalpm/dload.c:687 #: lib/libalpm/dload.c:685
#, c-format #, c-format
msgid "%s appears to be truncated: %jd/%jd bytes\n" msgid "%s appears to be truncated: %jd/%jd bytes\n"
msgstr "%s parece estar truncado: %jd/%jd bytes\n" msgstr "%s parece estar truncado: %jd/%jd bytes\n"
#: lib/libalpm/dload.c:787 #: lib/libalpm/dload.c:776
#, c-format #, c-format
msgid "url '%s' is invalid\n" msgid "url '%s' is invalid\n"
msgstr "a dirección %s non é válida\n" msgstr "a dirección '%s' non é válida\n"
#: lib/libalpm/dload.c:893 #: lib/libalpm/dload.c:864
#, c-format #, c-format
msgid "failed to setup a download payload for %s\n" msgid "failed to setup a download payload for %s\n"
msgstr "" msgstr "fallou a preparación da descarga para %s\n"
#: lib/libalpm/dload.c:905 #: lib/libalpm/dload.c:876
#, c-format #, c-format
msgid "curl returned error %d from transfer\n" msgid "curl returned error %d from transfer\n"
msgstr "" msgstr "«curl» devolveu un erro %dda transferencia\n"
#: lib/libalpm/dload.c:929 #: lib/libalpm/dload.c:900
#, c-format #, c-format
msgid "curl transfer error: %d\n" msgid "curl transfer error: %d\n"
msgstr "erro de tranferencia de «curl»: %d\n"
#: lib/libalpm/dload.c:963
#, c-format
msgid "could not chdir to download directory %s\n"
msgstr "non se puido cambiar o directorio de descargas %s\n"
#: lib/libalpm/dload.c:968
#, c-format
msgid "switching to sandbox user '%s' failed!\n"
msgstr "" msgstr ""
#: lib/libalpm/dload.c:1055 lib/libalpm/sync.c:840 #: lib/libalpm/dload.c:1361 lib/libalpm/sync.c:861
#, c-format #, c-format
msgid "failed to retrieve some files\n" msgid "failed to retrieve some files\n"
msgstr "non foi posíbel descargar algúns dos ficheiros\n" msgstr "non foi posíbel descargar algúns dos ficheiros\n"
#: lib/libalpm/dload.c:1078 #: lib/libalpm/dload.c:1384
#, c-format #, c-format
msgid "download completed successfully but no file in the cache\n" msgid "download completed successfully but no file in the cache\n"
msgstr "" msgstr "a descarga compleouse correctamente pero non hai ficheiro na caché\n"
#: lib/libalpm/error.c:40 #: lib/libalpm/error.c:40
#, c-format #, c-format
@ -550,7 +586,7 @@ msgstr "obxetivo duplicado"
#: lib/libalpm/error.c:94 #: lib/libalpm/error.c:94
#, c-format #, c-format
msgid "duplicate filename" msgid "duplicate filename"
msgstr "" msgstr "nome de ficheiro duplicado"
#: lib/libalpm/error.c:98 #: lib/libalpm/error.c:98
#, c-format #, c-format
@ -686,19 +722,19 @@ msgstr "error invocando o descargador externo"
#: lib/libalpm/error.c:159 #: lib/libalpm/error.c:159
#, c-format #, c-format
msgid "compiled without signature support" msgid "compiled without signature support"
msgstr "" msgstr "compilado sen soporte de sinatura"
#: lib/libalpm/error.c:162 #: lib/libalpm/error.c:162
#, c-format #, c-format
msgid "unexpected error" msgid "unexpected error"
msgstr "error inesperado" msgstr "error inesperado"
#: lib/libalpm/handle.c:142 #: lib/libalpm/handle.c:165
#, c-format #, c-format
msgid "lock file missing %s\n" msgid "lock file missing %s\n"
msgstr "Falta «%s» ao ficheiro de bloqueo.\n" msgstr "Falta «%s» ao ficheiro de bloqueo.\n"
#: lib/libalpm/handle.c:148 #: lib/libalpm/handle.c:171
#, c-format #, c-format
msgid "could not remove lock file %s\n" msgid "could not remove lock file %s\n"
msgstr "Non foi posíbel eliminar o ficheiro de bloqueo «%s».\n" msgstr "Non foi posíbel eliminar o ficheiro de bloqueo «%s».\n"
@ -706,69 +742,69 @@ msgstr "Non foi posíbel eliminar o ficheiro de bloqueo «%s».\n"
#: lib/libalpm/hook.c:95 #: lib/libalpm/hook.c:95
#, c-format #, c-format
msgid "Missing trigger targets in hook: %s\n" msgid "Missing trigger targets in hook: %s\n"
msgstr "" msgstr "Faltan os obxectivos do disparador no «hook»: %s\n"
#: lib/libalpm/hook.c:101 #: lib/libalpm/hook.c:101
#, c-format #, c-format
msgid "Missing trigger type in hook: %s\n" msgid "Missing trigger type in hook: %s\n"
msgstr "" msgstr "Falta o tipo do disparador no «hook»: %s\n"
#: lib/libalpm/hook.c:107 #: lib/libalpm/hook.c:107
#, c-format #, c-format
msgid "Missing trigger operation in hook: %s\n" msgid "Missing trigger operation in hook: %s\n"
msgstr "" msgstr "Falta a operación do disparador no «hook»: %s\n"
#: lib/libalpm/hook.c:134 #: lib/libalpm/hook.c:134
#, c-format #, c-format
msgid "Missing Exec option in hook: %s\n" msgid "Missing Exec option in hook: %s\n"
msgstr "" msgstr "Falta a opción «Exec» no «hook»: %s\n"
#: lib/libalpm/hook.c:140 #: lib/libalpm/hook.c:140
#, c-format #, c-format
msgid "Missing When option in hook: %s\n" msgid "Missing When option in hook: %s\n"
msgstr "" msgstr "Falta a opción «When» no «hook»: %s\n"
#: lib/libalpm/hook.c:143 #: lib/libalpm/hook.c:143
#, c-format #, c-format
msgid "AbortOnFail set for PostTransaction hook: %s\n" msgid "AbortOnFail set for PostTransaction hook: %s\n"
msgstr "" msgstr "«AbortOnFail» posto para o «hook» «PostTransaction»: %s\n"
#: lib/libalpm/hook.c:160 #: lib/libalpm/hook.c:160
#, c-format #, c-format
msgid "error while reading hook %s: %s\n" msgid "error while reading hook %s: %s\n"
msgstr "" msgstr "erro durante a lectura do «hook» %s: %s\n"
#: lib/libalpm/hook.c:162 lib/libalpm/hook.c:206 lib/libalpm/hook.c:248 #: lib/libalpm/hook.c:162 lib/libalpm/hook.c:206 lib/libalpm/hook.c:248
#, c-format #, c-format
msgid "hook %s line %d: invalid option %s\n" msgid "hook %s line %d: invalid option %s\n"
msgstr "" msgstr "«hook» %s liña %d: opción inválida %s\n"
#: lib/libalpm/hook.c:172 #: lib/libalpm/hook.c:172
#, c-format #, c-format
msgid "hook %s line %d: invalid section %s\n" msgid "hook %s line %d: invalid section %s\n"
msgstr "" msgstr "«hook» %s liña %d: sección inválida %s\n"
#: lib/libalpm/hook.c:184 lib/libalpm/hook.c:199 lib/libalpm/hook.c:218 #: lib/libalpm/hook.c:184 lib/libalpm/hook.c:199 lib/libalpm/hook.c:218
#: lib/libalpm/hook.c:241 #: lib/libalpm/hook.c:241
#, c-format #, c-format
msgid "hook %s line %d: invalid value %s\n" msgid "hook %s line %d: invalid value %s\n"
msgstr "" msgstr "«hook» %s liña %d: valor inválido %s\n"
#: lib/libalpm/hook.c:188 lib/libalpm/hook.c:211 lib/libalpm/hook.c:222 #: lib/libalpm/hook.c:188 lib/libalpm/hook.c:211 lib/libalpm/hook.c:222
#: lib/libalpm/hook.c:236 #: lib/libalpm/hook.c:236
#, c-format #, c-format
msgid "hook %s line %d: overwriting previous definition of %s\n" msgid "hook %s line %d: overwriting previous definition of %s\n"
msgstr "" msgstr "«hook» %s liña %d: sobrescribindo a definición previa de %s\n"
#: lib/libalpm/hook.c:243 #: lib/libalpm/hook.c:243
#, c-format #, c-format
msgid "hook %s line %d: unable to set option (%s)\n" msgid "hook %s line %d: unable to set option (%s)\n"
msgstr "" msgstr "«hook» %s liña %d: non se pode establecer a opción (%s)\n"
#: lib/libalpm/hook.c:513 #: lib/libalpm/hook.c:513
#, c-format #, c-format
msgid "unable to run hook %s: %s\n" msgid "unable to run hook %s: %s\n"
msgstr "" msgstr "non se pode executar o «hook» %s: %s\n"
#: lib/libalpm/hook.c:547 lib/libalpm/hook.c:559 lib/libalpm/remove.c:378 #: lib/libalpm/hook.c:547 lib/libalpm/hook.c:559 lib/libalpm/remove.c:378
#, c-format #, c-format
@ -780,7 +816,7 @@ msgstr "non foi posíbel abrir o cartafol «%s»: %s\n"
msgid "could not open file: %s%s: %s\n" msgid "could not open file: %s%s: %s\n"
msgstr "non foi posíbel abrir o ficheiro:%s%s: %s\n" msgstr "non foi posíbel abrir o ficheiro:%s%s: %s\n"
#: lib/libalpm/hook.c:595 lib/libalpm/util.c:260 #: lib/libalpm/hook.c:595 lib/libalpm/util.c:279
#, c-format #, c-format
msgid "could not stat file %s: %s\n" msgid "could not stat file %s: %s\n"
msgstr "non foi posíbel executar a orde «stat» co ficheiro «%s»: %s\n" msgstr "non foi posíbel executar a orde «stat» co ficheiro «%s»: %s\n"
@ -790,15 +826,47 @@ msgstr "non foi posíbel executar a orde «stat» co ficheiro «%s»: %s\n"
msgid "could not read directory: %s: %s\n" msgid "could not read directory: %s: %s\n"
msgstr "non se puido ler o cartafol: %s: %s\n" msgstr "non se puido ler o cartafol: %s: %s\n"
#: lib/libalpm/package.c:598 #: lib/libalpm/package.c:614
#, c-format #, c-format
msgid "could not fully load metadata for package %s-%s\n" msgid "could not fully load metadata for package %s-%s\n"
msgstr "non se puido cargar completamente os metadatos para o paquete %s-%s\n" msgstr "non se puido cargar completamente os metadatos para o paquete %s-%s\n"
#: lib/libalpm/package.c:869
#, c-format
msgid "invalid package metadata (name or version missing)"
msgstr ""
#: lib/libalpm/package.c:874
#, c-format
msgid ""
"invalid metadata for package %s-%s (package name cannot start with '.' or "
"'-')\n"
msgstr ""
#: lib/libalpm/package.c:878
#, c-format
msgid ""
"invalid metadata for package %s-%s (package name contains invalid "
"characters)\n"
msgstr ""
#: lib/libalpm/package.c:885 lib/libalpm/package.c:889
#, c-format
msgid ""
"invalid metadata for package %s-%s (package version contains invalid "
"characters)\n"
msgstr ""
#: lib/libalpm/package.c:895
#, c-format
msgid ""
"invalid metadata for package %s-%s (package name and version too long)\n"
msgstr ""
#: lib/libalpm/remove.c:111 #: lib/libalpm/remove.c:111
#, c-format #, c-format
msgid "could not find %s in database -- skipping\n" msgid "could not find %s in database -- skipping\n"
msgstr "non se puido atopar %s na base de datos --saltando\n" msgstr "non se puido atopar %s na base de datos -- saltando\n"
#: lib/libalpm/remove.c:146 #: lib/libalpm/remove.c:146
#, c-format #, c-format
@ -808,24 +876,26 @@ msgstr "quitando %s da lista de obxetivos\n"
#: lib/libalpm/remove.c:338 #: lib/libalpm/remove.c:338
#, c-format #, c-format
msgid "cannot remove file '%s': %s\n" msgid "cannot remove file '%s': %s\n"
msgstr "non se puido quitar o arquivo '%s': %s\n" msgstr "non se puido quitar o ficheiro '%s': %s\n"
#: lib/libalpm/remove.c:403 lib/libalpm/remove.c:412 #: lib/libalpm/remove.c:403 lib/libalpm/remove.c:412
#, c-format #, c-format
msgid "could not backup %s due to PATH_MAX overflow\n" msgid "could not backup %s due to PATH_MAX overflow\n"
msgstr "" msgstr ""
"non se puido facer unha copia de seguranza %s debido a que a ruta supera o "
"tamaño de PATH_MAX\n"
#: lib/libalpm/remove.c:554 #: lib/libalpm/remove.c:570
#, c-format #, c-format
msgid "cannot remove %s (%s)\n" msgid "cannot remove %s (%s)\n"
msgstr "error ao eliminar %s (%s)\n" msgstr "error ao eliminar %s (%s)\n"
#: lib/libalpm/remove.c:727 #: lib/libalpm/remove.c:743
#, c-format #, c-format
msgid "could not remove database entry %s-%s\n" msgid "could not remove database entry %s-%s\n"
msgstr "non se puido quitar a entrada %s-%s da base de datos\n" msgstr "non se puido quitar a entrada %s-%s da base de datos\n"
#: lib/libalpm/remove.c:732 #: lib/libalpm/remove.c:748
#, c-format #, c-format
msgid "could not remove entry '%s' from cache\n" msgid "could not remove entry '%s' from cache\n"
msgstr "non se puido quitar a entrada '%s' do caché\n" msgstr "non se puido quitar a entrada '%s' do caché\n"
@ -834,90 +904,91 @@ msgstr "non se puido quitar a entrada '%s' do caché\n"
#, c-format #, c-format
msgid "Public keyring not found; have you run '%s'?\n" msgid "Public keyring not found; have you run '%s'?\n"
msgstr "" msgstr ""
"Non se atopou o depósito de claves público; probaches a executar '%s'?\n"
#: lib/libalpm/signing.c:199 lib/libalpm/signing.c:767 #: lib/libalpm/signing.c:199 lib/libalpm/signing.c:773
#, c-format #, c-format
msgid "GPGME error: %s\n" msgid "GPGME error: %s\n"
msgstr "" msgstr "erro de GPGME: %s\n"
#: lib/libalpm/signing.c:274 #: lib/libalpm/signing.c:275
#, c-format #, c-format
msgid "looking up key %s using WKD\n" msgid "looking up key %s using WKD\n"
msgstr "" msgstr "buscando a clave %s usando WKD\n"
#: lib/libalpm/signing.c:283 #: lib/libalpm/signing.c:289
#, c-format #, c-format
msgid "gpg error: %s\n" msgid "gpg error: %s\n"
msgstr "" msgstr "erro de gpg: %s\n"
#: lib/libalpm/signing.c:430 lib/libalpm/signing.c:503 #: lib/libalpm/signing.c:440 lib/libalpm/signing.c:513
#, c-format #, c-format
msgid "keyring is not writable\n" msgid "keyring is not writable\n"
msgstr "" msgstr "non se pode escribir no depósito de claves\n"
#: lib/libalpm/signing.c:531 #: lib/libalpm/signing.c:537
#, c-format #, c-format
msgid "key \"%s\" on keyserver\n" msgid "key \"%s\" on keyserver\n"
msgstr "" msgstr "clave \"%s\" no servidor de claves\n"
#: lib/libalpm/signing.c:536 #: lib/libalpm/signing.c:542
#, c-format #, c-format
msgid "key \"%s\" could not be imported\n" msgid "key \"%s\" could not be imported\n"
msgstr "a clave \"%s\" non se puido importar\n" msgstr "a clave \"%s\" non se puido importar\n"
#: lib/libalpm/signing.c:540 #: lib/libalpm/signing.c:546
#, c-format #, c-format
msgid "key \"%s\" could not be looked up remotely\n" msgid "key \"%s\" could not be looked up remotely\n"
msgstr "" msgstr "a clave \"%s\" non se puido buscar de forma remota\n"
#: lib/libalpm/signing.c:926 lib/libalpm/sync.c:1022 #: lib/libalpm/signing.c:932 lib/libalpm/sync.c:1052
#, c-format #, c-format
msgid "%s: missing required signature\n" msgid "%s: missing required signature\n"
msgstr "%s: fáltalle a sinatura obrigatoria.\n" msgstr "%s: fáltalle a sinatura obrigatoria.\n"
#: lib/libalpm/signing.c:941 #: lib/libalpm/signing.c:947
#, c-format #, c-format
msgid "%s: signature from \"%s\" is marginal trust\n" msgid "%s: signature from \"%s\" is marginal trust\n"
msgstr "" msgstr "%s: a sinatura de \"%s\" é de confianza mínima\n"
#: lib/libalpm/signing.c:949 #: lib/libalpm/signing.c:955
#, c-format #, c-format
msgid "%s: signature from \"%s\" is unknown trust\n" msgid "%s: signature from \"%s\" is unknown trust\n"
msgstr "" msgstr "%s: a sinatura de \"%s\" é de unha confianza descoñecida\n"
#: lib/libalpm/signing.c:956 #: lib/libalpm/signing.c:962
#, c-format #, c-format
msgid "%s: signature from \"%s\" should never be trusted\n" msgid "%s: signature from \"%s\" should never be trusted\n"
msgstr "" msgstr "%s: a sinatura de \"%s\" nunca debería ser confiada\n"
#: lib/libalpm/signing.c:968 #: lib/libalpm/signing.c:974
#, c-format #, c-format
msgid "%s: key \"%s\" is unknown\n" msgid "%s: key \"%s\" is unknown\n"
msgstr "%s: a clave \"%s\" é descoñecida\n" msgstr "%s: a clave \"%s\" é descoñecida\n"
#: lib/libalpm/signing.c:977 #: lib/libalpm/signing.c:983
#, c-format #, c-format
msgid "%s: key \"%s\" is disabled\n" msgid "%s: key \"%s\" is disabled\n"
msgstr "" msgstr "%s: a clave \"%s\" está desactivada\n"
#: lib/libalpm/signing.c:981 #: lib/libalpm/signing.c:987
#, c-format #, c-format
msgid "%s: signature from \"%s\" is expired\n" msgid "%s: signature from \"%s\" is expired\n"
msgstr "%s: a sinatura de \"%s\" caducou\n" msgstr "%s: a sinatura de \"%s\" caducou\n"
#: lib/libalpm/signing.c:985 #: lib/libalpm/signing.c:991
#, c-format #, c-format
msgid "%s: signature from \"%s\" is invalid\n" msgid "%s: signature from \"%s\" is invalid\n"
msgstr "%s: a sinatura de \"%s\" non é válida\n" msgstr "%s: a sinatura de \"%s\" non é válida\n"
#: lib/libalpm/signing.c:1043 lib/libalpm/signing.c:1104 #: lib/libalpm/signing.c:1049 lib/libalpm/signing.c:1110
#: lib/libalpm/signing.c:1183 #: lib/libalpm/signing.c:1189
#, c-format #, c-format
msgid "%s: signature format error\n" msgid "%s: signature format error\n"
msgstr "%s: erro no formato da sinatura\n" msgstr "%s: erro no formato da sinatura\n"
#: lib/libalpm/signing.c:1136 lib/libalpm/signing.c:1169 #: lib/libalpm/signing.c:1142 lib/libalpm/signing.c:1175
#: lib/libalpm/signing.c:1177 #: lib/libalpm/signing.c:1183
#, c-format #, c-format
msgid "%s: unsupported signature format\n" msgid "%s: unsupported signature format\n"
msgstr "%s: formato da sinatura non soportado\n" msgstr "%s: formato da sinatura non soportado\n"
@ -952,118 +1023,124 @@ msgstr "ignorando o reemplazo do paquete (%s-%s => %s-%s)\n"
msgid "cannot replace %s by %s\n" msgid "cannot replace %s by %s\n"
msgstr "non se puido reemplazar o arquivo %s por %s\n" msgstr "non se puido reemplazar o arquivo %s por %s\n"
#: lib/libalpm/sync.c:476 #: lib/libalpm/sync.c:477
#, c-format #, c-format
msgid "packages %s and %s have the same filename: %s\n" msgid "packages %s and %s have the same filename: %s\n"
msgstr "" msgstr "paquetes %s e %s teñen o mesmo nome de ficheiro: %s\n"
#: lib/libalpm/sync.c:542 lib/libalpm/sync.c:612 #: lib/libalpm/sync.c:546 lib/libalpm/sync.c:618
#, c-format #, c-format
msgid "unresolvable package conflicts detected\n" msgid "unresolvable package conflicts detected\n"
msgstr "detectáronse paquetes con conflictos non resolvibles\n" msgstr "detectáronse paquetes con conflictos non resolvibles\n"
#: lib/libalpm/sync.c:562 #: lib/libalpm/sync.c:566
#, c-format #, c-format
msgid "removing '%s' from target list because it conflicts with '%s'\n" msgid "removing '%s-%s' from target list because it conflicts with '%s-%s'\n"
msgstr "" msgstr ""
"quitando '%s' da lista de obxetivos debido a que ten conflictos con '%s'\n" "quitando '%s-%s' da lista de obxectivos porque entra en conflito con '%s-"
"%s'\n"
#: lib/libalpm/sync.c:1036 #: lib/libalpm/sync.c:1020 lib/libalpm/sync.c:1187
#, c-format
msgid "%s: could not find package in cache\n"
msgstr "%s: non se puido encontrar o paquete na caché\n"
#: lib/libalpm/sync.c:1066
#, c-format #, c-format
msgid "failed to read file %s: %s\n" msgid "failed to read file %s: %s\n"
msgstr "" msgstr "errou a lectura do ficherio %s: %s\n"
#: lib/libalpm/sync.c:1223 #: lib/libalpm/sync.c:1324
#, c-format #, c-format
msgid "not enough free disk space\n" msgid "not enough free disk space\n"
msgstr "non hai espazo de almacenamento dabondo\n" msgstr "non hai espazo de almacenamento dabondo\n"
#: lib/libalpm/sync.c:1245 #: lib/libalpm/sync.c:1346
#, c-format #, c-format
msgid "could not commit removal transaction\n" msgid "could not commit removal transaction\n"
msgstr "non se puido enviar a operación de eliminación\n" msgstr "non se puido enviar a operación de eliminación\n"
#: lib/libalpm/sync.c:1253 #: lib/libalpm/sync.c:1354
#, c-format #, c-format
msgid "could not commit transaction\n" msgid "could not commit transaction\n"
msgstr "non se puido asignar a transacción\n" msgstr "non se puido asignar a transacción\n"
#: lib/libalpm/trans.c:365 #: lib/libalpm/trans.c:369
#, c-format #, c-format
msgid "could not create temp directory\n" msgid "could not create temp directory\n"
msgstr "non se pode crear o directorio temporal\n" msgstr "non se pode crear o directorio temporal\n"
#: lib/libalpm/trans.c:380 #: lib/libalpm/trans.c:384
#, c-format #, c-format
msgid "could not copy tempfile to %s (%s)\n" msgid "could not copy tempfile to %s (%s)\n"
msgstr "non se puido copiar o arquivo temporal a %s (%s)\n" msgstr "non se puido copiar o arquivo temporal a %s (%s)\n"
#: lib/libalpm/trans.c:411 #: lib/libalpm/trans.c:415
#, c-format #, c-format
msgid "could not remove %s\n" msgid "could not remove %s\n"
msgstr "non se puido eliminar %s\n" msgstr "non se puido eliminar %s\n"
#: lib/libalpm/trans.c:415 #: lib/libalpm/trans.c:419
#, c-format #, c-format
msgid "could not remove tmpdir %s\n" msgid "could not remove tmpdir %s\n"
msgstr "non se puido eliminar o directorio temporal %s\n" msgstr "non se puido eliminar o directorio temporal %s\n"
#: lib/libalpm/util.c:488 #: lib/libalpm/util.c:512
#, c-format #, c-format
msgid "unable to write to pipe (%s)\n" msgid "unable to write to pipe (%s)\n"
msgstr "non se pode escribir na tubería (%s)\n" msgstr "non se pode escribir na tubería (%s)\n"
#: lib/libalpm/util.c:547 #: lib/libalpm/util.c:571
#, c-format #, c-format
msgid "unable to read from pipe (%s)\n" msgid "unable to read from pipe (%s)\n"
msgstr "non se pode ler da tubería (%s)\n" msgstr "non se pode ler da tubería (%s)\n"
#: lib/libalpm/util.c:617 lib/libalpm/util.c:623 #: lib/libalpm/util.c:641 lib/libalpm/util.c:647
#, c-format #, c-format
msgid "could not create pipe (%s)\n" msgid "could not create pipe (%s)\n"
msgstr "non se puido crear tubería (%s)\n" msgstr "non se puido crear tubería (%s)\n"
#: lib/libalpm/util.c:631 #: lib/libalpm/util.c:655
#, c-format #, c-format
msgid "could not fork a new process (%s)\n" msgid "could not fork a new process (%s)\n"
msgstr "non se puido crear un novo proceso (%s)\n" msgstr "non se puido crear un novo proceso (%s)\n"
#: lib/libalpm/util.c:654 #: lib/libalpm/util.c:680
#, c-format #, c-format
msgid "could not change the root directory (%s)\n" msgid "could not change the root directory (%s)\n"
msgstr "non se puido cambiar o directorio raíz (%s)\n" msgstr "non se puido cambiar o directorio raíz (%s)\n"
#: lib/libalpm/util.c:666 #: lib/libalpm/util.c:700
#, c-format #, c-format
msgid "call to execv failed (%s)\n" msgid "call to execv failed (%s)\n"
msgstr "chamada a execv fallida (%s)\n" msgstr "chamada a execv fallida (%s)\n"
#: lib/libalpm/util.c:745 #: lib/libalpm/util.c:779
#, c-format #, c-format
msgid "call to waitpid failed (%s)\n" msgid "call to waitpid failed (%s)\n"
msgstr "chamada a waitpid fallida (%s)\n" msgstr "chamada a waitpid fallida (%s)\n"
#: lib/libalpm/util.c:755 #: lib/libalpm/util.c:789
#, c-format #, c-format
msgid "command failed to execute correctly\n" msgid "command failed to execute correctly\n"
msgstr "o comando fallou ao executarse\n" msgstr "o comando fallou ao executarse\n"
#: lib/libalpm/util.c:762 #: lib/libalpm/util.c:796
#, c-format #, c-format
msgid "Unknown signal" msgid "Unknown signal"
msgstr "Sinal descoñecido" msgstr "Sinal descoñecido"
#: lib/libalpm/util.c:764 #: lib/libalpm/util.c:798
#, c-format #, c-format
msgid "command terminated by signal %d: %s\n" msgid "command terminated by signal %d: %s\n"
msgstr "O sinal %d interrompeu a execución: %s\n" msgstr "O sinal %d interrompeu a execución: %s\n"
#: lib/libalpm/util.c:875 #: lib/libalpm/util.c:916
#, c-format #, c-format
msgid "no %s cache exists, creating...\n" msgid "no %s cache exists, creating...\n"
msgstr "non existe o caché %s, creando...\n" msgstr "non existe o caché %s, creando...\n"
#: lib/libalpm/util.c:906 #: lib/libalpm/util.c:947
#, c-format #, c-format
msgid "couldn't find or create package cache, using %s instead\n" msgid "couldn't find or create package cache, using %s instead\n"
msgstr "" msgstr ""

View file

@ -7,11 +7,11 @@
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Arch Linux Pacman package manager\n" "Project-Id-Version: Arch Linux Pacman package manager\n"
"Report-Msgid-Bugs-To: http://bugs.archlinux.org/index.php?project=3\n" "Report-Msgid-Bugs-To: https://gitlab.archlinux.org/pacman/pacman/-/issues\n"
"POT-Creation-Date: 2021-09-04 16:15+1000\n" "POT-Creation-Date: 2024-07-14 19:10+1000\n"
"PO-Revision-Date: 2021-05-20 14:03+0000\n" "PO-Revision-Date: 2010-11-29 23:17+0000\n"
"Last-Translator: Panwar108 <caspian7pena@gmail.com>\n" "Last-Translator: Panwar108 <caspian7pena@gmail.com>, 2018,2020-2021\n"
"Language-Team: Hindi (http://www.transifex.com/toofishes/archlinux-pacman/" "Language-Team: Hindi (http://app.transifex.com/toofishes/archlinux-pacman/"
"language/hi/)\n" "language/hi/)\n"
"Language: hi\n" "Language: hi\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
@ -39,17 +39,17 @@ msgstr "पैकेज डाउनग्रेड होगा %s (%s => %s)\n
msgid "cannot allocate disk archive object" msgid "cannot allocate disk archive object"
msgstr "डिस्क संग्रह वस्तु का आवंटन विफल" msgstr "डिस्क संग्रह वस्तु का आवंटन विफल"
#: lib/libalpm/add.c:143 lib/libalpm/util.c:384 #: lib/libalpm/add.c:143 lib/libalpm/util.c:408
#, c-format #, c-format
msgid "warning given when extracting %s (%s)\n" msgid "warning given when extracting %s (%s)\n"
msgstr "%s (%s) अनपैक करते समय चेतावनी दी गई\n" msgstr "%s (%s) अनपैक करते समय चेतावनी दी गई\n"
#: lib/libalpm/add.c:146 lib/libalpm/util.c:387 #: lib/libalpm/add.c:146 lib/libalpm/util.c:411
#, c-format #, c-format
msgid "could not extract %s (%s)\n" msgid "could not extract %s (%s)\n"
msgstr " %s (%s) अनपैक करना विफल\n" msgstr " %s (%s) अनपैक करना विफल\n"
#: lib/libalpm/add.c:159 lib/libalpm/dload.c:709 lib/libalpm/remove.c:534 #: lib/libalpm/add.c:159 lib/libalpm/dload.c:707 lib/libalpm/remove.c:550
#, c-format #, c-format
msgid "could not rename %s to %s (%s)\n" msgid "could not rename %s to %s (%s)\n"
msgstr "%s का नाम बदलकर %s करना विफल (%s)\n" msgstr "%s का नाम बदलकर %s करना विफल (%s)\n"
@ -92,18 +92,18 @@ msgstr "अनपैक : डायरेक्टरी फाइल %s से
msgid "unable to extract %s.pacnew: path too long" msgid "unable to extract %s.pacnew: path too long"
msgstr "%s.pacnew अनपैक करना विफल : पथ काफी लंबा है" msgstr "%s.pacnew अनपैक करना विफल : पथ काफी लंबा है"
#: lib/libalpm/add.c:510 lib/libalpm/util.c:335 lib/libalpm/util.c:600 #: lib/libalpm/add.c:510 lib/libalpm/util.c:354 lib/libalpm/util.c:624
#, c-format #, c-format
msgid "could not get current working directory\n" msgid "could not get current working directory\n"
msgstr "वर्तमान कार्यरत डायरेक्टरी प्राप्त करना विफल\n" msgstr "वर्तमान कार्यरत डायरेक्टरी प्राप्त करना विफल\n"
#: lib/libalpm/add.c:515 lib/libalpm/util.c:340 lib/libalpm/util.c:605 #: lib/libalpm/add.c:515 lib/libalpm/util.c:359 lib/libalpm/util.c:629
#: lib/libalpm/util.c:658 #: lib/libalpm/util.c:684
#, c-format #, c-format
msgid "could not change directory to %s (%s)\n" msgid "could not change directory to %s (%s)\n"
msgstr "डायरेक्टरी बदल कर %s (%s) करना विफल\n" msgstr "डायरेक्टरी बदल कर %s (%s) करना विफल\n"
#: lib/libalpm/add.c:571 lib/libalpm/util.c:405 lib/libalpm/util.c:774 #: lib/libalpm/add.c:571 lib/libalpm/util.c:429 lib/libalpm/util.c:808
#, c-format #, c-format
msgid "could not restore working directory (%s)\n" msgid "could not restore working directory (%s)\n"
msgstr "कार्यरत डायरेक्टरी हेतु पुनः स्थापना विफल (%s)\n" msgstr "कार्यरत डायरेक्टरी हेतु पुनः स्थापना विफल (%s)\n"
@ -128,101 +128,116 @@ msgstr "डेटाबेस प्रविष्टि अपडेट कर
msgid "could not add entry '%s' in cache\n" msgid "could not add entry '%s' in cache\n"
msgstr "कैश में प्रविष्टि '%s' जोड़ना विफल\n" msgstr "कैश में प्रविष्टि '%s' जोड़ना विफल\n"
#: lib/libalpm/be_local.c:266 #: lib/libalpm/be_local.c:271
#, c-format #, c-format
msgid "error while reading file %s: %s\n" msgid "error while reading file %s: %s\n"
msgstr "%s फाइल रीड करते समय त्रुटि : %s\n" msgstr "%s फाइल रीड करते समय त्रुटि : %s\n"
#: lib/libalpm/be_local.c:376 #: lib/libalpm/be_local.c:382
#, c-format #, c-format
msgid "removing invalid database: %s\n" msgid "removing invalid database: %s\n"
msgstr "अमान्य डेटाबेस हट रहा है : %s\n" msgstr "अमान्य डेटाबेस हट रहा है : %s\n"
#: lib/libalpm/be_local.c:427 lib/libalpm/be_local.c:909 #: lib/libalpm/be_local.c:433 lib/libalpm/be_local.c:947
#, c-format #, c-format
msgid "could not create directory %s: %s\n" msgid "could not create directory %s: %s\n"
msgstr "%s डायरेक्टरी बनाना विफल :%s\n" msgstr "%s डायरेक्टरी बनाना विफल :%s\n"
#: lib/libalpm/be_local.c:602 lib/libalpm/be_sync.c:322 #: lib/libalpm/be_local.c:608 lib/libalpm/be_sync.c:339
#, c-format #, c-format
msgid "invalid name for database entry '%s'\n" msgid "invalid name for database entry '%s'\n"
msgstr "डेटाबेस प्रविष्टि '%s' हेतु अमान्य नाम\n" msgstr "डेटाबेस प्रविष्टि '%s' हेतु अमान्य नाम\n"
#: lib/libalpm/be_local.c:610 #: lib/libalpm/be_local.c:616
#, c-format #, c-format
msgid "duplicated database entry '%s'\n" msgid "duplicated database entry '%s'\n"
msgstr "प्रतिरूपित डेटाबेस प्रविष्टि '%s'\n" msgstr "प्रतिरूपित डेटाबेस प्रविष्टि '%s'\n"
#: lib/libalpm/be_local.c:622 #: lib/libalpm/be_local.c:628
#, c-format #, c-format
msgid "corrupted database entry '%s'\n" msgid "corrupted database entry '%s'\n"
msgstr "विकृत डेटाबेस प्रविष्टि '%s'\n" msgstr "विकृत डेटाबेस प्रविष्टि '%s'\n"
#: lib/libalpm/be_local.c:722 lib/libalpm/be_local.c:818 #: lib/libalpm/be_local.c:663
#: lib/libalpm/be_local.c:958 lib/libalpm/be_local.c:1055 #, c-format
#: lib/libalpm/diskspace.c:131 lib/libalpm/dload.c:823 lib/libalpm/util.c:254 msgid "unknown install reason for package %s: %s\n"
#: lib/libalpm/util.c:270 msgstr ""
#: lib/libalpm/be_local.c:743 lib/libalpm/be_local.c:856
#: lib/libalpm/be_local.c:996 lib/libalpm/be_local.c:1102
#: lib/libalpm/diskspace.c:135 lib/libalpm/dload.c:792 lib/libalpm/util.c:273
#: lib/libalpm/util.c:289
#, c-format #, c-format
msgid "could not open file %s: %s\n" msgid "could not open file %s: %s\n"
msgstr "%s फाइल खोलना विफल : %s\n" msgstr "%s फाइल खोलना विफल : %s\n"
#: lib/libalpm/be_local.c:738 lib/libalpm/be_sync.c:582 #: lib/libalpm/be_local.c:759 lib/libalpm/be_sync.c:612
#, c-format #, c-format
msgid "%s database is inconsistent: name mismatch on package %s\n" msgid "%s database is inconsistent: name mismatch on package %s\n"
msgstr "%s डेटाबेस विसंगति : %s पैकेज हेतु नाम बेमेल\n" msgstr "%s डेटाबेस विसंगति : %s पैकेज हेतु नाम बेमेल\n"
#: lib/libalpm/be_local.c:744 lib/libalpm/be_sync.c:588 #: lib/libalpm/be_local.c:765 lib/libalpm/be_sync.c:618
#, c-format #, c-format
msgid "%s database is inconsistent: version mismatch on package %s\n" msgid "%s database is inconsistent: version mismatch on package %s\n"
msgstr "%s डेटाबेस विसंगति : %s पैकेज हेतु संस्करण बेमेल\n" msgstr "%s डेटाबेस विसंगति : %s पैकेज हेतु संस्करण बेमेल\n"
#: lib/libalpm/be_local.c:785 #: lib/libalpm/be_local.c:806
#, c-format #, c-format
msgid "unknown validation type for package %s: %s\n" msgid "unknown validation type for package %s: %s\n"
msgstr "%s पैकेज हेतु अज्ञात प्रमाणीकरण प्रकार : %s\n" msgstr "%s पैकेज हेतु अज्ञात प्रमाणीकरण प्रकार : %s\n"
#: lib/libalpm/be_package.c:478 lib/libalpm/be_package.c:631 #: lib/libalpm/be_local.c:841
#: lib/libalpm/be_package.c:643 #, c-format
msgid "%s: unknown key '%s' in local database\n"
msgstr ""
#: lib/libalpm/be_package.c:255
#, c-format
msgid "%s: unknown key '%s' in package description\n"
msgstr ""
#: lib/libalpm/be_package.c:482 lib/libalpm/be_package.c:635
#: lib/libalpm/be_package.c:647
#, c-format #, c-format
msgid "error while reading package %s: %s\n" msgid "error while reading package %s: %s\n"
msgstr "%s पैकेज रीड करते समय त्रुटि : %s\n" msgstr "%s पैकेज रीड करते समय त्रुटि : %s\n"
#: lib/libalpm/be_package.c:491 lib/libalpm/be_package.c:514 #: lib/libalpm/be_package.c:495 lib/libalpm/be_package.c:518
#, c-format #, c-format
msgid "error while reading mtree of package %s: %s\n" msgid "error while reading mtree of package %s: %s\n"
msgstr "%s पैकेज mtree रीड करते समय त्रुटि : %s\n" msgstr "%s पैकेज mtree रीड करते समय त्रुटि : %s\n"
#: lib/libalpm/be_package.c:597 #: lib/libalpm/be_package.c:601
#, c-format #, c-format
msgid "could not parse package description file in %s\n" msgid "could not parse package description file in %s\n"
msgstr "%s में पैकेज विवरण फाइल प्राप्यता विफल\n" msgstr "%s में पैकेज विवरण फाइल प्राप्यता विफल\n"
#: lib/libalpm/be_package.c:602 #: lib/libalpm/be_package.c:606
#, c-format #, c-format
msgid "missing package name in %s\n" msgid "missing package name in %s\n"
msgstr "%s में पैकेज नाम अनुपस्थित\n" msgstr "%s में पैकेज नाम अनुपस्थित\n"
#: lib/libalpm/be_package.c:606 #: lib/libalpm/be_package.c:610
#, c-format #, c-format
msgid "missing package version in %s\n" msgid "missing package version in %s\n"
msgstr "%s में पैकेज संस्करण अनुपस्थित\n" msgstr "%s में पैकेज संस्करण अनुपस्थित\n"
#: lib/libalpm/be_package.c:610 #: lib/libalpm/be_package.c:614
#, c-format #, c-format
msgid "invalid package version in %s\n" msgid "invalid package version in %s\n"
msgstr "%s में पैकेज संस्करण अमान्य\n" msgstr "%s में पैकेज संस्करण अमान्य\n"
#: lib/libalpm/be_package.c:649 #: lib/libalpm/be_package.c:653
#, c-format #, c-format
msgid "missing package metadata in %s\n" msgid "missing package metadata in %s\n"
msgstr "%s में पैकेज मेटाडेटा अमान्य\n" msgstr "%s में पैकेज मेटाडेटा अमान्य\n"
#: lib/libalpm/be_package.c:741 #: lib/libalpm/be_package.c:745
#, c-format #, c-format
msgid "failed to read signature file: %s\n" msgid "failed to read signature file: %s\n"
msgstr "हस्ताक्षर फाइल रीड करना विफल : %s\n" msgstr "हस्ताक्षर फाइल रीड करना विफल : %s\n"
#: lib/libalpm/be_package.c:770 lib/libalpm/sync.c:953 #: lib/libalpm/be_package.c:768 lib/libalpm/sync.c:976
#, c-format #, c-format
msgid "required key missing from keyring\n" msgid "required key missing from keyring\n"
msgstr "कुंजी-संग्रह से आवश्यक कुंजी अनुपस्थित\n" msgstr "कुंजी-संग्रह से आवश्यक कुंजी अनुपस्थित\n"
@ -232,32 +247,37 @@ msgstr "कुंजी-संग्रह से आवश्यक कुं
msgid "removing invalid file: %s\n" msgid "removing invalid file: %s\n"
msgstr "अमान्य फाइल हट रही है : %s\n" msgstr "अमान्य फाइल हट रही है : %s\n"
#: lib/libalpm/be_sync.c:449 #: lib/libalpm/be_sync.c:471
#, c-format #, c-format
msgid "could not parse package description file '%s' from db '%s'\n" msgid "could not parse package description file '%s' from db '%s'\n"
msgstr "डेटाबेस '%s' से पैकेज विवरण फाइल '%s' प्राप्यता विफल\n" msgstr "डेटाबेस '%s' से पैकेज विवरण फाइल '%s' प्राप्यता विफल\n"
#: lib/libalpm/be_sync.c:456 #: lib/libalpm/be_sync.c:486
#, c-format #, c-format
msgid "could not read db '%s' (%s)\n" msgid "could not read db '%s' (%s)\n"
msgstr "'%s' (%s) डेटाबेस रीड करना विफल\n" msgstr "'%s' (%s) डेटाबेस रीड करना विफल\n"
#: lib/libalpm/be_sync.c:489 lib/libalpm/be_sync.c:494 #: lib/libalpm/be_sync.c:519 lib/libalpm/be_sync.c:524
#, c-format #, c-format
msgid "%s database is inconsistent: filename of package %s is illegal\n" msgid "%s database is inconsistent: filename of package %s is illegal\n"
msgstr "%s डेटाबेस विसंगति : %s पैकेज का फाइल नाम अमान्य है\n" msgstr "%s डेटाबेस विसंगति : %s पैकेज का फाइल नाम अमान्य है\n"
#: lib/libalpm/be_sync.c:499 #: lib/libalpm/be_sync.c:529
#, c-format #, c-format
msgid "%s database is inconsistent: filename of package %s is too long\n" msgid "%s database is inconsistent: filename of package %s is too long\n"
msgstr "%s डेटाबेस विसंगति : %s पैकेज का फाइल नाम काफी लंबा है\n" msgstr "%s डेटाबेस विसंगति : %s पैकेज का फाइल नाम काफी लंबा है\n"
#: lib/libalpm/be_sync.c:564 #: lib/libalpm/be_sync.c:594
#, c-format #, c-format
msgid "unknown database file: %s\n" msgid "unknown database file: %s\n"
msgstr "अज्ञात डेटाबेस फाइल : %s\n" msgstr "अज्ञात डेटाबेस फाइल : %s\n"
#: lib/libalpm/db.c:344 #: lib/libalpm/be_sync.c:712
#, c-format
msgid "%s: unknown key '%s' in sync database\n"
msgstr ""
#: lib/libalpm/db.c:413
#, c-format #, c-format
msgid "database path is undefined\n" msgid "database path is undefined\n"
msgstr "अपरिभाषित डेटाबेस पथ\n" msgstr "अपरिभाषित डेटाबेस पथ\n"
@ -297,103 +317,118 @@ msgstr "%s हेतु फाइल सिस्टम जानकारी
msgid "could not open file: %s: %s\n" msgid "could not open file: %s: %s\n"
msgstr "फाइल खोलना विफल : %s : %s\n" msgstr "फाइल खोलना विफल : %s : %s\n"
#: lib/libalpm/diskspace.c:146 lib/libalpm/diskspace.c:159 #: lib/libalpm/diskspace.c:154 lib/libalpm/diskspace.c:167
#, c-format #, c-format
msgid "could not get filesystem information\n" msgid "could not get filesystem information\n"
msgstr "फाइल सिस्टम जानकारी प्राप्त करना विफल\n" msgstr "फाइल सिस्टम जानकारी प्राप्त करना विफल\n"
#: lib/libalpm/diskspace.c:242 #: lib/libalpm/diskspace.c:254
#, c-format #, c-format
msgid "could not get file information for %s\n" msgid "could not get file information for %s\n"
msgstr "%s हेतु फाइल जानकारी प्राप्त करना विफल\n" msgstr "%s हेतु फाइल जानकारी प्राप्त करना विफल\n"
#: lib/libalpm/diskspace.c:256 lib/libalpm/diskspace.c:315 #: lib/libalpm/diskspace.c:268 lib/libalpm/diskspace.c:327
#, c-format #, c-format
msgid "could not determine mount point for file %s\n" msgid "could not determine mount point for file %s\n"
msgstr "फाइल %s हेतु माउंट पॉइंट निर्धारण विफल\n" msgstr "फाइल %s हेतु माउंट पॉइंट निर्धारण विफल\n"
#: lib/libalpm/diskspace.c:354 #: lib/libalpm/diskspace.c:366
#, c-format #, c-format
msgid "Partition %s too full: %jd blocks needed, %ju blocks free\n" msgid "Partition %s too full: %jd blocks needed, %ju blocks free\n"
msgstr "विभाजन %s लगभग पूर्णतया प्रयुक्त : %jd ब्लॉक आवश्यक, %ju ब्लॉक अप्रयुक्त\n" msgstr "विभाजन %s लगभग पूर्णतया प्रयुक्त : %jd ब्लॉक आवश्यक, %ju ब्लॉक अप्रयुक्त\n"
#: lib/libalpm/diskspace.c:379 lib/libalpm/diskspace.c:433 #: lib/libalpm/diskspace.c:391 lib/libalpm/diskspace.c:445
#, c-format #, c-format
msgid "could not determine filesystem mount points\n" msgid "could not determine filesystem mount points\n"
msgstr "फाइल सिस्टम माउंट पॉइंट निर्धारण विफल\n" msgstr "फाइल सिस्टम माउंट पॉइंट निर्धारण विफल\n"
#: lib/libalpm/diskspace.c:385 #: lib/libalpm/diskspace.c:397
#, c-format #, c-format
msgid "could not determine cachedir mount point %s\n" msgid "could not determine cachedir mount point %s\n"
msgstr "कैश डायरेक्टरी हेतु %s माउंट पॉइंट निर्धारण विफल\n" msgstr "कैश डायरेक्टरी हेतु %s माउंट पॉइंट निर्धारण विफल\n"
#: lib/libalpm/diskspace.c:438 #: lib/libalpm/diskspace.c:450
#, c-format #, c-format
msgid "could not determine root mount point %s\n" msgid "could not determine root mount point %s\n"
msgstr "रुट हेतु %s माउंट पॉइंट निर्धारण विफल\n" msgstr "रुट हेतु %s माउंट पॉइंट निर्धारण विफल\n"
#: lib/libalpm/diskspace.c:486 #: lib/libalpm/diskspace.c:498
#, c-format #, c-format
msgid "Partition %s is mounted read only\n" msgid "Partition %s is mounted read only\n"
msgstr "माउंट विभाजन %s केवल रीड योग्य है\n" msgstr "माउंट विभाजन %s केवल रीड योग्य है\n"
#: lib/libalpm/dload.c:116 #: lib/libalpm/dload.c:107
#, c-format
msgid "failed to create temporary file for download\n"
msgstr "डाउनलोड हेतु अस्थायी फाइल बनाना विफल\n"
#: lib/libalpm/dload.c:198
#, c-format #, c-format
msgid "" msgid ""
"too many errors from %s, skipping for the remainder of this transaction\n" "too many errors from %s, skipping for the remainder of this transaction\n"
msgstr "%s हेतु अत्यधिक त्रुटियाँ हुई, यह शेष संचालन के दौरान निरस्त रहेगा\n" msgstr "%s हेतु अत्यधिक त्रुटियाँ हुई, यह शेष संचालन के दौरान निरस्त रहेगा\n"
#: lib/libalpm/dload.c:220 #: lib/libalpm/dload.c:215
#, c-format
msgid "fatal error from %s, skipping for the remainder of this transaction\n"
msgstr ""
#: lib/libalpm/dload.c:310
#, c-format #, c-format
msgid "disk" msgid "disk"
msgstr "डिस्क" msgstr "डिस्क"
#: lib/libalpm/dload.c:392 #: lib/libalpm/dload.c:532 lib/libalpm/dload.c:570 lib/libalpm/dload.c:583
#, c-format
msgid "failed to create temporary file for download\n"
msgstr "डाउनलोड हेतु अस्थायी फाइल बनाना विफल\n"
#: lib/libalpm/dload.c:509 lib/libalpm/dload.c:547 lib/libalpm/dload.c:561
#, c-format #, c-format
msgid "failed retrieving file '%s' from %s : %s\n" msgid "failed retrieving file '%s' from %s : %s\n"
msgstr "%s से फाइल '%s' प्राप्त करना विफल : %s\n" msgstr "%s से फाइल '%s' प्राप्त करना विफल : %s\n"
#: lib/libalpm/dload.c:539 #: lib/libalpm/dload.c:562
#, c-format #, c-format
msgid "failed retrieving file '%s' from %s : expected download size exceeded\n" msgid "failed retrieving file '%s' from %s : expected download size exceeded\n"
msgstr "%s से फाइल '%s' प्राप्त करना विफल : डाउनलोड आकर अपेक्षा से अधिक\n" msgstr "%s से फाइल '%s' प्राप्त करना विफल : डाउनलोड आकर अपेक्षा से अधिक\n"
#: lib/libalpm/dload.c:687 #: lib/libalpm/dload.c:685
#, c-format #, c-format
msgid "%s appears to be truncated: %jd/%jd bytes\n" msgid "%s appears to be truncated: %jd/%jd bytes\n"
msgstr "%s खंडित प्रतीत होता है : %jd/%jd बाइट\n" msgstr "%s खंडित प्रतीत होता है : %jd/%jd बाइट\n"
#: lib/libalpm/dload.c:787 #: lib/libalpm/dload.c:776
#, c-format #, c-format
msgid "url '%s' is invalid\n" msgid "url '%s' is invalid\n"
msgstr "यूआरएल '%s' अमान्य है\n" msgstr "यूआरएल '%s' अमान्य है\n"
#: lib/libalpm/dload.c:893 #: lib/libalpm/dload.c:864
#, c-format #, c-format
msgid "failed to setup a download payload for %s\n" msgid "failed to setup a download payload for %s\n"
msgstr "%s हेतु डाउनलोड अवस्था सेट करना विफल\n" msgstr "%s हेतु डाउनलोड अवस्था सेट करना विफल\n"
#: lib/libalpm/dload.c:905 #: lib/libalpm/dload.c:876
#, c-format #, c-format
msgid "curl returned error %d from transfer\n" msgid "curl returned error %d from transfer\n"
msgstr "अंतरण हेतु curl से प्राप्त त्रुटि %d\n" msgstr "अंतरण हेतु curl से प्राप्त त्रुटि %d\n"
#: lib/libalpm/dload.c:929 #: lib/libalpm/dload.c:900
#, c-format #, c-format
msgid "curl transfer error: %d\n" msgid "curl transfer error: %d\n"
msgstr "curl अंतरण त्रुटि : %d\n" msgstr "curl अंतरण त्रुटि : %d\n"
#: lib/libalpm/dload.c:1055 lib/libalpm/sync.c:840 #: lib/libalpm/dload.c:963
#, c-format
msgid "could not chdir to download directory %s\n"
msgstr "डाउनलोड डायरेक्टरी %s हेतु डायरेक्टरी बदलना विफल\n"
#: lib/libalpm/dload.c:968
#, c-format
msgid "switching to sandbox user '%s' failed!\n"
msgstr ""
#: lib/libalpm/dload.c:1361 lib/libalpm/sync.c:861
#, c-format #, c-format
msgid "failed to retrieve some files\n" msgid "failed to retrieve some files\n"
msgstr "कुछ फ़ाइलें प्राप्त करने में विफल\n" msgstr "कुछ फ़ाइलें प्राप्त करने में विफल\n"
#: lib/libalpm/dload.c:1078 #: lib/libalpm/dload.c:1384
#, c-format #, c-format
msgid "download completed successfully but no file in the cache\n" msgid "download completed successfully but no file in the cache\n"
msgstr "डाउनलोड करना सफल परन्तु कैश में फाइल मौजूद नहीं है\n" msgstr "डाउनलोड करना सफल परन्तु कैश में फाइल मौजूद नहीं है\n"
@ -668,12 +703,12 @@ msgstr "हस्ताक्षर समर्थन बिना संयो
msgid "unexpected error" msgid "unexpected error"
msgstr "अनपेक्षित त्रुटि" msgstr "अनपेक्षित त्रुटि"
#: lib/libalpm/handle.c:142 #: lib/libalpm/handle.c:165
#, c-format #, c-format
msgid "lock file missing %s\n" msgid "lock file missing %s\n"
msgstr "लॉक फाइल अनुपस्थित %s\n" msgstr "लॉक फाइल अनुपस्थित %s\n"
#: lib/libalpm/handle.c:148 #: lib/libalpm/handle.c:171
#, c-format #, c-format
msgid "could not remove lock file %s\n" msgid "could not remove lock file %s\n"
msgstr "लॉक फाइल %s हटाना विफल \n" msgstr "लॉक फाइल %s हटाना विफल \n"
@ -755,7 +790,7 @@ msgstr "डायरेक्टरी खोलना विफल : %s : %s\n"
msgid "could not open file: %s%s: %s\n" msgid "could not open file: %s%s: %s\n"
msgstr "फाइल खोलना विफल : %s %s: %s\n" msgstr "फाइल खोलना विफल : %s %s: %s\n"
#: lib/libalpm/hook.c:595 lib/libalpm/util.c:260 #: lib/libalpm/hook.c:595 lib/libalpm/util.c:279
#, c-format #, c-format
msgid "could not stat file %s: %s\n" msgid "could not stat file %s: %s\n"
msgstr "फाइल %s स्थिति प्राप्त करना विफल : %s\n" msgstr "फाइल %s स्थिति प्राप्त करना विफल : %s\n"
@ -765,11 +800,43 @@ msgstr "फाइल %s स्थिति प्राप्त करना
msgid "could not read directory: %s: %s\n" msgid "could not read directory: %s: %s\n"
msgstr "डायरेक्टरी रीड करना विफल : %s : %s\n" msgstr "डायरेक्टरी रीड करना विफल : %s : %s\n"
#: lib/libalpm/package.c:598 #: lib/libalpm/package.c:614
#, c-format #, c-format
msgid "could not fully load metadata for package %s-%s\n" msgid "could not fully load metadata for package %s-%s\n"
msgstr "पैकेज हेतु पूर्णतया मेटाडेटा लोड करना विफल %s-%s\n" msgstr "पैकेज हेतु पूर्णतया मेटाडेटा लोड करना विफल %s-%s\n"
#: lib/libalpm/package.c:869
#, c-format
msgid "invalid package metadata (name or version missing)"
msgstr ""
#: lib/libalpm/package.c:874
#, c-format
msgid ""
"invalid metadata for package %s-%s (package name cannot start with '.' or "
"'-')\n"
msgstr ""
#: lib/libalpm/package.c:878
#, c-format
msgid ""
"invalid metadata for package %s-%s (package name contains invalid "
"characters)\n"
msgstr ""
#: lib/libalpm/package.c:885 lib/libalpm/package.c:889
#, c-format
msgid ""
"invalid metadata for package %s-%s (package version contains invalid "
"characters)\n"
msgstr ""
#: lib/libalpm/package.c:895
#, c-format
msgid ""
"invalid metadata for package %s-%s (package name and version too long)\n"
msgstr ""
#: lib/libalpm/remove.c:111 #: lib/libalpm/remove.c:111
#, c-format #, c-format
msgid "could not find %s in database -- skipping\n" msgid "could not find %s in database -- skipping\n"
@ -790,17 +857,17 @@ msgstr "फाइल '%s' हटाना विफल : %s\n"
msgid "could not backup %s due to PATH_MAX overflow\n" msgid "could not backup %s due to PATH_MAX overflow\n"
msgstr "PATH_MAX की अधिकता होने से %s का बैकअप विफल\n" msgstr "PATH_MAX की अधिकता होने से %s का बैकअप विफल\n"
#: lib/libalpm/remove.c:554 #: lib/libalpm/remove.c:570
#, c-format #, c-format
msgid "cannot remove %s (%s)\n" msgid "cannot remove %s (%s)\n"
msgstr "%s (%s) हटाना विफल \n" msgstr "%s (%s) हटाना विफल \n"
#: lib/libalpm/remove.c:727 #: lib/libalpm/remove.c:743
#, c-format #, c-format
msgid "could not remove database entry %s-%s\n" msgid "could not remove database entry %s-%s\n"
msgstr "डेटाबेस प्रविष्टि हटाना विफल %s-%s\n" msgstr "डेटाबेस प्रविष्टि हटाना विफल %s-%s\n"
#: lib/libalpm/remove.c:732 #: lib/libalpm/remove.c:748
#, c-format #, c-format
msgid "could not remove entry '%s' from cache\n" msgid "could not remove entry '%s' from cache\n"
msgstr "कैश से प्रविष्टि '%s' हटाना विफल\n" msgstr "कैश से प्रविष्टि '%s' हटाना विफल\n"
@ -810,89 +877,89 @@ msgstr "कैश से प्रविष्टि '%s' हटाना वि
msgid "Public keyring not found; have you run '%s'?\n" msgid "Public keyring not found; have you run '%s'?\n"
msgstr "सार्वजानिक कुंजी-संग्रह नहीं मिला; क्या आपने '%s' निष्पादित किया?\n" msgstr "सार्वजानिक कुंजी-संग्रह नहीं मिला; क्या आपने '%s' निष्पादित किया?\n"
#: lib/libalpm/signing.c:199 lib/libalpm/signing.c:767 #: lib/libalpm/signing.c:199 lib/libalpm/signing.c:773
#, c-format #, c-format
msgid "GPGME error: %s\n" msgid "GPGME error: %s\n"
msgstr "GPGME त्रुटि : %s\n" msgstr "GPGME त्रुटि : %s\n"
#: lib/libalpm/signing.c:274 #: lib/libalpm/signing.c:275
#, c-format #, c-format
msgid "looking up key %s using WKD\n" msgid "looking up key %s using WKD\n"
msgstr "वेब कुंजी डायरेक्टरी द्वारा कुंजी %s खोज\n" msgstr "वेब कुंजी डायरेक्टरी द्वारा कुंजी %s खोज\n"
#: lib/libalpm/signing.c:283 #: lib/libalpm/signing.c:289
#, c-format #, c-format
msgid "gpg error: %s\n" msgid "gpg error: %s\n"
msgstr "GPG त्रुटि : %s\n" msgstr "GPG त्रुटि : %s\n"
#: lib/libalpm/signing.c:430 lib/libalpm/signing.c:503 #: lib/libalpm/signing.c:440 lib/libalpm/signing.c:513
#, c-format #, c-format
msgid "keyring is not writable\n" msgid "keyring is not writable\n"
msgstr "कुंजी-संग्रह राइट योग्य नहीं है\n" msgstr "कुंजी-संग्रह राइट योग्य नहीं है\n"
#: lib/libalpm/signing.c:531 #: lib/libalpm/signing.c:537
#, c-format #, c-format
msgid "key \"%s\" on keyserver\n" msgid "key \"%s\" on keyserver\n"
msgstr "कुंजी सर्वर पर कुंजी \"%s\"\n" msgstr "कुंजी सर्वर पर कुंजी \"%s\"\n"
#: lib/libalpm/signing.c:536 #: lib/libalpm/signing.c:542
#, c-format #, c-format
msgid "key \"%s\" could not be imported\n" msgid "key \"%s\" could not be imported\n"
msgstr "कुंजी \"%s\" आयात विफल\n" msgstr "कुंजी \"%s\" आयात विफल\n"
#: lib/libalpm/signing.c:540 #: lib/libalpm/signing.c:546
#, c-format #, c-format
msgid "key \"%s\" could not be looked up remotely\n" msgid "key \"%s\" could not be looked up remotely\n"
msgstr "कुंजी \"%s\" हेतु दूरस्थ खोज विफल\n" msgstr "कुंजी \"%s\" हेतु दूरस्थ खोज विफल\n"
#: lib/libalpm/signing.c:926 lib/libalpm/sync.c:1022 #: lib/libalpm/signing.c:932 lib/libalpm/sync.c:1052
#, c-format #, c-format
msgid "%s: missing required signature\n" msgid "%s: missing required signature\n"
msgstr "%s : आवश्यक हस्ताक्षर अनुपस्थित\n" msgstr "%s : आवश्यक हस्ताक्षर अनुपस्थित\n"
#: lib/libalpm/signing.c:941 #: lib/libalpm/signing.c:947
#, c-format #, c-format
msgid "%s: signature from \"%s\" is marginal trust\n" msgid "%s: signature from \"%s\" is marginal trust\n"
msgstr "%s : \"%s\" के हस्ताक्षर की विश्वसनीयता आंशिक है\n" msgstr "%s : \"%s\" के हस्ताक्षर की विश्वसनीयता आंशिक है\n"
#: lib/libalpm/signing.c:949 #: lib/libalpm/signing.c:955
#, c-format #, c-format
msgid "%s: signature from \"%s\" is unknown trust\n" msgid "%s: signature from \"%s\" is unknown trust\n"
msgstr "%s : \"%s\" के हस्ताक्षर की विश्वसनीयता अज्ञात है\n" msgstr "%s : \"%s\" के हस्ताक्षर की विश्वसनीयता अज्ञात है\n"
#: lib/libalpm/signing.c:956 #: lib/libalpm/signing.c:962
#, c-format #, c-format
msgid "%s: signature from \"%s\" should never be trusted\n" msgid "%s: signature from \"%s\" should never be trusted\n"
msgstr "%s : \"%s\" का हस्ताक्षर विश्वसनीय नहीं है\n" msgstr "%s : \"%s\" का हस्ताक्षर विश्वसनीय नहीं है\n"
#: lib/libalpm/signing.c:968 #: lib/libalpm/signing.c:974
#, c-format #, c-format
msgid "%s: key \"%s\" is unknown\n" msgid "%s: key \"%s\" is unknown\n"
msgstr "%s: कुंजी \"%s\" अज्ञात है\n" msgstr "%s: कुंजी \"%s\" अज्ञात है\n"
#: lib/libalpm/signing.c:977 #: lib/libalpm/signing.c:983
#, c-format #, c-format
msgid "%s: key \"%s\" is disabled\n" msgid "%s: key \"%s\" is disabled\n"
msgstr "%s: कुंजी \"%s\" निष्क्रिय है\n" msgstr "%s: कुंजी \"%s\" निष्क्रिय है\n"
#: lib/libalpm/signing.c:981 #: lib/libalpm/signing.c:987
#, c-format #, c-format
msgid "%s: signature from \"%s\" is expired\n" msgid "%s: signature from \"%s\" is expired\n"
msgstr "%s : \"%s\" के हस्ताक्षर की मान्यता समाप्त हो चुकी है\n" msgstr "%s : \"%s\" के हस्ताक्षर की मान्यता समाप्त हो चुकी है\n"
#: lib/libalpm/signing.c:985 #: lib/libalpm/signing.c:991
#, c-format #, c-format
msgid "%s: signature from \"%s\" is invalid\n" msgid "%s: signature from \"%s\" is invalid\n"
msgstr "%s : \"%s\" का हस्ताक्षर अमान्य है\n" msgstr "%s : \"%s\" का हस्ताक्षर अमान्य है\n"
#: lib/libalpm/signing.c:1043 lib/libalpm/signing.c:1104 #: lib/libalpm/signing.c:1049 lib/libalpm/signing.c:1110
#: lib/libalpm/signing.c:1183 #: lib/libalpm/signing.c:1189
#, c-format #, c-format
msgid "%s: signature format error\n" msgid "%s: signature format error\n"
msgstr "%s: हस्ताक्षर प्रारूप त्रुटि\n" msgstr "%s: हस्ताक्षर प्रारूप त्रुटि\n"
#: lib/libalpm/signing.c:1136 lib/libalpm/signing.c:1169 #: lib/libalpm/signing.c:1142 lib/libalpm/signing.c:1175
#: lib/libalpm/signing.c:1177 #: lib/libalpm/signing.c:1183
#, c-format #, c-format
msgid "%s: unsupported signature format\n" msgid "%s: unsupported signature format\n"
msgstr "%s: असमर्थित हस्ताक्षर प्रारूप\n" msgstr "%s: असमर्थित हस्ताक्षर प्रारूप\n"
@ -927,117 +994,122 @@ msgstr "पैकेज विनिमय अनदेखा किया ग
msgid "cannot replace %s by %s\n" msgid "cannot replace %s by %s\n"
msgstr "%s को %s से बदलना विफल\n" msgstr "%s को %s से बदलना विफल\n"
#: lib/libalpm/sync.c:476 #: lib/libalpm/sync.c:477
#, c-format #, c-format
msgid "packages %s and %s have the same filename: %s\n" msgid "packages %s and %s have the same filename: %s\n"
msgstr "%s व %s पैकेज के फाइल नाम समान है : %s\n" msgstr "%s व %s पैकेज के फाइल नाम समान है : %s\n"
#: lib/libalpm/sync.c:542 lib/libalpm/sync.c:612 #: lib/libalpm/sync.c:546 lib/libalpm/sync.c:618
#, c-format #, c-format
msgid "unresolvable package conflicts detected\n" msgid "unresolvable package conflicts detected\n"
msgstr "असमन्वयित विरुद्ध पैकेज पहचाने गए\n" msgstr "असमन्वयित विरुद्ध पैकेज पहचाने गए\n"
#: lib/libalpm/sync.c:562 #: lib/libalpm/sync.c:566
#, c-format #, c-format
msgid "removing '%s' from target list because it conflicts with '%s'\n" msgid "removing '%s-%s' from target list because it conflicts with '%s-%s'\n"
msgstr "'%s' के विरुद्ध होने के कारण '%s' लक्षित सूची से हटेगा\n" msgstr ""
#: lib/libalpm/sync.c:1036 #: lib/libalpm/sync.c:1020 lib/libalpm/sync.c:1187
#, c-format
msgid "%s: could not find package in cache\n"
msgstr ""
#: lib/libalpm/sync.c:1066
#, c-format #, c-format
msgid "failed to read file %s: %s\n" msgid "failed to read file %s: %s\n"
msgstr "%s फ़ाइल रीड करने में विफल : %s\n" msgstr "%s फ़ाइल रीड करने में विफल : %s\n"
#: lib/libalpm/sync.c:1223 #: lib/libalpm/sync.c:1324
#, c-format #, c-format
msgid "not enough free disk space\n" msgid "not enough free disk space\n"
msgstr "अपर्याप्त डिस्क स्पेस\n" msgstr "अपर्याप्त डिस्क स्पेस\n"
#: lib/libalpm/sync.c:1245 #: lib/libalpm/sync.c:1346
#, c-format #, c-format
msgid "could not commit removal transaction\n" msgid "could not commit removal transaction\n"
msgstr "हटाने हेतु संचालन संचित करना विफल\n" msgstr "हटाने हेतु संचालन संचित करना विफल\n"
#: lib/libalpm/sync.c:1253 #: lib/libalpm/sync.c:1354
#, c-format #, c-format
msgid "could not commit transaction\n" msgid "could not commit transaction\n"
msgstr "संचालन संचित करना विफल\n" msgstr "संचालन संचित करना विफल\n"
#: lib/libalpm/trans.c:365 #: lib/libalpm/trans.c:369
#, c-format #, c-format
msgid "could not create temp directory\n" msgid "could not create temp directory\n"
msgstr "अस्थायी डायरेक्टरी बनाना विफल\n" msgstr "अस्थायी डायरेक्टरी बनाना विफल\n"
#: lib/libalpm/trans.c:380 #: lib/libalpm/trans.c:384
#, c-format #, c-format
msgid "could not copy tempfile to %s (%s)\n" msgid "could not copy tempfile to %s (%s)\n"
msgstr "अस्थायी फाइल को %s (%s) में कॉपी करना विफल\n" msgstr "अस्थायी फाइल को %s (%s) में कॉपी करना विफल\n"
#: lib/libalpm/trans.c:411 #: lib/libalpm/trans.c:415
#, c-format #, c-format
msgid "could not remove %s\n" msgid "could not remove %s\n"
msgstr "%s हटाना विफल\n" msgstr "%s हटाना विफल\n"
#: lib/libalpm/trans.c:415 #: lib/libalpm/trans.c:419
#, c-format #, c-format
msgid "could not remove tmpdir %s\n" msgid "could not remove tmpdir %s\n"
msgstr "अस्थायी डायरेक्टरी %s हटाना विफल\n" msgstr "अस्थायी डायरेक्टरी %s हटाना विफल\n"
#: lib/libalpm/util.c:488 #: lib/libalpm/util.c:512
#, c-format #, c-format
msgid "unable to write to pipe (%s)\n" msgid "unable to write to pipe (%s)\n"
msgstr "पाइप (%s) पर राइट करने में विफल\n" msgstr "पाइप (%s) पर राइट करने में विफल\n"
#: lib/libalpm/util.c:547 #: lib/libalpm/util.c:571
#, c-format #, c-format
msgid "unable to read from pipe (%s)\n" msgid "unable to read from pipe (%s)\n"
msgstr "पाइप (%s) से रीड करने में विफल\n" msgstr "पाइप (%s) से रीड करने में विफल\n"
#: lib/libalpm/util.c:617 lib/libalpm/util.c:623 #: lib/libalpm/util.c:641 lib/libalpm/util.c:647
#, c-format #, c-format
msgid "could not create pipe (%s)\n" msgid "could not create pipe (%s)\n"
msgstr "पाइप (%s) बनाने में विफल\n" msgstr "पाइप (%s) बनाने में विफल\n"
#: lib/libalpm/util.c:631 #: lib/libalpm/util.c:655
#, c-format #, c-format
msgid "could not fork a new process (%s)\n" msgid "could not fork a new process (%s)\n"
msgstr "विभाजित कर नई प्रक्रिया (%s) बनाने में विफल\n" msgstr "विभाजित कर नई प्रक्रिया (%s) बनाने में विफल\n"
#: lib/libalpm/util.c:654 #: lib/libalpm/util.c:680
#, c-format #, c-format
msgid "could not change the root directory (%s)\n" msgid "could not change the root directory (%s)\n"
msgstr "रुट डायरेक्टरी (%s) बदलने में विफल\n" msgstr "रुट डायरेक्टरी (%s) बदलने में विफल\n"
#: lib/libalpm/util.c:666 #: lib/libalpm/util.c:700
#, c-format #, c-format
msgid "call to execv failed (%s)\n" msgid "call to execv failed (%s)\n"
msgstr "execv हेतु कॉल विफल (%s)\n" msgstr "execv हेतु कॉल विफल (%s)\n"
#: lib/libalpm/util.c:745 #: lib/libalpm/util.c:779
#, c-format #, c-format
msgid "call to waitpid failed (%s)\n" msgid "call to waitpid failed (%s)\n"
msgstr "waitpid हेतु कॉल विफल (%s)\n" msgstr "waitpid हेतु कॉल विफल (%s)\n"
#: lib/libalpm/util.c:755 #: lib/libalpm/util.c:789
#, c-format #, c-format
msgid "command failed to execute correctly\n" msgid "command failed to execute correctly\n"
msgstr "कमांड का उचित निष्पादन विफल\n" msgstr "कमांड का उचित निष्पादन विफल\n"
#: lib/libalpm/util.c:762 #: lib/libalpm/util.c:796
#, c-format #, c-format
msgid "Unknown signal" msgid "Unknown signal"
msgstr "अज्ञात संकेत" msgstr "अज्ञात संकेत"
#: lib/libalpm/util.c:764 #: lib/libalpm/util.c:798
#, c-format #, c-format
msgid "command terminated by signal %d: %s\n" msgid "command terminated by signal %d: %s\n"
msgstr "%d संकेत द्वारा कमांड समाप्त : %s\n" msgstr "%d संकेत द्वारा कमांड समाप्त : %s\n"
#: lib/libalpm/util.c:875 #: lib/libalpm/util.c:916
#, c-format #, c-format
msgid "no %s cache exists, creating...\n" msgid "no %s cache exists, creating...\n"
msgstr "कोई %s कैश मौजूद नहीं है, बनाई जाएगी...\n" msgstr "कोई %s कैश मौजूद नहीं है, बनाई जाएगी...\n"
#: lib/libalpm/util.c:906 #: lib/libalpm/util.c:947
#, c-format #, c-format
msgid "couldn't find or create package cache, using %s instead\n" msgid "couldn't find or create package cache, using %s instead\n"
msgstr "पैकेज कैश खोज या बनाना विफल, अतः %s उपयोग होगा\n" msgstr "पैकेज कैश खोज या बनाना विफल, अतः %s उपयोग होगा\n"

View file

@ -8,18 +8,18 @@
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Arch Linux Pacman package manager\n" "Project-Id-Version: Arch Linux Pacman package manager\n"
"Report-Msgid-Bugs-To: http://bugs.archlinux.org/index.php?project=3\n" "Report-Msgid-Bugs-To: https://gitlab.archlinux.org/pacman/pacman/-/issues\n"
"POT-Creation-Date: 2021-09-04 16:15+1000\n" "POT-Creation-Date: 2024-07-14 19:10+1000\n"
"PO-Revision-Date: 2021-05-20 02:25+0000\n" "PO-Revision-Date: 2010-11-29 23:17+0000\n"
"Last-Translator: Allan McRae <allan@archlinux.org>\n" "Last-Translator: Viktor Coric <viktor_coric94@hotmail.com>, 2016\n"
"Language-Team: Croatian (http://www.transifex.com/toofishes/archlinux-pacman/" "Language-Team: Croatian (http://app.transifex.com/toofishes/archlinux-pacman/"
"language/hr/)\n" "language/hr/)\n"
"Language: hr\n" "Language: hr\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && "
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
#: lib/libalpm/add.c:90 lib/libalpm/sync.c:279 #: lib/libalpm/add.c:90 lib/libalpm/sync.c:279
#, c-format #, c-format
@ -41,12 +41,12 @@ msgstr "unazađujem paket %s (%s => %s)\n"
msgid "cannot allocate disk archive object" msgid "cannot allocate disk archive object"
msgstr "" msgstr ""
#: lib/libalpm/add.c:143 lib/libalpm/util.c:384 #: lib/libalpm/add.c:143 lib/libalpm/util.c:408
#, c-format #, c-format
msgid "warning given when extracting %s (%s)\n" msgid "warning given when extracting %s (%s)\n"
msgstr "dano upozorenje tijekom raspakiranja %s (%s)\n" msgstr "dano upozorenje tijekom raspakiranja %s (%s)\n"
#: lib/libalpm/add.c:146 lib/libalpm/util.c:387 #: lib/libalpm/add.c:146 lib/libalpm/util.c:411
#, c-format #, c-format
msgid "could not extract %s (%s)\n" msgid "could not extract %s (%s)\n"
msgstr "" msgstr ""
@ -54,7 +54,7 @@ msgstr ""
"\n" "\n"
"\n" "\n"
#: lib/libalpm/add.c:159 lib/libalpm/dload.c:709 lib/libalpm/remove.c:534 #: lib/libalpm/add.c:159 lib/libalpm/dload.c:707 lib/libalpm/remove.c:550
#, c-format #, c-format
msgid "could not rename %s to %s (%s)\n" msgid "could not rename %s to %s (%s)\n"
msgstr "ne mogu preimenivati %s u %s (%s)\n" msgstr "ne mogu preimenivati %s u %s (%s)\n"
@ -98,18 +98,18 @@ msgstr "raspakiravanje: ne pišem preko direktorija datotekom %s\n"
msgid "unable to extract %s.pacnew: path too long" msgid "unable to extract %s.pacnew: path too long"
msgstr "nije moguće raspakirati %s.pacnew: putanja je preduga" msgstr "nije moguće raspakirati %s.pacnew: putanja je preduga"
#: lib/libalpm/add.c:510 lib/libalpm/util.c:335 lib/libalpm/util.c:600 #: lib/libalpm/add.c:510 lib/libalpm/util.c:354 lib/libalpm/util.c:624
#, c-format #, c-format
msgid "could not get current working directory\n" msgid "could not get current working directory\n"
msgstr "ne mogu dobaviti trenutni radni direktorij\n" msgstr "ne mogu dobaviti trenutni radni direktorij\n"
#: lib/libalpm/add.c:515 lib/libalpm/util.c:340 lib/libalpm/util.c:605 #: lib/libalpm/add.c:515 lib/libalpm/util.c:359 lib/libalpm/util.c:629
#: lib/libalpm/util.c:658 #: lib/libalpm/util.c:684
#, c-format #, c-format
msgid "could not change directory to %s (%s)\n" msgid "could not change directory to %s (%s)\n"
msgstr "ne mogu promjeniti direktorij u %s (%s)\n" msgstr "ne mogu promjeniti direktorij u %s (%s)\n"
#: lib/libalpm/add.c:571 lib/libalpm/util.c:405 lib/libalpm/util.c:774 #: lib/libalpm/add.c:571 lib/libalpm/util.c:429 lib/libalpm/util.c:808
#, c-format #, c-format
msgid "could not restore working directory (%s)\n" msgid "could not restore working directory (%s)\n"
msgstr "" msgstr ""
@ -140,106 +140,121 @@ msgstr "ne mogu ažurirati unos baze podataka %s-%s\n"
msgid "could not add entry '%s' in cache\n" msgid "could not add entry '%s' in cache\n"
msgstr "ne mogu dodati unos '%s' u cache\n" msgstr "ne mogu dodati unos '%s' u cache\n"
#: lib/libalpm/be_local.c:266 #: lib/libalpm/be_local.c:271
#, c-format #, c-format
msgid "error while reading file %s: %s\n" msgid "error while reading file %s: %s\n"
msgstr "greška prilikom čitanja datoteke %s: %s\n" msgstr "greška prilikom čitanja datoteke %s: %s\n"
#: lib/libalpm/be_local.c:376 #: lib/libalpm/be_local.c:382
#, c-format #, c-format
msgid "removing invalid database: %s\n" msgid "removing invalid database: %s\n"
msgstr "uklanjam neispravnu bazu podataka: %s\n" msgstr "uklanjam neispravnu bazu podataka: %s\n"
#: lib/libalpm/be_local.c:427 lib/libalpm/be_local.c:909 #: lib/libalpm/be_local.c:433 lib/libalpm/be_local.c:947
#, c-format #, c-format
msgid "could not create directory %s: %s\n" msgid "could not create directory %s: %s\n"
msgstr "ne mogu napraviti direktorij %s: %s\n" msgstr "ne mogu napraviti direktorij %s: %s\n"
#: lib/libalpm/be_local.c:602 lib/libalpm/be_sync.c:322 #: lib/libalpm/be_local.c:608 lib/libalpm/be_sync.c:339
#, c-format #, c-format
msgid "invalid name for database entry '%s'\n" msgid "invalid name for database entry '%s'\n"
msgstr "" msgstr ""
"neispravno ime za unos baze podataka '%s'\n" "neispravno ime za unos baze podataka '%s'\n"
"\n" "\n"
#: lib/libalpm/be_local.c:610 #: lib/libalpm/be_local.c:616
#, c-format #, c-format
msgid "duplicated database entry '%s'\n" msgid "duplicated database entry '%s'\n"
msgstr "dvostruki unos '%s' u bazi podataka\n" msgstr "dvostruki unos '%s' u bazi podataka\n"
#: lib/libalpm/be_local.c:622 #: lib/libalpm/be_local.c:628
#, c-format #, c-format
msgid "corrupted database entry '%s'\n" msgid "corrupted database entry '%s'\n"
msgstr "oštećeni unos baze podataka '%s'\n" msgstr "oštećeni unos baze podataka '%s'\n"
#: lib/libalpm/be_local.c:722 lib/libalpm/be_local.c:818 #: lib/libalpm/be_local.c:663
#: lib/libalpm/be_local.c:958 lib/libalpm/be_local.c:1055 #, c-format
#: lib/libalpm/diskspace.c:131 lib/libalpm/dload.c:823 lib/libalpm/util.c:254 msgid "unknown install reason for package %s: %s\n"
#: lib/libalpm/util.c:270 msgstr ""
#: lib/libalpm/be_local.c:743 lib/libalpm/be_local.c:856
#: lib/libalpm/be_local.c:996 lib/libalpm/be_local.c:1102
#: lib/libalpm/diskspace.c:135 lib/libalpm/dload.c:792 lib/libalpm/util.c:273
#: lib/libalpm/util.c:289
#, c-format #, c-format
msgid "could not open file %s: %s\n" msgid "could not open file %s: %s\n"
msgstr "ne mogu otvoriti datoteku %s: %s\n" msgstr "ne mogu otvoriti datoteku %s: %s\n"
#: lib/libalpm/be_local.c:738 lib/libalpm/be_sync.c:582 #: lib/libalpm/be_local.c:759 lib/libalpm/be_sync.c:612
#, c-format #, c-format
msgid "%s database is inconsistent: name mismatch on package %s\n" msgid "%s database is inconsistent: name mismatch on package %s\n"
msgstr "%s baza podatak je nedosljedna: ime se ne podudara sa paketom %s\n" msgstr "%s baza podatak je nedosljedna: ime se ne podudara sa paketom %s\n"
#: lib/libalpm/be_local.c:744 lib/libalpm/be_sync.c:588 #: lib/libalpm/be_local.c:765 lib/libalpm/be_sync.c:618
#, c-format #, c-format
msgid "%s database is inconsistent: version mismatch on package %s\n" msgid "%s database is inconsistent: version mismatch on package %s\n"
msgstr "" msgstr ""
"%s baza podataka je nedosljedna: verzija se ne podudara sa paketom %s\n" "%s baza podataka je nedosljedna: verzija se ne podudara sa paketom %s\n"
#: lib/libalpm/be_local.c:785 #: lib/libalpm/be_local.c:806
#, c-format #, c-format
msgid "unknown validation type for package %s: %s\n" msgid "unknown validation type for package %s: %s\n"
msgstr "nepoznata vrsta provjere za paket %s: %s\n" msgstr "nepoznata vrsta provjere za paket %s: %s\n"
#: lib/libalpm/be_package.c:478 lib/libalpm/be_package.c:631 #: lib/libalpm/be_local.c:841
#: lib/libalpm/be_package.c:643 #, c-format
msgid "%s: unknown key '%s' in local database\n"
msgstr ""
#: lib/libalpm/be_package.c:255
#, c-format
msgid "%s: unknown key '%s' in package description\n"
msgstr ""
#: lib/libalpm/be_package.c:482 lib/libalpm/be_package.c:635
#: lib/libalpm/be_package.c:647
#, c-format #, c-format
msgid "error while reading package %s: %s\n" msgid "error while reading package %s: %s\n"
msgstr "greška prilikom čitanja paketa %s: %s\n" msgstr "greška prilikom čitanja paketa %s: %s\n"
#: lib/libalpm/be_package.c:491 lib/libalpm/be_package.c:514 #: lib/libalpm/be_package.c:495 lib/libalpm/be_package.c:518
#, c-format #, c-format
msgid "error while reading mtree of package %s: %s\n" msgid "error while reading mtree of package %s: %s\n"
msgstr "" msgstr ""
"greška pri čitanju mtree paketa %s: %s\n" "greška pri čitanju mtree paketa %s: %s\n"
"\n" "\n"
#: lib/libalpm/be_package.c:597 #: lib/libalpm/be_package.c:601
#, c-format #, c-format
msgid "could not parse package description file in %s\n" msgid "could not parse package description file in %s\n"
msgstr "ne mogu analizirati opisnu datoteku paketa u %s\n" msgstr "ne mogu analizirati opisnu datoteku paketa u %s\n"
#: lib/libalpm/be_package.c:602 #: lib/libalpm/be_package.c:606
#, c-format #, c-format
msgid "missing package name in %s\n" msgid "missing package name in %s\n"
msgstr "nedostaje ime paketa u %s\n" msgstr "nedostaje ime paketa u %s\n"
#: lib/libalpm/be_package.c:606 #: lib/libalpm/be_package.c:610
#, c-format #, c-format
msgid "missing package version in %s\n" msgid "missing package version in %s\n"
msgstr "nedostaje verzija paketa u %s\n" msgstr "nedostaje verzija paketa u %s\n"
#: lib/libalpm/be_package.c:610 #: lib/libalpm/be_package.c:614
#, c-format #, c-format
msgid "invalid package version in %s\n" msgid "invalid package version in %s\n"
msgstr "neispravna verzija pakata u %s\n" msgstr "neispravna verzija pakata u %s\n"
#: lib/libalpm/be_package.c:649 #: lib/libalpm/be_package.c:653
#, c-format #, c-format
msgid "missing package metadata in %s\n" msgid "missing package metadata in %s\n"
msgstr "nedostaju metapodaci paketa u %s\n" msgstr "nedostaju metapodaci paketa u %s\n"
#: lib/libalpm/be_package.c:741 #: lib/libalpm/be_package.c:745
#, c-format #, c-format
msgid "failed to read signature file: %s\n" msgid "failed to read signature file: %s\n"
msgstr "ne mogu pročitati datoteku sa potpisom: %s\n" msgstr "ne mogu pročitati datoteku sa potpisom: %s\n"
#: lib/libalpm/be_package.c:770 lib/libalpm/sync.c:953 #: lib/libalpm/be_package.c:768 lib/libalpm/sync.c:976
#, c-format #, c-format
msgid "required key missing from keyring\n" msgid "required key missing from keyring\n"
msgstr "traženi ključ nedostaje u privjesku\n" msgstr "traženi ključ nedostaje u privjesku\n"
@ -249,32 +264,37 @@ msgstr "traženi ključ nedostaje u privjesku\n"
msgid "removing invalid file: %s\n" msgid "removing invalid file: %s\n"
msgstr "uklanjam neispravnu datoteku: %s\n" msgstr "uklanjam neispravnu datoteku: %s\n"
#: lib/libalpm/be_sync.c:449 #: lib/libalpm/be_sync.c:471
#, c-format #, c-format
msgid "could not parse package description file '%s' from db '%s'\n" msgid "could not parse package description file '%s' from db '%s'\n"
msgstr "ne mogu obraditi datoteku opisa paketa '%s' iz baze podataka '%s'\n" msgstr "ne mogu obraditi datoteku opisa paketa '%s' iz baze podataka '%s'\n"
#: lib/libalpm/be_sync.c:456 #: lib/libalpm/be_sync.c:486
#, c-format #, c-format
msgid "could not read db '%s' (%s)\n" msgid "could not read db '%s' (%s)\n"
msgstr "ne mogu čitati db '%s' (%s)\n" msgstr "ne mogu čitati db '%s' (%s)\n"
#: lib/libalpm/be_sync.c:489 lib/libalpm/be_sync.c:494 #: lib/libalpm/be_sync.c:519 lib/libalpm/be_sync.c:524
#, c-format #, c-format
msgid "%s database is inconsistent: filename of package %s is illegal\n" msgid "%s database is inconsistent: filename of package %s is illegal\n"
msgstr "nedosljednost baze podataka %s: ime paketa %s je nevažeći\n" msgstr "nedosljednost baze podataka %s: ime paketa %s je nevažeći\n"
#: lib/libalpm/be_sync.c:499 #: lib/libalpm/be_sync.c:529
#, c-format #, c-format
msgid "%s database is inconsistent: filename of package %s is too long\n" msgid "%s database is inconsistent: filename of package %s is too long\n"
msgstr "nedosljednost baze podataka %s: ime paketa %s je predugo\n" msgstr "nedosljednost baze podataka %s: ime paketa %s je predugo\n"
#: lib/libalpm/be_sync.c:564 #: lib/libalpm/be_sync.c:594
#, c-format #, c-format
msgid "unknown database file: %s\n" msgid "unknown database file: %s\n"
msgstr "nepoznata datoteka baze podataka: %s\n" msgstr "nepoznata datoteka baze podataka: %s\n"
#: lib/libalpm/db.c:344 #: lib/libalpm/be_sync.c:712
#, c-format
msgid "%s: unknown key '%s' in sync database\n"
msgstr ""
#: lib/libalpm/db.c:413
#, c-format #, c-format
msgid "database path is undefined\n" msgid "database path is undefined\n"
msgstr "putanja baze podataka nije određena\n" msgstr "putanja baze podataka nije određena\n"
@ -314,108 +334,123 @@ msgstr "ne mogu dobitit informaciju datotečnog sustava za %s: %s\n"
msgid "could not open file: %s: %s\n" msgid "could not open file: %s: %s\n"
msgstr "ne mogu otvoriti datoteku: %s: %s\n" msgstr "ne mogu otvoriti datoteku: %s: %s\n"
#: lib/libalpm/diskspace.c:146 lib/libalpm/diskspace.c:159 #: lib/libalpm/diskspace.c:154 lib/libalpm/diskspace.c:167
#, c-format #, c-format
msgid "could not get filesystem information\n" msgid "could not get filesystem information\n"
msgstr "" msgstr ""
"ne mogu dobiti informaciju datotečnog sustava\n" "ne mogu dobiti informaciju datotečnog sustava\n"
"\n" "\n"
#: lib/libalpm/diskspace.c:242 #: lib/libalpm/diskspace.c:254
#, c-format #, c-format
msgid "could not get file information for %s\n" msgid "could not get file information for %s\n"
msgstr "ne mogu dobiti informaciju za %s\n" msgstr "ne mogu dobiti informaciju za %s\n"
#: lib/libalpm/diskspace.c:256 lib/libalpm/diskspace.c:315 #: lib/libalpm/diskspace.c:268 lib/libalpm/diskspace.c:327
#, c-format #, c-format
msgid "could not determine mount point for file %s\n" msgid "could not determine mount point for file %s\n"
msgstr "ne mogu odrediti točku montiranja za datoteku %s\n" msgstr "ne mogu odrediti točku montiranja za datoteku %s\n"
#: lib/libalpm/diskspace.c:354 #: lib/libalpm/diskspace.c:366
#, c-format #, c-format
msgid "Partition %s too full: %jd blocks needed, %ju blocks free\n" msgid "Partition %s too full: %jd blocks needed, %ju blocks free\n"
msgstr "" msgstr ""
"Particija %s je prepuna: %jd blokova je potrebno, %ju blokova je slobodno\n" "Particija %s je prepuna: %jd blokova je potrebno, %ju blokova je slobodno\n"
#: lib/libalpm/diskspace.c:379 lib/libalpm/diskspace.c:433 #: lib/libalpm/diskspace.c:391 lib/libalpm/diskspace.c:445
#, c-format #, c-format
msgid "could not determine filesystem mount points\n" msgid "could not determine filesystem mount points\n"
msgstr "ne mogu odrediti točke montiranja datotečnog sustava\n" msgstr "ne mogu odrediti točke montiranja datotečnog sustava\n"
#: lib/libalpm/diskspace.c:385 #: lib/libalpm/diskspace.c:397
#, c-format #, c-format
msgid "could not determine cachedir mount point %s\n" msgid "could not determine cachedir mount point %s\n"
msgstr "ne mogu odrediti točku montiranja cache direktorija od %s\n" msgstr "ne mogu odrediti točku montiranja cache direktorija od %s\n"
#: lib/libalpm/diskspace.c:438 #: lib/libalpm/diskspace.c:450
#, c-format #, c-format
msgid "could not determine root mount point %s\n" msgid "could not determine root mount point %s\n"
msgstr "ne mogu odrediti točku montiranja za root %s\n" msgstr "ne mogu odrediti točku montiranja za root %s\n"
#: lib/libalpm/diskspace.c:486 #: lib/libalpm/diskspace.c:498
#, c-format #, c-format
msgid "Partition %s is mounted read only\n" msgid "Partition %s is mounted read only\n"
msgstr "Particija %s je montirana samo za čitanje\n" msgstr "Particija %s je montirana samo za čitanje\n"
#: lib/libalpm/dload.c:116 #: lib/libalpm/dload.c:107
#, c-format
msgid "failed to create temporary file for download\n"
msgstr "neuspjela izrada privremene datoteke za preuzimanje\n"
#: lib/libalpm/dload.c:198
#, c-format #, c-format
msgid "" msgid ""
"too many errors from %s, skipping for the remainder of this transaction\n" "too many errors from %s, skipping for the remainder of this transaction\n"
msgstr "" msgstr ""
#: lib/libalpm/dload.c:220 #: lib/libalpm/dload.c:215
#, c-format
msgid "fatal error from %s, skipping for the remainder of this transaction\n"
msgstr ""
#: lib/libalpm/dload.c:310
#, c-format #, c-format
msgid "disk" msgid "disk"
msgstr "disk" msgstr "disk"
#: lib/libalpm/dload.c:392 #: lib/libalpm/dload.c:532 lib/libalpm/dload.c:570 lib/libalpm/dload.c:583
#, c-format
msgid "failed to create temporary file for download\n"
msgstr "neuspjela izrada privremene datoteke za preuzimanje\n"
#: lib/libalpm/dload.c:509 lib/libalpm/dload.c:547 lib/libalpm/dload.c:561
#, c-format #, c-format
msgid "failed retrieving file '%s' from %s : %s\n" msgid "failed retrieving file '%s' from %s : %s\n"
msgstr "neuspjelo primanje datoteke '%s' iz %s : %s\n" msgstr "neuspjelo primanje datoteke '%s' iz %s : %s\n"
#: lib/libalpm/dload.c:539 #: lib/libalpm/dload.c:562
#, c-format #, c-format
msgid "failed retrieving file '%s' from %s : expected download size exceeded\n" msgid "failed retrieving file '%s' from %s : expected download size exceeded\n"
msgstr "" msgstr ""
"greška pri dobavljanju datoteke '%s' iz %s: veličina preuzimanja je veća od " "greška pri dobavljanju datoteke '%s' iz %s: veličina preuzimanja je veća od "
"očekivane\n" "očekivane\n"
#: lib/libalpm/dload.c:687 #: lib/libalpm/dload.c:685
#, c-format #, c-format
msgid "%s appears to be truncated: %jd/%jd bytes\n" msgid "%s appears to be truncated: %jd/%jd bytes\n"
msgstr "%s je okrnjen: %jd%jd bajtova\n" msgstr "%s je okrnjen: %jd%jd bajtova\n"
#: lib/libalpm/dload.c:787 #: lib/libalpm/dload.c:776
#, c-format #, c-format
msgid "url '%s' is invalid\n" msgid "url '%s' is invalid\n"
msgstr "url '%s' je neispravan\n" msgstr "url '%s' je neispravan\n"
#: lib/libalpm/dload.c:893 #: lib/libalpm/dload.c:864
#, c-format #, c-format
msgid "failed to setup a download payload for %s\n" msgid "failed to setup a download payload for %s\n"
msgstr "" msgstr ""
#: lib/libalpm/dload.c:905 #: lib/libalpm/dload.c:876
#, c-format #, c-format
msgid "curl returned error %d from transfer\n" msgid "curl returned error %d from transfer\n"
msgstr "" msgstr ""
#: lib/libalpm/dload.c:929 #: lib/libalpm/dload.c:900
#, c-format #, c-format
msgid "curl transfer error: %d\n" msgid "curl transfer error: %d\n"
msgstr "" msgstr ""
#: lib/libalpm/dload.c:1055 lib/libalpm/sync.c:840 #: lib/libalpm/dload.c:963
#, c-format
msgid "could not chdir to download directory %s\n"
msgstr "ne mogu promjeniti direktorij u direktorij za skidanje od %s\n"
#: lib/libalpm/dload.c:968
#, c-format
msgid "switching to sandbox user '%s' failed!\n"
msgstr ""
#: lib/libalpm/dload.c:1361 lib/libalpm/sync.c:861
#, c-format #, c-format
msgid "failed to retrieve some files\n" msgid "failed to retrieve some files\n"
msgstr "neuspjelo primanje nekin datoteka\n" msgstr "neuspjelo primanje nekin datoteka\n"
#: lib/libalpm/dload.c:1078 #: lib/libalpm/dload.c:1384
#, c-format #, c-format
msgid "download completed successfully but no file in the cache\n" msgid "download completed successfully but no file in the cache\n"
msgstr "" msgstr ""
@ -690,12 +725,12 @@ msgstr ""
msgid "unexpected error" msgid "unexpected error"
msgstr "neočekivana greška" msgstr "neočekivana greška"
#: lib/libalpm/handle.c:142 #: lib/libalpm/handle.c:165
#, c-format #, c-format
msgid "lock file missing %s\n" msgid "lock file missing %s\n"
msgstr "datoteka za zaključavanje nedostaje %s\n" msgstr "datoteka za zaključavanje nedostaje %s\n"
#: lib/libalpm/handle.c:148 #: lib/libalpm/handle.c:171
#, c-format #, c-format
msgid "could not remove lock file %s\n" msgid "could not remove lock file %s\n"
msgstr "ne mogu ukloniti datoteku za zaključavanje %s\n" msgstr "ne mogu ukloniti datoteku za zaključavanje %s\n"
@ -777,7 +812,7 @@ msgstr "ne mogu otvoriti direktorij: %s: %s\n"
msgid "could not open file: %s%s: %s\n" msgid "could not open file: %s%s: %s\n"
msgstr "" msgstr ""
#: lib/libalpm/hook.c:595 lib/libalpm/util.c:260 #: lib/libalpm/hook.c:595 lib/libalpm/util.c:279
#, c-format #, c-format
msgid "could not stat file %s: %s\n" msgid "could not stat file %s: %s\n"
msgstr "ne mogu odrediti pojedinosti datoteke %s: %s\n" msgstr "ne mogu odrediti pojedinosti datoteke %s: %s\n"
@ -787,11 +822,43 @@ msgstr "ne mogu odrediti pojedinosti datoteke %s: %s\n"
msgid "could not read directory: %s: %s\n" msgid "could not read directory: %s: %s\n"
msgstr "ne mogu čitati direktorij: %s: %s\n" msgstr "ne mogu čitati direktorij: %s: %s\n"
#: lib/libalpm/package.c:598 #: lib/libalpm/package.c:614
#, c-format #, c-format
msgid "could not fully load metadata for package %s-%s\n" msgid "could not fully load metadata for package %s-%s\n"
msgstr "ne mogu skroz učitati metapodatke za oaket %s-%s\n" msgstr "ne mogu skroz učitati metapodatke za oaket %s-%s\n"
#: lib/libalpm/package.c:869
#, c-format
msgid "invalid package metadata (name or version missing)"
msgstr ""
#: lib/libalpm/package.c:874
#, c-format
msgid ""
"invalid metadata for package %s-%s (package name cannot start with '.' or "
"'-')\n"
msgstr ""
#: lib/libalpm/package.c:878
#, c-format
msgid ""
"invalid metadata for package %s-%s (package name contains invalid "
"characters)\n"
msgstr ""
#: lib/libalpm/package.c:885 lib/libalpm/package.c:889
#, c-format
msgid ""
"invalid metadata for package %s-%s (package version contains invalid "
"characters)\n"
msgstr ""
#: lib/libalpm/package.c:895
#, c-format
msgid ""
"invalid metadata for package %s-%s (package name and version too long)\n"
msgstr ""
#: lib/libalpm/remove.c:111 #: lib/libalpm/remove.c:111
#, c-format #, c-format
msgid "could not find %s in database -- skipping\n" msgid "could not find %s in database -- skipping\n"
@ -812,19 +879,19 @@ msgstr "ne mogu ukloniti datoteku %s': %s\n"
msgid "could not backup %s due to PATH_MAX overflow\n" msgid "could not backup %s due to PATH_MAX overflow\n"
msgstr "" msgstr ""
#: lib/libalpm/remove.c:554 #: lib/libalpm/remove.c:570
#, c-format #, c-format
msgid "cannot remove %s (%s)\n" msgid "cannot remove %s (%s)\n"
msgstr "" msgstr ""
"ne mogu ukloniti %s (%s)\n" "ne mogu ukloniti %s (%s)\n"
"\n" "\n"
#: lib/libalpm/remove.c:727 #: lib/libalpm/remove.c:743
#, c-format #, c-format
msgid "could not remove database entry %s-%s\n" msgid "could not remove database entry %s-%s\n"
msgstr "ne mogu ukloniti unos baze podataka %s-%s\n" msgstr "ne mogu ukloniti unos baze podataka %s-%s\n"
#: lib/libalpm/remove.c:732 #: lib/libalpm/remove.c:748
#, c-format #, c-format
msgid "could not remove entry '%s' from cache\n" msgid "could not remove entry '%s' from cache\n"
msgstr "ne mogu ukloniti unos '%s' iz cachea\n" msgstr "ne mogu ukloniti unos '%s' iz cachea\n"
@ -834,91 +901,91 @@ msgstr "ne mogu ukloniti unos '%s' iz cachea\n"
msgid "Public keyring not found; have you run '%s'?\n" msgid "Public keyring not found; have you run '%s'?\n"
msgstr "" msgstr ""
#: lib/libalpm/signing.c:199 lib/libalpm/signing.c:767 #: lib/libalpm/signing.c:199 lib/libalpm/signing.c:773
#, c-format #, c-format
msgid "GPGME error: %s\n" msgid "GPGME error: %s\n"
msgstr "GPGME greška: %s\n" msgstr "GPGME greška: %s\n"
#: lib/libalpm/signing.c:274 #: lib/libalpm/signing.c:275
#, c-format #, c-format
msgid "looking up key %s using WKD\n" msgid "looking up key %s using WKD\n"
msgstr "" msgstr ""
#: lib/libalpm/signing.c:283 #: lib/libalpm/signing.c:289
#, c-format #, c-format
msgid "gpg error: %s\n" msgid "gpg error: %s\n"
msgstr "gpg greška: %s\n" msgstr "gpg greška: %s\n"
#: lib/libalpm/signing.c:430 lib/libalpm/signing.c:503 #: lib/libalpm/signing.c:440 lib/libalpm/signing.c:513
#, c-format #, c-format
msgid "keyring is not writable\n" msgid "keyring is not writable\n"
msgstr "" msgstr ""
#: lib/libalpm/signing.c:531 #: lib/libalpm/signing.c:537
#, c-format #, c-format
msgid "key \"%s\" on keyserver\n" msgid "key \"%s\" on keyserver\n"
msgstr "" msgstr ""
#: lib/libalpm/signing.c:536 #: lib/libalpm/signing.c:542
#, c-format #, c-format
msgid "key \"%s\" could not be imported\n" msgid "key \"%s\" could not be imported\n"
msgstr "" msgstr ""
#: lib/libalpm/signing.c:540 #: lib/libalpm/signing.c:546
#, c-format #, c-format
msgid "key \"%s\" could not be looked up remotely\n" msgid "key \"%s\" could not be looked up remotely\n"
msgstr "" msgstr ""
#: lib/libalpm/signing.c:926 lib/libalpm/sync.c:1022 #: lib/libalpm/signing.c:932 lib/libalpm/sync.c:1052
#, c-format #, c-format
msgid "%s: missing required signature\n" msgid "%s: missing required signature\n"
msgstr "" msgstr ""
"%s: nedostaje potrebni potpis\n" "%s: nedostaje potrebni potpis\n"
"\n" "\n"
#: lib/libalpm/signing.c:941 #: lib/libalpm/signing.c:947
#, c-format #, c-format
msgid "%s: signature from \"%s\" is marginal trust\n" msgid "%s: signature from \"%s\" is marginal trust\n"
msgstr "" msgstr ""
#: lib/libalpm/signing.c:949 #: lib/libalpm/signing.c:955
#, c-format #, c-format
msgid "%s: signature from \"%s\" is unknown trust\n" msgid "%s: signature from \"%s\" is unknown trust\n"
msgstr "" msgstr ""
#: lib/libalpm/signing.c:956 #: lib/libalpm/signing.c:962
#, c-format #, c-format
msgid "%s: signature from \"%s\" should never be trusted\n" msgid "%s: signature from \"%s\" should never be trusted\n"
msgstr "" msgstr ""
#: lib/libalpm/signing.c:968 #: lib/libalpm/signing.c:974
#, c-format #, c-format
msgid "%s: key \"%s\" is unknown\n" msgid "%s: key \"%s\" is unknown\n"
msgstr "%s: ključ \"%s\" je nepoznat\n" msgstr "%s: ključ \"%s\" je nepoznat\n"
#: lib/libalpm/signing.c:977 #: lib/libalpm/signing.c:983
#, c-format #, c-format
msgid "%s: key \"%s\" is disabled\n" msgid "%s: key \"%s\" is disabled\n"
msgstr "%s: ključ \"%s\" je onemogućen\n" msgstr "%s: ključ \"%s\" je onemogućen\n"
#: lib/libalpm/signing.c:981 #: lib/libalpm/signing.c:987
#, c-format #, c-format
msgid "%s: signature from \"%s\" is expired\n" msgid "%s: signature from \"%s\" is expired\n"
msgstr "" msgstr ""
#: lib/libalpm/signing.c:985 #: lib/libalpm/signing.c:991
#, c-format #, c-format
msgid "%s: signature from \"%s\" is invalid\n" msgid "%s: signature from \"%s\" is invalid\n"
msgstr "" msgstr ""
#: lib/libalpm/signing.c:1043 lib/libalpm/signing.c:1104 #: lib/libalpm/signing.c:1049 lib/libalpm/signing.c:1110
#: lib/libalpm/signing.c:1183 #: lib/libalpm/signing.c:1189
#, c-format #, c-format
msgid "%s: signature format error\n" msgid "%s: signature format error\n"
msgstr "%s: greška formata potpisa\n" msgstr "%s: greška formata potpisa\n"
#: lib/libalpm/signing.c:1136 lib/libalpm/signing.c:1169 #: lib/libalpm/signing.c:1142 lib/libalpm/signing.c:1175
#: lib/libalpm/signing.c:1177 #: lib/libalpm/signing.c:1183
#, c-format #, c-format
msgid "%s: unsupported signature format\n" msgid "%s: unsupported signature format\n"
msgstr "%s: nepodržani format potpisa\n" msgstr "%s: nepodržani format potpisa\n"
@ -955,117 +1022,122 @@ msgstr "ignoriram zamjenu paketa (%s-%s => %s-%s)\n"
msgid "cannot replace %s by %s\n" msgid "cannot replace %s by %s\n"
msgstr "ne mogu zamjeniti %s sa %s\n" msgstr "ne mogu zamjeniti %s sa %s\n"
#: lib/libalpm/sync.c:476 #: lib/libalpm/sync.c:477
#, c-format #, c-format
msgid "packages %s and %s have the same filename: %s\n" msgid "packages %s and %s have the same filename: %s\n"
msgstr "" msgstr ""
#: lib/libalpm/sync.c:542 lib/libalpm/sync.c:612 #: lib/libalpm/sync.c:546 lib/libalpm/sync.c:618
#, c-format #, c-format
msgid "unresolvable package conflicts detected\n" msgid "unresolvable package conflicts detected\n"
msgstr "otkriveni su nerješivi sukobi paketa\n" msgstr "otkriveni su nerješivi sukobi paketa\n"
#: lib/libalpm/sync.c:562 #: lib/libalpm/sync.c:566
#, c-format #, c-format
msgid "removing '%s' from target list because it conflicts with '%s'\n" msgid "removing '%s-%s' from target list because it conflicts with '%s-%s'\n"
msgstr "uklanjam '%s' sa liste mete jer se sukobljava sa '%s'\n" msgstr ""
#: lib/libalpm/sync.c:1036 #: lib/libalpm/sync.c:1020 lib/libalpm/sync.c:1187
#, c-format
msgid "%s: could not find package in cache\n"
msgstr ""
#: lib/libalpm/sync.c:1066
#, c-format #, c-format
msgid "failed to read file %s: %s\n" msgid "failed to read file %s: %s\n"
msgstr "" msgstr ""
#: lib/libalpm/sync.c:1223 #: lib/libalpm/sync.c:1324
#, c-format #, c-format
msgid "not enough free disk space\n" msgid "not enough free disk space\n"
msgstr "nema dovoljno slobodnog prostora\n" msgstr "nema dovoljno slobodnog prostora\n"
#: lib/libalpm/sync.c:1245 #: lib/libalpm/sync.c:1346
#, c-format #, c-format
msgid "could not commit removal transaction\n" msgid "could not commit removal transaction\n"
msgstr "ne mogu izvršiti transakciju uklanjanja\n" msgstr "ne mogu izvršiti transakciju uklanjanja\n"
#: lib/libalpm/sync.c:1253 #: lib/libalpm/sync.c:1354
#, c-format #, c-format
msgid "could not commit transaction\n" msgid "could not commit transaction\n"
msgstr "ne mogu izvršiti transakciju\n" msgstr "ne mogu izvršiti transakciju\n"
#: lib/libalpm/trans.c:365 #: lib/libalpm/trans.c:369
#, c-format #, c-format
msgid "could not create temp directory\n" msgid "could not create temp directory\n"
msgstr "ne mogu napraviti privremeni direktorij\n" msgstr "ne mogu napraviti privremeni direktorij\n"
#: lib/libalpm/trans.c:380 #: lib/libalpm/trans.c:384
#, c-format #, c-format
msgid "could not copy tempfile to %s (%s)\n" msgid "could not copy tempfile to %s (%s)\n"
msgstr "ne mogu kopirati privremenu datoteku u %s (%s)\n" msgstr "ne mogu kopirati privremenu datoteku u %s (%s)\n"
#: lib/libalpm/trans.c:411 #: lib/libalpm/trans.c:415
#, c-format #, c-format
msgid "could not remove %s\n" msgid "could not remove %s\n"
msgstr "ne mogu ukloniti %s\n" msgstr "ne mogu ukloniti %s\n"
#: lib/libalpm/trans.c:415 #: lib/libalpm/trans.c:419
#, c-format #, c-format
msgid "could not remove tmpdir %s\n" msgid "could not remove tmpdir %s\n"
msgstr "ne mogu ukloniti privremeni direktorij %s\n" msgstr "ne mogu ukloniti privremeni direktorij %s\n"
#: lib/libalpm/util.c:488 #: lib/libalpm/util.c:512
#, c-format #, c-format
msgid "unable to write to pipe (%s)\n" msgid "unable to write to pipe (%s)\n"
msgstr "ne mogu pisati u cijev (%s)\n" msgstr "ne mogu pisati u cijev (%s)\n"
#: lib/libalpm/util.c:547 #: lib/libalpm/util.c:571
#, c-format #, c-format
msgid "unable to read from pipe (%s)\n" msgid "unable to read from pipe (%s)\n"
msgstr "ne mogu čitati iz cijevi (%s)\n" msgstr "ne mogu čitati iz cijevi (%s)\n"
#: lib/libalpm/util.c:617 lib/libalpm/util.c:623 #: lib/libalpm/util.c:641 lib/libalpm/util.c:647
#, c-format #, c-format
msgid "could not create pipe (%s)\n" msgid "could not create pipe (%s)\n"
msgstr "ne mogu napraviti cijev (%s)\n" msgstr "ne mogu napraviti cijev (%s)\n"
#: lib/libalpm/util.c:631 #: lib/libalpm/util.c:655
#, c-format #, c-format
msgid "could not fork a new process (%s)\n" msgid "could not fork a new process (%s)\n"
msgstr "ne mogu račvati novi proces (%s)\n" msgstr "ne mogu račvati novi proces (%s)\n"
#: lib/libalpm/util.c:654 #: lib/libalpm/util.c:680
#, c-format #, c-format
msgid "could not change the root directory (%s)\n" msgid "could not change the root directory (%s)\n"
msgstr "ne mogu promjeniti korjenski/root direktorij (%s)\n" msgstr "ne mogu promjeniti korjenski/root direktorij (%s)\n"
#: lib/libalpm/util.c:666 #: lib/libalpm/util.c:700
#, c-format #, c-format
msgid "call to execv failed (%s)\n" msgid "call to execv failed (%s)\n"
msgstr "poziv procesa izvršavanja nije uspio (%s)\n" msgstr "poziv procesa izvršavanja nije uspio (%s)\n"
#: lib/libalpm/util.c:745 #: lib/libalpm/util.c:779
#, c-format #, c-format
msgid "call to waitpid failed (%s)\n" msgid "call to waitpid failed (%s)\n"
msgstr "poziv procesa čekanja nije uspio (%s)\n" msgstr "poziv procesa čekanja nije uspio (%s)\n"
#: lib/libalpm/util.c:755 #: lib/libalpm/util.c:789
#, c-format #, c-format
msgid "command failed to execute correctly\n" msgid "command failed to execute correctly\n"
msgstr "neuspjelo ispravno izvršenje naredbe\n" msgstr "neuspjelo ispravno izvršenje naredbe\n"
#: lib/libalpm/util.c:762 #: lib/libalpm/util.c:796
#, c-format #, c-format
msgid "Unknown signal" msgid "Unknown signal"
msgstr "Nepoznati signal" msgstr "Nepoznati signal"
#: lib/libalpm/util.c:764 #: lib/libalpm/util.c:798
#, c-format #, c-format
msgid "command terminated by signal %d: %s\n" msgid "command terminated by signal %d: %s\n"
msgstr "naredba prekinuta signalom %d: %s\n" msgstr "naredba prekinuta signalom %d: %s\n"
#: lib/libalpm/util.c:875 #: lib/libalpm/util.c:916
#, c-format #, c-format
msgid "no %s cache exists, creating...\n" msgid "no %s cache exists, creating...\n"
msgstr "%s cache ne postoji, pravim...\n" msgstr "%s cache ne postoji, pravim...\n"
#: lib/libalpm/util.c:906 #: lib/libalpm/util.c:947
#, c-format #, c-format
msgid "couldn't find or create package cache, using %s instead\n" msgid "couldn't find or create package cache, using %s instead\n"
msgstr "ne mogu naći ili napraviti cache paketa, koristim %s umjesto toga\n" msgstr "ne mogu naći ili napraviti cache paketa, koristim %s umjesto toga\n"

View file

@ -3,7 +3,8 @@
# This file is distributed under the same license as the libalpm package. # This file is distributed under the same license as the libalpm package.
# #
# Translators: # Translators:
# Ács Zoltán <acszoltan111@gmail.com>, 2021 # Ács Zoltán, 2021
# Ács Zoltán, 2021
# Balló György <ballogyor@gmail.com>, 2014 # Balló György <ballogyor@gmail.com>, 2014
# Balló György <ballogyor@gmail.com>, 2011,2014,2016 # Balló György <ballogyor@gmail.com>, 2011,2014,2016
# Gábor Nagy <ngaba@bibl.u-szeged.hu>, 2011,2013 # Gábor Nagy <ngaba@bibl.u-szeged.hu>, 2011,2013
@ -19,11 +20,11 @@
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Arch Linux Pacman package manager\n" "Project-Id-Version: Arch Linux Pacman package manager\n"
"Report-Msgid-Bugs-To: http://bugs.archlinux.org/index.php?project=3\n" "Report-Msgid-Bugs-To: https://gitlab.archlinux.org/pacman/pacman/-/issues\n"
"POT-Creation-Date: 2021-09-04 16:15+1000\n" "POT-Creation-Date: 2024-07-14 19:10+1000\n"
"PO-Revision-Date: 2021-06-19 17:38+0000\n" "PO-Revision-Date: 2010-11-29 23:17+0000\n"
"Last-Translator: Ács Zoltán <acszoltan111@gmail.com>\n" "Last-Translator: user14 <nleknh@gmail.com>, 2019\n"
"Language-Team: Hungarian (http://www.transifex.com/toofishes/archlinux-" "Language-Team: Hungarian (http://app.transifex.com/toofishes/archlinux-"
"pacman/language/hu/)\n" "pacman/language/hu/)\n"
"Language: hu\n" "Language: hu\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
@ -51,17 +52,17 @@ msgstr "visszatérés egy régebbi %s verzióhoz (%s => %s)\n"
msgid "cannot allocate disk archive object" msgid "cannot allocate disk archive object"
msgstr "az archív objektum nem foglalható le a lemezen" msgstr "az archív objektum nem foglalható le a lemezen"
#: lib/libalpm/add.c:143 lib/libalpm/util.c:384 #: lib/libalpm/add.c:143 lib/libalpm/util.c:408
#, c-format #, c-format
msgid "warning given when extracting %s (%s)\n" msgid "warning given when extracting %s (%s)\n"
msgstr "figyelmeztetés a(z) %s kibontása közben (%s)\n" msgstr "figyelmeztetés a(z) %s kibontása közben (%s)\n"
#: lib/libalpm/add.c:146 lib/libalpm/util.c:387 #: lib/libalpm/add.c:146 lib/libalpm/util.c:411
#, c-format #, c-format
msgid "could not extract %s (%s)\n" msgid "could not extract %s (%s)\n"
msgstr "nem sikerült kibontani: %s (%s)\n" msgstr "nem sikerült kibontani: %s (%s)\n"
#: lib/libalpm/add.c:159 lib/libalpm/dload.c:709 lib/libalpm/remove.c:534 #: lib/libalpm/add.c:159 lib/libalpm/dload.c:707 lib/libalpm/remove.c:550
#, c-format #, c-format
msgid "could not rename %s to %s (%s)\n" msgid "could not rename %s to %s (%s)\n"
msgstr "nem sikerült az átnevezés: %s -> %s (%s)\n" msgstr "nem sikerült az átnevezés: %s -> %s (%s)\n"
@ -105,18 +106,18 @@ msgstr "kibontás: nem írok felül könyvtárat a %s fájllal\n"
msgid "unable to extract %s.pacnew: path too long" msgid "unable to extract %s.pacnew: path too long"
msgstr "%s.pacnew kibontása nem sikerült: az útvonal túl hosszú" msgstr "%s.pacnew kibontása nem sikerült: az útvonal túl hosszú"
#: lib/libalpm/add.c:510 lib/libalpm/util.c:335 lib/libalpm/util.c:600 #: lib/libalpm/add.c:510 lib/libalpm/util.c:354 lib/libalpm/util.c:624
#, c-format #, c-format
msgid "could not get current working directory\n" msgid "could not get current working directory\n"
msgstr "a jelenlegi munkakönyvtár nem kapható meg\n" msgstr "a jelenlegi munkakönyvtár nem kapható meg\n"
#: lib/libalpm/add.c:515 lib/libalpm/util.c:340 lib/libalpm/util.c:605 #: lib/libalpm/add.c:515 lib/libalpm/util.c:359 lib/libalpm/util.c:629
#: lib/libalpm/util.c:658 #: lib/libalpm/util.c:684
#, c-format #, c-format
msgid "could not change directory to %s (%s)\n" msgid "could not change directory to %s (%s)\n"
msgstr "nem sikerült a könyvtárváltás ide: %s (%s)\n" msgstr "nem sikerült a könyvtárváltás ide: %s (%s)\n"
#: lib/libalpm/add.c:571 lib/libalpm/util.c:405 lib/libalpm/util.c:774 #: lib/libalpm/add.c:571 lib/libalpm/util.c:429 lib/libalpm/util.c:808
#, c-format #, c-format
msgid "could not restore working directory (%s)\n" msgid "could not restore working directory (%s)\n"
msgstr "nem sikerült visszalépni a munkakönyvárba (%s)\n" msgstr "nem sikerült visszalépni a munkakönyvárba (%s)\n"
@ -141,101 +142,116 @@ msgstr "nem sikerült a(z) %s-%s adatbázis-bejegyzés frissítése\n"
msgid "could not add entry '%s' in cache\n" msgid "could not add entry '%s' in cache\n"
msgstr "nem sikerült a(z) '%s' bejegyzés hozzáadása a gyorsítótárhoz\n" msgstr "nem sikerült a(z) '%s' bejegyzés hozzáadása a gyorsítótárhoz\n"
#: lib/libalpm/be_local.c:266 #: lib/libalpm/be_local.c:271
#, c-format #, c-format
msgid "error while reading file %s: %s\n" msgid "error while reading file %s: %s\n"
msgstr "hiba a %s fájl olvasása közben: %s\n" msgstr "hiba a %s fájl olvasása közben: %s\n"
#: lib/libalpm/be_local.c:376 #: lib/libalpm/be_local.c:382
#, c-format #, c-format
msgid "removing invalid database: %s\n" msgid "removing invalid database: %s\n"
msgstr "hibás adatbázis eltávolítása: %s\n" msgstr "hibás adatbázis eltávolítása: %s\n"
#: lib/libalpm/be_local.c:427 lib/libalpm/be_local.c:909 #: lib/libalpm/be_local.c:433 lib/libalpm/be_local.c:947
#, c-format #, c-format
msgid "could not create directory %s: %s\n" msgid "could not create directory %s: %s\n"
msgstr "nem sikerült létrehozni a %s könyvtárat: %s\n" msgstr "nem sikerült létrehozni a %s könyvtárat: %s\n"
#: lib/libalpm/be_local.c:602 lib/libalpm/be_sync.c:322 #: lib/libalpm/be_local.c:608 lib/libalpm/be_sync.c:339
#, c-format #, c-format
msgid "invalid name for database entry '%s'\n" msgid "invalid name for database entry '%s'\n"
msgstr "hibás név a(z) '%s' adatbázis-bejegyzés számára\n" msgstr "hibás név a(z) '%s' adatbázis-bejegyzés számára\n"
#: lib/libalpm/be_local.c:610 #: lib/libalpm/be_local.c:616
#, c-format #, c-format
msgid "duplicated database entry '%s'\n" msgid "duplicated database entry '%s'\n"
msgstr "duplikált adatbázis-bejegyzés: '%s'\n" msgstr "duplikált adatbázis-bejegyzés: '%s'\n"
#: lib/libalpm/be_local.c:622 #: lib/libalpm/be_local.c:628
#, c-format #, c-format
msgid "corrupted database entry '%s'\n" msgid "corrupted database entry '%s'\n"
msgstr "sérült adatbázis-bejegyzés: '%s'\n" msgstr "sérült adatbázis-bejegyzés: '%s'\n"
#: lib/libalpm/be_local.c:722 lib/libalpm/be_local.c:818 #: lib/libalpm/be_local.c:663
#: lib/libalpm/be_local.c:958 lib/libalpm/be_local.c:1055 #, c-format
#: lib/libalpm/diskspace.c:131 lib/libalpm/dload.c:823 lib/libalpm/util.c:254 msgid "unknown install reason for package %s: %s\n"
#: lib/libalpm/util.c:270 msgstr ""
#: lib/libalpm/be_local.c:743 lib/libalpm/be_local.c:856
#: lib/libalpm/be_local.c:996 lib/libalpm/be_local.c:1102
#: lib/libalpm/diskspace.c:135 lib/libalpm/dload.c:792 lib/libalpm/util.c:273
#: lib/libalpm/util.c:289
#, c-format #, c-format
msgid "could not open file %s: %s\n" msgid "could not open file %s: %s\n"
msgstr "nem sikerült megnyitni a %s fájlt: %s\n" msgstr "nem sikerült megnyitni a %s fájlt: %s\n"
#: lib/libalpm/be_local.c:738 lib/libalpm/be_sync.c:582 #: lib/libalpm/be_local.c:759 lib/libalpm/be_sync.c:612
#, c-format #, c-format
msgid "%s database is inconsistent: name mismatch on package %s\n" msgid "%s database is inconsistent: name mismatch on package %s\n"
msgstr "a(z) %s adatbázis inkonzisztens: eltérő nevek a(z) %s csomagnál\n" msgstr "a(z) %s adatbázis inkonzisztens: eltérő nevek a(z) %s csomagnál\n"
#: lib/libalpm/be_local.c:744 lib/libalpm/be_sync.c:588 #: lib/libalpm/be_local.c:765 lib/libalpm/be_sync.c:618
#, c-format #, c-format
msgid "%s database is inconsistent: version mismatch on package %s\n" msgid "%s database is inconsistent: version mismatch on package %s\n"
msgstr "a(z) %s adatbázis inkonzisztens: eltérő verziók a(z) %s csomagnál\n" msgstr "a(z) %s adatbázis inkonzisztens: eltérő verziók a(z) %s csomagnál\n"
#: lib/libalpm/be_local.c:785 #: lib/libalpm/be_local.c:806
#, c-format #, c-format
msgid "unknown validation type for package %s: %s\n" msgid "unknown validation type for package %s: %s\n"
msgstr "ismeretlen érvényességellenőrzési mód a(z) %s csomaghoz: %s\n" msgstr "ismeretlen érvényességellenőrzési mód a(z) %s csomaghoz: %s\n"
#: lib/libalpm/be_package.c:478 lib/libalpm/be_package.c:631 #: lib/libalpm/be_local.c:841
#: lib/libalpm/be_package.c:643 #, c-format
msgid "%s: unknown key '%s' in local database\n"
msgstr ""
#: lib/libalpm/be_package.c:255
#, c-format
msgid "%s: unknown key '%s' in package description\n"
msgstr ""
#: lib/libalpm/be_package.c:482 lib/libalpm/be_package.c:635
#: lib/libalpm/be_package.c:647
#, c-format #, c-format
msgid "error while reading package %s: %s\n" msgid "error while reading package %s: %s\n"
msgstr "hiba a(z) %s csomag olvasása közben: %s\n" msgstr "hiba a(z) %s csomag olvasása közben: %s\n"
#: lib/libalpm/be_package.c:491 lib/libalpm/be_package.c:514 #: lib/libalpm/be_package.c:495 lib/libalpm/be_package.c:518
#, c-format #, c-format
msgid "error while reading mtree of package %s: %s\n" msgid "error while reading mtree of package %s: %s\n"
msgstr "hiba a(z) %s csomag mtree adatának olvasása közben: %s\n" msgstr "hiba a(z) %s csomag mtree adatának olvasása közben: %s\n"
#: lib/libalpm/be_package.c:597 #: lib/libalpm/be_package.c:601
#, c-format #, c-format
msgid "could not parse package description file in %s\n" msgid "could not parse package description file in %s\n"
msgstr "nem sikerült értelmezni a(z) %s csomagleíró fájlját\n" msgstr "nem sikerült értelmezni a(z) %s csomagleíró fájlját\n"
#: lib/libalpm/be_package.c:602 #: lib/libalpm/be_package.c:606
#, c-format #, c-format
msgid "missing package name in %s\n" msgid "missing package name in %s\n"
msgstr "hiányzó csomagnév: %s\n" msgstr "hiányzó csomagnév: %s\n"
#: lib/libalpm/be_package.c:606 #: lib/libalpm/be_package.c:610
#, c-format #, c-format
msgid "missing package version in %s\n" msgid "missing package version in %s\n"
msgstr "hiányzó csomagverzió: %s\n" msgstr "hiányzó csomagverzió: %s\n"
#: lib/libalpm/be_package.c:610 #: lib/libalpm/be_package.c:614
#, c-format #, c-format
msgid "invalid package version in %s\n" msgid "invalid package version in %s\n"
msgstr "érvénytelen csomagverzió: %s\n" msgstr "érvénytelen csomagverzió: %s\n"
#: lib/libalpm/be_package.c:649 #: lib/libalpm/be_package.c:653
#, c-format #, c-format
msgid "missing package metadata in %s\n" msgid "missing package metadata in %s\n"
msgstr "hiányzó csomaginformációs fájl: %s\n" msgstr "hiányzó csomaginformációs fájl: %s\n"
#: lib/libalpm/be_package.c:741 #: lib/libalpm/be_package.c:745
#, c-format #, c-format
msgid "failed to read signature file: %s\n" msgid "failed to read signature file: %s\n"
msgstr "nem sikerült olvasni a %s aláírásfájlt\n" msgstr "nem sikerült olvasni a %s aláírásfájlt\n"
#: lib/libalpm/be_package.c:770 lib/libalpm/sync.c:953 #: lib/libalpm/be_package.c:768 lib/libalpm/sync.c:976
#, c-format #, c-format
msgid "required key missing from keyring\n" msgid "required key missing from keyring\n"
msgstr "egy szükséges kulcs hiányzik a kulcstartóból\n" msgstr "egy szükséges kulcs hiányzik a kulcstartóból\n"
@ -245,35 +261,40 @@ msgstr "egy szükséges kulcs hiányzik a kulcstartóból\n"
msgid "removing invalid file: %s\n" msgid "removing invalid file: %s\n"
msgstr "hibás fájl eltávolítása: %s\n" msgstr "hibás fájl eltávolítása: %s\n"
#: lib/libalpm/be_sync.c:449 #: lib/libalpm/be_sync.c:471
#, c-format #, c-format
msgid "could not parse package description file '%s' from db '%s'\n" msgid "could not parse package description file '%s' from db '%s'\n"
msgstr "" msgstr ""
"nem sikerült értelmezni a(z) '%s' csomagleíró fájlját a(z) '%s' " "nem sikerült értelmezni a(z) '%s' csomagleíró fájlját a(z) '%s' "
"adatbázisból\n" "adatbázisból\n"
#: lib/libalpm/be_sync.c:456 #: lib/libalpm/be_sync.c:486
#, c-format #, c-format
msgid "could not read db '%s' (%s)\n" msgid "could not read db '%s' (%s)\n"
msgstr "(%s) nem lehetett olvasni a(z) '%s' adatbázist\n" msgstr "(%s) nem lehetett olvasni a(z) '%s' adatbázist\n"
#: lib/libalpm/be_sync.c:489 lib/libalpm/be_sync.c:494 #: lib/libalpm/be_sync.c:519 lib/libalpm/be_sync.c:524
#, c-format #, c-format
msgid "%s database is inconsistent: filename of package %s is illegal\n" msgid "%s database is inconsistent: filename of package %s is illegal\n"
msgstr "" msgstr ""
"a(z) %s adatbázis inkonzisztens: a(z) %s csomag fájlneve nem megengedett\n" "a(z) %s adatbázis inkonzisztens: a(z) %s csomag fájlneve nem megengedett\n"
#: lib/libalpm/be_sync.c:499 #: lib/libalpm/be_sync.c:529
#, c-format #, c-format
msgid "%s database is inconsistent: filename of package %s is too long\n" msgid "%s database is inconsistent: filename of package %s is too long\n"
msgstr "a(z) %s adatbázis inkonzisztens: a(z) %s csomag fáljneve túl hosszú\n" msgstr "a(z) %s adatbázis inkonzisztens: a(z) %s csomag fáljneve túl hosszú\n"
#: lib/libalpm/be_sync.c:564 #: lib/libalpm/be_sync.c:594
#, c-format #, c-format
msgid "unknown database file: %s\n" msgid "unknown database file: %s\n"
msgstr "ismeretlen adatbázisfájl: %s\n" msgstr "ismeretlen adatbázisfájl: %s\n"
#: lib/libalpm/db.c:344 #: lib/libalpm/be_sync.c:712
#, c-format
msgid "%s: unknown key '%s' in sync database\n"
msgstr ""
#: lib/libalpm/db.c:413
#, c-format #, c-format
msgid "database path is undefined\n" msgid "database path is undefined\n"
msgstr "az adatbázis-útvonal nincs megadva\n" msgstr "az adatbázis-útvonal nincs megadva\n"
@ -313,107 +334,122 @@ msgstr "nem sikerült meghatározni a fájlrendszer-információt %s-hez: %s\n"
msgid "could not open file: %s: %s\n" msgid "could not open file: %s: %s\n"
msgstr "nem sikerült megnyitni a %s fájlt: %s\n" msgstr "nem sikerült megnyitni a %s fájlt: %s\n"
#: lib/libalpm/diskspace.c:146 lib/libalpm/diskspace.c:159 #: lib/libalpm/diskspace.c:154 lib/libalpm/diskspace.c:167
#, c-format #, c-format
msgid "could not get filesystem information\n" msgid "could not get filesystem information\n"
msgstr "nem sikerült meghatározni a fájlrendszer-információt\n" msgstr "nem sikerült meghatározni a fájlrendszer-információt\n"
#: lib/libalpm/diskspace.c:242 #: lib/libalpm/diskspace.c:254
#, c-format #, c-format
msgid "could not get file information for %s\n" msgid "could not get file information for %s\n"
msgstr "nem szerezhető fájlinformáció ehhez: %s\n" msgstr "nem szerezhető fájlinformáció ehhez: %s\n"
#: lib/libalpm/diskspace.c:256 lib/libalpm/diskspace.c:315 #: lib/libalpm/diskspace.c:268 lib/libalpm/diskspace.c:327
#, c-format #, c-format
msgid "could not determine mount point for file %s\n" msgid "could not determine mount point for file %s\n"
msgstr "nem sikerült meghatározni a csatolási pontot a %s fájlhoz\n" msgstr "nem sikerült meghatározni a csatolási pontot a %s fájlhoz\n"
#: lib/libalpm/diskspace.c:354 #: lib/libalpm/diskspace.c:366
#, c-format #, c-format
msgid "Partition %s too full: %jd blocks needed, %ju blocks free\n" msgid "Partition %s too full: %jd blocks needed, %ju blocks free\n"
msgstr "" msgstr ""
"A(z) %s partició túlságosan tele van: %jd blokk szükséges, %ju blokk szabad\n" "A(z) %s partició túlságosan tele van: %jd blokk szükséges, %ju blokk szabad\n"
#: lib/libalpm/diskspace.c:379 lib/libalpm/diskspace.c:433 #: lib/libalpm/diskspace.c:391 lib/libalpm/diskspace.c:445
#, c-format #, c-format
msgid "could not determine filesystem mount points\n" msgid "could not determine filesystem mount points\n"
msgstr "nem sikerült meghatározni a csatolási pontokat\n" msgstr "nem sikerült meghatározni a csatolási pontokat\n"
#: lib/libalpm/diskspace.c:385 #: lib/libalpm/diskspace.c:397
#, c-format #, c-format
msgid "could not determine cachedir mount point %s\n" msgid "could not determine cachedir mount point %s\n"
msgstr "" msgstr ""
"nem sikerült meghatározni a %s csomaggyorsítótár-könyvtár csatolási pontját\n" "nem sikerült meghatározni a %s csomaggyorsítótár-könyvtár csatolási pontját\n"
#: lib/libalpm/diskspace.c:438 #: lib/libalpm/diskspace.c:450
#, c-format #, c-format
msgid "could not determine root mount point %s\n" msgid "could not determine root mount point %s\n"
msgstr "nem sikerült meghatározni a %s gyökérkönyvtár csatolási pontját\n" msgstr "nem sikerült meghatározni a %s gyökérkönyvtár csatolási pontját\n"
#: lib/libalpm/diskspace.c:486 #: lib/libalpm/diskspace.c:498
#, c-format #, c-format
msgid "Partition %s is mounted read only\n" msgid "Partition %s is mounted read only\n"
msgstr "A %s partíció csak olvashatóként van csatolva\n" msgstr "A %s partíció csak olvashatóként van csatolva\n"
#: lib/libalpm/dload.c:116 #: lib/libalpm/dload.c:107
#, c-format
msgid "failed to create temporary file for download\n"
msgstr "nem sikerült létrehozni ideiglenes fájlt a letöltéshez\n"
#: lib/libalpm/dload.c:198
#, c-format #, c-format
msgid "" msgid ""
"too many errors from %s, skipping for the remainder of this transaction\n" "too many errors from %s, skipping for the remainder of this transaction\n"
msgstr "" msgstr ""
#: lib/libalpm/dload.c:220 #: lib/libalpm/dload.c:215
#, c-format
msgid "fatal error from %s, skipping for the remainder of this transaction\n"
msgstr ""
#: lib/libalpm/dload.c:310
#, c-format #, c-format
msgid "disk" msgid "disk"
msgstr "lemez" msgstr "lemez"
#: lib/libalpm/dload.c:392 #: lib/libalpm/dload.c:532 lib/libalpm/dload.c:570 lib/libalpm/dload.c:583
#, c-format
msgid "failed to create temporary file for download\n"
msgstr "nem sikerült létrehozni ideiglenes fájlt a letöltéshez\n"
#: lib/libalpm/dload.c:509 lib/libalpm/dload.c:547 lib/libalpm/dload.c:561
#, c-format #, c-format
msgid "failed retrieving file '%s' from %s : %s\n" msgid "failed retrieving file '%s' from %s : %s\n"
msgstr "nem sikerült a(z) '%s' fájlt letölteni a %s helyről : %s\n" msgstr "nem sikerült a(z) '%s' fájlt letölteni a %s helyről : %s\n"
#: lib/libalpm/dload.c:539 #: lib/libalpm/dload.c:562
#, c-format #, c-format
msgid "failed retrieving file '%s' from %s : expected download size exceeded\n" msgid "failed retrieving file '%s' from %s : expected download size exceeded\n"
msgstr "" msgstr ""
"nem sikerült a(z) '%s' fájlt letölteni a %s helyről : a várt letöltési méret " "nem sikerült a(z) '%s' fájlt letölteni a %s helyről : a várt letöltési méret "
"túlhaladva\n" "túlhaladva\n"
#: lib/libalpm/dload.c:687 #: lib/libalpm/dload.c:685
#, c-format #, c-format
msgid "%s appears to be truncated: %jd/%jd bytes\n" msgid "%s appears to be truncated: %jd/%jd bytes\n"
msgstr "úgy tűnik, hogy %s csonka: %jd/%jd bájt\n" msgstr "úgy tűnik, hogy %s csonka: %jd/%jd bájt\n"
#: lib/libalpm/dload.c:787 #: lib/libalpm/dload.c:776
#, c-format #, c-format
msgid "url '%s' is invalid\n" msgid "url '%s' is invalid\n"
msgstr "a '%s' URL hibás\n" msgstr "a '%s' URL hibás\n"
#: lib/libalpm/dload.c:893 #: lib/libalpm/dload.c:864
#, c-format #, c-format
msgid "failed to setup a download payload for %s\n" msgid "failed to setup a download payload for %s\n"
msgstr "" msgstr ""
#: lib/libalpm/dload.c:905 #: lib/libalpm/dload.c:876
#, c-format #, c-format
msgid "curl returned error %d from transfer\n" msgid "curl returned error %d from transfer\n"
msgstr "" msgstr ""
#: lib/libalpm/dload.c:929 #: lib/libalpm/dload.c:900
#, c-format #, c-format
msgid "curl transfer error: %d\n" msgid "curl transfer error: %d\n"
msgstr "" msgstr ""
#: lib/libalpm/dload.c:1055 lib/libalpm/sync.c:840 #: lib/libalpm/dload.c:963
#, c-format
msgid "could not chdir to download directory %s\n"
msgstr "nem sikerült belépni a %s letöltési könyvtárba\n"
#: lib/libalpm/dload.c:968
#, c-format
msgid "switching to sandbox user '%s' failed!\n"
msgstr ""
#: lib/libalpm/dload.c:1361 lib/libalpm/sync.c:861
#, c-format #, c-format
msgid "failed to retrieve some files\n" msgid "failed to retrieve some files\n"
msgstr "nem sikerült minden fájlt letölteni\n" msgstr "nem sikerült minden fájlt letölteni\n"
#: lib/libalpm/dload.c:1078 #: lib/libalpm/dload.c:1384
#, c-format #, c-format
msgid "download completed successfully but no file in the cache\n" msgid "download completed successfully but no file in the cache\n"
msgstr "" msgstr ""
@ -688,12 +724,12 @@ msgstr "aláírás nélkül lett lefordítva"
msgid "unexpected error" msgid "unexpected error"
msgstr "nem várt hiba" msgstr "nem várt hiba"
#: lib/libalpm/handle.c:142 #: lib/libalpm/handle.c:165
#, c-format #, c-format
msgid "lock file missing %s\n" msgid "lock file missing %s\n"
msgstr "zárolófájl hiányzik: %s\n" msgstr "zárolófájl hiányzik: %s\n"
#: lib/libalpm/handle.c:148 #: lib/libalpm/handle.c:171
#, c-format #, c-format
msgid "could not remove lock file %s\n" msgid "could not remove lock file %s\n"
msgstr "nem sikerült a zárolófájl (%s) eltávolítása\n" msgstr "nem sikerült a zárolófájl (%s) eltávolítása\n"
@ -775,7 +811,7 @@ msgstr "nem sikerült megnyitni a %s könyvtárat: %s\n"
msgid "could not open file: %s%s: %s\n" msgid "could not open file: %s%s: %s\n"
msgstr "fájl nem nyitható meg: %s%s: %s\n" msgstr "fájl nem nyitható meg: %s%s: %s\n"
#: lib/libalpm/hook.c:595 lib/libalpm/util.c:260 #: lib/libalpm/hook.c:595 lib/libalpm/util.c:279
#, c-format #, c-format
msgid "could not stat file %s: %s\n" msgid "could not stat file %s: %s\n"
msgstr "sikertelen stat művelet a %s fájlon: %s\n" msgstr "sikertelen stat művelet a %s fájlon: %s\n"
@ -785,12 +821,44 @@ msgstr "sikertelen stat művelet a %s fájlon: %s\n"
msgid "could not read directory: %s: %s\n" msgid "could not read directory: %s: %s\n"
msgstr "könyvtár nem olvasható: %s: %s\n" msgstr "könyvtár nem olvasható: %s: %s\n"
#: lib/libalpm/package.c:598 #: lib/libalpm/package.c:614
#, c-format #, c-format
msgid "could not fully load metadata for package %s-%s\n" msgid "could not fully load metadata for package %s-%s\n"
msgstr "" msgstr ""
"nem sikerült teljesen betölteni az információs fájlt a(z) %s-%s csomaghoz\n" "nem sikerült teljesen betölteni az információs fájlt a(z) %s-%s csomaghoz\n"
#: lib/libalpm/package.c:869
#, c-format
msgid "invalid package metadata (name or version missing)"
msgstr ""
#: lib/libalpm/package.c:874
#, c-format
msgid ""
"invalid metadata for package %s-%s (package name cannot start with '.' or "
"'-')\n"
msgstr ""
#: lib/libalpm/package.c:878
#, c-format
msgid ""
"invalid metadata for package %s-%s (package name contains invalid "
"characters)\n"
msgstr ""
#: lib/libalpm/package.c:885 lib/libalpm/package.c:889
#, c-format
msgid ""
"invalid metadata for package %s-%s (package version contains invalid "
"characters)\n"
msgstr ""
#: lib/libalpm/package.c:895
#, c-format
msgid ""
"invalid metadata for package %s-%s (package name and version too long)\n"
msgstr ""
#: lib/libalpm/remove.c:111 #: lib/libalpm/remove.c:111
#, c-format #, c-format
msgid "could not find %s in database -- skipping\n" msgid "could not find %s in database -- skipping\n"
@ -812,17 +880,17 @@ msgid "could not backup %s due to PATH_MAX overflow\n"
msgstr "" msgstr ""
"nem lehet biztonsági másolatot készíteni %s a PATH_MAX túlcsordulása miatt\n" "nem lehet biztonsági másolatot készíteni %s a PATH_MAX túlcsordulása miatt\n"
#: lib/libalpm/remove.c:554 #: lib/libalpm/remove.c:570
#, c-format #, c-format
msgid "cannot remove %s (%s)\n" msgid "cannot remove %s (%s)\n"
msgstr "%s nem távolítható el (%s)\n" msgstr "%s nem távolítható el (%s)\n"
#: lib/libalpm/remove.c:727 #: lib/libalpm/remove.c:743
#, c-format #, c-format
msgid "could not remove database entry %s-%s\n" msgid "could not remove database entry %s-%s\n"
msgstr "nem sikerült eltávolítani a(z) %s-%s adatbázis-bejegyzést\n" msgstr "nem sikerült eltávolítani a(z) %s-%s adatbázis-bejegyzést\n"
#: lib/libalpm/remove.c:732 #: lib/libalpm/remove.c:748
#, c-format #, c-format
msgid "could not remove entry '%s' from cache\n" msgid "could not remove entry '%s' from cache\n"
msgstr "nem sikerült eltávolítani a(z) '%s' bejegyzést a gyorsítótárból\n" msgstr "nem sikerült eltávolítani a(z) '%s' bejegyzést a gyorsítótárból\n"
@ -832,89 +900,89 @@ msgstr "nem sikerült eltávolítani a(z) '%s' bejegyzést a gyorsítótárból\
msgid "Public keyring not found; have you run '%s'?\n" msgid "Public keyring not found; have you run '%s'?\n"
msgstr "Nem található a nyilvános kulcstartó; futtattad a(z) '%s' -t?\n" msgstr "Nem található a nyilvános kulcstartó; futtattad a(z) '%s' -t?\n"
#: lib/libalpm/signing.c:199 lib/libalpm/signing.c:767 #: lib/libalpm/signing.c:199 lib/libalpm/signing.c:773
#, c-format #, c-format
msgid "GPGME error: %s\n" msgid "GPGME error: %s\n"
msgstr "GPGME hiba: %s\n" msgstr "GPGME hiba: %s\n"
#: lib/libalpm/signing.c:274 #: lib/libalpm/signing.c:275
#, c-format #, c-format
msgid "looking up key %s using WKD\n" msgid "looking up key %s using WKD\n"
msgstr "%s kulcs keresése WKD használatával\n" msgstr "%s kulcs keresése WKD használatával\n"
#: lib/libalpm/signing.c:283 #: lib/libalpm/signing.c:289
#, c-format #, c-format
msgid "gpg error: %s\n" msgid "gpg error: %s\n"
msgstr "gpg hiba: %s\n" msgstr "gpg hiba: %s\n"
#: lib/libalpm/signing.c:430 lib/libalpm/signing.c:503 #: lib/libalpm/signing.c:440 lib/libalpm/signing.c:513
#, c-format #, c-format
msgid "keyring is not writable\n" msgid "keyring is not writable\n"
msgstr "a kulcstartó nem írható\n" msgstr "a kulcstartó nem írható\n"
#: lib/libalpm/signing.c:531 #: lib/libalpm/signing.c:537
#, c-format #, c-format
msgid "key \"%s\" on keyserver\n" msgid "key \"%s\" on keyserver\n"
msgstr "a kulcszerveren a \"%s\" kulcs\n" msgstr "a kulcszerveren a \"%s\" kulcs\n"
#: lib/libalpm/signing.c:536 #: lib/libalpm/signing.c:542
#, c-format #, c-format
msgid "key \"%s\" could not be imported\n" msgid "key \"%s\" could not be imported\n"
msgstr "nem lehetett importálni a \"%s\" kulcsot\n" msgstr "nem lehetett importálni a \"%s\" kulcsot\n"
#: lib/libalpm/signing.c:540 #: lib/libalpm/signing.c:546
#, c-format #, c-format
msgid "key \"%s\" could not be looked up remotely\n" msgid "key \"%s\" could not be looked up remotely\n"
msgstr "a \"%s\" távoli kulcs nem található\n" msgstr "a \"%s\" távoli kulcs nem található\n"
#: lib/libalpm/signing.c:926 lib/libalpm/sync.c:1022 #: lib/libalpm/signing.c:932 lib/libalpm/sync.c:1052
#, c-format #, c-format
msgid "%s: missing required signature\n" msgid "%s: missing required signature\n"
msgstr "%s: szükséges aláírás hiányzik\n" msgstr "%s: szükséges aláírás hiányzik\n"
#: lib/libalpm/signing.c:941 #: lib/libalpm/signing.c:947
#, c-format #, c-format
msgid "%s: signature from \"%s\" is marginal trust\n" msgid "%s: signature from \"%s\" is marginal trust\n"
msgstr "%s: az aláírásnak a \"%s\" -ről alig megbízható\n" msgstr "%s: az aláírásnak a \"%s\" -ről alig megbízható\n"
#: lib/libalpm/signing.c:949 #: lib/libalpm/signing.c:955
#, c-format #, c-format
msgid "%s: signature from \"%s\" is unknown trust\n" msgid "%s: signature from \"%s\" is unknown trust\n"
msgstr "%s: az aláírásnak a \"%s\" -ről ismeretlen a megbízhatósága\n" msgstr "%s: az aláírásnak a \"%s\" -ről ismeretlen a megbízhatósága\n"
#: lib/libalpm/signing.c:956 #: lib/libalpm/signing.c:962
#, c-format #, c-format
msgid "%s: signature from \"%s\" should never be trusted\n" msgid "%s: signature from \"%s\" should never be trusted\n"
msgstr "%s: az aláírás a \"%s\" -ról soha nem megbízható\n" msgstr "%s: az aláírás a \"%s\" -ról soha nem megbízható\n"
#: lib/libalpm/signing.c:968 #: lib/libalpm/signing.c:974
#, c-format #, c-format
msgid "%s: key \"%s\" is unknown\n" msgid "%s: key \"%s\" is unknown\n"
msgstr "%s: a \"%s\" kulcs ismeretlen\n" msgstr "%s: a \"%s\" kulcs ismeretlen\n"
#: lib/libalpm/signing.c:977 #: lib/libalpm/signing.c:983
#, c-format #, c-format
msgid "%s: key \"%s\" is disabled\n" msgid "%s: key \"%s\" is disabled\n"
msgstr "%s: a \"%s\" kulcs ki van kapcsolva\n" msgstr "%s: a \"%s\" kulcs ki van kapcsolva\n"
#: lib/libalpm/signing.c:981 #: lib/libalpm/signing.c:987
#, c-format #, c-format
msgid "%s: signature from \"%s\" is expired\n" msgid "%s: signature from \"%s\" is expired\n"
msgstr "%s: az aláírás \"%s\" lejárt\n" msgstr "%s: az aláírás \"%s\" lejárt\n"
#: lib/libalpm/signing.c:985 #: lib/libalpm/signing.c:991
#, c-format #, c-format
msgid "%s: signature from \"%s\" is invalid\n" msgid "%s: signature from \"%s\" is invalid\n"
msgstr "%s: az aláírás a \"%s\" -tól érvénytelen\n" msgstr "%s: az aláírás a \"%s\" -tól érvénytelen\n"
#: lib/libalpm/signing.c:1043 lib/libalpm/signing.c:1104 #: lib/libalpm/signing.c:1049 lib/libalpm/signing.c:1110
#: lib/libalpm/signing.c:1183 #: lib/libalpm/signing.c:1189
#, c-format #, c-format
msgid "%s: signature format error\n" msgid "%s: signature format error\n"
msgstr "aláírásformátum hiba: %s\n" msgstr "aláírásformátum hiba: %s\n"
#: lib/libalpm/signing.c:1136 lib/libalpm/signing.c:1169 #: lib/libalpm/signing.c:1142 lib/libalpm/signing.c:1175
#: lib/libalpm/signing.c:1177 #: lib/libalpm/signing.c:1183
#, c-format #, c-format
msgid "%s: unsupported signature format\n" msgid "%s: unsupported signature format\n"
msgstr "nem támogatott aláírásformátum: %s\n" msgstr "nem támogatott aláírásformátum: %s\n"
@ -949,117 +1017,122 @@ msgstr "csomaglecserélés kihagyása (%s-%s => %s-%s)\n"
msgid "cannot replace %s by %s\n" msgid "cannot replace %s by %s\n"
msgstr "nem lehet lecserélni a(z) %s csomagot a(z) %s csomaggal\n" msgstr "nem lehet lecserélni a(z) %s csomagot a(z) %s csomaggal\n"
#: lib/libalpm/sync.c:476 #: lib/libalpm/sync.c:477
#, c-format #, c-format
msgid "packages %s and %s have the same filename: %s\n" msgid "packages %s and %s have the same filename: %s\n"
msgstr "" msgstr ""
#: lib/libalpm/sync.c:542 lib/libalpm/sync.c:612 #: lib/libalpm/sync.c:546 lib/libalpm/sync.c:618
#, c-format #, c-format
msgid "unresolvable package conflicts detected\n" msgid "unresolvable package conflicts detected\n"
msgstr "feloldhatatlan csomagütközéseket találtam\n" msgstr "feloldhatatlan csomagütközéseket találtam\n"
#: lib/libalpm/sync.c:562 #: lib/libalpm/sync.c:566
#, c-format #, c-format
msgid "removing '%s' from target list because it conflicts with '%s'\n" msgid "removing '%s-%s' from target list because it conflicts with '%s-%s'\n"
msgstr "'%s' kihagyása, mert ütközik a következővel: '%s'\n" msgstr ""
#: lib/libalpm/sync.c:1036 #: lib/libalpm/sync.c:1020 lib/libalpm/sync.c:1187
#, c-format
msgid "%s: could not find package in cache\n"
msgstr ""
#: lib/libalpm/sync.c:1066
#, c-format #, c-format
msgid "failed to read file %s: %s\n" msgid "failed to read file %s: %s\n"
msgstr "nem sikerült olvasni a %s: %s fájlt\n" msgstr "nem sikerült olvasni a %s: %s fájlt\n"
#: lib/libalpm/sync.c:1223 #: lib/libalpm/sync.c:1324
#, c-format #, c-format
msgid "not enough free disk space\n" msgid "not enough free disk space\n"
msgstr "nincs elég szabad lemezterület\n" msgstr "nincs elég szabad lemezterület\n"
#: lib/libalpm/sync.c:1245 #: lib/libalpm/sync.c:1346
#, c-format #, c-format
msgid "could not commit removal transaction\n" msgid "could not commit removal transaction\n"
msgstr "nem sikerült végrehajtani az eltávolító tranzakciót\n" msgstr "nem sikerült végrehajtani az eltávolító tranzakciót\n"
#: lib/libalpm/sync.c:1253 #: lib/libalpm/sync.c:1354
#, c-format #, c-format
msgid "could not commit transaction\n" msgid "could not commit transaction\n"
msgstr "nem sikerült végrehajtani a tranzakciót\n" msgstr "nem sikerült végrehajtani a tranzakciót\n"
#: lib/libalpm/trans.c:365 #: lib/libalpm/trans.c:369
#, c-format #, c-format
msgid "could not create temp directory\n" msgid "could not create temp directory\n"
msgstr "nem sikerült létrehozni az ideiglenes könyvtárat\n" msgstr "nem sikerült létrehozni az ideiglenes könyvtárat\n"
#: lib/libalpm/trans.c:380 #: lib/libalpm/trans.c:384
#, c-format #, c-format
msgid "could not copy tempfile to %s (%s)\n" msgid "could not copy tempfile to %s (%s)\n"
msgstr "nem sikerült az ideiglenes fájlt ide másolni: %s (%s)\n" msgstr "nem sikerült az ideiglenes fájlt ide másolni: %s (%s)\n"
#: lib/libalpm/trans.c:411 #: lib/libalpm/trans.c:415
#, c-format #, c-format
msgid "could not remove %s\n" msgid "could not remove %s\n"
msgstr "%s nem távolítható el\n" msgstr "%s nem távolítható el\n"
#: lib/libalpm/trans.c:415 #: lib/libalpm/trans.c:419
#, c-format #, c-format
msgid "could not remove tmpdir %s\n" msgid "could not remove tmpdir %s\n"
msgstr "nem sikerült eltávolítani a %s ideiglenes könyvtárat\n" msgstr "nem sikerült eltávolítani a %s ideiglenes könyvtárat\n"
#: lib/libalpm/util.c:488 #: lib/libalpm/util.c:512
#, c-format #, c-format
msgid "unable to write to pipe (%s)\n" msgid "unable to write to pipe (%s)\n"
msgstr "nem sikerül írni az adatcsatornába (%s)\n" msgstr "nem sikerül írni az adatcsatornába (%s)\n"
#: lib/libalpm/util.c:547 #: lib/libalpm/util.c:571
#, c-format #, c-format
msgid "unable to read from pipe (%s)\n" msgid "unable to read from pipe (%s)\n"
msgstr "nem sikerül olvasni az adatcsatornából (%s)\n" msgstr "nem sikerül olvasni az adatcsatornából (%s)\n"
#: lib/libalpm/util.c:617 lib/libalpm/util.c:623 #: lib/libalpm/util.c:641 lib/libalpm/util.c:647
#, c-format #, c-format
msgid "could not create pipe (%s)\n" msgid "could not create pipe (%s)\n"
msgstr "nem sikerült az adatcsatorna létrehozása (%s)\n" msgstr "nem sikerült az adatcsatorna létrehozása (%s)\n"
#: lib/libalpm/util.c:631 #: lib/libalpm/util.c:655
#, c-format #, c-format
msgid "could not fork a new process (%s)\n" msgid "could not fork a new process (%s)\n"
msgstr "nem sikerült indítani egy új folyamatot (%s)\n" msgstr "nem sikerült indítani egy új folyamatot (%s)\n"
#: lib/libalpm/util.c:654 #: lib/libalpm/util.c:680
#, c-format #, c-format
msgid "could not change the root directory (%s)\n" msgid "could not change the root directory (%s)\n"
msgstr "nem sikerült gyökérkönyvtárat váltani (%s)\n" msgstr "nem sikerült gyökérkönyvtárat váltani (%s)\n"
#: lib/libalpm/util.c:666 #: lib/libalpm/util.c:700
#, c-format #, c-format
msgid "call to execv failed (%s)\n" msgid "call to execv failed (%s)\n"
msgstr "sikertelen execv hívás (%s)\n" msgstr "sikertelen execv hívás (%s)\n"
#: lib/libalpm/util.c:745 #: lib/libalpm/util.c:779
#, c-format #, c-format
msgid "call to waitpid failed (%s)\n" msgid "call to waitpid failed (%s)\n"
msgstr "sikertelen waitpid hívás (%s)\n" msgstr "sikertelen waitpid hívás (%s)\n"
#: lib/libalpm/util.c:755 #: lib/libalpm/util.c:789
#, c-format #, c-format
msgid "command failed to execute correctly\n" msgid "command failed to execute correctly\n"
msgstr "a parancs nem futott le helyesen\n" msgstr "a parancs nem futott le helyesen\n"
#: lib/libalpm/util.c:762 #: lib/libalpm/util.c:796
#, c-format #, c-format
msgid "Unknown signal" msgid "Unknown signal"
msgstr "Ismeretlen szignál" msgstr "Ismeretlen szignál"
#: lib/libalpm/util.c:764 #: lib/libalpm/util.c:798
#, c-format #, c-format
msgid "command terminated by signal %d: %s\n" msgid "command terminated by signal %d: %s\n"
msgstr "parancs megszakítva a(z) %d szignál által: %s\n" msgstr "parancs megszakítva a(z) %d szignál által: %s\n"
#: lib/libalpm/util.c:875 #: lib/libalpm/util.c:916
#, c-format #, c-format
msgid "no %s cache exists, creating...\n" msgid "no %s cache exists, creating...\n"
msgstr "nem létezik a(z) %s gyorsítótár, létrehozás...\n" msgstr "nem létezik a(z) %s gyorsítótár, létrehozás...\n"
#: lib/libalpm/util.c:906 #: lib/libalpm/util.c:947
#, c-format #, c-format
msgid "couldn't find or create package cache, using %s instead\n" msgid "couldn't find or create package cache, using %s instead\n"
msgstr "" msgstr ""

View file

@ -15,11 +15,11 @@
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Arch Linux Pacman package manager\n" "Project-Id-Version: Arch Linux Pacman package manager\n"
"Report-Msgid-Bugs-To: http://bugs.archlinux.org/index.php?project=3\n" "Report-Msgid-Bugs-To: https://gitlab.archlinux.org/pacman/pacman/-/issues\n"
"POT-Creation-Date: 2021-09-04 16:15+1000\n" "POT-Creation-Date: 2024-07-14 19:10+1000\n"
"PO-Revision-Date: 2021-05-20 02:25+0000\n" "PO-Revision-Date: 2010-11-29 23:17+0000\n"
"Last-Translator: Allan McRae <allan@archlinux.org>\n" "Last-Translator: se7entime <se7entime@disroot.org>, 2013,2015\n"
"Language-Team: Indonesian (http://www.transifex.com/toofishes/archlinux-" "Language-Team: Indonesian (http://app.transifex.com/toofishes/archlinux-"
"pacman/language/id/)\n" "pacman/language/id/)\n"
"Language: id\n" "Language: id\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
@ -47,17 +47,17 @@ msgstr "menurunkan paket %s (%s => %s)\n"
msgid "cannot allocate disk archive object" msgid "cannot allocate disk archive object"
msgstr "" msgstr ""
#: lib/libalpm/add.c:143 lib/libalpm/util.c:384 #: lib/libalpm/add.c:143 lib/libalpm/util.c:408
#, c-format #, c-format
msgid "warning given when extracting %s (%s)\n" msgid "warning given when extracting %s (%s)\n"
msgstr "peringatan diberikan ketika mengekstrak %s (%s)\n" msgstr "peringatan diberikan ketika mengekstrak %s (%s)\n"
#: lib/libalpm/add.c:146 lib/libalpm/util.c:387 #: lib/libalpm/add.c:146 lib/libalpm/util.c:411
#, c-format #, c-format
msgid "could not extract %s (%s)\n" msgid "could not extract %s (%s)\n"
msgstr "tidak dapat mengekstrak %s (%s)\n" msgstr "tidak dapat mengekstrak %s (%s)\n"
#: lib/libalpm/add.c:159 lib/libalpm/dload.c:709 lib/libalpm/remove.c:534 #: lib/libalpm/add.c:159 lib/libalpm/dload.c:707 lib/libalpm/remove.c:550
#, c-format #, c-format
msgid "could not rename %s to %s (%s)\n" msgid "could not rename %s to %s (%s)\n"
msgstr "tidak dapat mengubah nama %s menjadi %s (%s)\n" msgstr "tidak dapat mengubah nama %s menjadi %s (%s)\n"
@ -102,18 +102,18 @@ msgstr "ekstrak: tidak menimpa direktori dengan berkas %s\n"
msgid "unable to extract %s.pacnew: path too long" msgid "unable to extract %s.pacnew: path too long"
msgstr "gagal mengekstrak %s.pacnew: jalur terlalu panjang" msgstr "gagal mengekstrak %s.pacnew: jalur terlalu panjang"
#: lib/libalpm/add.c:510 lib/libalpm/util.c:335 lib/libalpm/util.c:600 #: lib/libalpm/add.c:510 lib/libalpm/util.c:354 lib/libalpm/util.c:624
#, c-format #, c-format
msgid "could not get current working directory\n" msgid "could not get current working directory\n"
msgstr "tidak dapat mendapatkan direktori kerja saat ini\n" msgstr "tidak dapat mendapatkan direktori kerja saat ini\n"
#: lib/libalpm/add.c:515 lib/libalpm/util.c:340 lib/libalpm/util.c:605 #: lib/libalpm/add.c:515 lib/libalpm/util.c:359 lib/libalpm/util.c:629
#: lib/libalpm/util.c:658 #: lib/libalpm/util.c:684
#, c-format #, c-format
msgid "could not change directory to %s (%s)\n" msgid "could not change directory to %s (%s)\n"
msgstr "tidak dapat mengganti direktori ke %s (%s)\n" msgstr "tidak dapat mengganti direktori ke %s (%s)\n"
#: lib/libalpm/add.c:571 lib/libalpm/util.c:405 lib/libalpm/util.c:774 #: lib/libalpm/add.c:571 lib/libalpm/util.c:429 lib/libalpm/util.c:808
#, c-format #, c-format
msgid "could not restore working directory (%s)\n" msgid "could not restore working directory (%s)\n"
msgstr "tidak dapat mengembalikan direktori kerja (%s)\n" msgstr "tidak dapat mengembalikan direktori kerja (%s)\n"
@ -138,101 +138,116 @@ msgstr "tidak dapat memutakhirkan entry database %s-%s\n"
msgid "could not add entry '%s' in cache\n" msgid "could not add entry '%s' in cache\n"
msgstr "tidak dapat menambah entry '%s' pada cache\n" msgstr "tidak dapat menambah entry '%s' pada cache\n"
#: lib/libalpm/be_local.c:266 #: lib/libalpm/be_local.c:271
#, c-format #, c-format
msgid "error while reading file %s: %s\n" msgid "error while reading file %s: %s\n"
msgstr "galat ketika membaca berkas %s: %s\n" msgstr "galat ketika membaca berkas %s: %s\n"
#: lib/libalpm/be_local.c:376 #: lib/libalpm/be_local.c:382
#, c-format #, c-format
msgid "removing invalid database: %s\n" msgid "removing invalid database: %s\n"
msgstr "menghapus semua database tak valid: %s\n" msgstr "menghapus semua database tak valid: %s\n"
#: lib/libalpm/be_local.c:427 lib/libalpm/be_local.c:909 #: lib/libalpm/be_local.c:433 lib/libalpm/be_local.c:947
#, c-format #, c-format
msgid "could not create directory %s: %s\n" msgid "could not create directory %s: %s\n"
msgstr "tidak dapat membuat direktori %s:%s\n" msgstr "tidak dapat membuat direktori %s:%s\n"
#: lib/libalpm/be_local.c:602 lib/libalpm/be_sync.c:322 #: lib/libalpm/be_local.c:608 lib/libalpm/be_sync.c:339
#, c-format #, c-format
msgid "invalid name for database entry '%s'\n" msgid "invalid name for database entry '%s'\n"
msgstr "nama entry '%s' database tidak valid\n" msgstr "nama entry '%s' database tidak valid\n"
#: lib/libalpm/be_local.c:610 #: lib/libalpm/be_local.c:616
#, c-format #, c-format
msgid "duplicated database entry '%s'\n" msgid "duplicated database entry '%s'\n"
msgstr "entry database diduplikasi '%s'\n" msgstr "entry database diduplikasi '%s'\n"
#: lib/libalpm/be_local.c:622 #: lib/libalpm/be_local.c:628
#, c-format #, c-format
msgid "corrupted database entry '%s'\n" msgid "corrupted database entry '%s'\n"
msgstr "entry database korup '%s'\n" msgstr "entry database korup '%s'\n"
#: lib/libalpm/be_local.c:722 lib/libalpm/be_local.c:818 #: lib/libalpm/be_local.c:663
#: lib/libalpm/be_local.c:958 lib/libalpm/be_local.c:1055 #, fuzzy, c-format
#: lib/libalpm/diskspace.c:131 lib/libalpm/dload.c:823 lib/libalpm/util.c:254 msgid "unknown install reason for package %s: %s\n"
#: lib/libalpm/util.c:270 msgstr "tipe validasi tidak dikenal untuk paket %s: %s\n"
#: lib/libalpm/be_local.c:743 lib/libalpm/be_local.c:856
#: lib/libalpm/be_local.c:996 lib/libalpm/be_local.c:1102
#: lib/libalpm/diskspace.c:135 lib/libalpm/dload.c:792 lib/libalpm/util.c:273
#: lib/libalpm/util.c:289
#, c-format #, c-format
msgid "could not open file %s: %s\n" msgid "could not open file %s: %s\n"
msgstr "tidak dapat membuka berkas %s: %s\n" msgstr "tidak dapat membuka berkas %s: %s\n"
#: lib/libalpm/be_local.c:738 lib/libalpm/be_sync.c:582 #: lib/libalpm/be_local.c:759 lib/libalpm/be_sync.c:612
#, c-format #, c-format
msgid "%s database is inconsistent: name mismatch on package %s\n" msgid "%s database is inconsistent: name mismatch on package %s\n"
msgstr "%s database tidak konsisten: nama tidak cocok pada paket %s\n" msgstr "%s database tidak konsisten: nama tidak cocok pada paket %s\n"
#: lib/libalpm/be_local.c:744 lib/libalpm/be_sync.c:588 #: lib/libalpm/be_local.c:765 lib/libalpm/be_sync.c:618
#, c-format #, c-format
msgid "%s database is inconsistent: version mismatch on package %s\n" msgid "%s database is inconsistent: version mismatch on package %s\n"
msgstr "%s database tidak konsisten: versi tidak sama pada paket %s\n" msgstr "%s database tidak konsisten: versi tidak sama pada paket %s\n"
#: lib/libalpm/be_local.c:785 #: lib/libalpm/be_local.c:806
#, c-format #, c-format
msgid "unknown validation type for package %s: %s\n" msgid "unknown validation type for package %s: %s\n"
msgstr "tipe validasi tidak dikenal untuk paket %s: %s\n" msgstr "tipe validasi tidak dikenal untuk paket %s: %s\n"
#: lib/libalpm/be_package.c:478 lib/libalpm/be_package.c:631 #: lib/libalpm/be_local.c:841
#: lib/libalpm/be_package.c:643 #, c-format
msgid "%s: unknown key '%s' in local database\n"
msgstr ""
#: lib/libalpm/be_package.c:255
#, c-format
msgid "%s: unknown key '%s' in package description\n"
msgstr ""
#: lib/libalpm/be_package.c:482 lib/libalpm/be_package.c:635
#: lib/libalpm/be_package.c:647
#, c-format #, c-format
msgid "error while reading package %s: %s\n" msgid "error while reading package %s: %s\n"
msgstr "galat saat membaca paket %s: %s\n" msgstr "galat saat membaca paket %s: %s\n"
#: lib/libalpm/be_package.c:491 lib/libalpm/be_package.c:514 #: lib/libalpm/be_package.c:495 lib/libalpm/be_package.c:518
#, c-format #, c-format
msgid "error while reading mtree of package %s: %s\n" msgid "error while reading mtree of package %s: %s\n"
msgstr "galat ketika membaca mtree paket %s: %s\n" msgstr "galat ketika membaca mtree paket %s: %s\n"
#: lib/libalpm/be_package.c:597 #: lib/libalpm/be_package.c:601
#, c-format #, c-format
msgid "could not parse package description file in %s\n" msgid "could not parse package description file in %s\n"
msgstr "tidak dapat menerjemahakan berkas deskripsi paket pada %s\n" msgstr "tidak dapat menerjemahakan berkas deskripsi paket pada %s\n"
#: lib/libalpm/be_package.c:602 #: lib/libalpm/be_package.c:606
#, c-format #, c-format
msgid "missing package name in %s\n" msgid "missing package name in %s\n"
msgstr "nama paket pada %s hilang\n" msgstr "nama paket pada %s hilang\n"
#: lib/libalpm/be_package.c:606 #: lib/libalpm/be_package.c:610
#, c-format #, c-format
msgid "missing package version in %s\n" msgid "missing package version in %s\n"
msgstr "versi paket pada %s hilang\n" msgstr "versi paket pada %s hilang\n"
#: lib/libalpm/be_package.c:610 #: lib/libalpm/be_package.c:614
#, c-format #, c-format
msgid "invalid package version in %s\n" msgid "invalid package version in %s\n"
msgstr "Versi paket tidak valid pada %s\n" msgstr "Versi paket tidak valid pada %s\n"
#: lib/libalpm/be_package.c:649 #: lib/libalpm/be_package.c:653
#, c-format #, c-format
msgid "missing package metadata in %s\n" msgid "missing package metadata in %s\n"
msgstr "paket %s kehilangan metadata\n" msgstr "paket %s kehilangan metadata\n"
#: lib/libalpm/be_package.c:741 #: lib/libalpm/be_package.c:745
#, c-format #, c-format
msgid "failed to read signature file: %s\n" msgid "failed to read signature file: %s\n"
msgstr "gagal membaca berkas signatur: %s\n" msgstr "gagal membaca berkas signatur: %s\n"
#: lib/libalpm/be_package.c:770 lib/libalpm/sync.c:953 #: lib/libalpm/be_package.c:768 lib/libalpm/sync.c:976
#, c-format #, c-format
msgid "required key missing from keyring\n" msgid "required key missing from keyring\n"
msgstr "key yang dibutuhkan tidak ada pada keyring\n" msgstr "key yang dibutuhkan tidak ada pada keyring\n"
@ -242,32 +257,37 @@ msgstr "key yang dibutuhkan tidak ada pada keyring\n"
msgid "removing invalid file: %s\n" msgid "removing invalid file: %s\n"
msgstr "menghapus berkas tidak valid: %s\n" msgstr "menghapus berkas tidak valid: %s\n"
#: lib/libalpm/be_sync.c:449 #: lib/libalpm/be_sync.c:471
#, c-format #, c-format
msgid "could not parse package description file '%s' from db '%s'\n" msgid "could not parse package description file '%s' from db '%s'\n"
msgstr "tidak dapat menerjemahkan deskripsi berkas '%s' dari db '%s'\n" msgstr "tidak dapat menerjemahkan deskripsi berkas '%s' dari db '%s'\n"
#: lib/libalpm/be_sync.c:456 #: lib/libalpm/be_sync.c:486
#, c-format #, c-format
msgid "could not read db '%s' (%s)\n" msgid "could not read db '%s' (%s)\n"
msgstr "" msgstr ""
#: lib/libalpm/be_sync.c:489 lib/libalpm/be_sync.c:494 #: lib/libalpm/be_sync.c:519 lib/libalpm/be_sync.c:524
#, c-format #, c-format
msgid "%s database is inconsistent: filename of package %s is illegal\n" msgid "%s database is inconsistent: filename of package %s is illegal\n"
msgstr "%s basis data tidak konsisten: nama berkas paket %s adalah ilegal\n" msgstr "%s basis data tidak konsisten: nama berkas paket %s adalah ilegal\n"
#: lib/libalpm/be_sync.c:499 #: lib/libalpm/be_sync.c:529
#, c-format #, c-format
msgid "%s database is inconsistent: filename of package %s is too long\n" msgid "%s database is inconsistent: filename of package %s is too long\n"
msgstr "%s basis data tidak konsisten: nama berkas paket %s terlalu panjang\n" msgstr "%s basis data tidak konsisten: nama berkas paket %s terlalu panjang\n"
#: lib/libalpm/be_sync.c:564 #: lib/libalpm/be_sync.c:594
#, c-format #, c-format
msgid "unknown database file: %s\n" msgid "unknown database file: %s\n"
msgstr "berkas database tidak dikenal: %s\n" msgstr "berkas database tidak dikenal: %s\n"
#: lib/libalpm/db.c:344 #: lib/libalpm/be_sync.c:712
#, c-format
msgid "%s: unknown key '%s' in sync database\n"
msgstr ""
#: lib/libalpm/db.c:413
#, c-format #, c-format
msgid "database path is undefined\n" msgid "database path is undefined\n"
msgstr "path database tidak didefinisikan\n" msgstr "path database tidak didefinisikan\n"
@ -307,104 +327,119 @@ msgstr "tidak dapat mendapatkan informasi sistem berkas untuk %s: %s\n"
msgid "could not open file: %s: %s\n" msgid "could not open file: %s: %s\n"
msgstr "tidak dapat membuka berkas: %s: %s\n" msgstr "tidak dapat membuka berkas: %s: %s\n"
#: lib/libalpm/diskspace.c:146 lib/libalpm/diskspace.c:159 #: lib/libalpm/diskspace.c:154 lib/libalpm/diskspace.c:167
#, c-format #, c-format
msgid "could not get filesystem information\n" msgid "could not get filesystem information\n"
msgstr "tidak dapat mendapatkan informasi sistem berkas\n" msgstr "tidak dapat mendapatkan informasi sistem berkas\n"
#: lib/libalpm/diskspace.c:242 #: lib/libalpm/diskspace.c:254
#, c-format #, c-format
msgid "could not get file information for %s\n" msgid "could not get file information for %s\n"
msgstr "tidak bisa mendapatkan informasi berkas untuk %s\n" msgstr "tidak bisa mendapatkan informasi berkas untuk %s\n"
#: lib/libalpm/diskspace.c:256 lib/libalpm/diskspace.c:315 #: lib/libalpm/diskspace.c:268 lib/libalpm/diskspace.c:327
#, c-format #, c-format
msgid "could not determine mount point for file %s\n" msgid "could not determine mount point for file %s\n"
msgstr "tidak dapat menentukan titik kait untuk berkas %s\n" msgstr "tidak dapat menentukan titik kait untuk berkas %s\n"
#: lib/libalpm/diskspace.c:354 #: lib/libalpm/diskspace.c:366
#, c-format #, c-format
msgid "Partition %s too full: %jd blocks needed, %ju blocks free\n" msgid "Partition %s too full: %jd blocks needed, %ju blocks free\n"
msgstr "Partisi %s terlalu penuh: %jd blok dibutuhkan, %ju blok bebas\n" msgstr "Partisi %s terlalu penuh: %jd blok dibutuhkan, %ju blok bebas\n"
#: lib/libalpm/diskspace.c:379 lib/libalpm/diskspace.c:433 #: lib/libalpm/diskspace.c:391 lib/libalpm/diskspace.c:445
#, c-format #, c-format
msgid "could not determine filesystem mount points\n" msgid "could not determine filesystem mount points\n"
msgstr "tidak dapat menentukan titik kait sistem berkas\n" msgstr "tidak dapat menentukan titik kait sistem berkas\n"
#: lib/libalpm/diskspace.c:385 #: lib/libalpm/diskspace.c:397
#, c-format #, c-format
msgid "could not determine cachedir mount point %s\n" msgid "could not determine cachedir mount point %s\n"
msgstr "tidak dapat menentukan titik kait cachedir %s\n" msgstr "tidak dapat menentukan titik kait cachedir %s\n"
#: lib/libalpm/diskspace.c:438 #: lib/libalpm/diskspace.c:450
#, c-format #, c-format
msgid "could not determine root mount point %s\n" msgid "could not determine root mount point %s\n"
msgstr "tidak dapat menentukan titik kait root %s\n" msgstr "tidak dapat menentukan titik kait root %s\n"
#: lib/libalpm/diskspace.c:486 #: lib/libalpm/diskspace.c:498
#, c-format #, c-format
msgid "Partition %s is mounted read only\n" msgid "Partition %s is mounted read only\n"
msgstr "Partisi %s dikaitkan hanya baca\n" msgstr "Partisi %s dikaitkan hanya baca\n"
#: lib/libalpm/dload.c:116 #: lib/libalpm/dload.c:107
#, c-format
msgid "failed to create temporary file for download\n"
msgstr "gagal membuat berkas unduhan temporer\n"
#: lib/libalpm/dload.c:198
#, c-format #, c-format
msgid "" msgid ""
"too many errors from %s, skipping for the remainder of this transaction\n" "too many errors from %s, skipping for the remainder of this transaction\n"
msgstr "" msgstr ""
#: lib/libalpm/dload.c:220 #: lib/libalpm/dload.c:215
#, c-format
msgid "fatal error from %s, skipping for the remainder of this transaction\n"
msgstr ""
#: lib/libalpm/dload.c:310
#, c-format #, c-format
msgid "disk" msgid "disk"
msgstr "diska" msgstr "diska"
#: lib/libalpm/dload.c:392 #: lib/libalpm/dload.c:532 lib/libalpm/dload.c:570 lib/libalpm/dload.c:583
#, c-format
msgid "failed to create temporary file for download\n"
msgstr "gagal membuat berkas unduhan temporer\n"
#: lib/libalpm/dload.c:509 lib/libalpm/dload.c:547 lib/libalpm/dload.c:561
#, c-format #, c-format
msgid "failed retrieving file '%s' from %s : %s\n" msgid "failed retrieving file '%s' from %s : %s\n"
msgstr "gagal mendapatkan berkas '%s' dari %s: %s\n" msgstr "gagal mendapatkan berkas '%s' dari %s: %s\n"
#: lib/libalpm/dload.c:539 #: lib/libalpm/dload.c:562
#, c-format #, c-format
msgid "failed retrieving file '%s' from %s : expected download size exceeded\n" msgid "failed retrieving file '%s' from %s : expected download size exceeded\n"
msgstr "" msgstr ""
"gagal mendapatkan berkas '%s' dari %s: ukuran unduhan melebihi perkiraan\n" "gagal mendapatkan berkas '%s' dari %s: ukuran unduhan melebihi perkiraan\n"
#: lib/libalpm/dload.c:687 #: lib/libalpm/dload.c:685
#, c-format #, c-format
msgid "%s appears to be truncated: %jd/%jd bytes\n" msgid "%s appears to be truncated: %jd/%jd bytes\n"
msgstr "%s sepertinya tidak lengkap: %jd/%jd byte\n" msgstr "%s sepertinya tidak lengkap: %jd/%jd byte\n"
#: lib/libalpm/dload.c:787 #: lib/libalpm/dload.c:776
#, c-format #, c-format
msgid "url '%s' is invalid\n" msgid "url '%s' is invalid\n"
msgstr "url '%s' tidak valid\n" msgstr "url '%s' tidak valid\n"
#: lib/libalpm/dload.c:893 #: lib/libalpm/dload.c:864
#, c-format #, c-format
msgid "failed to setup a download payload for %s\n" msgid "failed to setup a download payload for %s\n"
msgstr "" msgstr ""
#: lib/libalpm/dload.c:905 #: lib/libalpm/dload.c:876
#, c-format #, c-format
msgid "curl returned error %d from transfer\n" msgid "curl returned error %d from transfer\n"
msgstr "" msgstr ""
#: lib/libalpm/dload.c:929 #: lib/libalpm/dload.c:900
#, c-format #, c-format
msgid "curl transfer error: %d\n" msgid "curl transfer error: %d\n"
msgstr "" msgstr ""
#: lib/libalpm/dload.c:1055 lib/libalpm/sync.c:840 #: lib/libalpm/dload.c:963
#, fuzzy, c-format
msgid "could not chdir to download directory %s\n"
msgstr "tidak dapat mengubah direktori root (%s)\n"
#: lib/libalpm/dload.c:968
#, c-format
msgid "switching to sandbox user '%s' failed!\n"
msgstr ""
#: lib/libalpm/dload.c:1361 lib/libalpm/sync.c:861
#, c-format #, c-format
msgid "failed to retrieve some files\n" msgid "failed to retrieve some files\n"
msgstr "gagal mendapatkan beberapa berkas\n" msgstr "gagal mendapatkan beberapa berkas\n"
#: lib/libalpm/dload.c:1078 #: lib/libalpm/dload.c:1384
#, c-format #, c-format
msgid "download completed successfully but no file in the cache\n" msgid "download completed successfully but no file in the cache\n"
msgstr "" msgstr ""
@ -679,12 +714,12 @@ msgstr ""
msgid "unexpected error" msgid "unexpected error"
msgstr "galat tak terduga" msgstr "galat tak terduga"
#: lib/libalpm/handle.c:142 #: lib/libalpm/handle.c:165
#, c-format #, c-format
msgid "lock file missing %s\n" msgid "lock file missing %s\n"
msgstr "berkas lock tidak ditemukan %s\n" msgstr "berkas lock tidak ditemukan %s\n"
#: lib/libalpm/handle.c:148 #: lib/libalpm/handle.c:171
#, c-format #, c-format
msgid "could not remove lock file %s\n" msgid "could not remove lock file %s\n"
msgstr "tidak dapat menghapus berkas kunci %s\n" msgstr "tidak dapat menghapus berkas kunci %s\n"
@ -766,7 +801,7 @@ msgstr "tidak dapat membuka direktori: %s: %s\n"
msgid "could not open file: %s%s: %s\n" msgid "could not open file: %s%s: %s\n"
msgstr "" msgstr ""
#: lib/libalpm/hook.c:595 lib/libalpm/util.c:260 #: lib/libalpm/hook.c:595 lib/libalpm/util.c:279
#, c-format #, c-format
msgid "could not stat file %s: %s\n" msgid "could not stat file %s: %s\n"
msgstr "tidak dapat mencatat stat berkas %s: %s\n" msgstr "tidak dapat mencatat stat berkas %s: %s\n"
@ -776,11 +811,43 @@ msgstr "tidak dapat mencatat stat berkas %s: %s\n"
msgid "could not read directory: %s: %s\n" msgid "could not read directory: %s: %s\n"
msgstr "" msgstr ""
#: lib/libalpm/package.c:598 #: lib/libalpm/package.c:614
#, c-format #, c-format
msgid "could not fully load metadata for package %s-%s\n" msgid "could not fully load metadata for package %s-%s\n"
msgstr "tidak dapat memuat metadata secara penuh untuk paket %s-%s\n" msgstr "tidak dapat memuat metadata secara penuh untuk paket %s-%s\n"
#: lib/libalpm/package.c:869
#, c-format
msgid "invalid package metadata (name or version missing)"
msgstr ""
#: lib/libalpm/package.c:874
#, c-format
msgid ""
"invalid metadata for package %s-%s (package name cannot start with '.' or "
"'-')\n"
msgstr ""
#: lib/libalpm/package.c:878
#, c-format
msgid ""
"invalid metadata for package %s-%s (package name contains invalid "
"characters)\n"
msgstr ""
#: lib/libalpm/package.c:885 lib/libalpm/package.c:889
#, c-format
msgid ""
"invalid metadata for package %s-%s (package version contains invalid "
"characters)\n"
msgstr ""
#: lib/libalpm/package.c:895
#, c-format
msgid ""
"invalid metadata for package %s-%s (package name and version too long)\n"
msgstr ""
#: lib/libalpm/remove.c:111 #: lib/libalpm/remove.c:111
#, c-format #, c-format
msgid "could not find %s in database -- skipping\n" msgid "could not find %s in database -- skipping\n"
@ -801,17 +868,17 @@ msgstr "tidak dapat menghapus berkas '%s': %s\n"
msgid "could not backup %s due to PATH_MAX overflow\n" msgid "could not backup %s due to PATH_MAX overflow\n"
msgstr "" msgstr ""
#: lib/libalpm/remove.c:554 #: lib/libalpm/remove.c:570
#, c-format #, c-format
msgid "cannot remove %s (%s)\n" msgid "cannot remove %s (%s)\n"
msgstr "tidak dapat menghapus %s (%s)\n" msgstr "tidak dapat menghapus %s (%s)\n"
#: lib/libalpm/remove.c:727 #: lib/libalpm/remove.c:743
#, c-format #, c-format
msgid "could not remove database entry %s-%s\n" msgid "could not remove database entry %s-%s\n"
msgstr "tidak dapat menghapus entry database %s-%s\n" msgstr "tidak dapat menghapus entry database %s-%s\n"
#: lib/libalpm/remove.c:732 #: lib/libalpm/remove.c:748
#, c-format #, c-format
msgid "could not remove entry '%s' from cache\n" msgid "could not remove entry '%s' from cache\n"
msgstr "tidak dapat menghapus entry '%s' dari cache\n" msgstr "tidak dapat menghapus entry '%s' dari cache\n"
@ -821,89 +888,89 @@ msgstr "tidak dapat menghapus entry '%s' dari cache\n"
msgid "Public keyring not found; have you run '%s'?\n" msgid "Public keyring not found; have you run '%s'?\n"
msgstr "" msgstr ""
#: lib/libalpm/signing.c:199 lib/libalpm/signing.c:767 #: lib/libalpm/signing.c:199 lib/libalpm/signing.c:773
#, c-format #, c-format
msgid "GPGME error: %s\n" msgid "GPGME error: %s\n"
msgstr "" msgstr ""
#: lib/libalpm/signing.c:274 #: lib/libalpm/signing.c:275
#, c-format #, c-format
msgid "looking up key %s using WKD\n" msgid "looking up key %s using WKD\n"
msgstr "" msgstr ""
#: lib/libalpm/signing.c:283 #: lib/libalpm/signing.c:289
#, c-format #, c-format
msgid "gpg error: %s\n" msgid "gpg error: %s\n"
msgstr "" msgstr ""
#: lib/libalpm/signing.c:430 lib/libalpm/signing.c:503 #: lib/libalpm/signing.c:440 lib/libalpm/signing.c:513
#, c-format #, c-format
msgid "keyring is not writable\n" msgid "keyring is not writable\n"
msgstr "" msgstr ""
#: lib/libalpm/signing.c:531 #: lib/libalpm/signing.c:537
#, c-format #, c-format
msgid "key \"%s\" on keyserver\n" msgid "key \"%s\" on keyserver\n"
msgstr "" msgstr ""
#: lib/libalpm/signing.c:536 #: lib/libalpm/signing.c:542
#, c-format #, c-format
msgid "key \"%s\" could not be imported\n" msgid "key \"%s\" could not be imported\n"
msgstr "" msgstr ""
#: lib/libalpm/signing.c:540 #: lib/libalpm/signing.c:546
#, c-format #, c-format
msgid "key \"%s\" could not be looked up remotely\n" msgid "key \"%s\" could not be looked up remotely\n"
msgstr "" msgstr ""
#: lib/libalpm/signing.c:926 lib/libalpm/sync.c:1022 #: lib/libalpm/signing.c:932 lib/libalpm/sync.c:1052
#, c-format #, c-format
msgid "%s: missing required signature\n" msgid "%s: missing required signature\n"
msgstr "%s: tidak mempunyai signature yang dibutuhkan\n" msgstr "%s: tidak mempunyai signature yang dibutuhkan\n"
#: lib/libalpm/signing.c:941 #: lib/libalpm/signing.c:947
#, c-format #, c-format
msgid "%s: signature from \"%s\" is marginal trust\n" msgid "%s: signature from \"%s\" is marginal trust\n"
msgstr "" msgstr ""
#: lib/libalpm/signing.c:949 #: lib/libalpm/signing.c:955
#, c-format #, c-format
msgid "%s: signature from \"%s\" is unknown trust\n" msgid "%s: signature from \"%s\" is unknown trust\n"
msgstr "" msgstr ""
#: lib/libalpm/signing.c:956 #: lib/libalpm/signing.c:962
#, c-format #, c-format
msgid "%s: signature from \"%s\" should never be trusted\n" msgid "%s: signature from \"%s\" should never be trusted\n"
msgstr "" msgstr ""
#: lib/libalpm/signing.c:968 #: lib/libalpm/signing.c:974
#, c-format #, c-format
msgid "%s: key \"%s\" is unknown\n" msgid "%s: key \"%s\" is unknown\n"
msgstr "" msgstr ""
#: lib/libalpm/signing.c:977 #: lib/libalpm/signing.c:983
#, c-format #, c-format
msgid "%s: key \"%s\" is disabled\n" msgid "%s: key \"%s\" is disabled\n"
msgstr "" msgstr ""
#: lib/libalpm/signing.c:981 #: lib/libalpm/signing.c:987
#, c-format #, c-format
msgid "%s: signature from \"%s\" is expired\n" msgid "%s: signature from \"%s\" is expired\n"
msgstr "" msgstr ""
#: lib/libalpm/signing.c:985 #: lib/libalpm/signing.c:991
#, c-format #, c-format
msgid "%s: signature from \"%s\" is invalid\n" msgid "%s: signature from \"%s\" is invalid\n"
msgstr "" msgstr ""
#: lib/libalpm/signing.c:1043 lib/libalpm/signing.c:1104 #: lib/libalpm/signing.c:1049 lib/libalpm/signing.c:1110
#: lib/libalpm/signing.c:1183 #: lib/libalpm/signing.c:1189
#, c-format #, c-format
msgid "%s: signature format error\n" msgid "%s: signature format error\n"
msgstr "" msgstr ""
#: lib/libalpm/signing.c:1136 lib/libalpm/signing.c:1169 #: lib/libalpm/signing.c:1142 lib/libalpm/signing.c:1175
#: lib/libalpm/signing.c:1177 #: lib/libalpm/signing.c:1183
#, c-format #, c-format
msgid "%s: unsupported signature format\n" msgid "%s: unsupported signature format\n"
msgstr "" msgstr ""
@ -938,117 +1005,122 @@ msgstr "mengabaikan penggantian paket (%s-%s => %s-%s)\n"
msgid "cannot replace %s by %s\n" msgid "cannot replace %s by %s\n"
msgstr "tidak dapat mengganti %s dengan %s\n" msgstr "tidak dapat mengganti %s dengan %s\n"
#: lib/libalpm/sync.c:476 #: lib/libalpm/sync.c:477
#, c-format #, c-format
msgid "packages %s and %s have the same filename: %s\n" msgid "packages %s and %s have the same filename: %s\n"
msgstr "" msgstr ""
#: lib/libalpm/sync.c:542 lib/libalpm/sync.c:612 #: lib/libalpm/sync.c:546 lib/libalpm/sync.c:618
#, c-format #, c-format
msgid "unresolvable package conflicts detected\n" msgid "unresolvable package conflicts detected\n"
msgstr "konflik paket tak terselesaikan terdeteksi\n" msgstr "konflik paket tak terselesaikan terdeteksi\n"
#: lib/libalpm/sync.c:562 #: lib/libalpm/sync.c:566
#, c-format #, c-format
msgid "removing '%s' from target list because it conflicts with '%s'\n" msgid "removing '%s-%s' from target list because it conflicts with '%s-%s'\n"
msgstr "menghapus '%s' dari daftar target karena berkonflik dengan '%s'\n" msgstr ""
#: lib/libalpm/sync.c:1036 #: lib/libalpm/sync.c:1020 lib/libalpm/sync.c:1187
#, c-format
msgid "%s: could not find package in cache\n"
msgstr ""
#: lib/libalpm/sync.c:1066
#, c-format #, c-format
msgid "failed to read file %s: %s\n" msgid "failed to read file %s: %s\n"
msgstr "" msgstr ""
#: lib/libalpm/sync.c:1223 #: lib/libalpm/sync.c:1324
#, c-format #, c-format
msgid "not enough free disk space\n" msgid "not enough free disk space\n"
msgstr "ruang kosong tidak cukup\n" msgstr "ruang kosong tidak cukup\n"
#: lib/libalpm/sync.c:1245 #: lib/libalpm/sync.c:1346
#, c-format #, c-format
msgid "could not commit removal transaction\n" msgid "could not commit removal transaction\n"
msgstr "tidak dapat melakukan transaksi penghapusan\n" msgstr "tidak dapat melakukan transaksi penghapusan\n"
#: lib/libalpm/sync.c:1253 #: lib/libalpm/sync.c:1354
#, c-format #, c-format
msgid "could not commit transaction\n" msgid "could not commit transaction\n"
msgstr "tidak dapat melakukan transaksi\n" msgstr "tidak dapat melakukan transaksi\n"
#: lib/libalpm/trans.c:365 #: lib/libalpm/trans.c:369
#, c-format #, c-format
msgid "could not create temp directory\n" msgid "could not create temp directory\n"
msgstr "tidak dapat membuat direktori temporer\n" msgstr "tidak dapat membuat direktori temporer\n"
#: lib/libalpm/trans.c:380 #: lib/libalpm/trans.c:384
#, c-format #, c-format
msgid "could not copy tempfile to %s (%s)\n" msgid "could not copy tempfile to %s (%s)\n"
msgstr "tidak dapat menyalin berkas temporer ke %s (%s)\n" msgstr "tidak dapat menyalin berkas temporer ke %s (%s)\n"
#: lib/libalpm/trans.c:411 #: lib/libalpm/trans.c:415
#, c-format #, c-format
msgid "could not remove %s\n" msgid "could not remove %s\n"
msgstr "tidak dapat menghapus %s\n" msgstr "tidak dapat menghapus %s\n"
#: lib/libalpm/trans.c:415 #: lib/libalpm/trans.c:419
#, c-format #, c-format
msgid "could not remove tmpdir %s\n" msgid "could not remove tmpdir %s\n"
msgstr "tidak dapat menghapus direktori temporer %s\n" msgstr "tidak dapat menghapus direktori temporer %s\n"
#: lib/libalpm/util.c:488 #: lib/libalpm/util.c:512
#, c-format #, c-format
msgid "unable to write to pipe (%s)\n" msgid "unable to write to pipe (%s)\n"
msgstr "gagal menulis ke pipa (%s)\n" msgstr "gagal menulis ke pipa (%s)\n"
#: lib/libalpm/util.c:547 #: lib/libalpm/util.c:571
#, c-format #, c-format
msgid "unable to read from pipe (%s)\n" msgid "unable to read from pipe (%s)\n"
msgstr "gagal membaca dari pipa (%s)\n" msgstr "gagal membaca dari pipa (%s)\n"
#: lib/libalpm/util.c:617 lib/libalpm/util.c:623 #: lib/libalpm/util.c:641 lib/libalpm/util.c:647
#, c-format #, c-format
msgid "could not create pipe (%s)\n" msgid "could not create pipe (%s)\n"
msgstr "tidak dapat membuat pipe (%s)\n" msgstr "tidak dapat membuat pipe (%s)\n"
#: lib/libalpm/util.c:631 #: lib/libalpm/util.c:655
#, c-format #, c-format
msgid "could not fork a new process (%s)\n" msgid "could not fork a new process (%s)\n"
msgstr "tidak dapat melakukan fork ke proses baru (%s)\n" msgstr "tidak dapat melakukan fork ke proses baru (%s)\n"
#: lib/libalpm/util.c:654 #: lib/libalpm/util.c:680
#, c-format #, c-format
msgid "could not change the root directory (%s)\n" msgid "could not change the root directory (%s)\n"
msgstr "tidak dapat mengubah direktori root (%s)\n" msgstr "tidak dapat mengubah direktori root (%s)\n"
#: lib/libalpm/util.c:666 #: lib/libalpm/util.c:700
#, c-format #, c-format
msgid "call to execv failed (%s)\n" msgid "call to execv failed (%s)\n"
msgstr "panggilan ke execv gagal (%s)\n" msgstr "panggilan ke execv gagal (%s)\n"
#: lib/libalpm/util.c:745 #: lib/libalpm/util.c:779
#, c-format #, c-format
msgid "call to waitpid failed (%s)\n" msgid "call to waitpid failed (%s)\n"
msgstr "gagal memanggil waitpid (%s)\n" msgstr "gagal memanggil waitpid (%s)\n"
#: lib/libalpm/util.c:755 #: lib/libalpm/util.c:789
#, c-format #, c-format
msgid "command failed to execute correctly\n" msgid "command failed to execute correctly\n"
msgstr "gagal menjalankan perintah dengan benar\n" msgstr "gagal menjalankan perintah dengan benar\n"
#: lib/libalpm/util.c:762 #: lib/libalpm/util.c:796
#, c-format #, c-format
msgid "Unknown signal" msgid "Unknown signal"
msgstr "Sinyal tak dikenal" msgstr "Sinyal tak dikenal"
#: lib/libalpm/util.c:764 #: lib/libalpm/util.c:798
#, c-format #, c-format
msgid "command terminated by signal %d: %s\n" msgid "command terminated by signal %d: %s\n"
msgstr "Perintah dimatikan dengan sinyal %d:%s\n" msgstr "Perintah dimatikan dengan sinyal %d:%s\n"
#: lib/libalpm/util.c:875 #: lib/libalpm/util.c:916
#, c-format #, c-format
msgid "no %s cache exists, creating...\n" msgid "no %s cache exists, creating...\n"
msgstr "tidak ada %s cache yang ada, membuat...\n" msgstr "tidak ada %s cache yang ada, membuat...\n"
#: lib/libalpm/util.c:906 #: lib/libalpm/util.c:947
#, c-format #, c-format
msgid "couldn't find or create package cache, using %s instead\n" msgid "couldn't find or create package cache, using %s instead\n"
msgstr "tidak dapat membuat cache paket, gunakan %s saja\n" msgstr "tidak dapat membuat cache paket, gunakan %s saja\n"

Some files were not shown because too many files have changed in this diff Show more