Compare commits
26 commits
Author | SHA1 | Date | |
---|---|---|---|
![]() |
c2d4568d35 | ||
![]() |
8c61170ca4 | ||
![]() |
69eae86445 | ||
![]() |
5c10680f6f | ||
![]() |
1daabff0fb | ||
![]() |
958475a7cf | ||
![]() |
4b21c60e50 | ||
![]() |
d55924dbd7 | ||
![]() |
ce40629b7d | ||
![]() |
a1837fa585 | ||
![]() |
3bad984871 | ||
![]() |
b187daefdf | ||
![]() |
2c83cd08a4 | ||
![]() |
c974d6d245 | ||
![]() |
51354b7da9 | ||
![]() |
c4a21f333a | ||
![]() |
23e337ba5a | ||
![]() |
6c880acb5c | ||
![]() |
95ef989978 | ||
![]() |
ff91a9d449 | ||
![]() |
0352053e30 | ||
![]() |
53289acdc9 | ||
![]() |
e56c7a3f41 | ||
![]() |
ec0bf17ced | ||
![]() |
77420fe500 | ||
![]() |
6b1a836544 |
154 changed files with 2237 additions and 2058 deletions
|
@ -50,6 +50,7 @@ arch-valgrind:
|
|||
extends: .arch-test
|
||||
script:
|
||||
- pacman -Syu --needed --noconfirm valgrind
|
||||
- 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
|
||||
- meson build
|
||||
- ninja -C build
|
||||
- PACTEST_VALGRIND=1 fakechroot meson test -C build
|
||||
|
|
|
@ -1,17 +1,17 @@
|
|||
[main]
|
||||
host = https://www.transifex.com
|
||||
|
||||
[archlinux-pacman.libalpm-pot]
|
||||
[o:toofishes:p:archlinux-pacman:r:libalpm-pot]
|
||||
file_filter = lib/libalpm/po/<lang>.po
|
||||
source_file = lib/libalpm/po/libalpm.pot
|
||||
source_lang = en
|
||||
|
||||
[archlinux-pacman.pacman-pot]
|
||||
[o:toofishes:p:archlinux-pacman:r:pacman-pot]
|
||||
file_filter = src/pacman/po/<lang>.po
|
||||
source_file = src/pacman/po/pacman.pot
|
||||
source_lang = en
|
||||
|
||||
[archlinux-pacman.pacman-scripts-pot]
|
||||
[o:toofishes:p:archlinux-pacman:r:pacman-scripts-pot]
|
||||
file_filter = scripts/po/<lang>.po
|
||||
source_file = scripts/po/pacman-scripts.pot
|
||||
source_lang = en
|
||||
|
|
|
@ -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
|
||||
}
|
14
NEWS
14
NEWS
|
@ -1,5 +1,19 @@
|
|||
VERSION DESCRIPTION
|
||||
-----------------------------------------------------------------------------
|
||||
6.0.2 - Fix potential content injection during PGP import (FS#73703)
|
||||
- Fix potential segfault during PGP key import (FS#73534)
|
||||
- Fix potential information leak while parsing badly formed
|
||||
download header (FS#73704)
|
||||
- Translation fixes to avoid segfault (FS#75680)
|
||||
- makepkg:
|
||||
- Fix compatability with bash 5.2 (FS#76035)
|
||||
- Fix behaviour while attempting stripping of readonly files
|
||||
(FS#74486)
|
||||
- Use debugedit instead of awk for identifying source files
|
||||
for debug packages
|
||||
- Use -ffile-prefix-map instead of -fdebug-prefix-map to
|
||||
capture all source files in debug packages
|
||||
- Add -flto to LDFLAGS for clang
|
||||
6.0.1 - Prevent download error pages ending up in package files
|
||||
(FS#71083)
|
||||
- Give -U downloads a random .part file name if needed
|
||||
|
|
|
@ -20,6 +20,7 @@ sed \
|
|||
-e "s|@DEBUGSUFFIX[@]|@DEBUGSUFFIX@|g" \
|
||||
-e "s|@INODECMD[@]|@INODECMD@|g" \
|
||||
-e "s|@FILECMD[@]|@FILECMD@|g" \
|
||||
-e "s|@BSDTAR_NO_READ_SPARSE[@]|@BSDTAR_NO_READ_SPARSE@|g" \
|
||||
"$input" >"$output"
|
||||
|
||||
if [[ $mode ]]; then
|
||||
|
|
|
@ -77,6 +77,7 @@ Releases
|
|||
[frame="topbot",grid="none",options="header,autowidth"]
|
||||
!======
|
||||
!Version !Date
|
||||
!6.0.2 !2022-10-03
|
||||
!6.0.1 !2021-09-04
|
||||
!6.0.0 !2021-05-20
|
||||
!6.0.0alpha1 !2020-12-04
|
||||
|
|
|
@ -81,6 +81,11 @@ Options
|
|||
usage resembling ``-Wl,--hash-style=gnu''. Read ld(1) for more details on
|
||||
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"::
|
||||
This is often used to set the number of jobs used; for example, `-j2`.
|
||||
Other flags that make accepts can also be passed.
|
||||
|
@ -190,8 +195,9 @@ Options
|
|||
package containing the debug symbols when used with `strip'.
|
||||
|
||||
*lto*;;
|
||||
Enable building packages using link time optimization. Adds '-flto'
|
||||
to both CFLAGS and CXXFLAGS.
|
||||
Enable building packages using link time optimization. Adds the
|
||||
flags specified in LTOFLAGS to CFLAGS, CXXFLAGS and LDFLAGS (or
|
||||
``-flto'' if LTOFLAGS is empty).
|
||||
|
||||
**INTEGRITY_CHECK=(**check1 ...**)**::
|
||||
File integrity checks to use. Multiple checks may be specified; this
|
||||
|
|
|
@ -41,6 +41,7 @@ CHOST="@CHOST@"
|
|||
#CFLAGS="-O2 -pipe"
|
||||
#CXXFLAGS="-O2 -pipe"
|
||||
#LDFLAGS=""
|
||||
#LTOFLAGS="-flto"
|
||||
#RUSTFLAGS="-C opt-level=2"
|
||||
#-- Make Flags: change this for DistCC/SMP systems
|
||||
#MAKEFLAGS="-j2"
|
||||
|
|
|
@ -723,7 +723,6 @@ int SYMEXPORT alpm_pkg_load(alpm_handle_t *handle, const char *filename, int ful
|
|||
int validation = 0;
|
||||
char *sigpath;
|
||||
alpm_pkg_t *pkg_temp;
|
||||
char *packager;
|
||||
|
||||
CHECK_HANDLE(handle, return -1);
|
||||
ASSERT(pkg != NULL, RET_ERR(handle, ALPM_ERR_WRONG_ARGS, -1));
|
||||
|
@ -749,13 +748,7 @@ int SYMEXPORT alpm_pkg_load(alpm_handle_t *handle, const char *filename, int ful
|
|||
char *key = k->data;
|
||||
if(_alpm_key_in_keychain(handle, key) == 0) {
|
||||
pkg_temp = _alpm_pkg_load_internal(handle, filename, full);
|
||||
if(pkg_temp) {
|
||||
packager = pkg_temp->packager;
|
||||
|
||||
} else {
|
||||
packager = NULL;
|
||||
}
|
||||
if(_alpm_key_import(handle, packager, key) == -1) {
|
||||
if(_alpm_key_import(handle, NULL, key) == -1) {
|
||||
fail = 1;
|
||||
}
|
||||
_alpm_pkg_free(pkg_temp);
|
||||
|
|
|
@ -295,10 +295,13 @@ static size_t dload_parseheader_cb(void *ptr, size_t size, size_t nmemb, void *u
|
|||
endptr--;
|
||||
}
|
||||
|
||||
/* avoid information leakage with badly formed headers */
|
||||
if(endptr > fptr) {
|
||||
STRNDUP(payload->content_disp_name, fptr, endptr - fptr + 1,
|
||||
RET_ERR(payload->handle, ALPM_ERR_MEMORY, realsize));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
curl_easy_getinfo(payload->curl, CURLINFO_RESPONSE_CODE, &respcode);
|
||||
if(payload->respcode != respcode) {
|
||||
|
|
|
@ -9,17 +9,17 @@
|
|||
# kraim <biskraim@gmail.com>, 2013
|
||||
# Mosaab Alzoubi <moceap@hotmail.com>, 2013
|
||||
# Mosaab Alzoubi <moceap@hotmail.com>, 2013
|
||||
# Mutaz ismail <mutaz@gmx.net>, 2015
|
||||
# Mutaz ismail <mutaz@gmx.net>, 2015
|
||||
# Mutaz ismail <egypsy79@gmail.com>, 2015
|
||||
# Mutaz ismail <egypsy79@gmail.com>, 2015
|
||||
# سند <0otibi0@gmail.com>, 2013
|
||||
# صفا الفليج <safaalfulaij@hotmail.com>, 2016-2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Arch Linux Pacman package manager\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.archlinux.org/index.php?project=3\n"
|
||||
"POT-Creation-Date: 2021-09-04 16:15+1000\n"
|
||||
"PO-Revision-Date: 2021-05-20 02:25+0000\n"
|
||||
"Last-Translator: Allan McRae <allan@archlinux.org>\n"
|
||||
"POT-Creation-Date: 2022-09-26 21:09+1000\n"
|
||||
"PO-Revision-Date: 2010-11-29 23:17+0000\n"
|
||||
"Last-Translator: سند <0otibi0@gmail.com>, 2013\n"
|
||||
"Language-Team: Arabic (http://www.transifex.com/toofishes/archlinux-pacman/"
|
||||
"language/ar/)\n"
|
||||
"Language: ar\n"
|
||||
|
|
|
@ -12,9 +12,9 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Arch Linux Pacman package manager\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.archlinux.org/index.php?project=3\n"
|
||||
"POT-Creation-Date: 2021-09-04 16:15+1000\n"
|
||||
"PO-Revision-Date: 2021-05-20 02:25+0000\n"
|
||||
"Last-Translator: Allan McRae <allan@archlinux.org>\n"
|
||||
"POT-Creation-Date: 2022-09-26 21:09+1000\n"
|
||||
"PO-Revision-Date: 2010-11-29 23:17+0000\n"
|
||||
"Last-Translator: Ḷḷumex03, 2014\n"
|
||||
"Language-Team: Asturian (http://www.transifex.com/toofishes/archlinux-pacman/"
|
||||
"language/ast/)\n"
|
||||
"Language: ast\n"
|
||||
|
|
|
@ -3,21 +3,22 @@
|
|||
# This file is distributed under the same license as the libalpm package.
|
||||
#
|
||||
# Translators:
|
||||
# xxmn77 <xxmn77@gmail.com>, 2021
|
||||
# xxmn77 <xxmn77@gmail.com>, 2021
|
||||
# xxmn77 <xxmn77@gmail.com>, 2021
|
||||
# Xəyyam Qocayev <xxmn77@gmail.com>, 2021-2022
|
||||
# Xəyyam Qocayev <xxmn77@gmail.com>, 2021
|
||||
# Xəyyam Qocayev <xxmn77@gmail.com>, 2021
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Arch Linux Pacman package manager\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.archlinux.org/index.php?project=3\n"
|
||||
"POT-Creation-Date: 2021-09-04 16:15+1000\n"
|
||||
"PO-Revision-Date: 2021-07-04 11:31+0000\n"
|
||||
"Last-Translator: xxmn77 <xxmn77@gmail.com>\n"
|
||||
"Language-Team: Azerbaijani (Azerbaijan) (http://www.transifex.com/toofishes/archlinux-pacman/language/az_AZ/)\n"
|
||||
"POT-Creation-Date: 2022-09-26 21:09+1000\n"
|
||||
"PO-Revision-Date: 2010-11-29 23:17+0000\n"
|
||||
"Last-Translator: Xəyyam Qocayev <xxmn77@gmail.com>, 2021-2022\n"
|
||||
"Language-Team: Azerbaijani (Azerbaijan) (http://www.transifex.com/toofishes/"
|
||||
"archlinux-pacman/language/az_AZ/)\n"
|
||||
"Language: az_AZ\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: az_AZ\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#: lib/libalpm/add.c:90 lib/libalpm/sync.c:279
|
||||
|
@ -58,7 +59,8 @@ msgstr "%s adı, %s kimi dəyişdirilə bilmədi (%s)\n"
|
|||
#: lib/libalpm/add.c:210
|
||||
#, c-format
|
||||
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
|
||||
#, c-format
|
||||
|
@ -70,14 +72,18 @@ msgstr "%s %s çıxarıla bilmədi: yol çox uzundur"
|
|||
msgid ""
|
||||
"directory permissions differ on %s\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
|
||||
#, c-format
|
||||
msgid ""
|
||||
"directory ownership differs on %s\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
|
||||
#, c-format
|
||||
|
@ -153,7 +159,7 @@ msgstr "təkrarlanmış '%s' verilənlər bazası qeydi\n"
|
|||
#: lib/libalpm/be_local.c:622
|
||||
#, c-format
|
||||
msgid "corrupted database entry '%s'\n"
|
||||
msgstr "pozulmuş '%s' verilənlər bazası qeydi\n"
|
||||
msgstr "'%s' verilənlər bazası qeydi korlanıb\n"
|
||||
|
||||
#: lib/libalpm/be_local.c:722 lib/libalpm/be_local.c:818
|
||||
#: lib/libalpm/be_local.c:958 lib/libalpm/be_local.c:1055
|
||||
|
@ -166,12 +172,14 @@ msgstr "%s faylı açıla bilmədi: %s\n"
|
|||
#: lib/libalpm/be_local.c:738 lib/libalpm/be_sync.c:582
|
||||
#, c-format
|
||||
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
|
||||
#, c-format
|
||||
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
|
||||
#, c-format
|
||||
|
@ -242,12 +250,14 @@ msgstr "'%s' veri. bazası oxuna bilmədi (%s)\n"
|
|||
#: lib/libalpm/be_sync.c:489 lib/libalpm/be_sync.c:494
|
||||
#, c-format
|
||||
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
|
||||
#, c-format
|
||||
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
|
||||
#, c-format
|
||||
|
@ -358,7 +368,8 @@ msgstr "'%s' faylının '%s'dən/dan alınması uğursuz oldu: %s\n"
|
|||
#: lib/libalpm/dload.c:539
|
||||
#, c-format
|
||||
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
|
||||
#, c-format
|
||||
|
@ -473,12 +484,12 @@ msgstr "verilənlər bazası tapıla bilmədi"
|
|||
#: lib/libalpm/error.c:72
|
||||
#, c-format
|
||||
msgid "invalid or corrupted database"
|
||||
msgstr "verilənlər bazası səhvdir və ya pozulub"
|
||||
msgstr "yararsız və ya korlanmış verilənlər bazası"
|
||||
|
||||
#: lib/libalpm/error.c:74
|
||||
#, c-format
|
||||
msgid "invalid or corrupted database (PGP signature)"
|
||||
msgstr "verilənlər bazası səhvdir və ya pozulub (PGP imzası)"
|
||||
msgstr "Yararsız və ya korlanmış verilənlər bazası (PGP imzası)"
|
||||
|
||||
#: lib/libalpm/error.c:76
|
||||
#, c-format
|
||||
|
@ -503,7 +514,7 @@ msgstr "server üçün səhv url"
|
|||
#: lib/libalpm/error.c:85
|
||||
#, c-format
|
||||
msgid "no servers configured for repository"
|
||||
msgstr "saxlama yeri üçün serverlər tənzimlənməyib"
|
||||
msgstr "repozitoriya üçün serverlər tənzimlənməyib"
|
||||
|
||||
#: lib/libalpm/error.c:88
|
||||
#, c-format
|
||||
|
@ -563,17 +574,17 @@ msgstr "əməliyyat ignorepkg səbəbindən ləğv edildi"
|
|||
#: lib/libalpm/error.c:113
|
||||
#, c-format
|
||||
msgid "invalid or corrupted package"
|
||||
msgstr "paket səhvdir və ya pozulub"
|
||||
msgstr "yararsız və ya korlanmış fayl"
|
||||
|
||||
#: lib/libalpm/error.c:115
|
||||
#, c-format
|
||||
msgid "invalid or corrupted package (checksum)"
|
||||
msgstr "paket (yoxlama cəmi) səhvdir və ya pozulub"
|
||||
msgstr "yararsız və ya korlanmış paket (yoxlama_cəmi)"
|
||||
|
||||
#: lib/libalpm/error.c:117
|
||||
#, c-format
|
||||
msgid "invalid or corrupted package (PGP signature)"
|
||||
msgstr "paket (PGP imza) səhvdir və ya pozulub"
|
||||
msgstr "yararsız və ya korlanmış paket (PGP imza)"
|
||||
|
||||
#: lib/libalpm/error.c:119
|
||||
#, c-format
|
||||
|
|
|
@ -3,15 +3,15 @@
|
|||
# This file is distributed under the same license as the libalpm package.
|
||||
#
|
||||
# Translators:
|
||||
# Galin Iskrenov <loot270@abv.bg>, 2017-2019
|
||||
# Galin Iskrenov <loot270@abv.bg>, 2017-2019,2022
|
||||
# Ivailo Monev <xakepa10@gmail.com>, 2014-2016
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Arch Linux Pacman package manager\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.archlinux.org/index.php?project=3\n"
|
||||
"POT-Creation-Date: 2021-09-04 16:15+1000\n"
|
||||
"PO-Revision-Date: 2021-05-20 02:25+0000\n"
|
||||
"Last-Translator: Allan McRae <allan@archlinux.org>\n"
|
||||
"POT-Creation-Date: 2022-09-26 21:09+1000\n"
|
||||
"PO-Revision-Date: 2010-11-29 23:17+0000\n"
|
||||
"Last-Translator: Galin Iskrenov <loot270@abv.bg>, 2017-2019,2022\n"
|
||||
"Language-Team: Bulgarian (http://www.transifex.com/toofishes/archlinux-"
|
||||
"pacman/language/bg/)\n"
|
||||
"Language: bg\n"
|
||||
|
@ -346,7 +346,7 @@ msgstr "Дялът %s е монтиран само за четене\n"
|
|||
#, c-format
|
||||
msgid ""
|
||||
"too many errors from %s, skipping for the remainder of this transaction\n"
|
||||
msgstr ""
|
||||
msgstr "твърде много грешки от %s, прескачане на останалото от транзакцията\n"
|
||||
|
||||
#: lib/libalpm/dload.c:220
|
||||
#, c-format
|
||||
|
@ -383,17 +383,17 @@ msgstr "url '%s' е невалиден\n"
|
|||
#: lib/libalpm/dload.c:893
|
||||
#, c-format
|
||||
msgid "failed to setup a download payload for %s\n"
|
||||
msgstr ""
|
||||
msgstr "Неуспешно настройване на нужното за изтегляне %s\n"
|
||||
|
||||
#: lib/libalpm/dload.c:905
|
||||
#, c-format
|
||||
msgid "curl returned error %d from transfer\n"
|
||||
msgstr ""
|
||||
msgstr "curl върна грешка %d при трансфера\n"
|
||||
|
||||
#: lib/libalpm/dload.c:929
|
||||
#, c-format
|
||||
msgid "curl transfer error: %d\n"
|
||||
msgstr ""
|
||||
msgstr "curl трансферна грешка: %d\n"
|
||||
|
||||
#: lib/libalpm/dload.c:1055 lib/libalpm/sync.c:840
|
||||
#, c-format
|
||||
|
@ -403,7 +403,7 @@ msgstr "неуспех при извличане на файлове\n"
|
|||
#: lib/libalpm/dload.c:1078
|
||||
#, c-format
|
||||
msgid "download completed successfully but no file in the cache\n"
|
||||
msgstr ""
|
||||
msgstr "изтеглянето завърши успешно, но няма файл в кеша\n"
|
||||
|
||||
#: lib/libalpm/error.c:40
|
||||
#, c-format
|
||||
|
@ -533,7 +533,7 @@ msgstr "дублирана цел"
|
|||
#: lib/libalpm/error.c:94
|
||||
#, c-format
|
||||
msgid "duplicate filename"
|
||||
msgstr ""
|
||||
msgstr "дублиране на файлово име"
|
||||
|
||||
#: lib/libalpm/error.c:98
|
||||
#, c-format
|
||||
|
@ -937,7 +937,7 @@ msgstr "не може да се замести %s от %s\n"
|
|||
#: lib/libalpm/sync.c:476
|
||||
#, c-format
|
||||
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
|
||||
#, c-format
|
||||
|
|
|
@ -9,9 +9,9 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Arch Linux Pacman package manager\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.archlinux.org/index.php?project=3\n"
|
||||
"POT-Creation-Date: 2021-09-04 16:15+1000\n"
|
||||
"PO-Revision-Date: 2021-05-20 02:25+0000\n"
|
||||
"Last-Translator: Allan McRae <allan@archlinux.org>\n"
|
||||
"POT-Creation-Date: 2022-09-26 21:09+1000\n"
|
||||
"PO-Revision-Date: 2010-11-29 23:17+0000\n"
|
||||
"Last-Translator: Gwenn M <tornoz@laposte.net>, 2015,2018-2019\n"
|
||||
"Language-Team: Breton (http://www.transifex.com/toofishes/archlinux-pacman/"
|
||||
"language/br/)\n"
|
||||
"Language: br\n"
|
||||
|
@ -19,10 +19,10 @@ msgstr ""
|
|||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"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"
|
||||
"%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 "
|
||||
"&& n % 1000000 == 0) ? 3 : 4);\n"
|
||||
"=71) && (n%100 !=91) ? 0 :(n%10 == 2) && (n%100 != 12) && (n%100 !=72) && "
|
||||
"(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 && n % 1000000 == 0) ? 3 : 4);\n"
|
||||
|
||||
#: lib/libalpm/add.c:90 lib/libalpm/sync.c:279
|
||||
#, c-format
|
||||
|
|
|
@ -16,9 +16,9 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Arch Linux Pacman package manager\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.archlinux.org/index.php?project=3\n"
|
||||
"POT-Creation-Date: 2021-09-04 16:15+1000\n"
|
||||
"PO-Revision-Date: 2021-05-20 08:01+0000\n"
|
||||
"Last-Translator: Davidmp <medipas@gmail.com>\n"
|
||||
"POT-Creation-Date: 2022-09-26 21:09+1000\n"
|
||||
"PO-Revision-Date: 2010-11-29 23:17+0000\n"
|
||||
"Last-Translator: Ramon Buldó <rbuldo@gmail.com>, 2014\n"
|
||||
"Language-Team: Catalan (http://www.transifex.com/toofishes/archlinux-pacman/"
|
||||
"language/ca/)\n"
|
||||
"Language: ca\n"
|
||||
|
@ -969,8 +969,8 @@ msgstr "s'han detectat conflictes de paquets impossibles de resoldre.\n"
|
|||
#, c-format
|
||||
msgid "removing '%s' from target list because it conflicts with '%s'\n"
|
||||
msgstr ""
|
||||
"Se suprimeix \"%s\" de la llista d'objectius perquè té conflictes amb \"%s"
|
||||
"\".\n"
|
||||
"Se suprimeix \"%s\" de la llista d'objectius perquè té conflictes amb "
|
||||
"\"%s\".\n"
|
||||
|
||||
#: lib/libalpm/sync.c:1036
|
||||
#, c-format
|
||||
|
@ -1071,5 +1071,5 @@ msgstr "no existeix la memòria cau %s, es crea...\n"
|
|||
#, c-format
|
||||
msgid "couldn't find or create package cache, using %s instead\n"
|
||||
msgstr ""
|
||||
"No s'ha pogut trobar o crear el paquet de memòria cau; en lloc d'això, s'usa"
|
||||
"%s.\n"
|
||||
"No s'ha pogut trobar o crear el paquet de memòria cau; en lloc d'això, "
|
||||
"s'usa%s.\n"
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
# David Macek <david.macek.0@gmail.com>, 2018
|
||||
# IAmNotImportant, 2017
|
||||
# Jaroslav Lichtblau <jlichtblau@seznam.cz>, 2014-2015
|
||||
# Jaroslav Lichtblau <jlichtblau@seznam.cz>, 2014
|
||||
# Jaroslav Lichtblau <jlichtblau@seznam.cz>, 2014,2022
|
||||
# Lukáš Kucharczyk <lukas@kucharczyk.xyz>, 2020
|
||||
# mmm <markotahal@gmail.com>, 2013
|
||||
# mmm <markotahal@gmail.com>, 2011
|
||||
|
@ -19,9 +19,9 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Arch Linux Pacman package manager\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.archlinux.org/index.php?project=3\n"
|
||||
"POT-Creation-Date: 2021-09-04 16:15+1000\n"
|
||||
"PO-Revision-Date: 2021-05-20 02:25+0000\n"
|
||||
"Last-Translator: Allan McRae <allan@archlinux.org>\n"
|
||||
"POT-Creation-Date: 2022-09-26 21:09+1000\n"
|
||||
"PO-Revision-Date: 2010-11-29 23:17+0000\n"
|
||||
"Last-Translator: Jaroslav Lichtblau <jlichtblau@seznam.cz>, 2014,2022\n"
|
||||
"Language-Team: Czech (http://www.transifex.com/toofishes/archlinux-pacman/"
|
||||
"language/cs/)\n"
|
||||
"Language: cs\n"
|
||||
|
@ -541,7 +541,7 @@ msgstr "duplicitní cíl"
|
|||
#: lib/libalpm/error.c:94
|
||||
#, c-format
|
||||
msgid "duplicate filename"
|
||||
msgstr ""
|
||||
msgstr "duplicitní jméno souboru"
|
||||
|
||||
#: lib/libalpm/error.c:98
|
||||
#, c-format
|
||||
|
|
|
@ -14,9 +14,9 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Arch Linux Pacman package manager\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.archlinux.org/index.php?project=3\n"
|
||||
"POT-Creation-Date: 2021-09-04 16:15+1000\n"
|
||||
"PO-Revision-Date: 2021-05-20 02:25+0000\n"
|
||||
"Last-Translator: Allan McRae <allan@archlinux.org>\n"
|
||||
"POT-Creation-Date: 2022-09-26 21:09+1000\n"
|
||||
"PO-Revision-Date: 2010-11-29 23:17+0000\n"
|
||||
"Last-Translator: scootergrisen, 2017\n"
|
||||
"Language-Team: Danish (http://www.transifex.com/toofishes/archlinux-pacman/"
|
||||
"language/da/)\n"
|
||||
"Language: da\n"
|
||||
|
|
|
@ -8,13 +8,14 @@
|
|||
# 21db53640bd6018c4a99700a4cf2ee28_f478df7 <98034cbca98620f1cf39d6ebdfa44311_785827>, 2019-2020
|
||||
# Frank Theile, 2018
|
||||
# Frank Theile, 2018
|
||||
# Jakob Gahde <j5lx@fmail.co.uk>, 2014-2015
|
||||
# J5lx <j5lx@fmail.co.uk>, 2014-2015
|
||||
# 65138391f015e4001c6ef9d675c96796_707a378 <99e420e9f3ea1b91cb2cbbb4cbc7cd27_2862>, 2013
|
||||
# 65138391f015e4001c6ef9d675c96796_707a378 <99e420e9f3ea1b91cb2cbbb4cbc7cd27_2862>, 2013
|
||||
# Martin Kühne <mysatyre@gmail.com>, 2017
|
||||
# Matthias Gorissen <matthias@archlinux.de>, 2011
|
||||
# Wieland Hoffmann <themineo+transifex@googlemail.com>, 2013
|
||||
# 65138391f015e4001c6ef9d675c96796_707a378 <99e420e9f3ea1b91cb2cbbb4cbc7cd27_2862>, 2013
|
||||
# Roman Volak <romanvolak@web.de>, 2021
|
||||
# Silvan Jegen <s.jegen@gmail.com>, 2015
|
||||
# Wieland Hoffmann <themineo+transifex@googlemail.com>, 2013
|
||||
# Wieland Hoffmann <themineo+transifex@googlemail.com>, 2013
|
||||
|
@ -22,9 +23,9 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Arch Linux Pacman package manager\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.archlinux.org/index.php?project=3\n"
|
||||
"POT-Creation-Date: 2021-09-04 16:15+1000\n"
|
||||
"PO-Revision-Date: 2021-05-20 02:25+0000\n"
|
||||
"Last-Translator: Allan McRae <allan@archlinux.org>\n"
|
||||
"POT-Creation-Date: 2022-09-26 21:09+1000\n"
|
||||
"PO-Revision-Date: 2010-11-29 23:17+0000\n"
|
||||
"Last-Translator: Roman Volak <romanvolak@web.de>, 2021\n"
|
||||
"Language-Team: German (http://www.transifex.com/toofishes/archlinux-pacman/"
|
||||
"language/de/)\n"
|
||||
"Language: de\n"
|
||||
|
@ -368,7 +369,7 @@ msgstr "Die Partition %s ist so eingehängt, dass sie nur gelesen werden kann\n"
|
|||
#, c-format
|
||||
msgid ""
|
||||
"too many errors from %s, skipping for the remainder of this transaction\n"
|
||||
msgstr ""
|
||||
msgstr "zu viele Fehlermeldungen von %s, überspringe den Rest des Vorgangs\n"
|
||||
|
||||
#: lib/libalpm/dload.c:220
|
||||
#, c-format
|
||||
|
@ -405,17 +406,17 @@ msgstr "URL '%s' ist ungültig\n"
|
|||
#: lib/libalpm/dload.c:893
|
||||
#, c-format
|
||||
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
|
||||
#, c-format
|
||||
msgid "curl returned error %d from transfer\n"
|
||||
msgstr ""
|
||||
msgstr "curl(=Programm) meldet Fehler %d von der Übertragung\n"
|
||||
|
||||
#: lib/libalpm/dload.c:929
|
||||
#, c-format
|
||||
msgid "curl transfer error: %d\n"
|
||||
msgstr ""
|
||||
msgstr "curl(=Programm) Übertragungsfehler %d\n"
|
||||
|
||||
#: lib/libalpm/dload.c:1055 lib/libalpm/sync.c:840
|
||||
#, c-format
|
||||
|
@ -425,7 +426,7 @@ msgstr "Konnte einige Dateien nicht übertragen\n"
|
|||
#: lib/libalpm/dload.c:1078
|
||||
#, c-format
|
||||
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
|
||||
#, c-format
|
||||
|
@ -555,7 +556,7 @@ msgstr "Doppelte Ziele"
|
|||
#: lib/libalpm/error.c:94
|
||||
#, c-format
|
||||
msgid "duplicate filename"
|
||||
msgstr ""
|
||||
msgstr "gleicher Dateiname"
|
||||
|
||||
#: lib/libalpm/error.c:98
|
||||
#, c-format
|
||||
|
@ -843,7 +844,7 @@ msgstr ""
|
|||
#: lib/libalpm/signing.c:199 lib/libalpm/signing.c:767
|
||||
#, c-format
|
||||
msgid "GPGME error: %s\n"
|
||||
msgstr ""
|
||||
msgstr "GPGME-Fehler: %s\n"
|
||||
|
||||
#: lib/libalpm/signing.c:274
|
||||
#, c-format
|
||||
|
|
|
@ -13,14 +13,16 @@
|
|||
# ifaigios <ifaigios@gmail.com>, 2015
|
||||
# ifaigios <ifaigios@gmail.com>, 2015
|
||||
# Christos Nouskas <nous@artixlinux.org>, 2011
|
||||
# 492d30ca33568c5819a4f95c90617de1_3730d98 <c1a4cca7e440358a87e394a300ed18e2_882277>, 2021
|
||||
# th_ts <tsesmelistheodore@gmail.com>, 2014
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Arch Linux Pacman package manager\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.archlinux.org/index.php?project=3\n"
|
||||
"POT-Creation-Date: 2021-09-04 16:15+1000\n"
|
||||
"PO-Revision-Date: 2021-05-20 02:25+0000\n"
|
||||
"Last-Translator: Allan McRae <allan@archlinux.org>\n"
|
||||
"POT-Creation-Date: 2022-09-26 21:09+1000\n"
|
||||
"PO-Revision-Date: 2010-11-29 23:17+0000\n"
|
||||
"Last-Translator: 492d30ca33568c5819a4f95c90617de1_3730d98 "
|
||||
"<c1a4cca7e440358a87e394a300ed18e2_882277>, 2021\n"
|
||||
"Language-Team: Greek (http://www.transifex.com/toofishes/archlinux-pacman/"
|
||||
"language/el/)\n"
|
||||
"Language: el\n"
|
||||
|
@ -359,6 +361,8 @@ msgstr "Η κατάτμηση %s είναι προσαρτημένη μόνο γ
|
|||
msgid ""
|
||||
"too many errors from %s, skipping for the remainder of this transaction\n"
|
||||
msgstr ""
|
||||
"υπερβολικά πολλά σφάλματα από %s, παράλειψη για το υπόλοιπο αυτής της "
|
||||
"συναλλαγής\n"
|
||||
|
||||
#: lib/libalpm/dload.c:220
|
||||
#, c-format
|
||||
|
@ -404,7 +408,7 @@ msgstr ""
|
|||
#: lib/libalpm/dload.c:929
|
||||
#, c-format
|
||||
msgid "curl transfer error: %d\n"
|
||||
msgstr ""
|
||||
msgstr "σφάλμα μεταφοράς curl: %d\n"
|
||||
|
||||
#: lib/libalpm/dload.c:1055 lib/libalpm/sync.c:840
|
||||
#, c-format
|
||||
|
@ -414,7 +418,7 @@ msgstr "σφάλμα λήψης μερικών αρχείων\n"
|
|||
#: lib/libalpm/dload.c:1078
|
||||
#, c-format
|
||||
msgid "download completed successfully but no file in the cache\n"
|
||||
msgstr ""
|
||||
msgstr "η λήψη ολοκληρώθηκε επιτυχώς αλλά δίχως αρχείο στην κρυφή μνήμη\n"
|
||||
|
||||
#: lib/libalpm/error.c:40
|
||||
#, c-format
|
||||
|
@ -544,7 +548,7 @@ msgstr "διπλότυπος στόχος"
|
|||
#: lib/libalpm/error.c:94
|
||||
#, c-format
|
||||
msgid "duplicate filename"
|
||||
msgstr ""
|
||||
msgstr "διπλότυπο όνομα αρχείου"
|
||||
|
||||
#: lib/libalpm/error.c:98
|
||||
#, c-format
|
||||
|
@ -948,7 +952,7 @@ msgstr "αδυναμία αντικατάστασης του %s από το %s\n
|
|||
#: lib/libalpm/sync.c:476
|
||||
#, c-format
|
||||
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
|
||||
#, c-format
|
||||
|
|
|
@ -10,9 +10,9 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Arch Linux Pacman package manager\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.archlinux.org/index.php?project=3\n"
|
||||
"POT-Creation-Date: 2021-09-04 16:15+1000\n"
|
||||
"PO-Revision-Date: 2021-05-20 02:25+0000\n"
|
||||
"Last-Translator: Allan McRae <allan@archlinux.org>\n"
|
||||
"POT-Creation-Date: 2022-09-26 21:09+1000\n"
|
||||
"PO-Revision-Date: 2010-11-29 23:17+0000\n"
|
||||
"Last-Translator: Dan McGee <dpmcgee@gmail.com>, 2011\n"
|
||||
"Language-Team: English (United Kingdom) (http://www.transifex.com/toofishes/"
|
||||
"archlinux-pacman/language/en_GB/)\n"
|
||||
"Language: en_GB\n"
|
||||
|
|
|
@ -12,9 +12,9 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Arch Linux Pacman package manager\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.archlinux.org/index.php?project=3\n"
|
||||
"POT-Creation-Date: 2021-09-04 16:15+1000\n"
|
||||
"PO-Revision-Date: 2021-05-20 02:25+0000\n"
|
||||
"Last-Translator: Allan McRae <allan@archlinux.org>\n"
|
||||
"POT-Creation-Date: 2022-09-26 21:09+1000\n"
|
||||
"PO-Revision-Date: 2010-11-29 23:17+0000\n"
|
||||
"Last-Translator: Sebastien Zurfluh <sebastien.zurfluh@gmail.com>, 2017\n"
|
||||
"Language-Team: Esperanto (http://www.transifex.com/toofishes/archlinux-"
|
||||
"pacman/language/eo/)\n"
|
||||
"Language: eo\n"
|
||||
|
|
|
@ -11,28 +11,29 @@
|
|||
# Leonel <leonelmalon@gmail.com>, 2013
|
||||
# Leonel <leonelmalon@gmail.com>, 2013
|
||||
# neiko <neikokz+tsfx@gmail.com>, 2011
|
||||
# prflr88 <prflr88@gmail.com>, 2017
|
||||
# prflr88 <prflr88@gmail.com>, 2013-2016
|
||||
# prflr88 <prflr88@gmail.com>, 2017
|
||||
# Pablo Lezaeta Reyes <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
|
||||
# picodotdev <pico.dev@gmail.com>, 2016,2019,2021
|
||||
# prflr88 <prflr88@gmail.com>, 2017
|
||||
# picodotdev <pico.dev@gmail.com>, 2016,2019,2021-2022
|
||||
# Pablo Lezaeta Reyes <prflr88@gmail.com>, 2017
|
||||
# Swyter <Swyterzone@gmail.com>, 2015,2017-2018,2021
|
||||
# Swyter <Swyterzone@gmail.com>, 2021
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Arch Linux Pacman package manager\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.archlinux.org/index.php?project=3\n"
|
||||
"POT-Creation-Date: 2021-09-04 16:15+1000\n"
|
||||
"PO-Revision-Date: 2021-05-20 04:57+0000\n"
|
||||
"Last-Translator: Swyter <Swyterzone@gmail.com>\n"
|
||||
"POT-Creation-Date: 2022-09-26 21:09+1000\n"
|
||||
"PO-Revision-Date: 2010-11-29 23:17+0000\n"
|
||||
"Last-Translator: picodotdev <pico.dev@gmail.com>, 2016,2019,2021-2022\n"
|
||||
"Language-Team: Spanish (http://www.transifex.com/toofishes/archlinux-pacman/"
|
||||
"language/es/)\n"
|
||||
"Language: es\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"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
|
||||
#, c-format
|
||||
|
@ -295,7 +296,7 @@ msgstr "la ruta de la base de datos no está definida\n"
|
|||
#: lib/libalpm/deps.c:184
|
||||
#, c-format
|
||||
msgid "dependency cycle detected:\n"
|
||||
msgstr "se ha detectado un bucle de dependencias:\n"
|
||||
msgstr "detectado bucle de dependencias:\n"
|
||||
|
||||
#: lib/libalpm/deps.c:187
|
||||
#, c-format
|
||||
|
@ -305,7 +306,7 @@ msgstr "%s se quitará después de su dependencia %s\n"
|
|||
#: lib/libalpm/deps.c:191
|
||||
#, c-format
|
||||
msgid "%s will be installed before its %s dependency\n"
|
||||
msgstr "%s se instalará antes de su dependencia %s\n"
|
||||
msgstr "%s se instalará antes que su dependencia %s\n"
|
||||
|
||||
#: lib/libalpm/deps.c:666 lib/libalpm/deps.c:697
|
||||
#, c-format
|
||||
|
@ -429,7 +430,7 @@ msgstr "error de transferencia de curl: %d\n"
|
|||
#: lib/libalpm/dload.c:1055 lib/libalpm/sync.c:840
|
||||
#, c-format
|
||||
msgid "failed to retrieve some files\n"
|
||||
msgstr "no se pudieron recibir algunos archivos\n"
|
||||
msgstr "no se pudo recibir algunos archivos\n"
|
||||
|
||||
#: lib/libalpm/dload.c:1078
|
||||
#, c-format
|
||||
|
@ -590,7 +591,7 @@ msgstr ""
|
|||
#: lib/libalpm/error.c:106
|
||||
#, c-format
|
||||
msgid "failed to run transaction hooks"
|
||||
msgstr "no se pudieron ejecutar los «hooks»"
|
||||
msgstr "no se pudo ejecutar los «hooks»"
|
||||
|
||||
#: lib/libalpm/error.c:109
|
||||
#, c-format
|
||||
|
@ -630,7 +631,7 @@ msgstr "no se pudo abrir el archivo del paquete"
|
|||
#: lib/libalpm/error.c:123
|
||||
#, c-format
|
||||
msgid "cannot remove all files for package"
|
||||
msgstr "no se pudieron quitar todos los archivos del paquete"
|
||||
msgstr "no se pudo quitar todos los archivos del paquete"
|
||||
|
||||
#: lib/libalpm/error.c:125
|
||||
#, c-format
|
||||
|
@ -655,7 +656,7 @@ msgstr "firma PGP no válida"
|
|||
#: lib/libalpm/error.c:135 lib/libalpm/hook.c:514
|
||||
#, c-format
|
||||
msgid "could not satisfy dependencies"
|
||||
msgstr "no se pudieron satisfacer las dependencias"
|
||||
msgstr "no se pudo satisfacer las dependencias"
|
||||
|
||||
#: lib/libalpm/error.c:137
|
||||
#, c-format
|
||||
|
@ -670,7 +671,7 @@ msgstr "archivos en conflicto"
|
|||
#: lib/libalpm/error.c:142
|
||||
#, c-format
|
||||
msgid "failed to retrieve some files"
|
||||
msgstr "no se pudieron descargar algunos archivos"
|
||||
msgstr "no se pudo descargar algunos archivos"
|
||||
|
||||
#: lib/libalpm/error.c:144
|
||||
#, c-format
|
||||
|
@ -807,8 +808,7 @@ msgstr "no se pudo crear la carpeta: %s: %s\n"
|
|||
#: lib/libalpm/package.c:598
|
||||
#, c-format
|
||||
msgid "could not fully load metadata for package %s-%s\n"
|
||||
msgstr ""
|
||||
"no se pudieron cargar completamente los metadatos para el paquete %s-%s\n"
|
||||
msgstr "no se pudo cargar completamente los metadatos para el paquete %s-%s\n"
|
||||
|
||||
#: lib/libalpm/remove.c:111
|
||||
#, c-format
|
||||
|
|
|
@ -12,24 +12,25 @@
|
|||
# ice, 2016
|
||||
# Leonel <leonelmalon@gmail.com>, 2013
|
||||
# neiko <neikokz+tsfx@gmail.com>, 2011
|
||||
# prflr88 <prflr88@gmail.com>, 2015,2017
|
||||
# prflr88 <prflr88@gmail.com>, 2015
|
||||
# prflr88 <prflr88@gmail.com>, 2015,2017
|
||||
# prflr88 <prflr88@gmail.com>, 2015,2017
|
||||
# Pablo Lezaeta Reyes <prflr88@gmail.com>, 2015,2017
|
||||
# Pablo Lezaeta Reyes <prflr88@gmail.com>, 2015
|
||||
# Pablo Lezaeta Reyes <prflr88@gmail.com>, 2015,2017
|
||||
# Pablo Lezaeta Reyes <prflr88@gmail.com>, 2015,2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Arch Linux Pacman package manager\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.archlinux.org/index.php?project=3\n"
|
||||
"POT-Creation-Date: 2021-09-04 16:15+1000\n"
|
||||
"PO-Revision-Date: 2021-05-20 02:25+0000\n"
|
||||
"Last-Translator: Allan McRae <allan@archlinux.org>\n"
|
||||
"POT-Creation-Date: 2022-09-26 21:09+1000\n"
|
||||
"PO-Revision-Date: 2010-11-29 23:17+0000\n"
|
||||
"Last-Translator: Pablo Lezaeta Reyes <prflr88@gmail.com>, 2015,2017\n"
|
||||
"Language-Team: Spanish (Latin America) (http://www.transifex.com/toofishes/"
|
||||
"archlinux-pacman/language/es_419/)\n"
|
||||
"Language: es_419\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"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
|
||||
#, c-format
|
||||
|
|
|
@ -9,9 +9,9 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Arch Linux Pacman package manager\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.archlinux.org/index.php?project=3\n"
|
||||
"POT-Creation-Date: 2021-09-04 16:15+1000\n"
|
||||
"PO-Revision-Date: 2021-05-20 02:25+0000\n"
|
||||
"Last-Translator: Allan McRae <allan@archlinux.org>\n"
|
||||
"POT-Creation-Date: 2022-09-26 21:09+1000\n"
|
||||
"PO-Revision-Date: 2010-11-29 23:17+0000\n"
|
||||
"Last-Translator: Osoitz <oelkoro@gmail.com>, 2013\n"
|
||||
"Language-Team: Basque (http://www.transifex.com/toofishes/archlinux-pacman/"
|
||||
"language/eu/)\n"
|
||||
"Language: eu\n"
|
||||
|
|
|
@ -8,9 +8,9 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Arch Linux Pacman package manager\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.archlinux.org/index.php?project=3\n"
|
||||
"POT-Creation-Date: 2021-09-04 16:15+1000\n"
|
||||
"PO-Revision-Date: 2021-05-20 02:25+0000\n"
|
||||
"Last-Translator: Allan McRae <allan@archlinux.org>\n"
|
||||
"POT-Creation-Date: 2022-09-26 21:09+1000\n"
|
||||
"PO-Revision-Date: 2010-11-29 23:17+0000\n"
|
||||
"Last-Translator: Osoitz <oelkoro@gmail.com>, 2013\n"
|
||||
"Language-Team: Basque (Spain) (http://www.transifex.com/toofishes/archlinux-"
|
||||
"pacman/language/eu_ES/)\n"
|
||||
"Language: eu_ES\n"
|
||||
|
|
|
@ -18,9 +18,9 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Arch Linux Pacman package manager\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.archlinux.org/index.php?project=3\n"
|
||||
"POT-Creation-Date: 2021-09-04 16:15+1000\n"
|
||||
"PO-Revision-Date: 2021-05-20 02:25+0000\n"
|
||||
"Last-Translator: Allan McRae <allan@archlinux.org>\n"
|
||||
"POT-Creation-Date: 2022-09-26 21:09+1000\n"
|
||||
"PO-Revision-Date: 2010-11-29 23:17+0000\n"
|
||||
"Last-Translator: Sami Korkalainen, 2018\n"
|
||||
"Language-Team: Finnish (http://www.transifex.com/toofishes/archlinux-pacman/"
|
||||
"language/fi/)\n"
|
||||
"Language: fi\n"
|
||||
|
|
|
@ -20,16 +20,17 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Arch Linux Pacman package manager\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.archlinux.org/index.php?project=3\n"
|
||||
"POT-Creation-Date: 2021-09-04 16:15+1000\n"
|
||||
"PO-Revision-Date: 2021-07-05 08:09+0000\n"
|
||||
"Last-Translator: Charles Monzat <c.monzat@laposte.net>\n"
|
||||
"POT-Creation-Date: 2022-09-26 21:09+1000\n"
|
||||
"PO-Revision-Date: 2010-11-29 23:17+0000\n"
|
||||
"Last-Translator: Xavier Devlamynck <magicrhesus@ouranos.be>, 2011\n"
|
||||
"Language-Team: French (http://www.transifex.com/toofishes/archlinux-pacman/"
|
||||
"language/fr/)\n"
|
||||
"Language: fr\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
"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
|
||||
#, c-format
|
||||
|
|
|
@ -15,9 +15,9 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Arch Linux Pacman package manager\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.archlinux.org/index.php?project=3\n"
|
||||
"POT-Creation-Date: 2021-09-04 16:15+1000\n"
|
||||
"PO-Revision-Date: 2021-05-20 02:25+0000\n"
|
||||
"Last-Translator: Allan McRae <allan@archlinux.org>\n"
|
||||
"POT-Creation-Date: 2022-09-26 21:09+1000\n"
|
||||
"PO-Revision-Date: 2010-11-29 23:17+0000\n"
|
||||
"Last-Translator: Alexandre Filgueira <faidoc@gmail.com>, 2013\n"
|
||||
"Language-Team: Galician (http://www.transifex.com/toofishes/archlinux-pacman/"
|
||||
"language/gl/)\n"
|
||||
"Language: gl\n"
|
||||
|
|
|
@ -8,9 +8,9 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Arch Linux Pacman package manager\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.archlinux.org/index.php?project=3\n"
|
||||
"POT-Creation-Date: 2021-09-04 16:15+1000\n"
|
||||
"PO-Revision-Date: 2021-05-20 14:03+0000\n"
|
||||
"Last-Translator: Panwar108 <caspian7pena@gmail.com>\n"
|
||||
"POT-Creation-Date: 2022-09-26 21:09+1000\n"
|
||||
"PO-Revision-Date: 2010-11-29 23:17+0000\n"
|
||||
"Last-Translator: Panwar108 <caspian7pena@gmail.com>, 2018,2020-2021\n"
|
||||
"Language-Team: Hindi (http://www.transifex.com/toofishes/archlinux-pacman/"
|
||||
"language/hi/)\n"
|
||||
"Language: hi\n"
|
||||
|
|
|
@ -9,17 +9,17 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Arch Linux Pacman package manager\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.archlinux.org/index.php?project=3\n"
|
||||
"POT-Creation-Date: 2021-09-04 16:15+1000\n"
|
||||
"PO-Revision-Date: 2021-05-20 02:25+0000\n"
|
||||
"Last-Translator: Allan McRae <allan@archlinux.org>\n"
|
||||
"POT-Creation-Date: 2022-09-26 21:09+1000\n"
|
||||
"PO-Revision-Date: 2010-11-29 23:17+0000\n"
|
||||
"Last-Translator: Viktor Coric <viktor_coric94@hotmail.com>, 2016\n"
|
||||
"Language-Team: Croatian (http://www.transifex.com/toofishes/archlinux-pacman/"
|
||||
"language/hr/)\n"
|
||||
"Language: hr\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
|
||||
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
|
||||
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && "
|
||||
"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
|
||||
|
||||
#: lib/libalpm/add.c:90 lib/libalpm/sync.c:279
|
||||
#, c-format
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
# This file is distributed under the same license as the libalpm package.
|
||||
#
|
||||
# Translators:
|
||||
# Ács Zoltán <acszoltan111@gmail.com>, 2021
|
||||
# c2e331a438add123670fbf39846b5de3_8c31b08 <d7888a78469511cd116b0058dd23f760_811520>, 2021
|
||||
# Balló György <ballogyor@gmail.com>, 2014
|
||||
# Balló György <ballogyor@gmail.com>, 2011,2014,2016
|
||||
# Gábor Nagy <ngaba@bibl.u-szeged.hu>, 2011,2013
|
||||
|
@ -20,9 +20,9 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Arch Linux Pacman package manager\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.archlinux.org/index.php?project=3\n"
|
||||
"POT-Creation-Date: 2021-09-04 16:15+1000\n"
|
||||
"PO-Revision-Date: 2021-06-19 17:38+0000\n"
|
||||
"Last-Translator: Ács Zoltán <acszoltan111@gmail.com>\n"
|
||||
"POT-Creation-Date: 2022-09-26 21:09+1000\n"
|
||||
"PO-Revision-Date: 2010-11-29 23:17+0000\n"
|
||||
"Last-Translator: user14 <nleknh@gmail.com>, 2019\n"
|
||||
"Language-Team: Hungarian (http://www.transifex.com/toofishes/archlinux-"
|
||||
"pacman/language/hu/)\n"
|
||||
"Language: hu\n"
|
||||
|
|
|
@ -16,9 +16,9 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Arch Linux Pacman package manager\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.archlinux.org/index.php?project=3\n"
|
||||
"POT-Creation-Date: 2021-09-04 16:15+1000\n"
|
||||
"PO-Revision-Date: 2021-05-20 02:25+0000\n"
|
||||
"Last-Translator: Allan McRae <allan@archlinux.org>\n"
|
||||
"POT-Creation-Date: 2022-09-26 21:09+1000\n"
|
||||
"PO-Revision-Date: 2010-11-29 23:17+0000\n"
|
||||
"Last-Translator: se7entime <se7entime@disroot.org>, 2013,2015\n"
|
||||
"Language-Team: Indonesian (http://www.transifex.com/toofishes/archlinux-"
|
||||
"pacman/language/id/)\n"
|
||||
"Language: id\n"
|
||||
|
|
|
@ -9,22 +9,24 @@
|
|||
# d574d4bb40c84861791a694a999cce69_9aabecb <ec34fbc10d74f76d8160c2aae04a84b4_6702>, 2014
|
||||
# d574d4bb40c84861791a694a999cce69_9aabecb <ec34fbc10d74f76d8160c2aae04a84b4_6702>, 2014
|
||||
# Dan McGee <dpmcgee@gmail.com>, 2011
|
||||
# Giovanni Scafora <giovanni@archlinux.org>, 2011-2013,2015
|
||||
# Giovanni Scafora <scafora.giovanni@gmail.com>, 2011-2013,2015,2022
|
||||
# ~Smlb <smlb@riseup.net>, 2014
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Arch Linux Pacman package manager\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.archlinux.org/index.php?project=3\n"
|
||||
"POT-Creation-Date: 2021-09-04 16:15+1000\n"
|
||||
"PO-Revision-Date: 2021-05-20 02:25+0000\n"
|
||||
"Last-Translator: Allan McRae <allan@archlinux.org>\n"
|
||||
"POT-Creation-Date: 2022-09-26 21:09+1000\n"
|
||||
"PO-Revision-Date: 2010-11-29 23:17+0000\n"
|
||||
"Last-Translator: Giovanni Scafora <scafora.giovanni@gmail.com>, "
|
||||
"2011-2013,2015,2022\n"
|
||||
"Language-Team: Italian (http://www.transifex.com/toofishes/archlinux-pacman/"
|
||||
"language/it/)\n"
|
||||
"Language: it\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"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
|
||||
#, c-format
|
||||
|
@ -364,7 +366,7 @@ msgstr "La partizione %s è montata in sola lettura\n"
|
|||
#, c-format
|
||||
msgid ""
|
||||
"too many errors from %s, skipping for the remainder of this transaction\n"
|
||||
msgstr ""
|
||||
msgstr "troppi errori da %s, ignoro il resto dell'operazione\n"
|
||||
|
||||
#: lib/libalpm/dload.c:220
|
||||
#, c-format
|
||||
|
@ -401,17 +403,17 @@ msgstr "l'url '%s' non è valido\n"
|
|||
#: lib/libalpm/dload.c:893
|
||||
#, c-format
|
||||
msgid "failed to setup a download payload for %s\n"
|
||||
msgstr ""
|
||||
msgstr "impossibile impostare un payload di download per %s\n"
|
||||
|
||||
#: lib/libalpm/dload.c:905
|
||||
#, c-format
|
||||
msgid "curl returned error %d from transfer\n"
|
||||
msgstr ""
|
||||
msgstr "curl ha restituito l'errore %d dal download\n"
|
||||
|
||||
#: lib/libalpm/dload.c:929
|
||||
#, c-format
|
||||
msgid "curl transfer error: %d\n"
|
||||
msgstr ""
|
||||
msgstr "errore di curl: %d\n"
|
||||
|
||||
#: lib/libalpm/dload.c:1055 lib/libalpm/sync.c:840
|
||||
#, c-format
|
||||
|
@ -421,7 +423,7 @@ msgstr "impossibile scaricare alcuni file\n"
|
|||
#: lib/libalpm/dload.c:1078
|
||||
#, c-format
|
||||
msgid "download completed successfully but no file in the cache\n"
|
||||
msgstr ""
|
||||
msgstr "download completato con successo ma nessun file nella cache\n"
|
||||
|
||||
#: lib/libalpm/error.c:40
|
||||
#, c-format
|
||||
|
@ -551,7 +553,7 @@ msgstr "pacchetto duplicato"
|
|||
#: lib/libalpm/error.c:94
|
||||
#, c-format
|
||||
msgid "duplicate filename"
|
||||
msgstr ""
|
||||
msgstr "il nome del file è duplicato"
|
||||
|
||||
#: lib/libalpm/error.c:98
|
||||
#, c-format
|
||||
|
@ -686,7 +688,7 @@ msgstr "si è verificato un errore lanciando il downloader esterno"
|
|||
#: lib/libalpm/error.c:159
|
||||
#, c-format
|
||||
msgid "compiled without signature support"
|
||||
msgstr "compilato senza supporto per le firme"
|
||||
msgstr "compilato senza supporto delle firme"
|
||||
|
||||
#: lib/libalpm/error.c:162
|
||||
#, c-format
|
||||
|
@ -741,29 +743,29 @@ msgstr "si è verificato un errore durante la lettura dell'hook %s: %s\n"
|
|||
#: lib/libalpm/hook.c:162 lib/libalpm/hook.c:206 lib/libalpm/hook.c:248
|
||||
#, c-format
|
||||
msgid "hook %s line %d: invalid option %s\n"
|
||||
msgstr "hook %s, riga %d: opzione non valida: %s\n"
|
||||
msgstr "hook %s riga %d: l'opzione %s non è valida\n"
|
||||
|
||||
#: lib/libalpm/hook.c:172
|
||||
#, c-format
|
||||
msgid "hook %s line %d: invalid section %s\n"
|
||||
msgstr "hook %s, riga %d: sezione non valida: %s\n"
|
||||
msgstr "hook %s riga %d: la sezione %s non è valida\n"
|
||||
|
||||
#: lib/libalpm/hook.c:184 lib/libalpm/hook.c:199 lib/libalpm/hook.c:218
|
||||
#: lib/libalpm/hook.c:241
|
||||
#, c-format
|
||||
msgid "hook %s line %d: invalid value %s\n"
|
||||
msgstr "hook %s, riga %d: valore non valido: %s\n"
|
||||
msgstr "hook %s riga %d: il valore %s non è valido\n"
|
||||
|
||||
#: lib/libalpm/hook.c:188 lib/libalpm/hook.c:211 lib/libalpm/hook.c:222
|
||||
#: lib/libalpm/hook.c:236
|
||||
#, c-format
|
||||
msgid "hook %s line %d: overwriting previous definition of %s\n"
|
||||
msgstr "hook %s, riga %d: sovrascrivo la definizione precedente di %s\n"
|
||||
msgstr "hook %s riga %d: sovrascrivo la definizione precedente di %s\n"
|
||||
|
||||
#: lib/libalpm/hook.c:243
|
||||
#, c-format
|
||||
msgid "hook %s line %d: unable to set option (%s)\n"
|
||||
msgstr "hook %s, riga %d: impossibile impostare l'opzione (%s)\n"
|
||||
msgstr "hook %s riga %d: impossibile impostare l'opzione (%s)\n"
|
||||
|
||||
#: lib/libalpm/hook.c:513
|
||||
#, c-format
|
||||
|
@ -813,7 +815,8 @@ msgstr "impossibile rimuovere il file '%s': %s\n"
|
|||
#: lib/libalpm/remove.c:403 lib/libalpm/remove.c:412
|
||||
#, c-format
|
||||
msgid "could not backup %s due to PATH_MAX overflow\n"
|
||||
msgstr "impossibile eseguire il backup %s a causa di un overflow di PATH_MAX\n"
|
||||
msgstr ""
|
||||
"impossibile eseguire il backup di %s a causa di un overflow di PATH_MAX\n"
|
||||
|
||||
#: lib/libalpm/remove.c:554
|
||||
#, c-format
|
||||
|
@ -833,7 +836,7 @@ msgstr "impossibile rimuovere la voce '%s' dalla cache\n"
|
|||
#: lib/libalpm/signing.c:163
|
||||
#, c-format
|
||||
msgid "Public keyring not found; have you run '%s'?\n"
|
||||
msgstr "Portachiavi pubblico non trovato; hai eseguito '%s'?\n"
|
||||
msgstr "Il portachiavi pubblico non è stato trovato; hai eseguito '%s'?\n"
|
||||
|
||||
#: lib/libalpm/signing.c:199 lib/libalpm/signing.c:767
|
||||
#, c-format
|
||||
|
@ -848,7 +851,7 @@ msgstr "ricerca della chiave %s tramite WKD in corso\n"
|
|||
#: lib/libalpm/signing.c:283
|
||||
#, c-format
|
||||
msgid "gpg error: %s\n"
|
||||
msgstr "errore GPG: %s\n"
|
||||
msgstr "errore gpg: %s\n"
|
||||
|
||||
#: lib/libalpm/signing.c:430 lib/libalpm/signing.c:503
|
||||
#, c-format
|
||||
|
@ -894,12 +897,12 @@ msgstr ""
|
|||
#: lib/libalpm/signing.c:968
|
||||
#, c-format
|
||||
msgid "%s: key \"%s\" is unknown\n"
|
||||
msgstr "%s: chiave \"%s\" sconosciuta\n"
|
||||
msgstr "%s: la chiave \"%s\" è sconosciuta\n"
|
||||
|
||||
#: lib/libalpm/signing.c:977
|
||||
#, c-format
|
||||
msgid "%s: key \"%s\" is disabled\n"
|
||||
msgstr "%s: chiave \"%s\" disabilitata\n"
|
||||
msgstr "%s: la chiave \"%s\" è disabilitata\n"
|
||||
|
||||
#: lib/libalpm/signing.c:981
|
||||
#, c-format
|
||||
|
@ -915,13 +918,13 @@ msgstr "%s: la firma di \"%s\" non è valida\n"
|
|||
#: lib/libalpm/signing.c:1183
|
||||
#, c-format
|
||||
msgid "%s: signature format error\n"
|
||||
msgstr "%s: errore formato firma\n"
|
||||
msgstr "%s: errore formato della firma\n"
|
||||
|
||||
#: lib/libalpm/signing.c:1136 lib/libalpm/signing.c:1169
|
||||
#: lib/libalpm/signing.c:1177
|
||||
#, c-format
|
||||
msgid "%s: unsupported signature format\n"
|
||||
msgstr "%s: formato firma non supportato\n"
|
||||
msgstr "%s: il formato della firma non è supportato\n"
|
||||
|
||||
#: lib/libalpm/sync.c:96
|
||||
#, c-format
|
||||
|
@ -957,7 +960,7 @@ msgstr "impossibile sostituire %s con %s\n"
|
|||
#: lib/libalpm/sync.c:476
|
||||
#, c-format
|
||||
msgid "packages %s and %s have the same filename: %s\n"
|
||||
msgstr ""
|
||||
msgstr "i pacchetti %s e %s hanno lo stesso nome: %s\n"
|
||||
|
||||
#: lib/libalpm/sync.c:542 lib/libalpm/sync.c:612
|
||||
#, c-format
|
||||
|
|
|
@ -12,9 +12,9 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Arch Linux Pacman package manager\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.archlinux.org/index.php?project=3\n"
|
||||
"POT-Creation-Date: 2021-09-04 16:15+1000\n"
|
||||
"PO-Revision-Date: 2021-05-25 05:28+0000\n"
|
||||
"Last-Translator: kusakata\n"
|
||||
"POT-Creation-Date: 2022-09-26 21:09+1000\n"
|
||||
"PO-Revision-Date: 2010-11-29 23:17+0000\n"
|
||||
"Last-Translator: Satoru Abe <s@polamjag.info>, 2015\n"
|
||||
"Language-Team: Japanese (http://www.transifex.com/toofishes/archlinux-pacman/"
|
||||
"language/ja/)\n"
|
||||
"Language: ja\n"
|
||||
|
|
|
@ -9,9 +9,9 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Arch Linux Pacman package manager\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.archlinux.org/index.php?project=3\n"
|
||||
"POT-Creation-Date: 2021-09-04 16:15+1000\n"
|
||||
"PO-Revision-Date: 2021-05-20 02:25+0000\n"
|
||||
"Last-Translator: Allan McRae <allan@archlinux.org>\n"
|
||||
"POT-Creation-Date: 2022-09-26 21:09+1000\n"
|
||||
"PO-Revision-Date: 2010-11-29 23:17+0000\n"
|
||||
"Last-Translator: Dan McGee <dpmcgee@gmail.com>, 2011\n"
|
||||
"Language-Team: Kazakh (http://www.transifex.com/toofishes/archlinux-pacman/"
|
||||
"language/kk/)\n"
|
||||
"Language: kk\n"
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
# This file is distributed under the same license as the libalpm package.
|
||||
#
|
||||
# Translators:
|
||||
# 배태길 <esrevinu@gmail.com>, 2017-2019
|
||||
# 배태길 <esrevinu@gmail.com>, 2017-2019,2021
|
||||
# Ji-Hyeon Gim <potatogim@potatogim.net>, 2014,2018
|
||||
# Thomas Sungjin Kang <potopro@gmail.com>, 2012-2013
|
||||
# Thomas Sungjin Kang <potopro@gmail.com>, 2013
|
||||
|
@ -16,9 +16,9 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Arch Linux Pacman package manager\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.archlinux.org/index.php?project=3\n"
|
||||
"POT-Creation-Date: 2021-09-04 16:15+1000\n"
|
||||
"PO-Revision-Date: 2021-05-20 02:25+0000\n"
|
||||
"Last-Translator: Allan McRae <allan@archlinux.org>\n"
|
||||
"POT-Creation-Date: 2022-09-26 21:09+1000\n"
|
||||
"PO-Revision-Date: 2010-11-29 23:17+0000\n"
|
||||
"Last-Translator: 배태길 <esrevinu@gmail.com>, 2017-2019,2021\n"
|
||||
"Language-Team: Korean (http://www.transifex.com/toofishes/archlinux-pacman/"
|
||||
"language/ko/)\n"
|
||||
"Language: ko\n"
|
||||
|
@ -351,7 +351,7 @@ msgstr "파티션 %s가 읽기 전용으로 마운트되었습니다.\n"
|
|||
#, c-format
|
||||
msgid ""
|
||||
"too many errors from %s, skipping for the remainder of this transaction\n"
|
||||
msgstr ""
|
||||
msgstr "너무 많은 오류, 서버: %s, 이 처리의 나머지를 위해서 건너뜀\n"
|
||||
|
||||
#: lib/libalpm/dload.c:220
|
||||
#, c-format
|
||||
|
@ -386,17 +386,17 @@ msgstr "url '%s'가 잘못되었습니다.\n"
|
|||
#: lib/libalpm/dload.c:893
|
||||
#, c-format
|
||||
msgid "failed to setup a download payload for %s\n"
|
||||
msgstr ""
|
||||
msgstr "다운로드 페이로드를 구성하지 못함, 대상: %s\n"
|
||||
|
||||
#: lib/libalpm/dload.c:905
|
||||
#, c-format
|
||||
msgid "curl returned error %d from transfer\n"
|
||||
msgstr ""
|
||||
msgstr "curl이 전송 중 오류 %d을 돌려 줌\n"
|
||||
|
||||
#: lib/libalpm/dload.c:929
|
||||
#, c-format
|
||||
msgid "curl transfer error: %d\n"
|
||||
msgstr ""
|
||||
msgstr "curl 전송 오류: %d\n"
|
||||
|
||||
#: lib/libalpm/dload.c:1055 lib/libalpm/sync.c:840
|
||||
#, c-format
|
||||
|
@ -406,7 +406,7 @@ msgstr "일부 파일을 가져오지 못했습니다.\n"
|
|||
#: lib/libalpm/dload.c:1078
|
||||
#, c-format
|
||||
msgid "download completed successfully but no file in the cache\n"
|
||||
msgstr ""
|
||||
msgstr "다운로드를 성공적으로 완료하였지만 캐시에 파일이 없음\n"
|
||||
|
||||
#: lib/libalpm/error.c:40
|
||||
#, c-format
|
||||
|
@ -536,7 +536,7 @@ msgstr "대상이 중복되었습니다."
|
|||
#: lib/libalpm/error.c:94
|
||||
#, c-format
|
||||
msgid "duplicate filename"
|
||||
msgstr ""
|
||||
msgstr "중복 파일이름"
|
||||
|
||||
#: lib/libalpm/error.c:98
|
||||
#, c-format
|
||||
|
@ -940,7 +940,7 @@ msgstr "%s를 %s로 대체할 수 없습니다.\n"
|
|||
#: lib/libalpm/sync.c:476
|
||||
#, c-format
|
||||
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
|
||||
#, c-format
|
||||
|
|
|
@ -8,7 +8,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: libalpm\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.archlinux.org/index.php?project=3\n"
|
||||
"POT-Creation-Date: 2021-09-04 16:15+1000\n"
|
||||
"POT-Creation-Date: 2022-09-26 21:09+1000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
|
|
@ -9,14 +9,15 @@
|
|||
# Dan McGee <dpmcgee@gmail.com>, 2011
|
||||
# Kiprianas Spiridonovas <k.spiridonovas@gmail.com>, 2013
|
||||
# Moo, 2015-2019
|
||||
# Tautvydas Ž., 2021
|
||||
# Dan McGee <dpmcgee@gmail.com>, 2011
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Arch Linux Pacman package manager\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.archlinux.org/index.php?project=3\n"
|
||||
"POT-Creation-Date: 2021-09-04 16:15+1000\n"
|
||||
"PO-Revision-Date: 2021-05-20 02:25+0000\n"
|
||||
"Last-Translator: Allan McRae <allan@archlinux.org>\n"
|
||||
"POT-Creation-Date: 2022-09-26 21:09+1000\n"
|
||||
"PO-Revision-Date: 2010-11-29 23:17+0000\n"
|
||||
"Last-Translator: Tautvydas Ž., 2021\n"
|
||||
"Language-Team: Lithuanian (http://www.transifex.com/toofishes/archlinux-"
|
||||
"pacman/language/lt/)\n"
|
||||
"Language: lt\n"
|
||||
|
@ -355,7 +356,7 @@ msgstr "Skirsnis %s prijungtas tik skaitymui\n"
|
|||
#, c-format
|
||||
msgid ""
|
||||
"too many errors from %s, skipping for the remainder of this transaction\n"
|
||||
msgstr ""
|
||||
msgstr "per daug klaidų iš %s, praleidžiama likusi šios operacijos dalis\n"
|
||||
|
||||
#: lib/libalpm/dload.c:220
|
||||
#, c-format
|
||||
|
@ -391,17 +392,17 @@ msgstr "neteisingas url „%s“\n"
|
|||
#: lib/libalpm/dload.c:893
|
||||
#, c-format
|
||||
msgid "failed to setup a download payload for %s\n"
|
||||
msgstr ""
|
||||
msgstr "nepavyko nustatyti %s atsisiuntimo naudingojo krovinio\n"
|
||||
|
||||
#: lib/libalpm/dload.c:905
|
||||
#, c-format
|
||||
msgid "curl returned error %d from transfer\n"
|
||||
msgstr ""
|
||||
msgstr "curl grąžino %d perkėlimo klaidą\n"
|
||||
|
||||
#: lib/libalpm/dload.c:929
|
||||
#, c-format
|
||||
msgid "curl transfer error: %d\n"
|
||||
msgstr ""
|
||||
msgstr "cur perkėlimo klaida: %d\n"
|
||||
|
||||
#: lib/libalpm/dload.c:1055 lib/libalpm/sync.c:840
|
||||
#, c-format
|
||||
|
@ -411,7 +412,7 @@ msgstr "nepavyko gauti kai kurių failų\n"
|
|||
#: lib/libalpm/dload.c:1078
|
||||
#, c-format
|
||||
msgid "download completed successfully but no file in the cache\n"
|
||||
msgstr ""
|
||||
msgstr "atsisiuntimas sėkmingai baigtas, bet talpykloje nėra failo\n"
|
||||
|
||||
#: lib/libalpm/error.c:40
|
||||
#, c-format
|
||||
|
@ -541,7 +542,7 @@ msgstr "objektas jau yra"
|
|||
#: lib/libalpm/error.c:94
|
||||
#, c-format
|
||||
msgid "duplicate filename"
|
||||
msgstr ""
|
||||
msgstr "pasikartojantis failo vardas"
|
||||
|
||||
#: lib/libalpm/error.c:98
|
||||
#, c-format
|
||||
|
@ -945,7 +946,7 @@ msgstr "negalima pakeisti %s failu %s\n"
|
|||
#: lib/libalpm/sync.c:476
|
||||
#, c-format
|
||||
msgid "packages %s and %s have the same filename: %s\n"
|
||||
msgstr ""
|
||||
msgstr "%s ir %s paketai turi vienodus vardus: %s\n"
|
||||
|
||||
#: lib/libalpm/sync.c:542 lib/libalpm/sync.c:612
|
||||
#, c-format
|
||||
|
|
|
@ -13,9 +13,9 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Arch Linux Pacman package manager\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.archlinux.org/index.php?project=3\n"
|
||||
"POT-Creation-Date: 2021-09-04 16:15+1000\n"
|
||||
"PO-Revision-Date: 2021-05-24 19:49+0000\n"
|
||||
"Last-Translator: Alexander F. Rødseth <rodseth@gmail.com>\n"
|
||||
"POT-Creation-Date: 2022-09-26 21:09+1000\n"
|
||||
"PO-Revision-Date: 2010-11-29 23:17+0000\n"
|
||||
"Last-Translator: Thor K. H. <nitrolinken@gmail.com>, 2019\n"
|
||||
"Language-Team: Norwegian Bokmål (http://www.transifex.com/toofishes/"
|
||||
"archlinux-pacman/language/nb/)\n"
|
||||
"Language: nb\n"
|
||||
|
|
|
@ -18,9 +18,9 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Arch Linux Pacman package manager\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.archlinux.org/index.php?project=3\n"
|
||||
"POT-Creation-Date: 2021-09-04 16:15+1000\n"
|
||||
"PO-Revision-Date: 2021-08-03 21:32+0000\n"
|
||||
"Last-Translator: Philip Goto <philip.goto@gmail.com>\n"
|
||||
"POT-Creation-Date: 2022-09-26 21:09+1000\n"
|
||||
"PO-Revision-Date: 2010-11-29 23:17+0000\n"
|
||||
"Last-Translator: zenlord <zenlord@gmail.com>, 2013,2015,2019\n"
|
||||
"Language-Team: Dutch (http://www.transifex.com/toofishes/archlinux-pacman/"
|
||||
"language/nl/)\n"
|
||||
"Language: nl\n"
|
||||
|
|
|
@ -13,7 +13,7 @@
|
|||
# megamann, 2014
|
||||
# megamann, 2014-2015
|
||||
# megamann, 2015
|
||||
# Piotr Strębski <strebski@gmail.com>, 2013,2017-2018
|
||||
# Piotr Strębski <strebski@gmail.com>, 2013,2017-2018,2022
|
||||
# Piotr Strębski <strebski@gmail.com>, 2013
|
||||
# Sebastian Jakubiak, 2019
|
||||
# Sebastian Jakubiak, 2019
|
||||
|
@ -21,18 +21,18 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Arch Linux Pacman package manager\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.archlinux.org/index.php?project=3\n"
|
||||
"POT-Creation-Date: 2021-09-04 16:15+1000\n"
|
||||
"PO-Revision-Date: 2021-05-20 02:25+0000\n"
|
||||
"Last-Translator: Allan McRae <allan@archlinux.org>\n"
|
||||
"POT-Creation-Date: 2022-09-26 21:09+1000\n"
|
||||
"PO-Revision-Date: 2010-11-29 23:17+0000\n"
|
||||
"Last-Translator: Piotr Strębski <strebski@gmail.com>, 2013,2017-2018,2022\n"
|
||||
"Language-Team: Polish (http://www.transifex.com/toofishes/archlinux-pacman/"
|
||||
"language/pl/)\n"
|
||||
"Language: pl\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n"
|
||||
"%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n"
|
||||
"%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && "
|
||||
"(n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && "
|
||||
"n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n"
|
||||
|
||||
#: lib/libalpm/add.c:90 lib/libalpm/sync.c:279
|
||||
#, c-format
|
||||
|
@ -416,7 +416,7 @@ msgstr "nie udało się pobrać niektórych plików\n"
|
|||
#: lib/libalpm/dload.c:1078
|
||||
#, c-format
|
||||
msgid "download completed successfully but no file in the cache\n"
|
||||
msgstr ""
|
||||
msgstr "pobieranie zakończone pomyślnie, ale brak pliku w pamięci podręcznej\n"
|
||||
|
||||
#: lib/libalpm/error.c:40
|
||||
#, c-format
|
||||
|
|
|
@ -13,16 +13,17 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Arch Linux Pacman package manager\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.archlinux.org/index.php?project=3\n"
|
||||
"POT-Creation-Date: 2021-09-04 16:15+1000\n"
|
||||
"PO-Revision-Date: 2021-05-20 02:25+0000\n"
|
||||
"Last-Translator: Allan McRae <allan@archlinux.org>\n"
|
||||
"POT-Creation-Date: 2022-09-26 21:09+1000\n"
|
||||
"PO-Revision-Date: 2010-11-29 23:17+0000\n"
|
||||
"Last-Translator: Rui <xymarior@yandex.com>, 2019\n"
|
||||
"Language-Team: Portuguese (http://www.transifex.com/toofishes/archlinux-"
|
||||
"pacman/language/pt/)\n"
|
||||
"Language: pt\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"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
|
||||
#, c-format
|
||||
|
|
|
@ -15,16 +15,17 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Arch Linux Pacman package manager\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.archlinux.org/index.php?project=3\n"
|
||||
"POT-Creation-Date: 2021-09-04 16:15+1000\n"
|
||||
"PO-Revision-Date: 2021-05-20 06:39+0000\n"
|
||||
"Last-Translator: Rafael Fontenelle <rffontenelle@gmail.com>\n"
|
||||
"POT-Creation-Date: 2022-09-26 21:09+1000\n"
|
||||
"PO-Revision-Date: 2010-11-29 23:17+0000\n"
|
||||
"Last-Translator: Sandro <sandrossv@hotmail.com>, 2011\n"
|
||||
"Language-Team: Portuguese (Brazil) (http://www.transifex.com/toofishes/"
|
||||
"archlinux-pacman/language/pt_BR/)\n"
|
||||
"Language: pt_BR\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
"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
|
||||
#, c-format
|
||||
|
|
|
@ -20,9 +20,9 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Arch Linux Pacman package manager\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.archlinux.org/index.php?project=3\n"
|
||||
"POT-Creation-Date: 2021-09-04 16:15+1000\n"
|
||||
"PO-Revision-Date: 2021-05-20 02:25+0000\n"
|
||||
"Last-Translator: Allan McRae <allan@archlinux.org>\n"
|
||||
"POT-Creation-Date: 2022-09-26 21:09+1000\n"
|
||||
"PO-Revision-Date: 2010-11-29 23:17+0000\n"
|
||||
"Last-Translator: Arthur Țițeică <arthur.titeica@gmail.com>, 2013-2015\n"
|
||||
"Language-Team: Romanian (http://www.transifex.com/toofishes/archlinux-pacman/"
|
||||
"language/ro/)\n"
|
||||
"Language: ro\n"
|
||||
|
|
|
@ -9,28 +9,28 @@
|
|||
# Ilya Ostapenko (Jacobtey) <jacobtey@gmail.com>, 2017
|
||||
# Ivan Yurasov <vdk@gmx.us>, 2011
|
||||
# kyak <peselnik@gmail.com>, 2013
|
||||
# partizan <serg.partizan@gmail.com>, 2011-2012,2014
|
||||
# Sergiy Tereshchenko <serg.partizan@gmail.com>, 2011-2012,2014
|
||||
# kyak <peselnik@gmail.com>, 2013
|
||||
# partizan <serg.partizan@gmail.com>, 2014-2015,2017
|
||||
# partizan <serg.partizan@gmail.com>, 2012
|
||||
# Sergiy Tereshchenko <serg.partizan@gmail.com>, 2014-2015,2017
|
||||
# Sergiy Tereshchenko <serg.partizan@gmail.com>, 2012
|
||||
# be1bb8e720f95f5c175a5f1f3aa8f780, 2015
|
||||
# Анатолий Валерианович <ffox909@mail.ru>, 2016
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Arch Linux Pacman package manager\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.archlinux.org/index.php?project=3\n"
|
||||
"POT-Creation-Date: 2021-09-04 16:15+1000\n"
|
||||
"PO-Revision-Date: 2021-05-20 02:25+0000\n"
|
||||
"Last-Translator: Allan McRae <allan@archlinux.org>\n"
|
||||
"POT-Creation-Date: 2022-09-26 21:09+1000\n"
|
||||
"PO-Revision-Date: 2010-11-29 23:17+0000\n"
|
||||
"Last-Translator: Анатолий Валерианович <ffox909@mail.ru>, 2016\n"
|
||||
"Language-Team: Russian (http://www.transifex.com/toofishes/archlinux-pacman/"
|
||||
"language/ru/)\n"
|
||||
"Language: ru\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
|
||||
"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n"
|
||||
"%100>=11 && n%100<=14)? 2 : 3);\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && "
|
||||
"n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || "
|
||||
"(n%100>=11 && n%100<=14)? 2 : 3);\n"
|
||||
|
||||
#: lib/libalpm/add.c:90 lib/libalpm/sync.c:279
|
||||
#, c-format
|
||||
|
|
|
@ -11,14 +11,14 @@
|
|||
# 3ff9a567ff32d540038a6a558650f376_643ea9b <38630839a6ec6b692ff2ca08fafb2585_10562>, 2011
|
||||
# Jose Riha <jose1711@gmail.com>, 2011
|
||||
# Jose Riha <jose1711@gmail.com>, 2011
|
||||
# Jose Riha <jose1711@gmail.com>, 2011
|
||||
# Jose Riha <jose1711@gmail.com>, 2011,2022
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Arch Linux Pacman package manager\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.archlinux.org/index.php?project=3\n"
|
||||
"POT-Creation-Date: 2021-09-04 16:15+1000\n"
|
||||
"PO-Revision-Date: 2021-05-20 02:25+0000\n"
|
||||
"Last-Translator: Allan McRae <allan@archlinux.org>\n"
|
||||
"POT-Creation-Date: 2022-09-26 21:09+1000\n"
|
||||
"PO-Revision-Date: 2010-11-29 23:17+0000\n"
|
||||
"Last-Translator: Jose Riha <jose1711@gmail.com>, 2011,2022\n"
|
||||
"Language-Team: Slovak (http://www.transifex.com/toofishes/archlinux-pacman/"
|
||||
"language/sk/)\n"
|
||||
"Language: sk\n"
|
||||
|
@ -778,7 +778,7 @@ msgstr "nepodarilo sa získať status súboru %s: %s\n"
|
|||
#: lib/libalpm/hook.c:621
|
||||
#, c-format
|
||||
msgid "could not read directory: %s: %s\n"
|
||||
msgstr ""
|
||||
msgstr "nie je možné čítať adresár: %s: %s\n"
|
||||
|
||||
#: lib/libalpm/package.c:598
|
||||
#, c-format
|
||||
|
@ -828,7 +828,7 @@ msgstr ""
|
|||
#: lib/libalpm/signing.c:199 lib/libalpm/signing.c:767
|
||||
#, c-format
|
||||
msgid "GPGME error: %s\n"
|
||||
msgstr ""
|
||||
msgstr "Chyba GPGME: %s\n"
|
||||
|
||||
#: lib/libalpm/signing.c:274
|
||||
#, c-format
|
||||
|
|
|
@ -19,17 +19,17 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Arch Linux Pacman package manager\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.archlinux.org/index.php?project=3\n"
|
||||
"POT-Creation-Date: 2021-09-04 16:15+1000\n"
|
||||
"PO-Revision-Date: 2021-05-20 02:25+0000\n"
|
||||
"Last-Translator: Allan McRae <allan@archlinux.org>\n"
|
||||
"POT-Creation-Date: 2022-09-26 21:09+1000\n"
|
||||
"PO-Revision-Date: 2010-11-29 23:17+0000\n"
|
||||
"Last-Translator: 35e31c1f7beb9a73365b56f93b1457f5_fbd83d3, 2014\n"
|
||||
"Language-Team: Slovenian (http://www.transifex.com/toofishes/archlinux-"
|
||||
"pacman/language/sl/)\n"
|
||||
"Language: sl\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n"
|
||||
"%100==4 ? 2 : 3);\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || "
|
||||
"n%100==4 ? 2 : 3);\n"
|
||||
|
||||
#: lib/libalpm/add.c:90 lib/libalpm/sync.c:279
|
||||
#, c-format
|
||||
|
|
|
@ -14,17 +14,17 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Arch Linux Pacman package manager\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.archlinux.org/index.php?project=3\n"
|
||||
"POT-Creation-Date: 2021-09-04 16:15+1000\n"
|
||||
"PO-Revision-Date: 2021-05-20 02:25+0000\n"
|
||||
"Last-Translator: Allan McRae <allan@archlinux.org>\n"
|
||||
"POT-Creation-Date: 2022-09-26 21:09+1000\n"
|
||||
"PO-Revision-Date: 2010-11-29 23:17+0000\n"
|
||||
"Last-Translator: Slobodan Terzić <githzerai06@gmail.com>, 2011,2015,2018\n"
|
||||
"Language-Team: Serbian (http://www.transifex.com/toofishes/archlinux-pacman/"
|
||||
"language/sr/)\n"
|
||||
"Language: sr\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
|
||||
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && "
|
||||
"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
||||
|
||||
#: lib/libalpm/add.c:90 lib/libalpm/sync.c:279
|
||||
#, c-format
|
||||
|
|
|
@ -14,17 +14,17 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Arch Linux Pacman package manager\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.archlinux.org/index.php?project=3\n"
|
||||
"POT-Creation-Date: 2021-09-04 16:15+1000\n"
|
||||
"PO-Revision-Date: 2021-05-20 02:25+0000\n"
|
||||
"Last-Translator: Allan McRae <allan@archlinux.org>\n"
|
||||
"POT-Creation-Date: 2022-09-26 21:09+1000\n"
|
||||
"PO-Revision-Date: 2010-11-29 23:17+0000\n"
|
||||
"Last-Translator: Slobodan Terzić <githzerai06@gmail.com>, 2011,2015,2018\n"
|
||||
"Language-Team: Serbian (Latin) (http://www.transifex.com/toofishes/archlinux-"
|
||||
"pacman/language/sr@latin/)\n"
|
||||
"Language: sr@latin\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
|
||||
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && "
|
||||
"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
||||
|
||||
#: lib/libalpm/add.c:90 lib/libalpm/sync.c:279
|
||||
#, c-format
|
||||
|
|
|
@ -15,9 +15,9 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Arch Linux Pacman package manager\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.archlinux.org/index.php?project=3\n"
|
||||
"POT-Creation-Date: 2021-09-04 16:15+1000\n"
|
||||
"PO-Revision-Date: 2021-05-20 07:55+0000\n"
|
||||
"Last-Translator: Luna Jernberg <bittin@cafe8bitar.se>\n"
|
||||
"POT-Creation-Date: 2022-09-26 21:09+1000\n"
|
||||
"PO-Revision-Date: 2010-11-29 23:17+0000\n"
|
||||
"Last-Translator: Kim Svensson <ks@linux.com>, 2015\n"
|
||||
"Language-Team: Swedish (http://www.transifex.com/toofishes/archlinux-pacman/"
|
||||
"language/sv/)\n"
|
||||
"Language: sv\n"
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
# Betül Ünlü, 2018-2019
|
||||
# Betül Ünlü, 2018-2019
|
||||
# Dan McGee <dpmcgee@gmail.com>, 2011
|
||||
# Demiray Muhterem <mdemiray@msn.com>, 2016
|
||||
# Demiray Muhterem <mdemiray@msn.com>, 2016,2021
|
||||
# Demiray Muhterem <mdemiray@msn.com>, 2016
|
||||
# Betül Ünlü, 2019
|
||||
# Samed Beyribey <ras0ir@eventualis.org>, 2011,2013
|
||||
|
@ -17,9 +17,9 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Arch Linux Pacman package manager\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.archlinux.org/index.php?project=3\n"
|
||||
"POT-Creation-Date: 2021-09-04 16:15+1000\n"
|
||||
"PO-Revision-Date: 2021-05-20 02:25+0000\n"
|
||||
"Last-Translator: Allan McRae <allan@archlinux.org>\n"
|
||||
"POT-Creation-Date: 2022-09-26 21:09+1000\n"
|
||||
"PO-Revision-Date: 2010-11-29 23:17+0000\n"
|
||||
"Last-Translator: Demiray Muhterem <mdemiray@msn.com>, 2016,2021\n"
|
||||
"Language-Team: Turkish (http://www.transifex.com/toofishes/archlinux-pacman/"
|
||||
"language/tr/)\n"
|
||||
"Language: tr\n"
|
||||
|
@ -354,7 +354,7 @@ msgstr "%s bölümü salt okunur olarak bağlandı\n"
|
|||
#, c-format
|
||||
msgid ""
|
||||
"too many errors from %s, skipping for the remainder of this transaction\n"
|
||||
msgstr ""
|
||||
msgstr "%s'den çok fazla hata var, bu işlemin geri kalanı için atlanıyor\n"
|
||||
|
||||
#: lib/libalpm/dload.c:220
|
||||
#, c-format
|
||||
|
@ -391,17 +391,17 @@ msgstr "'%s' adresi geçersiz\n"
|
|||
#: lib/libalpm/dload.c:893
|
||||
#, c-format
|
||||
msgid "failed to setup a download payload for %s\n"
|
||||
msgstr ""
|
||||
msgstr "%s için bir indirme yükü ayarlanamadı \n"
|
||||
|
||||
#: lib/libalpm/dload.c:905
|
||||
#, c-format
|
||||
msgid "curl returned error %d from transfer\n"
|
||||
msgstr ""
|
||||
msgstr "curl aktarımda %d hatası verdi\n"
|
||||
|
||||
#: lib/libalpm/dload.c:929
|
||||
#, c-format
|
||||
msgid "curl transfer error: %d\n"
|
||||
msgstr ""
|
||||
msgstr "curl aktarım hatası: %d\n"
|
||||
|
||||
#: lib/libalpm/dload.c:1055 lib/libalpm/sync.c:840
|
||||
#, c-format
|
||||
|
@ -411,7 +411,7 @@ msgstr "bazı dosyalar alınamadı\n"
|
|||
#: lib/libalpm/dload.c:1078
|
||||
#, c-format
|
||||
msgid "download completed successfully but no file in the cache\n"
|
||||
msgstr ""
|
||||
msgstr "indirme başarıyla tamamlandı ancak önbellekte dosya yok\n"
|
||||
|
||||
#: lib/libalpm/error.c:40
|
||||
#, c-format
|
||||
|
@ -541,7 +541,7 @@ msgstr "birden fazla hedef"
|
|||
#: lib/libalpm/error.c:94
|
||||
#, c-format
|
||||
msgid "duplicate filename"
|
||||
msgstr ""
|
||||
msgstr "yinelenen dosya adı"
|
||||
|
||||
#: lib/libalpm/error.c:98
|
||||
#, c-format
|
||||
|
@ -946,7 +946,7 @@ msgstr "%s ile %s değiştirilemiyor\n"
|
|||
#: lib/libalpm/sync.c:476
|
||||
#, c-format
|
||||
msgid "packages %s and %s have the same filename: %s\n"
|
||||
msgstr ""
|
||||
msgstr "%s ve %s paketleri aynı dosya adına sahiptir: %s\n"
|
||||
|
||||
#: lib/libalpm/sync.c:542 lib/libalpm/sync.c:612
|
||||
#, c-format
|
||||
|
|
|
@ -11,9 +11,9 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Arch Linux Pacman package manager\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.archlinux.org/index.php?project=3\n"
|
||||
"POT-Creation-Date: 2021-09-04 16:15+1000\n"
|
||||
"PO-Revision-Date: 2021-07-08 13:32+0000\n"
|
||||
"Last-Translator: Andrew Kotsyuba <avallach2000@gmail.com>\n"
|
||||
"POT-Creation-Date: 2022-09-26 21:09+1000\n"
|
||||
"PO-Revision-Date: 2010-11-29 23:17+0000\n"
|
||||
"Last-Translator: Данило Коростіль <ted.korostiled@gmail.com>, 2011,2014\n"
|
||||
"Language-Team: Ukrainian (http://www.transifex.com/toofishes/archlinux-"
|
||||
"pacman/language/uk/)\n"
|
||||
"Language: uk\n"
|
||||
|
|
|
@ -21,9 +21,9 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Arch Linux Pacman package manager\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.archlinux.org/index.php?project=3\n"
|
||||
"POT-Creation-Date: 2021-09-04 16:15+1000\n"
|
||||
"PO-Revision-Date: 2021-05-20 05:13+0000\n"
|
||||
"Last-Translator: 张海\n"
|
||||
"POT-Creation-Date: 2022-09-26 21:09+1000\n"
|
||||
"PO-Revision-Date: 2010-11-29 23:17+0000\n"
|
||||
"Last-Translator: 甘 露 <rhythm.gan@gmail.com>, 2011\n"
|
||||
"Language-Team: Chinese (China) (http://www.transifex.com/toofishes/archlinux-"
|
||||
"pacman/language/zh_CN/)\n"
|
||||
"Language: zh_CN\n"
|
||||
|
|
|
@ -12,14 +12,14 @@
|
|||
# green.leek <grann88417@gmail.com>, 2021
|
||||
# 黃柏諺 <s8321414@gmail.com>, 2014-2015,2018
|
||||
# 黃柏諺 <s8321414@gmail.com>, 2014
|
||||
# 黃柏諺 <s8321414@gmail.com>, 2014,2019,2021
|
||||
# 黃柏諺 <s8321414@gmail.com>, 2014,2019,2021-2022
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Arch Linux Pacman package manager\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.archlinux.org/index.php?project=3\n"
|
||||
"POT-Creation-Date: 2021-09-04 16:15+1000\n"
|
||||
"PO-Revision-Date: 2021-05-21 01:46+0000\n"
|
||||
"Last-Translator: 黃柏諺 <s8321414@gmail.com>\n"
|
||||
"POT-Creation-Date: 2022-09-26 21:09+1000\n"
|
||||
"PO-Revision-Date: 2010-11-29 23:17+0000\n"
|
||||
"Last-Translator: 黃柏諺 <s8321414@gmail.com>, 2014,2019,2021-2022\n"
|
||||
"Language-Team: Chinese (Taiwan) (http://www.transifex.com/toofishes/"
|
||||
"archlinux-pacman/language/zh_TW/)\n"
|
||||
"Language: zh_TW\n"
|
||||
|
@ -511,7 +511,7 @@ msgstr "無法刪除資料庫記錄"
|
|||
#: lib/libalpm/error.c:83
|
||||
#, c-format
|
||||
msgid "invalid url for server"
|
||||
msgstr "無效的服務器 url"
|
||||
msgstr "無效的伺服器 url"
|
||||
|
||||
#: lib/libalpm/error.c:85
|
||||
#, c-format
|
||||
|
|
|
@ -332,7 +332,7 @@ static int can_remove_file(alpm_handle_t *handle, const alpm_file_t *file)
|
|||
/* If we fail write permissions due to a read-only filesystem, abort.
|
||||
* Assume all other possible failures are covered somewhere else */
|
||||
if(_alpm_access(handle, NULL, filepath, W_OK) == -1) {
|
||||
if(errno != EACCES && errno != ETXTBSY && access(filepath, F_OK) == 0) {
|
||||
if(errno != EACCES && errno != ETXTBSY && _alpm_access(handle, NULL, filepath, F_OK) == 0) {
|
||||
/* only return failure if the file ACTUALLY exists and we can't write to
|
||||
* it - ignore "chmod -w" simple permission failures */
|
||||
_alpm_log(handle, ALPM_LOG_ERROR, _("cannot remove file '%s': %s\n"),
|
||||
|
|
|
@ -253,9 +253,10 @@ error:
|
|||
* This requires GPGME to call the gpg binary.
|
||||
* @param handle the context handle
|
||||
* @param email the email address of the key to import
|
||||
* @param fpr the fingerprint key ID to look up (or NULL)
|
||||
* @return 0 on success, -1 on error
|
||||
*/
|
||||
static int key_import_wkd(alpm_handle_t *handle, const char *email)
|
||||
static int key_import_wkd(alpm_handle_t *handle, const char *email, const char *fpr)
|
||||
{
|
||||
gpgme_error_t gpg_err;
|
||||
gpgme_ctx_t ctx = {0};
|
||||
|
@ -274,7 +275,12 @@ static int key_import_wkd(alpm_handle_t *handle, const char *email)
|
|||
_alpm_log(handle, ALPM_LOG_DEBUG, _("looking up key %s using WKD\n"), email);
|
||||
gpg_err = gpgme_get_key(ctx, email, &key, 0);
|
||||
if(gpg_err_code(gpg_err) == GPG_ERR_NO_ERROR) {
|
||||
/* check if correct key was imported via WKD */
|
||||
if(fpr && _alpm_key_in_keychain(handle, fpr)) {
|
||||
ret = 0;
|
||||
} else {
|
||||
_alpm_log(handle, ALPM_LOG_DEBUG, "key lookup failed: WKD imported wrong fingerprint\n");
|
||||
}
|
||||
}
|
||||
gpgme_key_unref(key);
|
||||
|
||||
|
@ -353,14 +359,18 @@ static int key_search_keyserver(alpm_handle_t *handle, const char *fpr,
|
|||
} else if(key->subkeys->keyid) {
|
||||
pgpkey->fingerprint = key->subkeys->keyid;
|
||||
}
|
||||
|
||||
/* we are probably going to fail importing, but continue anyway... */
|
||||
if(key->uids != NULL) {
|
||||
pgpkey->uid = key->uids->uid;
|
||||
pgpkey->name = key->uids->name;
|
||||
pgpkey->email = key->uids->email;
|
||||
}
|
||||
|
||||
pgpkey->created = key->subkeys->timestamp;
|
||||
pgpkey->expires = key->subkeys->expires;
|
||||
pgpkey->length = key->subkeys->length;
|
||||
pgpkey->revoked = key->subkeys->revoked;
|
||||
|
||||
/* Initialize with '?', this is overwritten unless public key
|
||||
* algorithm is unknown. */
|
||||
pgpkey->pubkey_algo = '?';
|
||||
|
@ -520,7 +530,7 @@ int _alpm_key_import(alpm_handle_t *handle, const char *uid, const char *fpr)
|
|||
if(question.import) {
|
||||
/* Try to import the key from a WKD first */
|
||||
if(email_from_uid(uid, &email) == 0) {
|
||||
ret = key_import_wkd(handle, email);
|
||||
ret = key_import_wkd(handle, email, fpr);
|
||||
free(email);
|
||||
}
|
||||
|
||||
|
@ -533,7 +543,7 @@ int _alpm_key_import(alpm_handle_t *handle, const char *uid, const char *fpr)
|
|||
ret = 0;
|
||||
} else {
|
||||
_alpm_log(handle, ALPM_LOG_ERROR,
|
||||
_("key \"%s\" could not be imported\n"), fetch_key.uid);
|
||||
_("key \"%s\" could not be imported\n"), fpr);
|
||||
}
|
||||
} else {
|
||||
_alpm_log(handle, ALPM_LOG_ERROR,
|
||||
|
|
|
@ -732,7 +732,7 @@ static int find_dl_candidates(alpm_handle_t *handle, alpm_list_t **files)
|
|||
handle->pm_errno = ALPM_ERR_SERVER_NONE;
|
||||
_alpm_log(handle, ALPM_LOG_ERROR, "%s: %s\n",
|
||||
alpm_strerror(handle->pm_errno), repo->treename);
|
||||
return 1;
|
||||
return -1;
|
||||
}
|
||||
|
||||
ASSERT(spkg->filename != NULL, RET_ERR(handle, ALPM_ERR_PKG_INVALID_NAME, -1));
|
||||
|
|
10
meson.build
10
meson.build
|
@ -1,6 +1,6 @@
|
|||
project('pacman',
|
||||
'c',
|
||||
version : '6.0.1',
|
||||
version : '6.0.2',
|
||||
license : 'GPLv2+',
|
||||
default_options : [
|
||||
'c_std=gnu99',
|
||||
|
@ -10,7 +10,7 @@ project('pacman',
|
|||
],
|
||||
meson_version : '>= 0.51')
|
||||
|
||||
libalpm_version = '13.0.1'
|
||||
libalpm_version = '13.0.2'
|
||||
|
||||
cc = meson.get_compiler('c')
|
||||
|
||||
|
@ -90,6 +90,11 @@ endif
|
|||
libarchive = dependency('libarchive',
|
||||
version : '>=3.0.0',
|
||||
static : get_option('buildstatic'))
|
||||
if libarchive.version().version_compare('>=3.6.0')
|
||||
bsdtar_no_read_sparse = '--no-read-sparse'
|
||||
else
|
||||
bsdtar_no_read_sparse = ''
|
||||
endif
|
||||
|
||||
libcurl = dependency('libcurl',
|
||||
version : '>=7.55.0',
|
||||
|
@ -273,6 +278,7 @@ substs.set('LIBMAKEPKGDIR', LIBMAKEPKGDIR)
|
|||
substs.set('STRIP_BINARIES', strip_binaries)
|
||||
substs.set('STRIP_SHARED', strip_shared)
|
||||
substs.set('STRIP_STATIC', strip_static)
|
||||
substs.set('BSDTAR_NO_READ_SPARSE', bsdtar_no_read_sparse)
|
||||
|
||||
subdir('lib/libalpm')
|
||||
subdir('src/common')
|
||||
|
|
|
@ -30,6 +30,6 @@ buildenv_functions+=('buildenv_buildflags')
|
|||
|
||||
buildenv_buildflags() {
|
||||
if check_option "buildflags" "n"; then
|
||||
unset CPPFLAGS CFLAGS DEBUG_CFLAGS CXXFLAGS DEBUG_CXXFLAGS LDFLAGS RUSTFLAGS DEBUG_RUSTFLAGS
|
||||
unset CPPFLAGS CFLAGS DEBUG_CFLAGS CXXFLAGS DEBUG_CXXFLAGS LDFLAGS LTOFLAGS RUSTFLAGS DEBUG_RUSTFLAGS
|
||||
fi
|
||||
}
|
||||
|
|
|
@ -29,10 +29,10 @@ source "$LIBRARY/util/option.sh"
|
|||
buildenv_functions+=('buildenv_debugflags')
|
||||
|
||||
buildenv_debugflags() {
|
||||
if check_option "debug" "y"; then
|
||||
DEBUG_CFLAGS+=" -fdebug-prefix-map=$srcdir=${DBGSRCDIR:-/usr/src/debug}"
|
||||
DEBUG_CXXFLAGS+=" -fdebug-prefix-map=$srcdir=${DBGSRCDIR:-/usr/src/debug}"
|
||||
DEBUG_RUSTFLAGS+=" --remap-path-prefix=$srcdir=${DBGSRCDIR:-/usr/src/debug}"
|
||||
if check_option "debug" "y" && ! check_option "buildflags" "n"; then
|
||||
DEBUG_CFLAGS+=" -ffile-prefix-map=$srcdir=${DBGSRCDIR:-/usr/src/debug}/${pkgbase}"
|
||||
DEBUG_CXXFLAGS+=" -ffile-prefix-map=$srcdir=${DBGSRCDIR:-/usr/src/debug}/${pkgbase}"
|
||||
DEBUG_RUSTFLAGS+=" --remap-path-prefix=$srcdir=${DBGSRCDIR:-/usr/src/debug}/${pkgbase}"
|
||||
CFLAGS+=" $DEBUG_CFLAGS"
|
||||
CXXFLAGS+=" $DEBUG_CXXFLAGS"
|
||||
RUSTFLAGS+=" $DEBUG_RUSTFLAGS"
|
||||
|
|
|
@ -30,8 +30,9 @@ build_options+=('lto')
|
|||
buildenv_functions+=('buildenv_lto')
|
||||
|
||||
buildenv_lto() {
|
||||
if check_option "lto" "y"; then
|
||||
CFLAGS+=" -flto"
|
||||
CXXFLAGS+=" -flto"
|
||||
if check_option "lto" "y" && ! check_option "buildflags" "n"; then
|
||||
CFLAGS+=" ${LTOFLAGS:--flto}"
|
||||
CXXFLAGS+=" ${LTOFLAGS:--flto}"
|
||||
LDFLAGS+=" ${LTOFLAGS:--flto}"
|
||||
fi
|
||||
}
|
||||
|
|
38
scripts/libmakepkg/executable/debugedit.sh.in
Normal file
38
scripts/libmakepkg/executable/debugedit.sh.in
Normal file
|
@ -0,0 +1,38 @@
|
|||
#!/usr/bin/bash
|
||||
#
|
||||
# debugedit.sh - Confirm presence of debugedit binary
|
||||
#
|
||||
# Copyright (c) 2022 Pacman Development Team <pacman-dev@lists.archlinux.org>
|
||||
#
|
||||
# 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
|
||||
# the Free Software Foundation; either version 2 of the License, or
|
||||
# (at your option) any later version.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
#
|
||||
|
||||
[[ -n "$LIBMAKEPKG_EXECUTABLE_DEBUGEDIT_SH" ]] && return
|
||||
LIBMAKEPKG_EXECUTABLE_DEBUGEDIT_SH=1
|
||||
|
||||
LIBRARY=${LIBRARY:-'@libmakepkgdir@'}
|
||||
|
||||
source "$LIBRARY/util/message.sh"
|
||||
source "$LIBRARY/util/option.sh"
|
||||
|
||||
executable_functions+=('executable_debugedit')
|
||||
|
||||
executable_debugedit() {
|
||||
if check_option "debug" "y"; then
|
||||
if ! type -p debugedit >/dev/null; then
|
||||
error "$(gettext "Cannot find the %s binary required for including source files in debug packages.")" "debugedit"
|
||||
return 1
|
||||
fi
|
||||
fi
|
||||
}
|
|
@ -32,10 +32,10 @@ lint_config_variables() {
|
|||
local array=(DLAGENTS VCSCLIENTS BUILDENV OPTIONS INTEGRITY_CHECK MAN_DIRS
|
||||
DOC_DIRS PURGE_TARGETS COMPRESSGZ COMPRESSBZ2 COMPRESSXZ
|
||||
COMPRESSLRZ COMPRESSLZO COMPRESSZ)
|
||||
local string=(CARCH CHOST CPPFLAGS CFLAGS CXXFLAGS RUSTFLAGS LDFLAGS DEBUG_CFLAGS
|
||||
DEBUG_CXXFLAGS DEBUG_RUSTFLAGS DISTCC_HOSTS BUILDDIR STRIP_BINARIES
|
||||
STRIP_SHARED STRIP_STATIC PKGDEST SRCDEST SRCPKGDEST LOGDEST PACKAGER
|
||||
GPGKEY PKGEXT SRCEXT)
|
||||
local string=(CARCH CHOST CPPFLAGS CFLAGS CXXFLAGS RUSTFLAGS LDFLAGS LTOFLAGS
|
||||
DEBUG_CFLAGS DEBUG_CXXFLAGS DEBUG_RUSTFLAGS DISTCC_HOSTS BUILDDIR
|
||||
STRIP_BINARIES STRIP_SHARED STRIP_STATIC PKGDEST SRCDEST SRCPKGDEST
|
||||
LOGDEST PACKAGER GPGKEY PKGEXT SRCEXT)
|
||||
|
||||
local i keys ret=0
|
||||
|
||||
|
|
|
@ -29,10 +29,17 @@ lint_package_functions+=('check_dotfiles')
|
|||
|
||||
check_dotfiles() {
|
||||
local ret=0
|
||||
|
||||
local shellopts=$(shopt -p nullglob)
|
||||
shopt -s nullglob
|
||||
|
||||
for f in "$pkgdir"/.*; do
|
||||
[[ ${f##*/} == . || ${f##*/} == .. ]] && continue
|
||||
error "$(gettext "Dotfile found in package root '%s'")" "$f"
|
||||
ret=1
|
||||
done
|
||||
|
||||
eval "$shellopts"
|
||||
|
||||
return $ret
|
||||
}
|
||||
|
|
|
@ -36,8 +36,20 @@ build_id() {
|
|||
}
|
||||
|
||||
source_files() {
|
||||
LANG=C readelf "$1" --debug-dump 2>/dev/null | \
|
||||
awk '/DW_AT_name +:/{name=$NF}/DW_AT_comp_dir +:/{{if (name == "<artificial>") next}{if (name !~ /^[<\/]/) {printf "%s/", $NF}}{print name}}'
|
||||
# This function does two things:
|
||||
#
|
||||
# 1) rewrites source file locations for packages not respecting prefix-
|
||||
# map switches. This ensures all source file references in debug
|
||||
# info point to $dbgsrcdir.
|
||||
#
|
||||
# 2) outputs a list of files from the package source files to stdout
|
||||
# while stripping the $dbgsrcdir prefix
|
||||
|
||||
LANG=C debugedit --no-recompute-build-id \
|
||||
--base-dir "${srcdir}" \
|
||||
--dest-dir "${dbgsrcdir}/${pkgbase}" \
|
||||
--list-file /dev/stdout "$1" \
|
||||
| sort -zu | tr '\0' '\n'
|
||||
}
|
||||
|
||||
strip_file() {
|
||||
|
@ -58,9 +70,9 @@ strip_file() {
|
|||
# copy source files to debug directory
|
||||
local file dest t
|
||||
while IFS= read -r t; do
|
||||
file=${t/${dbgsrcdir}/"$srcdir"}
|
||||
dest="${dbgsrc/"$dbgsrcdir"/}$t"
|
||||
if ! [[ -f $dest ]]; then
|
||||
file="${srcdir}/${t}"
|
||||
dest="${dbgsrc}/${t}"
|
||||
if [[ -f "$file" ]] && ! [[ -f $dest ]]; then
|
||||
mkdir -p "${dest%/*}"
|
||||
cp -- "$file" "$dest"
|
||||
fi
|
||||
|
@ -68,7 +80,12 @@ strip_file() {
|
|||
|
||||
# copy debug symbols to debug directory
|
||||
mkdir -p "$dbgdir/${binary%/*}"
|
||||
objcopy --only-keep-debug "$binary" "$dbgdir/$binary.debug"
|
||||
|
||||
# abandon processing files that are not a recognised format
|
||||
if ! objcopy --only-keep-debug "$binary" "$dbgdir/$binary.debug" 2>/dev/null; then
|
||||
return
|
||||
fi
|
||||
|
||||
local tempfile=$(mktemp "$binary.XXXXXX")
|
||||
objcopy --add-gnu-debuglink="$dbgdir/${binary#/}.debug" "$binary" "$tempfile"
|
||||
cat "$tempfile" > "$binary"
|
||||
|
|
|
@ -730,7 +730,7 @@ create_package() {
|
|||
msg2 "$(gettext "Compressing package...")"
|
||||
# TODO: Maybe this can be set globally for robustness
|
||||
shopt -s -o pipefail
|
||||
list_package_files | LANG=C bsdtar --no-fflags -cnf - --null --files-from - |
|
||||
list_package_files | LANG=C bsdtar --no-fflags @BSDTAR_NO_READ_SPARSE@ -cnf - --null --files-from - |
|
||||
compress_as "$PKGEXT" > "${pkg_file}" || ret=$?
|
||||
|
||||
shopt -u -o pipefail
|
||||
|
@ -763,7 +763,7 @@ create_debug_package() {
|
|||
fi
|
||||
done
|
||||
|
||||
pkgdesc="Detached debugging symbols for $pkgname"
|
||||
pkgdesc="Detached debugging symbols for $pkgbase"
|
||||
pkgname=$pkgbase-@DEBUGSUFFIX@
|
||||
|
||||
create_package
|
||||
|
@ -825,7 +825,7 @@ create_srcpackage() {
|
|||
|
||||
# TODO: Maybe this can be set globally for robustness
|
||||
shopt -s -o pipefail
|
||||
LANG=C bsdtar --no-fflags -cLf - ${pkgbase} | compress_as "$SRCEXT" > "${pkg_file}" || ret=$?
|
||||
LANG=C bsdtar --no-fflags @BSDTAR_NO_READ_SPARSE@ -cLf - ${pkgbase} | compress_as "$SRCEXT" > "${pkg_file}" || ret=$?
|
||||
|
||||
shopt -u -o pipefail
|
||||
|
||||
|
|
|
@ -374,7 +374,7 @@ populate_keyring() {
|
|||
if (( VERBOSE )); then
|
||||
msg2 "$(gettext "Disabling key %s...")" "${key_id}"
|
||||
fi
|
||||
printf 'disable\nquit\n' | LANG=C "${GPG_PACMAN[@]}" --command-fd 0 --quiet --batch --edit-key "${key_id}" 2>/dev/null
|
||||
printf 'disable\nquit\n' | LANG=C "${GPG_PACMAN[@]}" --command-fd 0 --no-auto-check-trustdb --quiet --batch --edit-key "${key_id}" 2>/dev/null
|
||||
key_count=$((key_count+1))
|
||||
done
|
||||
if (( key_count )); then
|
||||
|
|
|
@ -4,27 +4,28 @@
|
|||
#
|
||||
# Translators:
|
||||
# Zaur_Baku, 2015
|
||||
# xxmn77 <xxmn77@gmail.com>, 2021
|
||||
# xxmn77 <xxmn77@gmail.com>, 2021
|
||||
# xxmn77 <xxmn77@gmail.com>, 2021
|
||||
# Xəyyam Qocayev <xxmn77@gmail.com>, 2021-2022
|
||||
# Xəyyam Qocayev <xxmn77@gmail.com>, 2021
|
||||
# Xəyyam Qocayev <xxmn77@gmail.com>, 2021
|
||||
# Zaur_Baku, 2015
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Arch Linux Pacman package manager\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.archlinux.org/index.php?project=3\n"
|
||||
"POT-Creation-Date: 2021-09-04 16:15+1000\n"
|
||||
"PO-Revision-Date: 2021-07-03 15:46+0000\n"
|
||||
"Last-Translator: xxmn77 <xxmn77@gmail.com>\n"
|
||||
"Language-Team: Azerbaijani (Azerbaijan) (http://www.transifex.com/toofishes/archlinux-pacman/language/az_AZ/)\n"
|
||||
"POT-Creation-Date: 2022-09-26 21:09+1000\n"
|
||||
"PO-Revision-Date: 2011-08-08 22:35+0000\n"
|
||||
"Last-Translator: Xəyyam Qocayev <xxmn77@gmail.com>, 2021-2022\n"
|
||||
"Language-Team: Azerbaijani (Azerbaijan) (http://www.transifex.com/toofishes/"
|
||||
"archlinux-pacman/language/az_AZ/)\n"
|
||||
"Language: az_AZ\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: az_AZ\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#: scripts/makepkg.sh.in:139
|
||||
msgid "Cleaning up..."
|
||||
msgstr "Təmizlənməsi..."
|
||||
msgstr "Təmizlənir..."
|
||||
|
||||
#: scripts/makepkg.sh.in:183
|
||||
msgid "Entering %s environment..."
|
||||
|
@ -32,7 +33,7 @@ msgstr "%s ətraf mühit daxil edilir..."
|
|||
|
||||
#: scripts/makepkg.sh.in:190 scripts/makepkg.sh.in:415
|
||||
msgid "Starting %s()..."
|
||||
msgstr "%s başlayır ()..."
|
||||
msgstr "%s əməliyyatı başlayır ()..."
|
||||
|
||||
#: scripts/makepkg.sh.in:196
|
||||
msgid "pkgver() generated an invalid version: %s"
|
||||
|
@ -213,9 +214,10 @@ msgid "The package group has already been built. (use %s to overwrite)"
|
|||
msgstr "Paket qrupu artıq qurulub. (üzərinə yazmaq üçün %s istifadə edin)"
|
||||
|
||||
#: scripts/makepkg.sh.in:913
|
||||
msgid ""
|
||||
"Part of the package group has already been built. (use %s to overwrite)"
|
||||
msgstr "Paket qrupunun bir hissəsi artıq qurulub. (üzərinə yazmaq üçün %s istifadə edin)"
|
||||
msgid "Part of the package group has already been built. (use %s to overwrite)"
|
||||
msgstr ""
|
||||
"Paket qrupunun bir hissəsi artıq qurulub. (üzərinə yazmaq üçün %s istifadə "
|
||||
"edin)"
|
||||
|
||||
#: scripts/makepkg.sh.in:964
|
||||
msgid "Make packages compatible for use with pacman"
|
||||
|
@ -231,7 +233,8 @@ msgstr "Seçimlər:"
|
|||
|
||||
#: scripts/makepkg.sh.in:969
|
||||
msgid " -A, --ignorearch Ignore incomplete %s field in %s"
|
||||
msgstr " -A, --ignorearch buradakı tamamlanmamış %s sahəsini nəzərə almamaq: %s"
|
||||
msgstr ""
|
||||
" -A, --ignorearch buradakı tamamlanmamış %s sahəsini nəzərə almamaq: %s"
|
||||
|
||||
#: scripts/makepkg.sh.in:970
|
||||
msgid " -c, --clean Clean up work files after build"
|
||||
|
@ -247,7 +250,9 @@ msgstr " -d, --nodeps Bütün asılılıqların yoxlanılması buraxılsın
|
|||
|
||||
#: scripts/makepkg.sh.in:973
|
||||
msgid " -e, --noextract Do not extract source files (use existing %s dir)"
|
||||
msgstr " -e, --noextract Mənbə faylları çıxarılmasın (mövcud %s qovluğunu istifadə edin)"
|
||||
msgstr ""
|
||||
" -e, --noextract Mənbə faylları çıxarılmasın (mövcud %s qovluğunu istifadə "
|
||||
"edin)"
|
||||
|
||||
#: scripts/makepkg.sh.in:974
|
||||
msgid " -f, --force Overwrite existing package"
|
||||
|
@ -255,7 +260,8 @@ msgstr " -f, --force Mövcud faylların üzərinə yazılsın"
|
|||
|
||||
#: scripts/makepkg.sh.in:975
|
||||
msgid " -g, --geninteg Generate integrity checks for source files"
|
||||
msgstr " -g, --geninteg Mənbə faylları üçün bütövlüyün yoxlanılmasını yaratmaq"
|
||||
msgstr ""
|
||||
" -g, --geninteg Mənbə faylları üçün bütövlüyün yoxlanılmasını yaratmaq"
|
||||
|
||||
#: scripts/makepkg.sh.in:976
|
||||
msgid " -h, --help Show this help message and exit"
|
||||
|
@ -279,17 +285,21 @@ msgstr " -o, --nobuild Faylları yalnız endirmək və çıxartmaq"
|
|||
|
||||
#: scripts/makepkg.sh.in:981
|
||||
msgid " -p <file> Use an alternate build script (instead of '%s')"
|
||||
msgstr " -p <file> Alternativ qurulma skriptindən ('%s' əvəzinə) istifadə edin"
|
||||
msgstr ""
|
||||
" -p <file> Alternativ qurulma skriptindən ('%s' əvəzinə) istifadə "
|
||||
"edin"
|
||||
|
||||
#: scripts/makepkg.sh.in:982
|
||||
msgid ""
|
||||
" -r, --rmdeps Remove installed dependencies after a successful build"
|
||||
msgstr " -r, --rmdeps Uğurla qurulduqdan sonra quraşdırılmış asılılıqları silmək"
|
||||
msgstr ""
|
||||
" -r, --rmdeps Uğurla qurulduqdan sonra quraşdırılmış asılılıqları silmək"
|
||||
|
||||
#: scripts/makepkg.sh.in:983
|
||||
msgid ""
|
||||
" -R, --repackage Repackage contents of the package without rebuilding"
|
||||
msgstr " -R, --repackage Yenidən qurulmadan paketlərin tərkiblərini yenidən paketləmək"
|
||||
msgid " -R, --repackage Repackage contents of the package without rebuilding"
|
||||
msgstr ""
|
||||
" -R, --repackage Yenidən qurulmadan paketlərin tərkiblərini yenidən "
|
||||
"paketləmək"
|
||||
|
||||
#: scripts/makepkg.sh.in:984
|
||||
msgid " -s, --syncdeps Install missing dependencies with %s"
|
||||
|
@ -298,7 +308,9 @@ msgstr " -s, --syncdeps Çatışmayan asılılıqları %s ilə quraşdırmaq"
|
|||
#: scripts/makepkg.sh.in:985
|
||||
msgid ""
|
||||
" -S, --source Generate a source-only tarball without downloaded sources"
|
||||
msgstr " -S, --source Endirilmiş qaynaq faylları olmadan bir qaynaq arxivi yaratmaq"
|
||||
msgstr ""
|
||||
" -S, --source Endirilmiş qaynaq faylları olmadan bir qaynaq arxivi "
|
||||
"yaratmaq"
|
||||
|
||||
#: scripts/makepkg.sh.in:986
|
||||
msgid " -V, --version Show version information and exit"
|
||||
|
@ -308,7 +320,9 @@ msgstr " -V, --version Versiya məlumatlarını göstərmək və çıxmaq"
|
|||
msgid ""
|
||||
" --allsource Generate a source-only tarball including downloaded "
|
||||
"sources"
|
||||
msgstr " --allsource Endirilmiş mənbələr daxil olan yalnız-mənbə arxivi yaratmaq"
|
||||
msgstr ""
|
||||
" --allsource Endirilmiş mənbələr daxil olan yalnız-mənbə arxivi "
|
||||
"yaratmaq"
|
||||
|
||||
#: scripts/makepkg.sh.in:988
|
||||
msgid " --check Run the %s function in the %s"
|
||||
|
@ -316,7 +330,9 @@ msgstr " --check %s funksiyasını %s daxilində başladın"
|
|||
|
||||
#: scripts/makepkg.sh.in:989
|
||||
msgid " --config <file> Use an alternate config file (instead of '%s')"
|
||||
msgstr " --config <file> Alternativ tənzimləmə faylından ('%s' əvəzinə) istifadə edin"
|
||||
msgstr ""
|
||||
" --config <file> Alternativ tənzimləmə faylından ('%s' əvəzinə) istifadə "
|
||||
"edin"
|
||||
|
||||
#: scripts/makepkg.sh.in:990
|
||||
msgid " --holdver Do not update VCS sources"
|
||||
|
@ -324,9 +340,10 @@ msgstr " --holdver VCS mənbələrini yeniləməmək"
|
|||
|
||||
#: scripts/makepkg.sh.in:991
|
||||
msgid ""
|
||||
" --key <key> Specify a key to use for %s signing instead of the "
|
||||
"default"
|
||||
msgstr " --key <key> %s imzalanması üçün ilkin seçim əvəzinə bir açar istifadə etmək"
|
||||
" --key <key> Specify a key to use for %s signing instead of the default"
|
||||
msgstr ""
|
||||
" --key <key> %s imzalanması üçün ilkin seçim əvəzinə bir açar istifadə "
|
||||
"etmək"
|
||||
|
||||
#: scripts/makepkg.sh.in:992
|
||||
msgid " --noarchive Do not create package archive"
|
||||
|
@ -346,7 +363,8 @@ msgstr " --nosign Paket üçün imza yaratmamaq"
|
|||
|
||||
#: scripts/makepkg.sh.in:996
|
||||
msgid " --packagelist Only list package filepaths that would be produced"
|
||||
msgstr " --packagelist Yalnız yaradılacaq paket fayllarına yolları sıralamaq"
|
||||
msgstr ""
|
||||
" --packagelist Yalnız yaradılacaq paket fayllarına yolları sıralamaq"
|
||||
|
||||
#: scripts/makepkg.sh.in:997
|
||||
msgid " --printsrcinfo Print the generated SRCINFO and exit"
|
||||
|
@ -358,12 +376,13 @@ msgstr " --sign Ortaya çıxan paketi %s ilə imzalayın"
|
|||
|
||||
#: scripts/makepkg.sh.in:999
|
||||
msgid " --skipchecksums Do not verify checksums of the source files"
|
||||
msgstr " --skipchecksums Mənbə fayllarının yoxlama cəmi doğrulanmasın"
|
||||
msgstr " --skipchecksums Mənbə fayllarının yoxlama cəmi doğrulanmamaq"
|
||||
|
||||
#: scripts/makepkg.sh.in:1000
|
||||
msgid ""
|
||||
" --skipinteg Do not perform any verification checks on source files"
|
||||
msgstr " --skipinteg Qaynaq faylları üzərində hər hansı doğrulama əməli etməyin"
|
||||
msgstr ""
|
||||
" --skipinteg Qaynaq faylları üzərində hər hansı doğrulama əməli etməyin"
|
||||
|
||||
#: scripts/makepkg.sh.in:1001
|
||||
msgid " --skippgpcheck Do not verify source files with PGP signatures"
|
||||
|
@ -373,7 +392,9 @@ msgstr " --skippgpcheck Qaynaq fayllarını PGP imzası ilə doğrulamayın"
|
|||
msgid ""
|
||||
" --verifysource Download source files (if needed) and perform integrity "
|
||||
"checks"
|
||||
msgstr " --verifysource Qaynaq fayllarını endirin (əgər lazımdırsa) və bütövlüyünü yoxlayın"
|
||||
msgstr ""
|
||||
" --verifysource Qaynaq fayllarını endirin (əgər lazımdırsa) və "
|
||||
"bütövlüyünü yoxlayın"
|
||||
|
||||
#: scripts/makepkg.sh.in:1004
|
||||
msgid "These options can be passed to %s:"
|
||||
|
@ -386,12 +407,15 @@ msgstr " --asdeps Paketləri açıqca quraşdırılmamış kimi quraşd
|
|||
#: scripts/makepkg.sh.in:1007
|
||||
msgid ""
|
||||
" --needed Do not reinstall the targets that are already up to date"
|
||||
msgstr " --needed Ən son versiyaya yenilənmiş hədəfləri yenidən quraşdırmayın"
|
||||
msgstr ""
|
||||
" --needed Ən son versiyaya yenilənmiş hədəfləri yenidən "
|
||||
"quraşdırmayın"
|
||||
|
||||
#: scripts/makepkg.sh.in:1008
|
||||
msgid ""
|
||||
" --noconfirm Do not ask for confirmation when resolving dependencies"
|
||||
msgstr " --noconfirm Asıslıqların həlli zamanı təsdiq edilməni soruşmamaq"
|
||||
msgstr ""
|
||||
" --noconfirm Asıslıqların həlli zamanı təsdiq edilməni soruşmamaq"
|
||||
|
||||
#: scripts/makepkg.sh.in:1009
|
||||
msgid " --noprogressbar Do not show a progress bar when downloading files"
|
||||
|
@ -406,7 +430,9 @@ msgstr "Əgər %s göstərilməyibsə, %s, '%s'-i axtaracaqdır"
|
|||
msgid ""
|
||||
"This is free software; see the source for copying conditions.\\nThere is NO "
|
||||
"WARRANTY, to the extent permitted by law.\\n"
|
||||
msgstr "Bu azad proqram təminatıdır, şərtləri kopyalamaq üçün mənbəyə baxın.\\nQanunla icazə verilmiş səviyyədə ZƏMANƏT YOXDUR.\\n"
|
||||
msgstr ""
|
||||
"Bu azad proqram təminatıdır, şərtləri kopyalamaq üçün mənbəyə baxın."
|
||||
"\\nQanunla icazə verilmiş səviyyədə ZƏMANƏT YOXDUR.\\n"
|
||||
|
||||
#: scripts/makepkg.sh.in:1121 scripts/repo-add.sh.in:598
|
||||
msgid "%s signal caught. Exiting..."
|
||||
|
@ -416,11 +442,15 @@ msgstr "%s siqnal alındı. Çıxılır..."
|
|||
msgid ""
|
||||
"Running %s as root is not allowed as it can cause permanent,\\ncatastrophic "
|
||||
"damage to your system."
|
||||
msgstr "%s kök imtiyazları ilə başladıla bilməz, belə ki, bu sisteminizdə həmişəlik \\nciddi pozulmaya gətirib çıxara bilər."
|
||||
msgstr ""
|
||||
"%s kök imtiyazları ilə başladıla bilməz, belə ki, bu sisteminizdə həmişəlik "
|
||||
"\\nciddi pozulmaya gətirib çıxara bilər."
|
||||
|
||||
#: scripts/makepkg.sh.in:1197
|
||||
msgid "Do not use the %s option. This option is only for internal use by %s."
|
||||
msgstr "%sseçimini itifadə etməyin. bu seçim %s tərəfindən yalnız daxili istifadə üçündür."
|
||||
msgstr ""
|
||||
"%sseçimini itifadə etməyin. bu seçim %s tərəfindən yalnız daxili istifadə "
|
||||
"üçündür."
|
||||
|
||||
#: scripts/makepkg.sh.in:1212
|
||||
msgid "%s does not exist."
|
||||
|
@ -436,11 +466,11 @@ msgstr "%s, cari iş qovluğunda olmalıdır."
|
|||
|
||||
#: scripts/makepkg.sh.in:1300
|
||||
msgid "The key %s does not exist in your keyring."
|
||||
msgstr "%s, sizin açarlar bağında mövcud deyil."
|
||||
msgstr "%s açarı sizin açarlar bağında mövcud deyil."
|
||||
|
||||
#: scripts/makepkg.sh.in:1302 scripts/repo-add.sh.in:145
|
||||
msgid "There is no key in your keyring."
|
||||
msgstr "Sizin açarlar bağında açar yoxdur."
|
||||
msgstr "Sizin açarlar bağında heç bir açar yoxdur."
|
||||
|
||||
#: scripts/makepkg.sh.in:1326 scripts/makepkg.sh.in:1341
|
||||
msgid "Leaving %s environment."
|
||||
|
@ -468,11 +498,11 @@ msgstr "Asılılıq yoxlamaları ötürülür."
|
|||
|
||||
#: scripts/makepkg.sh.in:1389
|
||||
msgid "Checking runtime dependencies..."
|
||||
msgstr "Başlatmaq üçün asılılıqların yoxlanlıması..."
|
||||
msgstr "Başlatmaq üçün asılılıqlar yoxlanlır..."
|
||||
|
||||
#: scripts/makepkg.sh.in:1396
|
||||
msgid "Checking buildtime dependencies..."
|
||||
msgstr "Qurulma üçün asılılıqların yoxlanmılması..."
|
||||
msgstr "Qurulma vaxtı asılılıqları yoxlanılır..."
|
||||
|
||||
#: scripts/makepkg.sh.in:1408
|
||||
msgid "Could not resolve all dependencies."
|
||||
|
@ -480,11 +510,11 @@ msgstr "Bütün asılılıqlar həll edilə bilmədi."
|
|||
|
||||
#: scripts/makepkg.sh.in:1420
|
||||
msgid "Using existing %s tree"
|
||||
msgstr "Mövcud %s ağacının istifadə ediməsi"
|
||||
msgstr "Mövcud %s ağacından istifadə"
|
||||
|
||||
#: scripts/makepkg.sh.in:1427 scripts/makepkg.sh.in:1455
|
||||
msgid "Removing existing %s directory..."
|
||||
msgstr "Mövcud %s qovluğunun silinməsi..."
|
||||
msgstr "Mövcud %s qovluğu silinir..."
|
||||
|
||||
#: scripts/makepkg.sh.in:1450
|
||||
msgid "Sources are ready."
|
||||
|
@ -540,7 +570,9 @@ msgstr "%s, pacman verilənlər bazası qovluğu deyil"
|
|||
|
||||
#: scripts/pacman-db-upgrade.sh.in:130
|
||||
msgid "You must have correct permissions to upgrade the database."
|
||||
msgstr "Verilənlər bazasını ən son versiyaya yeniləmək üçün düzgün icazələriniz olmalıdır."
|
||||
msgstr ""
|
||||
"Verilənlər bazasını ən son versiyaya yeniləmək üçün düzgün icazələriniz "
|
||||
"olmalıdır."
|
||||
|
||||
#: scripts/pacman-db-upgrade.sh.in:140
|
||||
msgid "Pacman lock file was found. Cannot run while pacman is running."
|
||||
|
@ -560,7 +592,9 @@ msgstr "Pre-4.2 ver. bazası formatı aşkarlandı - yenilənir..."
|
|||
|
||||
#: scripts/pacman-db-upgrade.sh.in:185
|
||||
msgid "symlink '%s' points outside pacman root, manual repair required"
|
||||
msgstr "'%s' simvolik keçidi pacman kökü xaricində göstərilir, əl ilə bərpa tələb olundu"
|
||||
msgstr ""
|
||||
"'%s' simvolik keçidi pacman kökü xaricində göstərilir, əl ilə bərpa tələb "
|
||||
"olundu"
|
||||
|
||||
#: scripts/pacman-key.sh.in:58
|
||||
msgid "Usage: %s [options] operation [targets]"
|
||||
|
@ -568,7 +602,7 @@ msgstr "İstifadəsi: %s [ixtiyari] əməliyyat [hədəf]"
|
|||
|
||||
#: scripts/pacman-key.sh.in:60
|
||||
msgid "Manage pacman's list of trusted keys"
|
||||
msgstr "Etibarlı pacman açarların siyahılarını idarə edin"
|
||||
msgstr "Etibarlı pacman açarlarının siyahılarını idarə edin"
|
||||
|
||||
#: scripts/pacman-key.sh.in:62
|
||||
msgid "Operations:"
|
||||
|
@ -576,7 +610,9 @@ msgstr "Əməliyyatlar:"
|
|||
|
||||
#: scripts/pacman-key.sh.in:63
|
||||
msgid " -a, --add Add the specified keys (empty for stdin)"
|
||||
msgstr " -a, --add Göstərilmiş açarları əlavə edin (stdin üçün boşdur)"
|
||||
msgstr ""
|
||||
" -a, --add Göstərilmiş açarları əlavə edin (stdin üçün "
|
||||
"boşdur)"
|
||||
|
||||
#: scripts/pacman-key.sh.in:64
|
||||
msgid " -d, --delete Remove the specified keyids"
|
||||
|
@ -584,16 +620,21 @@ msgstr " -d, --delete Göstərilmiş açar İD-lərini silin"
|
|||
|
||||
#: scripts/pacman-key.sh.in:65
|
||||
msgid " -e, --export Export the specified or all keyids"
|
||||
msgstr " -e, --export Göstərilmiş və ya bütün açar İD-lərini ixrac etmək"
|
||||
msgstr ""
|
||||
" -e, --export Göstərilmiş və ya bütün açar İD-lərini ixrac "
|
||||
"etmək"
|
||||
|
||||
#: scripts/pacman-key.sh.in:66
|
||||
msgid ""
|
||||
" -f, --finger List fingerprint for specified or all keyids"
|
||||
msgstr " -f, --finger Göztərilmiş və ya bütün açar İD-ləri çün barmaq izinı üzə çıxarmaq"
|
||||
msgstr ""
|
||||
" -f, --finger Göztərilmiş və ya bütün açar İD-ləri çün barmaq "
|
||||
"izinı üzə çıxarmaq"
|
||||
|
||||
#: scripts/pacman-key.sh.in:67
|
||||
msgid " -l, --list-keys List the specified or all keys"
|
||||
msgstr " -l, --list-keys Göstərilmiş və ya bütün açarları üzə çıxarmaq"
|
||||
msgstr ""
|
||||
" -l, --list-keys Göstərilmiş və ya bütün açarları üzə çıxarmaq"
|
||||
|
||||
#: scripts/pacman-key.sh.in:68
|
||||
msgid " -r, --recv-keys Fetch the specified keyids"
|
||||
|
@ -601,12 +642,14 @@ msgstr " -r, --recv-keys Göstərilmiş açar İD-lərini almaq"
|
|||
|
||||
#: scripts/pacman-key.sh.in:69
|
||||
msgid " -u, --updatedb Update the trustdb of pacman"
|
||||
msgstr " -u, --updatedb Pacman etibarlılıq bazasını yeniləmək"
|
||||
msgstr " -u, --updatedb Pacman etibarlı VB-nı yeniləmək"
|
||||
|
||||
#: scripts/pacman-key.sh.in:70
|
||||
msgid ""
|
||||
" -v, --verify Verify the file(s) specified by the signature(s)"
|
||||
msgstr " -v, --verify İmza(lar) tərəfindən verilmiş fayl(lar)ı doğrulamaq"
|
||||
msgstr ""
|
||||
" -v, --verify İmza(lar) tərəfindən verilmiş fayl(lar)ı "
|
||||
"doğrulamaq"
|
||||
|
||||
#: scripts/pacman-key.sh.in:71
|
||||
msgid ""
|
||||
|
@ -621,11 +664,15 @@ msgstr " --import pubring.gpg qovluq(lar)dan idxal edilir"
|
|||
msgid ""
|
||||
" --import-trustdb Imports ownertrust values from trustdb.gpg in "
|
||||
"dir(s)"
|
||||
msgstr " --import-trustdb özgüvən dəyərlərini trustdb.gpg -dən qovluq(lar) daxilinə idxal edin"
|
||||
msgstr ""
|
||||
" --import-trustdb özgüvən dəyərlərini trustdb.gpg -dən qovluq(lar) "
|
||||
"daxilinə idxal edin"
|
||||
|
||||
#: scripts/pacman-key.sh.in:74
|
||||
msgid " --init Ensure the keyring is properly initialized"
|
||||
msgstr " --init Açarlar bağının əvvəlcədən başladıldığına əmin olun"
|
||||
msgstr ""
|
||||
" --init Açarlar bağının əvvəlcədən başladıldığına əmin "
|
||||
"olun"
|
||||
|
||||
#: scripts/pacman-key.sh.in:75
|
||||
msgid " --list-sigs List keys and their signatures"
|
||||
|
@ -633,18 +680,23 @@ msgstr " --list-sigs Açarlar və onların imzalarının siyahıs
|
|||
|
||||
#: scripts/pacman-key.sh.in:76
|
||||
msgid " --lsign-key Locally sign the specified keyid"
|
||||
msgstr " --lsign-key Göstərilmiş açar İD-lərini yerli olaraq imzalamaq"
|
||||
msgstr ""
|
||||
" --lsign-key Göstərilmiş açar İD-lərini yerli olaraq imzalamaq"
|
||||
|
||||
#: scripts/pacman-key.sh.in:77
|
||||
msgid ""
|
||||
" --populate Reload the default keys from the (given) "
|
||||
"keyrings\\n in '%s'"
|
||||
msgstr " --populate Standart açarları '%s' daxilindəki (verilmiş) açarlar\\n bağından yenidən yükləmək"
|
||||
msgstr ""
|
||||
" --populate Standart açarları '%s' daxilindəki (verilmiş) "
|
||||
"açarlar\\n bağından yenidən yükləmək"
|
||||
|
||||
#: scripts/pacman-key.sh.in:79
|
||||
msgid ""
|
||||
" --refresh-keys Update specified or all keys from a keyserver"
|
||||
msgstr " --refresh-keys Göstərilmiş və ya bütün açarları açar serverindən yeniləmək"
|
||||
msgstr ""
|
||||
" --refresh-keys Göstərilmiş və ya bütün açarları açar "
|
||||
"serverindən yeniləmək"
|
||||
|
||||
#: scripts/pacman-key.sh.in:80
|
||||
msgid " --verbose Show extra information"
|
||||
|
@ -652,15 +704,19 @@ msgstr " --verbose Əlavə məlumatları göstərmək"
|
|||
|
||||
#: scripts/pacman-key.sh.in:83
|
||||
msgid ""
|
||||
" --config <file> Use an alternate config file (instead of\\n"
|
||||
" '%s')"
|
||||
msgstr " --config <file> Alternativ tənzimləmə faylını istifadə edin ('%s'\\n əvəzinə)"
|
||||
" --config <file> Use an alternate config file (instead "
|
||||
"of\\n '%s')"
|
||||
msgstr ""
|
||||
" --config <file> Alternativ tənzimləmə faylını istifadə edin "
|
||||
"('%s'\\n əvəzinə)"
|
||||
|
||||
#: scripts/pacman-key.sh.in:85
|
||||
msgid ""
|
||||
" --gpgdir <dir> Set an alternate directory for GnuPG (instead\\n"
|
||||
" of '%s')"
|
||||
msgstr " --gpgdir <dir> GnuPG üçün alternativ qovluq təyin etmək ('%s'\\n əvəzinə)"
|
||||
" --gpgdir <dir> Set an alternate directory for GnuPG "
|
||||
"(instead\\n of '%s')"
|
||||
msgstr ""
|
||||
" --gpgdir <dir> GnuPG üçün alternativ qovluq təyin etmək "
|
||||
"('%s'\\n əvəzinə)"
|
||||
|
||||
#: scripts/pacman-key.sh.in:87
|
||||
msgid " --keyserver <server-url> Specify a keyserver to use if necessary"
|
||||
|
@ -749,7 +805,7 @@ msgstr "%s açarı söndürülür..."
|
|||
|
||||
#: scripts/pacman-key.sh.in:381
|
||||
msgid "Disabled %s keys."
|
||||
msgstr "%s açarlar söndürüldü."
|
||||
msgstr "%s açar söndürüldü."
|
||||
|
||||
#: scripts/pacman-key.sh.in:388
|
||||
msgid "A specified keyfile could not be added to the keyring."
|
||||
|
@ -821,11 +877,11 @@ msgstr "%s tərəfindən tanıdılmış imza doğrulana bilmədi."
|
|||
|
||||
#: scripts/pacman-key.sh.in:601
|
||||
msgid "Updating trust database..."
|
||||
msgstr "Etibarlılıq verilənlər bazası yenilənir..."
|
||||
msgstr "Etibarlı verilənlər bazası yenilənir..."
|
||||
|
||||
#: scripts/pacman-key.sh.in:603
|
||||
msgid "Trust database could not be updated."
|
||||
msgstr "Etibarlılıq verilənlər bazası yenilənə bilmədi."
|
||||
msgstr "Etibarlı verilənlər bazası yenilənə bilmədi."
|
||||
|
||||
#: scripts/pacman-key.sh.in:671
|
||||
msgid "Cannot find the %s binary required for all %s operations."
|
||||
|
@ -857,13 +913,15 @@ msgstr "Hədəflər göstərilməyib"
|
|||
|
||||
#: scripts/repo-add.sh.in:58
|
||||
msgid "Usage: repo-add [options] <path-to-db> <package> ...\\n"
|
||||
msgstr "İstifadəsi: repo-add [seçim] <ver.-bazasına-yol> <paket> ...\\n"
|
||||
msgstr "İstifadəsi: repo-add [parametrlər] <path-to-db> <package> ...\\n"
|
||||
|
||||
#: scripts/repo-add.sh.in:60
|
||||
msgid ""
|
||||
"repo-add will update a package database by reading a package "
|
||||
"file.\\nMultiple packages to add can be specified on the command line.\\n"
|
||||
msgstr "repo-add, paketfaylını oxumaqla paket verilənlər bazasını yeniləyəcəkdir.\\nBirdən çox paket əlavə ediləcəksə bu əmr sətrində göstəilməlidir.\\n"
|
||||
"repo-add will update a package database by reading a package file."
|
||||
"\\nMultiple packages to add can be specified on the command line.\\n"
|
||||
msgstr ""
|
||||
"repo-add, paket faylını oxumaqla paket verilənlər bazasını yeniləyəcəkdir."
|
||||
"\\nBirdən çox paket əlavə ediləcəksə bu əmr sətrində göstəilməlidir.\\n"
|
||||
|
||||
#: scripts/repo-add.sh.in:64 scripts/repo-add.sh.in:76
|
||||
msgid "Options:\\n"
|
||||
|
@ -871,32 +929,41 @@ msgstr "Seçimlər:\\n"
|
|||
|
||||
#: scripts/repo-add.sh.in:65
|
||||
msgid ""
|
||||
" -n, --new only add packages that are not already in the "
|
||||
"database\\n"
|
||||
msgstr " -n, --new yalnız verilənlər bazasında olmayan paketləri əlavə etmək\\n"
|
||||
" -n, --new only add packages that are not already in the database\\n"
|
||||
msgstr ""
|
||||
" -n, --new yalnız verilənlər bazasında olmayan paketləri əlavə "
|
||||
"etmək\\n"
|
||||
|
||||
#: scripts/repo-add.sh.in:66
|
||||
msgid ""
|
||||
" -R, --remove remove old package file from disk after updating "
|
||||
"database\\n"
|
||||
msgstr " -R, --remove verilənlər bazası yeniləndikdən sonra köhnə paket faylını diskdən silmək\\n"
|
||||
msgstr ""
|
||||
" -R, --remove verilənlər bazası yeniləndikdən sonra köhnə paket "
|
||||
"faylını diskdən silmək\\n"
|
||||
|
||||
#: scripts/repo-add.sh.in:67
|
||||
msgid ""
|
||||
" -p, --prevent-downgrade do not add package to database if a newer version "
|
||||
"is already present\\n"
|
||||
msgstr " -p, --prevent-downgrade əgər ən yeni versiya artıq təqdim olunmuşsa paketi verilənlər bazasına daxil etməmək\\n"
|
||||
msgstr ""
|
||||
" -p, --prevent-downgrade əgər ən yeni versiya artıq təqdim olunmuşsa "
|
||||
"paketi verilənlər bazasına daxil etməmək\\n"
|
||||
|
||||
#: scripts/repo-add.sh.in:69
|
||||
msgid "Usage: repo-remove [options] <path-to-db> <packagename> ...\\n"
|
||||
msgstr "İstifadəsi: repo-remove [seçim] <ver.-bazasına-yol> <paketin_adı>...\\n"
|
||||
msgstr ""
|
||||
"İstifadəsi: repo-remove [parametrlər] <path-to-db> <packagename> ...\\n"
|
||||
|
||||
#: scripts/repo-add.sh.in:71
|
||||
msgid ""
|
||||
"repo-remove will update a package database by removing the package "
|
||||
"name\\nspecified on the command line from the given repo database. "
|
||||
"Multiple\\npackages to remove can be specified on the command line.\\n"
|
||||
msgstr "repo-remove, əmr sətrində göstərilmiş paket adını verilmiş verilənlər bazasından\\nsilərək paket verilənlər bazasını yeniləyəcəkdir. Əmr sətrində birdən çox\\npaketlərin silinməsi göstərilə bilər.\\n"
|
||||
msgstr ""
|
||||
"repo-remove, əmr sətrində göstərilmiş paket adını, verilmiş verilənlər "
|
||||
"bazasından\\nsilərək paket verilənlər bazasını yeniləyəcəkdir. Əmr sətrində "
|
||||
"birdən çox\\npaketlərin silinməsi göstərilə bilər.\\n"
|
||||
|
||||
#: scripts/repo-add.sh.in:78
|
||||
msgid "Please move along, there is nothing to see here.\\n"
|
||||
|
@ -912,20 +979,27 @@ msgstr " -q, --quiet çıxışı minimuma endirmək\\n"
|
|||
|
||||
#: scripts/repo-add.sh.in:83
|
||||
msgid " -s, --sign sign database with GnuPG after update\\n"
|
||||
msgstr " -s, --sign yeniləndikdən sonra ver. bazasını GnuPG ilə imzalamaq\\n"
|
||||
msgstr ""
|
||||
" -s, --sign yeniləndikdən sonra ver. bazasını GnuPG ilə imzalamaq\\n"
|
||||
|
||||
#: scripts/repo-add.sh.in:84
|
||||
msgid " -k, --key <key> use the specified key to sign the database\\n"
|
||||
msgstr " -k, --key <key> ver. bazasını imzalamaq üçün göstərilmiş açardan istifadə edin\\n"
|
||||
msgstr ""
|
||||
" -k, --key <key> ver. bazasını imzalamaq üçün göstərilmiş açardan "
|
||||
"istifadə edin\\n"
|
||||
|
||||
#: scripts/repo-add.sh.in:85
|
||||
msgid " -v, --verify verify database's signature before update\\n"
|
||||
msgstr " -v, --verify yenilənmədən öncə verilənlər bazası imzasını doğrulamaq\\n"
|
||||
msgstr ""
|
||||
" -v, --verify yenilənmədən öncə verilənlər bazası imzasını "
|
||||
"doğrulamaq\\n"
|
||||
|
||||
#: scripts/repo-add.sh.in:86
|
||||
msgid ""
|
||||
"\\nSee %s(8) for more details and descriptions of the available options.\\n"
|
||||
msgstr "\\nƏlçatan seçimlərin daha ətraflı məlumat və təsvirlərini görmək üçün %s(8) baxın.\\n"
|
||||
msgstr ""
|
||||
"\\nƏlçatan seçimlərin daha ətraflı məlumat və təsvirlərini görmək üçün %s(8) "
|
||||
"baxın.\\n"
|
||||
|
||||
#: scripts/repo-add.sh.in:90
|
||||
msgid ""
|
||||
|
@ -1018,7 +1092,7 @@ msgstr "%s prosesi tərəfindən tutlur"
|
|||
|
||||
#: scripts/repo-add.sh.in:414
|
||||
msgid "Repository file '%s' is not a proper pacman database."
|
||||
msgstr "'%s' repozitoriya faylı uyğun pacman verilənlər bazası deyil."
|
||||
msgstr "'%s' repozitoriya faylı düzgün pacman verilənlər bazası deyil."
|
||||
|
||||
#: scripts/repo-add.sh.in:419
|
||||
msgid "Extracting %s to a temporary location..."
|
||||
|
@ -1110,7 +1184,7 @@ msgstr "Bunlar üçün bütövlük yoxlamaları çatışmır: %s"
|
|||
|
||||
#: scripts/libmakepkg/integrity/verify_checksum.sh.in:77
|
||||
msgid "Skipped"
|
||||
msgstr "Buraxıldı"
|
||||
msgstr "Ötürüldü"
|
||||
|
||||
#: scripts/libmakepkg/integrity/verify_checksum.sh.in:82
|
||||
msgid "NOT FOUND"
|
||||
|
@ -1130,7 +1204,7 @@ msgstr "ALINMADI"
|
|||
|
||||
#: scripts/libmakepkg/integrity/verify_checksum.sh.in:115
|
||||
msgid "Validating %s files with %s..."
|
||||
msgstr "%s fayllarının %s ilə doğrulanması..."
|
||||
msgstr "%s faylları %s ilə doğrulanır..."
|
||||
|
||||
#: scripts/libmakepkg/integrity/verify_checksum.sh.in:122
|
||||
msgid "One or more files did not pass the validity check!"
|
||||
|
@ -1225,7 +1299,9 @@ msgstr "%s, masiiv olmamalıdır"
|
|||
|
||||
#: scripts/libmakepkg/lint_config/variable.sh.in:66
|
||||
msgid "PACKAGER should have the format 'Example Name <email@address.invalid>'"
|
||||
msgstr "PAKETLƏYİCİ-nin adı 'Paketləyicinin Adı <email@address.invalid>' formatında olmalıdır"
|
||||
msgstr ""
|
||||
"PAKETLƏYİCİ-nin adı 'Paketləyicinin Adı <email@address.invalid>' formatında "
|
||||
"olmalıdır"
|
||||
|
||||
#: scripts/libmakepkg/lint_package.sh.in:41
|
||||
msgid "Checking for packaging issues..."
|
||||
|
@ -1355,14 +1431,12 @@ msgstr "%s alınması uğursuz oldu"
|
|||
|
||||
#: scripts/libmakepkg/source/bzr.sh.in:85
|
||||
#: scripts/libmakepkg/source/git.sh.in:112
|
||||
#: scripts/libmakepkg/source/hg.sh.in:93
|
||||
#: scripts/libmakepkg/source/svn.sh.in:62
|
||||
#: scripts/libmakepkg/source/hg.sh.in:93 scripts/libmakepkg/source/svn.sh.in:62
|
||||
msgid "Unrecognized reference: %s"
|
||||
msgstr "Müəyyən olunmayan keçid: %s"
|
||||
|
||||
#: scripts/libmakepkg/source/bzr.sh.in:94
|
||||
#: scripts/libmakepkg/source/git.sh.in:81
|
||||
#: scripts/libmakepkg/source/hg.sh.in:79
|
||||
#: scripts/libmakepkg/source/git.sh.in:81 scripts/libmakepkg/source/hg.sh.in:79
|
||||
#: scripts/libmakepkg/source/svn.sh.in:95
|
||||
msgid "Creating working copy of %s %s repo..."
|
||||
msgstr "%s %s reposunun işlək nüsxəsi yaradılır..."
|
||||
|
@ -1371,19 +1445,19 @@ msgstr "%s %s reposunun işlək nüsxəsi yaradılır..."
|
|||
#: scripts/libmakepkg/source/git.sh.in:89
|
||||
#: scripts/libmakepkg/source/hg.sh.in:102
|
||||
msgid "Failure while updating working copy of %s %s repo"
|
||||
msgstr "%s %s reposunun işlək nüsxəsinin yaradılması uğursuz oldu"
|
||||
msgstr "%s %s reposunun işlək nüsxəsi yaradıla bilmədi"
|
||||
|
||||
#: scripts/libmakepkg/source/bzr.sh.in:105
|
||||
#: scripts/libmakepkg/source/git.sh.in:95
|
||||
#: scripts/libmakepkg/source/git.sh.in:129
|
||||
#: scripts/libmakepkg/source/hg.sh.in:107
|
||||
msgid "Failure while creating working copy of %s %s repo"
|
||||
msgstr "%s %s reposunun işlək nüsxəsinin yaradılması uğursuz oldu"
|
||||
msgstr "%s %s reposunun işlək nüsxəsi yaradıla bilmədi"
|
||||
|
||||
#: scripts/libmakepkg/source/file.sh.in:36
|
||||
#: scripts/libmakepkg/source/local.sh.in:36
|
||||
msgid "Found %s"
|
||||
msgstr "Tapılmışdır %s"
|
||||
msgstr "%s tapıldı"
|
||||
|
||||
#: scripts/libmakepkg/source/file.sh.in:55
|
||||
msgid "Downloading %s..."
|
||||
|
@ -1401,14 +1475,12 @@ msgstr "%s, %s ilə çıxarılır"
|
|||
msgid "Failed to extract %s"
|
||||
msgstr "%s çıxarılması alınmadı"
|
||||
|
||||
#: scripts/libmakepkg/source/git.sh.in:50
|
||||
#: scripts/libmakepkg/source/hg.sh.in:49
|
||||
#: scripts/libmakepkg/source/git.sh.in:50 scripts/libmakepkg/source/hg.sh.in:49
|
||||
#: scripts/libmakepkg/source/svn.sh.in:69
|
||||
msgid "Cloning %s %s repo..."
|
||||
msgstr "%s %s reposunun təkrarı yaradılır..."
|
||||
|
||||
#: scripts/libmakepkg/source/git.sh.in:52
|
||||
#: scripts/libmakepkg/source/hg.sh.in:51
|
||||
#: scripts/libmakepkg/source/git.sh.in:52 scripts/libmakepkg/source/hg.sh.in:51
|
||||
#: scripts/libmakepkg/source/svn.sh.in:72
|
||||
msgid "Failure while downloading %s %s repo"
|
||||
msgstr "%s %s reposunun endirilməsi zamanı xəta"
|
||||
|
@ -1417,14 +1489,12 @@ msgstr "%s %s reposunun endirilməsi zamanı xəta"
|
|||
msgid "%s is not a clone of %s"
|
||||
msgstr "%s, %s-n təkrarı deyil"
|
||||
|
||||
#: scripts/libmakepkg/source/git.sh.in:64
|
||||
#: scripts/libmakepkg/source/hg.sh.in:56
|
||||
#: scripts/libmakepkg/source/git.sh.in:64 scripts/libmakepkg/source/hg.sh.in:56
|
||||
#: scripts/libmakepkg/source/svn.sh.in:77
|
||||
msgid "Updating %s %s repo..."
|
||||
msgstr "%s %s reposu yenilənir..."
|
||||
|
||||
#: scripts/libmakepkg/source/git.sh.in:67
|
||||
#: scripts/libmakepkg/source/hg.sh.in:60
|
||||
#: scripts/libmakepkg/source/git.sh.in:67 scripts/libmakepkg/source/hg.sh.in:60
|
||||
#: scripts/libmakepkg/source/svn.sh.in:81
|
||||
msgid "Failure while updating %s %s repo"
|
||||
msgstr "%s %s reposunun yenilənməsində xəta"
|
||||
|
@ -1451,11 +1521,11 @@ msgstr "Boş qovluqlar silinir..."
|
|||
|
||||
#: scripts/libmakepkg/tidy/libtool.sh.in:35
|
||||
msgid "Removing %s files..."
|
||||
msgstr "%s fayllar silinir..."
|
||||
msgstr "%s faylları silinir..."
|
||||
|
||||
#: scripts/libmakepkg/tidy/purge.sh.in:35
|
||||
msgid "Purging unwanted files..."
|
||||
msgstr "Arzuolunmaz fayllar təmizlənir..."
|
||||
msgstr "Lazımsız fayllar təmizlənir..."
|
||||
|
||||
#: scripts/libmakepkg/tidy/staticlibs.sh.in:35
|
||||
msgid "Removing static library files..."
|
||||
|
|
|
@ -9,9 +9,9 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Arch Linux Pacman package manager\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.archlinux.org/index.php?project=3\n"
|
||||
"POT-Creation-Date: 2021-09-04 16:15+1000\n"
|
||||
"PO-Revision-Date: 2021-08-16 11:04+0000\n"
|
||||
"Last-Translator: Galin Iskrenov <loot270@abv.bg>\n"
|
||||
"POT-Creation-Date: 2022-09-26 21:09+1000\n"
|
||||
"PO-Revision-Date: 2011-08-08 22:35+0000\n"
|
||||
"Last-Translator: Galin Iskrenov <loot270@abv.bg>, 2016-2019,2021\n"
|
||||
"Language-Team: Bulgarian (http://www.transifex.com/toofishes/archlinux-"
|
||||
"pacman/language/bg/)\n"
|
||||
"Language: bg\n"
|
||||
|
@ -642,11 +642,11 @@ msgstr "--lsign-key Локално подписан с указан keyid"
|
|||
|
||||
#: scripts/pacman-key.sh.in:77
|
||||
msgid ""
|
||||
" --populate Reload the default keys from the (given) keyrings"
|
||||
"\\n in '%s'"
|
||||
" --populate Reload the default keys from the (given) "
|
||||
"keyrings\\n in '%s'"
|
||||
msgstr ""
|
||||
"--populate Презареждане на подразбиращи се ключове от (указан) ключодържателя"
|
||||
"\\n в '%s'"
|
||||
"--populate Презареждане на подразбиращи се ключове от (указан) "
|
||||
"ключодържателя\\n в '%s'"
|
||||
|
||||
#: scripts/pacman-key.sh.in:79
|
||||
msgid ""
|
||||
|
@ -659,15 +659,15 @@ msgstr " --verbose Показване на допълнител
|
|||
|
||||
#: scripts/pacman-key.sh.in:83
|
||||
msgid ""
|
||||
" --config <file> Use an alternate config file (instead of"
|
||||
"\\n '%s')"
|
||||
" --config <file> Use an alternate config file (instead "
|
||||
"of\\n '%s')"
|
||||
msgstr ""
|
||||
"--config <файл> Използвай алтернативен конфигурационен файл (вместо\\n '%s')"
|
||||
|
||||
#: scripts/pacman-key.sh.in:85
|
||||
msgid ""
|
||||
" --gpgdir <dir> Set an alternate directory for GnuPG (instead"
|
||||
"\\n of '%s')"
|
||||
" --gpgdir <dir> Set an alternate directory for GnuPG "
|
||||
"(instead\\n of '%s')"
|
||||
msgstr ""
|
||||
"--gpgdir <dir> Задаване на алтернативна директория за GnuPG (вместо\\n на "
|
||||
"'%s')"
|
||||
|
@ -890,8 +890,8 @@ msgstr "-n, --new само добавя пакети липсващи в баз
|
|||
|
||||
#: scripts/repo-add.sh.in:66
|
||||
msgid ""
|
||||
" -R, --remove remove old package file from disk after updating database"
|
||||
"\\n"
|
||||
" -R, --remove remove old package file from disk after updating "
|
||||
"database\\n"
|
||||
msgstr ""
|
||||
"-R, --remove премахва стария пакет от диска след обновяване на базата\\n"
|
||||
|
||||
|
@ -909,9 +909,9 @@ msgstr "Използване: repo-remove [опции] <path-to-db><packagename>
|
|||
|
||||
#: scripts/repo-add.sh.in:71
|
||||
msgid ""
|
||||
"repo-remove will update a package database by removing the package name"
|
||||
"\\nspecified on the command line from the given repo database. Multiple"
|
||||
"\\npackages to remove can be specified on the command line.\\n"
|
||||
"repo-remove will update a package database by removing the package "
|
||||
"name\\nspecified on the command line from the given repo database. "
|
||||
"Multiple\\npackages to remove can be specified on the command line.\\n"
|
||||
msgstr ""
|
||||
"repo-remove ще обнови пакетната база чрез премахване на пакет\\nуказан в "
|
||||
"командния ред за дадена база нахранилище. Множество\\nпакети за премахване "
|
||||
|
|
|
@ -8,9 +8,9 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Arch Linux Pacman package manager\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.archlinux.org/index.php?project=3\n"
|
||||
"POT-Creation-Date: 2021-09-04 16:15+1000\n"
|
||||
"PO-Revision-Date: 2021-04-23 00:41+0000\n"
|
||||
"Last-Translator: Allan McRae <allan@archlinux.org>\n"
|
||||
"POT-Creation-Date: 2022-09-26 21:09+1000\n"
|
||||
"PO-Revision-Date: 2011-08-08 22:35+0000\n"
|
||||
"Last-Translator: Gwenn M <tornoz@laposte.net>, 2015-2016,2019\n"
|
||||
"Language-Team: Breton (http://www.transifex.com/toofishes/archlinux-pacman/"
|
||||
"language/br/)\n"
|
||||
"Language: br\n"
|
||||
|
@ -18,10 +18,10 @@ msgstr ""
|
|||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"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"
|
||||
"%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 "
|
||||
"&& n % 1000000 == 0) ? 3 : 4);\n"
|
||||
"=71) && (n%100 !=91) ? 0 :(n%10 == 2) && (n%100 != 12) && (n%100 !=72) && "
|
||||
"(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 && n % 1000000 == 0) ? 3 : 4);\n"
|
||||
|
||||
#: scripts/makepkg.sh.in:139
|
||||
msgid "Cleaning up..."
|
||||
|
@ -427,8 +427,8 @@ msgid ""
|
|||
"Running %s as root is not allowed as it can cause permanent,\\ncatastrophic "
|
||||
"damage to your system."
|
||||
msgstr ""
|
||||
"N'eo ket aotreet erounit %s evel root rak e c'hell sevel freuzioù peurbadus"
|
||||
"\\nha grevus-tre d'ho reizhad."
|
||||
"N'eo ket aotreet erounit %s evel root rak e c'hell sevel freuzioù "
|
||||
"peurbadus\\nha grevus-tre d'ho reizhad."
|
||||
|
||||
#: scripts/makepkg.sh.in:1197
|
||||
msgid "Do not use the %s option. This option is only for internal use by %s."
|
||||
|
@ -659,8 +659,8 @@ msgstr "--lsign-key Sinañ an naoudi alc'hwez erspized en un doare lec'hel"
|
|||
|
||||
#: scripts/pacman-key.sh.in:77
|
||||
msgid ""
|
||||
" --populate Reload the default keys from the (given) keyrings"
|
||||
"\\n in '%s'"
|
||||
" --populate Reload the default keys from the (given) "
|
||||
"keyrings\\n in '%s'"
|
||||
msgstr ""
|
||||
"--populate Adkargañ an alc'hwezioù dre ziouer adalek an troñselloù roet\\n e "
|
||||
"'%s'"
|
||||
|
@ -678,14 +678,14 @@ msgstr ""
|
|||
|
||||
#: scripts/pacman-key.sh.in:83
|
||||
msgid ""
|
||||
" --config <file> Use an alternate config file (instead of"
|
||||
"\\n '%s')"
|
||||
" --config <file> Use an alternate config file (instead "
|
||||
"of\\n '%s')"
|
||||
msgstr "--config <restr> Ober gant ur restr keflunian a-eil (e plas\\n '%s')"
|
||||
|
||||
#: scripts/pacman-key.sh.in:85
|
||||
msgid ""
|
||||
" --gpgdir <dir> Set an alternate directory for GnuPG (instead"
|
||||
"\\n of '%s')"
|
||||
" --gpgdir <dir> Set an alternate directory for GnuPG "
|
||||
"(instead\\n of '%s')"
|
||||
msgstr ""
|
||||
"--gpgdir <kavlec'h> Arventennañ ur c'havlec'h a-eil evit GNuPG (e plas\\n "
|
||||
"'%s')"
|
||||
|
@ -907,8 +907,8 @@ msgstr "-n, --new ouzhpennañ pakadoù ha n'int ket er stlennvon nemetken\\n"
|
|||
|
||||
#: scripts/repo-add.sh.in:66
|
||||
msgid ""
|
||||
" -R, --remove remove old package file from disk after updating database"
|
||||
"\\n"
|
||||
" -R, --remove remove old package file from disk after updating "
|
||||
"database\\n"
|
||||
msgstr ""
|
||||
"-R, --remove dilemel ar restroù pakad kozh eus ar bladenn pa vez hizivaet ar "
|
||||
"stlennvon\\n"
|
||||
|
@ -925,9 +925,9 @@ msgstr ""
|
|||
|
||||
#: scripts/repo-add.sh.in:71
|
||||
msgid ""
|
||||
"repo-remove will update a package database by removing the package name"
|
||||
"\\nspecified on the command line from the given repo database. Multiple"
|
||||
"\\npackages to remove can be specified on the command line.\\n"
|
||||
"repo-remove will update a package database by removing the package "
|
||||
"name\\nspecified on the command line from the given repo database. "
|
||||
"Multiple\\npackages to remove can be specified on the command line.\\n"
|
||||
msgstr ""
|
||||
"Hizivaet e vo ur stlennvon pakadoù gant repo-remove en ur dilemel anv ar "
|
||||
"pakad\\nerspizet el linenn-urzhiañ adalek ar stlennvon mirlec'h roet. Meur a "
|
||||
|
|
|
@ -14,9 +14,9 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Arch Linux Pacman package manager\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.archlinux.org/index.php?project=3\n"
|
||||
"POT-Creation-Date: 2021-09-04 16:15+1000\n"
|
||||
"PO-Revision-Date: 2021-05-02 11:39+0000\n"
|
||||
"Last-Translator: Davidmp <medipas@gmail.com>\n"
|
||||
"POT-Creation-Date: 2022-09-26 21:09+1000\n"
|
||||
"PO-Revision-Date: 2011-08-08 22:35+0000\n"
|
||||
"Last-Translator: xanb <xancorreu@gmail.com>, 2014\n"
|
||||
"Language-Team: Catalan (http://www.transifex.com/toofishes/archlinux-pacman/"
|
||||
"language/ca/)\n"
|
||||
"Language: ca\n"
|
||||
|
@ -292,8 +292,8 @@ msgstr " -o, --nobuild Només baixa i extreu els fitxers."
|
|||
#: scripts/makepkg.sh.in:981
|
||||
msgid " -p <file> Use an alternate build script (instead of '%s')"
|
||||
msgstr ""
|
||||
" -p <file> Usa un script de construcció alternatiu (en lloc de \"%s"
|
||||
"\")."
|
||||
" -p <file> Usa un script de construcció alternatiu (en lloc de "
|
||||
"\"%s\")."
|
||||
|
||||
#: scripts/makepkg.sh.in:982
|
||||
msgid ""
|
||||
|
@ -338,8 +338,8 @@ msgstr " --check Executa la funció %s a %s."
|
|||
#: scripts/makepkg.sh.in:989
|
||||
msgid " --config <file> Use an alternate config file (instead of '%s')"
|
||||
msgstr ""
|
||||
" --config <file> Usa un fitxer de configuració alternatiu (en lloc de \"%s"
|
||||
"\")."
|
||||
" --config <file> Usa un fitxer de configuració alternatiu (en lloc de "
|
||||
"\"%s\")."
|
||||
|
||||
#: scripts/makepkg.sh.in:990
|
||||
msgid " --holdver Do not update VCS sources"
|
||||
|
@ -705,8 +705,8 @@ msgstr ""
|
|||
|
||||
#: scripts/pacman-key.sh.in:77
|
||||
msgid ""
|
||||
" --populate Reload the default keys from the (given) keyrings"
|
||||
"\\n in '%s'"
|
||||
" --populate Reload the default keys from the (given) "
|
||||
"keyrings\\n in '%s'"
|
||||
msgstr ""
|
||||
" --populate Recarrega les claus per defecte dels clauers "
|
||||
"(indicats)\\n a \"%s\"."
|
||||
|
@ -724,16 +724,16 @@ msgstr " --verbose Mostra informació complementària."
|
|||
|
||||
#: scripts/pacman-key.sh.in:83
|
||||
msgid ""
|
||||
" --config <file> Use an alternate config file (instead of"
|
||||
"\\n '%s')"
|
||||
" --config <file> Use an alternate config file (instead "
|
||||
"of\\n '%s')"
|
||||
msgstr ""
|
||||
" --config <file> Usa un fitxer de configuració alternatiu (en "
|
||||
"lloc de\\n \"%s\")."
|
||||
|
||||
#: scripts/pacman-key.sh.in:85
|
||||
msgid ""
|
||||
" --gpgdir <dir> Set an alternate directory for GnuPG (instead"
|
||||
"\\n of '%s')"
|
||||
" --gpgdir <dir> Set an alternate directory for GnuPG "
|
||||
"(instead\\n of '%s')"
|
||||
msgstr ""
|
||||
" --gpgdir <dir> Estableix un directori alternatiu per a GnuPG "
|
||||
"(en lloc\\n de \"%s\")."
|
||||
|
@ -959,8 +959,8 @@ msgstr ""
|
|||
|
||||
#: scripts/repo-add.sh.in:66
|
||||
msgid ""
|
||||
" -R, --remove remove old package file from disk after updating database"
|
||||
"\\n"
|
||||
" -R, --remove remove old package file from disk after updating "
|
||||
"database\\n"
|
||||
msgstr ""
|
||||
" -R, --remove Suprimeix el fitxer antic del paquet del disc després "
|
||||
"d'actualitzar la base de dades.\\n"
|
||||
|
@ -979,9 +979,9 @@ msgstr "Ús: repo-remove [opcions] <path-to-db> <packagename> ...\\n"
|
|||
|
||||
#: scripts/repo-add.sh.in:71
|
||||
msgid ""
|
||||
"repo-remove will update a package database by removing the package name"
|
||||
"\\nspecified on the command line from the given repo database. Multiple"
|
||||
"\\npackages to remove can be specified on the command line.\\n"
|
||||
"repo-remove will update a package database by removing the package "
|
||||
"name\\nspecified on the command line from the given repo database. "
|
||||
"Multiple\\npackages to remove can be specified on the command line.\\n"
|
||||
msgstr ""
|
||||
"repo-remove actualitzarà una base de dades de paquets suprimint el nom del "
|
||||
"paquet,\\nespecificat a la línia d'ordres de la base de dades del repositori "
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
# David Macek <david.macek.0@gmail.com>, 2018
|
||||
# IAmNotImportant, 2017
|
||||
# Jaroslav Lichtblau <jlichtblau@seznam.cz>, 2014-2016
|
||||
# Jaroslav Lichtblau <jlichtblau@seznam.cz>, 2014
|
||||
# Jaroslav Lichtblau <jlichtblau@seznam.cz>, 2014,2022
|
||||
# Lukáš Kucharczyk <lukas@kucharczyk.xyz>, 2020
|
||||
# Marek Otahal <markotahalREMOVETHIS@gmail.com>, 2011
|
||||
# mmm <markotahal@gmail.com>, 2013
|
||||
|
@ -19,9 +19,9 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Arch Linux Pacman package manager\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.archlinux.org/index.php?project=3\n"
|
||||
"POT-Creation-Date: 2021-09-04 16:15+1000\n"
|
||||
"PO-Revision-Date: 2021-04-23 00:41+0000\n"
|
||||
"Last-Translator: Allan McRae <allan@archlinux.org>\n"
|
||||
"POT-Creation-Date: 2022-09-26 21:09+1000\n"
|
||||
"PO-Revision-Date: 2011-08-08 22:35+0000\n"
|
||||
"Last-Translator: Jaroslav Lichtblau <jlichtblau@seznam.cz>, 2014,2022\n"
|
||||
"Language-Team: Czech (http://www.transifex.com/toofishes/archlinux-pacman/"
|
||||
"language/cs/)\n"
|
||||
"Language: cs\n"
|
||||
|
@ -661,8 +661,8 @@ msgstr " --lsign-key Lokálně podepíše uvedené keyid"
|
|||
|
||||
#: scripts/pacman-key.sh.in:77
|
||||
msgid ""
|
||||
" --populate Reload the default keys from the (given) keyrings"
|
||||
"\\n in '%s'"
|
||||
" --populate Reload the default keys from the (given) "
|
||||
"keyrings\\n in '%s'"
|
||||
msgstr ""
|
||||
" --populate Znovu načte výchozí klíče z (zadaných) klíčenek\\n v '%s'"
|
||||
|
||||
|
@ -679,16 +679,16 @@ msgstr ""
|
|||
|
||||
#: scripts/pacman-key.sh.in:83
|
||||
msgid ""
|
||||
" --config <file> Use an alternate config file (instead of"
|
||||
"\\n '%s')"
|
||||
" --config <file> Use an alternate config file (instead "
|
||||
"of\\n '%s')"
|
||||
msgstr ""
|
||||
" --config <soubor> Použije zadaný konfigurační soubor (namísto"
|
||||
"\\n '%s')"
|
||||
" --config <soubor> Použije zadaný konfigurační soubor "
|
||||
"(namísto\\n '%s')"
|
||||
|
||||
#: scripts/pacman-key.sh.in:85
|
||||
msgid ""
|
||||
" --gpgdir <dir> Set an alternate directory for GnuPG (instead"
|
||||
"\\n of '%s')"
|
||||
" --gpgdir <dir> Set an alternate directory for GnuPG "
|
||||
"(instead\\n of '%s')"
|
||||
msgstr ""
|
||||
" --gpgdir <složka> nastaví vlastní adresář pro GnuPG (namísto "
|
||||
"\\n "
|
||||
|
@ -843,7 +843,7 @@ msgstr "Vzdálený klíč nebyl správně stáhnut ze serveru s klíči. "
|
|||
|
||||
#: scripts/pacman-key.sh.in:569
|
||||
msgid "Could not update key: %s"
|
||||
msgstr ""
|
||||
msgstr "Nelze aktualizovat klíč: %s"
|
||||
|
||||
#: scripts/pacman-key.sh.in:590 scripts/repo-add.sh.in:265
|
||||
msgid "Cannot use armored signatures for packages: %s"
|
||||
|
@ -912,8 +912,8 @@ msgstr "-n, --new přidat pouze balíčky, které ještě nejsou v DB\\n"
|
|||
|
||||
#: scripts/repo-add.sh.in:66
|
||||
msgid ""
|
||||
" -R, --remove remove old package file from disk after updating database"
|
||||
"\\n"
|
||||
" -R, --remove remove old package file from disk after updating "
|
||||
"database\\n"
|
||||
msgstr ""
|
||||
" -R, --remove odstranit starý soubor balíčku z disku po aktualizaci "
|
||||
"databáze\\n"
|
||||
|
@ -932,13 +932,13 @@ msgstr "Použití: repo-remove [parametry] <path-to-db> <packagename> ...\\n"
|
|||
|
||||
#: scripts/repo-add.sh.in:71
|
||||
msgid ""
|
||||
"repo-remove will update a package database by removing the package name"
|
||||
"\\nspecified on the command line from the given repo database. Multiple"
|
||||
"\\npackages to remove can be specified on the command line.\\n"
|
||||
"repo-remove will update a package database by removing the package "
|
||||
"name\\nspecified on the command line from the given repo database. "
|
||||
"Multiple\\npackages to remove can be specified on the command line.\\n"
|
||||
msgstr ""
|
||||
"repo-remove aktualizuje databázi balíčků odstraňováním balíčků podle jména"
|
||||
"\\nuvedeného na příkazové řádce z dané databáze. Na příkazové řádce může být"
|
||||
"\\nuvedeno více balíčků pro odebrání.\\n"
|
||||
"repo-remove aktualizuje databázi balíčků odstraňováním balíčků podle "
|
||||
"jména\\nuvedeného na příkazové řádce z dané databáze. Na příkazové řádce "
|
||||
"může být\\nuvedeno více balíčků pro odebrání.\\n"
|
||||
|
||||
#: scripts/repo-add.sh.in:78
|
||||
msgid "Please move along, there is nothing to see here.\\n"
|
||||
|
|
|
@ -21,9 +21,10 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Arch Linux Pacman package manager\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.archlinux.org/index.php?project=3\n"
|
||||
"POT-Creation-Date: 2021-09-04 16:15+1000\n"
|
||||
"PO-Revision-Date: 2021-04-23 00:41+0000\n"
|
||||
"Last-Translator: Allan McRae <allan@archlinux.org>\n"
|
||||
"POT-Creation-Date: 2022-09-26 21:09+1000\n"
|
||||
"PO-Revision-Date: 2011-08-08 22:35+0000\n"
|
||||
"Last-Translator: Frederik “Freso” S. Olesen <transifex.net@freso.dk>, "
|
||||
"2012-2013\n"
|
||||
"Language-Team: Danish (http://www.transifex.com/toofishes/archlinux-pacman/"
|
||||
"language/da/)\n"
|
||||
"Language: da\n"
|
||||
|
@ -662,8 +663,8 @@ msgstr "--lsign-key Underskriv lokalt de specificerede nøgle-id'er"
|
|||
|
||||
#: scripts/pacman-key.sh.in:77
|
||||
msgid ""
|
||||
" --populate Reload the default keys from the (given) keyrings"
|
||||
"\\n in '%s'"
|
||||
" --populate Reload the default keys from the (given) "
|
||||
"keyrings\\n in '%s'"
|
||||
msgstr ""
|
||||
"--populate Genindlæs standardnøglerne fra (angivne) nøgleringene\\n i »%s«"
|
||||
|
||||
|
@ -678,19 +679,19 @@ msgstr ""
|
|||
|
||||
#: scripts/pacman-key.sh.in:83
|
||||
msgid ""
|
||||
" --config <file> Use an alternate config file (instead of"
|
||||
"\\n '%s')"
|
||||
" --config <file> Use an alternate config file (instead "
|
||||
"of\\n '%s')"
|
||||
msgstr ""
|
||||
" --config <file> Brug en alternativ konfigurationsfil (i stedet "
|
||||
"for\\n '%s')"
|
||||
|
||||
#: scripts/pacman-key.sh.in:85
|
||||
msgid ""
|
||||
" --gpgdir <dir> Set an alternate directory for GnuPG (instead"
|
||||
"\\n of '%s')"
|
||||
" --gpgdir <dir> Set an alternate directory for GnuPG "
|
||||
"(instead\\n of '%s')"
|
||||
msgstr ""
|
||||
" --gpgdir <mappe> angiv en alternativ mappe for GnuPG (i stedet"
|
||||
"\\n for '%s')"
|
||||
" --gpgdir <mappe> angiv en alternativ mappe for GnuPG (i "
|
||||
"stedet\\n for '%s')"
|
||||
|
||||
#: scripts/pacman-key.sh.in:87
|
||||
msgid " --keyserver <server-url> Specify a keyserver to use if necessary"
|
||||
|
@ -909,8 +910,8 @@ msgstr "-n, --new tilføj kun pakker som ikke allerede er i databasen\\n"
|
|||
|
||||
#: scripts/repo-add.sh.in:66
|
||||
msgid ""
|
||||
" -R, --remove remove old package file from disk after updating database"
|
||||
"\\n"
|
||||
" -R, --remove remove old package file from disk after updating "
|
||||
"database\\n"
|
||||
msgstr ""
|
||||
"-R, --remove fjern gammel pakkefil fra disken ved opdatering af databasen\\n"
|
||||
|
||||
|
@ -928,9 +929,9 @@ msgstr "Anvendelse: repo-remove [tilvalg] <sti-til-db> <pakkenavn> ...\\n"
|
|||
|
||||
#: scripts/repo-add.sh.in:71
|
||||
msgid ""
|
||||
"repo-remove will update a package database by removing the package name"
|
||||
"\\nspecified on the command line from the given repo database. Multiple"
|
||||
"\\npackages to remove can be specified on the command line.\\n"
|
||||
"repo-remove will update a package database by removing the package "
|
||||
"name\\nspecified on the command line from the given repo database. "
|
||||
"Multiple\\npackages to remove can be specified on the command line.\\n"
|
||||
msgstr ""
|
||||
"repo-remove opdaterer en pakkedatabase ved at fjerne pakkenavnet \\nangivet "
|
||||
"på kommandolinien fra den givne repo-database. Flere\\npakker kan fjernes "
|
||||
|
|
|
@ -13,7 +13,7 @@
|
|||
# Frank, 2014,2016
|
||||
# Frank Theile, 2014,2016,2018
|
||||
# Frank Theile, 2014,2016,2018
|
||||
# Jakob Gahde <j5lx@fmail.co.uk>, 2014-2015
|
||||
# J5lx <j5lx@fmail.co.uk>, 2014-2015
|
||||
# Jimmie Staedele <maddogie@gmail.com>, 2018
|
||||
# 65138391f015e4001c6ef9d675c96796_707a378 <99e420e9f3ea1b91cb2cbbb4cbc7cd27_2862>, 2013
|
||||
# 65138391f015e4001c6ef9d675c96796_707a378 <99e420e9f3ea1b91cb2cbbb4cbc7cd27_2862>, 2013
|
||||
|
@ -30,7 +30,7 @@
|
|||
# pierres <pierre@archlinux.de>, 2011
|
||||
# pierres <pierre@archlinux.de>, 2011
|
||||
# Robert Orzanna <robert@orzanna.de>, 2014
|
||||
# Roman Volak <romanvolak@web.de>, 2020
|
||||
# Roman Volak <romanvolak@web.de>, 2020-2021
|
||||
# Silvan Jegen <s.jegen@gmail.com>, 2014
|
||||
# Simon Schneider <SPAM.schneida@gmail.com>, 2011
|
||||
# Wieland Hoffmann <themineo+transifex@googlemail.com>, 2013
|
||||
|
@ -44,9 +44,9 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Arch Linux Pacman package manager\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.archlinux.org/index.php?project=3\n"
|
||||
"POT-Creation-Date: 2021-09-04 16:15+1000\n"
|
||||
"PO-Revision-Date: 2021-09-04 02:38+0000\n"
|
||||
"Last-Translator: Allan McRae <allan@archlinux.org>\n"
|
||||
"POT-Creation-Date: 2022-09-26 21:09+1000\n"
|
||||
"PO-Revision-Date: 2011-08-08 22:35+0000\n"
|
||||
"Last-Translator: Roman Volak <romanvolak@web.de>, 2020-2021\n"
|
||||
"Language-Team: German (http://www.transifex.com/toofishes/archlinux-pacman/"
|
||||
"language/de/)\n"
|
||||
"Language: de\n"
|
||||
|
@ -518,7 +518,6 @@ msgstr "Erstelle Paket: %s"
|
|||
#: scripts/makepkg.sh.in:1351
|
||||
msgid "A source package has already been built. (use %s to overwrite)"
|
||||
msgstr ""
|
||||
"Es wurde bereits ein Quell-Paket gebaut. (Benutzen Sie -f zum Überschreiben)"
|
||||
|
||||
#: scripts/makepkg.sh.in:1371
|
||||
msgid "Signing package..."
|
||||
|
@ -729,8 +728,8 @@ msgstr " --lsign-key Signiert die angegebene Schlüssel-Id lokal"
|
|||
|
||||
#: scripts/pacman-key.sh.in:77
|
||||
msgid ""
|
||||
" --populate Reload the default keys from the (given) keyrings"
|
||||
"\\n in '%s'"
|
||||
" --populate Reload the default keys from the (given) "
|
||||
"keyrings\\n in '%s'"
|
||||
msgstr ""
|
||||
" --populate Lädt die Standard-Schlüssel erneut aus den "
|
||||
"(vorher bestimmten) Schlüsselbunden\\n in '%s'"
|
||||
|
@ -744,20 +743,20 @@ msgstr ""
|
|||
|
||||
#: scripts/pacman-key.sh.in:80
|
||||
msgid " --verbose Show extra information"
|
||||
msgstr ""
|
||||
msgstr "--verbose"
|
||||
|
||||
#: scripts/pacman-key.sh.in:83
|
||||
msgid ""
|
||||
" --config <file> Use an alternate config file (instead of"
|
||||
"\\n '%s')"
|
||||
" --config <file> Use an alternate config file (instead "
|
||||
"of\\n '%s')"
|
||||
msgstr ""
|
||||
" --config <file> Benutze eine alternative Konfigurationsdatei (an "
|
||||
"Stelle von\\n '%s')"
|
||||
|
||||
#: scripts/pacman-key.sh.in:85
|
||||
msgid ""
|
||||
" --gpgdir <dir> Set an alternate directory for GnuPG (instead"
|
||||
"\\n of '%s')"
|
||||
" --gpgdir <dir> Set an alternate directory for GnuPG "
|
||||
"(instead\\n of '%s')"
|
||||
msgstr ""
|
||||
" --gpgdir <dir> Setze ein alternatives Verzeichnis für GnuPG (an "
|
||||
"Stelle\\n von '%s')"
|
||||
|
@ -786,7 +785,7 @@ msgstr "Schlüsselname ist zweideutig:"
|
|||
|
||||
#: scripts/pacman-key.sh.in:148
|
||||
msgid "Generating pacman master key. This may take some time."
|
||||
msgstr ""
|
||||
msgstr "Pacman Hauptschlüssel generieren. Kann eine Weile dauern."
|
||||
|
||||
#: scripts/pacman-key.sh.in:185
|
||||
msgid "The key identified by %s could not be found locally."
|
||||
|
@ -796,11 +795,11 @@ msgstr ""
|
|||
#: scripts/pacman-key.sh.in:196 scripts/pacman-key.sh.in:208
|
||||
#: scripts/libmakepkg/integrity/verify_signature.sh.in:204
|
||||
msgid "_"
|
||||
msgstr ""
|
||||
msgstr "_"
|
||||
|
||||
#: scripts/pacman-key.sh.in:208
|
||||
msgid "flags"
|
||||
msgstr ""
|
||||
msgstr "Flags"
|
||||
|
||||
#: scripts/pacman-key.sh.in:263
|
||||
msgid "You do not have sufficient permissions to read the %s keyring."
|
||||
|
@ -855,7 +854,7 @@ msgstr "Mache Schlüssel %s unbrauchbar..."
|
|||
|
||||
#: scripts/pacman-key.sh.in:381
|
||||
msgid "Disabled %s keys."
|
||||
msgstr ""
|
||||
msgstr "Mache Schlüssel %s unbrauchbar..."
|
||||
|
||||
#: scripts/pacman-key.sh.in:388
|
||||
msgid "A specified keyfile could not be added to the keyring."
|
||||
|
@ -910,7 +909,7 @@ msgstr "%s konnte nicht lokal signiert werden."
|
|||
|
||||
#: scripts/pacman-key.sh.in:509
|
||||
msgid "Locally signed %s keys."
|
||||
msgstr ""
|
||||
msgstr "Signiere Schlüssel %s lokal..."
|
||||
|
||||
#: scripts/pacman-key.sh.in:532
|
||||
msgid "Remote key not fetched correctly from WKD or keyserver."
|
||||
|
@ -926,7 +925,7 @@ msgstr ""
|
|||
|
||||
#: scripts/pacman-key.sh.in:569
|
||||
msgid "Could not update key: %s"
|
||||
msgstr ""
|
||||
msgstr "Kann Schlüssel nicht aktualisieren: %s"
|
||||
|
||||
#: scripts/pacman-key.sh.in:590 scripts/repo-add.sh.in:265
|
||||
msgid "Cannot use armored signatures for packages: %s"
|
||||
|
@ -999,8 +998,8 @@ msgstr ""
|
|||
|
||||
#: scripts/repo-add.sh.in:66
|
||||
msgid ""
|
||||
" -R, --remove remove old package file from disk after updating database"
|
||||
"\\n"
|
||||
" -R, --remove remove old package file from disk after updating "
|
||||
"database\\n"
|
||||
msgstr ""
|
||||
"-R, --remove Entferne alte Paketdatei nach dem Aktualisieren der Datenbank "
|
||||
"von der Festplatte\\n"
|
||||
|
@ -1019,9 +1018,9 @@ msgstr "Verwendung: repo-remove [Options] <Pfad-zur-db> <Paketname> ...\\n"
|
|||
|
||||
#: scripts/repo-add.sh.in:71
|
||||
msgid ""
|
||||
"repo-remove will update a package database by removing the package name"
|
||||
"\\nspecified on the command line from the given repo database. Multiple"
|
||||
"\\npackages to remove can be specified on the command line.\\n"
|
||||
"repo-remove will update a package database by removing the package "
|
||||
"name\\nspecified on the command line from the given repo database. "
|
||||
"Multiple\\npackages to remove can be specified on the command line.\\n"
|
||||
msgstr ""
|
||||
"repo-remove wird eine Paket-Daten aktualisieren, indem der auf der Kommando-"
|
||||
"Zeile\\nspezifierte Paketname von der Datenbank des angegebenen Repos "
|
||||
|
|
|
@ -12,14 +12,16 @@
|
|||
# Christos Nouskas <nous@artixlinux.org>, 2013
|
||||
# ifaigios <ifaigios@gmail.com>, 2013,2015-2016
|
||||
# ifaigios <ifaigios@gmail.com>, 2013,2015
|
||||
# 492d30ca33568c5819a4f95c90617de1_3730d98 <c1a4cca7e440358a87e394a300ed18e2_882277>, 2021
|
||||
# th_ts <tsesmelistheodore@gmail.com>, 2014
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Arch Linux Pacman package manager\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.archlinux.org/index.php?project=3\n"
|
||||
"POT-Creation-Date: 2021-09-04 16:15+1000\n"
|
||||
"PO-Revision-Date: 2021-04-23 00:41+0000\n"
|
||||
"Last-Translator: Allan McRae <allan@archlinux.org>\n"
|
||||
"POT-Creation-Date: 2022-09-26 21:09+1000\n"
|
||||
"PO-Revision-Date: 2011-08-08 22:35+0000\n"
|
||||
"Last-Translator: 492d30ca33568c5819a4f95c90617de1_3730d98 "
|
||||
"<c1a4cca7e440358a87e394a300ed18e2_882277>, 2021\n"
|
||||
"Language-Team: Greek (http://www.transifex.com/toofishes/archlinux-pacman/"
|
||||
"language/el/)\n"
|
||||
"Language: el\n"
|
||||
|
@ -94,7 +96,7 @@ msgstr "Ο pacman τώρα εργάζεται, αναμείνατε..."
|
|||
|
||||
#: scripts/makepkg.sh.in:269
|
||||
msgid "'%s' returned a fatal error (%i): %s"
|
||||
msgstr "Επιστροφή καίριου σφάλματος (%i) από '%s': %s"
|
||||
msgstr ""
|
||||
|
||||
#: scripts/makepkg.sh.in:288
|
||||
msgid "Installing missing dependencies..."
|
||||
|
@ -673,8 +675,8 @@ msgstr " --lsign-key Τοπική υπογραφή καθορισ
|
|||
|
||||
#: scripts/pacman-key.sh.in:77
|
||||
msgid ""
|
||||
" --populate Reload the default keys from the (given) keyrings"
|
||||
"\\n in '%s'"
|
||||
" --populate Reload the default keys from the (given) "
|
||||
"keyrings\\n in '%s'"
|
||||
msgstr ""
|
||||
" --populate Ανανέωση προεπιλεγμένων κλειδιών από "
|
||||
"(δοθέντες)\\n κλειδούχους στο '%s'"
|
||||
|
@ -688,20 +690,20 @@ msgstr ""
|
|||
|
||||
#: scripts/pacman-key.sh.in:80
|
||||
msgid " --verbose Show extra information"
|
||||
msgstr ""
|
||||
msgstr "--verbose Προβολή επιπλέον πληροφοριών"
|
||||
|
||||
#: scripts/pacman-key.sh.in:83
|
||||
msgid ""
|
||||
" --config <file> Use an alternate config file (instead of"
|
||||
"\\n '%s')"
|
||||
" --config <file> Use an alternate config file (instead "
|
||||
"of\\n '%s')"
|
||||
msgstr ""
|
||||
" --config <file> Χρήση εναλλακτικού αρχείου ρυθμίσεων (αντί του "
|
||||
"'%s')"
|
||||
|
||||
#: scripts/pacman-key.sh.in:85
|
||||
msgid ""
|
||||
" --gpgdir <dir> Set an alternate directory for GnuPG (instead"
|
||||
"\\n of '%s')"
|
||||
" --gpgdir <dir> Set an alternate directory for GnuPG "
|
||||
"(instead\\n of '%s')"
|
||||
msgstr ""
|
||||
" --gpgdir <dir> Ορισμός εναλλακτικού καταλόγου GnuPG (αντί του "
|
||||
"'%s')"
|
||||
|
@ -738,7 +740,7 @@ msgstr "Αδυναμία τοπικής ευρέσεως κλειδιού %s."
|
|||
#: scripts/pacman-key.sh.in:196 scripts/pacman-key.sh.in:208
|
||||
#: scripts/libmakepkg/integrity/verify_signature.sh.in:204
|
||||
msgid "_"
|
||||
msgstr ""
|
||||
msgstr "_"
|
||||
|
||||
#: scripts/pacman-key.sh.in:208
|
||||
msgid "flags"
|
||||
|
@ -794,7 +796,7 @@ msgstr "Απενεργοποίηση κλειδιού %s..."
|
|||
|
||||
#: scripts/pacman-key.sh.in:381
|
||||
msgid "Disabled %s keys."
|
||||
msgstr ""
|
||||
msgstr "Απενεργοποιήθηκαν %s κλειδιά."
|
||||
|
||||
#: scripts/pacman-key.sh.in:388
|
||||
msgid "A specified keyfile could not be added to the keyring."
|
||||
|
@ -842,7 +844,7 @@ msgstr "Αδυναμία τοπικής υπογραφής %s."
|
|||
|
||||
#: scripts/pacman-key.sh.in:509
|
||||
msgid "Locally signed %s keys."
|
||||
msgstr ""
|
||||
msgstr "Τοπικά υπογεγραμμένα %s κλειδιά."
|
||||
|
||||
#: scripts/pacman-key.sh.in:532
|
||||
msgid "Remote key not fetched correctly from WKD or keyserver."
|
||||
|
@ -854,7 +856,7 @@ msgstr "Αδυναμία λήψης απομεμακρυσμένου κλειδ
|
|||
|
||||
#: scripts/pacman-key.sh.in:569
|
||||
msgid "Could not update key: %s"
|
||||
msgstr ""
|
||||
msgstr "Δεν ήταν δυνατόν να ενημερωθεί το κλειδί: %s"
|
||||
|
||||
#: scripts/pacman-key.sh.in:590 scripts/repo-add.sh.in:265
|
||||
msgid "Cannot use armored signatures for packages: %s"
|
||||
|
@ -925,8 +927,8 @@ msgstr ""
|
|||
|
||||
#: scripts/repo-add.sh.in:66
|
||||
msgid ""
|
||||
" -R, --remove remove old package file from disk after updating database"
|
||||
"\\n"
|
||||
" -R, --remove remove old package file from disk after updating "
|
||||
"database\\n"
|
||||
msgstr ""
|
||||
"-R, --remove διαγραφή παλαιού αρχείου πακέτου από τον δίσκο μετά την "
|
||||
"ενημέρωση της βάσης\\n"
|
||||
|
@ -945,13 +947,13 @@ msgstr "Χρήση: repo-remove [options] <path-to-db> <packagename> ...\\n"
|
|||
|
||||
#: scripts/repo-add.sh.in:71
|
||||
msgid ""
|
||||
"repo-remove will update a package database by removing the package name"
|
||||
"\\nspecified on the command line from the given repo database. Multiple"
|
||||
"\\npackages to remove can be specified on the command line.\\n"
|
||||
"repo-remove will update a package database by removing the package "
|
||||
"name\\nspecified on the command line from the given repo database. "
|
||||
"Multiple\\npackages to remove can be specified on the command line.\\n"
|
||||
msgstr ""
|
||||
"Το repo-remove ενημερώνει μια βάση διαγράφοντας το πακέτο που ορίσθηκε"
|
||||
"\\nστην γραμμή εντολών από μια δοθείσα βάση αποθήκης. Μπορούν να"
|
||||
"\\nκαθορισθούν στην γραμμή εντολών πολλαπλά πακέτα προς διαγραφή.\\n"
|
||||
"Το repo-remove ενημερώνει μια βάση διαγράφοντας το πακέτο που "
|
||||
"ορίσθηκε\\nστην γραμμή εντολών από μια δοθείσα βάση αποθήκης. Μπορούν "
|
||||
"να\\nκαθορισθούν στην γραμμή εντολών πολλαπλά πακέτα προς διαγραφή.\\n"
|
||||
|
||||
#: scripts/repo-add.sh.in:78
|
||||
msgid "Please move along, there is nothing to see here.\\n"
|
||||
|
|
|
@ -10,9 +10,9 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Arch Linux Pacman package manager\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.archlinux.org/index.php?project=3\n"
|
||||
"POT-Creation-Date: 2021-09-04 16:15+1000\n"
|
||||
"PO-Revision-Date: 2021-04-23 00:46+0000\n"
|
||||
"Last-Translator: Allan McRae <allan@archlinux.org>\n"
|
||||
"POT-Creation-Date: 2022-09-26 21:09+1000\n"
|
||||
"PO-Revision-Date: 2011-08-08 22:35+0000\n"
|
||||
"Last-Translator: Dan McGee <dpmcgee@gmail.com>, 2011\n"
|
||||
"Language-Team: English (United Kingdom) (http://www.transifex.com/toofishes/"
|
||||
"archlinux-pacman/language/en_GB/)\n"
|
||||
"Language: en_GB\n"
|
||||
|
@ -653,11 +653,11 @@ msgstr " --lsign-key Locally sign the specified keyid"
|
|||
|
||||
#: scripts/pacman-key.sh.in:77
|
||||
msgid ""
|
||||
" --populate Reload the default keys from the (given) keyrings"
|
||||
"\\n in '%s'"
|
||||
" --populate Reload the default keys from the (given) "
|
||||
"keyrings\\n in '%s'"
|
||||
msgstr ""
|
||||
" --populate Reload the default keys from the (given) keyrings"
|
||||
"\\n in '%s'"
|
||||
" --populate Reload the default keys from the (given) "
|
||||
"keyrings\\n in '%s'"
|
||||
|
||||
#: scripts/pacman-key.sh.in:79
|
||||
msgid ""
|
||||
|
@ -671,19 +671,19 @@ msgstr " --verbose Show extra information"
|
|||
|
||||
#: scripts/pacman-key.sh.in:83
|
||||
msgid ""
|
||||
" --config <file> Use an alternate config file (instead of"
|
||||
"\\n '%s')"
|
||||
" --config <file> Use an alternate config file (instead "
|
||||
"of\\n '%s')"
|
||||
msgstr ""
|
||||
" --config <file> Use an alternate config file (instead of"
|
||||
"\\n '%s')"
|
||||
" --config <file> Use an alternate config file (instead "
|
||||
"of\\n '%s')"
|
||||
|
||||
#: scripts/pacman-key.sh.in:85
|
||||
msgid ""
|
||||
" --gpgdir <dir> Set an alternate directory for GnuPG (instead"
|
||||
"\\n of '%s')"
|
||||
" --gpgdir <dir> Set an alternate directory for GnuPG "
|
||||
"(instead\\n of '%s')"
|
||||
msgstr ""
|
||||
" --gpgdir <dir> Set an alternate directory for GnuPG (instead"
|
||||
"\\n of '%s')"
|
||||
" --gpgdir <dir> Set an alternate directory for GnuPG "
|
||||
"(instead\\n of '%s')"
|
||||
|
||||
#: scripts/pacman-key.sh.in:87
|
||||
msgid " --keyserver <server-url> Specify a keyserver to use if necessary"
|
||||
|
@ -902,11 +902,11 @@ msgstr ""
|
|||
|
||||
#: scripts/repo-add.sh.in:66
|
||||
msgid ""
|
||||
" -R, --remove remove old package file from disk after updating database"
|
||||
"\\n"
|
||||
" -R, --remove remove old package file from disk after updating "
|
||||
"database\\n"
|
||||
msgstr ""
|
||||
" -R, --remove remove old package file from disk after updating database"
|
||||
"\\n"
|
||||
" -R, --remove remove old package file from disk after updating "
|
||||
"database\\n"
|
||||
|
||||
#: scripts/repo-add.sh.in:67
|
||||
msgid ""
|
||||
|
@ -922,13 +922,13 @@ msgstr "Usage: repo-remove [options] <path-to-db> <packagename> ...\\n"
|
|||
|
||||
#: scripts/repo-add.sh.in:71
|
||||
msgid ""
|
||||
"repo-remove will update a package database by removing the package name"
|
||||
"\\nspecified on the command line from the given repo database. Multiple"
|
||||
"\\npackages to remove can be specified on the command line.\\n"
|
||||
"repo-remove will update a package database by removing the package "
|
||||
"name\\nspecified on the command line from the given repo database. "
|
||||
"Multiple\\npackages to remove can be specified on the command line.\\n"
|
||||
msgstr ""
|
||||
"repo-remove will update a package database by removing the package name"
|
||||
"\\nspecified on the command line from the given repo database. Multiple"
|
||||
"\\npackages to remove can be specified on the command line.\\n"
|
||||
"repo-remove will update a package database by removing the package "
|
||||
"name\\nspecified on the command line from the given repo database. "
|
||||
"Multiple\\npackages to remove can be specified on the command line.\\n"
|
||||
|
||||
#: scripts/repo-add.sh.in:78
|
||||
msgid "Please move along, there is nothing to see here.\\n"
|
||||
|
|
|
@ -12,9 +12,9 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Arch Linux Pacman package manager\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.archlinux.org/index.php?project=3\n"
|
||||
"POT-Creation-Date: 2021-09-04 16:15+1000\n"
|
||||
"PO-Revision-Date: 2021-04-23 00:41+0000\n"
|
||||
"Last-Translator: Allan McRae <allan@archlinux.org>\n"
|
||||
"POT-Creation-Date: 2022-09-26 21:09+1000\n"
|
||||
"PO-Revision-Date: 2011-08-08 22:35+0000\n"
|
||||
"Last-Translator: pizzaiolo, 2015\n"
|
||||
"Language-Team: Esperanto (http://www.transifex.com/toofishes/archlinux-"
|
||||
"pacman/language/eo/)\n"
|
||||
"Language: eo\n"
|
||||
|
@ -661,8 +661,8 @@ msgstr " --lsign-key Loke subskribi la difinitan keyid"
|
|||
|
||||
#: scripts/pacman-key.sh.in:77
|
||||
msgid ""
|
||||
" --populate Reload the default keys from the (given) keyrings"
|
||||
"\\n in '%s'"
|
||||
" --populate Reload the default keys from the (given) "
|
||||
"keyrings\\n in '%s'"
|
||||
msgstr ""
|
||||
" --populate Reŝarĝi la defaŭltajn ŝlosilojn de ĉi tiuj "
|
||||
"ŝlosilingoj\\n en '%s'"
|
||||
|
@ -680,19 +680,19 @@ msgstr ""
|
|||
|
||||
#: scripts/pacman-key.sh.in:83
|
||||
msgid ""
|
||||
" --config <file> Use an alternate config file (instead of"
|
||||
"\\n '%s')"
|
||||
" --config <file> Use an alternate config file (instead "
|
||||
"of\\n '%s')"
|
||||
msgstr ""
|
||||
" --config <file> Uzi alian agordan dosieron (anstataŭ"
|
||||
"\\n '%s')"
|
||||
" --config <file> Uzi alian agordan dosieron "
|
||||
"(anstataŭ\\n '%s')"
|
||||
|
||||
#: scripts/pacman-key.sh.in:85
|
||||
msgid ""
|
||||
" --gpgdir <dir> Set an alternate directory for GnuPG (instead"
|
||||
"\\n of '%s')"
|
||||
" --gpgdir <dir> Set an alternate directory for GnuPG "
|
||||
"(instead\\n of '%s')"
|
||||
msgstr ""
|
||||
" --gpgdir <dir> Elekti alian dosierujon por GnuPG (anstataŭ"
|
||||
"\\n '%s')"
|
||||
" --gpgdir <dir> Elekti alian dosierujon por GnuPG "
|
||||
"(anstataŭ\\n '%s')"
|
||||
|
||||
#: scripts/pacman-key.sh.in:87
|
||||
msgid " --keyserver <server-url> Specify a keyserver to use if necessary"
|
||||
|
@ -758,7 +758,7 @@ msgstr "Neniu ŝlosilinga dosiero ekzistas en %s."
|
|||
|
||||
#: scripts/pacman-key.sh.in:305
|
||||
msgid "The keyring file %s does not exist."
|
||||
msgstr "La ŝlosilinga dosiero '%' ne ekzistas"
|
||||
msgstr ""
|
||||
|
||||
#: scripts/pacman-key.sh.in:320
|
||||
msgid "Appending keys from %s.gpg..."
|
||||
|
@ -912,8 +912,8 @@ msgstr ""
|
|||
|
||||
#: scripts/repo-add.sh.in:66
|
||||
msgid ""
|
||||
" -R, --remove remove old package file from disk after updating database"
|
||||
"\\n"
|
||||
" -R, --remove remove old package file from disk after updating "
|
||||
"database\\n"
|
||||
msgstr ""
|
||||
" -R, --remove forviŝi malnovan pakaĵan dosieron el la disko post "
|
||||
"ĝisdatigado de datumbazo\\n"
|
||||
|
@ -930,13 +930,13 @@ msgstr ""
|
|||
|
||||
#: scripts/repo-add.sh.in:71
|
||||
msgid ""
|
||||
"repo-remove will update a package database by removing the package name"
|
||||
"\\nspecified on the command line from the given repo database. Multiple"
|
||||
"\\npackages to remove can be specified on the command line.\\n"
|
||||
"repo-remove will update a package database by removing the package "
|
||||
"name\\nspecified on the command line from the given repo database. "
|
||||
"Multiple\\npackages to remove can be specified on the command line.\\n"
|
||||
msgstr ""
|
||||
"repo-remove ĝisdatigos pakaĵan datumbazon forviŝante la pakaĵan nomon"
|
||||
"\\ndifinita en la komandlinio de la cela deponeja datumbazo. Multoblaj"
|
||||
"\\npakaĵojn por forviŝi povas esti difinita en la komandlinio.\\n"
|
||||
"repo-remove ĝisdatigos pakaĵan datumbazon forviŝante la pakaĵan "
|
||||
"nomon\\ndifinita en la komandlinio de la cela deponeja datumbazo. "
|
||||
"Multoblaj\\npakaĵojn por forviŝi povas esti difinita en la komandlinio.\\n"
|
||||
|
||||
#: scripts/repo-add.sh.in:78
|
||||
msgid "Please move along, there is nothing to see here.\\n"
|
||||
|
@ -963,8 +963,8 @@ msgstr ""
|
|||
#: scripts/repo-add.sh.in:85
|
||||
msgid " -v, --verify verify database's signature before update\\n"
|
||||
msgstr ""
|
||||
" -v, --verify konfirmi la subskribon de la datumbazo antaŭ la ĝisdatigo"
|
||||
"\\n"
|
||||
" -v, --verify konfirmi la subskribon de la datumbazo antaŭ la "
|
||||
"ĝisdatigo\\n"
|
||||
|
||||
#: scripts/repo-add.sh.in:86
|
||||
msgid ""
|
||||
|
|
|
@ -11,29 +11,30 @@
|
|||
# juantascon <juantascon@gmail.com>, 2011
|
||||
# Leonel <leonelmalon@gmail.com>, 2013
|
||||
# Leonel <leonelmalon@gmail.com>, 2013
|
||||
# prflr88 <prflr88@gmail.com>, 2013
|
||||
# prflr88 <prflr88@gmail.com>, 2013,2016
|
||||
# prflr88 <prflr88@gmail.com>, 2013-2016
|
||||
# prflr88 <prflr88@gmail.com>, 2013,2016-2017
|
||||
# Pablo Lezaeta Reyes <prflr88@gmail.com>, 2013
|
||||
# Pablo Lezaeta Reyes <prflr88@gmail.com>, 2013,2016
|
||||
# Pablo Lezaeta Reyes <prflr88@gmail.com>, 2013-2016
|
||||
# Pablo Lezaeta Reyes <prflr88@gmail.com>, 2013,2016-2017
|
||||
# Pedro Román <roizheim@gmail.com>, 2013-2016,2018-2019
|
||||
# picodotdev <pico.dev@gmail.com>, 2015-2016,2019
|
||||
# prflr88 <prflr88@gmail.com>, 2013,2016
|
||||
# picodotdev <pico.dev@gmail.com>, 2015-2016,2019,2021
|
||||
# Pablo Lezaeta Reyes <prflr88@gmail.com>, 2013,2016
|
||||
# Pedro Román <roizheim@gmail.com>, 2013
|
||||
# Swyter <Swyterzone@gmail.com>, 2015,2017-2018,2021
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Arch Linux Pacman package manager\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.archlinux.org/index.php?project=3\n"
|
||||
"POT-Creation-Date: 2021-09-04 16:15+1000\n"
|
||||
"PO-Revision-Date: 2021-05-04 16:25+0000\n"
|
||||
"Last-Translator: Pedro Román <roizheim@gmail.com>\n"
|
||||
"POT-Creation-Date: 2022-09-26 21:09+1000\n"
|
||||
"PO-Revision-Date: 2011-08-08 22:35+0000\n"
|
||||
"Last-Translator: picodotdev <pico.dev@gmail.com>, 2015-2016,2019,2021\n"
|
||||
"Language-Team: Spanish (http://www.transifex.com/toofishes/archlinux-pacman/"
|
||||
"language/es/)\n"
|
||||
"Language: es\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? "
|
||||
"1 : 2;\n"
|
||||
|
||||
#: scripts/makepkg.sh.in:139
|
||||
msgid "Cleaning up..."
|
||||
|
@ -453,8 +454,8 @@ msgid ""
|
|||
"Running %s as root is not allowed as it can cause permanent,\\ncatastrophic "
|
||||
"damage to your system."
|
||||
msgstr ""
|
||||
"Ejecutar %s como superusuario no está permitido ya que puede causar daños"
|
||||
"\\npermanentes y catastróficos a su sistema."
|
||||
"Ejecutar %s como superusuario no está permitido ya que puede causar "
|
||||
"daños\\npermanentes y catastróficos a su sistema."
|
||||
|
||||
#: scripts/makepkg.sh.in:1197
|
||||
msgid "Do not use the %s option. This option is only for internal use by %s."
|
||||
|
@ -514,7 +515,7 @@ msgstr "Comprobando dependencias mientras se compila..."
|
|||
|
||||
#: scripts/makepkg.sh.in:1408
|
||||
msgid "Could not resolve all dependencies."
|
||||
msgstr "No se pudieron resolver todas las dependencias."
|
||||
msgstr "No se pudo resolver todas las dependencias."
|
||||
|
||||
#: scripts/makepkg.sh.in:1420
|
||||
msgid "Using existing %s tree"
|
||||
|
@ -704,8 +705,8 @@ msgstr ""
|
|||
|
||||
#: scripts/pacman-key.sh.in:77
|
||||
msgid ""
|
||||
" --populate Reload the default keys from the (given) keyrings"
|
||||
"\\n in '%s'"
|
||||
" --populate Reload the default keys from the (given) "
|
||||
"keyrings\\n in '%s'"
|
||||
msgstr ""
|
||||
" --populate Recarga las claves por omisión de los depósitos "
|
||||
"(seleccionados)\\n en «%s»"
|
||||
|
@ -723,16 +724,16 @@ msgstr " --verbose Muestra información adicional"
|
|||
|
||||
#: scripts/pacman-key.sh.in:83
|
||||
msgid ""
|
||||
" --config <file> Use an alternate config file (instead of"
|
||||
"\\n '%s')"
|
||||
" --config <file> Use an alternate config file (instead "
|
||||
"of\\n '%s')"
|
||||
msgstr ""
|
||||
" --config <archivo> Usa un archivo de configuración alternativo (en "
|
||||
"lugar de\\n «%s»)"
|
||||
|
||||
#: scripts/pacman-key.sh.in:85
|
||||
msgid ""
|
||||
" --gpgdir <dir> Set an alternate directory for GnuPG (instead"
|
||||
"\\n of '%s')"
|
||||
" --gpgdir <dir> Set an alternate directory for GnuPG "
|
||||
"(instead\\n of '%s')"
|
||||
msgstr ""
|
||||
" --gpgdir <directorio> Configura un directorio alternativo para GnuPG "
|
||||
"(en lugar\\n de «%s»)"
|
||||
|
@ -960,8 +961,8 @@ msgstr " -n, --new solo añade paquetes nuevos a la base de datos\\n"
|
|||
|
||||
#: scripts/repo-add.sh.in:66
|
||||
msgid ""
|
||||
" -R, --remove remove old package file from disk after updating database"
|
||||
"\\n"
|
||||
" -R, --remove remove old package file from disk after updating "
|
||||
"database\\n"
|
||||
msgstr ""
|
||||
" -R, --remove quita el paquete obsoleto del disco tras actualizar la base "
|
||||
"de datos\\n"
|
||||
|
@ -980,9 +981,9 @@ msgstr "Uso: repo-remove [opciones] <ruta-a-basedatos> <nombrepaquete> ...\\n"
|
|||
|
||||
#: scripts/repo-add.sh.in:71
|
||||
msgid ""
|
||||
"repo-remove will update a package database by removing the package name"
|
||||
"\\nspecified on the command line from the given repo database. Multiple"
|
||||
"\\npackages to remove can be specified on the command line.\\n"
|
||||
"repo-remove will update a package database by removing the package "
|
||||
"name\\nspecified on the command line from the given repo database. "
|
||||
"Multiple\\npackages to remove can be specified on the command line.\\n"
|
||||
msgstr ""
|
||||
"repo-remove actualiza una base de datos de paquetes al quitar el nombre del "
|
||||
"paquete\\nespecificado en la linea de órdenes de la base de datos del "
|
||||
|
@ -1015,8 +1016,8 @@ msgstr ""
|
|||
#: scripts/repo-add.sh.in:85
|
||||
msgid " -v, --verify verify database's signature before update\\n"
|
||||
msgstr ""
|
||||
" -v, --verify verifica la firma de la base de datos antes de actualizar"
|
||||
"\\n"
|
||||
" -v, --verify verifica la firma de la base de datos antes de "
|
||||
"actualizar\\n"
|
||||
|
||||
#: scripts/repo-add.sh.in:86
|
||||
msgid ""
|
||||
|
@ -1049,7 +1050,7 @@ msgstr "Creado el archivo de firma «%s»"
|
|||
|
||||
#: scripts/repo-add.sh.in:168
|
||||
msgid "Failed to sign package database file '%s'"
|
||||
msgstr "No se pudo firmar la base de datos de paquetes."
|
||||
msgstr ""
|
||||
|
||||
#: scripts/repo-add.sh.in:177
|
||||
msgid "Verifying database signature..."
|
||||
|
|
|
@ -12,25 +12,26 @@
|
|||
# juantascon <juantascon@gmail.com>, 2011
|
||||
# ice, 2016
|
||||
# Leonel <leonelmalon@gmail.com>, 2013
|
||||
# prflr88 <prflr88@gmail.com>, 2013,2015-2016
|
||||
# prflr88 <prflr88@gmail.com>, 2013,2015
|
||||
# prflr88 <prflr88@gmail.com>, 2013,2015-2017
|
||||
# Pablo Lezaeta Reyes <prflr88@gmail.com>, 2013,2015-2016
|
||||
# Pablo Lezaeta Reyes <prflr88@gmail.com>, 2013,2015
|
||||
# Pablo Lezaeta Reyes <prflr88@gmail.com>, 2013,2015-2017
|
||||
# Pedro Román <roizheim@gmail.com>, 2013
|
||||
# prflr88 <prflr88@gmail.com>, 2013,2015
|
||||
# Pablo Lezaeta Reyes <prflr88@gmail.com>, 2013,2015
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Arch Linux Pacman package manager\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.archlinux.org/index.php?project=3\n"
|
||||
"POT-Creation-Date: 2021-09-04 16:15+1000\n"
|
||||
"PO-Revision-Date: 2021-04-23 00:41+0000\n"
|
||||
"Last-Translator: Allan McRae <allan@archlinux.org>\n"
|
||||
"POT-Creation-Date: 2022-09-26 21:09+1000\n"
|
||||
"PO-Revision-Date: 2011-08-08 22:35+0000\n"
|
||||
"Last-Translator: Pablo Lezaeta Reyes <prflr88@gmail.com>, 2013,2015\n"
|
||||
"Language-Team: Spanish (Latin America) (http://www.transifex.com/toofishes/"
|
||||
"archlinux-pacman/language/es_419/)\n"
|
||||
"Language: es_419\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? "
|
||||
"1 : 2;\n"
|
||||
|
||||
#: scripts/makepkg.sh.in:139
|
||||
msgid "Cleaning up..."
|
||||
|
@ -446,8 +447,8 @@ msgid ""
|
|||
"Running %s as root is not allowed as it can cause permanent,\\ncatastrophic "
|
||||
"damage to your system."
|
||||
msgstr ""
|
||||
"Ejecutar %s como administrador no está permitido ya que puede causar daños"
|
||||
"\\npermanentes y catastróficos a su sistema."
|
||||
"Ejecutar %s como administrador no está permitido ya que puede causar "
|
||||
"daños\\npermanentes y catastróficos a su sistema."
|
||||
|
||||
#: scripts/makepkg.sh.in:1197
|
||||
msgid "Do not use the %s option. This option is only for internal use by %s."
|
||||
|
@ -692,8 +693,8 @@ msgstr " --lsign-key Firma localmente el identificador de clave especificado"
|
|||
|
||||
#: scripts/pacman-key.sh.in:77
|
||||
msgid ""
|
||||
" --populate Reload the default keys from the (given) keyrings"
|
||||
"\\n in '%s'"
|
||||
" --populate Reload the default keys from the (given) "
|
||||
"keyrings\\n in '%s'"
|
||||
msgstr ""
|
||||
" --populate Recarga las claves por defecto de los llaveros (dados)\\n en "
|
||||
"«%s»"
|
||||
|
@ -711,16 +712,16 @@ msgstr ""
|
|||
|
||||
#: scripts/pacman-key.sh.in:83
|
||||
msgid ""
|
||||
" --config <file> Use an alternate config file (instead of"
|
||||
"\\n '%s')"
|
||||
" --config <file> Use an alternate config file (instead "
|
||||
"of\\n '%s')"
|
||||
msgstr ""
|
||||
" --config <archivo> Usa un archivo de configuración alternativo"
|
||||
"\\n (en lugar de «%s»)"
|
||||
" --config <archivo> Usa un archivo de configuración "
|
||||
"alternativo\\n (en lugar de «%s»)"
|
||||
|
||||
#: scripts/pacman-key.sh.in:85
|
||||
msgid ""
|
||||
" --gpgdir <dir> Set an alternate directory for GnuPG (instead"
|
||||
"\\n of '%s')"
|
||||
" --gpgdir <dir> Set an alternate directory for GnuPG "
|
||||
"(instead\\n of '%s')"
|
||||
msgstr ""
|
||||
" --gpgdir <directorio> Configura un directorio alternativo para "
|
||||
"GnuPG\\n (en lugar de «%s»)"
|
||||
|
@ -879,7 +880,7 @@ msgstr ""
|
|||
|
||||
#: scripts/pacman-key.sh.in:590 scripts/repo-add.sh.in:265
|
||||
msgid "Cannot use armored signatures for packages: %s"
|
||||
msgstr "no se pudieron quitar todos los archivos del paquete"
|
||||
msgstr ""
|
||||
|
||||
#: scripts/pacman-key.sh.in:594
|
||||
msgid "The signature identified by %s could not be verified."
|
||||
|
@ -947,8 +948,8 @@ msgstr "-n, --new solamente agrega paquetes nuevos a la base de datos\\n"
|
|||
|
||||
#: scripts/repo-add.sh.in:66
|
||||
msgid ""
|
||||
" -R, --remove remove old package file from disk after updating database"
|
||||
"\\n"
|
||||
" -R, --remove remove old package file from disk after updating "
|
||||
"database\\n"
|
||||
msgstr ""
|
||||
" -R, --remove elimina el archivo del paquete del disco cuando la "
|
||||
"entrada de la base de datos sea actualizada\\n"
|
||||
|
@ -965,9 +966,9 @@ msgstr ""
|
|||
|
||||
#: scripts/repo-add.sh.in:71
|
||||
msgid ""
|
||||
"repo-remove will update a package database by removing the package name"
|
||||
"\\nspecified on the command line from the given repo database. Multiple"
|
||||
"\\npackages to remove can be specified on the command line.\\n"
|
||||
"repo-remove will update a package database by removing the package "
|
||||
"name\\nspecified on the command line from the given repo database. "
|
||||
"Multiple\\npackages to remove can be specified on the command line.\\n"
|
||||
msgstr ""
|
||||
"repo-remove actualiza una base de datos de paquetes al eliminar el nombre "
|
||||
"del paquete\\nespecificado en la linea de órdenes de la base de datos del "
|
||||
|
@ -999,8 +1000,8 @@ msgstr ""
|
|||
#: scripts/repo-add.sh.in:85
|
||||
msgid " -v, --verify verify database's signature before update\\n"
|
||||
msgstr ""
|
||||
" -v, --verify verifica la firma de la base de datos antes de actualizar"
|
||||
"\\n"
|
||||
" -v, --verify verifica la firma de la base de datos antes de "
|
||||
"actualizar\\n"
|
||||
|
||||
#: scripts/repo-add.sh.in:86
|
||||
msgid ""
|
||||
|
@ -1013,8 +1014,8 @@ msgstr ""
|
|||
msgid ""
|
||||
"Example: repo-add /path/to/repo.db.tar.gz pacman-3.0.0-1-i686.pkg.tar.gz\\n"
|
||||
msgstr ""
|
||||
"Ejemplo: repo-add /ruta/hasta/repo.db.tar.gz pacman-3.5.0-1-i686.pkg.tar.gz"
|
||||
"\\n"
|
||||
"Ejemplo: repo-add /ruta/hasta/repo.db.tar.gz pacman-3.5.0-1-i686.pkg.tar."
|
||||
"gz\\n"
|
||||
|
||||
#: scripts/repo-add.sh.in:92
|
||||
msgid "Example: repo-remove /path/to/repo.db.tar.gz kernel26\\n"
|
||||
|
@ -1026,7 +1027,7 @@ msgstr "¡No se pudo encontrar el binario gpg! ¿GnuPG está instalado?"
|
|||
|
||||
#: scripts/repo-add.sh.in:157
|
||||
msgid "Signing database '%s'..."
|
||||
msgstr "Firmando la base de datos…"
|
||||
msgstr ""
|
||||
|
||||
#: scripts/repo-add.sh.in:166
|
||||
msgid "Created signature file '%s'"
|
||||
|
@ -1034,7 +1035,7 @@ msgstr "Creado el archivo de firma «%s»"
|
|||
|
||||
#: scripts/repo-add.sh.in:168
|
||||
msgid "Failed to sign package database file '%s'"
|
||||
msgstr "No se pudo firmar la base de datos de paquetes."
|
||||
msgstr ""
|
||||
|
||||
#: scripts/repo-add.sh.in:177
|
||||
msgid "Verifying database signature..."
|
||||
|
|
|
@ -9,9 +9,9 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Arch Linux Pacman package manager\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.archlinux.org/index.php?project=3\n"
|
||||
"POT-Creation-Date: 2021-09-04 16:15+1000\n"
|
||||
"PO-Revision-Date: 2021-04-23 00:41+0000\n"
|
||||
"Last-Translator: Allan McRae <allan@archlinux.org>\n"
|
||||
"POT-Creation-Date: 2022-09-26 21:09+1000\n"
|
||||
"PO-Revision-Date: 2011-08-08 22:35+0000\n"
|
||||
"Last-Translator: Osoitz <oelkoro@gmail.com>, 2013\n"
|
||||
"Language-Team: Basque (http://www.transifex.com/toofishes/archlinux-pacman/"
|
||||
"language/eu/)\n"
|
||||
"Language: eu\n"
|
||||
|
@ -673,8 +673,8 @@ msgstr " --lsign-key Sinatu lokalki zehaztutako gako id-ak"
|
|||
|
||||
#: scripts/pacman-key.sh.in:77
|
||||
msgid ""
|
||||
" --populate Reload the default keys from the (given) keyrings"
|
||||
"\\n in '%s'"
|
||||
" --populate Reload the default keys from the (given) "
|
||||
"keyrings\\n in '%s'"
|
||||
msgstr ""
|
||||
" --populate Birkargatu lehenetsitako gakoak %stik "
|
||||
"(aukeratutako) gako-sortetatik"
|
||||
|
@ -692,16 +692,16 @@ msgstr ""
|
|||
|
||||
#: scripts/pacman-key.sh.in:83
|
||||
msgid ""
|
||||
" --config <file> Use an alternate config file (instead of"
|
||||
"\\n '%s')"
|
||||
" --config <file> Use an alternate config file (instead "
|
||||
"of\\n '%s')"
|
||||
msgstr ""
|
||||
" --config <fitxategia> Erabili beste konfigurazio fitxategia bat "
|
||||
"( '%s' ordez)"
|
||||
|
||||
#: scripts/pacman-key.sh.in:85
|
||||
msgid ""
|
||||
" --gpgdir <dir> Set an alternate directory for GnuPG (instead"
|
||||
"\\n of '%s')"
|
||||
" --gpgdir <dir> Set an alternate directory for GnuPG "
|
||||
"(instead\\n of '%s')"
|
||||
msgstr ""
|
||||
" --gpgdir <dir> Ezarri beste GnuPG direktorio bat ('%s' ordez)"
|
||||
|
||||
|
@ -928,8 +928,8 @@ msgstr ""
|
|||
|
||||
#: scripts/repo-add.sh.in:66
|
||||
msgid ""
|
||||
" -R, --remove remove old package file from disk after updating database"
|
||||
"\\n"
|
||||
" -R, --remove remove old package file from disk after updating "
|
||||
"database\\n"
|
||||
msgstr ""
|
||||
" -R, --remove ezabatu pakete fitxategi zaharra diskotik datu-basea "
|
||||
"eguneratu eta gero\\n"
|
||||
|
@ -946,9 +946,9 @@ msgstr ""
|
|||
|
||||
#: scripts/repo-add.sh.in:71
|
||||
msgid ""
|
||||
"repo-remove will update a package database by removing the package name"
|
||||
"\\nspecified on the command line from the given repo database. Multiple"
|
||||
"\\npackages to remove can be specified on the command line.\\n"
|
||||
"repo-remove will update a package database by removing the package "
|
||||
"name\\nspecified on the command line from the given repo database. "
|
||||
"Multiple\\npackages to remove can be specified on the command line.\\n"
|
||||
msgstr ""
|
||||
"repo-remove komandoak datubase bat eguneratuko du komando lerroan "
|
||||
"zehaztutako pakete izena ezabatuz. Ezabatu beharreko hainbat pakete zehaztu "
|
||||
|
|
|
@ -8,9 +8,9 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Arch Linux Pacman package manager\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.archlinux.org/index.php?project=3\n"
|
||||
"POT-Creation-Date: 2021-09-04 16:15+1000\n"
|
||||
"PO-Revision-Date: 2021-04-23 00:41+0000\n"
|
||||
"Last-Translator: Allan McRae <allan@archlinux.org>\n"
|
||||
"POT-Creation-Date: 2022-09-26 21:09+1000\n"
|
||||
"PO-Revision-Date: 2011-08-08 22:35+0000\n"
|
||||
"Last-Translator: Osoitz <oelkoro@gmail.com>, 2013\n"
|
||||
"Language-Team: Basque (Spain) (http://www.transifex.com/toofishes/archlinux-"
|
||||
"pacman/language/eu_ES/)\n"
|
||||
"Language: eu_ES\n"
|
||||
|
@ -672,8 +672,8 @@ msgstr " --lsign-key Sinatu lokalki zehaztutako gako id-ak"
|
|||
|
||||
#: scripts/pacman-key.sh.in:77
|
||||
msgid ""
|
||||
" --populate Reload the default keys from the (given) keyrings"
|
||||
"\\n in '%s'"
|
||||
" --populate Reload the default keys from the (given) "
|
||||
"keyrings\\n in '%s'"
|
||||
msgstr ""
|
||||
" --populate Birkargatu lehenetsitako gakoak %stik "
|
||||
"(aukeratutako) gako-sortetatik"
|
||||
|
@ -691,16 +691,16 @@ msgstr ""
|
|||
|
||||
#: scripts/pacman-key.sh.in:83
|
||||
msgid ""
|
||||
" --config <file> Use an alternate config file (instead of"
|
||||
"\\n '%s')"
|
||||
" --config <file> Use an alternate config file (instead "
|
||||
"of\\n '%s')"
|
||||
msgstr ""
|
||||
" --config <fitxategia> Erabili beste konfigurazio fitxategia bat "
|
||||
"( '%s' ordez)"
|
||||
|
||||
#: scripts/pacman-key.sh.in:85
|
||||
msgid ""
|
||||
" --gpgdir <dir> Set an alternate directory for GnuPG (instead"
|
||||
"\\n of '%s')"
|
||||
" --gpgdir <dir> Set an alternate directory for GnuPG "
|
||||
"(instead\\n of '%s')"
|
||||
msgstr ""
|
||||
" --gpgdir <dir> Ezarri beste GnuPG direktorio bat ('%s' ordez)"
|
||||
|
||||
|
@ -927,8 +927,8 @@ msgstr ""
|
|||
|
||||
#: scripts/repo-add.sh.in:66
|
||||
msgid ""
|
||||
" -R, --remove remove old package file from disk after updating database"
|
||||
"\\n"
|
||||
" -R, --remove remove old package file from disk after updating "
|
||||
"database\\n"
|
||||
msgstr ""
|
||||
" -R, --remove ezabatu pakete fitxategi zaharra diskotik datu-basea "
|
||||
"eguneratu eta gero\\n"
|
||||
|
@ -945,9 +945,9 @@ msgstr ""
|
|||
|
||||
#: scripts/repo-add.sh.in:71
|
||||
msgid ""
|
||||
"repo-remove will update a package database by removing the package name"
|
||||
"\\nspecified on the command line from the given repo database. Multiple"
|
||||
"\\npackages to remove can be specified on the command line.\\n"
|
||||
"repo-remove will update a package database by removing the package "
|
||||
"name\\nspecified on the command line from the given repo database. "
|
||||
"Multiple\\npackages to remove can be specified on the command line.\\n"
|
||||
msgstr ""
|
||||
"repo-remove komandoak datubase bat eguneratuko du komando lerroan "
|
||||
"zehaztutako pakete izena ezabatuz. Ezabatu beharreko hainbat pakete zehaztu "
|
||||
|
|
|
@ -18,9 +18,9 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Arch Linux Pacman package manager\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.archlinux.org/index.php?project=3\n"
|
||||
"POT-Creation-Date: 2021-09-04 16:15+1000\n"
|
||||
"PO-Revision-Date: 2021-04-23 00:41+0000\n"
|
||||
"Last-Translator: Allan McRae <allan@archlinux.org>\n"
|
||||
"POT-Creation-Date: 2022-09-26 21:09+1000\n"
|
||||
"PO-Revision-Date: 2011-08-08 22:35+0000\n"
|
||||
"Last-Translator: Sami Korkalainen, 2016,2018\n"
|
||||
"Language-Team: Finnish (http://www.transifex.com/toofishes/archlinux-pacman/"
|
||||
"language/fi/)\n"
|
||||
"Language: fi\n"
|
||||
|
@ -666,8 +666,8 @@ msgstr "--lsign-key Allekirjoita määritelty avaintunniste paikallisesti"
|
|||
|
||||
#: scripts/pacman-key.sh.in:77
|
||||
msgid ""
|
||||
" --populate Reload the default keys from the (given) keyrings"
|
||||
"\\n in '%s'"
|
||||
" --populate Reload the default keys from the (given) "
|
||||
"keyrings\\n in '%s'"
|
||||
msgstr ""
|
||||
|
||||
#: scripts/pacman-key.sh.in:79
|
||||
|
@ -682,19 +682,19 @@ msgstr ""
|
|||
|
||||
#: scripts/pacman-key.sh.in:83
|
||||
msgid ""
|
||||
" --config <file> Use an alternate config file (instead of"
|
||||
"\\n '%s')"
|
||||
" --config <file> Use an alternate config file (instead "
|
||||
"of\\n '%s')"
|
||||
msgstr ""
|
||||
" --config <tiedosto> Käytä omavalintaista asetustiedostoa "
|
||||
"(tiedoston\\n '%s' sijaan)"
|
||||
|
||||
#: scripts/pacman-key.sh.in:85
|
||||
msgid ""
|
||||
" --gpgdir <dir> Set an alternate directory for GnuPG (instead"
|
||||
"\\n of '%s')"
|
||||
" --gpgdir <dir> Set an alternate directory for GnuPG "
|
||||
"(instead\\n of '%s')"
|
||||
msgstr ""
|
||||
" --gpgdir <kansio> Käytä omavalintaista GnuPG kansiota (kansion"
|
||||
"\\n '%s' sijaan)"
|
||||
" --gpgdir <kansio> Käytä omavalintaista GnuPG kansiota "
|
||||
"(kansion\\n '%s' sijaan)"
|
||||
|
||||
#: scripts/pacman-key.sh.in:87
|
||||
msgid " --keyserver <server-url> Specify a keyserver to use if necessary"
|
||||
|
@ -914,8 +914,8 @@ msgstr ""
|
|||
|
||||
#: scripts/repo-add.sh.in:66
|
||||
msgid ""
|
||||
" -R, --remove remove old package file from disk after updating database"
|
||||
"\\n"
|
||||
" -R, --remove remove old package file from disk after updating "
|
||||
"database\\n"
|
||||
msgstr ""
|
||||
|
||||
#: scripts/repo-add.sh.in:67
|
||||
|
@ -930,13 +930,13 @@ msgstr ""
|
|||
|
||||
#: scripts/repo-add.sh.in:71
|
||||
msgid ""
|
||||
"repo-remove will update a package database by removing the package name"
|
||||
"\\nspecified on the command line from the given repo database. Multiple"
|
||||
"\\npackages to remove can be specified on the command line.\\n"
|
||||
"repo-remove will update a package database by removing the package "
|
||||
"name\\nspecified on the command line from the given repo database. "
|
||||
"Multiple\\npackages to remove can be specified on the command line.\\n"
|
||||
msgstr ""
|
||||
"repo-remove päivittää pakettitietokannan poistamalla komentorivillä"
|
||||
"\\nannetun nimisen paketin annetusta varastotietokannasta.\\nKomentorivillä "
|
||||
"voi antaa useita poistettavia paketteja.\\n"
|
||||
"repo-remove päivittää pakettitietokannan poistamalla "
|
||||
"komentorivillä\\nannetun nimisen paketin annetusta varastotietokannasta."
|
||||
"\\nKomentorivillä voi antaa useita poistettavia paketteja.\\n"
|
||||
|
||||
#: scripts/repo-add.sh.in:78
|
||||
msgid "Please move along, there is nothing to see here.\\n"
|
||||
|
@ -962,8 +962,8 @@ msgstr ""
|
|||
#: scripts/repo-add.sh.in:85
|
||||
msgid " -v, --verify verify database's signature before update\\n"
|
||||
msgstr ""
|
||||
" -v, --verify tarkasta tietokannan allekirjoitus, ennen päivittämistä"
|
||||
"\\n"
|
||||
" -v, --verify tarkasta tietokannan allekirjoitus, ennen "
|
||||
"päivittämistä\\n"
|
||||
|
||||
#: scripts/repo-add.sh.in:86
|
||||
msgid ""
|
||||
|
|
|
@ -26,16 +26,17 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Arch Linux Pacman package manager\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.archlinux.org/index.php?project=3\n"
|
||||
"POT-Creation-Date: 2021-09-04 16:15+1000\n"
|
||||
"PO-Revision-Date: 2021-07-05 08:12+0000\n"
|
||||
"Last-Translator: Charles Monzat <c.monzat@laposte.net>\n"
|
||||
"POT-Creation-Date: 2022-09-26 21:09+1000\n"
|
||||
"PO-Revision-Date: 2011-08-08 22:35+0000\n"
|
||||
"Last-Translator: shining <chantry.xavier@gmail.com>, 2011\n"
|
||||
"Language-Team: French (http://www.transifex.com/toofishes/archlinux-pacman/"
|
||||
"language/fr/)\n"
|
||||
"Language: fr\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % "
|
||||
"1000000 == 0 ? 1 : 2;\n"
|
||||
|
||||
#: scripts/makepkg.sh.in:139
|
||||
msgid "Cleaning up..."
|
||||
|
@ -461,8 +462,8 @@ msgid ""
|
|||
"Running %s as root is not allowed as it can cause permanent,\\ncatastrophic "
|
||||
"damage to your system."
|
||||
msgstr ""
|
||||
"Exécuter %s en tant qu’administrateur n’est pas autorisé car cela pourrait"
|
||||
"\\ncauser des dommages catastrophiques et permanents à votre système."
|
||||
"Exécuter %s en tant qu’administrateur n’est pas autorisé car cela "
|
||||
"pourrait\\ncauser des dommages catastrophiques et permanents à votre système."
|
||||
|
||||
#: scripts/makepkg.sh.in:1197
|
||||
msgid "Do not use the %s option. This option is only for internal use by %s."
|
||||
|
@ -717,8 +718,8 @@ msgstr " --lsign-key Signer localement les clés spécifiées"
|
|||
|
||||
#: scripts/pacman-key.sh.in:77
|
||||
msgid ""
|
||||
" --populate Reload the default keys from the (given) keyrings"
|
||||
"\\n in '%s'"
|
||||
" --populate Reload the default keys from the (given) "
|
||||
"keyrings\\n in '%s'"
|
||||
msgstr ""
|
||||
" --populate Recharger les clés par défaut depuis les "
|
||||
"trousseaux dans %s"
|
||||
|
@ -736,16 +737,16 @@ msgstr " --verbose Afficher des informations supplémentaires"
|
|||
|
||||
#: scripts/pacman-key.sh.in:83
|
||||
msgid ""
|
||||
" --config <file> Use an alternate config file (instead of"
|
||||
"\\n '%s')"
|
||||
" --config <file> Use an alternate config file (instead "
|
||||
"of\\n '%s')"
|
||||
msgstr ""
|
||||
" --config <file> Utilisation d’un fichier de configuration "
|
||||
"alternatif (à la place de\\n « %s »)"
|
||||
|
||||
#: scripts/pacman-key.sh.in:85
|
||||
msgid ""
|
||||
" --gpgdir <dir> Set an alternate directory for GnuPG (instead"
|
||||
"\\n of '%s')"
|
||||
" --gpgdir <dir> Set an alternate directory for GnuPG "
|
||||
"(instead\\n of '%s')"
|
||||
msgstr ""
|
||||
" --gpgdir <dir> Indiquer un répertoire alternatif pour GnuPG (à "
|
||||
"la place de\\n « %s »)"
|
||||
|
@ -983,8 +984,8 @@ msgstr ""
|
|||
|
||||
#: scripts/repo-add.sh.in:66
|
||||
msgid ""
|
||||
" -R, --remove remove old package file from disk after updating database"
|
||||
"\\n"
|
||||
" -R, --remove remove old package file from disk after updating "
|
||||
"database\\n"
|
||||
msgstr ""
|
||||
"-R, --remove supprime les paquets obsolètes du disque après la mise à jour "
|
||||
"de la base de données\\n"
|
||||
|
@ -1003,9 +1004,9 @@ msgstr "Utilisation : repo-remove [options] <path-to-db> <packagename>…\\n"
|
|||
|
||||
#: scripts/repo-add.sh.in:71
|
||||
msgid ""
|
||||
"repo-remove will update a package database by removing the package name"
|
||||
"\\nspecified on the command line from the given repo database. Multiple"
|
||||
"\\npackages to remove can be specified on the command line.\\n"
|
||||
"repo-remove will update a package database by removing the package "
|
||||
"name\\nspecified on the command line from the given repo database. "
|
||||
"Multiple\\npackages to remove can be specified on the command line.\\n"
|
||||
msgstr ""
|
||||
"« repo-remove » va mettre à jour un dépôt en supprimant le paquet\\nspécifié "
|
||||
"en ligne de commande pour un dépôt donné. Plusieurs\\npaquets à supprimer "
|
||||
|
@ -1026,8 +1027,8 @@ msgstr " -q, --quiet minimise la sortie\\n"
|
|||
#: scripts/repo-add.sh.in:83
|
||||
msgid " -s, --sign sign database with GnuPG after update\\n"
|
||||
msgstr ""
|
||||
" -s, --sign signer la base de données avec GnuPG après la mise à jour"
|
||||
"\\n"
|
||||
" -s, --sign signer la base de données avec GnuPG après la mise à "
|
||||
"jour\\n"
|
||||
|
||||
#: scripts/repo-add.sh.in:84
|
||||
msgid " -k, --key <key> use the specified key to sign the database\\n"
|
||||
|
|
|
@ -12,9 +12,9 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Arch Linux Pacman package manager\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.archlinux.org/index.php?project=3\n"
|
||||
"POT-Creation-Date: 2021-09-04 16:15+1000\n"
|
||||
"PO-Revision-Date: 2021-04-23 00:41+0000\n"
|
||||
"Last-Translator: Allan McRae <allan@archlinux.org>\n"
|
||||
"POT-Creation-Date: 2022-09-26 21:09+1000\n"
|
||||
"PO-Revision-Date: 2011-08-08 22:35+0000\n"
|
||||
"Last-Translator: Daniel, 2016\n"
|
||||
"Language-Team: Galician (http://www.transifex.com/toofishes/archlinux-pacman/"
|
||||
"language/gl/)\n"
|
||||
"Language: gl\n"
|
||||
|
@ -253,8 +253,8 @@ msgstr " -d, --nodeps Saltarse as comprobacións de dependencias."
|
|||
#: scripts/makepkg.sh.in:973
|
||||
msgid " -e, --noextract Do not extract source files (use existing %s dir)"
|
||||
msgstr ""
|
||||
" -e, --noextract Non extraer os ficheiros das fontes (usar o cartafol"
|
||||
"\\n «%s» existente)."
|
||||
" -e, --noextract Non extraer os ficheiros das fontes (usar o "
|
||||
"cartafol\\n «%s» existente)."
|
||||
|
||||
#: scripts/makepkg.sh.in:974
|
||||
msgid " -f, --force Overwrite existing package"
|
||||
|
@ -291,15 +291,15 @@ msgstr " -o, --nobuild Unicamente descargar e extraer os ficheiros."
|
|||
#: scripts/makepkg.sh.in:981
|
||||
msgid " -p <file> Use an alternate build script (instead of '%s')"
|
||||
msgstr ""
|
||||
" -p <ficheiro> Usar un script de construción alternativo (en vez de"
|
||||
"\\n «%s»)."
|
||||
" -p <ficheiro> Usar un script de construción alternativo (en vez "
|
||||
"de\\n «%s»)."
|
||||
|
||||
#: scripts/makepkg.sh.in:982
|
||||
msgid ""
|
||||
" -r, --rmdeps Remove installed dependencies after a successful build"
|
||||
msgstr ""
|
||||
" -r, --rmdeps Eliminar as dependencias instaladas tras construír o"
|
||||
"\\n paquete correctamente."
|
||||
" -r, --rmdeps Eliminar as dependencias instaladas tras construír "
|
||||
"o\\n paquete correctamente."
|
||||
|
||||
#: scripts/makepkg.sh.in:983
|
||||
msgid " -R, --repackage Repackage contents of the package without rebuilding"
|
||||
|
@ -326,8 +326,8 @@ msgid ""
|
|||
" --allsource Generate a source-only tarball including downloaded "
|
||||
"sources"
|
||||
msgstr ""
|
||||
" --allsource Xerar un arquivo coas fontes do paquete incluíndo os"
|
||||
"\\n ficheiros de fontes descargados."
|
||||
" --allsource Xerar un arquivo coas fontes do paquete incluíndo "
|
||||
"os\\n ficheiros de fontes descargados."
|
||||
|
||||
#: scripts/makepkg.sh.in:988
|
||||
msgid " --check Run the %s function in the %s"
|
||||
|
@ -349,8 +349,8 @@ msgstr ""
|
|||
msgid ""
|
||||
" --key <key> Specify a key to use for %s signing instead of the default"
|
||||
msgstr ""
|
||||
" --key <chave> Indicar unha chave de asinado «%s» que usar en vez"
|
||||
"\\n da predeterminada."
|
||||
" --key <chave> Indicar unha chave de asinado «%s» que usar en "
|
||||
"vez\\n da predeterminada."
|
||||
|
||||
#: scripts/makepkg.sh.in:992
|
||||
msgid " --noarchive Do not create package archive"
|
||||
|
@ -383,8 +383,8 @@ msgstr " --sign Asinar o paquete resultante con «%s»."
|
|||
#: scripts/makepkg.sh.in:999
|
||||
msgid " --skipchecksums Do not verify checksums of the source files"
|
||||
msgstr ""
|
||||
" --skipchecksums Non comprobar as sumas de comprobación dos ficheiros de"
|
||||
"\\n fontes."
|
||||
" --skipchecksums Non comprobar as sumas de comprobación dos ficheiros "
|
||||
"de\\n fontes."
|
||||
|
||||
#: scripts/makepkg.sh.in:1000
|
||||
msgid ""
|
||||
|
@ -403,8 +403,9 @@ msgid ""
|
|||
" --verifysource Download source files (if needed) and perform integrity "
|
||||
"checks"
|
||||
msgstr ""
|
||||
" --verifysource Descargar os ficheiros de fontes (se non se descargaron"
|
||||
"\\n previamente) e comprobar a súa integridade."
|
||||
" --verifysource Descargar os ficheiros de fontes (se non se "
|
||||
"descargaron\\n previamente) e comprobar a súa "
|
||||
"integridade."
|
||||
|
||||
#: scripts/makepkg.sh.in:1004
|
||||
msgid "These options can be passed to %s:"
|
||||
|
@ -413,8 +414,8 @@ msgstr "As seguintes opcións pódenselle pasar a «%s»:"
|
|||
#: scripts/makepkg.sh.in:1006
|
||||
msgid " --asdeps Install packages as non-explicitly installed"
|
||||
msgstr ""
|
||||
" --asdeps Marcar os paquetes instalados como paquetes «instalados"
|
||||
"\\n indirectamente»."
|
||||
" --asdeps Marcar os paquetes instalados como paquetes "
|
||||
"«instalados\\n indirectamente»."
|
||||
|
||||
#: scripts/makepkg.sh.in:1007
|
||||
msgid ""
|
||||
|
@ -426,8 +427,8 @@ msgstr ""
|
|||
msgid ""
|
||||
" --noconfirm Do not ask for confirmation when resolving dependencies"
|
||||
msgstr ""
|
||||
" --noconfirm Non pedir confirmación á hora de solucionar as"
|
||||
"\\n dependencias."
|
||||
" --noconfirm Non pedir confirmación á hora de solucionar "
|
||||
"as\\n dependencias."
|
||||
|
||||
#: scripts/makepkg.sh.in:1009
|
||||
msgid " --noprogressbar Do not show a progress bar when downloading files"
|
||||
|
@ -639,15 +640,15 @@ msgstr ""
|
|||
#: scripts/pacman-key.sh.in:65
|
||||
msgid " -e, --export Export the specified or all keyids"
|
||||
msgstr ""
|
||||
" -e, --export Exportar os identificadores de chave indicados ou"
|
||||
"\\n todos eles."
|
||||
" -e, --export Exportar os identificadores de chave indicados "
|
||||
"ou\\n todos eles."
|
||||
|
||||
#: scripts/pacman-key.sh.in:66
|
||||
msgid ""
|
||||
" -f, --finger List fingerprint for specified or all keyids"
|
||||
msgstr ""
|
||||
" -f, --finger Listar as pegadas dixitais dos identificadores de"
|
||||
"\\n chave indicados ou de todos eles."
|
||||
" -f, --finger Listar as pegadas dixitais dos identificadores "
|
||||
"de\\n chave indicados ou de todos eles."
|
||||
|
||||
#: scripts/pacman-key.sh.in:67
|
||||
msgid " -l, --list-keys List the specified or all keys"
|
||||
|
@ -686,8 +687,9 @@ msgid ""
|
|||
" --import-trustdb Imports ownertrust values from trustdb.gpg in "
|
||||
"dir(s)"
|
||||
msgstr ""
|
||||
" --import-trustdb Importa os valores de confianza en propietarios"
|
||||
"\\n (ownertrust) de «trustdb.gpg» nos cartafoles."
|
||||
" --import-trustdb Importa os valores de confianza en "
|
||||
"propietarios\\n (ownertrust) de «trustdb.gpg» nos "
|
||||
"cartafoles."
|
||||
|
||||
#: scripts/pacman-key.sh.in:74
|
||||
msgid " --init Ensure the keyring is properly initialized"
|
||||
|
@ -707,18 +709,18 @@ msgstr ""
|
|||
|
||||
#: scripts/pacman-key.sh.in:77
|
||||
msgid ""
|
||||
" --populate Reload the default keys from the (given) keyrings"
|
||||
"\\n in '%s'"
|
||||
" --populate Reload the default keys from the (given) "
|
||||
"keyrings\\n in '%s'"
|
||||
msgstr ""
|
||||
" --populate Recargar as chaves predeterminadas dos chaveiros"
|
||||
"\\n indicados en «%s»."
|
||||
" --populate Recargar as chaves predeterminadas dos "
|
||||
"chaveiros\\n indicados en «%s»."
|
||||
|
||||
#: scripts/pacman-key.sh.in:79
|
||||
msgid ""
|
||||
" --refresh-keys Update specified or all keys from a keyserver"
|
||||
msgstr ""
|
||||
" --refresh-keys Actualizar as chaves indicadas ou todas desde un"
|
||||
"\\n servidor."
|
||||
" --refresh-keys Actualizar as chaves indicadas ou todas desde "
|
||||
"un\\n servidor."
|
||||
|
||||
#: scripts/pacman-key.sh.in:80
|
||||
msgid " --verbose Show extra information"
|
||||
|
@ -726,16 +728,16 @@ msgstr ""
|
|||
|
||||
#: scripts/pacman-key.sh.in:83
|
||||
msgid ""
|
||||
" --config <file> Use an alternate config file (instead of"
|
||||
"\\n '%s')"
|
||||
" --config <file> Use an alternate config file (instead "
|
||||
"of\\n '%s')"
|
||||
msgstr ""
|
||||
" --config <ficheiro> Usar un ficheiro de configuración alternativo "
|
||||
"(en vez de\\n «%s»)"
|
||||
|
||||
#: scripts/pacman-key.sh.in:85
|
||||
msgid ""
|
||||
" --gpgdir <dir> Set an alternate directory for GnuPG (instead"
|
||||
"\\n of '%s')"
|
||||
" --gpgdir <dir> Set an alternate directory for GnuPG "
|
||||
"(instead\\n of '%s')"
|
||||
msgstr ""
|
||||
" --gpgdir <cartafol> Definir un cartafol alternativo para GnuPG (en "
|
||||
"vez\\n de «%s»)."
|
||||
|
@ -743,8 +745,8 @@ msgstr ""
|
|||
#: scripts/pacman-key.sh.in:87
|
||||
msgid " --keyserver <server-url> Specify a keyserver to use if necessary"
|
||||
msgstr ""
|
||||
" --keyserver <URL> Indique o servidor de chaves a usar se fose"
|
||||
"\\n necesario."
|
||||
" --keyserver <URL> Indique o servidor de chaves a usar se "
|
||||
"fose\\n necesario."
|
||||
|
||||
#: scripts/pacman-key.sh.in:89
|
||||
msgid " -h, --help Show this help message and exit"
|
||||
|
@ -968,11 +970,11 @@ msgstr ""
|
|||
|
||||
#: scripts/repo-add.sh.in:66
|
||||
msgid ""
|
||||
" -R, --remove remove old package file from disk after updating database"
|
||||
"\\n"
|
||||
" -R, --remove remove old package file from disk after updating "
|
||||
"database\\n"
|
||||
msgstr ""
|
||||
" -R, --remove Eliminar do disco o ficheiro antigo do paquete"
|
||||
"\\n tras actualizar a base de datos.\\n"
|
||||
" -R, --remove Eliminar do disco o ficheiro antigo do "
|
||||
"paquete\\n tras actualizar a base de datos.\\n"
|
||||
|
||||
#: scripts/repo-add.sh.in:67
|
||||
msgid ""
|
||||
|
@ -986,12 +988,12 @@ msgstr ""
|
|||
|
||||
#: scripts/repo-add.sh.in:71
|
||||
msgid ""
|
||||
"repo-remove will update a package database by removing the package name"
|
||||
"\\nspecified on the command line from the given repo database. Multiple"
|
||||
"\\npackages to remove can be specified on the command line.\\n"
|
||||
"repo-remove will update a package database by removing the package "
|
||||
"name\\nspecified on the command line from the given repo database. "
|
||||
"Multiple\\npackages to remove can be specified on the command line.\\n"
|
||||
msgstr ""
|
||||
"repo-remove eliminará da base de datos de paquetes indicada o paquete co nome"
|
||||
"\\nindicado. Pode indicar varios paquetes para eliminar.\\n"
|
||||
"repo-remove eliminará da base de datos de paquetes indicada o paquete co "
|
||||
"nome\\nindicado. Pode indicar varios paquetes para eliminar.\\n"
|
||||
|
||||
#: scripts/repo-add.sh.in:78
|
||||
msgid "Please move along, there is nothing to see here.\\n"
|
||||
|
|
|
@ -8,9 +8,9 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Arch Linux Pacman package manager\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.archlinux.org/index.php?project=3\n"
|
||||
"POT-Creation-Date: 2021-09-04 16:15+1000\n"
|
||||
"PO-Revision-Date: 2021-05-09 11:23+0000\n"
|
||||
"Last-Translator: Panwar108 <caspian7pena@gmail.com>\n"
|
||||
"POT-Creation-Date: 2022-09-26 21:09+1000\n"
|
||||
"PO-Revision-Date: 2011-08-08 22:35+0000\n"
|
||||
"Last-Translator: Panwar108 <caspian7pena@gmail.com>, 2020-2021\n"
|
||||
"Language-Team: Hindi (http://www.transifex.com/toofishes/archlinux-pacman/"
|
||||
"language/hi/)\n"
|
||||
"Language: hi\n"
|
||||
|
@ -406,7 +406,7 @@ msgstr ""
|
|||
|
||||
#: scripts/makepkg.sh.in:1121 scripts/repo-add.sh.in:598
|
||||
msgid "%s signal caught. Exiting..."
|
||||
msgstr "संकेत प्राप्त। कार्य बंद हो रहा..."
|
||||
msgstr ""
|
||||
|
||||
#: scripts/makepkg.sh.in:1191
|
||||
msgid ""
|
||||
|
@ -638,11 +638,11 @@ msgstr " --lsign-key निर्दिष्ट कुंजी
|
|||
|
||||
#: scripts/pacman-key.sh.in:77
|
||||
msgid ""
|
||||
" --populate Reload the default keys from the (given) keyrings"
|
||||
"\\n in '%s'"
|
||||
" --populate Reload the default keys from the (given) "
|
||||
"keyrings\\n in '%s'"
|
||||
msgstr ""
|
||||
" --populate (निर्दिष्ट) कुंजी-संग्रहों से डिफ़ॉल्ट कुंजियाँ पुनः लोड करें"
|
||||
"\\n '%s' में"
|
||||
" --populate (निर्दिष्ट) कुंजी-संग्रहों से डिफ़ॉल्ट कुंजियाँ पुनः लोड "
|
||||
"करें\\n '%s' में"
|
||||
|
||||
#: scripts/pacman-key.sh.in:79
|
||||
msgid ""
|
||||
|
@ -656,19 +656,19 @@ msgstr " --verbose अतिरिक्त सूचना द
|
|||
|
||||
#: scripts/pacman-key.sh.in:83
|
||||
msgid ""
|
||||
" --config <file> Use an alternate config file (instead of"
|
||||
"\\n '%s')"
|
||||
" --config <file> Use an alternate config file (instead "
|
||||
"of\\n '%s')"
|
||||
msgstr ""
|
||||
" --config <file> वैकल्पिक विन्यास फाइल उपयोग करें (इसके स्थान पर"
|
||||
"\\n '%s')"
|
||||
" --config <file> वैकल्पिक विन्यास फाइल उपयोग करें (इसके स्थान "
|
||||
"पर\\n '%s')"
|
||||
|
||||
#: scripts/pacman-key.sh.in:85
|
||||
msgid ""
|
||||
" --gpgdir <dir> Set an alternate directory for GnuPG (instead"
|
||||
"\\n of '%s')"
|
||||
" --gpgdir <dir> Set an alternate directory for GnuPG "
|
||||
"(instead\\n of '%s')"
|
||||
msgstr ""
|
||||
" --gpgdir <dir> GnuPG हेतु वैकल्पिक डायरेक्टरी सेट करें (इसके स्थान पर"
|
||||
"\\n of '%s')"
|
||||
" --gpgdir <dir> GnuPG हेतु वैकल्पिक डायरेक्टरी सेट करें (इसके स्थान "
|
||||
"पर\\n of '%s')"
|
||||
|
||||
#: scripts/pacman-key.sh.in:87
|
||||
msgid " --keyserver <server-url> Specify a keyserver to use if necessary"
|
||||
|
@ -886,8 +886,8 @@ msgstr " -n, --new केवल डेटाबेस में पह
|
|||
|
||||
#: scripts/repo-add.sh.in:66
|
||||
msgid ""
|
||||
" -R, --remove remove old package file from disk after updating database"
|
||||
"\\n"
|
||||
" -R, --remove remove old package file from disk after updating "
|
||||
"database\\n"
|
||||
msgstr " -R, --remove डेटाबेस अपडेट उपरांत डिस्क से पुरानी पैकेज फाइल हटाएँ\\n"
|
||||
|
||||
#: scripts/repo-add.sh.in:67
|
||||
|
@ -903,12 +903,13 @@ msgstr "उपयोग : repo-remove [विकल्प] <path-to-db> <package
|
|||
|
||||
#: scripts/repo-add.sh.in:71
|
||||
msgid ""
|
||||
"repo-remove will update a package database by removing the package name"
|
||||
"\\nspecified on the command line from the given repo database. Multiple"
|
||||
"\\npackages to remove can be specified on the command line.\\n"
|
||||
"repo-remove will update a package database by removing the package "
|
||||
"name\\nspecified on the command line from the given repo database. "
|
||||
"Multiple\\npackages to remove can be specified on the command line.\\n"
|
||||
msgstr ""
|
||||
"repo-remove द्वारा निर्दिष्ट पैकेज-संग्रह डेटाबेस से कमांड लाइन द्वारा निर्दिष्ट पैकेज नाम"
|
||||
"\\nहटाकर पैकेज डेटाबेस अपडेट होगा। हटाने हेतु\\nएकाधिक पैकेज कमांड लाइन से निर्दिष्ट करें।\\n"
|
||||
"repo-remove द्वारा निर्दिष्ट पैकेज-संग्रह डेटाबेस से कमांड लाइन द्वारा निर्दिष्ट पैकेज "
|
||||
"नाम\\nहटाकर पैकेज डेटाबेस अपडेट होगा। हटाने हेतु\\nएकाधिक पैकेज कमांड लाइन से निर्दिष्ट करें।"
|
||||
"\\n"
|
||||
|
||||
#: scripts/repo-add.sh.in:78
|
||||
msgid "Please move along, there is nothing to see here.\\n"
|
||||
|
|
|
@ -18,9 +18,9 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Arch Linux Pacman package manager\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.archlinux.org/index.php?project=3\n"
|
||||
"POT-Creation-Date: 2021-09-04 16:15+1000\n"
|
||||
"PO-Revision-Date: 2021-04-23 00:41+0000\n"
|
||||
"Last-Translator: Allan McRae <allan@archlinux.org>\n"
|
||||
"POT-Creation-Date: 2022-09-26 21:09+1000\n"
|
||||
"PO-Revision-Date: 2011-08-08 22:35+0000\n"
|
||||
"Last-Translator: user14 <nleknh@gmail.com>, 2019\n"
|
||||
"Language-Team: Hungarian (http://www.transifex.com/toofishes/archlinux-"
|
||||
"pacman/language/hu/)\n"
|
||||
"Language: hu\n"
|
||||
|
@ -685,8 +685,8 @@ msgstr ""
|
|||
|
||||
#: scripts/pacman-key.sh.in:77
|
||||
msgid ""
|
||||
" --populate Reload the default keys from the (given) keyrings"
|
||||
"\\n in '%s'"
|
||||
" --populate Reload the default keys from the (given) "
|
||||
"keyrings\\n in '%s'"
|
||||
msgstr ""
|
||||
" --populate Az alapértelmezett kulcsok újratöltése a "
|
||||
"(megadott) kulcstartókból\\n a '%s' könyvtárból"
|
||||
|
@ -704,19 +704,19 @@ msgstr ""
|
|||
|
||||
#: scripts/pacman-key.sh.in:83
|
||||
msgid ""
|
||||
" --config <file> Use an alternate config file (instead of"
|
||||
"\\n '%s')"
|
||||
" --config <file> Use an alternate config file (instead "
|
||||
"of\\n '%s')"
|
||||
msgstr ""
|
||||
" --config <fájl> Alternatív konfigurációs fájl használata"
|
||||
"\\n ('%s' helyett)"
|
||||
" --config <fájl> Alternatív konfigurációs fájl "
|
||||
"használata\\n ('%s' helyett)"
|
||||
|
||||
#: scripts/pacman-key.sh.in:85
|
||||
msgid ""
|
||||
" --gpgdir <dir> Set an alternate directory for GnuPG (instead"
|
||||
"\\n of '%s')"
|
||||
" --gpgdir <dir> Set an alternate directory for GnuPG "
|
||||
"(instead\\n of '%s')"
|
||||
msgstr ""
|
||||
" --gpgdir <könyvtár> Alternatív könyvtár beállítása a GnuPG-hez"
|
||||
"\\n ('%s' helyett)"
|
||||
" --gpgdir <könyvtár> Alternatív könyvtár beállítása a GnuPG-"
|
||||
"hez\\n ('%s' helyett)"
|
||||
|
||||
#: scripts/pacman-key.sh.in:87
|
||||
msgid " --keyserver <server-url> Specify a keyserver to use if necessary"
|
||||
|
@ -938,8 +938,8 @@ msgstr ""
|
|||
|
||||
#: scripts/repo-add.sh.in:66
|
||||
msgid ""
|
||||
" -R, --remove remove old package file from disk after updating database"
|
||||
"\\n"
|
||||
" -R, --remove remove old package file from disk after updating "
|
||||
"database\\n"
|
||||
msgstr ""
|
||||
" -R, --remove régi csomagfájl eltávolítása a lemezről "
|
||||
"adatbázisfrissítés után\\n"
|
||||
|
@ -958,9 +958,9 @@ msgstr "Használat: repo-remove [opciók] <path-to-db> <packagename> ...\\n"
|
|||
|
||||
#: scripts/repo-add.sh.in:71
|
||||
msgid ""
|
||||
"repo-remove will update a package database by removing the package name"
|
||||
"\\nspecified on the command line from the given repo database. Multiple"
|
||||
"\\npackages to remove can be specified on the command line.\\n"
|
||||
"repo-remove will update a package database by removing the package "
|
||||
"name\\nspecified on the command line from the given repo database. "
|
||||
"Multiple\\npackages to remove can be specified on the command line.\\n"
|
||||
msgstr ""
|
||||
"A repo-remove csomagadatbázist frissít a parancssorban megadott "
|
||||
"csomag(ok)\\neltávolításával. Több csomagnév is megadható a parancssorban.\\n"
|
||||
|
|
|
@ -18,9 +18,9 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Arch Linux Pacman package manager\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.archlinux.org/index.php?project=3\n"
|
||||
"POT-Creation-Date: 2021-09-04 16:15+1000\n"
|
||||
"PO-Revision-Date: 2021-04-23 00:41+0000\n"
|
||||
"Last-Translator: Allan McRae <allan@archlinux.org>\n"
|
||||
"POT-Creation-Date: 2022-09-26 21:09+1000\n"
|
||||
"PO-Revision-Date: 2011-08-08 22:35+0000\n"
|
||||
"Last-Translator: se7entime <se7entime@disroot.org>, 2013,2016\n"
|
||||
"Language-Team: Indonesian (http://www.transifex.com/toofishes/archlinux-"
|
||||
"pacman/language/id/)\n"
|
||||
"Language: id\n"
|
||||
|
@ -659,8 +659,8 @@ msgstr "-lsign-key Menandai keyid yang ditentukan"
|
|||
|
||||
#: scripts/pacman-key.sh.in:77
|
||||
msgid ""
|
||||
" --populate Reload the default keys from the (given) keyrings"
|
||||
"\\n in '%s'"
|
||||
" --populate Reload the default keys from the (given) "
|
||||
"keyrings\\n in '%s'"
|
||||
msgstr ""
|
||||
"--populate Memuat ulang key default dari keyring (yang diberikan) pada '%s'"
|
||||
|
||||
|
@ -677,15 +677,15 @@ msgstr ""
|
|||
|
||||
#: scripts/pacman-key.sh.in:83
|
||||
msgid ""
|
||||
" --config <file> Use an alternate config file (instead of"
|
||||
"\\n '%s')"
|
||||
" --config <file> Use an alternate config file (instead "
|
||||
"of\\n '%s')"
|
||||
msgstr ""
|
||||
"--config <berkas> Gunakan berkas konfigurasi alternatif (selain \\n'%s')"
|
||||
|
||||
#: scripts/pacman-key.sh.in:85
|
||||
msgid ""
|
||||
" --gpgdir <dir> Set an alternate directory for GnuPG (instead"
|
||||
"\\n of '%s')"
|
||||
" --gpgdir <dir> Set an alternate directory for GnuPG "
|
||||
"(instead\\n of '%s')"
|
||||
msgstr "--gpgdir <dir> Mengatur direktori alternatif GnuPG (daripada\\n '%s')"
|
||||
|
||||
#: scripts/pacman-key.sh.in:87
|
||||
|
@ -905,11 +905,11 @@ msgstr "-n, --new hanya menambah paket yang tidak ada pada database\\n"
|
|||
|
||||
#: scripts/repo-add.sh.in:66
|
||||
msgid ""
|
||||
" -R, --remove remove old package file from disk after updating database"
|
||||
"\\n"
|
||||
" -R, --remove remove old package file from disk after updating "
|
||||
"database\\n"
|
||||
msgstr ""
|
||||
"-R, --remove menghapus paket lama dari diska setelah pemutakhiran basis data"
|
||||
"\\n"
|
||||
"-R, --remove menghapus paket lama dari diska setelah pemutakhiran basis "
|
||||
"data\\n"
|
||||
|
||||
#: scripts/repo-add.sh.in:67
|
||||
msgid ""
|
||||
|
@ -923,13 +923,13 @@ msgstr ""
|
|||
|
||||
#: scripts/repo-add.sh.in:71
|
||||
msgid ""
|
||||
"repo-remove will update a package database by removing the package name"
|
||||
"\\nspecified on the command line from the given repo database. Multiple"
|
||||
"\\npackages to remove can be specified on the command line.\\n"
|
||||
"repo-remove will update a package database by removing the package "
|
||||
"name\\nspecified on the command line from the given repo database. "
|
||||
"Multiple\\npackages to remove can be specified on the command line.\\n"
|
||||
msgstr ""
|
||||
"repo-remove akan memutakhirkan database paket dengan menghapus nama paket"
|
||||
"\\nyang ditentukan pada command line yang ada pada database repo. Beberapa"
|
||||
"\\npaket dapat dihapus pada command line.\\n"
|
||||
"repo-remove akan memutakhirkan database paket dengan menghapus nama "
|
||||
"paket\\nyang ditentukan pada command line yang ada pada database repo. "
|
||||
"Beberapa\\npaket dapat dihapus pada command line.\\n"
|
||||
|
||||
#: scripts/repo-add.sh.in:78
|
||||
msgid "Please move along, there is nothing to see here.\\n"
|
||||
|
|
|
@ -8,23 +8,25 @@
|
|||
# d574d4bb40c84861791a694a999cce69_9aabecb <ec34fbc10d74f76d8160c2aae04a84b4_6702>, 2014
|
||||
# d574d4bb40c84861791a694a999cce69_9aabecb <ec34fbc10d74f76d8160c2aae04a84b4_6702>, 2014
|
||||
# d574d4bb40c84861791a694a999cce69_9aabecb <ec34fbc10d74f76d8160c2aae04a84b4_6702>, 2014
|
||||
# Giovanni Scafora <giovanni@archlinux.org>, 2011-2013,2015
|
||||
# Giovanni Scafora <scafora.giovanni@gmail.com>, 2011-2013,2015,2022
|
||||
# Saverio <saverio.brancaccio@gmail.com>, 2016
|
||||
# ~Smlb <smlb@riseup.net>, 2014
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Arch Linux Pacman package manager\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.archlinux.org/index.php?project=3\n"
|
||||
"POT-Creation-Date: 2021-09-04 16:15+1000\n"
|
||||
"PO-Revision-Date: 2021-04-23 00:41+0000\n"
|
||||
"Last-Translator: Allan McRae <allan@archlinux.org>\n"
|
||||
"POT-Creation-Date: 2022-09-26 21:09+1000\n"
|
||||
"PO-Revision-Date: 2011-08-08 22:35+0000\n"
|
||||
"Last-Translator: Giovanni Scafora <scafora.giovanni@gmail.com>, "
|
||||
"2011-2013,2015,2022\n"
|
||||
"Language-Team: Italian (http://www.transifex.com/toofishes/archlinux-pacman/"
|
||||
"language/it/)\n"
|
||||
"Language: it\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? "
|
||||
"1 : 2;\n"
|
||||
|
||||
#: scripts/makepkg.sh.in:139
|
||||
msgid "Cleaning up..."
|
||||
|
@ -88,7 +90,7 @@ msgstr "L'operazione sta per essere interrotta..."
|
|||
|
||||
#: scripts/makepkg.sh.in:248
|
||||
msgid "Pacman is currently in use, please wait..."
|
||||
msgstr "Pacman è attualmente utilizzato, attendere..."
|
||||
msgstr "Pacman è attualmente in uso, attendere..."
|
||||
|
||||
#: scripts/makepkg.sh.in:269
|
||||
msgid "'%s' returned a fatal error (%i): %s"
|
||||
|
@ -679,8 +681,8 @@ msgstr "--lsign-key Firma localmente il keyid specificato"
|
|||
|
||||
#: scripts/pacman-key.sh.in:77
|
||||
msgid ""
|
||||
" --populate Reload the default keys from the (given) keyrings"
|
||||
"\\n in '%s'"
|
||||
" --populate Reload the default keys from the (given) "
|
||||
"keyrings\\n in '%s'"
|
||||
msgstr ""
|
||||
"--populate Ricarica le chiavi di default dai portachiavi\\n (specificati) in "
|
||||
"'%s'"
|
||||
|
@ -694,20 +696,20 @@ msgstr ""
|
|||
|
||||
#: scripts/pacman-key.sh.in:80
|
||||
msgid " --verbose Show extra information"
|
||||
msgstr ""
|
||||
msgstr " --verbose Mostra ulteriori informazioni"
|
||||
|
||||
#: scripts/pacman-key.sh.in:83
|
||||
msgid ""
|
||||
" --config <file> Use an alternate config file (instead of"
|
||||
"\\n '%s')"
|
||||
" --config <file> Use an alternate config file (instead "
|
||||
"of\\n '%s')"
|
||||
msgstr ""
|
||||
" --config <file> Usa un file di configurazione alternativo "
|
||||
"(invece di\\n '%s')"
|
||||
|
||||
#: scripts/pacman-key.sh.in:85
|
||||
msgid ""
|
||||
" --gpgdir <dir> Set an alternate directory for GnuPG (instead"
|
||||
"\\n of '%s')"
|
||||
" --gpgdir <dir> Set an alternate directory for GnuPG "
|
||||
"(instead\\n of '%s')"
|
||||
msgstr ""
|
||||
" --gpgdir <dir> Imposta una directory alternativa per GnuPG "
|
||||
"(invece\\n di '%s')"
|
||||
|
@ -736,6 +738,8 @@ msgstr "Il nome della chiave è ambiguo:"
|
|||
#: scripts/pacman-key.sh.in:148
|
||||
msgid "Generating pacman master key. This may take some time."
|
||||
msgstr ""
|
||||
"Generazione della chiave master di pacman. Questa operazione potrebbe "
|
||||
"richiedere del tempo."
|
||||
|
||||
#: scripts/pacman-key.sh.in:185
|
||||
msgid "The key identified by %s could not be found locally."
|
||||
|
@ -744,11 +748,11 @@ msgstr "La chiave identificata da %s non esiste localmente."
|
|||
#: scripts/pacman-key.sh.in:196 scripts/pacman-key.sh.in:208
|
||||
#: scripts/libmakepkg/integrity/verify_signature.sh.in:204
|
||||
msgid "_"
|
||||
msgstr ""
|
||||
msgstr "_"
|
||||
|
||||
#: scripts/pacman-key.sh.in:208
|
||||
msgid "flags"
|
||||
msgstr ""
|
||||
msgstr "flag"
|
||||
|
||||
#: scripts/pacman-key.sh.in:263
|
||||
msgid "You do not have sufficient permissions to read the %s keyring."
|
||||
|
@ -800,7 +804,7 @@ msgstr "Disabilitazione della chiave %s in corso..."
|
|||
|
||||
#: scripts/pacman-key.sh.in:381
|
||||
msgid "Disabled %s keys."
|
||||
msgstr ""
|
||||
msgstr "Disabilitate %s chiavi."
|
||||
|
||||
#: scripts/pacman-key.sh.in:388
|
||||
msgid "A specified keyfile could not be added to the keyring."
|
||||
|
@ -848,7 +852,7 @@ msgstr "%s non può essere firmata localmente."
|
|||
|
||||
#: scripts/pacman-key.sh.in:509
|
||||
msgid "Locally signed %s keys."
|
||||
msgstr ""
|
||||
msgstr "Firmate localmente %s chiavi."
|
||||
|
||||
#: scripts/pacman-key.sh.in:532
|
||||
msgid "Remote key not fetched correctly from WKD or keyserver."
|
||||
|
@ -862,7 +866,7 @@ msgstr "La chiave remota non è stata correttamente scaricata dal keyserver."
|
|||
|
||||
#: scripts/pacman-key.sh.in:569
|
||||
msgid "Could not update key: %s"
|
||||
msgstr ""
|
||||
msgstr "Impossibile aggiornare la chiave: %s"
|
||||
|
||||
#: scripts/pacman-key.sh.in:590 scripts/repo-add.sh.in:265
|
||||
msgid "Cannot use armored signatures for packages: %s"
|
||||
|
@ -933,8 +937,8 @@ msgstr ""
|
|||
|
||||
#: scripts/repo-add.sh.in:66
|
||||
msgid ""
|
||||
" -R, --remove remove old package file from disk after updating database"
|
||||
"\\n"
|
||||
" -R, --remove remove old package file from disk after updating "
|
||||
"database\\n"
|
||||
msgstr ""
|
||||
"-R, --remove rimuove il vecchio pacchetto dal disco dopo l'aggiornamento del "
|
||||
"database\\n"
|
||||
|
@ -953,9 +957,9 @@ msgstr "Uso: repo-remove [opzioni] <path-to-db> <packagename> ...\\n"
|
|||
|
||||
#: scripts/repo-add.sh.in:71
|
||||
msgid ""
|
||||
"repo-remove will update a package database by removing the package name"
|
||||
"\\nspecified on the command line from the given repo database. Multiple"
|
||||
"\\npackages to remove can be specified on the command line.\\n"
|
||||
"repo-remove will update a package database by removing the package "
|
||||
"name\\nspecified on the command line from the given repo database. "
|
||||
"Multiple\\npackages to remove can be specified on the command line.\\n"
|
||||
msgstr ""
|
||||
"repo-remove aggiornerà il database di un pacchetto, rimuovendo il nome del "
|
||||
"pacchetto dal database del repository,\\nspecificato dalla linea di comando. "
|
||||
|
@ -987,8 +991,8 @@ msgstr ""
|
|||
#: scripts/repo-add.sh.in:85
|
||||
msgid " -v, --verify verify database's signature before update\\n"
|
||||
msgstr ""
|
||||
" -v, --verify verifica la firma del database prima dell'aggiornamento"
|
||||
"\\n"
|
||||
" -v, --verify verifica la firma del database prima "
|
||||
"dell'aggiornamento\\n"
|
||||
|
||||
#: scripts/repo-add.sh.in:86
|
||||
msgid ""
|
||||
|
@ -1301,7 +1305,7 @@ msgstr "%s non dovrebbe essere un array"
|
|||
#: scripts/libmakepkg/lint_config/variable.sh.in:66
|
||||
msgid "PACKAGER should have the format 'Example Name <email@address.invalid>'"
|
||||
msgstr ""
|
||||
"PACKAGER deve essere nel formato 'Nome d'esempio <indirizzo@email.nonvalido>'"
|
||||
"PACKAGER deve essere nel formato 'Nome d'esempio <email@address.invalid>'"
|
||||
|
||||
#: scripts/libmakepkg/lint_package.sh.in:41
|
||||
msgid "Checking for packaging issues..."
|
||||
|
@ -1382,7 +1386,7 @@ msgstr "%s non può iniziare con un punto."
|
|||
#: scripts/libmakepkg/lint_pkgbuild/pkgname.sh.in:49
|
||||
#: scripts/libmakepkg/lint_pkgbuild/pkgver.sh.in:46
|
||||
msgid "%s may only contain ascii characters."
|
||||
msgstr "%s può contenere solo caratteri ASCII."
|
||||
msgstr "%s può contenere solo caratteri ascii."
|
||||
|
||||
#: scripts/libmakepkg/lint_pkgbuild/pkgrel.sh.in:40
|
||||
msgid "%s must be of the form 'integer[.integer]', not %s."
|
||||
|
@ -1502,7 +1506,7 @@ msgstr "Impossibile aggiornare il repository %s %s"
|
|||
#: scripts/libmakepkg/source/git.sh.in:121
|
||||
msgid "Failure while checking out version %s, the git tag has been forged"
|
||||
msgstr ""
|
||||
"Errore durante il checkout della version %s, il tag Git è stato falsificato"
|
||||
"Errore durante il controllo della versione %s, il tag git è stato falsificato"
|
||||
|
||||
#: scripts/libmakepkg/source/local.sh.in:39
|
||||
msgid "%s was not found in the build directory and is not a URL."
|
||||
|
|
|
@ -11,9 +11,9 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Arch Linux Pacman package manager\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.archlinux.org/index.php?project=3\n"
|
||||
"POT-Creation-Date: 2021-09-04 16:15+1000\n"
|
||||
"PO-Revision-Date: 2021-04-25 14:44+0000\n"
|
||||
"Last-Translator: kusakata\n"
|
||||
"POT-Creation-Date: 2022-09-26 21:09+1000\n"
|
||||
"PO-Revision-Date: 2011-08-08 22:35+0000\n"
|
||||
"Last-Translator: Takuro Onoue <kusanaginoturugi@gmail.com>, 2021\n"
|
||||
"Language-Team: Japanese (http://www.transifex.com/toofishes/archlinux-pacman/"
|
||||
"language/ja/)\n"
|
||||
"Language: ja\n"
|
||||
|
@ -667,8 +667,8 @@ msgstr " --lsign-key 指定された keyid に署名"
|
|||
|
||||
#: scripts/pacman-key.sh.in:77
|
||||
msgid ""
|
||||
" --populate Reload the default keys from the (given) keyrings"
|
||||
"\\n in '%s'"
|
||||
" --populate Reload the default keys from the (given) "
|
||||
"keyrings\\n in '%s'"
|
||||
msgstr ""
|
||||
" --populate (指定された) キーリングからデフォルトキーをリロー"
|
||||
"ド\\n キーリングのディレクトリ: '%s'"
|
||||
|
@ -686,16 +686,16 @@ msgstr " --verbose 追加情報を表示"
|
|||
|
||||
#: scripts/pacman-key.sh.in:83
|
||||
msgid ""
|
||||
" --config <file> Use an alternate config file (instead of"
|
||||
"\\n '%s')"
|
||||
" --config <file> Use an alternate config file (instead "
|
||||
"of\\n '%s')"
|
||||
msgstr ""
|
||||
" --config <file> 指定された設定ファイルを使う (デフォルトは"
|
||||
"\\n '%s')"
|
||||
|
||||
#: scripts/pacman-key.sh.in:85
|
||||
msgid ""
|
||||
" --gpgdir <dir> Set an alternate directory for GnuPG (instead"
|
||||
"\\n of '%s')"
|
||||
" --gpgdir <dir> Set an alternate directory for GnuPG "
|
||||
"(instead\\n of '%s')"
|
||||
msgstr ""
|
||||
" --gpgdir <dir> GnuPG のディレクトリを指定する (デフォルトは"
|
||||
"\\n '%s')"
|
||||
|
@ -916,8 +916,8 @@ msgstr " -n, --new データベースにないパッケージのみを
|
|||
|
||||
#: scripts/repo-add.sh.in:66
|
||||
msgid ""
|
||||
" -R, --remove remove old package file from disk after updating database"
|
||||
"\\n"
|
||||
" -R, --remove remove old package file from disk after updating "
|
||||
"database\\n"
|
||||
msgstr ""
|
||||
" -R, --remove データベースの更新後に古いパッケージファイルをディスクか"
|
||||
"ら削除\\n"
|
||||
|
@ -936,9 +936,9 @@ msgstr "使用方法: repo-remove [オプション] <path-to-db> <packagename> .
|
|||
|
||||
#: scripts/repo-add.sh.in:71
|
||||
msgid ""
|
||||
"repo-remove will update a package database by removing the package name"
|
||||
"\\nspecified on the command line from the given repo database. Multiple"
|
||||
"\\npackages to remove can be specified on the command line.\\n"
|
||||
"repo-remove will update a package database by removing the package "
|
||||
"name\\nspecified on the command line from the given repo database. "
|
||||
"Multiple\\npackages to remove can be specified on the command line.\\n"
|
||||
msgstr ""
|
||||
"repo-remove はコマンドラインから指定されたパッケージ名をデータベースから\\n削"
|
||||
"除してパッケージデータベースを更新します。一度に複数の\\nパッケージをコマンド"
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
#
|
||||
# Translators:
|
||||
# Seong-ho Cho <darkcircle.0426@gmail.com>, 2013
|
||||
# 배태길 <esrevinu@gmail.com>, 2016-2019
|
||||
# 배태길 <esrevinu@gmail.com>, 2016-2019,2021
|
||||
# Seong-ho Cho <darkcircle.0426@gmail.com>, 2013,2015
|
||||
# Sung jin Gang <>, 2012
|
||||
# Thomas Sungjin Kang <potopro@gmail.com>, 2012
|
||||
|
@ -18,9 +18,9 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Arch Linux Pacman package manager\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.archlinux.org/index.php?project=3\n"
|
||||
"POT-Creation-Date: 2021-09-04 16:15+1000\n"
|
||||
"PO-Revision-Date: 2021-04-23 00:41+0000\n"
|
||||
"Last-Translator: Allan McRae <allan@archlinux.org>\n"
|
||||
"POT-Creation-Date: 2022-09-26 21:09+1000\n"
|
||||
"PO-Revision-Date: 2011-08-08 22:35+0000\n"
|
||||
"Last-Translator: 배태길 <esrevinu@gmail.com>, 2016-2019,2021\n"
|
||||
"Language-Team: Korean (http://www.transifex.com/toofishes/archlinux-pacman/"
|
||||
"language/ko/)\n"
|
||||
"Language: ko\n"
|
||||
|
@ -659,8 +659,8 @@ msgstr " --lsign-key 지정한 키 ID로 로컬 서명합니다"
|
|||
|
||||
#: scripts/pacman-key.sh.in:77
|
||||
msgid ""
|
||||
" --populate Reload the default keys from the (given) keyrings"
|
||||
"\\n in '%s'"
|
||||
" --populate Reload the default keys from the (given) "
|
||||
"keyrings\\n in '%s'"
|
||||
msgstr ""
|
||||
" --populate '%s'의(주어진) 키 모음에서 기본값을 다시 불러옵니"
|
||||
"다"
|
||||
|
@ -673,18 +673,18 @@ msgstr ""
|
|||
|
||||
#: scripts/pacman-key.sh.in:80
|
||||
msgid " --verbose Show extra information"
|
||||
msgstr ""
|
||||
msgstr " --verbose 추가 정보 표시"
|
||||
|
||||
#: scripts/pacman-key.sh.in:83
|
||||
msgid ""
|
||||
" --config <file> Use an alternate config file (instead of"
|
||||
"\\n '%s')"
|
||||
" --config <file> Use an alternate config file (instead "
|
||||
"of\\n '%s')"
|
||||
msgstr " --config <파일> ('%s' 대신) 지정한 설정 파일을 사용합니다"
|
||||
|
||||
#: scripts/pacman-key.sh.in:85
|
||||
msgid ""
|
||||
" --gpgdir <dir> Set an alternate directory for GnuPG (instead"
|
||||
"\\n of '%s')"
|
||||
" --gpgdir <dir> Set an alternate directory for GnuPG "
|
||||
"(instead\\n of '%s')"
|
||||
msgstr ""
|
||||
" --gpgdir <디렉터리> ('%s' 대신) GnuPG에서 사용할 대체 디렉터리를"
|
||||
"\\n 설정합니다."
|
||||
|
@ -711,7 +711,7 @@ msgstr "키 이름이 애매모호합니다:"
|
|||
|
||||
#: scripts/pacman-key.sh.in:148
|
||||
msgid "Generating pacman master key. This may take some time."
|
||||
msgstr ""
|
||||
msgstr "Pacman 마스터 키를 생성 중입니다. 시간이 걸릴 수 있습니다."
|
||||
|
||||
#: scripts/pacman-key.sh.in:185
|
||||
msgid "The key identified by %s could not be found locally."
|
||||
|
@ -720,11 +720,11 @@ msgstr "%s로 식별되는 키를 로컬에서 찾을 수 없습니다."
|
|||
#: scripts/pacman-key.sh.in:196 scripts/pacman-key.sh.in:208
|
||||
#: scripts/libmakepkg/integrity/verify_signature.sh.in:204
|
||||
msgid "_"
|
||||
msgstr ""
|
||||
msgstr "_"
|
||||
|
||||
#: scripts/pacman-key.sh.in:208
|
||||
msgid "flags"
|
||||
msgstr ""
|
||||
msgstr "flags"
|
||||
|
||||
#: scripts/pacman-key.sh.in:263
|
||||
msgid "You do not have sufficient permissions to read the %s keyring."
|
||||
|
@ -776,7 +776,7 @@ msgstr "키 %s 비활성화하는 중..."
|
|||
|
||||
#: scripts/pacman-key.sh.in:381
|
||||
msgid "Disabled %s keys."
|
||||
msgstr ""
|
||||
msgstr "%s 개의 키를 비활성화함."
|
||||
|
||||
#: scripts/pacman-key.sh.in:388
|
||||
msgid "A specified keyfile could not be added to the keyring."
|
||||
|
@ -824,7 +824,7 @@ msgstr "%s를 자체적으로 서명할 수 없습니다."
|
|||
|
||||
#: scripts/pacman-key.sh.in:509
|
||||
msgid "Locally signed %s keys."
|
||||
msgstr ""
|
||||
msgstr "%s 개의 키를 로컬 서명함."
|
||||
|
||||
#: scripts/pacman-key.sh.in:532
|
||||
msgid "Remote key not fetched correctly from WKD or keyserver."
|
||||
|
@ -836,7 +836,7 @@ msgstr "원격 키를 키 서버에서 올바르게 가져올 수 없습니다."
|
|||
|
||||
#: scripts/pacman-key.sh.in:569
|
||||
msgid "Could not update key: %s"
|
||||
msgstr ""
|
||||
msgstr "키를 업데이트할 수 없었음: %s"
|
||||
|
||||
#: scripts/pacman-key.sh.in:590 scripts/repo-add.sh.in:265
|
||||
msgid "Cannot use armored signatures for packages: %s"
|
||||
|
@ -905,8 +905,8 @@ msgstr " -n, --new 데이터베이스에 없는 꾸러미만 추가합
|
|||
|
||||
#: scripts/repo-add.sh.in:66
|
||||
msgid ""
|
||||
" -R, --remove remove old package file from disk after updating database"
|
||||
"\\n"
|
||||
" -R, --remove remove old package file from disk after updating "
|
||||
"database\\n"
|
||||
msgstr ""
|
||||
" -R, --remove 데이터베이스 갱신 후 디스크로부터 오래된 꾸러미 파일 삭제"
|
||||
"\\n"
|
||||
|
@ -925,9 +925,9 @@ msgstr "사용법: repo-remove [옵션] <DB 경로> <꾸러미 이름> ...\\n"
|
|||
|
||||
#: scripts/repo-add.sh.in:71
|
||||
msgid ""
|
||||
"repo-remove will update a package database by removing the package name"
|
||||
"\\nspecified on the command line from the given repo database. Multiple"
|
||||
"\\npackages to remove can be specified on the command line.\\n"
|
||||
"repo-remove will update a package database by removing the package "
|
||||
"name\\nspecified on the command line from the given repo database. "
|
||||
"Multiple\\npackages to remove can be specified on the command line.\\n"
|
||||
msgstr ""
|
||||
"repo-remove는 명령줄 상에서 repo 데이터베이스에 주어진 꾸러미 이름을 지우고"
|
||||
"\\n꾸러미 데이터베이스를 업데이트합니다. 여러 꾸러미를 추가하려면 명령줄에서"
|
||||
|
|
|
@ -19,9 +19,9 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Arch Linux Pacman package manager\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.archlinux.org/index.php?project=3\n"
|
||||
"POT-Creation-Date: 2021-09-04 16:15+1000\n"
|
||||
"PO-Revision-Date: 2021-04-24 13:32+0000\n"
|
||||
"Last-Translator: Moo\n"
|
||||
"POT-Creation-Date: 2022-09-26 21:09+1000\n"
|
||||
"PO-Revision-Date: 2011-08-08 22:35+0000\n"
|
||||
"Last-Translator: Dan McGee <dpmcgee@gmail.com>, 2011\n"
|
||||
"Language-Team: Lithuanian (http://www.transifex.com/toofishes/archlinux-"
|
||||
"pacman/language/lt/)\n"
|
||||
"Language: lt\n"
|
||||
|
@ -674,8 +674,8 @@ msgstr " --lsign-key Pasirašyti lokaliai nurodytą keyid"
|
|||
|
||||
#: scripts/pacman-key.sh.in:77
|
||||
msgid ""
|
||||
" --populate Reload the default keys from the (given) keyrings"
|
||||
"\\n in '%s'"
|
||||
" --populate Reload the default keys from the (given) "
|
||||
"keyrings\\n in '%s'"
|
||||
msgstr ""
|
||||
" --populate Perkrauti numatytus raktus iš (duotosios) "
|
||||
"raktinės\\n „%s“"
|
||||
|
@ -693,19 +693,19 @@ msgstr " --verbose Rodyti papildomą informaciją"
|
|||
|
||||
#: scripts/pacman-key.sh.in:83
|
||||
msgid ""
|
||||
" --config <file> Use an alternate config file (instead of"
|
||||
"\\n '%s')"
|
||||
" --config <file> Use an alternate config file (instead "
|
||||
"of\\n '%s')"
|
||||
msgstr ""
|
||||
" --config <failas> Naudoti alternatyvų konfigūracijos failą "
|
||||
"(vietoj\\n „%s“)"
|
||||
|
||||
#: scripts/pacman-key.sh.in:85
|
||||
msgid ""
|
||||
" --gpgdir <dir> Set an alternate directory for GnuPG (instead"
|
||||
"\\n of '%s')"
|
||||
" --gpgdir <dir> Set an alternate directory for GnuPG "
|
||||
"(instead\\n of '%s')"
|
||||
msgstr ""
|
||||
" --gpgdir <dir> Nurodyti alternatyvų GnuPG aplanką (vietoj"
|
||||
"\\n „%s“)"
|
||||
" --gpgdir <dir> Nurodyti alternatyvų GnuPG aplanką "
|
||||
"(vietoj\\n „%s“)"
|
||||
|
||||
#: scripts/pacman-key.sh.in:87
|
||||
msgid " --keyserver <server-url> Specify a keyserver to use if necessary"
|
||||
|
@ -924,8 +924,8 @@ msgstr ""
|
|||
|
||||
#: scripts/repo-add.sh.in:66
|
||||
msgid ""
|
||||
" -R, --remove remove old package file from disk after updating database"
|
||||
"\\n"
|
||||
" -R, --remove remove old package file from disk after updating "
|
||||
"database\\n"
|
||||
msgstr ""
|
||||
" -R, --remove atnaujinus duomenų bazę, šalinti seną paketo failą iš "
|
||||
"disko\\n"
|
||||
|
@ -944,9 +944,9 @@ msgstr "Naudojimas: repo-remove [parinktys] <path-to-db> <packagename> ...\\n"
|
|||
|
||||
#: scripts/repo-add.sh.in:71
|
||||
msgid ""
|
||||
"repo-remove will update a package database by removing the package name"
|
||||
"\\nspecified on the command line from the given repo database. Multiple"
|
||||
"\\npackages to remove can be specified on the command line.\\n"
|
||||
"repo-remove will update a package database by removing the package "
|
||||
"name\\nspecified on the command line from the given repo database. "
|
||||
"Multiple\\npackages to remove can be specified on the command line.\\n"
|
||||
msgstr ""
|
||||
"repo-remove atnaujins paketų duomenų bazę pašalindamas\\npaketą nurodytą "
|
||||
"komandinėj eilutėj iš nurodytos repo duomenų bazės. Gali\\nbūti nurodyti "
|
||||
|
@ -989,8 +989,8 @@ msgstr ""
|
|||
msgid ""
|
||||
"Example: repo-add /path/to/repo.db.tar.gz pacman-3.0.0-1-i686.pkg.tar.gz\\n"
|
||||
msgstr ""
|
||||
"Pavyzdys: repo-add /kelias/iki/repo.db.tar.gz pacman-3.0.0-1-i686.pkg.tar.gz"
|
||||
"\\n"
|
||||
"Pavyzdys: repo-add /kelias/iki/repo.db.tar.gz pacman-3.0.0-1-i686.pkg.tar."
|
||||
"gz\\n"
|
||||
|
||||
#: scripts/repo-add.sh.in:92
|
||||
msgid "Example: repo-remove /path/to/repo.db.tar.gz kernel26\\n"
|
||||
|
|
|
@ -12,9 +12,9 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Arch Linux Pacman package manager\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.archlinux.org/index.php?project=3\n"
|
||||
"POT-Creation-Date: 2021-09-04 16:15+1000\n"
|
||||
"PO-Revision-Date: 2021-05-24 20:22+0000\n"
|
||||
"Last-Translator: Alexander F. Rødseth <rodseth@gmail.com>\n"
|
||||
"POT-Creation-Date: 2022-09-26 21:09+1000\n"
|
||||
"PO-Revision-Date: 2011-08-08 22:35+0000\n"
|
||||
"Last-Translator: Harald H. <haarektrans@gmail.com>, 2016\n"
|
||||
"Language-Team: Norwegian Bokmål (http://www.transifex.com/toofishes/"
|
||||
"archlinux-pacman/language/nb/)\n"
|
||||
"Language: nb\n"
|
||||
|
@ -655,8 +655,8 @@ msgstr " --lsign-key Signér den gitte nøkkel IDen lokalt"
|
|||
|
||||
#: scripts/pacman-key.sh.in:77
|
||||
msgid ""
|
||||
" --populate Reload the default keys from the (given) keyrings"
|
||||
"\\n in '%s'"
|
||||
" --populate Reload the default keys from the (given) "
|
||||
"keyrings\\n in '%s'"
|
||||
msgstr ""
|
||||
" --populate Last standardnøkler fra (angitte) nøkkelknipper "
|
||||
"på nytt\\n i '%s'"
|
||||
|
@ -674,19 +674,19 @@ msgstr " --verbose Vis ekstra informasjon"
|
|||
|
||||
#: scripts/pacman-key.sh.in:83
|
||||
msgid ""
|
||||
" --config <file> Use an alternate config file (instead of"
|
||||
"\\n '%s')"
|
||||
" --config <file> Use an alternate config file (instead "
|
||||
"of\\n '%s')"
|
||||
msgstr ""
|
||||
" --config <fil> Bruk en annen konfigurasjonsfil (istedenfor"
|
||||
"\\n '%s')"
|
||||
" --config <fil> Bruk en annen konfigurasjonsfil "
|
||||
"(istedenfor\\n '%s')"
|
||||
|
||||
#: scripts/pacman-key.sh.in:85
|
||||
msgid ""
|
||||
" --gpgdir <dir> Set an alternate directory for GnuPG (instead"
|
||||
"\\n of '%s')"
|
||||
" --gpgdir <dir> Set an alternate directory for GnuPG "
|
||||
"(instead\\n of '%s')"
|
||||
msgstr ""
|
||||
" --gpgdir <mappe> Bruk en annen mappe for GnuPG (istedenfor"
|
||||
"\\n '%s')"
|
||||
" --gpgdir <mappe> Bruk en annen mappe for GnuPG "
|
||||
"(istedenfor\\n '%s')"
|
||||
|
||||
#: scripts/pacman-key.sh.in:87
|
||||
msgid " --keyserver <server-url> Specify a keyserver to use if necessary"
|
||||
|
@ -903,13 +903,13 @@ msgstr "Tilvalg:\\n"
|
|||
msgid ""
|
||||
" -n, --new only add packages that are not already in the database\\n"
|
||||
msgstr ""
|
||||
" -n, --new legg bare til pakker som ikke finnes i databasen fra før"
|
||||
"\\n"
|
||||
" -n, --new legg bare til pakker som ikke finnes i databasen fra "
|
||||
"før\\n"
|
||||
|
||||
#: scripts/repo-add.sh.in:66
|
||||
msgid ""
|
||||
" -R, --remove remove old package file from disk after updating database"
|
||||
"\\n"
|
||||
" -R, --remove remove old package file from disk after updating "
|
||||
"database\\n"
|
||||
msgstr ""
|
||||
" -R, --remove fjern den gamle pakkefilen når databasen har blitt "
|
||||
"oppdatert\\n"
|
||||
|
@ -928,9 +928,9 @@ msgstr "Bruk: repo-remove [tilvalg] <path-to-db> <packagename> ...\\n"
|
|||
|
||||
#: scripts/repo-add.sh.in:71
|
||||
msgid ""
|
||||
"repo-remove will update a package database by removing the package name"
|
||||
"\\nspecified on the command line from the given repo database. Multiple"
|
||||
"\\npackages to remove can be specified on the command line.\\n"
|
||||
"repo-remove will update a package database by removing the package "
|
||||
"name\\nspecified on the command line from the given repo database. "
|
||||
"Multiple\\npackages to remove can be specified on the command line.\\n"
|
||||
msgstr ""
|
||||
"repo-remove kan oppdatere en pakkedatabase ved å fjerne pakkenavnet \\nsom "
|
||||
"angis på kommandolinjen, fra den gitte pakkedatabasen. Flere\\npakker kan "
|
||||
|
|
|
@ -24,9 +24,9 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Arch Linux Pacman package manager\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.archlinux.org/index.php?project=3\n"
|
||||
"POT-Creation-Date: 2021-09-04 16:15+1000\n"
|
||||
"PO-Revision-Date: 2021-08-03 21:30+0000\n"
|
||||
"Last-Translator: Philip Goto <philip.goto@gmail.com>\n"
|
||||
"POT-Creation-Date: 2022-09-26 21:09+1000\n"
|
||||
"PO-Revision-Date: 2011-08-08 22:35+0000\n"
|
||||
"Last-Translator: zenlord <zenlord@gmail.com>, 2015,2018\n"
|
||||
"Language-Team: Dutch (http://www.transifex.com/toofishes/archlinux-pacman/"
|
||||
"language/nl/)\n"
|
||||
"Language: nl\n"
|
||||
|
@ -671,8 +671,8 @@ msgstr "--lsign-key Onderteken de gespecificeerde sleutelid lokaal"
|
|||
|
||||
#: scripts/pacman-key.sh.in:77
|
||||
msgid ""
|
||||
" --populate Reload the default keys from the (given) keyrings"
|
||||
"\\n in '%s'"
|
||||
" --populate Reload the default keys from the (given) "
|
||||
"keyrings\\n in '%s'"
|
||||
msgstr ""
|
||||
"--populate Herlaad de standaard sleutels van de (gegeven) sleutelbossen\\n "
|
||||
"in '%s'"
|
||||
|
@ -690,16 +690,16 @@ msgstr " --verbose Extra informatie tonen"
|
|||
|
||||
#: scripts/pacman-key.sh.in:83
|
||||
msgid ""
|
||||
" --config <file> Use an alternate config file (instead of"
|
||||
"\\n '%s')"
|
||||
" --config <file> Use an alternate config file (instead "
|
||||
"of\\n '%s')"
|
||||
msgstr ""
|
||||
"--config <bestand> Gebruik een alternatief configuratiebestand (in plaats van"
|
||||
"\\n '%s')"
|
||||
"--config <bestand> Gebruik een alternatief configuratiebestand (in plaats "
|
||||
"van\\n '%s')"
|
||||
|
||||
#: scripts/pacman-key.sh.in:85
|
||||
msgid ""
|
||||
" --gpgdir <dir> Set an alternate directory for GnuPG (instead"
|
||||
"\\n of '%s')"
|
||||
" --gpgdir <dir> Set an alternate directory for GnuPG "
|
||||
"(instead\\n of '%s')"
|
||||
msgstr ""
|
||||
"--gpgdir <map> Stel een alternatieve map in voor GnuPG (in plaats van\\n "
|
||||
"'%s')"
|
||||
|
@ -929,8 +929,8 @@ msgstr ""
|
|||
|
||||
#: scripts/repo-add.sh.in:66
|
||||
msgid ""
|
||||
" -R, --remove remove old package file from disk after updating database"
|
||||
"\\n"
|
||||
" -R, --remove remove old package file from disk after updating "
|
||||
"database\\n"
|
||||
msgstr ""
|
||||
"-R, --remove verwijder oud pakket van harde schijf nadat de database is "
|
||||
"bijgewerkt\\n"
|
||||
|
@ -949,9 +949,9 @@ msgstr "Gebruik: repo-remove [opties] <path-to-db> <packagename> ...\\n"
|
|||
|
||||
#: scripts/repo-add.sh.in:71
|
||||
msgid ""
|
||||
"repo-remove will update a package database by removing the package name"
|
||||
"\\nspecified on the command line from the given repo database. Multiple"
|
||||
"\\npackages to remove can be specified on the command line.\\n"
|
||||
"repo-remove will update a package database by removing the package "
|
||||
"name\\nspecified on the command line from the given repo database. "
|
||||
"Multiple\\npackages to remove can be specified on the command line.\\n"
|
||||
msgstr ""
|
||||
"repo-remove zal een pakketdatabase bijwerkendoor de pakketnaam\\zoals "
|
||||
"gespecificeerd op de cli van die repo database. Meerdere\\npakketten om te "
|
||||
|
|
|
@ -8,7 +8,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: pacman-scripts\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.archlinux.org/index.php?project=3\n"
|
||||
"POT-Creation-Date: 2021-09-04 16:15+1000\n"
|
||||
"POT-Creation-Date: 2022-09-26 21:09+1000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
@ -629,8 +629,8 @@ msgstr ""
|
|||
|
||||
#: scripts/pacman-key.sh.in:77
|
||||
msgid ""
|
||||
" --populate Reload the default keys from the (given) keyrings"
|
||||
"\\n in '%s'"
|
||||
" --populate Reload the default keys from the (given) "
|
||||
"keyrings\\n in '%s'"
|
||||
msgstr ""
|
||||
|
||||
#: scripts/pacman-key.sh.in:79
|
||||
|
@ -644,14 +644,14 @@ msgstr ""
|
|||
|
||||
#: scripts/pacman-key.sh.in:83
|
||||
msgid ""
|
||||
" --config <file> Use an alternate config file (instead of"
|
||||
"\\n '%s')"
|
||||
" --config <file> Use an alternate config file (instead "
|
||||
"of\\n '%s')"
|
||||
msgstr ""
|
||||
|
||||
#: scripts/pacman-key.sh.in:85
|
||||
msgid ""
|
||||
" --gpgdir <dir> Set an alternate directory for GnuPG (instead"
|
||||
"\\n of '%s')"
|
||||
" --gpgdir <dir> Set an alternate directory for GnuPG "
|
||||
"(instead\\n of '%s')"
|
||||
msgstr ""
|
||||
|
||||
#: scripts/pacman-key.sh.in:87
|
||||
|
@ -868,8 +868,8 @@ msgstr ""
|
|||
|
||||
#: scripts/repo-add.sh.in:66
|
||||
msgid ""
|
||||
" -R, --remove remove old package file from disk after updating database"
|
||||
"\\n"
|
||||
" -R, --remove remove old package file from disk after updating "
|
||||
"database\\n"
|
||||
msgstr ""
|
||||
|
||||
#: scripts/repo-add.sh.in:67
|
||||
|
@ -884,9 +884,9 @@ msgstr ""
|
|||
|
||||
#: scripts/repo-add.sh.in:71
|
||||
msgid ""
|
||||
"repo-remove will update a package database by removing the package name"
|
||||
"\\nspecified on the command line from the given repo database. Multiple"
|
||||
"\\npackages to remove can be specified on the command line.\\n"
|
||||
"repo-remove will update a package database by removing the package "
|
||||
"name\\nspecified on the command line from the given repo database. "
|
||||
"Multiple\\npackages to remove can be specified on the command line.\\n"
|
||||
msgstr ""
|
||||
|
||||
#: scripts/repo-add.sh.in:78
|
||||
|
|
|
@ -26,7 +26,7 @@
|
|||
# Michal Plichta <mplichta@gmail.com>, 2013
|
||||
# Michal Plichta <mplichta@gmail.com>, 2013
|
||||
# megamann, 2015-2016
|
||||
# Piotr Strębski <strebski@gmail.com>, 2017-2018
|
||||
# Piotr Strębski <strebski@gmail.com>, 2017-2018,2022
|
||||
# Piotr Strębski <strebski@gmail.com>, 2013-2014,2017
|
||||
# Sebastian Jakubiak, 2019
|
||||
# Sebastian Jakubiak, 2019
|
||||
|
@ -35,18 +35,18 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Arch Linux Pacman package manager\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.archlinux.org/index.php?project=3\n"
|
||||
"POT-Creation-Date: 2021-09-04 16:15+1000\n"
|
||||
"PO-Revision-Date: 2021-04-23 00:41+0000\n"
|
||||
"Last-Translator: Allan McRae <allan@archlinux.org>\n"
|
||||
"POT-Creation-Date: 2022-09-26 21:09+1000\n"
|
||||
"PO-Revision-Date: 2011-08-08 22:35+0000\n"
|
||||
"Last-Translator: Piotr Strębski <strebski@gmail.com>, 2017-2018,2022\n"
|
||||
"Language-Team: Polish (http://www.transifex.com/toofishes/archlinux-pacman/"
|
||||
"language/pl/)\n"
|
||||
"Language: pl\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n"
|
||||
"%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n"
|
||||
"%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && "
|
||||
"(n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && "
|
||||
"n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n"
|
||||
|
||||
#: scripts/makepkg.sh.in:139
|
||||
msgid "Cleaning up..."
|
||||
|
@ -241,7 +241,7 @@ msgstr "Grupa pakietów została już zbudowana. (użyj %s, aby wymusić)"
|
|||
|
||||
#: scripts/makepkg.sh.in:913
|
||||
msgid "Part of the package group has already been built. (use %s to overwrite)"
|
||||
msgstr "Część z pakietów w grupie została już zbudowana."
|
||||
msgstr ""
|
||||
|
||||
#: scripts/makepkg.sh.in:964
|
||||
msgid "Make packages compatible for use with pacman"
|
||||
|
@ -319,7 +319,7 @@ msgstr " -R, --repackage Przepakuj zawartość pakietu bez ponownego budowania
|
|||
|
||||
#: scripts/makepkg.sh.in:984
|
||||
msgid " -s, --syncdeps Install missing dependencies with %s"
|
||||
msgstr " -s, --syncdeps Zainstaluj brakujące zalezności"
|
||||
msgstr ""
|
||||
|
||||
#: scripts/makepkg.sh.in:985
|
||||
msgid ""
|
||||
|
@ -685,8 +685,8 @@ msgstr "--lsign-key Lokalne oznaczenie określonego klucza identyfikacyjnego"
|
|||
|
||||
#: scripts/pacman-key.sh.in:77
|
||||
msgid ""
|
||||
" --populate Reload the default keys from the (given) keyrings"
|
||||
"\\n in '%s'"
|
||||
" --populate Reload the default keys from the (given) "
|
||||
"keyrings\\n in '%s'"
|
||||
msgstr ""
|
||||
"--populate Odświeżanie domyślnych kluczy z (podanego) zbioru kluczy\\n w '%s'"
|
||||
|
||||
|
@ -701,16 +701,16 @@ msgstr ""
|
|||
|
||||
#: scripts/pacman-key.sh.in:83
|
||||
msgid ""
|
||||
" --config <file> Use an alternate config file (instead of"
|
||||
"\\n '%s')"
|
||||
" --config <file> Use an alternate config file (instead "
|
||||
"of\\n '%s')"
|
||||
msgstr ""
|
||||
" --config <plik> Użycie alternatywnego pliku konfiguracji (zamiast"
|
||||
"\\n '%s')"
|
||||
" --config <plik> Użycie alternatywnego pliku konfiguracji "
|
||||
"(zamiast\\n '%s')"
|
||||
|
||||
#: scripts/pacman-key.sh.in:85
|
||||
msgid ""
|
||||
" --gpgdir <dir> Set an alternate directory for GnuPG (instead"
|
||||
"\\n of '%s')"
|
||||
" --gpgdir <dir> Set an alternate directory for GnuPG "
|
||||
"(instead\\n of '%s')"
|
||||
msgstr ""
|
||||
" --gpgdir <katalog> Użycie alternatywnego katalogu dla GnuPG "
|
||||
"(zamiast\\n '%s')"
|
||||
|
@ -737,7 +737,7 @@ msgstr "Nazwa klucza jest wieloznaczna:"
|
|||
|
||||
#: scripts/pacman-key.sh.in:148
|
||||
msgid "Generating pacman master key. This may take some time."
|
||||
msgstr ""
|
||||
msgstr "Generowanie klucza głównego pacmana. To może zająć trochę czasu."
|
||||
|
||||
#: scripts/pacman-key.sh.in:185
|
||||
msgid "The key identified by %s could not be found locally."
|
||||
|
@ -862,7 +862,7 @@ msgstr "Nie udało się pobrać klucza z keyservera."
|
|||
|
||||
#: scripts/pacman-key.sh.in:569
|
||||
msgid "Could not update key: %s"
|
||||
msgstr ""
|
||||
msgstr "Nie udało się zaktualizować klucza: %s"
|
||||
|
||||
#: scripts/pacman-key.sh.in:590 scripts/repo-add.sh.in:265
|
||||
msgid "Cannot use armored signatures for packages: %s"
|
||||
|
@ -932,8 +932,8 @@ msgstr "-n, --new dodaje tylko te pakiety, które nie są jeszcze w bazie\\n"
|
|||
|
||||
#: scripts/repo-add.sh.in:66
|
||||
msgid ""
|
||||
" -R, --remove remove old package file from disk after updating database"
|
||||
"\\n"
|
||||
" -R, --remove remove old package file from disk after updating "
|
||||
"database\\n"
|
||||
msgstr ""
|
||||
"-R, --remove usuwanie starego pliku pakietu z dysku podczas aktualizacji "
|
||||
"wpisu bazy danych\\n"
|
||||
|
@ -952,13 +952,13 @@ msgstr "Sposób użycia: repo-remove [opcje] <path-to-db> <packagename> ...\\n"
|
|||
|
||||
#: scripts/repo-add.sh.in:71
|
||||
msgid ""
|
||||
"repo-remove will update a package database by removing the package name"
|
||||
"\\nspecified on the command line from the given repo database. Multiple"
|
||||
"\\npackages to remove can be specified on the command line.\\n"
|
||||
"repo-remove will update a package database by removing the package "
|
||||
"name\\nspecified on the command line from the given repo database. "
|
||||
"Multiple\\npackages to remove can be specified on the command line.\\n"
|
||||
msgstr ""
|
||||
"repo-remove zaktualizuje bazę danych pakietów poprzez usunięcie nazwy pakietu"
|
||||
"\\nokreslonego w wierszu poleceń z danej bazy danych repozytorium.Wiele"
|
||||
"\\npakietów do usunięcia może zostać określone w wierszu poleceń.\\n"
|
||||
"repo-remove zaktualizuje bazę danych pakietów poprzez usunięcie nazwy "
|
||||
"pakietu\\nokreslonego w wierszu poleceń z danej bazy danych repozytorium."
|
||||
"Wiele\\npakietów do usunięcia może zostać określone w wierszu poleceń.\\n"
|
||||
|
||||
#: scripts/repo-add.sh.in:78
|
||||
msgid "Please move along, there is nothing to see here.\\n"
|
||||
|
@ -998,8 +998,8 @@ msgstr ""
|
|||
msgid ""
|
||||
"Example: repo-add /path/to/repo.db.tar.gz pacman-3.0.0-1-i686.pkg.tar.gz\\n"
|
||||
msgstr ""
|
||||
"Przykład: repo-add /ścieżka/do/repo.db.tar.gz pacman-3.0.0-1-i686.pkg.tar.gz"
|
||||
"\\n"
|
||||
"Przykład: repo-add /ścieżka/do/repo.db.tar.gz pacman-3.0.0-1-i686.pkg.tar."
|
||||
"gz\\n"
|
||||
|
||||
#: scripts/repo-add.sh.in:92
|
||||
msgid "Example: repo-remove /path/to/repo.db.tar.gz kernel26\\n"
|
||||
|
|
|
@ -19,16 +19,17 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Arch Linux Pacman package manager\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.archlinux.org/index.php?project=3\n"
|
||||
"POT-Creation-Date: 2021-09-04 16:15+1000\n"
|
||||
"PO-Revision-Date: 2021-04-23 00:41+0000\n"
|
||||
"Last-Translator: Allan McRae <allan@archlinux.org>\n"
|
||||
"POT-Creation-Date: 2022-09-26 21:09+1000\n"
|
||||
"PO-Revision-Date: 2011-08-08 22:35+0000\n"
|
||||
"Last-Translator: Rui <xymarior@yandex.com>, 2019\n"
|
||||
"Language-Team: Portuguese (http://www.transifex.com/toofishes/archlinux-"
|
||||
"pacman/language/pt/)\n"
|
||||
"Language: pt\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % "
|
||||
"1000000 == 0 ? 1 : 2;\n"
|
||||
|
||||
#: scripts/makepkg.sh.in:139
|
||||
msgid "Cleaning up..."
|
||||
|
@ -448,8 +449,8 @@ msgid ""
|
|||
"Running %s as root is not allowed as it can cause permanent,\\ncatastrophic "
|
||||
"damage to your system."
|
||||
msgstr ""
|
||||
"Executar %s como root não é permitido dado que pode causar danos permanentes"
|
||||
"\\n e catastróficos ao seu sistema."
|
||||
"Executar %s como root não é permitido dado que pode causar danos "
|
||||
"permanentes\\n e catastróficos ao seu sistema."
|
||||
|
||||
#: scripts/makepkg.sh.in:1197
|
||||
msgid "Do not use the %s option. This option is only for internal use by %s."
|
||||
|
@ -690,8 +691,8 @@ msgstr " --lsign-key Assinar localmente a keyid especificada"
|
|||
|
||||
#: scripts/pacman-key.sh.in:77
|
||||
msgid ""
|
||||
" --populate Reload the default keys from the (given) keyrings"
|
||||
"\\n in '%s'"
|
||||
" --populate Reload the default keys from the (given) "
|
||||
"keyrings\\n in '%s'"
|
||||
msgstr ""
|
||||
" --populate Recarregar as chaves por omissão a partir dos "
|
||||
"chaveiros\\n em '%s'"
|
||||
|
@ -709,16 +710,16 @@ msgstr ""
|
|||
|
||||
#: scripts/pacman-key.sh.in:83
|
||||
msgid ""
|
||||
" --config <file> Use an alternate config file (instead of"
|
||||
"\\n '%s')"
|
||||
" --config <file> Use an alternate config file (instead "
|
||||
"of\\n '%s')"
|
||||
msgstr ""
|
||||
" --config <ficheiro> Usar um ficheiro de configurações "
|
||||
"alternativo (ao invés de\\n '%s')"
|
||||
|
||||
#: scripts/pacman-key.sh.in:85
|
||||
msgid ""
|
||||
" --gpgdir <dir> Set an alternate directory for GnuPG (instead"
|
||||
"\\n of '%s')"
|
||||
" --gpgdir <dir> Set an alternate directory for GnuPG "
|
||||
"(instead\\n of '%s')"
|
||||
msgstr ""
|
||||
" --gpgdir <diretorio> Definir um diretório alternativo para o "
|
||||
"GnuPG (ao invés\\n de '%s')"
|
||||
|
@ -946,8 +947,8 @@ msgstr ""
|
|||
|
||||
#: scripts/repo-add.sh.in:66
|
||||
msgid ""
|
||||
" -R, --remove remove old package file from disk after updating database"
|
||||
"\\n"
|
||||
" -R, --remove remove old package file from disk after updating "
|
||||
"database\\n"
|
||||
msgstr ""
|
||||
" -R, --remove remove o ficheiro do pacote do disco após atualizar a "
|
||||
"base de dados\\n"
|
||||
|
@ -964,12 +965,12 @@ msgstr ""
|
|||
|
||||
#: scripts/repo-add.sh.in:71
|
||||
msgid ""
|
||||
"repo-remove will update a package database by removing the package name"
|
||||
"\\nspecified on the command line from the given repo database. Multiple"
|
||||
"\\npackages to remove can be specified on the command line.\\n"
|
||||
"repo-remove will update a package database by removing the package "
|
||||
"name\\nspecified on the command line from the given repo database. "
|
||||
"Multiple\\npackages to remove can be specified on the command line.\\n"
|
||||
msgstr ""
|
||||
"repo-remove irá atualizar a base de dados de pacotes ao remover o pacote"
|
||||
"\\nespecificado na linha de comandos da base de dados do repositório. "
|
||||
"repo-remove irá atualizar a base de dados de pacotes ao remover o "
|
||||
"pacote\\nespecificado na linha de comandos da base de dados do repositório. "
|
||||
"Múltiplos\\npacotes a remover podem ser especificados na linha de comandos."
|
||||
"\\n"
|
||||
|
||||
|
@ -993,8 +994,8 @@ msgstr ""
|
|||
#: scripts/repo-add.sh.in:84
|
||||
msgid " -k, --key <key> use the specified key to sign the database\\n"
|
||||
msgstr ""
|
||||
" -k, --key <chave> usar a chave especificada para assinar a base de dados"
|
||||
"\\n"
|
||||
" -k, --key <chave> usar a chave especificada para assinar a base de "
|
||||
"dados\\n"
|
||||
|
||||
#: scripts/repo-add.sh.in:85
|
||||
msgid " -v, --verify verify database's signature before update\\n"
|
||||
|
|
|
@ -13,16 +13,17 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Arch Linux Pacman package manager\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.archlinux.org/index.php?project=3\n"
|
||||
"POT-Creation-Date: 2021-09-04 16:15+1000\n"
|
||||
"PO-Revision-Date: 2021-04-23 08:10+0000\n"
|
||||
"Last-Translator: Rafael Fontenelle <rffontenelle@gmail.com>\n"
|
||||
"POT-Creation-Date: 2022-09-26 21:09+1000\n"
|
||||
"PO-Revision-Date: 2011-08-08 22:35+0000\n"
|
||||
"Last-Translator: Rafael Fontenelle <rafaelff@gnome.org>, 2018\n"
|
||||
"Language-Team: Portuguese (Brazil) (http://www.transifex.com/toofishes/"
|
||||
"archlinux-pacman/language/pt_BR/)\n"
|
||||
"Language: pt_BR\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % "
|
||||
"1000000 == 0 ? 1 : 2;\n"
|
||||
|
||||
#: scripts/makepkg.sh.in:139
|
||||
msgid "Cleaning up..."
|
||||
|
@ -284,15 +285,15 @@ msgstr " -o, --nobuild Apenas baixa e extrai os arquivos"
|
|||
#: scripts/makepkg.sh.in:981
|
||||
msgid " -p <file> Use an alternate build script (instead of '%s')"
|
||||
msgstr ""
|
||||
" -p <arquivo> Usa um script de empacotamento alternativo (ao invés"
|
||||
"\\n de \"%s\")"
|
||||
" -p <arquivo> Usa um script de empacotamento alternativo (ao "
|
||||
"invés\\n de \"%s\")"
|
||||
|
||||
#: scripts/makepkg.sh.in:982
|
||||
msgid ""
|
||||
" -r, --rmdeps Remove installed dependencies after a successful build"
|
||||
msgstr ""
|
||||
" -r, --rmdeps Remove dependências instaladas após uma compilação"
|
||||
"\\n bem-sucedida"
|
||||
" -r, --rmdeps Remove dependências instaladas após uma "
|
||||
"compilação\\n bem-sucedida"
|
||||
|
||||
#: scripts/makepkg.sh.in:983
|
||||
msgid " -R, --repackage Repackage contents of the package without rebuilding"
|
||||
|
@ -316,8 +317,8 @@ msgid ""
|
|||
" --allsource Generate a source-only tarball including downloaded "
|
||||
"sources"
|
||||
msgstr ""
|
||||
" --allsource Gera um tarball somente com os fontes, incluindo os que"
|
||||
"\\n foram baixados"
|
||||
" --allsource Gera um tarball somente com os fontes, incluindo os "
|
||||
"que\\n foram baixados"
|
||||
|
||||
#: scripts/makepkg.sh.in:988
|
||||
msgid " --check Run the %s function in the %s"
|
||||
|
@ -327,8 +328,8 @@ msgstr " --check Executa a função %s no %s"
|
|||
msgid " --config <file> Use an alternate config file (instead of '%s')"
|
||||
msgstr ""
|
||||
" --config <arquivo>\n"
|
||||
" Usa um arquivo de configuração alternativo (ao invés"
|
||||
"\\n de '%s')"
|
||||
" Usa um arquivo de configuração alternativo (ao "
|
||||
"invés\\n de '%s')"
|
||||
|
||||
#: scripts/makepkg.sh.in:990
|
||||
msgid " --holdver Do not update VCS sources"
|
||||
|
@ -340,8 +341,8 @@ msgstr ""
|
|||
msgid ""
|
||||
" --key <key> Specify a key to use for %s signing instead of the default"
|
||||
msgstr ""
|
||||
" --key <chave> Especifica uma chave para ser usada na assinatura %s ao"
|
||||
"\\n invés do padrão"
|
||||
" --key <chave> Especifica uma chave para ser usada na assinatura %s "
|
||||
"ao\\n invés do padrão"
|
||||
|
||||
#: scripts/makepkg.sh.in:992
|
||||
msgid " --noarchive Do not create package archive"
|
||||
|
@ -391,8 +392,8 @@ msgid ""
|
|||
" --verifysource Download source files (if needed) and perform integrity "
|
||||
"checks"
|
||||
msgstr ""
|
||||
" --verifysource Baixa arquivos fontes (se necessário) e realiza"
|
||||
"\\n verificações de integridade"
|
||||
" --verifysource Baixa arquivos fontes (se necessário) e "
|
||||
"realiza\\n verificações de integridade"
|
||||
|
||||
#: scripts/makepkg.sh.in:1004
|
||||
msgid "These options can be passed to %s:"
|
||||
|
@ -608,8 +609,8 @@ msgstr "Operações:"
|
|||
#: scripts/pacman-key.sh.in:63
|
||||
msgid " -a, --add Add the specified keys (empty for stdin)"
|
||||
msgstr ""
|
||||
" -a, --add Adiciona as chaves especificadas"
|
||||
"\\n (vazio, para entrada padrão)"
|
||||
" -a, --add Adiciona as chaves "
|
||||
"especificadas\\n (vazio, para entrada padrão)"
|
||||
|
||||
#: scripts/pacman-key.sh.in:64
|
||||
msgid " -d, --delete Remove the specified keyids"
|
||||
|
@ -623,8 +624,8 @@ msgstr " -e, --export Exporta a keyid especificada ou todas"
|
|||
msgid ""
|
||||
" -f, --finger List fingerprint for specified or all keyids"
|
||||
msgstr ""
|
||||
" -f, --finger Lista a impressão digital da keyid especificada"
|
||||
"\\n ou todas"
|
||||
" -f, --finger Lista a impressão digital da keyid "
|
||||
"especificada\\n ou todas"
|
||||
|
||||
#: scripts/pacman-key.sh.in:67
|
||||
msgid " -l, --list-keys List the specified or all keys"
|
||||
|
@ -649,8 +650,8 @@ msgstr ""
|
|||
msgid ""
|
||||
" --edit-key Present a menu for key management task on keyids"
|
||||
msgstr ""
|
||||
" --edit-key Apresenta um menu para a tarefa de gerenciamento"
|
||||
"\\n de chaves de keyids"
|
||||
" --edit-key Apresenta um menu para a tarefa de "
|
||||
"gerenciamento\\n de chaves de keyids"
|
||||
|
||||
#: scripts/pacman-key.sh.in:72
|
||||
msgid " --import Imports pubring.gpg from dir(s)"
|
||||
|
@ -661,14 +662,14 @@ msgid ""
|
|||
" --import-trustdb Imports ownertrust values from trustdb.gpg in "
|
||||
"dir(s)"
|
||||
msgstr ""
|
||||
" --import-trustdb Importa valores de confiança do proprietário do"
|
||||
"\\n trustdb.gpg nos diretórios"
|
||||
" --import-trustdb Importa valores de confiança do proprietário "
|
||||
"do\\n trustdb.gpg nos diretórios"
|
||||
|
||||
#: scripts/pacman-key.sh.in:74
|
||||
msgid " --init Ensure the keyring is properly initialized"
|
||||
msgstr ""
|
||||
" --init Garante que o chaveiro está inicializado"
|
||||
"\\n corretamente"
|
||||
" --init Garante que o chaveiro está "
|
||||
"inicializado\\n corretamente"
|
||||
|
||||
#: scripts/pacman-key.sh.in:75
|
||||
msgid " --list-sigs List keys and their signatures"
|
||||
|
@ -680,18 +681,18 @@ msgstr " --lsign-key Assina localmente a keyid especificada"
|
|||
|
||||
#: scripts/pacman-key.sh.in:77
|
||||
msgid ""
|
||||
" --populate Reload the default keys from the (given) keyrings"
|
||||
"\\n in '%s'"
|
||||
" --populate Reload the default keys from the (given) "
|
||||
"keyrings\\n in '%s'"
|
||||
msgstr ""
|
||||
" --populate Recarrega as chaves padrões dos chaveiros dados"
|
||||
"\\n em '%s'"
|
||||
" --populate Recarrega as chaves padrões dos chaveiros "
|
||||
"dados\\n em '%s'"
|
||||
|
||||
#: scripts/pacman-key.sh.in:79
|
||||
msgid ""
|
||||
" --refresh-keys Update specified or all keys from a keyserver"
|
||||
msgstr ""
|
||||
" --refresh-keys Atualiza a chave especificada ou todas de um"
|
||||
"\\n servidor de chaves"
|
||||
" --refresh-keys Atualiza a chave especificada ou todas de "
|
||||
"um\\n servidor de chaves"
|
||||
|
||||
#: scripts/pacman-key.sh.in:80
|
||||
msgid " --verbose Show extra information"
|
||||
|
@ -699,16 +700,16 @@ msgstr " --verbose Mostra informações extras"
|
|||
|
||||
#: scripts/pacman-key.sh.in:83
|
||||
msgid ""
|
||||
" --config <file> Use an alternate config file (instead of"
|
||||
"\\n '%s')"
|
||||
" --config <file> Use an alternate config file (instead "
|
||||
"of\\n '%s')"
|
||||
msgstr ""
|
||||
" --config <arquivo> Usa um arquivo de configuração alternativo (ao\n"
|
||||
" invés de '%s')"
|
||||
|
||||
#: scripts/pacman-key.sh.in:85
|
||||
msgid ""
|
||||
" --gpgdir <dir> Set an alternate directory for GnuPG (instead"
|
||||
"\\n of '%s')"
|
||||
" --gpgdir <dir> Set an alternate directory for GnuPG "
|
||||
"(instead\\n of '%s')"
|
||||
msgstr ""
|
||||
" --gpgdir <diretório> Define um diretório alternativo para GnuPG\n"
|
||||
" (invés de '%s')"
|
||||
|
@ -938,11 +939,11 @@ msgstr ""
|
|||
|
||||
#: scripts/repo-add.sh.in:66
|
||||
msgid ""
|
||||
" -R, --remove remove old package file from disk after updating database"
|
||||
"\\n"
|
||||
" -R, --remove remove old package file from disk after updating "
|
||||
"database\\n"
|
||||
msgstr ""
|
||||
" -R, --remove remove o pacote antigo do disco depois de atualizar a"
|
||||
"\\n base de dados\\n"
|
||||
" -R, --remove remove o pacote antigo do disco depois de atualizar "
|
||||
"a\\n base de dados\\n"
|
||||
|
||||
#: scripts/repo-add.sh.in:67
|
||||
msgid ""
|
||||
|
@ -958,14 +959,14 @@ msgstr "Uso: repo-remove [opções] <path-to-db> <packagename> ...\\n"
|
|||
|
||||
#: scripts/repo-add.sh.in:71
|
||||
msgid ""
|
||||
"repo-remove will update a package database by removing the package name"
|
||||
"\\nspecified on the command line from the given repo database. Multiple"
|
||||
"\\npackages to remove can be specified on the command line.\\n"
|
||||
"repo-remove will update a package database by removing the package "
|
||||
"name\\nspecified on the command line from the given repo database. "
|
||||
"Multiple\\npackages to remove can be specified on the command line.\\n"
|
||||
msgstr ""
|
||||
"repo-remove atualiza uma base de dados de pacotes removendo o nome do"
|
||||
"\\npacote especificado na linha de comando da base de dados de repositório"
|
||||
"\\ninformada. Múltiplos pacotes a serem removidos podem ser especificados"
|
||||
"\\nna linha de comando.\\n"
|
||||
"repo-remove atualiza uma base de dados de pacotes removendo o nome "
|
||||
"do\\npacote especificado na linha de comando da base de dados de "
|
||||
"repositório\\ninformada. Múltiplos pacotes a serem removidos podem ser "
|
||||
"especificados\\nna linha de comando.\\n"
|
||||
|
||||
#: scripts/repo-add.sh.in:78
|
||||
msgid "Please move along, there is nothing to see here.\\n"
|
||||
|
@ -992,8 +993,8 @@ msgstr ""
|
|||
#: scripts/repo-add.sh.in:85
|
||||
msgid " -v, --verify verify database's signature before update\\n"
|
||||
msgstr ""
|
||||
" -v, --verify verifica a assinatura da base de dados antes de atualizar"
|
||||
"\\n"
|
||||
" -v, --verify verifica a assinatura da base de dados antes de "
|
||||
"atualizar\\n"
|
||||
|
||||
#: scripts/repo-add.sh.in:86
|
||||
msgid ""
|
||||
|
|
|
@ -16,9 +16,9 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Arch Linux Pacman package manager\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.archlinux.org/index.php?project=3\n"
|
||||
"POT-Creation-Date: 2021-09-04 16:15+1000\n"
|
||||
"PO-Revision-Date: 2021-04-23 00:41+0000\n"
|
||||
"Last-Translator: Allan McRae <allan@archlinux.org>\n"
|
||||
"POT-Creation-Date: 2022-09-26 21:09+1000\n"
|
||||
"PO-Revision-Date: 2011-08-08 22:35+0000\n"
|
||||
"Last-Translator: Arthur Țițeică <arthur.titeica@gmail.com>, 2013\n"
|
||||
"Language-Team: Romanian (http://www.transifex.com/toofishes/archlinux-pacman/"
|
||||
"language/ro/)\n"
|
||||
"Language: ro\n"
|
||||
|
@ -686,8 +686,8 @@ msgstr " --lsign-key Semnează keyid-urile locale specificate"
|
|||
|
||||
#: scripts/pacman-key.sh.in:77
|
||||
msgid ""
|
||||
" --populate Reload the default keys from the (given) keyrings"
|
||||
"\\n in '%s'"
|
||||
" --populate Reload the default keys from the (given) "
|
||||
"keyrings\\n in '%s'"
|
||||
msgstr ""
|
||||
" --populate Reîncarcă cheile implicite din fișierele (date) "
|
||||
"de chei\\n din '%s'"
|
||||
|
@ -705,16 +705,16 @@ msgstr ""
|
|||
|
||||
#: scripts/pacman-key.sh.in:83
|
||||
msgid ""
|
||||
" --config <file> Use an alternate config file (instead of"
|
||||
"\\n '%s')"
|
||||
" --config <file> Use an alternate config file (instead "
|
||||
"of\\n '%s')"
|
||||
msgstr ""
|
||||
" --config <fișier> Folosește un fișier de configurare alternativ "
|
||||
"(în loc de\\n '%s')"
|
||||
|
||||
#: scripts/pacman-key.sh.in:85
|
||||
msgid ""
|
||||
" --gpgdir <dir> Set an alternate directory for GnuPG (instead"
|
||||
"\\n of '%s')"
|
||||
" --gpgdir <dir> Set an alternate directory for GnuPG "
|
||||
"(instead\\n of '%s')"
|
||||
msgstr ""
|
||||
" --gpgdir <dir> Alege un director alternativ pentru GnuPG (în "
|
||||
"loc de\\n of '%s')"
|
||||
|
@ -933,13 +933,13 @@ msgstr "Opțiuni:\\n"
|
|||
msgid ""
|
||||
" -n, --new only add packages that are not already in the database\\n"
|
||||
msgstr ""
|
||||
" -n, --new adaugă doar pachetele care nu sunt deja în baza de date"
|
||||
"\\n"
|
||||
" -n, --new adaugă doar pachetele care nu sunt deja în baza de "
|
||||
"date\\n"
|
||||
|
||||
#: scripts/repo-add.sh.in:66
|
||||
msgid ""
|
||||
" -R, --remove remove old package file from disk after updating database"
|
||||
"\\n"
|
||||
" -R, --remove remove old package file from disk after updating "
|
||||
"database\\n"
|
||||
msgstr ""
|
||||
" -R, --remove elimină fișierul vechi al pachetului de pe disc după "
|
||||
"actualizarea bazei de date\\n"
|
||||
|
@ -956,12 +956,12 @@ msgstr ""
|
|||
|
||||
#: scripts/repo-add.sh.in:71
|
||||
msgid ""
|
||||
"repo-remove will update a package database by removing the package name"
|
||||
"\\nspecified on the command line from the given repo database. Multiple"
|
||||
"\\npackages to remove can be specified on the command line.\\n"
|
||||
"repo-remove will update a package database by removing the package "
|
||||
"name\\nspecified on the command line from the given repo database. "
|
||||
"Multiple\\npackages to remove can be specified on the command line.\\n"
|
||||
msgstr ""
|
||||
"rep-remove va actualiza o bază de date de pachete prin eliminarea numelui"
|
||||
"\\npachetului specificat în linia de comanda din baza de date dată a "
|
||||
"rep-remove va actualiza o bază de date de pachete prin eliminarea "
|
||||
"numelui\\npachetului specificat în linia de comanda din baza de date dată a "
|
||||
"depozitului.\\nPachetele multiple de eliminat pot fi specificate în linia de "
|
||||
"comandă.\\n"
|
||||
|
||||
|
@ -984,14 +984,14 @@ msgstr " -s, --sign semnează baza de date cu GnuPG după actualizare\\n
|
|||
#: scripts/repo-add.sh.in:84
|
||||
msgid " -k, --key <key> use the specified key to sign the database\\n"
|
||||
msgstr ""
|
||||
" -k, --key <cheie> folosește cheia specificată pentru a semna baza de date"
|
||||
"\\n"
|
||||
" -k, --key <cheie> folosește cheia specificată pentru a semna baza de "
|
||||
"date\\n"
|
||||
|
||||
#: scripts/repo-add.sh.in:85
|
||||
msgid " -v, --verify verify database's signature before update\\n"
|
||||
msgstr ""
|
||||
" -v, --verify verifică semnătura bazei de date înainte de actualizare"
|
||||
"\\n"
|
||||
" -v, --verify verifică semnătura bazei de date înainte de "
|
||||
"actualizare\\n"
|
||||
|
||||
#: scripts/repo-add.sh.in:86
|
||||
msgid ""
|
||||
|
@ -1004,8 +1004,8 @@ msgstr ""
|
|||
msgid ""
|
||||
"Example: repo-add /path/to/repo.db.tar.gz pacman-3.0.0-1-i686.pkg.tar.gz\\n"
|
||||
msgstr ""
|
||||
"Exemplu: repo-add /cale/către/repo.db.tar.gz pacman-3.0.0-1-i686.pkg.tar.gz"
|
||||
"\\n"
|
||||
"Exemplu: repo-add /cale/către/repo.db.tar.gz pacman-3.0.0-1-i686.pkg.tar."
|
||||
"gz\\n"
|
||||
|
||||
#: scripts/repo-add.sh.in:92
|
||||
msgid "Example: repo-remove /path/to/repo.db.tar.gz kernel26\\n"
|
||||
|
|
|
@ -11,27 +11,27 @@
|
|||
# Ilya Ostapenko (Jacobtey) <jacobtey@gmail.com>, 2017
|
||||
# Ivan Yurasov <vdk@gmx.us>, 2011
|
||||
# kyak <peselnik@gmail.com>, 2013
|
||||
# partizan <serg.partizan@gmail.com>, 2015,2017
|
||||
# Sergiy Tereshchenko <serg.partizan@gmail.com>, 2015,2017
|
||||
# kyak <peselnik@gmail.com>, 2013
|
||||
# partizan <serg.partizan@gmail.com>, 2015,2017
|
||||
# Sergiy Tereshchenko <serg.partizan@gmail.com>, 2015,2017
|
||||
# be1bb8e720f95f5c175a5f1f3aa8f780, 2015
|
||||
# Анатолий Валерианович <ffox909@mail.ru>, 2016
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Arch Linux Pacman package manager\n"
|
||||
"Report-Msgid-Bugs-To: http://bugs.archlinux.org/index.php?project=3\n"
|
||||
"POT-Creation-Date: 2021-09-04 16:15+1000\n"
|
||||
"PO-Revision-Date: 2021-04-23 00:41+0000\n"
|
||||
"Last-Translator: Allan McRae <allan@archlinux.org>\n"
|
||||
"POT-Creation-Date: 2022-09-26 21:09+1000\n"
|
||||
"PO-Revision-Date: 2011-08-08 22:35+0000\n"
|
||||
"Last-Translator: Анатолий Валерианович <ffox909@mail.ru>, 2016\n"
|
||||
"Language-Team: Russian (http://www.transifex.com/toofishes/archlinux-pacman/"
|
||||
"language/ru/)\n"
|
||||
"Language: ru\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
|
||||
"%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n"
|
||||
"%100>=11 && n%100<=14)? 2 : 3);\n"
|
||||
"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && "
|
||||
"n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || "
|
||||
"(n%100>=11 && n%100<=14)? 2 : 3);\n"
|
||||
|
||||
#: scripts/makepkg.sh.in:139
|
||||
msgid "Cleaning up..."
|
||||
|
@ -675,8 +675,8 @@ msgstr " --lsign-key Локально подписать указ
|
|||
|
||||
#: scripts/pacman-key.sh.in:77
|
||||
msgid ""
|
||||
" --populate Reload the default keys from the (given) keyrings"
|
||||
"\\n in '%s'"
|
||||
" --populate Reload the default keys from the (given) "
|
||||
"keyrings\\n in '%s'"
|
||||
msgstr ""
|
||||
" --populate Перезагрузить ключи по-умолчанию из (указанных) "
|
||||
"связок ключей\\n в '%s'"
|
||||
|
@ -694,18 +694,18 @@ msgstr ""
|
|||
|
||||
#: scripts/pacman-key.sh.in:83
|
||||
msgid ""
|
||||
" --config <file> Use an alternate config file (instead of"
|
||||
"\\n '%s')"
|
||||
" --config <file> Use an alternate config file (instead "
|
||||
"of\\n '%s')"
|
||||
msgstr ""
|
||||
" --config <файл> Использовать указанный файл настроек вместо '%s'"
|
||||
|
||||
#: scripts/pacman-key.sh.in:85
|
||||
msgid ""
|
||||
" --gpgdir <dir> Set an alternate directory for GnuPG (instead"
|
||||
"\\n of '%s')"
|
||||
" --gpgdir <dir> Set an alternate directory for GnuPG "
|
||||
"(instead\\n of '%s')"
|
||||
msgstr ""
|
||||
" --gpgdir <каталог> Использовать указанный каталог для GnuPG"
|
||||
"\\n вместо '%s'"
|
||||
" --gpgdir <каталог> Использовать указанный каталог для "
|
||||
"GnuPG\\n вместо '%s'"
|
||||
|
||||
#: scripts/pacman-key.sh.in:87
|
||||
msgid " --keyserver <server-url> Specify a keyserver to use if necessary"
|
||||
|
@ -924,8 +924,8 @@ msgstr ""
|
|||
|
||||
#: scripts/repo-add.sh.in:66
|
||||
msgid ""
|
||||
" -R, --remove remove old package file from disk after updating database"
|
||||
"\\n"
|
||||
" -R, --remove remove old package file from disk after updating "
|
||||
"database\\n"
|
||||
msgstr ""
|
||||
" -R, --remove удалить с диска старый файл пакета после обновления базы "
|
||||
"данных\\n"
|
||||
|
@ -942,9 +942,9 @@ msgstr ""
|
|||
|
||||
#: scripts/repo-add.sh.in:71
|
||||
msgid ""
|
||||
"repo-remove will update a package database by removing the package name"
|
||||
"\\nspecified on the command line from the given repo database. Multiple"
|
||||
"\\npackages to remove can be specified on the command line.\\n"
|
||||
"repo-remove will update a package database by removing the package "
|
||||
"name\\nspecified on the command line from the given repo database. "
|
||||
"Multiple\\npackages to remove can be specified on the command line.\\n"
|
||||
msgstr ""
|
||||
"repo-remove удаляет указанный пакет из базы данных.\\nВ командной строке "
|
||||
"можно указать несколько пакетов.\\n"
|
||||
|
@ -1090,7 +1090,7 @@ msgstr "Не удалось создать файл репозитория '%s'.
|
|||
|
||||
#: scripts/repo-add.sh.in:446
|
||||
msgid "File '%s' not found."
|
||||
msgstr "Не найден файл настроек %s: '%s'."
|
||||
msgstr ""
|
||||
|
||||
#: scripts/repo-add.sh.in:452
|
||||
msgid "'%s' is not a package file, skipping"
|
||||
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Reference in a new issue