diff options
Diffstat (limited to 'templates/common/min-003-occurences.pot')
-rw-r--r-- | templates/common/min-003-occurences.pot | 1991 |
1 files changed, 906 insertions, 1085 deletions
diff --git a/templates/common/min-003-occurences.pot b/templates/common/min-003-occurences.pot index da48dd02..b5d1d521 100644 --- a/templates/common/min-003-occurences.pot +++ b/templates/common/min-003-occurences.pot @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: manpages-l10n\n" -"POT-Creation-Date: 2024-03-09 17:48+0100\n" +"POT-Creation-Date: 2024-06-14 16:26+0200\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" @@ -11,79 +11,138 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide -#: mageia-cauldron debian-bullseye +#: debian-bookworm debian-unstable archlinux fedora-40 fedora-rawhide +#: mageia-cauldron #, no-wrap msgid "" " [\n" -"B<--check-hash-based-pycs>\n" -"I<default>\n" -"|\n" -"I<always>\n" -"|\n" -"I<never>\n" +"B<--help>\n" +"]\n" +"[\n" +"B<--help-env>\n" +"]\n" +"[\n" +"B<--help-xoptions>\n" +"]\n" +"[\n" +"B<--help-all>\n" "]\n" msgstr "" -#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide -#: mageia-cauldron debian-bullseye +#: debian-bookworm debian-unstable archlinux fedora-40 fedora-rawhide +#: mageia-cauldron #, no-wrap msgid "" " [\n" -"B<-c>\n" -"I<command>\n" -"|\n" -"I<script>\n" -"|\n" -"-\n" +"B<-m>\n" +"I<module-name>\n" +"]\n" +"[\n" +"B<-q>\n" +"]\n" +"[\n" +"B<-O>\n" +"]\n" +"[\n" +"B<-OO>\n" +"]\n" +"[\n" +"B<-P>\n" "]\n" "[\n" -"I<arguments>\n" +"B<-s>\n" +"]\n" +"[\n" +"B<-S>\n" +"]\n" +"[\n" +"B<-u>\n" "]\n" msgstr "" -#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide -#: mageia-cauldron debian-bullseye +#: debian-bookworm debian-unstable archlinux fedora-40 fedora-rawhide +#: mageia-cauldron +#, no-wrap +msgid "" +" [\n" +"B<-v>\n" +"]\n" +"[\n" +"B<-V>\n" +"]\n" +"[\n" +"B<-W>\n" +"I<argument>\n" +"]\n" +"[\n" +"B<-x>\n" +"]\n" +"[\n" +"B<-X>\n" +"I<option>\n" +"]\n" +"[\n" +"B<-?>\n" +"]\n" +msgstr "" + +#: debian-bookworm debian-unstable archlinux fedora-40 fedora-rawhide +#: mageia-cauldron #, no-wrap -msgid " -X faulthandler: enable faulthandler\n" +msgid "" +" -X dev: enable CPython's \"development mode\", introducing additional runtime\n" +" checks which are too expensive to be enabled by default. It will not be\n" +" more verbose than the default if the code is correct: new warnings are\n" +" only emitted when an issue is detected. Effect of the developer mode:\n" +" * Add default warning filter, as -W default\n" +" * Install debug hooks on memory allocators: see the PyMem_SetupDebugHooks()\n" +" C function\n" +" * Enable the faulthandler module to dump the Python traceback on a crash\n" +" * Enable asyncio debug mode\n" +" * Set the dev_mode attribute of sys.flags to True\n" +" * io.IOBase destructor logs close() exceptions\n" msgstr "" -#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide -#: mageia-cauldron debian-bullseye +#: debian-bookworm debian-unstable archlinux fedora-40 fedora-rawhide +#: mageia-cauldron #, no-wrap msgid "" -" -X importtime: show how long each import takes. It shows module name,\n" -" cumulative time (including nested imports) and self time (excluding\n" -" nested imports). Note that its output may be broken in multi-threaded\n" -" application. Typical usage is python3 -X importtime -c 'import asyncio'\n" +" -X frozen_modules=[on|off]: whether or not frozen modules should be used.\n" +" The default is \"on\" (or \"off\" if you are running a local build).\n" msgstr "" -#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide -#: mageia-cauldron debian-bullseye +#: debian-bookworm debian-unstable archlinux fedora-40 fedora-rawhide +#: mageia-cauldron #, no-wrap msgid "" -" -X showrefcount: output the total reference count and number of used\n" -" memory blocks when the program finishes or after each statement in the\n" -" interactive interpreter. This only works on debug builds\n" +" -X int_max_str_digits=number: limit the size of intE<lt>-E<gt>str conversions.\n" +" This helps avoid denial of service attacks when parsing untrusted data.\n" +" The default is sys.int_info.default_max_str_digits. 0 disables.\n" msgstr "" -#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide -#: mageia-cauldron debian-bullseye +#: debian-bookworm debian-unstable archlinux fedora-40 fedora-rawhide +#: mageia-cauldron #, no-wrap msgid "" -" -X tracemalloc: start tracing Python memory allocations using the\n" -" tracemalloc module. By default, only the most recent frame is stored in a\n" -" traceback of a trace. Use -X tracemalloc=NFRAME to start tracing with a\n" -" traceback limit of NFRAME frames\n" +" -X no_debug_ranges: disable the inclusion of the tables mapping extra location\n" +" information (end line, start column offset and end column offset) to every\n" +" instruction in code objects. This is useful when smaller code objects and pyc\n" +" files are desired as well as suppressing the extra visual location indicators\n" +" when the interpreter displays tracebacks.\n" msgstr "" -#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide -#: mageia-cauldron debian-bullseye +#: debian-bookworm debian-unstable archlinux fedora-40 fedora-rawhide +#: mageia-cauldron #, no-wrap msgid "" -" -X utf8: enable UTF-8 mode for operating system interfaces, overriding the default\n" -" locale-aware mode. -X utf8=0 explicitly disables UTF-8 mode (even when it would\n" -" otherwise activate automatically). See PYTHONUTF8 for more details\n" +" -X pycache_prefix=PATH: enable writing .pyc files to a parallel tree rooted at the\n" +" given directory instead of to the code tree.\n" +msgstr "" + +#: debian-bookworm debian-unstable archlinux fedora-40 fedora-rawhide +#: mageia-cauldron +#, no-wrap +msgid " -X warn_default_encoding: enable opt-in EncodingWarning for 'encoding=None'\n" msgstr "" #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide @@ -179,6 +238,18 @@ msgstr "" msgid " close(fd);\n" msgstr "" +#: debian-bookworm debian-unstable archlinux fedora-40 fedora-rawhide +#: mageia-cauldron +#, no-wrap +msgid "" +" -Wdefault # Warn once per call location\n" +" -Werror # Convert to exceptions\n" +" -Walways # Warn every time\n" +" -Wmodule # Warn once per calling module\n" +" -Wonce # Warn once per Python process\n" +" -Wignore # Never warn\n" +msgstr "" + #: debian-bookworm debian-unstable fedora-40 fedora-rawhide mageia-cauldron #: opensuse-leap-15-6 opensuse-tumbleweed archlinux #, no-wrap @@ -242,25 +313,8 @@ msgstr "" msgid "&" msgstr "" -#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide -#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed -#, no-wrap -msgid "(7)" -msgstr "" - -#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide -#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed -#, no-wrap -msgid "(8)" -msgstr "" - -#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide -#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed -#, no-wrap -msgid "(9)" -msgstr "" - -#: archlinux fedora-40 fedora-rawhide mageia-cauldron +#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron +#: opensuse-tumbleweed #, no-wrap msgid "(and similar)" msgstr "" @@ -466,6 +520,11 @@ msgstr "" msgid "/proc" msgstr "" +#: mageia-cauldron +#, no-wrap +msgid "/proc Functions" +msgstr "" + #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed #, no-wrap @@ -558,6 +617,11 @@ msgstr "" msgid "0200" msgstr "" +#: debian-unstable +#, no-wrap +msgid "03/26/2024" +msgstr "" + #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed #, no-wrap @@ -604,23 +668,12 @@ msgstr "" msgid "11/20/2022" msgstr "" -#: opensuse-tumbleweed -#, no-wrap -msgid "12/06/2023" -msgstr "" - #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed #, no-wrap msgid "129" msgstr "" -#: debian-bookworm debian-unstable opensuse-leap-15-6 opensuse-tumbleweed -#: archlinux fedora-40 fedora-rawhide mageia-cauldron -#, no-wrap -msgid "17" -msgstr "" - #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed #, no-wrap @@ -633,17 +686,6 @@ msgstr "" msgid "18." msgstr "" -#: debian-bookworm debian-unstable opensuse-leap-15-6 opensuse-tumbleweed -#: archlinux fedora-40 fedora-rawhide mageia-cauldron -#, no-wrap -msgid "19" -msgstr "" - -#: debian-bookworm debian-unstable -#, no-wrap -msgid "19 April 2010" -msgstr "" - #: mageia-cauldron #, no-wrap msgid "24.2" @@ -660,12 +702,6 @@ msgstr "" msgid "25 SCSI/USB trace" msgstr "" -#: debian-unstable opensuse-leap-15-6 opensuse-tumbleweed archlinux -#: debian-bookworm fedora-40 fedora-rawhide mageia-cauldron -#, no-wrap -msgid "26" -msgstr "" - #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed #, no-wrap @@ -678,8 +714,8 @@ msgstr "" msgid "28" msgstr "" -#: archlinux fedora-40 fedora-rawhide opensuse-tumbleweed debian-bookworm -#: debian-unstable mageia-cauldron opensuse-leap-15-6 +#: archlinux fedora-40 fedora-rawhide mageia-cauldron opensuse-tumbleweed +#: debian-bookworm debian-unstable opensuse-leap-15-6 #, no-wrap msgid "29" msgstr "" @@ -696,6 +732,18 @@ msgstr "" msgid "6.2" msgstr "" +#: debian-bookworm opensuse-leap-15-6 archlinux debian-unstable fedora-40 +#: fedora-rawhide mageia-cauldron opensuse-tumbleweed +#, no-wrap +msgid "62" +msgstr "" + +#: debian-bookworm opensuse-leap-15-6 archlinux debian-unstable fedora-40 +#: fedora-rawhide mageia-cauldron opensuse-tumbleweed +#, no-wrap +msgid "63" +msgstr "" + #: mageia-cauldron opensuse-leap-15-6 archlinux debian-bookworm debian-unstable #: fedora-40 fedora-rawhide opensuse-tumbleweed #, no-wrap @@ -714,8 +762,8 @@ msgstr "" msgid "76" msgstr "" -#: archlinux fedora-40 fedora-rawhide opensuse-tumbleweed debian-bookworm -#: debian-unstable mageia-cauldron opensuse-leap-15-6 +#: archlinux fedora-40 fedora-rawhide mageia-cauldron opensuse-tumbleweed +#: debian-bookworm debian-unstable opensuse-leap-15-6 #, no-wrap msgid "78" msgstr "" @@ -779,24 +827,30 @@ msgstr "" msgid "A single whitespace character (usually a newline)." msgstr "" +#: debian-unstable fedora-rawhide +msgid "ANSI Escape Code (Wikipedia)" +msgstr "" + #: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron +#: opensuse-tumbleweed msgid "Added in version 190\\&." msgstr "" #: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron +#: opensuse-tumbleweed msgid "Added in version 202\\&." msgstr "" #: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron +#: opensuse-tumbleweed msgid "Added in version 208\\&." msgstr "" -#: debian-bookworm debian-unstable fedora-40 fedora-rawhide mageia-cauldron -#: opensuse-leap-15-6 opensuse-tumbleweed +#: debian-bookworm fedora-40 fedora-rawhide opensuse-leap-15-6 msgid "Additional info and hints can be obtained from our" msgstr "" -#: archlinux +#: archlinux debian-unstable mageia-cauldron opensuse-tumbleweed msgid "" "Additional info and hints can be obtained from our mailing-List archive at: " "I<http://www.sane-project.org/mailing-lists.html>." @@ -834,6 +888,11 @@ msgid "" "Alternatively, Asynchronous I/O library (I<libaio>, I<-laio>); see NOTES." msgstr "" +#: debian-bookworm opensuse-leap-15-6 archlinux debian-unstable fedora-40 +#: fedora-rawhide mageia-cauldron opensuse-tumbleweed +msgid "Amount of memory allocated to kernel stacks." +msgstr "" + #: opensuse-leap-15-6 msgid "An error occurred." msgstr "" @@ -855,20 +914,6 @@ msgstr "" msgid "At present, the following scanners should work with this backend:" msgstr "" -#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide -#: mageia-cauldron debian-bullseye -msgid "" -"Augments the default search path for module files. The format is the same " -"as the shell's $PATH: one or more directory pathnames separated by colons. " -"Non-existent directories are silently ignored. The default search path is " -"installation dependent, but generally begins with ${prefix}/lib/" -"pythonE<lt>versionE<gt> (see PYTHONHOME above). The default search path is " -"always appended to $PYTHONPATH. If a script argument is given, the " -"directory containing the script is inserted in the path in front of " -"$PYTHONPATH. The search path can be manipulated from within a Python " -"program as the variable I<sys.path>." -msgstr "" - #: archlinux debian-unstable fedora-40 fedora-rawhide opensuse-tumbleweed #: debian-bookworm mageia-cauldron #, no-wrap @@ -904,6 +949,14 @@ msgid "" "B<#include E<lt>sys/mman.hE<gt>>\n" msgstr "" +#: archlinux debian-unstable fedora-rawhide opensuse-tumbleweed debian-bookworm +#: fedora-40 mageia-cauldron opensuse-leap-15-6 +#, no-wrap +msgid "" +"B<#define _GNU_SOURCE> /* See feature_test_macros(7) */\n" +"B<#include E<lt>unistd.hE<gt>>\n" +msgstr "" + #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed #, no-wrap @@ -964,10 +1017,8 @@ msgstr "" msgid "B<#include E<lt>linux/module.hE<gt>>\n" msgstr "" -#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide -#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed -#, no-wrap -msgid "B<#include E<lt>stdarg.hE<gt>>\n" +#: mageia-cauldron +msgid "B<#include E<lt>linux/proc_fs.hE<gt>>" msgstr "" #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide @@ -1179,6 +1230,10 @@ msgstr "" msgid "B<--author>" msgstr "" +#: debian-unstable fedora-rawhide +msgid "B<--background=>I<COLOR>" +msgstr "" + #: debian-bookworm debian-unstable fedora-40 fedora-rawhide opensuse-leap-15-6 #: mageia-cauldron opensuse-tumbleweed #, no-wrap @@ -1196,18 +1251,6 @@ msgstr "" msgid "B<--cert=>" msgstr "" -#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide -#: mageia-cauldron debian-bullseye -#, no-wrap -msgid "B<--check-hash-based-pycs >I<mode>" -msgstr "" - -#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide -#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed -#, no-wrap -msgid "B<--clean>" -msgstr "" - #: archlinux fedora-40 fedora-rawhide msgid "B<--config> E<lt>fileE<gt>" msgstr "" @@ -1225,12 +1268,6 @@ msgstr "" #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed -#, no-wrap -msgid "B<--dereference>" -msgstr "" - -#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide -#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed msgid "B<--discover>" msgstr "" @@ -1241,6 +1278,11 @@ msgid "B<--dump>" msgstr "" #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron +msgid "B<--entry-token=>" +msgstr "" + +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed #, no-wrap msgid "B<--fatal-warnings>" @@ -1299,6 +1341,18 @@ msgstr "" msgid "B<--heap> I<reserve>B<,>I<commit>" msgstr "" +#: debian-bookworm debian-unstable archlinux fedora-40 fedora-rawhide +#: mageia-cauldron +#, no-wrap +msgid "B<--help-env>" +msgstr "" + +#: debian-bookworm debian-unstable archlinux fedora-40 fedora-rawhide +#: mageia-cauldron +#, no-wrap +msgid "B<--help-xoptions>" +msgstr "" + #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed #, no-wrap @@ -1306,7 +1360,7 @@ msgid "B<--hide>=I<\\,PATTERN\\/>" msgstr "" #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide -#: mageia-cauldron opensuse-tumbleweed opensuse-leap-15-6 +#: mageia-cauldron opensuse-tumbleweed #, no-wrap msgid "B<--human>" msgstr "" @@ -1392,8 +1446,8 @@ msgstr "" msgid "B<--no-hostname>" msgstr "" -#: debian-bookworm debian-unstable fedora-40 fedora-rawhide opensuse-leap-15-6 -#: opensuse-tumbleweed archlinux mageia-cauldron +#: debian-bookworm debian-unstable fedora-40 fedora-rawhide opensuse-tumbleweed +#: opensuse-leap-15-6 archlinux mageia-cauldron #, no-wrap msgid "B<--no-proxy>" msgstr "" @@ -1409,7 +1463,7 @@ msgstr "" msgid "B<--no-timeout>" msgstr "" -#: debian-bookworm opensuse-leap-15-6 +#: debian-bookworm msgid "B<--notruncate>" msgstr "" @@ -1475,9 +1529,10 @@ msgstr "" msgid "B<--repo E<lt>repoidE<gt>>" msgstr "" -#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide -#: mageia-cauldron opensuse-tumbleweed opensuse-leap-15-6 -msgid "B<--runtime>" +#: debian-bookworm debian-unstable fedora-40 fedora-rawhide mageia-cauldron +#: opensuse-leap-15-6 opensuse-tumbleweed +#, no-wrap +msgid "B<--resolve>" msgstr "" #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide @@ -1486,8 +1541,8 @@ msgstr "" msgid "B<--show-control-chars>" msgstr "" -#: archlinux opensuse-tumbleweed fedora-40 fedora-rawhide debian-bookworm -#: debian-unstable opensuse-leap-15-6 +#: archlinux opensuse-tumbleweed debian-unstable fedora-40 fedora-rawhide +#: debian-bookworm opensuse-leap-15-6 #, no-wrap msgid "B<--silent>" msgstr "" @@ -1522,8 +1577,8 @@ msgstr "" msgid "B<--subsystem> I<which>B<:>I<major>B<.>I<minor>" msgstr "" -#: debian-bookworm opensuse-leap-15-6 archlinux debian-unstable fedora-40 -#: fedora-rawhide mageia-cauldron opensuse-tumbleweed +#: debian-bookworm archlinux debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-tumbleweed msgid "B<--summary>" msgstr "" @@ -1633,8 +1688,7 @@ msgstr "" msgid "B<-?, --help>" msgstr "" -#: archlinux fedora-40 fedora-rawhide opensuse-tumbleweed debian-bookworm -#: debian-unstable opensuse-leap-15-6 +#: archlinux fedora-40 opensuse-tumbleweed debian-bookworm debian-unstable #, no-wrap msgid "B<-A>, B<--all>" msgstr "" @@ -1651,10 +1705,14 @@ msgstr "" msgid "B<-B>, B<--ignore-backups>" msgstr "" -#: debian-bookworm opensuse-leap-15-6 +#: debian-bookworm msgid "B<-B>, B<--log-io> I<file>" msgstr "" +#: debian-unstable fedora-rawhide +msgid "B<-C>, B<--capsule=>" +msgstr "" + #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed #, no-wrap @@ -1695,7 +1753,7 @@ msgstr "" msgid "B<-F>, B<--classify>[=I<\\,WHEN\\/>]" msgstr "" -#: debian-bookworm opensuse-leap-15-6 mageia-cauldron +#: debian-bookworm opensuse-leap-15-6 msgid "B<-F>, B<--no-fork>" msgstr "" @@ -1723,7 +1781,7 @@ msgstr "" msgid "B<-I>, B<--ignore>=I<\\,PATTERN\\/>" msgstr "" -#: debian-bookworm opensuse-leap-15-6 +#: debian-bookworm msgid "B<-I>, B<--log-in> I<file>" msgstr "" @@ -1733,7 +1791,7 @@ msgstr "" msgid "B<-K>, B<--zfs-key>=I<\\,FILE\\/>|prompt" msgstr "" -#: debian-bookworm opensuse-leap-15-6 +#: debian-bookworm msgid "B<-L>, B<--color>[=I<when>]" msgstr "" @@ -1744,15 +1802,14 @@ msgid "B<-L>, B<--logical>" msgstr "" #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide -#: mageia-cauldron debian-bullseye +#: opensuse-leap-15-6 opensuse-tumbleweed #, no-wrap -msgid "B<-OO>" +msgid "B<-P, --project>" msgstr "" -#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide -#: opensuse-leap-15-6 opensuse-tumbleweed +#: archlinux #, no-wrap -msgid "B<-P, --project>" +msgid "B<-P> I<\\,INPAPER\\/>, B<--inpaper> I<\\,INPAPER\\/>" msgstr "" #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide @@ -1761,7 +1818,7 @@ msgstr "" msgid "B<-P> I<prefix>" msgstr "" -#: archlinux fedora-40 fedora-rawhide mageia-cauldron opensuse-tumbleweed +#: fedora-40 fedora-rawhide mageia-cauldron opensuse-tumbleweed #, no-wrap msgid "B<-P>, B<--inpaper>=I<\\,PAPER\\/>" msgstr "" @@ -1784,7 +1841,7 @@ msgstr "" msgid "B<-T>, B<--initial-tab>" msgstr "" -#: debian-bookworm opensuse-leap-15-6 +#: debian-bookworm msgid "B<-T>, B<--log-timing> I<file>" msgstr "" @@ -1801,35 +1858,17 @@ msgid "B<-U> I<[d|i|l|e|x|h]>" msgstr "" #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide -#: mageia-cauldron debian-bullseye -#, no-wrap -msgid "B<-V , --version>" -msgstr "" - -#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed #, no-wrap msgid "B<-V --version>" msgstr "" #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide -#: mageia-cauldron debian-bullseye -#, no-wrap -msgid "B<-W >I<argument>" -msgstr "" - -#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed #, no-wrap msgid "B<-W>" msgstr "" -#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide -#: mageia-cauldron debian-bullseye -#, no-wrap -msgid "B<-X >I<option>" -msgstr "" - #: archlinux debian-bookworm debian-unstable mageia-cauldron opensuse-leap-15-6 #: opensuse-tumbleweed #, no-wrap @@ -1843,7 +1882,7 @@ msgid "B<-a>, B<--text>" msgstr "" #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide -#: mageia-cauldron opensuse-tumbleweed opensuse-leap-15-6 +#: mageia-cauldron opensuse-tumbleweed #, no-wrap msgid "B<-b>, B<--backup>" msgstr "" @@ -1860,12 +1899,6 @@ msgstr "" msgid "B<-b>, B<--escape>" msgstr "" -#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide -#: mageia-cauldron debian-bullseye -#, no-wrap -msgid "B<-c >I<command>" -msgstr "" - #: debian-bookworm debian-unstable mageia-cauldron opensuse-tumbleweed #, no-wrap msgid "B<-c, --cache N>" @@ -1907,7 +1940,7 @@ msgstr "" msgid "B<-d>, B<--device>" msgstr "" -#: debian-bookworm opensuse-leap-15-6 +#: debian-bookworm msgid "B<-d>, B<--divisor> I<number>" msgstr "" @@ -1922,7 +1955,7 @@ msgstr "" msgid "B<-e>, B<--escape>=I<\\,CHAR\\/>" msgstr "" -#: debian-bookworm opensuse-leap-15-6 +#: debian-bookworm msgid "B<-f>, B<--file> I<file>" msgstr "" @@ -1938,8 +1971,8 @@ msgstr "" msgid "B<-f>, B<--follow>" msgstr "" -#: debian-bookworm opensuse-leap-15-6 archlinux debian-unstable fedora-40 -#: fedora-rawhide mageia-cauldron opensuse-tumbleweed +#: debian-bookworm archlinux debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed #, no-wrap msgid "B<-f>, B<--ignore-case>" msgstr "" @@ -1951,12 +1984,6 @@ msgid "B<-f>, B<--silent>, B<--quiet>" msgstr "" #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide -#: mageia-cauldron debian-bullseye -#, no-wrap -msgid "B<-h , -? , --help>" -msgstr "" - -#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed #, no-wrap msgid "B<-i>, B<--ignore-garbage>" @@ -1979,8 +2006,8 @@ msgstr "" msgid "B<-i>, B<--input>=I<\\,INPUTFILE\\/>" msgstr "" -#: debian-bookworm opensuse-leap-15-6 archlinux debian-unstable fedora-40 -#: fedora-rawhide mageia-cauldron +#: debian-bookworm archlinux debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron msgid "B<-k>, B<--kernel>" msgstr "" @@ -1990,7 +2017,7 @@ msgstr "" msgid "B<-k>, B<--kibibytes>" msgstr "" -#: fedora-rawhide debian-bookworm opensuse-leap-15-6 +#: fedora-rawhide debian-bookworm msgid "B<-l>, B<--length> I<length>" msgstr "" @@ -1999,19 +2026,13 @@ msgstr "" msgid "B<-l>, B<--user>=I<\\,USER\\/>" msgstr "" -#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide -#: mageia-cauldron debian-bullseye -#, no-wrap -msgid "B<-m >I<module-name>" -msgstr "" - #: archlinux #, no-wrap msgid "B<-n>, B<--no-keepalive>" msgstr "" -#: archlinux fedora-40 fedora-rawhide mageia-cauldron opensuse-leap-15-6 -#: opensuse-tumbleweed debian-bookworm debian-unstable +#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron +#: opensuse-leap-15-6 opensuse-tumbleweed debian-bookworm #, no-wrap msgid "B<-n>I<n>" msgstr "" @@ -2021,13 +2042,18 @@ msgstr "" msgid "B<-p, --print-profile>" msgstr "" +#: archlinux +#, no-wrap +msgid "B<-p> I<\\,PAPER\\/>, B<--paper> I<\\,PAPER\\/>" +msgstr "" + #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed #, no-wrap msgid "B<-p>, B<--indicator-style>=I<\\,slash\\/>" msgstr "" -#: archlinux fedora-40 fedora-rawhide mageia-cauldron opensuse-tumbleweed +#: fedora-40 fedora-rawhide mageia-cauldron opensuse-tumbleweed #, no-wrap msgid "B<-p>, B<--paper>=I<\\,PAPER\\/>" msgstr "" @@ -2103,7 +2129,7 @@ msgstr "" msgid "B<-t>, B<--to-code>=I<\\,NAME\\/>" msgstr "" -#: debian-bookworm opensuse-leap-15-6 +#: debian-bookworm msgid "B<-u>, B<--notruncate>" msgstr "" @@ -2150,6 +2176,12 @@ msgstr "" #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed #, no-wrap +msgid "B<128>" +msgstr "" + +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +#, no-wrap msgid "B<AF_NETLINK>" msgstr "" @@ -2195,10 +2227,8 @@ msgstr "" msgid "B<CLONE_NEWCGROUP> (since Linux 4.6)" msgstr "" -#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide -#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed -#, no-wrap -msgid "B<E>" +#: debian-unstable +msgid "B<Christian Kastner> E<lt>\\&ckk@debian\\&.org\\&E<gt>" msgstr "" #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide @@ -2267,7 +2297,7 @@ msgstr "" msgid "B<ENOPROTOOPT>" msgstr "" -#: debian-bookworm debian-unstable opensuse-leap-15-6 opensuse-tumbleweed +#: debian-bookworm opensuse-leap-15-6 #, no-wrap msgid "B<ENOSPC>, B<EDQUOT>" msgstr "" @@ -2304,6 +2334,10 @@ msgstr "" msgid "B<EUCLEAN>" msgstr "" +#: debian-unstable +msgid "B<Georges Khaznadar> E<lt>\\&georgesk@debian\\&.org\\&E<gt>" +msgstr "" + #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed #, no-wrap @@ -2346,6 +2380,11 @@ msgstr "" msgid "B<IPC_STAT>" msgstr "" +#: debian-unstable +msgid "" +"B<Javier Fern\\('andez-Sanguino Pe\\(~na> E<lt>\\&jfs@debian\\&.org\\&E<gt>" +msgstr "" + #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed #, no-wrap @@ -2376,19 +2415,13 @@ msgstr "" msgid "B<KEY_SPEC_USER_SESSION_KEYRING>" msgstr "" -#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide -#: mageia-cauldron opensuse-tumbleweed opensuse-leap-15-6 -#, no-wrap -msgid "B<L>" -msgstr "" - #: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron #: opensuse-leap-15-6 opensuse-tumbleweed debian-bookworm #, no-wrap msgid "B<LC_MONETARY>" msgstr "" -#: debian-bookworm opensuse-leap-15-6 +#: debian-bookworm msgid "B<LIBFDISK_DEBUG>=all" msgstr "" @@ -2400,7 +2433,7 @@ msgstr "" msgid "B<LIBMOUNT_MTAB>=E<lt>pathE<gt>" msgstr "" -#: debian-bookworm opensuse-leap-15-6 +#: debian-bookworm msgid "B<LOCK_BLOCK_DEVICE>=E<lt>modeE<gt>" msgstr "" @@ -2476,6 +2509,10 @@ msgstr "" msgid "B<PROT_WRITE>" msgstr "" +#: debian-unstable +msgid "B<Paul Vixie> E<lt>\\&paul@vix\\&.com\\&E<gt>" +msgstr "" + #: debian-bookworm debian-unstable fedora-40 fedora-rawhide mageia-cauldron #: archlinux opensuse-leap-15-6 opensuse-tumbleweed #, no-wrap @@ -2525,6 +2562,12 @@ msgstr "" #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed #, no-wrap +msgid "B<SO_PEERCRED>" +msgstr "" + +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +#, no-wrap msgid "B<SPLICE_F_GIFT>" msgstr "" @@ -2564,6 +2607,10 @@ msgstr "" msgid "B<S_TIME_FORMAT>" msgstr "" +#: debian-unstable +msgid "B<Steve Greenland> E<lt>\\&stevegr@debian\\&.org\\&E<gt>" +msgstr "" + #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed #, no-wrap @@ -2576,8 +2623,8 @@ msgstr "" msgid "B<TMPDIR>" msgstr "" -#: archlinux fedora-40 fedora-rawhide mageia-cauldron debian-bookworm -#: debian-unstable opensuse-leap-15-6 opensuse-tumbleweed +#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron +#: opensuse-tumbleweed debian-bookworm opensuse-leap-15-6 #, no-wrap msgid "B<TZ>" msgstr "" @@ -2683,8 +2730,8 @@ msgstr "" msgid "B<access>(2)" msgstr "" -#: debian-bookworm opensuse-leap-15-6 archlinux debian-unstable fedora-40 -#: fedora-rawhide mageia-cauldron opensuse-tumbleweed +#: debian-bookworm archlinux debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed msgid "B<alert>" msgstr "" @@ -2736,8 +2783,8 @@ msgstr "" msgid "B<copy>" msgstr "" -#: debian-bookworm opensuse-leap-15-6 archlinux debian-unstable fedora-40 -#: fedora-rawhide mageia-cauldron opensuse-tumbleweed +#: debian-bookworm archlinux debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed msgid "B<crit>" msgstr "" @@ -2775,8 +2822,8 @@ msgid "" "debian.org> Andreas Bombe E<.ME .>" msgstr "" -#: debian-bookworm opensuse-leap-15-6 archlinux debian-unstable fedora-40 -#: fedora-rawhide mageia-cauldron opensuse-tumbleweed +#: debian-bookworm archlinux debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed msgid "B<err>" msgstr "" @@ -2857,8 +2904,8 @@ msgstr "" msgid "B<home>" msgstr "" -#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide -#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +#: archlinux debian-unstable mageia-cauldron opensuse-tumbleweed +#: debian-bookworm fedora-40 fedora-rawhide opensuse-leap-15-6 #, no-wrap msgid "B<host>" msgstr "" @@ -2917,6 +2964,12 @@ msgstr "" #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed #, no-wrap +msgid "B<ll>" +msgstr "" + +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +#, no-wrap msgid "B<lseek>(2)" msgstr "" @@ -2989,7 +3042,7 @@ msgstr "" msgid "B<pause>(2)" msgstr "" -#: debian-bookworm debian-unstable opensuse-leap-15-6 opensuse-tumbleweed +#: debian-bookworm opensuse-leap-15-6 #, no-wrap msgid "B<poll>(2), B<select>(2) (and similar)" msgstr "" @@ -3001,13 +3054,6 @@ msgid "B<posix>" msgstr "" #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide -#: mageia-cauldron debian-bullseye -msgid "" -"B<python> [ B<-B> ] [ B<-b> ] [ B<-d> ] [ B<-E> ] [ B<-h> ] [ B<-i> ] [ B<-" -"I> ]" -msgstr "" - -#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed #, no-wrap msgid "B<quota>" @@ -3115,8 +3161,8 @@ msgstr "" msgid "B<services>" msgstr "" -#: debian-bookworm opensuse-leap-15-6 archlinux debian-unstable fedora-40 -#: fedora-rawhide mageia-cauldron opensuse-tumbleweed +#: debian-bookworm archlinux debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed #, no-wrap msgid "B<setsid>(2)" msgstr "" @@ -3192,13 +3238,13 @@ msgid "B<submit@bugs.debian.org>" msgstr "" #: archlinux fedora-40 fedora-rawhide mageia-cauldron debian-bookworm -#: debian-unstable opensuse-tumbleweed opensuse-leap-15-6 +#: debian-unstable opensuse-leap-15-6 opensuse-tumbleweed #, no-wrap msgid "B<swap>" msgstr "" -#: debian-bookworm opensuse-leap-15-6 archlinux debian-unstable fedora-40 -#: fedora-rawhide mageia-cauldron opensuse-tumbleweed +#: debian-bookworm archlinux debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed msgid "B<syslog>" msgstr "" @@ -3213,7 +3259,7 @@ msgstr "" msgid "B<tar>" msgstr "" -#: debian-bookworm opensuse-leap-15-6 debian-unstable +#: debian-bookworm debian-unstable #, no-wrap msgid "B<time>" msgstr "" @@ -3266,7 +3312,7 @@ msgstr "" msgid "B<version>" msgstr "" -#: debian-bookworm opensuse-leap-15-6 +#: debian-bookworm msgid "B<warn>" msgstr "" @@ -3283,12 +3329,6 @@ msgstr "" #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed #, no-wrap -msgid "B<z>" -msgstr "" - -#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide -#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed -#, no-wrap msgid "B<|>" msgstr "" @@ -3328,6 +3368,10 @@ msgstr "" msgid "BindInterface" msgstr "" +#: mageia-cauldron debian-bookworm opensuse-leap-15-6 +msgid "Bold" +msgstr "" + #: archlinux msgid "" "Bugs can be reported on the bug tracker I<https://bugs\\&.archlinux\\&.org> " @@ -3359,7 +3403,7 @@ msgid "COMMAND" msgstr "" #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide -#: mageia-cauldron opensuse-tumbleweed +#: mageia-cauldron opensuse-tumbleweed opensuse-leap-15-6 #, no-wrap msgid "CONFIGURATION FILES" msgstr "" @@ -3435,18 +3479,6 @@ msgid "CertificateFile" msgstr "" #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide -#: mageia-cauldron debian-bullseye -msgid "" -"Change the location of the standard Python libraries. By default, the " -"libraries are searched in ${prefix}/lib/pythonE<lt>versionE<gt> and " -"${exec_prefix}/lib/pythonE<lt>versionE<gt>, where ${prefix} and " -"${exec_prefix} are installation-dependent directories, both defaulting to I</" -"usr/local>. When $PYTHONHOME is set to a single directory, its value " -"replaces both ${prefix} and ${exec_prefix}. To specify different values for " -"these, set $PYTHONHOME to ${prefix}:${exec_prefix}." -msgstr "" - -#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron #, no-wrap msgid "CheckHostIP" @@ -3521,12 +3553,6 @@ msgid "Commands" msgstr "" #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide -#: mageia-cauldron debian-bullseye -msgid "" -"Configure how Python evaluates the up-to-dateness of hash-based .pyc files." -msgstr "" - -#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron #, no-wrap msgid "ConnectTimeout" @@ -3561,6 +3587,10 @@ msgstr "" msgid "ControlPersist" msgstr "" +#: debian-unstable +msgid "Copyright \\(co 1994 Paul Vixie" +msgstr "" + #: opensuse-leap-15-6 msgid "" "Copyright \\(co 2017 Free Software Foundation, Inc. License GPLv3+: GNU GPL " @@ -3595,17 +3625,6 @@ msgid "Debug tool for filesystem driver." msgstr "" #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide -#: mageia-cauldron debian-bullseye -#, no-wrap -msgid "Debug-mode variables" -msgstr "" - -#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide -#: mageia-cauldron debian-bullseye -msgid "Developer resources: https://devguide.python.org/" -msgstr "" - -#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed #, no-wrap msgid "Device nodes" @@ -3621,14 +3640,6 @@ msgstr "" msgid "Disable low-speed timeouts for downloads." msgstr "" -#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide -#: mageia-cauldron debian-bullseye -msgid "" -"Disable the import of the module I<site> and the site-dependent " -"manipulations of I<sys.path> that it entails. Also disable these " -"manipulations if I<site> is explicitly imported later." -msgstr "" - #: debian-bookworm debian-unstable msgid "Display a help list." msgstr "" @@ -3656,49 +3667,28 @@ msgstr "" msgid "Display the program version." msgstr "" -#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide -#: mageia-cauldron debian-bullseye +#: debian-unstable msgid "" -"Do B<-O> and also discard docstrings; change the filename for compiled " -"(bytecode) files by adding .opt-2 before the .pyc extension." +"Distribute freely, except: don\\*(Aqt remove my name from the source or " +"documentation (don\\*(Aqt take credit for my work), mark your changes " +"(don\\*(Aqt get me blamed for your possible bugs), don\\*(Aqt alter or " +"remove this notice\\&. May be sold if buildable source is provided to " +"buyer\\&. No warranty of any kind, express or implied, is included with this " +"software; use at your own risk, responsibility for damages (if any) to " +"anyone resulting from the use of this software rests entirely with the " +"user\\&." msgstr "" #: archlinux msgid "Do not colorize output\\&." msgstr "" -#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide -#: mageia-cauldron debian-bullseye -msgid "" -"Do not print the version and copyright messages. These messages are also " -"suppressed in non-interactive mode." -msgstr "" - -#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide -#: mageia-cauldron debian-bullseye +#: debian-bookworm debian-unstable archlinux fedora-40 fedora-rawhide +#: mageia-cauldron msgid "" -"Documentation for installed Python modules and packages can be viewed by " -"running the B<pydoc> program." -msgstr "" - -#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide -#: mageia-cauldron debian-bullseye -msgid "Documentation: https://docs.python.org/" -msgstr "" - -#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide -#: mageia-cauldron debian-bullseye -msgid "Don't add user site directory to sys.path." -msgstr "" - -#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide -#: mageia-cauldron debian-bullseye -msgid "Don't write I<.pyc> files on import. See also PYTHONDONTWRITEBYTECODE." -msgstr "" - -#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide -#: mageia-cauldron debian-bullseye -msgid "Downloads: https://www.python.org/downloads/" +"Don't automatically prepend a potentially unsafe path to B<sys.path> such as " +"the current directory, the script's directory or an empty string. See also " +"the B<PYTHONSAFEPATH> environment variable." msgstr "" #: archlinux fedora-40 fedora-rawhide mageia-cauldron opensuse-tumbleweed @@ -3706,7 +3696,7 @@ msgstr "" msgid "E<.An Markus Friedl Aq Mt markus@openbsd.org>" msgstr "" -#: archlinux fedora-40 fedora-rawhide mageia-cauldron opensuse-leap-15-6 +#: fedora-40 fedora-rawhide mageia-cauldron opensuse-leap-15-6 #: opensuse-tumbleweed msgid "E<.MT vixie@isc.org> Paul Vixie E<.ME>" msgstr "" @@ -3754,6 +3744,14 @@ msgstr "" msgid "Each line is in the form" msgstr "" +#: debian-bookworm debian-unstable archlinux fedora-40 fedora-rawhide +#: mageia-cauldron +msgid "" +"Empty fields match all values; trailing empty fields may be omitted. For " +"example B<-W ignore::DeprecationWarning> ignores all DeprecationWarning " +"warnings." +msgstr "" + #: archlinux debian-unstable fedora-40 fedora-rawhide opensuse-tumbleweed #: debian-bookworm mageia-cauldron opensuse-leap-15-6 #, no-wrap @@ -3763,6 +3761,20 @@ msgstr "" #: debian-bookworm debian-unstable fedora-40 fedora-rawhide mageia-cauldron #: opensuse-leap-15-6 opensuse-tumbleweed archlinux #, no-wrap +msgid "Environment variables" +msgstr "" + +#: debian-unstable fedora-rawhide archlinux debian-bookworm fedora-40 +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +msgid "" +"Equivalent to B<--value> B<--property=>, i\\&.e\\&. shows the value of the " +"property without the property name or \"=\"\\&. Note that using B<-P> once " +"will also affect all properties listed with B<-p>/B<--property=>\\&." +msgstr "" + +#: debian-bookworm debian-unstable fedora-40 fedora-rawhide mageia-cauldron +#: opensuse-leap-15-6 opensuse-tumbleweed archlinux +#, no-wrap msgid "Escape sequences" msgstr "" @@ -3778,6 +3790,12 @@ msgstr "" msgid "Example output" msgstr "" +#: debian-unstable fedora-rawhide +msgid "" +"Execute operation on a capsule\\&. Specify a capsule name to connect to\\&. " +"See B<capsule@.service>(5) for details about capsules\\&." +msgstr "" + #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed msgid "" @@ -3877,6 +3895,12 @@ msgstr "" msgid "Fl p Ar port" msgstr "" +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +#, no-wrap +msgid "Fl t Ar type" +msgstr "" + #: debian-bookworm debian-unstable mageia-cauldron fedora-40 fedora-rawhide #: opensuse-leap-15-6 opensuse-tumbleweed #, no-wrap @@ -3917,13 +3941,6 @@ msgid "" "For more information about the fields of this structure, see B<passwd>(5)." msgstr "" -#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide -#: mageia-cauldron debian-bullseye -msgid "" -"Force the stdout and stderr streams to be unbuffered. This option has no " -"effect on the stdin stream." -msgstr "" - #: archlinux fedora-40 fedora-rawhide mageia-cauldron opensuse-leap-15-6 #: opensuse-tumbleweed debian-bookworm debian-unstable #, no-wrap @@ -3969,14 +3986,14 @@ msgstr "" msgid "GNU gettext-runtime 0.21" msgstr "" -#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +#: opensuse-leap-15-6 #, no-wrap msgid "GNU gettext-runtime 0.21.1" msgstr "" -#: archlinux fedora-rawhide +#: archlinux mageia-cauldron opensuse-tumbleweed fedora-40 fedora-rawhide #, no-wrap -msgid "GNU gettext-runtime 0.22.2" +msgid "GNU gettext-runtime 0.22.5" msgstr "" #: opensuse-tumbleweed @@ -4085,45 +4102,19 @@ msgstr "" msgid "I<$XDG_RUNTIME_DIR>" msgstr "" -#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide -#: mageia-cauldron debian-bullseye -#, no-wrap -msgid "I<${exec_prefix}/bin/python>" -msgstr "" - -#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide -#: mageia-cauldron debian-bullseye -msgid "I<${exec_prefix}/include/pythonE<lt>versionE<gt>>" -msgstr "" - -#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide -#: mageia-cauldron debian-bullseye -msgid "I<${exec_prefix}/lib/pythonE<lt>versionE<gt>>" -msgstr "" - -#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide -#: mageia-cauldron debian-bullseye -msgid "I<${prefix}/include/pythonE<lt>versionE<gt>>" -msgstr "" - -#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide -#: mageia-cauldron debian-bullseye -msgid "I<${prefix}/lib/pythonE<lt>versionE<gt>>" -msgstr "" - -#: debian-bookworm opensuse-leap-15-6 archlinux debian-unstable fedora-40 -#: fedora-rawhide mageia-cauldron opensuse-tumbleweed +#: debian-bookworm archlinux debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed #, no-wrap msgid "I</dev/random>" msgstr "" -#: debian-bookworm opensuse-leap-15-6 archlinux debian-unstable fedora-40 -#: fedora-rawhide mageia-cauldron opensuse-tumbleweed +#: debian-bookworm archlinux debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed #, no-wrap msgid "I</dev/urandom>" msgstr "" -#: debian-bookworm opensuse-leap-15-6 +#: debian-bookworm msgid "I</etc/adjtime>" msgstr "" @@ -4169,6 +4160,90 @@ msgstr "" msgid "I</etc/services>" msgstr "" +#: debian-bookworm opensuse-leap-15-6 archlinux debian-unstable fedora-40 +#: fedora-rawhide mageia-cauldron opensuse-tumbleweed +#, no-wrap +msgid "I</proc/>pidI</cgroup> (since Linux 2.6.24)" +msgstr "" + +#: debian-bookworm opensuse-leap-15-6 archlinux debian-unstable fedora-40 +#: fedora-rawhide mageia-cauldron opensuse-tumbleweed +#, no-wrap +msgid "I</proc/>pidI</numa_maps> (since Linux 2.6.14)" +msgstr "" + +#: debian-bookworm opensuse-leap-15-6 archlinux debian-unstable fedora-40 +#: fedora-rawhide mageia-cauldron opensuse-tumbleweed +#, no-wrap +msgid "I</proc/cgroups> (since Linux 2.6.24)" +msgstr "" + +#: debian-bookworm opensuse-leap-15-6 archlinux debian-unstable fedora-40 +#: fedora-rawhide mageia-cauldron opensuse-tumbleweed +#, no-wrap +msgid "I</proc/key-users> (since Linux 2.6.10)" +msgstr "" + +#: debian-bookworm opensuse-leap-15-6 archlinux debian-unstable fedora-40 +#: fedora-rawhide mageia-cauldron opensuse-tumbleweed +#, no-wrap +msgid "I</proc/keys> (since Linux 2.6.10)" +msgstr "" + +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +#, no-wrap +msgid "I</proc/loadavg>" +msgstr "" + +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +#, no-wrap +msgid "I</proc/meminfo>" +msgstr "" + +#: debian-bookworm opensuse-leap-15-6 archlinux debian-unstable fedora-40 +#: fedora-rawhide mageia-cauldron opensuse-tumbleweed +#, no-wrap +msgid "I</proc/net/arp>" +msgstr "" + +#: debian-bookworm opensuse-leap-15-6 archlinux debian-unstable fedora-40 +#: fedora-rawhide mageia-cauldron opensuse-tumbleweed +#, no-wrap +msgid "I</proc/net/dev>" +msgstr "" + +#: debian-bookworm opensuse-leap-15-6 archlinux debian-unstable fedora-40 +#: fedora-rawhide mageia-cauldron opensuse-tumbleweed +#, no-wrap +msgid "I</proc/net/snmp>" +msgstr "" + +#: opensuse-leap-15-6 debian-bookworm archlinux debian-unstable fedora-40 +#: fedora-rawhide mageia-cauldron opensuse-tumbleweed +#, no-wrap +msgid "I</proc/slabinfo>" +msgstr "" + +#: debian-bookworm opensuse-leap-15-6 archlinux debian-unstable fedora-40 +#: fedora-rawhide mageia-cauldron opensuse-tumbleweed +#, no-wrap +msgid "I</proc/sys/fs/pipe-max-size> (since Linux 2.6.35)" +msgstr "" + +#: debian-bookworm opensuse-leap-15-6 archlinux debian-unstable fedora-40 +#: fedora-rawhide mageia-cauldron opensuse-tumbleweed +#, no-wrap +msgid "I</proc/sys/fs/pipe-user-pages-hard> (since Linux 4.5)" +msgstr "" + +#: debian-bookworm opensuse-leap-15-6 archlinux debian-unstable fedora-40 +#: fedora-rawhide mageia-cauldron opensuse-tumbleweed +#, no-wrap +msgid "I</proc/sys/fs/pipe-user-pages-soft> (since Linux 4.5)" +msgstr "" + #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: opensuse-leap-15-6 opensuse-tumbleweed mageia-cauldron #, no-wrap @@ -4191,6 +4266,12 @@ msgstr "" msgid "I<Broadcast=>" msgstr "" +#: debian-unstable fedora-rawhide archlinux debian-bookworm fedora-40 +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +#, no-wrap +msgid "I<CacheDirectory=>" +msgstr "" + #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed msgid "I<CapabilityBoundingSet=>" @@ -4201,6 +4282,12 @@ msgstr "" msgid "I<Compress=>" msgstr "" +#: debian-unstable fedora-rawhide archlinux debian-bookworm fedora-40 +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +#, no-wrap +msgid "I<ConfigurationDirectory=>" +msgstr "" + #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-tumbleweed opensuse-leap-15-6 msgid "I<DNS=>" @@ -4242,7 +4329,7 @@ msgid "I<Driver=>" msgstr "" #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide -#: mageia-cauldron opensuse-tumbleweed opensuse-leap-15-6 +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed msgid "I<Encrypt=>" msgstr "" @@ -4251,13 +4338,19 @@ msgstr "" msgid "I<Environment=>" msgstr "" +#: debian-unstable fedora-rawhide archlinux debian-bookworm fedora-40 +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +#, no-wrap +msgid "I<FileDescriptorStorePreserve=>" +msgstr "" + #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed msgid "I<FirewallMark=>" msgstr "" #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide -#: mageia-cauldron opensuse-tumbleweed opensuse-leap-15-6 +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed msgid "I<Flags=>" msgstr "" @@ -4284,6 +4377,14 @@ msgstr "" msgid "I<Hostname=>" msgstr "" +#: debian-unstable fedora-rawhide +msgid "I<IPv4Forwarding=>" +msgstr "" + +#: debian-unstable fedora-rawhide +msgid "I<IPv6Forwarding=>" +msgstr "" + #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-tumbleweed opensuse-leap-15-6 msgid "I<IPv6PrivacyExtensions=>" @@ -4334,6 +4435,12 @@ msgstr "" msgid "I<LoaderImageIdentifier>" msgstr "" +#: debian-unstable fedora-rawhide archlinux debian-bookworm fedora-40 +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +#, no-wrap +msgid "I<LogsDirectory=>" +msgstr "" + #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed msgid "I<MACSpoofCheck=>" @@ -4364,6 +4471,12 @@ msgstr "" msgid "I<NUMAPolicy=>" msgstr "" +#: debian-bookworm opensuse-leap-15-6 archlinux debian-unstable fedora-40 +#: fedora-rawhide mageia-cauldron opensuse-tumbleweed +#, no-wrap +msgid "I<Name>" +msgstr "" + #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed msgid "I<OOMPolicy=>" @@ -4404,6 +4517,11 @@ msgstr "" msgid "I<Property=>" msgstr "" +#: debian-unstable fedora-rawhide archlinux debian-bookworm fedora-40 +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +msgid "I<ProtectSystem=>" +msgstr "" + #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed msgid "I<Protocol=>" @@ -4444,6 +4562,12 @@ msgstr "" msgid "I<RouteTable=>" msgstr "" +#: debian-unstable fedora-rawhide archlinux debian-bookworm fedora-40 +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +#, no-wrap +msgid "I<RuntimeDirectory=>" +msgstr "" + #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed msgid "I<RuntimeMaxSec=>" @@ -4486,6 +4610,18 @@ msgstr "" msgid "I<SplitMode=>" msgstr "" +#: debian-bookworm opensuse-leap-15-6 archlinux debian-unstable fedora-40 +#: fedora-rawhide mageia-cauldron opensuse-tumbleweed +#, no-wrap +msgid "I<State>" +msgstr "" + +#: debian-unstable fedora-rawhide archlinux debian-bookworm fedora-40 +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +#, no-wrap +msgid "I<StateDirectory=>" +msgstr "" + #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed msgid "I<SystemCallArchitectures=>" @@ -4531,6 +4667,11 @@ msgstr "" msgid "I<Unit=>" msgstr "" +#: debian-unstable fedora-rawhide archlinux debian-bookworm fedora-40 +#: mageia-cauldron opensuse-tumbleweed opensuse-leap-15-6 +msgid "I<UseDomains=>" +msgstr "" + #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed msgid "I<VLANId=>" @@ -4641,17 +4782,40 @@ msgstr "" msgid "I<fstab\\&.extra>" msgstr "" -#: debian-bookworm debian-unstable fedora-40 fedora-rawhide mageia-cauldron -#: opensuse-leap-15-6 opensuse-tumbleweed +#: debian-unstable fedora-rawhide +msgid "I<home\\&.create\\&.*>" +msgstr "" + +#: debian-bookworm fedora-40 fedora-rawhide opensuse-leap-15-6 msgid "I<http://www.sane-project.org/mailing-lists.html>" msgstr "" +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +#, no-wrap +msgid "I<ino>" +msgstr "" + +#: debian-unstable fedora-rawhide +msgid "I<journal\\&.forward_to_socket>" +msgstr "" + +#: debian-unstable fedora-rawhide +msgid "I<journal\\&.storage>" +msgstr "" + #: archlinux debian-bookworm debian-unstable mageia-cauldron opensuse-leap-15-6 #: opensuse-tumbleweed #, no-wrap msgid "I<lorder>" msgstr "" +#: debian-bookworm opensuse-leap-15-6 archlinux debian-unstable fedora-40 +#: fedora-rawhide mageia-cauldron opensuse-tumbleweed +#, no-wrap +msgid "I<mask>" +msgstr "" + #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed #, no-wrap @@ -4670,7 +4834,7 @@ msgstr "" msgid "I<offset>" msgstr "" -#: archlinux debian-bookworm opensuse-leap-15-6 debian-unstable fedora-40 +#: debian-bookworm opensuse-leap-15-6 archlinux debian-unstable fedora-40 #: fedora-rawhide mageia-cauldron opensuse-tumbleweed #, no-wrap msgid "I<other>" @@ -4709,6 +4873,11 @@ msgstr "" msgid "I<quotacheck\\&.mode=>" msgstr "" +#: debian-unstable fedora-rawhide archlinux debian-bookworm fedora-40 +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +msgid "I<resume_offset=>" +msgstr "" + #: archlinux debian-unstable fedora-40 fedora-rawhide opensuse-tumbleweed #: debian-bookworm mageia-cauldron opensuse-leap-15-6 #, no-wrap @@ -4743,11 +4912,6 @@ msgstr "" #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed -msgid "I<systemd\\&.firstboot=>" -msgstr "" - -#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide -#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed msgid "I<systemd\\&.getty_auto=>" msgstr "" @@ -4818,18 +4982,6 @@ msgid "INPUTFILE ..." msgstr "" #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide -#: mageia-cauldron debian-bullseye -#, no-wrap -msgid "INTERNET RESOURCES" -msgstr "" - -#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide -#: mageia-cauldron debian-bullseye -#, no-wrap -msgid "INTERPRETER INTERFACE" -msgstr "" - -#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron #, no-wrap msgid "IPQoS" @@ -4871,8 +5023,8 @@ msgstr "" msgid "IdentityFile" msgstr "" -#: archlinux fedora-40 fedora-rawhide mageia-cauldron debian-bookworm -#: debian-unstable opensuse-leap-15-6 opensuse-tumbleweed +#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron +#: opensuse-tumbleweed debian-bookworm opensuse-leap-15-6 msgid "" "If I<pathname> is an empty string, operate on the file referred to by " "I<dirfd> (which may have been obtained using the B<open>(2) B<O_PATH> " @@ -4887,41 +5039,12 @@ msgstr "" msgid "If I<x> is integral, +0, -0, NaN, or infinite, I<x> itself is returned." msgstr "" -#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide -#: mageia-cauldron debian-bullseye -msgid "" -"If PYTHONHASHSEED is set to an integer value, it is used as a fixed seed for " -"generating the hash() of the types covered by the hash randomization. Its " -"purpose is to allow repeatable hashing, such as for selftests for the " -"interpreter itself, or to allow a cluster of python processes to share hash " -"values." -msgstr "" - -#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide -#: mageia-cauldron debian-bullseye -msgid "" -"If available, the script name and additional arguments thereafter are passed " -"to the script in the Python variable I<sys.argv>, which is a list of strings " -"(you must first I<import sys> to be able to access it). If no script name " -"is given, I<sys.argv[0]> is an empty string; if B<-c> is used, I<sys." -"argv[0]> contains the string I<'-c'.> Note that options interpreted by the " -"Python interpreter itself are not placed in I<sys.argv>." -msgstr "" - #: debian-bookworm debian-unstable fedora-40 fedora-rawhide msgid "" "If no FILE is specified then the command acts like a filter, getting the " "data from standard input and writing the result to standard output." msgstr "" -#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide -#: mageia-cauldron debian-bullseye -msgid "" -"If set to a non-empty string, Python will print statistics of the pymalloc " -"memory allocator every time a new pymalloc object arena is created, and on " -"shutdown." -msgstr "" - #: debian-bookworm debian-unstable fedora-40 fedora-rawhide mageia-cauldron #: archlinux opensuse-leap-15-6 opensuse-tumbleweed msgid "" @@ -4948,146 +5071,12 @@ msgid "" "same as I<x>." msgstr "" -#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide -#: mageia-cauldron debian-bullseye -msgid "" -"If this environment variable is set to 0, it disables the default debugger. " -"It can be set to the callable of your debugger of choice." -msgstr "" - -#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide -#: mageia-cauldron debian-bullseye -msgid "" -"If this environment variable is set to a non-empty string, I<faulthandler." -"enable()> is called at startup: install a handler for SIGSEGV, SIGFPE, " -"SIGABRT, SIGBUS and SIGILL signals to dump the Python traceback." -msgstr "" - -#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide -#: mageia-cauldron debian-bullseye -msgid "" -"If this environment variable is set to a non-empty string, Python will show " -"how long each import takes. This is exactly equivalent to setting B<-X " -"importtime> on the command line." -msgstr "" - -#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide -#: mageia-cauldron debian-bullseye -msgid "" -"If this environment variable is set to a non-empty string, enable the debug " -"mode of the asyncio module." -msgstr "" - -#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide -#: mageia-cauldron debian-bullseye -msgid "" -"If this environment variable is set to a non-empty string, start tracing " -"Python memory allocations using the tracemalloc module." -msgstr "" - -#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide -#: mageia-cauldron debian-bullseye -msgid "" -"If this environment variable is set, I<sys.argv[0]> will be set to its value " -"instead of the value got through the C runtime. Only works on Mac OS X." -msgstr "" - -#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide -#: mageia-cauldron debian-bullseye -msgid "" -"If this environment variable is set, Python will dump objects and reference " -"counts still alive after shutting down the interpreter." -msgstr "" - -#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide -#: mageia-cauldron debian-bullseye -#, no-wrap -msgid "" -"If this is set before running the interpreter, it overrides the encoding used\n" -"for stdin/stdout/stderr, in the syntax\n" -"I<encodingname>B<:>I<errorhandler>\n" -"The\n" -"I<errorhandler>\n" -"part is optional and has the same meaning as in str.encode. For stderr, the\n" -"I<errorhandler>\n" -" part is ignored; the handler will always be \\'backslashreplace\\'.\n" -msgstr "" - -#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide -#: mageia-cauldron debian-bullseye -msgid "" -"If this is set to a comma-separated string it is equivalent to specifying " -"the B<-W> option for each separate value." -msgstr "" - -#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide -#: mageia-cauldron debian-bullseye -msgid "" -"If this is set to a non-empty string it is equivalent to specifying the B<-" -"B> option (don't try to write I<.pyc> files)." -msgstr "" - -#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide -#: mageia-cauldron debian-bullseye -msgid "" -"If this is set to a non-empty string it is equivalent to specifying the B<-" -"O> option. If set to an integer, it is equivalent to specifying B<-O> " -"multiple times." -msgstr "" - -#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide -#: mageia-cauldron debian-bullseye -msgid "" -"If this is set to a non-empty string it is equivalent to specifying the B<-" -"d> option. If set to an integer, it is equivalent to specifying B<-d> " -"multiple times." -msgstr "" - -#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide -#: mageia-cauldron debian-bullseye -msgid "" -"If this is set to a non-empty string it is equivalent to specifying the B<-" -"i> option." -msgstr "" - -#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide -#: mageia-cauldron debian-bullseye -msgid "" -"If this is set to a non-empty string it is equivalent to specifying the B<-" -"s> option (Don't add the user site directory to sys.path)." -msgstr "" - -#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide -#: mageia-cauldron debian-bullseye -msgid "" -"If this is set to a non-empty string it is equivalent to specifying the B<-" -"u> option." -msgstr "" - -#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide -#: mageia-cauldron debian-bullseye -msgid "" -"If this is set to a non-empty string it is equivalent to specifying the B<-" -"v> option. If set to an integer, it is equivalent to specifying B<-v> " -"multiple times." -msgstr "" - -#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide -#: mageia-cauldron debian-bullseye -msgid "" -"If this is the name of a readable file, the Python commands in that file are " -"executed before the first prompt is displayed in interactive mode. The file " -"is executed in the same name space where interactive commands are executed " -"so that objects defined or imported in it can be used without qualification " -"in the interactive session. You can also change the prompts I<sys.ps1> and " -"I<sys.ps2> in this file." -msgstr "" - -#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide -#: mageia-cauldron debian-bullseye +#: debian-bookworm debian-unstable archlinux fedora-40 fedora-rawhide +#: mageia-cauldron msgid "" -"If this variable is set to \"random\", a random value is used to seed the " -"hashes of str and bytes objects." +"If this is set to a non-empty string, don't automatically prepend a " +"potentially unsafe path to B<sys.path> such as the current directory, the " +"script's directory or an empty string. See also the B<-P> option." msgstr "" #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide @@ -5106,6 +5095,13 @@ msgstr "" msgid "If you have support questions, send them to" msgstr "" +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +msgid "" +"If you notice any strange behavior, please report to the backend maintainer " +"or to the SANE mailing list." +msgstr "" + #: debian-bookworm debian-unstable fedora-40 fedora-rawhide mageia-cauldron #: opensuse-leap-15-6 opensuse-tumbleweed msgid "" @@ -5113,25 +5109,10 @@ msgid "" "send a subscription request to" msgstr "" -#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide -#: mageia-cauldron debian-bullseye -msgid "" -"Ignore environment variables like PYTHONPATH and PYTHONHOME that modify the " -"behavior of the interpreter." -msgstr "" - -#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide -#: mageia-cauldron debian-bullseye +#: debian-unstable fedora-rawhide msgid "" -"In interactive mode, the primary prompt is `E<gt>E<gt>E<gt>'; the second " -"prompt (which appears when a command is not complete) is `...'. The prompts " -"can be changed by assignment to I<sys.ps1> or I<sys.ps2>. The interpreter " -"quits when it reads an EOF at a prompt. When an unhandled exception occurs, " -"a stack trace is printed and control returns to the primary prompt; in non-" -"interactive mode, the interpreter exits after printing the stack trace. The " -"interrupt signal raises the I<Keyboard\\%Interrupt> exception; other UNIX " -"signals are not caught (except that SIGPIPE is sometimes ignored, in favor " -"of the I<IOError> exception). Error messages are written to stderr." +"In place of the directory path a \"\\&.v/\" versioned directory may be " +"specified, see B<systemd.v>(7) for details\\&." msgstr "" #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide @@ -5141,11 +5122,6 @@ msgstr "" #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed -msgid "Interface Portability and Stability Promise" -msgstr "" - -#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide -#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed msgid "Invalid argument passed." msgstr "" @@ -5155,17 +5131,15 @@ msgid "Invalid argument." msgstr "" #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide -#: mageia-cauldron debian-bullseye -msgid "" -"Issue warnings about str(bytes_instance), str(bytearray_instance) and " -"comparing bytes/bytearray with str. (-bb: issue errors)" -msgstr "" - -#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed msgid "Journal JSON Format" msgstr "" +#: mageia-cauldron +#, no-wrap +msgid "July 1997" +msgstr "" + #: debian-bookworm debian-unstable opensuse-leap-15-6 opensuse-tumbleweed #: archlinux fedora-40 fedora-rawhide mageia-cauldron #, no-wrap @@ -5208,8 +5182,12 @@ msgstr "" msgid "KbdInteractiveDevices" msgstr "" -#: archlinux fedora-40 fedora-rawhide mageia-cauldron debian-bookworm -#: debian-unstable opensuse-leap-15-6 opensuse-tumbleweed +#: mageia-cauldron +msgid "Keith Owens E<lt>kaos@ocs.com.auE<gt>" +msgstr "" + +#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron +#: opensuse-tumbleweed debian-bookworm opensuse-leap-15-6 #, no-wrap msgid "Kernel" msgstr "" @@ -5489,47 +5467,40 @@ msgstr "" msgid "LEFT SINGLE QUOTATION MARK" msgstr "" -#: opensuse-leap-15-6 -msgid "LIBMOUNT_FSTAB=E<lt>pathE<gt>" -msgstr "" - -#: opensuse-leap-15-6 -msgid "LIBMOUNT_MTAB=E<lt>pathE<gt>" -msgstr "" - -#: opensuse-leap-15-6 -msgid "LIBSMARTCOLS_DEBUG=all" -msgstr "" - -#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide -#: mageia-cauldron debian-bullseye -#, no-wrap -msgid "LICENSING" -msgstr "" - -#: debian-bookworm debian-unstable fedora-40 fedora-rawhide mageia-cauldron -#: opensuse-leap-15-6 opensuse-tumbleweed archlinux -#, no-wrap -msgid "LINES" -msgstr "" - #: debian-bookworm debian-unstable fedora-40 fedora-rawhide archlinux #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed #, no-wrap msgid "LIST" msgstr "" +#: debian-bookworm +msgid "LOCK_BLOCK_DEVICE=E<lt>modeE<gt>" +msgstr "" + #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed msgid "Landlock is supported by the kernel but disabled at boot time." msgstr "" +#: debian-bookworm debian-unstable archlinux fedora-40 fedora-rawhide +#: mageia-cauldron +msgid "" +"Limit the maximum digit characters in an int value when converting from a " +"string and when converting an int back to a str. A value of 0 disables the " +"limit. Conversions to or from bases 2, 4, 8, 16, and 32 are never limited." +msgstr "" + #: archlinux debian-unstable fedora-40 fedora-rawhide opensuse-tumbleweed #: debian-bookworm mageia-cauldron opensuse-leap-15-6 #, no-wrap msgid "Limitations" msgstr "" +#: mageia-cauldron +#, no-wrap +msgid "Linux 2.0.30" +msgstr "" + #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed #, no-wrap @@ -5615,20 +5586,36 @@ msgstr "" msgid "MT-Unsafe race" msgstr "" -#: debian-bookworm debian-unstable fedora-40 fedora-rawhide mageia-cauldron -#: opensuse-leap-15-6 opensuse-tumbleweed +#: debian-bookworm fedora-40 fedora-rawhide opensuse-leap-15-6 msgid "Mailing-List archive at:" msgstr "" -#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide -#: mageia-cauldron debian-bullseye -msgid "Main website: https://www.python.org/" +#: debian-unstable +msgid "Maintained the package (1996-2005)\\&." +msgstr "" + +#: debian-unstable +msgid "Maintained the package (2005-2014)\\&." +msgstr "" + +#: debian-unstable +msgid "Maintained the package (2010-2016)\\&." +msgstr "" + +#: debian-unstable +msgid "Maintained the package (2022-2024)\\&." msgstr "" #: archlinux msgid "Maintainers:" msgstr "" +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +#, no-wrap +msgid "Many thanks go to:" +msgstr "" + #: opensuse-leap-15-6 #, no-wrap msgid "" @@ -5653,16 +5640,11 @@ msgid "" "assigned, the previously assigned value is cleared\\&." msgstr "" -#: archlinux fedora-40 fedora-rawhide opensuse-tumbleweed +#: archlinux fedora-40 opensuse-tumbleweed msgid "Miloslav Trmac E<lt>mitr@redhat.comE<gt>" msgstr "" #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide -#: mageia-cauldron debian-bullseye -msgid "Module repository: https://pypi.org/" -msgstr "" - -#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed msgid "Mount crypto devices." msgstr "" @@ -5673,12 +5655,16 @@ msgstr "" msgid "Mount options" msgstr "" -#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide -#: mageia-cauldron debian-bullseye -msgid "Newsgroups: comp.lang.python, comp.lang.python.announce" +#: debian-bookworm debian-unstable archlinux fedora-40 fedora-rawhide +#: mageia-cauldron +msgid "" +"Multiple B<-W> options can be given; when a warning matches more than one " +"option, the action for the last matching option is performed. Invalid B<-W> " +"options are ignored (though, a warning message is printed about invalid " +"options when the first warning is issued)." msgstr "" -#: debian-bookworm opensuse-leap-15-6 +#: debian-bookworm msgid "No errors" msgstr "" @@ -5791,7 +5777,7 @@ msgstr "" msgid "Operation modifiers:" msgstr "" -#: debian-bookworm opensuse-leap-15-6 +#: debian-bookworm msgid "Operational error" msgstr "" @@ -5808,11 +5794,6 @@ msgid "Other options" msgstr "" #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide -#: mageia-cauldron debian-bullseye -msgid "Override sys.platlibdir." -msgstr "" - -#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed #, no-wrap msgid "PATH" @@ -5824,8 +5805,8 @@ msgstr "" msgid "PATTERNS" msgstr "" -#: debian-bookworm opensuse-leap-15-6 archlinux debian-unstable fedora-40 -#: fedora-rawhide mageia-cauldron opensuse-tumbleweed +#: debian-bookworm archlinux debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed #, no-wrap msgid "PERMISSIONS" msgstr "" @@ -5860,154 +5841,16 @@ msgstr "" msgid "POSIX.2." msgstr "" -#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide -#: mageia-cauldron debian-bullseye -#, no-wrap -msgid "PYTHON" -msgstr "" - -#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide -#: mageia-cauldron debian-bullseye -#, no-wrap -msgid "PYTHONASYNCIODEBUG" -msgstr "" - -#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide -#: mageia-cauldron debian-bullseye -#, no-wrap -msgid "PYTHONBREAKPOINT" -msgstr "" - -#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide -#: mageia-cauldron debian-bullseye -#, no-wrap -msgid "PYTHONDEBUG" -msgstr "" - -#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide -#: mageia-cauldron debian-bullseye -#, no-wrap -msgid "PYTHONDONTWRITEBYTECODE" -msgstr "" - -#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide -#: mageia-cauldron debian-bullseye -#, no-wrap -msgid "PYTHONDUMPREFS" -msgstr "" - -#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide -#: mageia-cauldron debian-bullseye -#, no-wrap -msgid "PYTHONEXECUTABLE" -msgstr "" - -#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide -#: mageia-cauldron debian-bullseye -#, no-wrap -msgid "PYTHONFAULTHANDLER" -msgstr "" - -#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide -#: mageia-cauldron debian-bullseye -#, no-wrap -msgid "PYTHONHASHSEED" -msgstr "" - -#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide -#: mageia-cauldron debian-bullseye -#, no-wrap -msgid "PYTHONHOME" -msgstr "" - -#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide -#: mageia-cauldron debian-bullseye -#, no-wrap -msgid "PYTHONINSPECT" -msgstr "" - -#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide -#: mageia-cauldron debian-bullseye -#, no-wrap -msgid "PYTHONIOENCODING" -msgstr "" - -#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide -#: mageia-cauldron debian-bullseye -#, no-wrap -msgid "PYTHONMALLOC" -msgstr "" - -#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide -#: mageia-cauldron debian-bullseye -#, no-wrap -msgid "PYTHONMALLOCSTATS" -msgstr "" - -#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide -#: mageia-cauldron debian-bullseye -#, no-wrap -msgid "PYTHONNOUSERSITE" -msgstr "" - -#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide -#: mageia-cauldron debian-bullseye -#, no-wrap -msgid "PYTHONOPTIMIZE" -msgstr "" - -#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide -#: mageia-cauldron debian-bullseye -#, no-wrap -msgid "PYTHONPATH" -msgstr "" - -#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide -#: mageia-cauldron debian-bullseye -#, no-wrap -msgid "PYTHONPLATLIBDIR" -msgstr "" - -#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide -#: mageia-cauldron debian-bullseye -#, no-wrap -msgid "PYTHONPROFILEIMPORTTIME" -msgstr "" - -#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide -#: mageia-cauldron debian-bullseye -#, no-wrap -msgid "PYTHONSTARTUP" -msgstr "" - -#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide -#: mageia-cauldron debian-bullseye -#, no-wrap -msgid "PYTHONTRACEMALLOC" -msgstr "" - -#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide -#: mageia-cauldron debian-bullseye -#, no-wrap -msgid "PYTHONUNBUFFERED" -msgstr "" - -#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide -#: mageia-cauldron debian-bullseye -#, no-wrap -msgid "PYTHONUSERBASE" -msgstr "" - -#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide -#: mageia-cauldron debian-bullseye +#: debian-bookworm debian-unstable archlinux fedora-40 fedora-rawhide +#: mageia-cauldron #, no-wrap -msgid "PYTHONVERBOSE" +msgid "PYTHONINTMAXSTRDIGITS" msgstr "" -#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide -#: mageia-cauldron debian-bullseye +#: debian-bookworm debian-unstable archlinux fedora-40 fedora-rawhide +#: mageia-cauldron #, no-wrap -msgid "PYTHONWARNINGS" +msgid "PYTHONSAFEPATH" msgstr "" #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide @@ -6070,20 +5913,6 @@ msgstr "" msgid "Pa ~/.ssh/id_rsa" msgstr "" -#: opensuse-tumbleweed -msgid "" -"Packages should install their configuration files in /usr/lib/ (distribution " -"packages) or /usr/local/lib/ (local installs)\\&. Files in /etc/ are " -"reserved for the local administrator, who may use this logic to override the " -"configuration files installed by vendor packages\\&. It is recommended to " -"prefix all filenames with a two-digit number and a dash, to simplify the " -"ordering of the files\\&. It is recommended to use the range 10-40 for " -"configuration files in /usr/ and the range 60-90 for configuration files in /" -"etc/ and /run/, to make sure that local and transient configuration files " -"will always take priority over configuration files shipped by the OS " -"vendor\\&." -msgstr "" - #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron #, no-wrap @@ -6138,8 +5967,8 @@ msgstr "" msgid "Portability notes" msgstr "" -#: opensuse-leap-15-6 debian-bookworm debian-unstable opensuse-tumbleweed -#: archlinux fedora-40 fedora-rawhide mageia-cauldron +#: opensuse-leap-15-6 debian-bookworm archlinux debian-unstable fedora-40 +#: fedora-rawhide mageia-cauldron opensuse-tumbleweed #, no-wrap msgid "PowerPC" msgstr "" @@ -6151,15 +5980,6 @@ msgid "PreferredAuthentications" msgstr "" #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide -#: mageia-cauldron debian-bullseye -msgid "" -"Print a message each time a module is initialized, showing the place " -"(filename or built-in module) from which it is loaded. When given twice, " -"print a message for each file that is checked for when searching for a " -"module. Also provides information on module cleanup at exit." -msgstr "" - -#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: opensuse-leap-15-6 opensuse-tumbleweed mageia-cauldron msgid "Print a usage summary and exit." msgstr "" @@ -6169,16 +5989,19 @@ msgstr "" msgid "Print verbose internal information." msgstr "" -#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide -#: mageia-cauldron debian-bullseye -msgid "" -"Prints the Python version number of the executable and exits. When given " -"twice, print more information about the build." +#: debian-bookworm debian-unstable archlinux fedora-40 fedora-rawhide +#: mageia-cauldron +msgid "Prints complete usage information and exits." msgstr "" -#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide -#: mageia-cauldron debian-bullseye -msgid "Prints the usage for the interpreter executable and exits." +#: debian-bookworm debian-unstable archlinux fedora-40 fedora-rawhide +#: mageia-cauldron +msgid "Prints help about Python-specific environment variables and exits." +msgstr "" + +#: debian-bookworm debian-unstable archlinux fedora-40 fedora-rawhide +#: mageia-cauldron +msgid "Prints help about implementation-specific B<-X> options and exits." msgstr "" #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide @@ -6217,37 +6040,6 @@ msgid "Purpose" msgstr "" #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide -#: mageia-cauldron debian-bullseye -msgid "" -"Python is an interpreted, interactive, object-oriented programming language " -"that combines remarkable power with very clear syntax. For an introduction " -"to programming in Python, see the Python Tutorial. The Python Library " -"Reference documents built-in and standard types, constants, functions and " -"modules. Finally, the Python Reference Manual describes the syntax and " -"semantics of the core language in (perhaps too) much detail. (These " -"documents may be located via the B<INTERNET RESOURCES> below; they may be " -"installed on your system as well.)" -msgstr "" - -#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide -#: mageia-cauldron debian-bullseye -msgid "" -"Python is distributed under an Open Source license. See the file " -"\"LICENSE\" in the Python source distribution for information on terms & " -"conditions for accessing and otherwise using Python and for a DISCLAIMER OF " -"ALL WARRANTIES." -msgstr "" - -#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide -#: mageia-cauldron debian-bullseye -msgid "" -"Python's basic power can be extended with your own modules written in C or C+" -"+. On most systems such modules may be dynamically loaded. Python is also " -"adaptable as an extension language for existing applications. See the " -"internal documentation for hints." -msgstr "" - -#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed #, no-wrap msgid "QUOTING" @@ -6292,24 +6084,6 @@ msgstr "" msgid "Read by user" msgstr "" -#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide -#: mageia-cauldron debian-bullseye -msgid "Recommended location of the interpreter." -msgstr "" - -#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide -#: mageia-cauldron debian-bullseye -msgid "" -"Recommended locations of the directories containing the include files needed " -"for developing Python extensions and embedding the interpreter." -msgstr "" - -#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide -#: mageia-cauldron debian-bullseye -msgid "" -"Recommended locations of the directories containing the standard modules." -msgstr "" - #: opensuse-leap-15-6 #, no-wrap msgid "Red Hat, Inc" @@ -6332,14 +6106,6 @@ msgstr "" msgid "Remount file system read-only." msgstr "" -#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide -#: mageia-cauldron debian-bullseye -msgid "" -"Remove assert statements and any code conditional on the value of __debug__; " -"augment the filename for compiled (bytecode) files by adding .opt-1 before " -"the .pyc extension." -msgstr "" - #: archlinux debian-unstable fedora-40 fedora-rawhide opensuse-leap-15-6 #: opensuse-tumbleweed msgid "Removed in Linux 2.6." @@ -6351,7 +6117,7 @@ msgid "Report any other issue via the form at the GNU Savannah bug tracker:" msgstr "" #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide -#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +#: opensuse-leap-15-6 opensuse-tumbleweed mageia-cauldron msgid "Report bugs at https://github.com/gwsw/less/issues." msgstr "" @@ -6397,6 +6163,16 @@ msgid "" "system, from which you can get more details." msgstr "" +#: debian-bookworm debian-unstable archlinux fedora-40 fedora-rawhide +#: mageia-cauldron +msgid "" +"Run Python in isolated mode. This also implies B<-E>, B<-P> and B<-s>. In " +"isolated mode sys.path contains neither the script's directory nor the " +"user's site-packages directory. All PYTHON* environment variables are " +"ignored, too. Further restrictions may be imposed to prevent the user from " +"injecting malicious code." +msgstr "" + #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed msgid "SGR substring for non-zero statistics values." @@ -6482,6 +6258,14 @@ msgstr "" msgid "S_TIME_FORMAT" msgstr "" +#: debian-bookworm debian-unstable archlinux fedora-40 fedora-rawhide +#: mageia-cauldron +msgid "" +"Searches I<sys.path> for the named module and runs the corresponding I<.py> " +"file as a script. This terminates the option list (following options are " +"passed as arguments to the module)." +msgstr "" + #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: opensuse-leap-15-6 opensuse-tumbleweed mageia-cauldron #, no-wrap @@ -6494,6 +6278,16 @@ msgstr "" msgid "See Also" msgstr "" +#: debian-bookworm opensuse-leap-15-6 archlinux debian-unstable fedora-40 +#: fedora-rawhide mageia-cauldron opensuse-tumbleweed +msgid "See B<cgroups>(7)." +msgstr "" + +#: debian-bookworm opensuse-leap-15-6 archlinux debian-unstable fedora-40 +#: fedora-rawhide mageia-cauldron opensuse-tumbleweed +msgid "See B<core>(5)." +msgstr "" + #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed msgid "See B<landlock>(7)." @@ -6504,10 +6298,9 @@ msgstr "" msgid "See B<pthread_setschedparam>(3)." msgstr "" -#: opensuse-leap-15-6 -msgid "" -"See B<terminal-colors.d>(5) for more details about colorization " -"configuration." +#: debian-bookworm opensuse-leap-15-6 archlinux debian-unstable fedora-40 +#: fedora-rawhide mageia-cauldron opensuse-tumbleweed +msgid "See B<sched>(7)." msgstr "" #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide @@ -6553,12 +6346,10 @@ msgstr "" msgid "Set debug environment variable." msgstr "" -#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide -#: mageia-cauldron debian-bullseye +#: debian-bookworm debian-unstable archlinux fedora-40 fedora-rawhide +#: mageia-cauldron msgid "" -"Set the Python memory allocators and/or install debug hooks. The available " -"memory allocators are I<malloc> and I<pymalloc>. The available debug hooks " -"are I<debug>, I<malloc_debug>, and I<pymalloc_debug>." +"Set implementation-specific option. The following options are available:" msgstr "" #: archlinux debian-bookworm debian-unstable mageia-cauldron opensuse-leap-15-6 @@ -6586,13 +6377,6 @@ msgid "" "errors." msgstr "" -#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide -#: mageia-cauldron debian-bullseye -msgid "" -"Setting these variables only has an effect in a debug build of Python, that " -"is, if Python was configured with the B<--with-pydebug> build option." -msgstr "" - #: archlinux msgid "Show a help text" msgstr "" @@ -6614,11 +6398,11 @@ msgid "" "undefined results." msgstr "" -#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide -#: mageia-cauldron debian-bullseye +#: debian-unstable msgid "" -"Skip the first line of the source. This is intended for a DOS specific hack " -"only. Warning: the line numbers in error messages will be off by one!" +"Since year 1994, many modifications were made in this manpage, authored by " +"Debian Developers which maintained cron; above is a short list, more " +"information can be found in the file /usr/share/doc/cron/copyright\\&." msgstr "" #: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron @@ -6649,23 +6433,10 @@ msgid "" msgstr "" #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide -#: mageia-cauldron debian-bullseye -msgid "" -"Specify the command to execute (see next section). This terminates the " -"option list (following options are passed as arguments to the command)." -msgstr "" - -#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed msgid "St\\['e]phane Voltz E<lt>I<stef.dev@free.fr>E<gt>" msgstr "" -#: debian-unstable opensuse-tumbleweed fedora-40 fedora-rawhide mageia-cauldron -#: archlinux debian-bookworm opensuse-leap-15-6 -#, no-wrap -msgid "Standard" -msgstr "" - #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-tumbleweed opensuse-leap-15-6 msgid "Standard C library (I<libc>)" @@ -6708,7 +6479,11 @@ msgstr "" msgid "System-wide configuration file." msgstr "" -#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron +#: archlinux debian-unstable fedora-rawhide mageia-cauldron opensuse-tumbleweed +msgid "TCG Canonical Event Log Format (CEL-JSON)" +msgstr "" + +#: fedora-40 msgid "TCG Common Event Log Format (CEL-JSON)" msgstr "" @@ -6721,7 +6496,7 @@ msgstr "" #: debian-bookworm debian-unstable fedora-40 fedora-rawhide mageia-cauldron #: opensuse-leap-15-6 opensuse-tumbleweed archlinux #, no-wrap -msgid "TERMCAP" +msgid "TERM" msgstr "" #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide @@ -6790,7 +6565,23 @@ msgstr "" msgid "The E<.Nm> command appeared in E<.Bx 4.2>." msgstr "" -#: debian-bookworm opensuse-leap-15-6 fedora-rawhide +#: debian-bookworm debian-unstable archlinux fedora-40 fedora-rawhide +#: mageia-cauldron +msgid "" +"The I<action> field is as explained above but only applies to warnings that " +"match the remaining fields." +msgstr "" + +#: debian-bookworm debian-unstable archlinux fedora-40 fedora-rawhide +#: mageia-cauldron +msgid "" +"The I<category> field matches the warning category (ex: " +"\"DeprecationWarning\"). This must be a class name; the match test whether " +"the actual warning category of the message is a subclass of the specified " +"warning category." +msgstr "" + +#: debian-bookworm fedora-rawhide msgid "The I<device> argument is the pathname of the block device." msgstr "" @@ -6801,9 +6592,25 @@ msgid "" "settable using B<IPC_SET>):" msgstr "" -#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide -#: mageia-cauldron debian-bullseye -msgid "The Python Software Foundation: https://www.python.org/psf/" +#: debian-bookworm debian-unstable archlinux fedora-40 fedora-rawhide +#: mageia-cauldron +msgid "" +"The I<lineno> field matches the line number, where zero matches all line " +"numbers and is thus equivalent to an omitted line number." +msgstr "" + +#: debian-bookworm debian-unstable archlinux fedora-40 fedora-rawhide +#: mageia-cauldron +msgid "" +"The I<message> field must match the whole printed warning message; this " +"match is case-insensitive." +msgstr "" + +#: debian-bookworm debian-unstable archlinux fedora-40 fedora-rawhide +#: mageia-cauldron +msgid "" +"The I<module> field matches the (fully-qualified) module name; this match is " +"case-sensitive." msgstr "" #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide @@ -6833,6 +6640,14 @@ msgid "" "The WHEN argument defaults to 'always' and can also be 'auto' or 'never'." msgstr "" +#: debian-bookworm debian-unstable archlinux fedora-40 fedora-rawhide +#: mageia-cauldron +msgid "" +"The action names can be abbreviated as desired and the interpreter will " +"resolve them to the appropriate action name. For example, B<-Wi> is the same " +"as B<-Wignore .>" +msgstr "" + #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed #, no-wrap @@ -6849,6 +6664,16 @@ msgstr "" msgid "The device containing the file has no room for the new directory entry." msgstr "" +#: debian-bookworm opensuse-leap-15-6 archlinux debian-unstable fedora-40 +#: fedora-rawhide mageia-cauldron opensuse-tumbleweed +msgid "The fields in each line are:" +msgstr "" + +#: debian-bookworm opensuse-leap-15-6 archlinux debian-unstable fedora-40 +#: fedora-rawhide mageia-cauldron opensuse-tumbleweed +msgid "The fields shown in each line are as follows:" +msgstr "" + #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed msgid "The file does not exist." @@ -6864,10 +6689,6 @@ msgstr "" msgid "The file is on a read-only filesystem." msgstr "" -#: debian-bookworm debian-unstable fedora-40 fedora-rawhide -msgid "The following options are available:" -msgstr "" - #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed msgid "" @@ -6881,6 +6702,11 @@ msgstr "" msgid "The following shell session shows a sample run of the program:" msgstr "" +#: debian-bookworm debian-unstable archlinux fedora-40 fedora-rawhide +#: mageia-cauldron +msgid "The full form of argument is: I<action:message:category:module:lineno>" +msgstr "" + #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed msgid "" @@ -6898,27 +6724,6 @@ msgid "" msgstr "" #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide -#: mageia-cauldron debian-bullseye -msgid "" -"The integer must be a decimal number in the range [0,4294967295]. " -"Specifying the value 0 will disable hash randomization." -msgstr "" - -#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide -#: mageia-cauldron debian-bullseye -msgid "" -"The interpreter interface resembles that of the UNIX shell: when called with " -"standard input connected to a tty device, it prompts for commands and " -"executes them until an EOF is read; when called with a file name argument or " -"with a file as standard input, it reads and executes a I<script> from that " -"file; when called with B<-c> I<command>, it executes the Python statement(s) " -"given as I<command>. Here I<command> may contain multiple statements " -"separated by newlines. Leading whitespace is significant in Python " -"statements! In non-interactive mode, the entire input is parsed before it is " -"executed." -msgstr "" - -#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed msgid "The kernel source file I<Documentation/networking/ip-sysctl.txt>." msgstr "" @@ -6987,6 +6792,14 @@ msgstr "" msgid "The shared library implementing this backend:" msgstr "" +#: debian-bookworm debian-unstable archlinux fedora-40 fedora-rawhide +#: mageia-cauldron +msgid "" +"The simplest settings apply a particular action unconditionally to all " +"warnings emitted by a process (even those that are otherwise ignored by " +"default):" +msgstr "" + #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed msgid "" @@ -7028,14 +6841,6 @@ msgid "" "exhausted." msgstr "" -#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide -#: mageia-cauldron debian-bullseye -msgid "" -"The value of the variable is the maximum number of frames stored in a " -"traceback of a trace. For example, I<PYTHONTRACEMALLOC=1> stores only the " -"most recent frame." -msgstr "" - #: debian-bookworm debian-unstable fedora-40 fedora-rawhide mageia-cauldron #: opensuse-leap-15-6 opensuse-tumbleweed msgid "" @@ -7053,14 +6858,6 @@ msgstr "" msgid "There is exactly one image in a file." msgstr "" -#: debian-bookworm debian-unstable debian-bullseye -msgid "" -"These are subject to difference depending on local installation conventions; " -"${prefix} and ${exec_prefix} are installation-dependent and should be " -"interpreted as for GNU software; they may be the same. On Debian GNU/{Hurd," -"Linux} the default for both is I</usr>." -msgstr "" - #: debian-bookworm archlinux debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed msgid "These functions are available since glibc 2.1." @@ -7103,10 +6900,15 @@ msgstr "" msgid "These system calls are nonstandard Linux extensions." msgstr "" -#: debian-bookworm opensuse-leap-15-6 +#: debian-bookworm msgid "This command doesn\\(cqt manipulate partitions on a block device." msgstr "" +#: debian-bookworm opensuse-leap-15-6 archlinux debian-unstable fedora-40 +#: fedora-rawhide mageia-cauldron opensuse-tumbleweed +msgid "This directory may be empty." +msgstr "" + #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed msgid "" @@ -7137,11 +6939,6 @@ msgid "" msgstr "" #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide -#: mageia-cauldron debian-bullseye -msgid "This is equivalent to the B<-X faulthandler> option." -msgstr "" - -#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed msgid "" "This is the default unless I<binutils> was configured with \\&B<--enable-" @@ -7159,14 +6956,14 @@ msgid "" ">." msgstr "" -#: debian-bookworm +#: debian-bookworm debian-unstable msgid "" "This program is part of the I<procmail mail-processing-package> (v3.23pre) " "available at http://www.procmail.org/ or ftp.procmail.org in B<pub/procmail/" ">." msgstr "" -#: debian-unstable fedora-40 fedora-rawhide mageia-cauldron opensuse-tumbleweed +#: fedora-40 fedora-rawhide mageia-cauldron opensuse-tumbleweed msgid "" "This program is part of the I<procmail mail-processing-package> (v3.24) " "available at http://www.procmail.org/ or ftp.procmail.org in B<pub/procmail/" @@ -7188,14 +6985,6 @@ msgid "" msgstr "" #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide -#: mageia-cauldron debian-bullseye -msgid "" -"This variable is ignored if the $B<PYTHONMALLOC> environment variable is " -"used to force the B<malloc>(3) allocator of the C library, or if Python is " -"configured without pymalloc support." -msgstr "" - -#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed #, no-wrap msgid "Title line" @@ -7206,13 +6995,6 @@ msgstr "" msgid "Too many symbolic links were encountered in translating the pathname." msgstr "" -#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide -#: mageia-cauldron debian-bullseye -msgid "" -"Turn on parser debugging output (for expert only, depending on compilation " -"options)." -msgstr "" - #: opensuse-leap-15-6 archlinux debian-bookworm debian-unstable fedora-40 #: fedora-rawhide mageia-cauldron opensuse-tumbleweed #, no-wrap @@ -7225,7 +7007,7 @@ msgstr "" msgid "UpdateHostKeys" msgstr "" -#: debian-bookworm opensuse-leap-15-6 +#: debian-bookworm msgid "Usage or syntax error" msgstr "" @@ -7279,11 +7061,14 @@ msgstr "" msgid "VAR=VAL" msgstr "" -#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide -#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +#: debian-bookworm fedora-40 mageia-cauldron opensuse-leap-15-6 msgid "Valid values for I<cmd> are:" msgstr "" +#: archlinux debian-unstable fedora-rawhide opensuse-tumbleweed +msgid "Valid values for I<op> are:" +msgstr "" + #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron msgid "" @@ -7298,19 +7083,20 @@ msgstr "" msgid "VerifyHostKeyDNS" msgstr "" -#: debian-bookworm debian-unstable +#: debian-bookworm #, no-wrap msgid "Version 590: 03 Jun 2021" msgstr "" -#: mageia-cauldron +#: archlinux debian-unstable fedora-40 fedora-rawhide opensuse-leap-15-6 +#: opensuse-tumbleweed #, no-wrap -msgid "Version 643: 12 Feb 2024" +msgid "Version 643: 20 Jul 2023" msgstr "" -#: archlinux fedora-40 fedora-rawhide opensuse-leap-15-6 opensuse-tumbleweed +#: mageia-cauldron #, no-wrap -msgid "Version 643: 20 Jul 2023" +msgid "Version 654: 12 May 2024" msgstr "" #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide @@ -7319,21 +7105,28 @@ msgstr "" msgid "Versions" msgstr "" -#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide -#: mageia-cauldron debian-bullseye +#: debian-bookworm debian-unstable archlinux fedora-40 fedora-rawhide +#: mageia-cauldron msgid "" -"When Python is compiled in debug mode, the default is I<pymalloc_debug> and " -"the debug hooks are automatically used. Otherwise, the default is " -"I<pymalloc>." +"Warning control. Python's warning machinery by default prints warning " +"messages to I<sys.stderr>." msgstr "" -#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide -#: mageia-cauldron debian-bullseye +#: debian-bookworm debian-unstable archlinux fedora-40 fedora-rawhide +#: mageia-cauldron msgid "" -"When a script is passed as first argument or the B<-c> option is used, enter " -"interactive mode after executing the script or the command. It does not " -"read the $PYTHONSTARTUP file. This can be useful to inspect global " -"variables or a stack trace when a script raises an exception." +"Warnings can also be controlled using the B<PYTHONWARNINGS> environment " +"variable and from within a Python program using the warnings module. For " +"example, the warnings.filterwarnings() function can be used to use a regular " +"expression on the warning message." +msgstr "" + +#: archlinux opensuse-leap-15-6 opensuse-tumbleweed debian-bookworm +#: debian-unstable +msgid "" +"When encrypting, you are prompted twice for the password as a precautionary " +"measure. It would be a disaster to encrypt files with a password that " +"wasn't what you intended." msgstr "" #: opensuse-leap-15-6 @@ -7409,6 +7202,10 @@ msgstr "" msgid "Written by Simon Josefsson." msgstr "" +#: debian-unstable +msgid "Wrote this manpage (1994)\\&." +msgstr "" + #: archlinux debian-bookworm debian-unstable mageia-cauldron opensuse-leap-15-6 #: opensuse-tumbleweed msgid "" @@ -7429,13 +7226,7 @@ msgstr "" #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed #, no-wrap -msgid "[5]" -msgstr "" - -#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide -#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed -#, no-wrap -msgid "[6]" +msgid "[7]" msgstr "" #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide @@ -7450,11 +7241,22 @@ msgstr "" msgid "[NETWORK] SECTION OPTIONS" msgstr "" +#: debian-bookworm opensuse-leap-15-6 archlinux debian-unstable fedora-40 +#: fedora-rawhide mageia-cauldron opensuse-tumbleweed +msgid "[To be documented.]" +msgstr "" + #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed msgid "[To be documented]" msgstr "" +#: debian-unstable fedora-rawhide +msgid "" +"\\%https://en.wikipedia.org/wiki/" +"ANSI_escape_code#SGR_(Select_Graphic_Rendition)_parameters" +msgstr "" + #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed msgid "" @@ -7478,11 +7280,6 @@ msgstr "" #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed -msgid "\\%https://systemd.io/PORTABILITY_AND_STABILITY/" -msgstr "" - -#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide -#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed msgid "\\%https://systemd.io/UIDS-GIDS" msgstr "" @@ -7502,6 +7299,7 @@ msgid "\\%https://tools.ietf.org/html/rfc6762" msgstr "" #: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron +#: opensuse-tumbleweed msgid "" "\\%https://trustedcomputinggroup.org/resource/canonical-event-log-format/" msgstr "" @@ -7516,6 +7314,11 @@ msgstr "" msgid "\\%https://www.freedesktop.org/wiki/Software/systemd/inhibit" msgstr "" +#: debian-unstable fedora-rawhide +#, no-wrap +msgid "\\&..." +msgstr "" + #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed #, no-wrap @@ -7582,6 +7385,12 @@ msgstr "" msgid "abort" msgstr "" +#: debian-bookworm opensuse-leap-15-6 archlinux debian-unstable fedora-40 +#: fedora-rawhide mageia-cauldron opensuse-tumbleweed +#, no-wrap +msgid "ac" +msgstr "" + #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed msgid "" @@ -7603,12 +7412,6 @@ msgid "" msgstr "" #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide -#: mageia-cauldron opensuse-tumbleweed opensuse-leap-15-6 -#, no-wrap -msgid "all" -msgstr "" - -#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed msgid "append / indicator to directories" msgstr "" @@ -7629,6 +7432,12 @@ msgid "" "p>), file-type (B<--file-type>), classify (B<-F>)" msgstr "" +#: debian-bookworm opensuse-leap-15-6 archlinux debian-unstable fedora-40 +#: fedora-rawhide mageia-cauldron opensuse-tumbleweed +#, no-wrap +msgid "ar" +msgstr "" + #: debian-bookworm debian-unstable opensuse-leap-15-6 opensuse-tumbleweed #: archlinux fedora-40 fedora-rawhide mageia-cauldron #, no-wrap @@ -7668,7 +7477,7 @@ msgstr "" msgid "cgroup" msgstr "" -#: debian-bookworm mageia-cauldron opensuse-leap-15-6 +#: debian-bookworm opensuse-leap-15-6 msgid "" "change the default of using modification times; access time (B<-u>): atime, " "access, use; change time (B<-c>): ctime, status; birth time: birth, creation;" @@ -7704,6 +7513,12 @@ msgstr "" #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +#, no-wrap +msgid "dc" +msgstr "" + +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed msgid "decode data" msgstr "" @@ -7763,7 +7578,7 @@ msgid "" "B<-A>)" msgstr "" -#: opensuse-leap-15-6 +#: archlinux fedora-rawhide opensuse-leap-15-6 opensuse-tumbleweed msgid "do not sort, enable B<-aU>, disable B<-ls> B<--color>" msgstr "" @@ -7772,6 +7587,10 @@ msgstr "" msgid "do not sort; list entries in directory order" msgstr "" +#: archlinux fedora-rawhide opensuse-tumbleweed +msgid "do not traverse any symbolic links" +msgstr "" + #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed msgid "do not traverse any symbolic links (default)" @@ -7788,15 +7607,27 @@ msgstr "" msgid "dosfstools 4.2" msgstr "" -#: debian-bookworm opensuse-leap-15-6 +#: debian-bookworm opensuse-leap-15-6 archlinux debian-unstable fedora-40 +#: fedora-rawhide mageia-cauldron opensuse-tumbleweed +#, no-wrap +msgid "dw" +msgstr "" + +#: debian-bookworm debian-unstable fedora-40 fedora-rawhide mageia-cauldron +#: opensuse-leap-15-6 opensuse-tumbleweed archlinux +#, no-wrap +msgid "edit" +msgstr "" + +#: debian-bookworm msgid "enables debug output." msgstr "" -#: debian-bookworm opensuse-leap-15-6 +#: debian-bookworm msgid "enables libfdisk debug output." msgstr "" -#: debian-bookworm opensuse-leap-15-6 +#: debian-bookworm msgid "enables libsmartcols debug output." msgstr "" @@ -7828,7 +7659,8 @@ msgstr "" msgid "exit" msgstr "" -#: archlinux debian-unstable fedora-40 fedora-rawhide opensuse-tumbleweed +#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron +#: opensuse-tumbleweed msgid "explain how a file is copied. Implies B<-v>" msgstr "" @@ -7938,6 +7770,12 @@ msgstr "" msgid "glibc 2.6." msgstr "" +#: mageia-cauldron archlinux debian-bookworm debian-unstable fedora-40 +#: fedora-rawhide opensuse-leap-15-6 opensuse-tumbleweed +#, no-wrap +msgid "glob" +msgstr "" + #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed #, no-wrap @@ -7950,6 +7788,11 @@ msgstr "" msgid "graphical\\&.target" msgstr "" +#: archlinux debian-unstable fedora-40 fedora-rawhide opensuse-tumbleweed +#, no-wrap +msgid "groff 7" +msgstr "" + #: opensuse-leap-15-6 archlinux debian-bookworm debian-unstable fedora-40 #: fedora-rawhide mageia-cauldron opensuse-tumbleweed #, no-wrap @@ -7992,12 +7835,6 @@ msgstr "" #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed -msgid "" -"if a command line argument is a symbolic link to a directory, traverse it" -msgstr "" - -#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide -#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed msgid "if minor problems (e.g., cannot access subdirectory)," msgstr "" @@ -8039,6 +7876,10 @@ msgstr "" msgid "inhibit output of inserted words" msgstr "" +#: archlinux fedora-40 fedora-rawhide mageia-cauldron opensuse-tumbleweed +msgid "input paper name or dimensions (WIDTHxHEIGHT)" +msgstr "" + #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed msgid "like B<-l> B<--time-style>=I<\\,full-iso\\/>" @@ -8074,8 +7915,7 @@ msgstr "" msgid "likewise, except do not append '*'" msgstr "" -#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide -#: mageia-cauldron opensuse-tumbleweed +#: debian-bookworm debian-unstable fedora-40 mageia-cauldron msgid "list all entries in directory order" msgstr "" @@ -8108,8 +7948,8 @@ msgstr "" msgid "list subdirectories recursively" msgstr "" -#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide -#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +#: archlinux debian-bookworm fedora-40 fedora-rawhide mageia-cauldron +#: opensuse-leap-15-6 opensuse-tumbleweed debian-unstable #, no-wrap msgid "local" msgstr "" @@ -8124,29 +7964,17 @@ msgstr "" msgid "location of the proc file system" msgstr "" -#: debian-bookworm debian-unstable opensuse-leap-15-6 opensuse-tumbleweed -#: archlinux fedora-40 fedora-rawhide mageia-cauldron -#, no-wrap -msgid "me" -msgstr "" - #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: opensuse-leap-15-6 opensuse-tumbleweed mageia-cauldron #, no-wrap msgid "menu" msgstr "" -#: archlinux fedora-40 fedora-rawhide opensuse-tumbleweed +#: archlinux fedora-40 opensuse-tumbleweed #, no-wrap msgid "mlocate" msgstr "" -#: debian-bookworm debian-unstable opensuse-leap-15-6 opensuse-tumbleweed -#: archlinux fedora-40 fedora-rawhide mageia-cauldron -#, no-wrap -msgid "mr" -msgstr "" - #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed #, no-wrap @@ -8154,19 +7982,13 @@ msgid "multi-user\\&.target" msgstr "" #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide -#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed -#, no-wrap -msgid "nl" -msgstr "" - -#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: opensuse-tumbleweed mageia-cauldron opensuse-leap-15-6 #, no-wrap msgid "no" msgstr "" -#: debian-bookworm opensuse-leap-15-6 archlinux fedora-40 fedora-rawhide -#: mageia-cauldron opensuse-tumbleweed debian-unstable +#: debian-bookworm archlinux fedora-40 fedora-rawhide mageia-cauldron +#: opensuse-leap-15-6 opensuse-tumbleweed debian-unstable #, no-wrap msgid "now" msgstr "" @@ -8198,17 +8020,21 @@ msgid "option warmup t" msgstr "" #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide -#: mageia-cauldron opensuse-tumbleweed opensuse-leap-15-6 +#: mageia-cauldron opensuse-tumbleweed #, no-wrap msgid "other" msgstr "" +#: archlinux fedora-40 fedora-rawhide mageia-cauldron opensuse-tumbleweed +msgid "output paper name or dimensions (WIDTHxHEIGHT)" +msgstr "" + #: fedora-40 fedora-rawhide opensuse-leap-15-6 opensuse-tumbleweed archlinux #: debian-bookworm debian-unstable mageia-cauldron msgid "overstrike as for printers" msgstr "" -#: debian-bookworm opensuse-leap-15-6 opensuse-tumbleweed +#: debian-bookworm opensuse-leap-15-6 #, no-wrap msgid "" "passwd: compat systemd\n" @@ -8217,7 +8043,7 @@ msgid "" "gshadow: files systemd\n" msgstr "" -#: archlinux debian-unstable fedora-40 fedora-rawhide +#: archlinux debian-unstable fedora-40 fedora-rawhide opensuse-tumbleweed #, no-wrap msgid "" "passwd: files systemd\n" @@ -8237,18 +8063,6 @@ msgstr "" msgid "pause" msgstr "" -#: debian-bookworm debian-unstable opensuse-leap-15-6 opensuse-tumbleweed -#: archlinux fedora-40 fedora-rawhide mageia-cauldron -#, no-wrap -msgid "pf" -msgstr "" - -#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide -#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed -#, no-wrap -msgid "pipe" -msgstr "" - #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed msgid "port=/dev/ttyS0" @@ -8313,12 +8127,6 @@ msgid "procmail-announce-request@procmail.org" msgstr "" #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide -#: mageia-cauldron debian-bullseye -msgid "" -"python - an interpreted, interactive, object-oriented programming language" -msgstr "" - -#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: opensuse-leap-15-6 opensuse-tumbleweed #, no-wrap msgid "quotas" @@ -8359,7 +8167,14 @@ msgstr "" msgid "s390" msgstr "" -#: archlinux debian-unstable fedora-40 fedora-rawhide opensuse-tumbleweed +#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide +#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +#, no-wrap +msgid "sd" +msgstr "" + +#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron +#: opensuse-tumbleweed msgid "" "select which timestamp used to display or sort; access time (B<-u>): atime, " "access, use; metadata change time (B<-c>): ctime, status; modified time " @@ -8376,6 +8191,18 @@ msgstr "" msgid "set output width to COLS. 0 means no limit" msgstr "" +#: debian-bookworm opensuse-leap-15-6 archlinux debian-unstable fedora-40 +#: fedora-rawhide mageia-cauldron opensuse-tumbleweed +#, no-wrap +msgid "sh" +msgstr "" + +#: debian-bookworm debian-unstable fedora-40 fedora-rawhide mageia-cauldron +#: opensuse-leap-15-6 opensuse-tumbleweed archlinux +#, no-wrap +msgid "shell" +msgstr "" + #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed msgid "" @@ -8400,12 +8227,6 @@ msgstr "" msgid "signal" msgstr "" -#: debian-bookworm debian-unstable fedora-40 fedora-rawhide mageia-cauldron -#: opensuse-leap-15-6 opensuse-tumbleweed archlinux -#, no-wrap -msgid "size" -msgstr "" - #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed msgid "sort alphabetically by entry extension" @@ -8538,11 +8359,6 @@ msgstr "" #: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide #: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed -msgid "traverse every symbolic link to a directory encountered" -msgstr "" - -#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide -#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed msgid "treat DEST as a normal file" msgstr "" @@ -8593,7 +8409,7 @@ msgstr "" msgid "use termcap as for terminal displays" msgstr "" -#: debian-bookworm opensuse-leap-15-6 +#: debian-bookworm msgid "use visible padding characters." msgstr "" @@ -8619,12 +8435,16 @@ msgstr "" msgid "version" msgstr "" -#: archlinux debian-bookworm debian-unstable fedora-40 fedora-rawhide -#: mageia-cauldron opensuse-leap-15-6 opensuse-tumbleweed +#: debian-bookworm fedora-40 mageia-cauldron opensuse-leap-15-6 #, no-wrap msgid "version 7.2" msgstr "" +#: archlinux debian-unstable fedora-rawhide opensuse-tumbleweed +#, no-wrap +msgid "version 8.0" +msgstr "" + #: archlinux fedora-40 fedora-rawhide mageia-cauldron opensuse-leap-15-6 #: opensuse-tumbleweed debian-bookworm debian-unstable #, no-wrap @@ -8679,14 +8499,15 @@ msgid "" "and sort by name; otherwise: sort by access time, newest first" msgstr "" -#: archlinux debian-unstable fedora-40 fedora-rawhide opensuse-tumbleweed +#: archlinux debian-unstable fedora-40 fedora-rawhide mageia-cauldron +#: opensuse-tumbleweed msgid "" "with B<-lt>: sort by, and show, ctime (time of last change of file status " "information); with B<-l>: show ctime and sort by name; otherwise: sort by " "ctime, newest first" msgstr "" -#: debian-bookworm mageia-cauldron opensuse-leap-15-6 +#: debian-bookworm opensuse-leap-15-6 msgid "" "with B<-lt>: sort by, and show, ctime (time of last modification of file " "status information); with B<-l>: show ctime and sort by name; otherwise: " |