summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-27 21:12:05 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-27 21:12:05 +0000
commit8f50ad90d48b537c93151485b23dd37f6b97f01a (patch)
tree2d3be7c349941d9fab1931dedbff19e4dd5344df
parentAdding upstream version 5.4.1. (diff)
downloadxz-utils-8f50ad90d48b537c93151485b23dd37f6b97f01a.tar.xz
xz-utils-8f50ad90d48b537c93151485b23dd37f6b97f01a.zip
Adding debian version 5.4.1-0.2.debian/5.4.1-0.2debian
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
-rw-r--r--debian/README.source16
-rwxr-xr-xdebian/autogen.sh32
-rw-r--r--debian/changelog809
-rw-r--r--debian/changelog.upstream.sh133
-rw-r--r--debian/control114
-rw-r--r--debian/copyright388
-rw-r--r--debian/gbp.conf6
-rw-r--r--debian/liblzma-dev.README.Debian19
-rw-r--r--debian/liblzma-dev.docs5
-rw-r--r--debian/liblzma-dev.install5
-rw-r--r--debian/liblzma-dev.links3
-rw-r--r--debian/liblzma-doc.README.Debian19
-rw-r--r--debian/liblzma-doc.doc-base12
-rw-r--r--debian/liblzma-doc.docs1
-rw-r--r--debian/liblzma5.docs3
-rw-r--r--debian/liblzma5.install1
-rw-r--r--debian/not-installed24
-rw-r--r--debian/patches/Add-da.po-based-on-translation-from-manpages-l10n.patch4815
-rw-r--r--debian/patches/Translations-Add-Brazilian-Portuguese-translation-of-man-.patch3707
-rw-r--r--debian/patches/Translations-Update-the-Brazilian-Portuguese-translation.patch1223
-rw-r--r--debian/patches/po-pt_BR-Revert-changes-from-the-release.patch1245
-rw-r--r--debian/patches/series4
-rwxr-xr-xdebian/rules141
-rw-r--r--debian/source.lintian-overrides6
-rw-r--r--debian/source/format1
-rw-r--r--debian/symbols26
-rw-r--r--debian/tests/control3
-rw-r--r--debian/tests/testsuite8
-rw-r--r--debian/upstream/signing-key.asc52
-rw-r--r--debian/watch3
-rw-r--r--debian/xz-utils.README.Debian47
-rw-r--r--debian/xz-utils.docs6
-rw-r--r--debian/xz-utils.install39
-rw-r--r--debian/xz-utils.postinst19
-rw-r--r--debian/xz-utils.prerm10
-rw-r--r--debian/xzdec.docs6
-rw-r--r--debian/xzdec.install4
37 files changed, 12955 insertions, 0 deletions
diff --git a/debian/README.source b/debian/README.source
new file mode 100644
index 0000000..f17a7de
--- /dev/null
+++ b/debian/README.source
@@ -0,0 +1,16 @@
+XZ Utils sources for Debian
+---------------------------
+
+This Debian package is developed in a public Git repository (see the Vcs-Git
+field of debian/control) based on XZ Utils’s repository on tukaani.org.
+To build from a git checkout:
+
+ debian/rules get-orig-source
+ mv xz-utils_*.tar.gz ..
+ debian/autogen.sh
+ debuild
+
+To build a released version, no special instructions apply.
+“dpkg-buildpackage” and “apt-get -b xz-utils” should work as usual.
+
+ -- Jonathan Nieder <jrnieder@gmail.com> Mon, 08 Feb 2010 17:30:00 -0600
diff --git a/debian/autogen.sh b/debian/autogen.sh
new file mode 100755
index 0000000..05a3a9f
--- /dev/null
+++ b/debian/autogen.sh
@@ -0,0 +1,32 @@
+#!/bin/sh
+# Generate debian/changelog.upstream, debian/generated-m4.list,
+# and debian/generated-po.list.
+#
+# Uses debian/changelog, the git revision log, and .gitignore
+# files from the current checkout.
+
+set -e
+
+changelog_needs_update() {
+ test -e debian/changelog.upstream &&
+ read line < debian/changelog.upstream ||
+ return 0
+
+ ver=${line#Version } &&
+ ver=${ver%;*} &&
+ test "$ver" != "" ||
+ return 0
+
+ read line < debian/changelog &&
+ rhs=${line#*(} &&
+ deb_ver=${rhs%)*} &&
+ new_ver=${deb_ver%-*} ||
+ return 0
+
+ test "$ver" != "$new_ver"
+}
+
+cp -f m4/.gitignore debian/generated-m4.list
+cp -f po/.gitignore debian/generated-po.list
+sed -n 's,^build-aux/,, p' .gitignore > debian/generated-build-aux.list
+! changelog_needs_update || exec sh debian/changelog.upstream.sh
diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..6cd0f23
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,809 @@
+xz-utils (5.4.1-0.2) unstable; urgency=medium
+
+ * Non-maintainer upload.
+ * Increase replaces/breaks relationship with manpages-{de|fr}
+ (Closes: #1028375).
+ * Add da.po translation translation from manpages-l10n (Closes: #1029349).
+
+ -- Sebastian Andrzej Siewior <sebastian@breakpoint.cc> Sun, 12 Feb 2023 21:22:50 +0100
+
+xz-utils (5.4.1-0.1) unstable; urgency=medium
+
+ * Non-maintainer upload.
+ * Update pt_BR translations.
+ * Add lintian overrides and an override for blhc.
+
+ -- Sebastian Andrzej Siewior <sebastian@breakpoint.cc> Wed, 01 Feb 2023 17:41:36 +0100
+
+xz-utils (5.4.1-0.0) unstable; urgency=medium
+
+ * Non-maintainer upload.
+ * Import 5.4.1.
+ * Provide proper package relationship with manpages-{de|fr}
+ (Closes: #1028375).
+
+ -- Sebastian Andrzej Siewior <sebastian@breakpoint.cc> Wed, 11 Jan 2023 23:00:00 +0100
+
+xz-utils (5.4.0-0.1) unstable; urgency=medium
+
+ * Non-maintainer upload.
+ * Upload to unstable.
+ * Add RRR = no to control file.
+ * Point VCS tags to salsa.d.o.
+
+ -- Sebastian Andrzej Siewior <sebastian@breakpoint.cc> Thu, 15 Dec 2022 18:14:49 +0100
+
+xz-utils (5.4.0-0.0) experimental; urgency=medium
+
+ * Non-maintainer upload.
+ * Import 5.4.0.
+
+ -- Sebastian Andrzej Siewior <sebastian@breakpoint.cc> Tue, 13 Dec 2022 23:49:25 +0100
+
+xz-utils (5.3.5beta-0.0) experimental; urgency=medium
+
+ * Non-maintainer upload.
+ * Import 5.3.5beta.
+
+ -- Sebastian Andrzej Siewior <sebastian@breakpoint.cc> Fri, 02 Dec 2022 22:10:13 +0100
+
+xz-utils (5.3.4alpha-0.0) experimental; urgency=medium
+
+ * Non-maintainer upload.
+ * Import 5.3.4alpha.
+ * Update upstream's GPG key.
+ * Update standards to 4.6.1.
+ * Add hardening=+all.
+
+ -- Sebastian Andrzej Siewior <sebastian@breakpoint.cc> Fri, 18 Nov 2022 23:25:47 +0100
+
+xz-utils (5.3.3alpha-0.0) experimental; urgency=medium
+
+ * Non-maintainer upload.
+ * Import 5.3.3alpha.
+ * Add new symbols.
+ * Upgrade to dh compat 13
+ - Drop additional rules/ targets for the three flavours and use one.
+ - Add indep targets to skip most of the build process for the indep only
+ build.
+ - Use autoreconf from dh
+ - Update paths for installation and record not used files in not-installed
+ - Update path in the docs package since newer dh detects liblzma-dev as
+ the main package.
+ * Provide de/fr man page (Closes: #988580, #995982).
+
+ -- Sebastian Andrzej Siewior <sebastian@breakpoint.cc> Sun, 02 Oct 2022 22:04:04 +0200
+
+xz-utils (5.2.5-2.1) unstable; urgency=medium
+
+ * Non-maintainer upload.
+ * xzgrep: Fix escaping of malicious filenames (ZDI-CAN-16587)
+ (CVE-2022-1271) (Closes: #1009167)
+
+ -- Salvatore Bonaccorso <carnil@debian.org> Sun, 10 Apr 2022 13:31:29 +0200
+
+xz-utils (5.2.5-2) unstable; urgency=medium
+
+ * Non-maintainer upload (Closes: #983067).
+ * Upload to unstable.
+
+ -- Sebastian Andrzej Siewior <sebastian@breakpoint.cc> Mon, 08 Mar 2021 23:01:54 +0100
+
+xz-utils (5.2.5-1.1) experimental; urgency=medium
+
+ * Non-maintainer upload.
+ * Update the patches for #844770 and #975981 to what upstream applied.
+ * Add a SIGPIPE fix to xzgrep (similar to xzcmp in #844770).
+
+ -- Sebastian Andrzej Siewior <sebastian@breakpoint.cc> Tue, 02 Mar 2021 21:50:25 +0100
+
+xz-utils (5.2.5-1.0) unstable; urgency=medium
+
+ * Non-maintainer upload.
+ * New upstream release (Closes: #975984).
+ - Increase GETTEXT version (Closes: #959999).
+ * Add % target to the rules file to work with newer debhelper
+ (Closes: #945961).
+ * Enable threads for static builds (Closes: #907449).
+ * Ignore SIGPIPE in xzdiff script (Closes: #844770).
+ * Teach xzgrep about zstd (Closes: #970891).
+ * Clean up the xz man page (Closes: #894454).
+ * Ignore hard link count if input is not deleted (Closes: #975981).
+
+ -- Sebastian Andrzej Siewior <sebastian@breakpoint.cc> Mon, 28 Dec 2020 11:25:06 +0100
+
+xz-utils (5.2.4-1) unstable; urgency=low
+
+ * New upstream release. Closes: #851615.
+ * Standards-Version: 4.3.0 (checked).
+ * Use an XZ compressed tarball for upstream source.
+ * Add upstream signing key and verify tarball at "uscan" time.
+ * Drop patches; all were applied or otherwise fixed upstream.
+ * Update copyright file.
+ * debian/control:
+ - Use a stable repo.or.cz URL for packaging repo.
+ Closes: #826382. Thanks to Rolf Leggewie.
+ - Use https for upstream homepage URL.
+ - No longer Build-Depends: freebsd-glue on kfreebsd.
+ * get-orig-source: Use https for upstream Git repository.
+ * liblzma:
+ - Remove compatibility tricks that permit sharing a process with
+ liblzma.so.2. This means liblzma.a no longer depends on libdl
+ at run time.
+ Closes: #919950. Thanks to Josh Triplett.
+ - Breaks: liblzma2 versions without symbol versioning.
+ - Priority: optional.
+ * xz-utils:
+ - Lower priority of xz-utils to standard. Closes: #685203.
+ - README.Debian: Remove notes about differences from upstream.
+ - Remove old NEWS.Debian.
+
+ -- Jonathan Nieder <jrnieder@gmail.com> Sun, 27 Jan 2019 17:09:34 -0800
+
+xz-utils (5.2.2-1.3) unstable; urgency=medium
+
+ * Non-maintainer upload.
+ * Force a constant /bin/sh for installed scripts. This helps the build
+ be reproducible; /bin/sh on Debian is always POSIX. (Closes: #806331)
+
+ -- Ximin Luo <infinity0@debian.org> Wed, 28 Jun 2017 18:39:19 +0200
+
+xz-utils (5.2.2-1.2) unstable; urgency=medium
+
+ * Non-maintainer upload.
+ * link against libfreebsd-glue on kfreebsd-* (Closes: #840063)
+
+ -- Sebastian Andrzej Siewior <sebastian@breakpoint.cc> Sat, 08 Oct 2016 15:11:19 +0200
+
+xz-utils (5.2.2-1.1) unstable; urgency=medium
+
+ * Non-maintainer upload.
+ * switch to git-dpm for packaging (closes: #540405)
+ * New Upstream (closes: #731634)
+ - no more "xzless error in line 49" (closes: #693537)
+ - xzgrep -h works (closes: #780268)
+ * update symbol file
+ * enable threads for the "normal build"
+
+ -- Sebastian Andrzej Siewior <sebastian@breakpoint.cc> Mon, 26 Sep 2016 20:45:45 +0200
+
+xz-utils (5.1.1alpha+20120614-2.1) unstable; urgency=medium
+
+ [ Helmut Grohne ]
+ * Non-maintainer upload.
+
+ [ Colin Watson ]
+ * Remove build-dependency on perl; we use no non-trivial Perl modules so
+ the Essential perl-base is perfectly adequate, and an unadorned
+ build-dependency on perl is problematic for cross-building.
+ Closes: #697328.
+
+ -- Helmut Grohne <helmut@subdivi.de> Thu, 18 Jun 2015 20:27:23 +0200
+
+xz-utils (5.1.1alpha+20120614-2) unstable; urgency=low
+
+ * Apply fixes from 5.1.2alpha. Closes: #685220.
+ - liblzma: report a LZMA_DATA_ERROR when range encoded data starts
+ with a nonzero byte. This is a sanity check to catch malformed
+ files that no known encoders produce.
+ - xz -v -v --list: Support for decompressing blocks with
+ zero-length uncompressed data was added in xz 5.0.2, not 5.0.3.
+ - xz.1: "xz --robot -v -v --list" gained a "minimum xz version to
+ decompress" field.
+ * xz-utils/README.Debian: Document differences from upstream.
+ Closes: #685217.
+
+ -- Jonathan Nieder <jrnieder@gmail.com> Mon, 10 Sep 2012 14:35:33 -0700
+
+xz-utils (5.1.1alpha+20120614-1) unstable; urgency=low
+
+ * New snapshot, taken from upstream commit f1675f76.
+ - liblzma: BCJ filters would return a spurious LZMA_BUF_ERROR
+ result in certain circumstances. As a result, the xz tool
+ could produce inappropriate "Compressed data is corrupt" or
+ "Unexpected end of input" failures (reported in XZ Embedded as
+ Fedora bug 735408).
+ - "xz -v -v --list" prints the minimal XZ Utils version needed
+ to decompress a stream.
+ - "xz --robot -v --list" formats filenames more plainly.
+ - xzgrep does not fail unconditionally when the decompressor
+ dies with SIGPIPE due to unconsumed output any more. This
+ makes the exit status from commands such as "xzgrep -q" and
+ "xzgrep -l" more predictable and convenient for scripts.
+ - examples/xz_pipe_decomp.c did not check correctly for
+ truncated input.
+ - There is a new set of sample programs. The old ones have
+ been renamed to examples_old but are still maintained.
+ * liblzma:
+ - If dlopen() indicates that liblzma.so.2 is loaded, check fewer
+ reserved fields in the stream argument to the lzma_code()
+ function. This prevents out-of-bounds reads when liblzma5
+ functions are called by code built against liblzma2 (see
+ <http://sourceware.org/PR12977>).
+ - Remove the lzma_code@Base compatibility symbol.
+ Closes: #649522. Thanks to Eduard Bloch.
+ - Install run-time library to /lib so it can be used before /usr
+ is mounted. Closes: #672120.
+ - Configure with --disable-threads for now to avoid needlessly
+ linking to libpthread and librt.
+ * liblzma-dev:
+ - Install an appropriate library for static linking instead of
+ the decompression-only version used to build xzdec.
+ Closes: #673001. Thanks to Anton Tolchanov.
+ - Use the liblzma2-compatible version of lzma_code() in the
+ static library.
+ - Multi-Arch: same. Thanks to Riku Voipio.
+ - Install new examples and revised old examples to
+ /usr/share/doc/liblzma-dev.
+ * xz-utils:
+ - Use update-alternatives to provide lzma, unlzma, lzcat, and
+ the rest of the lz* scripts without conflicting with the lzma
+ package.
+ - Conflicts: lzma versions before before 9.22-1, when it started
+ providing lzma, unlzma, and lzcat through the alternatives
+ system.
+ - Conflicts: and Replaces: xz-lzma.
+ - README.Debian: Update instructions on configuring the package
+ to provide lzma compatibility commands.
+ * Remove xz-lzma package.
+ * Use dpkg-buildflags to retrieve compiler flags, including
+ hardening options. Build-Depends: dpkg-dev (>= 1.16.1).
+ Closes: #653739.
+ * debian/rules:
+ - build-arch: Simplify by using a double-colon rule instead of a
+ dependency on a dummy noop target.
+ - build-indep: Assume doxygen is available, instead of trying to
+ get by by assuming the caller meant to invoke build-arch when
+ it is missing. Build-Depends: dpkg-dev (>= 1.16.2).
+ - Rearrange for clarity.
+ * debian/symbols: Bump the minimal version for lzma_code(),
+ lzma_raw_buffer_decode(), and lzma_raw_buffer_encode().
+ * Use machine-readable copyright-format 1.0.
+ * Update copyright file.
+ * Standards-Version: 3.9.3 (checked).
+ * debian/changelog.upstream.sh: Use ‘git rev-list | git diff-tree’
+ instead of ‘git log’ to avoid depending on the build system’s
+ configuration.
+
+ -- Jonathan Nieder <jrnieder@gmail.com> Sat, 16 Jun 2012 15:03:17 -0500
+
+xz-utils (5.1.1alpha+20110809-3) unstable; urgency=low
+
+ * liblzma: Match upstream ABI.
+ - Remove the lzma_chunk_size() function.
+ - A few ABI tweaks to reserved space in structures.
+ - Enable ELF symbol versioning.
+ - Bump soname to 5.
+ - Continue to leave out threading support, since the relevant
+ interfaces in liblzma are not yet stable.
+ * xz-utils/README.Debian: Remove note on ABI differences.
+ * Remove liblzma/README.Debian.
+ * liblzma: Introduce a lzma_code@Base compatibility symbol to ensure
+ programs linked against unversioned symbols from liblzma2 can
+ share a process image with liblzma5 without breaking.
+ * debian/symbols: XZ_5.0 symbols come from liblzma5. Build-Depends:
+ dpkg-dev (>= 1.15.6); thanks to Jakub Wilk for a reminder.
+ * debian/symbols: The lzma_code@Base symbol is not guaranteed to
+ continue to exist in the future, so tell dpkg-shlibdeps to produce
+ an error if some package manages to use it.
+
+ -- Jonathan Nieder <jrnieder@gmail.com> Thu, 20 Oct 2011 21:31:31 -0500
+
+xz-utils (5.1.1alpha+20110809-2) unstable; urgency=low
+
+ * debian/rules build-arch: Do not trigger an infinite "make"
+ recursion loop when DEB_BUILD_OPTIONS=nocheck. Closes: #638071.
+ Thanks to Thorsten Glaser.
+
+ -- Jonathan Nieder <jrnieder@gmail.com> Tue, 16 Aug 2011 18:11:47 -0500
+
+xz-utils (5.1.1alpha+20110809-1) unstable; urgency=low
+
+ * New snapshot, taken from upstream commit 5c5b225.
+ - liblzma:
+ - lzma_stream_encoder() leaked memory.
+ - The LZMA2 decoder rejected streams that decompress to a
+ zero-length string.
+ - lzma_easy_buffer_encode() and lzma_stream_buffer_encode()
+ used to write such streams when asked to compress a 0-length
+ buffer.
+ - lzma_index_init() would segfault on allocation failure.
+ - liblzma: Various functions check their arguments (especially
+ choice of integrity check) better, making it harder to create
+ a corrupt .xz file instead of receiving an error.
+ - xz and scripts:
+ - "xz -v -v --list" would read and try to free() uninitialized
+ memory, continuing past the end of an on-stack array, when
+ asked to describe certain corrupted XZ files.
+ - xz -S.suf now refuses to compress a file whose name already
+ ends with the suffix “.suf”.
+ - xz --force can be used to compress setuid, setgid, sticky,
+ and multiply linked files.
+ - xz uses posix_fadvise() to speed up sequential input.
+ - xz --block-size forces a full flush periodically during
+ compression, for better random-access reading support and to
+ make simple parallelism possible in the future.
+ - unxz: The new --single-stream option discards trailing
+ garbage after the end of the first stream.
+ - xzdiff can read gzip- and bzip2-compressed files.
+ - xzdiff and xzgrep can read lzop-compressed files.
+ - xzegrep and xzfgrep perform extended regex and fixed-string
+ matches, respectively. (The previous behavior was to always
+ use basic regexes.)
+ - xzgrep -l (= --files-with-match) works.
+ - The Czech “xz --help” output uses a more correct term for
+ files with holes. Thanks to Petr Hubený. Closes: #605762.
+ - xz: New Polish and French translations.
+ - The Doxygen-generated documentation uses short, relative paths
+ to name source files. Closes: #572273.
+ * Update copyright file.
+ * Remove example programs from debian/examples. They are included
+ in the upstream source package now.
+ * Move liblzma to an architecture-specific directory, so the
+ native library and foreign-architecture versions can be installed
+ simultaneously.
+ - liblzma2: Pre-Depends: multiarch-support.
+ - Use debhelper compatibility level 9. This requires passing
+ the dh sequence name before other options when invoking dh in
+ debian/rules. Build-Depends: debhelper (>= 8.1.3).
+ - liblzma2, liblzma-dev: Install files under /usr/lib/<triplet>
+ instead of /usr/lib.
+ - Thanks to Steve Langasek for explaining the process on the
+ Debian wiki.
+ * Standards-Version: 3.9.2 (checked).
+ * debian/control: liblzma2 is Multi-Arch: same, while xz-utils
+ and xzdec are Multi-Arch: foreign. Closes: #637883. Thanks to
+ Riku Voipio.
+ * debian/symbols: Bump the minimal version for LZMA2 encoder
+ functions that reject more bad arguments and skip empty blocks.
+ * debian/rules: ./configure --disable-symbol-versions for now.
+ * debian/rules: Provide build-arch and build-indep targets that
+ only build the code and the API documentation, respectively.
+ Thanks to Roger Leigh for suggesting it through lintian.
+ Build-Depends: debhelper (>= 8.9.0).
+ * debian/rules: Treat DEB_BUILD_OPTIONS=nocheck as a request not to
+ run build-time tests. Thanks to Thorsten Glaser for a reminder.
+ Closes: #627209.
+
+ -- Jonathan Nieder <jrnieder@gmail.com> Tue, 16 Aug 2011 00:40:31 -0500
+
+xz-utils (5.0.0-2) unstable; urgency=low
+
+ * Upload to unstable.
+ * liblzma2, liblzma-dev, xz-lzma: Install release notes.
+ * debian/symbols: Bump the minimal versions for lzma_index_encoder,
+ lzma_index_decoder to the version in which they gained LZMA_FINISH
+ support.
+ * xz-utils/README.Debian: Document differences from upstream ABI.
+ * debian/changelog.upstream.sh: Avoid empty changelog entries when
+ multiple Debian revisions match an upstream tag.
+
+ -- Jonathan Nieder <jrnieder@gmail.com> Thu, 11 Nov 2010 13:45:20 -0600
+
+xz-utils (5.0.0-1) experimental; urgency=low
+
+ * Upload to experimental.
+ * New stable upstream release. Closes: #592298.
+ - xz avoids SA_RESTART. This should not have a visible effect
+ because xz already blocked signals during operations that
+ would be difficult to resume after interruption.
+ - liblzma: The coders returned by lzma_index_encoder() and
+ lzma_index_decoder() support an LZMA_FINISH action, with
+ identical semantics to LZMA_RUN.
+ - The printable (PDF and PS) versions of the manual are easier
+ to read.
+ - Many documentation and build system cleanups.
+ * liblzma: Back out upstream ABI tweaks.
+ * liblzma/README.Debian: Document ABI differences from upstream.
+ * Copy sample code not included in the release tarball from
+ the development upstream repository to debian/examples.
+ * debian/rules clean: Remove some files not included in the
+ release tarball.
+ * copyright: List new INSTALL.generic license.
+ * debian/rules clean: Take new build-aux scripts into account.
+ * debian/rules: Adapt for upstream build system changes.
+ Closes: #540443.
+ * xz-utils, xzdec: Install release notes.
+
+ -- Jonathan Nieder <jrnieder@gmail.com> Mon, 25 Oct 2010 05:45:18 -0500
+
+xz-utils (4.999.9beta+20100927-1) experimental; urgency=low
+
+ * New snapshot, taken from upstream commit cec0ddc.
+ - liblzma: The meaning of --extreme has been tweaked to address
+ cases in which it made the compression ratio worse. Some files
+ might benefit slightly less from --extreme.
+ - xz: Table columns are not misaligned any more in messages with
+ multi-byte characters (e.g., file sizes with LANG=fi_FI.UTF-8).
+ - xz: New German and Italian translations.
+ - Various documentation, message, and translation updates.
+ * Update copyright file.
+ * debian/rules get-orig-source: Update upstream Git URL.
+ * xz-utils/README.Debian: Advertise XZ_DEFAULTS.
+
+ -- Jonathan Nieder <jrnieder@gmail.com> Mon, 27 Sep 2010 16:22:22 -0500
+
+xz-utils (4.999.9beta+20100903-1) experimental; urgency=low
+
+ * New snapshot, taken from upstream commit 373ee26.
+ - liblzma: The settings for compression levels 0 through 5
+ (used by xz -0/.../-5) have been tweaked. This affects the
+ speed, compression ratio, and memory usage at compression and
+ decompression time.
+ - Does not search so hard for a match when a low "nice match
+ length" setting is specified without a depth.
+ - xz: The -1/.../-9 preset options override any previously
+ specified filters, rather than vice versa. To mix presets
+ with filter options, use the --lzma2=preset=n option.
+ - xz: Warns about --memlimit-compress settings that result in
+ compression settings changing even if no explicit -1/.../-9,
+ --lzma1, or --lzma2 option was used.
+ - "xz -v -v --compress" now prints an estimate of the memory
+ required to decompress a file.
+ * debian/copyright: Update upstream Git URL.
+ * debian/changelog.upstream.sh: Permit terser changelog lines.
+ * Standards-Version: 3.9.1 (checked).
+
+ -- Jonathan Nieder <jrnieder@gmail.com> Fri, 03 Sep 2010 17:05:20 -0500
+
+xz-utils (4.999.9beta+20100810-1) unstable; urgency=low
+
+ * New upstream snapshot, taken from upstream commit d5653ba8a.
+ - xz: The memory usage limiter is now disabled by default.
+ - xz: Support for an XZ_DEFAULTS environment variable was added.
+ It contains user-specific default settings, such as memory usage
+ limits, and can be overridden by the command line and XZ_OPT.
+ - xz: The new --memlimit-compress and --memlimit-decompress
+ options allow the memory usage limit to be set separately for
+ compression and decompression. A new --memlimit alias has been
+ added for the existing --memory option.
+ - xz: The --info-memory option (with or without --robot) now prints
+ how much RAM is installed in addition to the compression and
+ decompression memory limits.
+ * liblzma-doc: Simplify package description.
+ * debian/control: Build-Depends: autopoint | gettext (<< 0.18-1),
+ autopoint | cvs instead of autopoint, to help with backporting.
+ Thanks to Thorsten Glaser for a report.
+
+ -- Jonathan Nieder <jrnieder@gmail.com> Tue, 10 Aug 2010 20:27:14 -0500
+
+xz-utils (4.999.9beta+20100713-1) unstable; urgency=low
+
+ [ Thorsten Glaser ]
+ * Explicitly depend on autoconf (>= 2.64~) due to AC_PREREQ,
+ discovered during backporting.
+
+ [ Jonathan Nieder ]
+ * Upload to unstable.
+ * New upstream snapshot, taken from upstream commit a540198f.
+ - xz: The new --no-adjust option can be used to error out if there
+ is insufficient memory for the chosen compression level.
+ * liblzma-dev: Install examples to /usr/share/doc/liblzma-dev.
+ * Update copyright file.
+
+ * Drop unpack-time conflicts in favor of configuration-time
+ conflicts (Replaces + Breaks):
+ - xz-utils: against old xz-lzma (for lzmainfo).
+ - xzdec: against old xz-lzma (for lzmadec).
+ - xz-lzma: against lzip 1.7 (for lzdiff and lzgrep).
+ * Standards-Version: 3.9.0.
+
+ * debian/autogen.sh: Don’t regenerate upstream changelog when it is
+ not out of date.
+ * debian/rules get-orig-source: Use gzip --no-name --rsyncable.
+
+ -- Jonathan Nieder <jrnieder@gmail.com> Thu, 15 Jul 2010 01:53:37 -0500
+
+xz-utils (4.999.9beta+20100602-1) experimental; urgency=low
+
+ * New upstream snapshot, taken from upstream commit d8b41eed.
+ - The output from "xz -v --list" and "xz -v -v --list" has been
+ improved.
+ "xz -v -v --list" can be used to obtain an estimate for the memory
+ required to decompress a file.
+ - The xz manual page has some new material, including examples.
+ Closes: #578465.
+ - liblzma: The lzma_block_compressed_size() function no longer
+ returns LZMA_DATA_ERROR for valid Blocks.
+ * debian/symbols: Bump minimal version for lzma_block_compressed_size.
+ * Correct the 4.999.9beta+20100307-1 changelog entry to describe
+ which public functions were affected.
+
+ * Add new xz-lzma package to allow xz to provide lzma and related
+ commands. Conflicts: and Provides: lzma.
+ * xz-utils: Suggests: xz-lzma.
+ * xz-utils/README.Debian: Take xz-lzma into account.
+
+ -- Jonathan Nieder <jrnieder@gmail.com> Fri, 04 Jun 2010 15:53:58 -0500
+
+xz-utils (4.999.9beta+20100527-1) unstable; urgency=low
+
+ * New upstream snapshot, taken from upstream commit a334348dc.
+ - Show both elapsed time and estimated remaining time in xz -v.
+ Thanks to Trent W. Buck for the idea. Closes: #574583.
+ - liblzma: Remove the Subblock filter from the public API
+ (the ABI is unchanged).
+ * liblzma-dev.NEWS: Update.
+ * xz-utils: Update Czech translation.
+ * Change priority of xz-utils and liblzma2 to required and
+ xzdec to extra.
+
+ -- Jonathan Nieder <jrnieder@gmail.com> Thu, 27 May 2010 16:27:04 -0500
+
+xz-utils (4.999.9beta+20100307-1) unstable; urgency=low
+
+ * New upstream snapshot, taken from upstream commit f4b2b526.
+ - liblzma: The stream initialization functions were not correctly
+ initializing the internal allow_buffer_error flag. As a result,
+ ever since 4.999.9beta-1 in rare circumstances when decompressing
+ LZMA files, the xz tool would produce spurious "Unexpected end
+ of input" failures (Gentoo bug 305591).
+ - The default memory usage limit on low-memory systems has been
+ increased.
+ * debian/copyright: Clarify.
+
+ -- Jonathan Nieder <jrnieder@gmail.com> Tue, 09 Mar 2010 10:22:24 -0600
+
+xz-utils (4.999.9beta+20100212-4) unstable; urgency=low
+
+ * debian/control: Build-Depends: autopoint instead of cvs.
+ Closes: #572481.
+ * debian/copyright: Clean up and include more details.
+ * debian/rules get-orig-source: Unindent comment lines.
+ * xz-utils: include Czech translation.
+
+ -- Jonathan Nieder <jrnieder@gmail.com> Thu, 04 Mar 2010 10:17:15 -0600
+
+xz-utils (4.999.9beta+20100212-3) unstable; urgency=low
+
+ * liblzma-dev: Remove unneeded .la file.
+ * xz-utils: Dynamically link the xz binary.
+ * Do not waste time installing and running doxygen on buildds that
+ are not going to build arch-all packages.
+ Build-Depends-Indep: doxygen. Closes: #540444.
+
+ -- Jonathan Nieder <jrnieder@gmail.com> Tue, 23 Feb 2010 18:23:29 -0600
+
+xz-utils (4.999.9beta+20100212-2) unstable; urgency=low
+
+ * Split off xzdec and lzmadec commands into new xzdec package.
+ Thanks to Guillem Jover for the idea. Closes: #571060.
+ * xz-utils.NEWS: advertise this change.
+
+ -- Jonathan Nieder <jrnieder@gmail.com> Tue, 23 Feb 2010 08:09:39 -0600
+
+xz-utils (4.999.9beta+20100212-1) unstable; urgency=low
+
+ * New upstream snapshot, taken from upstream commit eb7d51a3f.
+ - xz --force compresses symlinks without complaint now.
+ - liblzma: the optimized CRC32 implementation for x86 no longer
+ misdetects the Hurd as Mac OS X.
+ * debian/rules: ./configure --enable-assembler on the Hurd.
+ * xz-utils: Simplify NEWS.Debian.gz.
+ * liblzma-dev: Add a NEWS file to keep track of future API changes.
+
+ * Drop unnecessary build-time conflict with autoconf2.13.
+ * Add a blank line to the end of all NEWS files.
+ (Works around: #247356)
+ * debian/README.source: Leave out “-I -i” options. Ignoring version
+ control cruft is the default behavior with dpkg source format 3.0.
+ * debian/changelog.upstream.sh: Pass ‘git log’ an explicit --format
+ option to avoid problems if format.pretty is set in gitconfig.
+
+ * Correct the 4.999.9beta+20100117-1 changelog entry. It said:
+ + The user-specified memory usage limit was not being honored in
+ some cases.
+ No such bug was observed, so describe the change instead.
+
+ -- Jonathan Nieder <jrnieder@gmail.com> Tue, 16 Feb 2010 00:30:24 -0600
+
+xz-utils (4.999.9beta+20100131-1) unstable; urgency=low
+
+ * New upstream snapshot, taken from upstream commit f9dd797a.
+ + xz: the --list option to display information about a compressed
+ file (e.g., its uncompressed size) is now functional. The output
+ of the xz --robot --list command still may change in future
+ versions.
+ * xz-utils: NEWS.Debian.gz: Clarify how interleaved output can
+ go wrong.
+ * debian/rules: Simplify:
+ - remove support for comma as a delimiter for $(DEB_BUILD_OPTIONS).
+ - rely on dh --parallel instead of tricky logic of our own to
+ handle parallel builds. Build-Depends: debhelper (>= 7.4.10).
+ * Correct some typos in the 4.999.9beta+20100117-1 changelog entry.
+ * Standards-Version: 3.8.4 (checked).
+ * Update copyright file.
+
+ -- Jonathan Nieder <jrnieder@gmail.com> Sun, 31 Jan 2010 17:32:02 -0600
+
+xz-utils (4.999.9beta+20100117-1) unstable; urgency=low
+
+ * New upstream snapshot, taken from upstream commit 07a11dad.
+ + Fix some logic errors in the internal memory usage configuration
+ API.
+ + xz will no longer compress or decompress special files in place,
+ even with --force.
+ --force still enables compression of the target of a symlink.
+ + xz will no longer read compressed data from a terminal or write
+ it to a terminal, even with --force.
+ + liblzma: many Index handling API improvements:
+ - An lzma_index includes more useful metadata that is not
+ actually from the Index. This is particularly helpful for
+ describing multiple-stream files.
+ * lzma_index_cat() does not take a stream padding argument
+ any more; use lzma_index_stream_padding() instead.
+ * lzma_index_memusage() takes two arguments now.
+ The new lzma_index_memused() convenience function
+ calculates the total memory usage of an lzma_index.
+ * lzma_index_count() has been replaced with
+ lzma_index_block_count() and lzma_index_stream_count().
+ * The new lzma_index_stream_flags() allows storing Stream
+ Flags (e.g., checksum types) with the Index information.
+ * The new lzma_index_checks() function indicates the list of
+ checksum types in use.
+ * lzma_index_equal() has been removed. Its semantics were
+ unclear, and something approximately equivalent can be
+ implemented by iterating over Blocks in application code.
+ - An lzma_index no longer represents a position within an Index.
+ The new lzma_index_iter type can be used for that purpose.
+ * Certain functions generate an iterator on demand now rather
+ than clobbering their lzma_index arguments. Using a single
+ lzma_index for multiple concurrent invocations is safe now:
+ lzma_index_buffer_encode(), lzma_index_encoder()
+ * Functions that used to specify a Record by modifying an
+ lzma_index argument have been renamed and taught to write
+ an lzma_index_iter instead:
+ lzma_index_locate() -> lzma_index_iter_locate()
+ lzma_index_rewind() -> lzma_index_iter_rewind()
+ lzma_index_read() -> lzma_index_iter_next()
+ * The lzma_index_record type used by lzma_index_read() for
+ complex seeks is no more. lzma_index_iter_next() instead
+ takes a parameter of the new lzma_index_iter_mode type.
+ * New function: lzma_index_iter_init()
+ * lzma_index_init() cannot reuse memory from an existing
+ lzma_index any more. The signature changed accordingly.
+ + xz: support for decompressing to a sparse file
+ - Try to write a sparse file if the decompressed stream contains
+ long runs of null bytes.
+ - The new --no-sparse option disables this behavior.
+ + xz: add Czech translation.
+ + liblzma-dev: lzma_filters_copy() and lzma_filters_update() are
+ declared not to throw exceptions.
+ * liblzma: bump soname.
+ * xz-utils: Add NEWS.Debian describing the sparse file support.
+ * debian/rules: Stop explicitly disabling assembler optimizations on
+ the Hurd. The configure script will check if a platform is
+ supported.
+
+ * debian/rules: Update clean target to handle comments and wildcards
+ in .gitignore.
+ * Build-Depends: perl.
+
+ * debian/rules: Speed up build by using autoreconf --symlink.
+ * Remove debian/dirs lists.
+ * Update copyright file and fix a small typo.
+
+ -- Jonathan Nieder <jrnieder@gmail.com> Mon, 18 Jan 2010 04:19:50 -0600
+
+xz-utils (4.999.9beta+20091116-1) unstable; urgency=low
+
+ * New upstream snapshot, taken from upstream commit d315ca4.
+ + liblzma: add some new functions:
+ - lzma_filters_copy() to copy a filter chain;
+ - lzma_filters_update() to change compression options mid-stream;
+ - lzma_physmem() to retrieve the total quantity of installed RAM.
+ + Fix a design error in liblzma API.
+ - Stop requiring caller to maintain filter chain during
+ compression. The library used to read it for new compression
+ options. Callers that need to change options mid-stream should
+ use lzma_filters_update() instead.
+ - Remove 'persistent' member from struct lzma_options_lzma.
+ + xz: add --robot --info-memory options, for front-ends to use to
+ read the memory usage limit.
+ * liblzma: bump soname; add README.Debian explaining why soname
+ differs from upstream.
+ * Use source format 3.0 (quilt).
+ * Update and clarify copyright file.
+
+ -- Jonathan Nieder <jrnieder@gmail.com> Mon, 16 Nov 2009 16:33:35 -0600
+
+xz-utils (4.999.9beta+20091016-1) unstable; urgency=low
+
+ * New upstream snapshot, taken from upstream commit 78e92c1.
+ * Drop xzmore.1 patch, applied upstream.
+ * debian/rules: Disable assembler optimizations on hurd. (Closes: #553331)
+ * debian/control: Clarify binary package descriptions. Thanks to
+ Justin B Rye and Ben Finney for the text.
+ * debian/rules get-orig-source: Use commit date (instead of last patch
+ date) to name snapshots.
+
+ -- Jonathan Nieder <jrnieder@gmail.com> Sun, 01 Nov 2009 00:22:04 -0500
+
+xz-utils (4.999.9beta+20091004-1) unstable; urgency=low
+
+ * Upload to unstable. (Closes: #543562)
+ * New upstream snapshot, taken from upstream commit ebfb2c5.
+ * Patch xzmore.1 to use dashes instead of minus signs.
+ * debian/control: Conflicts: xz-lzma. (Closes: #550249)
+ * liblzma-doc: Register Doxygen-generated docs with doc-base.
+ * debian/changelog.upstream.sh: Declare local variables.
+ * debian/changelog.upstream.sh: Cope with multiple Debian revisions per
+ upstream version.
+ * debian/rules: Use ":=" where appropriate.
+ * Add watch file.
+
+ -- Jonathan Nieder <jrnieder@gmail.com> Fri, 16 Oct 2009 13:58:54 -0500
+
+xz-utils (4.999.9beta+20091002-1) experimental; urgency=low
+
+ * New upstream snapshot, taken from upstream commit 29fd321.
+ * debian/control: Build-Depends: cvs (for autopoint).
+
+ -- Jonathan Nieder <jrnieder@gmail.com> Sun, 04 Oct 2009 00:21:08 -0500
+
+xz-utils (4.999.9beta-1) experimental; urgency=low
+
+ [ Jonathan Nieder ]
+ * New upstream release.
+ - Fix a data corruption in the compression code. (Closes: #544872)
+ - xzdiff: Fix comparing two compressed files. (Closes: #540543)
+ - Most of XZ Utils is now in the public domain. (Closes: #541391)
+ - Add doc/history.txt to the distributed tarball. (Closes: #541540)
+ * Update and clarify copyright file.
+ * Drop lzma compatibility commands for now. (Closes: #542060, #540232)
+ Add instructions to README.Debian for installing them locally.
+ * debian/control: Add information about the packaging Git repository.
+ * debian/control: Clarify package descriptions.
+ * debian/README.source: Clarify build instructions.
+ * Add debian/.gitignore listing build products.
+ * Build xz-utils with static liblzma.
+ - debian/rules: Use configure --enable-dynamic=mixed.
+ * Optimize xzdec for size, following suggestion in PACKAGERS.
+ - debian/rules: Build xzdec separately so it can be optimized for size.
+ - debian/control: Build-Depends: debhelper (>= 7.3.0).
+ * Generate upstream changelog instead of shipping placeholder.
+ - debian/README.source: Add instructions for regenerating upstream
+ changelog file.
+ - debian/changelog.upstream.sh: New script.
+ - debian/rules: Install generated changelog file.
+ * liblzma-doc: Drop documentation already shipped in
+ /usr/share/doc/xz-utils.
+ * liblzma-dev, liblzma-doc: Add short README.Debian with pointers to
+ development documentation.
+ * Drop debian/xzdec.1, since upstream ships a better man page.
+ * Run autotools at build time.
+ + debian/control:
+ - Build-Depends: autoconf, automake, libtool, gettext
+ - Build-Conflicts: autoconf2.13, automake1.4
+ + debian/rules:
+ - configure: autoreconf -fi
+ - clean: remove autotools-generated files to avoid .diff.gz
+ changes when built twice in a row.
+ * debian/rules: Add get-orig-source target.
+ * Prepare for upload to experimental.
+
+ [ Cristian Greco ]
+ * debian/copyright: refer to versioned GPL-3 file.
+ * debian/control: remove duplicate field ‘section’ in package xz-utils.
+
+ -- Jonathan Nieder <jrnieder@gmail.com> Wed, 30 Sep 2009 01:44:04 -0500
+
+xz-utils (4.999.8beta-1) experimental; urgency=low
+
+ [ Jonathan Nieder ]
+ * Initial package for Debian. (Closes: #518803)
+ + debian/rules:
+ - add minimal rules file (using Debhelper 7), a control file
+ describing the binary packages, and an appropriate compat file.
+ - use configure --enable-dynamic; use up-to-date config.guess and
+ config.sub files.
+ - do not run automake and so on on autobuilders. Instead, we can
+ run them ourselves when we build the source package.
+ + debian/README.source:
+ - add informations about the packaging GIT repository.
+ * Add liblzma-doc package with Doxygen-generated API docs.
+
+ [ Mohammed Adnène Trojette ]
+ * Prepare for upload to experimental.
+
+ -- Mohammed Adnène Trojette <adn+deb@diwi.org> Sat, 27 Jun 2009 17:26:56 +0200
diff --git a/debian/changelog.upstream.sh b/debian/changelog.upstream.sh
new file mode 100644
index 0000000..afaec0f
--- /dev/null
+++ b/debian/changelog.upstream.sh
@@ -0,0 +1,133 @@
+#!/bin/sh
+# Generate debian/changelog.upstream from debian/changelog and
+# the git revision log. Inspired by Gerrit Pape’s
+# debian/changelog.upstream.sh, from the git-core Debian package.
+
+set -e
+
+# If argument matches /^Version: /, output remaining text.
+# Result is true if and only if argument matches.
+version_line() {
+ local line result
+ line=$1
+ result=${line#Version: }
+
+ if test "$result" = "$line"
+ then
+ return 1
+ else
+ printf "%s\n" "$result"
+ return 0
+ fi
+}
+
+# If argument matches /^\* New.*snapshot.*commit /,
+# output remaining text.
+# Result is true if and only if argument matches.
+commit_id_line() {
+ local line result
+ line=$1
+ result=${line#\* New*snapshot*commit }
+
+ if test "$result" = "$line"
+ then
+ return 1
+ else
+ printf "%s\n" "$result"
+ return 0
+ fi
+}
+
+# Read standard input, scanning for a changelog entry of the
+# form “New snapshot, taken from upstream commit <blah>.”
+# Output is <blah>.
+# Fails and writes a message to standard error if no such entry is
+# found before the next Version: line with a different upstream
+# version (or EOF).
+# $1 is the upstream version sought.
+read_commit_id() {
+ local upstream_version line version cid
+ upstream_version=$1
+
+ while read line
+ do
+ if
+ version=$(version_line "$line") &&
+ test "${version%-*}" != "$upstream_version"
+ then
+ break
+ fi
+
+ if cid=$(commit_id_line "$line")
+ then
+ printf "%s\n" "${cid%.}"
+ return 0
+ fi
+ done
+
+ echo >&2 "No commit id for $upstream_version"
+ return 1
+}
+
+last=none
+last_cid=none
+# Add a list of all revisions up to $last to debian/changelog.upstream
+# and set last=$2.
+# $1 is a user-readable name for the commit $2
+add_version() {
+ local new new_cid limiter
+ new=$1
+ new_cid=$2
+
+ if test "$last" = none
+ then
+ : > debian/changelog.upstream
+ last=$new
+ last_cid=$new_cid
+ return 0
+ fi
+
+ exec >> debian/changelog.upstream
+ if test "$new" = none
+ then
+ echo "Version $last:"
+ echo "Version $last:" | tr "[:print:]" -
+ limiter=
+ elif test "$new" = "$last"
+ then
+ return 0
+ else
+ echo "Version $last; changes since $new:"
+ echo "Version $last; changes since $new:" | tr "[:print:]" -
+ limiter="$new_cid.."
+ fi
+ echo
+ git rev-list --no-merges "$limiter$last_cid" |
+ git diff-tree --date=iso --stat --format=medium --stdin
+ test "$new" = none || echo
+
+ last=$new
+ last_cid=$new_cid
+}
+
+dpkg-parsechangelog --format rfc822 --all | {
+while read line
+do
+ if version=$(version_line "$line")
+ then
+ # strip Debian revision
+ upstream_version=${version%-*}
+
+ if git rev-parse --verify -q "v$upstream_version" > /dev/null
+ then
+ # upstream release
+ add_version "$upstream_version" "v$upstream_version"
+ else
+ # snapshot
+ cid=$(read_commit_id "$upstream_version") || exit 1
+ add_version "$upstream_version" "$cid"
+ fi
+ fi
+done
+add_version none none
+}
diff --git a/debian/control b/debian/control
new file mode 100644
index 0000000..c39a73b
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,114 @@
+Source: xz-utils
+Section: utils
+Priority: optional
+Maintainer: Jonathan Nieder <jrnieder@gmail.com>
+Uploaders: Mohammed Adnène Trojette <adn+deb@diwi.org>
+Build-Depends: debhelper-compat (= 13), dpkg-dev (>= 1.16.2),
+ autoconf (>= 2.64~), automake, libtool (>= 2.2),
+ gettext, autopoint | gettext (<< 0.18-1), autopoint | cvs, po4a
+Build-Depends-Indep: doxygen
+Build-Conflicts: automake1.4
+Standards-Version: 4.6.1
+Vcs-Browser: https://salsa.debian.org/debian/xz-utils
+Vcs-Git: https://salsa.debian.org/debian/xz-utils
+Homepage: https://tukaani.org/xz/
+Rules-Requires-Root: no
+
+Package: liblzma5
+Section: libs
+Architecture: any
+Depends: ${shlibs:Depends}, ${misc:Depends}
+Pre-Depends: ${misc:Pre-Depends}
+Breaks: liblzma2 (<< 5.1.1alpha+20110809-3~)
+Multi-Arch: same
+Description: XZ-format compression library
+ XZ is the successor to the Lempel-Ziv/Markov-chain Algorithm
+ compression format, which provides memory-hungry but powerful
+ compression (often better than bzip2) and fast, easy decompression.
+ .
+ The native format of liblzma is XZ; it also supports raw (headerless)
+ streams and the older LZMA format used by lzma. (For 7-Zip's related
+ format, use the p7zip package instead.)
+
+Package: xz-utils
+Priority: standard
+Architecture: any
+Depends: ${shlibs:Depends}, ${misc:Depends}
+Multi-Arch: foreign
+Conflicts: lzma (<< 9.22-1), xz-lzma
+Breaks: lzip (<< 1.8~rc2), manpages-de (<< 4.17.0-2~bpo11+1), manpages-fr (<< 4.17.0-2~bpo11+1)
+Replaces: lzip (<< 1.8~rc2), xz-lzma, manpages-de (<< 4.17.0-2~bpo11+1), manpages-fr (<< 4.17.0-2~bpo11+1)
+Provides: lzma
+Description: XZ-format compression utilities
+ XZ is the successor to the Lempel-Ziv/Markov-chain Algorithm
+ compression format, which provides memory-hungry but powerful
+ compression (often better than bzip2) and fast, easy decompression.
+ .
+ This package provides the command line tools for working with XZ
+ compression, including xz, unxz, xzcat, xzgrep, and so on. They can
+ also handle the older LZMA format, and if invoked via appropriate
+ symlinks will emulate the behavior of the commands in the lzma
+ package.
+ .
+ The XZ format is similar to the older LZMA format but includes some
+ improvements for general use:
+ .
+ * 'file' magic for detecting XZ files;
+ * crc64 data integrity check;
+ * limited random-access reading support;
+ * improved support for multithreading (not used in xz-utils);
+ * support for flushing the encoder.
+
+Package: xzdec
+Architecture: any
+Depends: ${shlibs:Depends}, ${misc:Depends}
+Multi-Arch: foreign
+Suggests: xz-utils
+Breaks: xz-lzma (<< 4.999.9beta+20091004-1)
+Replaces: xz-lzma (<< 4.999.9beta+20091004-1)
+Description: XZ-format compression utilities - tiny decompressors
+ XZ is the successor to the Lempel-Ziv/Markov-chain Algorithm
+ compression format, which provides memory-hungry but powerful
+ compression (often better than bzip2) and fast, easy decompression.
+ .
+ This package provides the xzdec and lzmadec utilities, which write
+ the decompressed version of a compressed file to standard output. The
+ binaries are very small, so they can be easily stored on small media
+ with some compressed files, and they are linked statically against
+ liblzma so they can be used on machines without a compatible version
+ of liblzma installed. However, they have:
+ .
+ * no compression support;
+ * no support for writing to a file other than standard output;
+ * no translated messages;
+ * been optimized for size rather than speed.
+ .
+ For a full-featured xzcat command without these limitations, use
+ the xz-utils package instead.
+
+Package: liblzma-dev
+Section: libdevel
+Multi-Arch: same
+Architecture: any
+Depends: liblzma5 (= ${binary:Version}), ${misc:Depends}
+Suggests: liblzma-doc
+Description: XZ-format compression library - development files
+ XZ is the successor to the Lempel-Ziv/Markov-chain Algorithm
+ compression format, which provides memory-hungry but powerful
+ compression (often better than bzip2) and fast, easy decompression.
+ .
+ The native format of liblzma is XZ; it also supports raw (headerless)
+ streams and the older LZMA format used by lzma. (For 7-Zip's related
+ format, use the p7zip package instead.) This package provides the
+ development library needed to build programs using liblzma.
+
+Package: liblzma-doc
+Section: doc
+Architecture: all
+Depends: ${misc:Depends}
+Suggests: liblzma-dev
+Description: XZ-format compression library - API documentation
+ This package contains a reference manual for the liblzma data
+ compression library, in Doxygen-generated HTML files. The purpose
+ of each struct, macro, and function in the public interface is
+ explained.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..d4466ce
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,388 @@
+Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: XZ Utils
+Upstream-Contact:
+ Lasse Collin <lasse.collin@tukaani.org>
+ https://tukaani.org/xz/lists.html
+Source:
+ https://tukaani.org/xz
+ https://git.tukaani.org/xz.git
+Comment:
+ XZ Utils is developed and maintained upstream by Lasse Collin. Major
+ portions are based on code by other authors; see AUTHORS for details.
+ Most of the source has been put into the public domain, but some files
+ have not (details below).
+ .
+ This file describes the source package. The binary packages contain
+ some files derived from other works: for example, images in the API
+ documentation come from Doxygen.
+License:
+ Different licenses apply to different files in this package. Here
+ is a rough summary of which licenses apply to which parts of this
+ package (but check the individual files to be sure!):
+ .
+ - liblzma is in the public domain.
+ .
+ - xz, xzdec, and lzmadec command line tools are in the public
+ domain unless GNU getopt_long had to be compiled and linked
+ in from the lib directory. The getopt_long code is under
+ GNU LGPLv2.1+.
+ .
+ - The scripts to grep, diff, and view compressed files have been
+ adapted from gzip. These scripts and their documentation are
+ under GNU GPLv2+.
+ .
+ - All the documentation in the doc directory and most of the
+ XZ Utils specific documentation files in other directories
+ are in the public domain.
+ .
+ - Translated messages are in the public domain.
+ .
+ - The build system contains public domain files, and files that
+ are under GNU GPLv2+ or GNU GPLv3+. None of these files end up
+ in the binaries being built.
+ .
+ - Test files and test code in the tests directory, and debugging
+ utilities in the debug directory are in the public domain.
+ .
+ - The extra directory may contain public domain files, and files
+ that are under various free software licenses.
+ .
+ You can do whatever you want with the files that have been put into
+ the public domain. If you find public domain legally problematic,
+ take the previous sentence as a license grant. If you still find
+ the lack of copyright legally problematic, you have too many
+ lawyers.
+ .
+ As usual, this software is provided "as is", without any warranty.
+ .
+ If you copy significant amounts of public domain code from XZ Utils
+ into your project, acknowledging this somewhere in your software is
+ polite (especially if it is proprietary, non-free software), but
+ naturally it is not legally required. Here is an example of a good
+ notice to put into "about box" or into documentation:
+ .
+ This software includes code from XZ Utils <http://tukaani.org/xz/>.
+ .
+ The following license texts are included in the following files:
+ - COPYING.LGPLv2.1: GNU Lesser General Public License version 2.1
+ - COPYING.GPLv2: GNU General Public License version 2
+ - COPYING.GPLv3: GNU General Public License version 3
+ .
+ Note that the toolchain (compiler, linker etc.) may add some code
+ pieces that are copyrighted. Thus, it is possible that e.g. liblzma
+ binary wouldn't actually be in the public domain in its entirety
+ even though it contains no copyrighted code from the XZ Utils source
+ package.
+ .
+ If you have questions, don't hesitate to ask the author(s) for more
+ information.
+
+Files: *
+Copyright: 2006-2018, Lasse Collin
+ 1999-2008, Igor Pavlov
+ 2006, Ville Koskinen
+ 1998, Steve Reid
+ 2000, Wei Dai
+ 2003, Kevin Springle
+ 2009, Jonathan Nieder
+ 2010, Anders F Björklund
+License: PD
+ This file has been put in the public domain.
+ You can do whatever you want with this file.
+Comment:
+ From: Lasse Collin <lasse.collin@tukaani.org>
+ To: Jonathan Nieder <jrnieder@gmail.com>
+ Subject: Re: XZ utils for Debian
+ Date: Sun, 19 Jul 2009 13:28:23 +0300
+ Message-Id: <200907191328.23816.lasse.collin@tukaani.org>
+ .
+ [...]
+ .
+ > AUTHORS, ChangeLog, COPYING, README, THANKS, TODO,
+ > dos/README, windows/README
+ .
+ COPYING says that most docs are in the public domain. Maybe that's not
+ clear enough, but on the other hand it looks a bit stupid to put
+ copyright information in tiny and relatively small docs like README.
+ .
+ I don't dare to say that _all_ XZ Utils specific docs are in the public
+ domain unless otherwise mentioned in the file. I'm including PDF files
+ generated by groff + ps2pdf, and some day I might include Doxygen-
+ generated HTML docs too. Those don't include any copyright notices, but
+ it seems likely that groff + ps2pdf or at least Doxygen put some
+ copyrighted content into the generated files.
+
+Files: INSTALL NEWS PACKAGERS
+ windows/README-Windows.txt
+ windows/INSTALL-MinGW.txt
+Copyright: 2009-2010, Lasse Collin
+License: probably-PD
+ See the note on AUTHORS, README, and so on above.
+
+Files: src/scripts/* lib/* extra/scanlzma/scanlzma.c
+Copyright: © 1993, Jean-loup Gailly
+ © 1989-1994, 1996-1999, 2001-2007, Free Software Foundation, Inc.
+ © 2006 Timo Lindfors
+ 2005, Charles Levert
+ 2005, 2009, Lasse Collin
+ 2009, Andrew Dudman
+Other-Authors: Paul Eggert, Ulrich Drepper
+License: GPL-2+
+
+Files: src/scripts/Makefile.am src/scripts/xzless.1
+Copyright: 2009, Andrew Dudman
+ 2009, Lasse Collin
+License: PD
+ This file has been put in the public domain.
+ You can do whatever you want with this file.
+
+Files: doc/examples/xz_pipe_comp.c doc/examples/xz_pipe_decomp.c
+Copyright: 2010, Daniel Mealha Cabrita
+License: PD
+ Not copyrighted -- provided to the public domain.
+
+Files: lib/getopt.c lib/getopt1.c lib/getopt.in.h
+Copyright: © 1987-2007 Free Software Foundation, Inc.
+Other-Authors: Ulrich Drepper
+License: LGPL-2.1+
+
+Files: m4/getopt.m4 m4/posix-shell.m4
+Copyright: © 2002-2006, 2008 Free Software Foundation, Inc.
+ © 2007-2008 Free Software Foundation, Inc.
+Other-Authors: Bruno Haible, Paul Eggert
+License: permissive-fsf
+
+Files: m4/acx_pthread.m4
+Copyright: © 2008, Steven G. Johnson <stevenj@alum.mit.edu>
+License: Autoconf
+
+files: m4/ax_check_capsicum.m4
+Copyright: © 2014, Google Inc.
+ © 2015, Lasse Collin <lasse.collin@tukaani.org>
+License: permissive-nowarranty
+
+Files: Doxyfile.in
+Copyright: © 1997-2007 by Dimitri van Heesch
+Origin: Doxygen 1.4.7
+License: GPL-2
+
+Files: src/liblzma/check/crc32_table_?e.h
+ src/liblzma/check/crc64_table_?e.h
+ src/liblzma/lzma/fastpos_table.c
+ src/liblzma/rangecoder/price_table.c
+Copyright: none, automatically generated data
+Generated-With:
+ src/liblzma/check/crc32_tablegen.c
+ src/liblzma/check/crc64_tablegen.c
+ src/liblzma/lzma/fastpos_tablegen.c
+ src/liblzma/rangecoder/price_tablegen.c
+License: none
+ No copyright to license.
+
+Files: .gitignore m4/.gitignore po/.gitignore po/LINGUAS po/POTFILES.in
+Copyright: none; these are just short lists.
+License: none
+ No copyright to license.
+
+Files: tests/compress_prepared_bcj_*
+Copyright: 2008-2009, Lasse Collin
+Source-Code: tests/bcj_test.c
+License: PD
+ This file has been put into the public domain.
+ You can do whatever you want with this file.
+Comment:
+ changelog.gz (commit 975d8fd) explains:
+ .
+ Recreated the BCJ test files for x86 and SPARC. The old files
+ were linked with crt*.o, which are copyrighted, and thus the
+ old test files were not in the public domain as a whole. They
+ are freely distributable though, but it is better to be careful
+ and avoid including any copyrighted pieces in the test files.
+ The new files are just compiled and assembled object files,
+ and thus don't contain any copyrighted code.
+
+Files: po/cs.po po/de.po po/fr.po
+Copyright: 2010, Marek Černocký
+ 2010, Andre Noll
+ 2011, Adrien Nader
+License: PD
+ This file is put in the public domain.
+
+Files: po/it.po po/pl.po
+Copyright: 2009, 2010, Gruppo traduzione italiano di Ubuntu-it
+ 2010, Lorenzo De Liso
+ 2009, 2010, 2011, Milo Casagrande
+ 2011, Jakub Bogusz
+License: PD
+ This file is in the public domain
+
+Files: INSTALL.generic
+Copyright: © 1994, 1995, 1996, 1999, 2000, 2001, 2002, 2004, 2005,
+ 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
+License: permissive-nowarranty
+
+Files: dos/config.h
+Copyright: © 1992, 1993, 1994, 1999, 2000, 2001, 2002, 2005
+ Free Software Foundation, Inc.
+ 2007-2010, Lasse Collin
+Other-Authors: Roland McGrath, Akim Demaille, Paul Eggert,
+ David Mackenzie, Bruno Haible, and many others.
+Origin: configure.ac from XZ Utils,
+ visibility.m4 serial 1 (gettext-0.15),
+ Autoconf 2.52g
+License: config-h
+ configure.ac:
+ .
+ # Author: Lasse Collin
+ #
+ # This file has been put into the public domain.
+ # You can do whatever you want with this file.
+ .
+ visibility.m4:
+ .
+ dnl Copyright (C) 2005 Free Software Foundation, Inc.
+ dnl This file is free software; the Free Software Foundation
+ dnl gives unlimited permission to copy and/or distribute it,
+ dnl with or without modifications, as long as this notice is preserved.
+ .
+ dnl From Bruno Haible.
+ .
+ comments from Autoconf 2.52g:
+ .
+ # Copyright 1992, 1993, 1994, 1999, 2000, 2001, 2002
+ # Free Software Foundation, Inc.
+ .
+ [...]
+ .
+ # As a special exception, the Free Software Foundation gives unlimited
+ # permission to copy, distribute and modify the configure scripts that
+ # are the output of Autoconf. You need not follow the terms of the GNU
+ # General Public License when using or distributing such scripts, even
+ # though portions of the text of Autoconf appear in them. The GNU
+ # General Public License (GPL) does govern all other use of the material
+ # that constitutes the Autoconf program.
+ .
+ On Debian systems, the complete text of the GNU General Public
+ License version 2 can be found in ‘/usr/share/common-licenses/GPL-2’.
+ dos/config.h was generated with autoheader, which tells Autoconf to
+ output a script to generate a config.h file and then runs it.
+
+Files: po/Makevars
+Origin: gettext-runtime/po/Makevars (gettext-0.12)
+Copyright: © 2003 Free Software Foundation, Inc.
+Authors: Bruno Haible
+License: LGPL-2.1+
+ The gettext-runtime package is under the LGPL, see files intl/COPYING.LIB-2.0
+ and intl/COPYING.LIB-2.1.
+ .
+ On Debian systems, the complete text of intl/COPYING.LIB-2.0 from
+ gettext-runtime 0.12 can be found in ‘/usr/share/common-licenses/LGPL-2’
+ and the text of intl/COPYING.LIB-2.1 can be found in
+ ‘/usr/share/common-licenses/LGPL-2.1’.
+ .
+ po/Makevars consists mostly of helpful comments and does not contain a
+ copyright and license notice.
+
+Files: COPYING.GPLv2 COPYING.GPLv3 COPYING.LGPLv2.1
+Copyright: © 1989, 1991, 1999, 2007 Free Software Foundation, Inc.
+License: noderivs
+ Everyone is permitted to copy and distribute verbatim copies
+ of this license document, but changing it is not allowed.
+
+Files: debian/*
+Copyright: 2009-2012, Jonathan Nieder
+License: PD-debian
+ The Debian packaging files are in the public domain.
+ You may freely use, modify, distribute, and relicense them.
+
+License: LGPL-2.1+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU Lesser General Public License as published by
+ the Free Software Foundation; either version 2.1, or (at your option)
+ any later version.
+ .
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU Lesser General Public License for more details.
+ .
+ You should have received a copy of the GNU Lesser General Public License along
+ with this program; if not, write to the Free Software Foundation,
+ Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+ .
+ On Debian systems, the complete text of the GNU Lesser General Public
+ License version 2.1 can be found in ‘/usr/share/common-licenses/LGPL-2.1’.
+
+License: GPL-2
+ Permission to use, copy, modify, and distribute this software and its
+ documentation under the terms of the GNU General Public License is
+ hereby granted. No representations are made about the suitability of
+ this software for any purpose. It is provided "as is" without express
+ or implied warranty. See the GNU General Public License for more
+ details.
+ .
+ Documents produced by doxygen are derivative works derived from the
+ input used in their production; they are not affected by this license.
+ .
+ On Debian systems, the complete text of the version of the GNU General
+ Public License distributed with Doxygen can be found in
+ ‘/usr/share/common-licenses/GPL-2’.
+
+License: GPL-2+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2, or (at your option)
+ any later version.
+ .
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+ .
+ You should have received a copy of the GNU General Public License along
+ with this program; if not, write to the Free Software Foundation,
+ Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+ .
+ On Debian systems, the complete text of the GNU General Public License
+ version 2 can be found in ‘/usr/share/common-licenses/GPL-2’.
+
+License: Autoconf
+ This program is free software: you can redistribute it and/or modify it
+ under the terms of the GNU General Public License as published by the
+ Free Software Foundation, either version 3 of the License, or (at your
+ option) any later version.
+ .
+ This program is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
+ Public License for more details.
+ .
+ You should have received a copy of the GNU General Public License along
+ with this program. If not, see <http://www.gnu.org/licenses/>.
+ .
+ As a special exception, the respective Autoconf Macro's copyright owner
+ gives unlimited permission to copy, distribute and modify the configure
+ scripts that are the output of Autoconf when processing the Macro. You
+ need not follow the terms of the GNU General Public License when using
+ or distributing such scripts, even though portions of the text of the
+ Macro appear in them. The GNU General Public License (GPL) does govern
+ all other use of the material that constitutes the Autoconf Macro.
+ .
+ This special exception to the GPL applies to versions of the Autoconf
+ Macro released by the Autoconf Archive. When you make and distribute a
+ modified version of the Autoconf Macro, you may extend this special
+ exception to the GPL to apply to your modified version as well.
+ .
+ On Debian systems, the complete text of the GNU General Public
+ License version 3 can be found in ‘/usr/share/common-licenses/GPL-3’.
+
+License: permissive-fsf
+ This file is free software; the Free Software Foundation
+ gives unlimited permission to copy and/or distribute it,
+ with or without modifications, as long as this notice is preserved.
+
+License: permissive-nowarranty
+ Copying and distribution of this file, with or without modification,
+ are permitted in any medium without royalty provided the copyright
+ notice and this notice are preserved. This file is offered as-is,
+ without warranty of any kind.
diff --git a/debian/gbp.conf b/debian/gbp.conf
new file mode 100644
index 0000000..bd092b9
--- /dev/null
+++ b/debian/gbp.conf
@@ -0,0 +1,6 @@
+[DEFAULT]
+debian-branch=debian/unstable
+upstream-branch=upstream/v5.4
+
+[pq]
+patch-numbers = False
diff --git a/debian/liblzma-dev.README.Debian b/debian/liblzma-dev.README.Debian
new file mode 100644
index 0000000..81e397d
--- /dev/null
+++ b/debian/liblzma-dev.README.Debian
@@ -0,0 +1,19 @@
+From the XZ Utils README (included in the xz-utils package):
+
+1.3. Documentation for liblzma
+
+ The liblzma API headers include short docs about each function
+ and data type as Doxygen tags. These docs should be quite OK as
+ a quick reference.
+
+ I have planned to write a bunch of very well documented example
+ programs, which (due to comments) should work as a tutorial to
+ various features of liblzma. No such example programs have been
+ written yet.
+
+ For now, if you have never used liblzma, libbzip2, or zlib, I
+ recommend learning *basics* of zlib API. Once you know that, it
+ should be easier to learn liblzma.
+
+ http://zlib.net/manual.html
+ http://zlib.net/zlib_how.html
diff --git a/debian/liblzma-dev.docs b/debian/liblzma-dev.docs
new file mode 100644
index 0000000..84297e3
--- /dev/null
+++ b/debian/liblzma-dev.docs
@@ -0,0 +1,5 @@
+usr/share/doc/xz/xz-file-format.txt
+usr/share/doc/xz/lzma-file-format.txt
+usr/share/doc/xz/TODO
+usr/share/doc/xz/examples
+usr/share/doc/xz/examples_old
diff --git a/debian/liblzma-dev.install b/debian/liblzma-dev.install
new file mode 100644
index 0000000..97de04c
--- /dev/null
+++ b/debian/liblzma-dev.install
@@ -0,0 +1,5 @@
+usr/include/*
+usr/include/lzma/*
+usr/lib/*/lib*.a
+usr/lib/*/lib*.so
+usr/lib/*/pkgconfig/*
diff --git a/debian/liblzma-dev.links b/debian/liblzma-dev.links
new file mode 100644
index 0000000..06a0344
--- /dev/null
+++ b/debian/liblzma-dev.links
@@ -0,0 +1,3 @@
+usr/share/doc/liblzma5/AUTHORS usr/share/doc/liblzma-dev/AUTHORS
+usr/share/doc/liblzma5/THANKS usr/share/doc/liblzma-dev/THANKS
+usr/share/doc/liblzma5/NEWS.gz usr/share/doc/liblzma-dev/NEWS.gz
diff --git a/debian/liblzma-doc.README.Debian b/debian/liblzma-doc.README.Debian
new file mode 100644
index 0000000..81e397d
--- /dev/null
+++ b/debian/liblzma-doc.README.Debian
@@ -0,0 +1,19 @@
+From the XZ Utils README (included in the xz-utils package):
+
+1.3. Documentation for liblzma
+
+ The liblzma API headers include short docs about each function
+ and data type as Doxygen tags. These docs should be quite OK as
+ a quick reference.
+
+ I have planned to write a bunch of very well documented example
+ programs, which (due to comments) should work as a tutorial to
+ various features of liblzma. No such example programs have been
+ written yet.
+
+ For now, if you have never used liblzma, libbzip2, or zlib, I
+ recommend learning *basics* of zlib API. Once you know that, it
+ should be easier to learn liblzma.
+
+ http://zlib.net/manual.html
+ http://zlib.net/zlib_how.html
diff --git a/debian/liblzma-doc.doc-base b/debian/liblzma-doc.doc-base
new file mode 100644
index 0000000..d20bb10
--- /dev/null
+++ b/debian/liblzma-doc.doc-base
@@ -0,0 +1,12 @@
+Document: liblzma-doc
+Title: liblzma API Documentation
+Author: Lasse Collin
+Abstract: liblzma is a compression library supporting the .xz and .lzma
+ formats, among others. This Doxygen-generated reference manual
+ describes the data structures and functions making up its public
+ interface.
+Section: Programming/C
+
+Format: HTML
+Index: /usr/share/doc/liblzma-dev/html/index.html
+Files: /usr/share/doc/liblzma-dev/html/*
diff --git a/debian/liblzma-doc.docs b/debian/liblzma-doc.docs
new file mode 100644
index 0000000..f8172bb
--- /dev/null
+++ b/debian/liblzma-doc.docs
@@ -0,0 +1 @@
+debian/normal-build/doc/html/
diff --git a/debian/liblzma5.docs b/debian/liblzma5.docs
new file mode 100644
index 0000000..56921aa
--- /dev/null
+++ b/debian/liblzma5.docs
@@ -0,0 +1,3 @@
+usr/share/doc/xz/AUTHORS
+usr/share/doc/xz/THANKS
+usr/share/doc/xz/NEWS
diff --git a/debian/liblzma5.install b/debian/liblzma5.install
new file mode 100644
index 0000000..1b15eaa
--- /dev/null
+++ b/debian/liblzma5.install
@@ -0,0 +1 @@
+lib/*/liblzma.so.*
diff --git a/debian/not-installed b/debian/not-installed
new file mode 100644
index 0000000..38a8f1f
--- /dev/null
+++ b/debian/not-installed
@@ -0,0 +1,24 @@
+usr/bin/lzcat
+usr/bin/lzcmp
+usr/bin/lzdiff
+usr/bin/lzegrep
+usr/bin/lzfgrep
+usr/bin/lzgrep
+usr/bin/lzless
+usr/bin/lzma
+usr/bin/lzmore
+usr/bin/unlzma
+usr/lib/*/liblzma.la
+usr/share/doc/xz/COPYING
+usr/share/doc/xz/COPYING.GPLv2
+usr/share/doc/xz/TODO
+usr/share/man/man1/lzcat.1
+usr/share/man/man1/lzcmp.1
+usr/share/man/man1/lzdiff.1
+usr/share/man/man1/lzegrep.1
+usr/share/man/man1/lzfgrep.1
+usr/share/man/man1/lzgrep.1
+usr/share/man/man1/lzless.1
+usr/share/man/man1/lzma.1
+usr/share/man/man1/lzmore.1
+usr/share/man/man1/unlzma.1
diff --git a/debian/patches/Add-da.po-based-on-translation-from-manpages-l10n.patch b/debian/patches/Add-da.po-based-on-translation-from-manpages-l10n.patch
new file mode 100644
index 0000000..12b1f34
--- /dev/null
+++ b/debian/patches/Add-da.po-based-on-translation-from-manpages-l10n.patch
@@ -0,0 +1,4815 @@
+From: Sebastian Andrzej Siewior <sebastian@breakpoint.cc>
+Date: Sun, 12 Feb 2023 21:07:29 +0100
+Subject: Add da.po based on translation from manpages-l10n.
+
+BTS: #1029349
+
+Signed-off-by: Sebastian Andrzej Siewior <sebastian@breakpoint.cc>
+---
+ po4a/da.po | 4783 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+ po4a/po4a.conf | 2 +-
+ 2 files changed, 4784 insertions(+), 1 deletion(-)
+ create mode 100644 po4a/da.po
+
+diff --git a/po4a/da.po b/po4a/da.po
+new file mode 100644
+index 0000000..9d69389
+--- /dev/null
++++ b/po4a/da.po
+@@ -0,0 +1,4783 @@
++# Danish translation of manpages
++# This file is distributed under the same license as the manpages-l10n package.
++# Copyright © of this file:
++# Joe Hansen <joedalton2@yahoo.dk>, 2022.
++msgid ""
++msgstr ""
++"Project-Id-Version: manpages-l10n 4.14.0\n"
++"POT-Creation-Date: 2023-01-21 15:47+0100\n"
++"PO-Revision-Date: 2022-05-29 18:05+0100\n"
++"Last-Translator: Joe Hansen <joedalton2@yahoo.dk>\n"
++"Language-Team: Danish <debian-l10n-danish@lists.debian.org>\n"
++"Language: da\n"
++"MIME-Version: 1.0\n"
++"Content-Type: text/plain; charset=UTF-8\n"
++"Content-Transfer-Encoding: 8bit\n"
++"Plural-Forms: nplurals=2; plural=(n != 1);\n"
++
++#. type: TH
++#: ../src/xz/xz.1:8
++#, no-wrap
++msgid "XZ"
++msgstr "XZ"
++
++#. type: TH
++#: ../src/xz/xz.1:8
++#, no-wrap
++msgid "2022-12-01"
++msgstr "1. december 2022"
++
++#. type: TH
++#: ../src/xz/xz.1:8 ../src/xzdec/xzdec.1:7 ../src/lzmainfo/lzmainfo.1:7
++#: ../src/scripts/xzdiff.1:9 ../src/scripts/xzgrep.1:9
++#: ../src/scripts/xzless.1:10 ../src/scripts/xzmore.1:7
++#, no-wrap
++msgid "Tukaani"
++msgstr "Tukaani"
++
++#. type: TH
++#: ../src/xz/xz.1:8 ../src/xzdec/xzdec.1:7 ../src/lzmainfo/lzmainfo.1:7
++#: ../src/scripts/xzdiff.1:9 ../src/scripts/xzgrep.1:9
++#: ../src/scripts/xzless.1:10 ../src/scripts/xzmore.1:7
++#, no-wrap
++msgid "XZ Utils"
++msgstr "XZ Utils"
++
++#. type: SH
++#: ../src/xz/xz.1:10 ../src/xzdec/xzdec.1:8 ../src/lzmainfo/lzmainfo.1:8
++#: ../src/scripts/xzdiff.1:10 ../src/scripts/xzgrep.1:10
++#: ../src/scripts/xzless.1:11 ../src/scripts/xzmore.1:8
++#, no-wrap
++msgid "NAME"
++msgstr "NAVN"
++
++#. type: Plain text
++#: ../src/xz/xz.1:12
++msgid ""
++"xz, unxz, xzcat, lzma, unlzma, lzcat - Compress or decompress .xz and .lzma "
++"files"
++msgstr ""
++
++#. type: SH
++#: ../src/xz/xz.1:13 ../src/xzdec/xzdec.1:10 ../src/lzmainfo/lzmainfo.1:10
++#: ../src/scripts/xzdiff.1:12 ../src/scripts/xzgrep.1:12
++#: ../src/scripts/xzless.1:13 ../src/scripts/xzmore.1:10
++#, no-wrap
++msgid "SYNOPSIS"
++msgstr "SYNOPSIS"
++
++#. type: Plain text
++#: ../src/xz/xz.1:17
++msgid "B<xz> [I<option...>] [I<file...>]"
++msgstr "B<xz> [I<tilvalg...>] [I<fil...>]"
++
++#. type: SH
++#: ../src/xz/xz.1:18
++#, fuzzy, no-wrap
++#| msgid "COMMANDS"
++msgid "COMMAND ALIASES"
++msgstr "KOMMANDOER"
++
++#. type: Plain text
++#: ../src/xz/xz.1:22
++msgid "B<unxz> is equivalent to B<xz --decompress>."
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:26
++msgid "B<xzcat> is equivalent to B<xz --decompress --stdout>."
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:30
++msgid "B<lzma> is equivalent to B<xz --format=lzma>."
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:34
++msgid "B<unlzma> is equivalent to B<xz --format=lzma --decompress>."
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:38
++msgid "B<lzcat> is equivalent to B<xz --format=lzma --decompress --stdout>."
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:50
++msgid ""
++"When writing scripts that need to decompress files, it is recommended to "
++"always use the name B<xz> with appropriate arguments (B<xz -d> or B<xz -"
++"dc>) instead of the names B<unxz> and B<xzcat>."
++msgstr ""
++
++#. type: SH
++#: ../src/xz/xz.1:51 ../src/xzdec/xzdec.1:18 ../src/lzmainfo/lzmainfo.1:15
++#: ../src/scripts/xzdiff.1:24 ../src/scripts/xzgrep.1:33
++#: ../src/scripts/xzless.1:19 ../src/scripts/xzmore.1:16
++#, no-wrap
++msgid "DESCRIPTION"
++msgstr "BESKRIVELSE"
++
++#. type: Plain text
++#: ../src/xz/xz.1:70
++msgid ""
++"B<xz> is a general-purpose data compression tool with command line syntax "
++"similar to B<gzip>(1) and B<bzip2>(1). The native file format is the B<."
++"xz> format, but the legacy B<.lzma> format used by LZMA Utils and raw "
++"compressed streams with no container format headers are also supported. In "
++"addition, decompression of the B<.lz> format used by B<lzip> is supported."
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:92
++msgid ""
++"B<xz> compresses or decompresses each I<file> according to the selected "
++"operation mode. If no I<files> are given or I<file> is B<->, B<xz> reads "
++"from standard input and writes the processed data to standard output. B<xz> "
++"will refuse (display an error and skip the I<file>) to write compressed "
++"data to standard output if it is a terminal. Similarly, B<xz> will refuse "
++"to read compressed data from standard input if it is a terminal."
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:102
++msgid ""
++"Unless B<--stdout> is specified, I<files> other than B<-> are written to a "
++"new file whose name is derived from the source I<file> name:"
++msgstr ""
++
++#. type: IP
++#: ../src/xz/xz.1:102 ../src/xz/xz.1:108 ../src/xz/xz.1:133 ../src/xz/xz.1:138
++#: ../src/xz/xz.1:141 ../src/xz/xz.1:144 ../src/xz/xz.1:160 ../src/xz/xz.1:421
++#: ../src/xz/xz.1:424 ../src/xz/xz.1:431 ../src/xz/xz.1:676 ../src/xz/xz.1:678
++#: ../src/xz/xz.1:777 ../src/xz/xz.1:788 ../src/xz/xz.1:797 ../src/xz/xz.1:805
++#: ../src/xz/xz.1:1033 ../src/xz/xz.1:1042 ../src/xz/xz.1:1054
++#: ../src/xz/xz.1:1729 ../src/xz/xz.1:1735 ../src/xz/xz.1:1853
++#: ../src/xz/xz.1:1857 ../src/xz/xz.1:1860 ../src/xz/xz.1:1863
++#: ../src/xz/xz.1:1867 ../src/xz/xz.1:1874 ../src/xz/xz.1:1876
++#, no-wrap
++msgid "\\(bu"
++msgstr "\\(bu"
++
++#. type: Plain text
++#: ../src/xz/xz.1:108
++msgid ""
++"When compressing, the suffix of the target file format (B<.xz> or B<.lzma>) "
++"is appended to the source filename to get the target filename."
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:123
++msgid ""
++"When decompressing, the B<.xz>, B<.lzma>, or B<.lz> suffix is removed from "
++"the filename to get the target filename. B<xz> also recognizes the suffixes "
++"B<.txz> and B<.tlz>, and replaces them with the B<.tar> suffix."
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:127
++msgid ""
++"If the target file already exists, an error is displayed and the I<file> is "
++"skipped."
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:133
++msgid ""
++"Unless writing to standard output, B<xz> will display a warning and skip the "
++"I<file> if any of the following applies:"
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:138
++msgid ""
++"I<File> is not a regular file. Symbolic links are not followed, and thus "
++"they are not considered to be regular files."
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:141
++msgid "I<File> has more than one hard link."
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:144
++msgid "I<File> has setuid, setgid, or sticky bit set."
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:160
++msgid ""
++"The operation mode is set to compress and the I<file> already has a suffix "
++"of the target file format (B<.xz> or B<.txz> when compressing to the B<.xz> "
++"format, and B<.lzma> or B<.tlz> when compressing to the B<.lzma> format)."
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:170
++msgid ""
++"The operation mode is set to decompress and the I<file> doesn't have a "
++"suffix of any of the supported file formats (B<.xz>, B<.txz>, B<.lzma>, B<."
++"tlz>, or B<.lz>)."
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:185
++msgid ""
++"After successfully compressing or decompressing the I<file>, B<xz> copies "
++"the owner, group, permissions, access time, and modification time from the "
++"source I<file> to the target file. If copying the group fails, the "
++"permissions are modified so that the target file doesn't become accessible "
++"to users who didn't have permission to access the source I<file>. B<xz> "
++"doesn't support copying other metadata like access control lists or extended "
++"attributes yet."
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:195
++msgid ""
++"Once the target file has been successfully closed, the source I<file> is "
++"removed unless B<--keep> was specified. The source I<file> is never removed "
++"if the output is written to standard output or if an error occurs."
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:207
++msgid ""
++"Sending B<SIGINFO> or B<SIGUSR1> to the B<xz> process makes it print "
++"progress information to standard error. This has only limited use since "
++"when standard error is a terminal, using B<--verbose> will display an "
++"automatically updating progress indicator."
++msgstr ""
++
++#. type: SS
++#: ../src/xz/xz.1:208
++#, fuzzy, no-wrap
++#| msgid "--print-memory-usage"
++msgid "Memory usage"
++msgstr "--print-memory-usage"
++
++#. type: Plain text
++#: ../src/xz/xz.1:224
++msgid ""
++"The memory usage of B<xz> varies from a few hundred kilobytes to several "
++"gigabytes depending on the compression settings. The settings used when "
++"compressing a file determine the memory requirements of the decompressor. "
++"Typically the decompressor needs 5\\ % to 20\\ % of the amount of memory "
++"that the compressor needed when creating the file. For example, "
++"decompressing a file created with B<xz -9> currently requires 65\\ MiB of "
++"memory. Still, it is possible to have B<.xz> files that require several "
++"gigabytes of memory to decompress."
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:236
++msgid ""
++"Especially users of older systems may find the possibility of very large "
++"memory usage annoying. To prevent uncomfortable surprises, B<xz> has a "
++"built-in memory usage limiter, which is disabled by default. While some "
++"operating systems provide ways to limit the memory usage of processes, "
++"relying on it wasn't deemed to be flexible enough (for example, using "
++"B<ulimit>(1) to limit virtual memory tends to cripple B<mmap>(2))."
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:258
++msgid ""
++"The memory usage limiter can be enabled with the command line option B<--"
++"memlimit=>I<limit>. Often it is more convenient to enable the limiter by "
++"default by setting the environment variable B<XZ_DEFAULTS>, for example, "
++"B<XZ_DEFAULTS=--memlimit=150MiB>. It is possible to set the limits "
++"separately for compression and decompression by using B<--memlimit-"
++"compress=>I<limit> and B<--memlimit-decompress=>I<limit>. Using these two "
++"options outside B<XZ_DEFAULTS> is rarely useful because a single run of "
++"B<xz> cannot do both compression and decompression and B<--"
++"memlimit=>I<limit> (or B<-M> I<limit>) is shorter to type on the command "
++"line."
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:277
++msgid ""
++"If the specified memory usage limit is exceeded when decompressing, B<xz> "
++"will display an error and decompressing the file will fail. If the limit is "
++"exceeded when compressing, B<xz> will try to scale the settings down so that "
++"the limit is no longer exceeded (except when using B<--format=raw> or B<--no-"
++"adjust>). This way the operation won't fail unless the limit is very "
++"small. The scaling of the settings is done in steps that don't match the "
++"compression level presets, for example, if the limit is only slightly less "
++"than the amount required for B<xz -9>, the settings will be scaled down only "
++"a little, not all the way down to B<xz -8>."
++msgstr ""
++
++#. type: SS
++#: ../src/xz/xz.1:278
++#, no-wrap
++msgid "Concatenation and padding with .xz files"
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:286
++msgid ""
++"It is possible to concatenate B<.xz> files as is. B<xz> will decompress "
++"such files as if they were a single B<.xz> file."
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:295
++msgid ""
++"It is possible to insert padding between the concatenated parts or after the "
++"last part. The padding must consist of null bytes and the size of the "
++"padding must be a multiple of four bytes. This can be useful, for example, "
++"if the B<.xz> file is stored on a medium that measures file sizes in 512-"
++"byte blocks."
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:299
++msgid ""
++"Concatenation and padding are not allowed with B<.lzma> files or raw streams."
++msgstr ""
++
++#. type: SH
++#: ../src/xz/xz.1:300 ../src/xzdec/xzdec.1:61
++#, no-wrap
++msgid "OPTIONS"
++msgstr "TILVALG"
++
++#. type: SS
++#: ../src/xz/xz.1:302
++#, no-wrap
++msgid "Integer suffixes and special values"
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:306
++msgid ""
++"In most places where an integer argument is expected, an optional suffix is "
++"supported to easily indicate large integers. There must be no space between "
++"the integer and the suffix."
++msgstr ""
++
++#. type: TP
++#: ../src/xz/xz.1:306
++#, no-wrap
++msgid "B<KiB>"
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:317
++msgid ""
++"Multiply the integer by 1,024 (2^10). B<Ki>, B<k>, B<kB>, B<K>, and B<KB> "
++"are accepted as synonyms for B<KiB>."
++msgstr ""
++
++#. type: TP
++#: ../src/xz/xz.1:317
++#, no-wrap
++msgid "B<MiB>"
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:327
++msgid ""
++"Multiply the integer by 1,048,576 (2^20). B<Mi>, B<m>, B<M>, and B<MB> are "
++"accepted as synonyms for B<MiB>."
++msgstr ""
++
++#. type: TP
++#: ../src/xz/xz.1:327
++#, no-wrap
++msgid "B<GiB>"
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:337
++msgid ""
++"Multiply the integer by 1,073,741,824 (2^30). B<Gi>, B<g>, B<G>, and B<GB> "
++"are accepted as synonyms for B<GiB>."
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:342
++msgid ""
++"The special value B<max> can be used to indicate the maximum integer value "
++"supported by the option."
++msgstr ""
++
++#. type: SS
++#: ../src/xz/xz.1:343
++#, no-wrap
++msgid "Operation mode"
++msgstr "Operationstilstand"
++
++#. type: Plain text
++#: ../src/xz/xz.1:346
++msgid ""
++"If multiple operation mode options are given, the last one takes effect."
++msgstr ""
++
++#. type: TP
++#: ../src/xz/xz.1:346
++#, no-wrap
++msgid "B<-z>, B<--compress>"
++msgstr "B<-z>, B<--compress>"
++
++#. type: Plain text
++#: ../src/xz/xz.1:355
++msgid ""
++"Compress. This is the default operation mode when no operation mode option "
++"is specified and no other operation mode is implied from the command name "
++"(for example, B<unxz> implies B<--decompress>)."
++msgstr ""
++
++#. type: TP
++#: ../src/xz/xz.1:355 ../src/xzdec/xzdec.1:62
++#, no-wrap
++msgid "B<-d>, B<--decompress>, B<--uncompress>"
++msgstr "B<-d>, B<--decompress>, B<--uncompress>"
++
++#. type: Plain text
++#: ../src/xz/xz.1:358
++msgid "Decompress."
++msgstr ""
++
++#. type: TP
++#: ../src/xz/xz.1:358
++#, no-wrap
++msgid "B<-t>, B<--test>"
++msgstr "B<-t>, B<--test>"
++
++#. type: Plain text
++#: ../src/xz/xz.1:367
++msgid ""
++"Test the integrity of compressed I<files>. This option is equivalent to B<--"
++"decompress --stdout> except that the decompressed data is discarded instead "
++"of being written to standard output. No files are created or removed."
++msgstr ""
++
++#. type: TP
++#: ../src/xz/xz.1:367
++#, no-wrap
++msgid "B<-l>, B<--list>"
++msgstr "B<-l>, B<--list>"
++
++#. type: Plain text
++#: ../src/xz/xz.1:376
++msgid ""
++"Print information about compressed I<files>. No uncompressed output is "
++"produced, and no files are created or removed. In list mode, the program "
++"cannot read the compressed data from standard input or from other unseekable "
++"sources."
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:391
++msgid ""
++"The default listing shows basic information about I<files>, one file per "
++"line. To get more detailed information, use also the B<--verbose> option. "
++"For even more information, use B<--verbose> twice, but note that this may be "
++"slow, because getting all the extra information requires many seeks. The "
++"width of verbose output exceeds 80 characters, so piping the output to, for "
++"example, B<less\\ -S> may be convenient if the terminal isn't wide enough."
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:398
++msgid ""
++"The exact output may vary between B<xz> versions and different locales. For "
++"machine-readable output, B<--robot --list> should be used."
++msgstr ""
++
++#. type: SS
++#: ../src/xz/xz.1:399
++#, no-wrap
++msgid "Operation modifiers"
++msgstr "Ændringer til handling"
++
++#. type: TP
++#: ../src/xz/xz.1:400 ../src/xzdec/xzdec.1:69
++#, no-wrap
++msgid "B<-k>, B<--keep>"
++msgstr "B<-k>, B<--keep>"
++
++#. type: Plain text
++#: ../src/xz/xz.1:403
++#, fuzzy
++#| msgid "Handle N bytes in output file."
++msgid "Don't delete the input files."
++msgstr "Håndter N byte i udskriftsfil."
++
++#. type: Plain text
++#: ../src/xz/xz.1:417
++msgid ""
++"Since B<xz> 5.2.6, this option also makes B<xz> compress or decompress even "
++"if the input is a symbolic link to a regular file, has more than one hard "
++"link, or has the setuid, setgid, or sticky bit set. The setuid, setgid, and "
++"sticky bits are not copied to the target file. In earlier versions this was "
++"only done with B<--force>."
++msgstr ""
++
++#. type: TP
++#: ../src/xz/xz.1:417
++#, no-wrap
++msgid "B<-f>, B<--force>"
++msgstr "B<-f>, B<--force>"
++
++#. type: Plain text
++#: ../src/xz/xz.1:420
++msgid "This option has several effects:"
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:424
++msgid ""
++"If the target file already exists, delete it before compressing or "
++"decompressing."
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:431
++msgid ""
++"Compress or decompress even if the input is a symbolic link to a regular "
++"file, has more than one hard link, or has the setuid, setgid, or sticky bit "
++"set. The setuid, setgid, and sticky bits are not copied to the target file."
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:456
++msgid ""
++"When used with B<--decompress> B<--stdout> and B<xz> cannot recognize the "
++"type of the source file, copy the source file as is to standard output. "
++"This allows B<xzcat> B<--force> to be used like B<cat>(1) for files that "
++"have not been compressed with B<xz>. Note that in future, B<xz> might "
++"support new compressed file formats, which may make B<xz> decompress more "
++"types of files instead of copying them as is to standard output. B<--"
++"format=>I<format> can be used to restrict B<xz> to decompress only a single "
++"file format."
++msgstr ""
++
++#. type: TP
++#: ../src/xz/xz.1:457 ../src/xzdec/xzdec.1:76
++#, no-wrap
++msgid "B<-c>, B<--stdout>, B<--to-stdout>"
++msgstr "B<-c>, B<--stdout>, B<--to-stdout>"
++
++#. type: Plain text
++#: ../src/xz/xz.1:463
++msgid ""
++"Write the compressed or decompressed data to standard output instead of a "
++"file. This implies B<--keep>."
++msgstr ""
++
++#. type: TP
++#: ../src/xz/xz.1:463
++#, no-wrap
++msgid "B<--single-stream>"
++msgstr "B<--single-stream>"
++
++#. type: Plain text
++#: ../src/xz/xz.1:472
++msgid ""
++"Decompress only the first B<.xz> stream, and silently ignore possible "
++"remaining input data following the stream. Normally such trailing garbage "
++"makes B<xz> display an error."
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:481
++msgid ""
++"B<xz> never decompresses more than one stream from B<.lzma> files or raw "
++"streams, but this option still makes B<xz> ignore the possible trailing data "
++"after the B<.lzma> file or raw stream."
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:486
++msgid ""
++"This option has no effect if the operation mode is not B<--decompress> or "
++"B<--test>."
++msgstr ""
++
++#. type: TP
++#: ../src/xz/xz.1:486
++#, no-wrap
++msgid "B<--no-sparse>"
++msgstr "B<--no-sparse>"
++
++#. type: Plain text
++#: ../src/xz/xz.1:498
++msgid ""
++"Disable creation of sparse files. By default, if decompressing into a "
++"regular file, B<xz> tries to make the file sparse if the decompressed data "
++"contains long sequences of binary zeros. It also works when writing to "
++"standard output as long as standard output is connected to a regular file "
++"and certain additional conditions are met to make it safe. Creating sparse "
++"files may save disk space and speed up the decompression by reducing the "
++"amount of disk I/O."
++msgstr ""
++
++#. type: TP
++#: ../src/xz/xz.1:498
++#, no-wrap
++msgid "B<-S> I<.suf>, B<--suffix=>I<.suf>"
++msgstr "B<-S> I<.suf>, B<--suffix=>I<.suf>"
++
++#. type: Plain text
++#: ../src/xz/xz.1:510
++msgid ""
++"When compressing, use I<.suf> as the suffix for the target file instead of "
++"B<.xz> or B<.lzma>. If not writing to standard output and the source file "
++"already has the suffix I<.suf>, a warning is displayed and the file is "
++"skipped."
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:524
++msgid ""
++"When decompressing, recognize files with the suffix I<.suf> in addition to "
++"files with the B<.xz>, B<.txz>, B<.lzma>, B<.tlz>, or B<.lz> suffix. If the "
++"source file has the suffix I<.suf>, the suffix is removed to get the target "
++"filename."
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:530
++msgid ""
++"When compressing or decompressing raw streams (B<--format=raw>), the suffix "
++"must always be specified unless writing to standard output, because there is "
++"no default suffix for raw streams."
++msgstr ""
++
++#. type: TP
++#: ../src/xz/xz.1:530
++#, no-wrap
++msgid "B<--files>[B<=>I<file>]"
++msgstr "B<--files>[B<=>I<fil>]"
++
++#. type: Plain text
++#: ../src/xz/xz.1:544
++msgid ""
++"Read the filenames to process from I<file>; if I<file> is omitted, filenames "
++"are read from standard input. Filenames must be terminated with the newline "
++"character. A dash (B<->) is taken as a regular filename; it doesn't mean "
++"standard input. If filenames are given also as command line arguments, they "
++"are processed before the filenames read from I<file>."
++msgstr ""
++
++#. type: TP
++#: ../src/xz/xz.1:544
++#, no-wrap
++msgid "B<--files0>[B<=>I<file>]"
++msgstr "B<--files0>[B<=>I<fil>]"
++
++#. type: Plain text
++#: ../src/xz/xz.1:548
++msgid ""
++"This is identical to B<--files>[B<=>I<file>] except that each filename must "
++"be terminated with the null character."
++msgstr ""
++
++#. type: SS
++#: ../src/xz/xz.1:549
++#, no-wrap
++msgid "Basic file format and compression options"
++msgstr ""
++
++#. type: TP
++#: ../src/xz/xz.1:550
++#, no-wrap
++msgid "B<-F> I<format>, B<--format=>I<format>"
++msgstr "B<-F> I<format>, B<--format=>I<format>"
++
++#. type: Plain text
++#: ../src/xz/xz.1:555
++msgid "Specify the file I<format> to compress or decompress:"
++msgstr ""
++
++#. type: TP
++#: ../src/xz/xz.1:556
++#, no-wrap
++msgid "B<auto>"
++msgstr "B<auto>"
++
++#. type: Plain text
++#: ../src/xz/xz.1:568
++msgid ""
++"This is the default. When compressing, B<auto> is equivalent to B<xz>. "
++"When decompressing, the format of the input file is automatically detected. "
++"Note that raw streams (created with B<--format=raw>) cannot be auto-"
++"detected."
++msgstr ""
++
++#. type: TP
++#: ../src/xz/xz.1:568
++#, no-wrap
++msgid "B<xz>"
++msgstr "B<xz>"
++
++#. type: Plain text
++#: ../src/xz/xz.1:575
++msgid ""
++"Compress to the B<.xz> file format, or accept only B<.xz> files when "
++"decompressing."
++msgstr ""
++
++#. type: TP
++#: ../src/xz/xz.1:575
++#, no-wrap
++msgid "B<lzma>, B<alone>"
++msgstr "B<lzma>, B<alone>"
++
++#. type: Plain text
++#: ../src/xz/xz.1:585
++#, fuzzy
++#| msgid ""
++#| "To use a pager other than the default B<more,> set environment variable "
++#| "B<PAGER> to the name of the desired program. The name B<lzmore> is "
++#| "provided for backward compatibility with LZMA Utils."
++msgid ""
++"Compress to the legacy B<.lzma> file format, or accept only B<.lzma> files "
++"when decompressing. The alternative name B<alone> is provided for backwards "
++"compatibility with LZMA Utils."
++msgstr ""
++"For at bruge en anden tekstsøger den standarden B<more,> angives "
++"miljøvariablen B<PAGER> til navnet på det ønskede program. Navnet B<lzmore> "
++"tilbydes på grund af baglæns kompatibilitet med LZMA Utils."
++
++#. type: TP
++#: ../src/xz/xz.1:585
++#, no-wrap
++msgid "B<lzip>"
++msgstr "B<lzip>"
++
++#. type: Plain text
++#: ../src/xz/xz.1:591
++msgid ""
++"Accept only B<.lz> files when decompressing. Compression is not supported."
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:604
++msgid ""
++"The B<.lz> format version 0 and the unextended version 1 are supported. "
++"Version 0 files were produced by B<lzip> 1.3 and older. Such files aren't "
++"common but may be found from file archives as a few source packages were "
++"released in this format. People might have old personal files in this "
++"format too. Decompression support for the format version 0 was removed in "
++"B<lzip> 1.18."
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:613
++msgid ""
++"B<lzip> 1.4 and later create files in the format version 1. The sync flush "
++"marker extension to the format version 1 was added in B<lzip> 1.6. This "
++"extension is rarely used and isn't supported by B<xz> (diagnosed as corrupt "
++"input)."
++msgstr ""
++
++#. type: TP
++#: ../src/xz/xz.1:613
++#, no-wrap
++msgid "B<raw>"
++msgstr "B<raw>"
++
++#. type: Plain text
++#: ../src/xz/xz.1:621
++msgid ""
++"Compress or uncompress a raw stream (no headers). This is meant for "
++"advanced users only. To decode raw streams, you need use B<--format=raw> "
++"and explicitly specify the filter chain, which normally would have been "
++"stored in the container headers."
++msgstr ""
++
++#. type: TP
++#: ../src/xz/xz.1:622
++#, fuzzy, no-wrap
++#| msgid "B<-c>, B<--check>"
++msgid "B<-C> I<check>, B<--check=>I<check>"
++msgstr "B<-c>, B<--check>"
++
++#. type: Plain text
++#: ../src/xz/xz.1:637
++msgid ""
++"Specify the type of the integrity check. The check is calculated from the "
++"uncompressed data and stored in the B<.xz> file. This option has an effect "
++"only when compressing into the B<.xz> format; the B<.lzma> format doesn't "
++"support integrity checks. The integrity check (if any) is verified when the "
++"B<.xz> file is decompressed."
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:641
++msgid "Supported I<check> types:"
++msgstr ""
++
++#. type: TP
++#: ../src/xz/xz.1:642
++#, no-wrap
++msgid "B<none>"
++msgstr "B<none>"
++
++#. type: Plain text
++#: ../src/xz/xz.1:648
++msgid ""
++"Don't calculate an integrity check at all. This is usually a bad idea. "
++"This can be useful when integrity of the data is verified by other means "
++"anyway."
++msgstr ""
++
++#. type: TP
++#: ../src/xz/xz.1:648
++#, no-wrap
++msgid "B<crc32>"
++msgstr "B<crc32>"
++
++#. type: Plain text
++#: ../src/xz/xz.1:651
++msgid "Calculate CRC32 using the polynomial from IEEE-802.3 (Ethernet)."
++msgstr ""
++
++#. type: TP
++#: ../src/xz/xz.1:651
++#, no-wrap
++msgid "B<crc64>"
++msgstr "B<crc64>"
++
++#. type: Plain text
++#: ../src/xz/xz.1:656
++msgid ""
++"Calculate CRC64 using the polynomial from ECMA-182. This is the default, "
++"since it is slightly better than CRC32 at detecting damaged files and the "
++"speed difference is negligible."
++msgstr ""
++
++#. type: TP
++#: ../src/xz/xz.1:656
++#, no-wrap
++msgid "B<sha256>"
++msgstr "B<sha256>"
++
++#. type: Plain text
++#: ../src/xz/xz.1:660
++msgid "Calculate SHA-256. This is somewhat slower than CRC32 and CRC64."
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:666
++msgid ""
++"Integrity of the B<.xz> headers is always verified with CRC32. It is not "
++"possible to change or disable it."
++msgstr ""
++
++#. type: TP
++#: ../src/xz/xz.1:666
++#, no-wrap
++msgid "B<--ignore-check>"
++msgstr "B<--ignore-check>"
++
++#. type: Plain text
++#: ../src/xz/xz.1:672
++msgid ""
++"Don't verify the integrity check of the compressed data when decompressing. "
++"The CRC32 values in the B<.xz> headers will still be verified normally."
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:675
++msgid ""
++"B<Do not use this option unless you know what you are doing.> Possible "
++"reasons to use this option:"
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:678
++msgid "Trying to recover data from a corrupt .xz file."
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:684
++msgid ""
++"Speeding up decompression. This matters mostly with SHA-256 or with files "
++"that have compressed extremely well. It's recommended to not use this "
++"option for this purpose unless the file integrity is verified externally in "
++"some other way."
++msgstr ""
++
++#. type: TP
++#: ../src/xz/xz.1:685
++#, fuzzy, no-wrap
++#| msgid "B<-4>, B<-6>"
++msgid "B<-0> ... B<-9>"
++msgstr "B<-4>, B<-6>"
++
++#. type: Plain text
++#: ../src/xz/xz.1:694
++msgid ""
++"Select a compression preset level. The default is B<-6>. If multiple "
++"preset levels are specified, the last one takes effect. If a custom filter "
++"chain was already specified, setting a compression preset level clears the "
++"custom filter chain."
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:709
++msgid ""
++"The differences between the presets are more significant than with "
++"B<gzip>(1) and B<bzip2>(1). The selected compression settings determine "
++"the memory requirements of the decompressor, thus using a too high preset "
++"level might make it painful to decompress the file on an old system with "
++"little RAM. Specifically, B<it's not a good idea to blindly use -9 for "
++"everything> like it often is with B<gzip>(1) and B<bzip2>(1)."
++msgstr ""
++
++#. type: TP
++#: ../src/xz/xz.1:710
++#, fuzzy, no-wrap
++#| msgid "B<-4>, B<-6>"
++msgid "B<-0> ... B<-3>"
++msgstr "B<-4>, B<-6>"
++
++#. type: Plain text
++#: ../src/xz/xz.1:722
++msgid ""
++"These are somewhat fast presets. B<-0> is sometimes faster than B<gzip -9> "
++"while compressing much better. The higher ones often have speed comparable "
++"to B<bzip2>(1) with comparable or better compression ratio, although the "
++"results depend a lot on the type of data being compressed."
++msgstr ""
++
++#. type: TP
++#: ../src/xz/xz.1:722
++#, fuzzy, no-wrap
++#| msgid "B<-4>, B<-6>"
++msgid "B<-4> ... B<-6>"
++msgstr "B<-4>, B<-6>"
++
++#. type: Plain text
++#: ../src/xz/xz.1:736
++msgid ""
++"Good to very good compression while keeping decompressor memory usage "
++"reasonable even for old systems. B<-6> is the default, which is usually a "
++"good choice for distributing files that need to be decompressible even on "
++"systems with only 16\\ MiB RAM. (B<-5e> or B<-6e> may be worth considering "
++"too. See B<--extreme>.)"
++msgstr ""
++
++#. type: TP
++#: ../src/xz/xz.1:736
++#, no-wrap
++msgid "B<-7 ... -9>"
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:743
++msgid ""
++"These are like B<-6> but with higher compressor and decompressor memory "
++"requirements. These are useful only when compressing files bigger than 8\\ "
++"MiB, 16\\ MiB, and 32\\ MiB, respectively."
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:751
++msgid ""
++"On the same hardware, the decompression speed is approximately a constant "
++"number of bytes of compressed data per second. In other words, the better "
++"the compression, the faster the decompression will usually be. This also "
++"means that the amount of uncompressed output produced per second can vary a "
++"lot."
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:753
++msgid "The following table summarises the features of the presets:"
++msgstr ""
++
++#. type: tbl table
++#: ../src/xz/xz.1:760 ../src/xz/xz.1:841 ../src/xz/xz.1:2839
++#, fuzzy, no-wrap
++#| msgid "I<--reset>"
++msgid "Preset"
++msgstr "I<--reset>"
++
++#. type: tbl table
++#: ../src/xz/xz.1:760 ../src/xz/xz.1:841
++#, no-wrap
++msgid "DictSize"
++msgstr ""
++
++#. type: tbl table
++#: ../src/xz/xz.1:760 ../src/xz/xz.1:841 ../src/xz/xz.1:2839
++#, no-wrap
++msgid "CompCPU"
++msgstr ""
++
++#. type: tbl table
++#: ../src/xz/xz.1:760 ../src/xz/xz.1:841
++#, no-wrap
++msgid "CompMem"
++msgstr ""
++
++#. type: tbl table
++#: ../src/xz/xz.1:760 ../src/xz/xz.1:841
++#, no-wrap
++msgid "DecMem"
++msgstr ""
++
++#. type: tbl table
++#: ../src/xz/xz.1:761 ../src/xz/xz.1:2450 ../src/xz/xz.1:2475
++#: ../src/xz/xz.1:2840
++#, no-wrap
++msgid "-0"
++msgstr "-0"
++
++#. type: tbl table
++#: ../src/xz/xz.1:761 ../src/xz/xz.1:842 ../src/xz/xz.1:2450
++#, no-wrap
++msgid "256 KiB"
++msgstr ""
++
++#. type: TP
++#: ../src/xz/xz.1:761 ../src/xz/xz.1:2840 ../src/scripts/xzgrep.1:82
++#, no-wrap
++msgid "0"
++msgstr "0"
++
++#. type: tbl table
++#: ../src/xz/xz.1:761 ../src/xz/xz.1:763 ../src/xz/xz.1:844 ../src/xz/xz.1:2475
++#, no-wrap
++msgid "3 MiB"
++msgstr ""
++
++#. type: tbl table
++#: ../src/xz/xz.1:761 ../src/xz/xz.1:762 ../src/xz/xz.1:842 ../src/xz/xz.1:843
++#: ../src/xz/xz.1:2451 ../src/xz/xz.1:2452 ../src/xz/xz.1:2454
++#, no-wrap
++msgid "1 MiB"
++msgstr ""
++
++#. type: tbl table
++#: ../src/xz/xz.1:762 ../src/xz/xz.1:2451 ../src/xz/xz.1:2476
++#: ../src/xz/xz.1:2841
++#, no-wrap
++msgid "-1"
++msgstr "-1"
++
++#. type: TP
++#: ../src/xz/xz.1:762 ../src/xz/xz.1:1758 ../src/xz/xz.1:2841
++#: ../src/scripts/xzgrep.1:86
++#, no-wrap
++msgid "1"
++msgstr "1"
++
++#. type: tbl table
++#: ../src/xz/xz.1:762 ../src/xz/xz.1:766 ../src/xz/xz.1:767 ../src/xz/xz.1:847
++#: ../src/xz/xz.1:848 ../src/xz/xz.1:2476
++#, no-wrap
++msgid "9 MiB"
++msgstr ""
++
++#. type: tbl table
++#: ../src/xz/xz.1:762 ../src/xz/xz.1:763 ../src/xz/xz.1:843 ../src/xz/xz.1:844
++#: ../src/xz/xz.1:2452 ../src/xz/xz.1:2455 ../src/xz/xz.1:2476
++#, no-wrap
++msgid "2 MiB"
++msgstr ""
++
++#. type: tbl table
++#: ../src/xz/xz.1:763 ../src/xz/xz.1:2452 ../src/xz/xz.1:2477
++#: ../src/xz/xz.1:2842
++#, no-wrap
++msgid "-2"
++msgstr "-2"
++
++#. type: tbl table
++#: ../src/xz/xz.1:763 ../src/xz/xz.1:1760 ../src/xz/xz.1:2842
++#, no-wrap
++msgid "2"
++msgstr "2"
++
++#. type: tbl table
++#: ../src/xz/xz.1:763 ../src/xz/xz.1:768 ../src/xz/xz.1:849 ../src/xz/xz.1:2477
++#, no-wrap
++msgid "17 MiB"
++msgstr ""
++
++#. type: tbl table
++#: ../src/xz/xz.1:764 ../src/xz/xz.1:2453 ../src/xz/xz.1:2478
++#: ../src/xz/xz.1:2843
++#, no-wrap
++msgid "-3"
++msgstr "-3"
++
++#. type: tbl table
++#: ../src/xz/xz.1:764 ../src/xz/xz.1:765 ../src/xz/xz.1:842 ../src/xz/xz.1:845
++#: ../src/xz/xz.1:846 ../src/xz/xz.1:2453 ../src/xz/xz.1:2454
++#: ../src/xz/xz.1:2456
++#, no-wrap
++msgid "4 MiB"
++msgstr ""
++
++#. type: tbl table
++#: ../src/xz/xz.1:764 ../src/xz/xz.1:2843
++#, no-wrap
++msgid "3"
++msgstr "3"
++
++#. type: tbl table
++#: ../src/xz/xz.1:764 ../src/xz/xz.1:769 ../src/xz/xz.1:850 ../src/xz/xz.1:2458
++#: ../src/xz/xz.1:2459 ../src/xz/xz.1:2478
++#, no-wrap
++msgid "32 MiB"
++msgstr ""
++
++#. type: tbl table
++#: ../src/xz/xz.1:764 ../src/xz/xz.1:765 ../src/xz/xz.1:845 ../src/xz/xz.1:846
++#, no-wrap
++msgid "5 MiB"
++msgstr ""
++
++#. type: tbl table
++#: ../src/xz/xz.1:765 ../src/xz/xz.1:2454 ../src/xz/xz.1:2479
++#: ../src/xz/xz.1:2844
++#, no-wrap
++msgid "-4"
++msgstr "-4"
++
++#. type: tbl table
++#: ../src/xz/xz.1:765 ../src/xz/xz.1:1759 ../src/xz/xz.1:1761
++#: ../src/xz/xz.1:1762 ../src/xz/xz.1:1764 ../src/xz/xz.1:2844
++#, no-wrap
++msgid "4"
++msgstr "4"
++
++#. type: tbl table
++#: ../src/xz/xz.1:765 ../src/xz/xz.1:845 ../src/xz/xz.1:846 ../src/xz/xz.1:2479
++#, no-wrap
++msgid "48 MiB"
++msgstr ""
++
++#. type: tbl table
++#: ../src/xz/xz.1:766 ../src/xz/xz.1:2455 ../src/xz/xz.1:2480
++#: ../src/xz/xz.1:2845
++#, no-wrap
++msgid "-5"
++msgstr "-5"
++
++#. type: tbl table
++#: ../src/xz/xz.1:766 ../src/xz/xz.1:767 ../src/xz/xz.1:847 ../src/xz/xz.1:848
++#: ../src/xz/xz.1:2455 ../src/xz/xz.1:2456 ../src/xz/xz.1:2457
++#, no-wrap
++msgid "8 MiB"
++msgstr ""
++
++#. type: tbl table
++#: ../src/xz/xz.1:766 ../src/xz/xz.1:2845
++#, no-wrap
++msgid "5"
++msgstr "5"
++
++#. type: tbl table
++#: ../src/xz/xz.1:766 ../src/xz/xz.1:767 ../src/xz/xz.1:847 ../src/xz/xz.1:848
++#: ../src/xz/xz.1:2480 ../src/xz/xz.1:2481
++#, no-wrap
++msgid "94 MiB"
++msgstr ""
++
++#. type: tbl table
++#: ../src/xz/xz.1:767 ../src/xz/xz.1:2456 ../src/xz/xz.1:2481
++#: ../src/xz/xz.1:2846
++#, no-wrap
++msgid "-6"
++msgstr "-6"
++
++#. type: tbl table
++#: ../src/xz/xz.1:767 ../src/xz/xz.1:768 ../src/xz/xz.1:769 ../src/xz/xz.1:770
++#: ../src/xz/xz.1:2846
++#, no-wrap
++msgid "6"
++msgstr "6"
++
++#. type: tbl table
++#: ../src/xz/xz.1:768 ../src/xz/xz.1:2457 ../src/xz/xz.1:2482
++#, no-wrap
++msgid "-7"
++msgstr "-7"
++
++#. type: tbl table
++#: ../src/xz/xz.1:768 ../src/xz/xz.1:849 ../src/xz/xz.1:2457
++#: ../src/xz/xz.1:2458 ../src/xz/xz.1:2479
++#, no-wrap
++msgid "16 MiB"
++msgstr ""
++
++#. type: tbl table
++#: ../src/xz/xz.1:768 ../src/xz/xz.1:849 ../src/xz/xz.1:2482
++#, no-wrap
++msgid "186 MiB"
++msgstr ""
++
++#. type: tbl table
++#: ../src/xz/xz.1:769 ../src/xz/xz.1:2458 ../src/xz/xz.1:2483
++#, no-wrap
++msgid "-8"
++msgstr "-8"
++
++#. type: tbl table
++#: ../src/xz/xz.1:769 ../src/xz/xz.1:850 ../src/xz/xz.1:2483
++#, no-wrap
++msgid "370 MiB"
++msgstr ""
++
++#. type: tbl table
++#: ../src/xz/xz.1:769 ../src/xz/xz.1:850
++#, no-wrap
++msgid "33 MiB"
++msgstr ""
++
++#. type: tbl table
++#: ../src/xz/xz.1:770 ../src/xz/xz.1:2459 ../src/xz/xz.1:2484
++#, no-wrap
++msgid "-9"
++msgstr "-9"
++
++#. type: tbl table
++#: ../src/xz/xz.1:770 ../src/xz/xz.1:851 ../src/xz/xz.1:2459
++#, no-wrap
++msgid "64 MiB"
++msgstr ""
++
++#. type: tbl table
++#: ../src/xz/xz.1:770 ../src/xz/xz.1:851 ../src/xz/xz.1:2484
++#, no-wrap
++msgid "674 MiB"
++msgstr ""
++
++#. type: tbl table
++#: ../src/xz/xz.1:770 ../src/xz/xz.1:851
++#, no-wrap
++msgid "65 MiB"
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:776
++#, fuzzy
++#| msgid "description"
++msgid "Column descriptions:"
++msgstr "beskrivelse"
++
++#. type: Plain text
++#: ../src/xz/xz.1:788
++msgid ""
++"DictSize is the LZMA2 dictionary size. It is waste of memory to use a "
++"dictionary bigger than the size of the uncompressed file. This is why it is "
++"good to avoid using the presets B<-7> ... B<-9> when there's no real need "
++"for them. At B<-6> and lower, the amount of memory wasted is usually low "
++"enough to not matter."
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:797
++msgid ""
++"CompCPU is a simplified representation of the LZMA2 settings that affect "
++"compression speed. The dictionary size affects speed too, so while CompCPU "
++"is the same for levels B<-6> ... B<-9>, higher levels still tend to be a "
++"little slower. To get even slower and thus possibly better compression, see "
++"B<--extreme>."
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:805
++msgid ""
++"CompMem contains the compressor memory requirements in the single-threaded "
++"mode. It may vary slightly between B<xz> versions. Memory requirements of "
++"some of the future multithreaded modes may be dramatically higher than that "
++"of the single-threaded mode."
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:812
++msgid ""
++"DecMem contains the decompressor memory requirements. That is, the "
++"compression settings determine the memory requirements of the decompressor. "
++"The exact decompressor memory usage is slightly more than the LZMA2 "
++"dictionary size, but the values in the table have been rounded up to the "
++"next full MiB."
++msgstr ""
++
++#. type: TP
++#: ../src/xz/xz.1:813
++#, no-wrap
++msgid "B<-e>, B<--extreme>"
++msgstr "B<-e>, B<--extreme>"
++
++#. type: Plain text
++#: ../src/xz/xz.1:822
++msgid ""
++"Use a slower variant of the selected compression preset level (B<-0> ... "
++"B<-9>) to hopefully get a little bit better compression ratio, but with bad "
++"luck this can also make it worse. Decompressor memory usage is not "
++"affected, but compressor memory usage increases a little at preset levels "
++"B<-0> ... B<-3>."
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:834
++msgid ""
++"Since there are two presets with dictionary sizes 4\\ MiB and 8\\ MiB, the "
++"presets B<-3e> and B<-5e> use slightly faster settings (lower CompCPU) than "
++"B<-4e> and B<-6e>, respectively. That way no two presets are identical."
++msgstr ""
++
++#. type: tbl table
++#: ../src/xz/xz.1:842
++#, no-wrap
++msgid "-0e"
++msgstr "-0e"
++
++#. type: tbl table
++#: ../src/xz/xz.1:842 ../src/xz/xz.1:843 ../src/xz/xz.1:844 ../src/xz/xz.1:846
++#: ../src/xz/xz.1:848 ../src/xz/xz.1:849 ../src/xz/xz.1:850 ../src/xz/xz.1:851
++#: ../src/xz/xz.1:2848
++#, no-wrap
++msgid "8"
++msgstr "8"
++
++#. type: tbl table
++#: ../src/xz/xz.1:843
++#, no-wrap
++msgid "-1e"
++msgstr "-1e"
++
++#. type: tbl table
++#: ../src/xz/xz.1:843
++#, no-wrap
++msgid "13 MiB"
++msgstr ""
++
++#. type: tbl table
++#: ../src/xz/xz.1:844
++#, no-wrap
++msgid "-2e"
++msgstr "-2e"
++
++#. type: tbl table
++#: ../src/xz/xz.1:844
++#, no-wrap
++msgid "25 MiB"
++msgstr ""
++
++#. type: tbl table
++#: ../src/xz/xz.1:845
++#, no-wrap
++msgid "-3e"
++msgstr "-3e"
++
++#. type: tbl table
++#: ../src/xz/xz.1:845 ../src/xz/xz.1:847 ../src/xz/xz.1:2847
++#, no-wrap
++msgid "7"
++msgstr "7"
++
++#. type: tbl table
++#: ../src/xz/xz.1:846
++#, no-wrap
++msgid "-4e"
++msgstr "-4e"
++
++#. type: tbl table
++#: ../src/xz/xz.1:847 ../src/xz/xz.1:2847
++#, no-wrap
++msgid "-5e"
++msgstr "-5e"
++
++#. type: tbl table
++#: ../src/xz/xz.1:848 ../src/xz/xz.1:2848
++#, no-wrap
++msgid "-6e"
++msgstr "-6e"
++
++#. type: tbl table
++#: ../src/xz/xz.1:849
++#, no-wrap
++msgid "-7e"
++msgstr "-7e"
++
++#. type: tbl table
++#: ../src/xz/xz.1:850
++#, no-wrap
++msgid "-8e"
++msgstr "-8e"
++
++#. type: tbl table
++#: ../src/xz/xz.1:851
++#, no-wrap
++msgid "-9e"
++msgstr "-9e"
++
++#. type: Plain text
++#: ../src/xz/xz.1:863
++msgid ""
++"For example, there are a total of four presets that use 8\\ MiB dictionary, "
++"whose order from the fastest to the slowest is B<-5>, B<-6>, B<-5e>, and "
++"B<-6e>."
++msgstr ""
++
++#. type: TP
++#: ../src/xz/xz.1:863
++#, no-wrap
++msgid "B<--fast>"
++msgstr "B<--fast>"
++
++#. type: TP
++#: ../src/xz/xz.1:866
++#, no-wrap
++msgid "B<--best>"
++msgstr "B<--best>"
++
++#. type: Plain text
++#: ../src/xz/xz.1:877
++msgid ""
++"These are somewhat misleading aliases for B<-0> and B<-9>, respectively. "
++"These are provided only for backwards compatibility with LZMA Utils. Avoid "
++"using these options."
++msgstr ""
++
++#. type: TP
++#: ../src/xz/xz.1:877
++#, no-wrap
++msgid "B<--block-size=>I<size>"
++msgstr "B<--block-size=>I<størrelse>"
++
++#. type: Plain text
++#: ../src/xz/xz.1:890
++msgid ""
++"When compressing to the B<.xz> format, split the input data into blocks of "
++"I<size> bytes. The blocks are compressed independently from each other, "
++"which helps with multi-threading and makes limited random-access "
++"decompression possible. This option is typically used to override the "
++"default block size in multi-threaded mode, but this option can be used in "
++"single-threaded mode too."
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:908
++msgid ""
++"In multi-threaded mode about three times I<size> bytes will be allocated in "
++"each thread for buffering input and output. The default I<size> is three "
++"times the LZMA2 dictionary size or 1 MiB, whichever is more. Typically a "
++"good value is 2\\(en4 times the size of the LZMA2 dictionary or at least 1 "
++"MiB. Using I<size> less than the LZMA2 dictionary size is waste of RAM "
++"because then the LZMA2 dictionary buffer will never get fully used. The "
++"sizes of the blocks are stored in the block headers, which a future version "
++"of B<xz> will use for multi-threaded decompression."
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:917
++msgid ""
++"In single-threaded mode no block splitting is done by default. Setting this "
++"option doesn't affect memory usage. No size information is stored in block "
++"headers, thus files created in single-threaded mode won't be identical to "
++"files created in multi-threaded mode. The lack of size information also "
++"means that a future version of B<xz> won't be able decompress the files in "
++"multi-threaded mode."
++msgstr ""
++
++#. type: TP
++#: ../src/xz/xz.1:917
++#, fuzzy, no-wrap
++#| msgid "B<--build-id=>I<style>"
++msgid "B<--block-list=>I<sizes>"
++msgstr "B<--build-id=>I<stil>"
++
++#. type: Plain text
++#: ../src/xz/xz.1:923
++msgid ""
++"When compressing to the B<.xz> format, start a new block after the given "
++"intervals of uncompressed data."
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:929
++msgid ""
++"The uncompressed I<sizes> of the blocks are specified as a comma-separated "
++"list. Omitting a size (two or more consecutive commas) is a shorthand to "
++"use the size of the previous block."
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:939
++msgid ""
++"If the input file is bigger than the sum of I<sizes>, the last value in "
++"I<sizes> is repeated until the end of the file. A special value of B<0> may "
++"be used as the last value to indicate that the rest of the file should be "
++"encoded as a single block."
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:954
++msgid ""
++"If one specifies I<sizes> that exceed the encoder's block size (either the "
++"default value in threaded mode or the value specified with B<--block-"
++"size=>I<size>), the encoder will create additional blocks while keeping the "
++"boundaries specified in I<sizes>. For example, if one specifies B<--block-"
++"size=10MiB> B<--block-list=5MiB,10MiB,8MiB,12MiB,24MiB> and the input file "
++"is 80 MiB, one will get 11 blocks: 5, 10, 8, 10, 2, 10, 10, 4, 10, 10, and 1 "
++"MiB."
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:960
++msgid ""
++"In multi-threaded mode the sizes of the blocks are stored in the block "
++"headers. This isn't done in single-threaded mode, so the encoded output "
++"won't be identical to that of the multi-threaded mode."
++msgstr ""
++
++#. type: TP
++#: ../src/xz/xz.1:960
++#, fuzzy, no-wrap
++#| msgid "B<-f>, B<--silent>, B<--quiet>"
++msgid "B<--flush-timeout=>I<timeout>"
++msgstr "B<-f>, B<--silent>, B<--quiet>"
++
++#. type: Plain text
++#: ../src/xz/xz.1:977
++msgid ""
++"When compressing, if more than I<timeout> milliseconds (a positive integer) "
++"has passed since the previous flush and reading more input would block, all "
++"the pending input data is flushed from the encoder and made available in the "
++"output stream. This can be useful if B<xz> is used to compress data that is "
++"streamed over a network. Small I<timeout> values make the data available at "
++"the receiving end with a small delay, but large I<timeout> values give "
++"better compression ratio."
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:985
++msgid ""
++"This feature is disabled by default. If this option is specified more than "
++"once, the last one takes effect. The special I<timeout> value of B<0> can "
++"be used to explicitly disable this feature."
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:987
++msgid "This feature is not available on non-POSIX systems."
++msgstr ""
++
++#. FIXME
++#. type: Plain text
++#: ../src/xz/xz.1:995
++msgid ""
++"B<This feature is still experimental.> Currently B<xz> is unsuitable for "
++"decompressing the stream in real time due to how B<xz> does buffering."
++msgstr ""
++
++#. type: TP
++#: ../src/xz/xz.1:995
++#, no-wrap
++msgid "B<--memlimit-compress=>I<limit>"
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:1000
++msgid ""
++"Set a memory usage limit for compression. If this option is specified "
++"multiple times, the last one takes effect."
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:1013
++msgid ""
++"If the compression settings exceed the I<limit>, B<xz> will attempt to "
++"adjust the settings downwards so that the limit is no longer exceeded and "
++"display a notice that automatic adjustment was done. The adjustments are "
++"done in this order: reducing the number of threads, switching to single-"
++"threaded mode if even one thread in multi-threaded mode exceeds the "
++"I<limit>, and finally reducing the LZMA2 dictionary size."
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:1021
++msgid ""
++"When compressing with B<--format=raw> or if B<--no-adjust> has been "
++"specified, only the number of threads may be reduced since it can be done "
++"without affecting the compressed output."
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:1028
++msgid ""
++"If the I<limit> cannot be met even with the adjustments described above, an "
++"error is displayed and B<xz> will exit with exit status 1."
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:1032
++msgid "The I<limit> can be specified in multiple ways:"
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:1042
++msgid ""
++"The I<limit> can be an absolute value in bytes. Using an integer suffix "
++"like B<MiB> can be useful. Example: B<--memlimit-compress=80MiB>"
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:1054
++msgid ""
++"The I<limit> can be specified as a percentage of total physical memory "
++"(RAM). This can be useful especially when setting the B<XZ_DEFAULTS> "
++"environment variable in a shell initialization script that is shared between "
++"different computers. That way the limit is automatically bigger on systems "
++"with more memory. Example: B<--memlimit-compress=70%>"
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:1064
++msgid ""
++"The I<limit> can be reset back to its default value by setting it to B<0>. "
++"This is currently equivalent to setting the I<limit> to B<max> (no memory "
++"usage limit)."
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:1088
++msgid ""
++"For 32-bit B<xz> there is a special case: if the I<limit> would be over "
++"B<4020\\ MiB>, the I<limit> is set to B<4020\\ MiB>. On MIPS32 B<2000\\ "
++"MiB> is used instead. (The values B<0> and B<max> aren't affected by this. "
++"A similar feature doesn't exist for decompression.) This can be helpful "
++"when a 32-bit executable has access to 4\\ GiB address space (2 GiB on "
++"MIPS32) while hopefully doing no harm in other situations."
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:1091
++msgid "See also the section B<Memory usage>."
++msgstr ""
++
++#. type: TP
++#: ../src/xz/xz.1:1091
++#, no-wrap
++msgid "B<--memlimit-decompress=>I<limit>"
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:1105
++msgid ""
++"Set a memory usage limit for decompression. This also affects the B<--list> "
++"mode. If the operation is not possible without exceeding the I<limit>, "
++"B<xz> will display an error and decompressing the file will fail. See B<--"
++"memlimit-compress=>I<limit> for possible ways to specify the I<limit>."
++msgstr ""
++
++#. type: TP
++#: ../src/xz/xz.1:1105
++#, no-wrap
++msgid "B<--memlimit-mt-decompress=>I<limit>"
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:1127
++msgid ""
++"Set a memory usage limit for multi-threaded decompression. This can only "
++"affect the number of threads; this will never make B<xz> refuse to "
++"decompress a file. If I<limit> is too low to allow any multi-threading, the "
++"I<limit> is ignored and B<xz> will continue in single-threaded mode. Note "
++"that if also B<--memlimit-decompress> is used, it will always apply to both "
++"single-threaded and multi-threaded modes, and so the effective I<limit> for "
++"multi-threading will never be higher than the limit set with B<--memlimit-"
++"decompress>."
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:1134
++msgid ""
++"In contrast to the other memory usage limit options, B<--memlimit-mt-"
++"decompress=>I<limit> has a system-specific default I<limit>. B<xz --info-"
++"memory> can be used to see the current value."
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:1150
++msgid ""
++"This option and its default value exist because without any limit the "
++"threaded decompressor could end up allocating an insane amount of memory "
++"with some input files. If the default I<limit> is too low on your system, "
++"feel free to increase the I<limit> but never set it to a value larger than "
++"the amount of usable RAM as with appropriate input files B<xz> will attempt "
++"to use that amount of memory even with a low number of threads. Running out "
++"of memory or swapping will not improve decompression performance."
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:1162
++msgid ""
++"See B<--memlimit-compress=>I<limit> for possible ways to specify the "
++"I<limit>. Setting I<limit> to B<0> resets the I<limit> to the default "
++"system-specific value."
++msgstr ""
++
++#. type: TP
++#: ../src/xz/xz.1:1163
++#, no-wrap
++msgid "B<-M> I<limit>, B<--memlimit=>I<limit>, B<--memory=>I<limit>"
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:1169
++msgid ""
++"This is equivalent to specifying B<--memlimit-compress=>I<limit> B<--"
++"memlimit-decompress=>I<limit> B<--memlimit-mt-decompress=>I<limit>."
++msgstr ""
++
++#. type: TP
++#: ../src/xz/xz.1:1169
++#, no-wrap
++msgid "B<--no-adjust>"
++msgstr "B<--no-adjust>"
++
++#. type: Plain text
++#: ../src/xz/xz.1:1179
++msgid ""
++"Display an error and exit if the memory usage limit cannot be met without "
++"adjusting settings that affect the compressed output. That is, this "
++"prevents B<xz> from switching the encoder from multi-threaded mode to single-"
++"threaded mode and from reducing the LZMA2 dictionary size. Even when this "
++"option is used the number of threads may be reduced to meet the memory usage "
++"limit as that won't affect the compressed output."
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:1182
++msgid ""
++"Automatic adjusting is always disabled when creating raw streams (B<--"
++"format=raw>)."
++msgstr ""
++
++#. type: TP
++#: ../src/xz/xz.1:1182
++#, no-wrap
++msgid "B<-T> I<threads>, B<--threads=>I<threads>"
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:1197
++msgid ""
++"Specify the number of worker threads to use. Setting I<threads> to a "
++"special value B<0> makes B<xz> use up to as many threads as the processor(s) "
++"on the system support. The actual number of threads can be fewer than "
++"I<threads> if the input file is not big enough for threading with the given "
++"settings or if using more threads would exceed the memory usage limit."
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:1216
++msgid ""
++"The single-threaded and multi-threaded compressors produce different "
++"output. Single-threaded compressor will give the smallest file size but "
++"only the output from the multi-threaded compressor can be decompressed using "
++"multiple threads. Setting I<threads> to B<1> will use the single-threaded "
++"mode. Setting I<threads> to any other value, including B<0>, will use the "
++"multi-threaded compressor even if the system supports only one hardware "
++"thread. (B<xz> 5.2.x used single-threaded mode in this situation.)"
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:1235
++msgid ""
++"To use multi-threaded mode with only one thread, set I<threads> to B<+1>. "
++"The B<+> prefix has no effect with values other than B<1>. A memory usage "
++"limit can still make B<xz> switch to single-threaded mode unless B<--no-"
++"adjust> is used. Support for the B<+> prefix was added in B<xz> 5.4.0."
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:1250
++msgid ""
++"If an automatic number of threads has been requested and no memory usage "
++"limit has been specified, then a system-specific default soft limit will be "
++"used to possibly limit the number of threads. It is a soft limit in sense "
++"that it is ignored if the number of threads becomes one, thus a soft limit "
++"will never stop B<xz> from compressing or decompressing. This default soft "
++"limit will not make B<xz> switch from multi-threaded mode to single-threaded "
++"mode. The active limits can be seen with B<xz --info-memory>."
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:1257
++msgid ""
++"Currently the only threading method is to split the input into blocks and "
++"compress them independently from each other. The default block size depends "
++"on the compression level and can be overridden with the B<--block-"
++"size=>I<size> option."
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:1265
++msgid ""
++"Threaded decompression only works on files that contain multiple blocks with "
++"size information in block headers. All large enough files compressed in "
++"multi-threaded mode meet this condition, but files compressed in single-"
++"threaded mode don't even if B<--block-size=>I<size> has been used."
++msgstr ""
++
++#. type: SS
++#: ../src/xz/xz.1:1266 ../src/xz/xz.1:2819
++#, no-wrap
++msgid "Custom compressor filter chains"
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:1282
++msgid ""
++"A custom filter chain allows specifying the compression settings in detail "
++"instead of relying on the settings associated to the presets. When a custom "
++"filter chain is specified, preset options (B<-0> \\&...\\& B<-9> and B<--"
++"extreme>) earlier on the command line are forgotten. If a preset option is "
++"specified after one or more custom filter chain options, the new preset "
++"takes effect and the custom filter chain options specified earlier are "
++"forgotten."
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:1289
++msgid ""
++"A filter chain is comparable to piping on the command line. When "
++"compressing, the uncompressed input goes to the first filter, whose output "
++"goes to the next filter (if any). The output of the last filter gets "
++"written to the compressed file. The maximum number of filters in the chain "
++"is four, but typically a filter chain has only one or two filters."
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:1297
++msgid ""
++"Many filters have limitations on where they can be in the filter chain: some "
++"filters can work only as the last filter in the chain, some only as a non-"
++"last filter, and some work in any position in the chain. Depending on the "
++"filter, this limitation is either inherent to the filter design or exists to "
++"prevent security issues."
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:1305
++msgid ""
++"A custom filter chain is specified by using one or more filter options in "
++"the order they are wanted in the filter chain. That is, the order of filter "
++"options is significant! When decoding raw streams (B<--format=raw>), the "
++"filter chain is specified in the same order as it was specified when "
++"compressing."
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:1314
++msgid ""
++"Filters take filter-specific I<options> as a comma-separated list. Extra "
++"commas in I<options> are ignored. Every option has a default value, so you "
++"need to specify only those you want to change."
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:1323
++msgid ""
++"To see the whole filter chain and I<options>, use B<xz -vv> (that is, use "
++"B<--verbose> twice). This works also for viewing the filter chain options "
++"used by presets."
++msgstr ""
++
++#. type: TP
++#: ../src/xz/xz.1:1323
++#, no-wrap
++msgid "B<--lzma1>[B<=>I<options>]"
++msgstr "B<--lzma1>[B<=>I<tilvalg>]"
++
++#. type: TP
++#: ../src/xz/xz.1:1326
++#, no-wrap
++msgid "B<--lzma2>[B<=>I<options>]"
++msgstr "B<--lzma2>[B<=>I<tilvalg>]"
++
++#. type: Plain text
++#: ../src/xz/xz.1:1331
++msgid ""
++"Add LZMA1 or LZMA2 filter to the filter chain. These filters can be used "
++"only as the last filter in the chain."
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:1343
++msgid ""
++"LZMA1 is a legacy filter, which is supported almost solely due to the legacy "
++"B<.lzma> file format, which supports only LZMA1. LZMA2 is an updated "
++"version of LZMA1 to fix some practical issues of LZMA1. The B<.xz> format "
++"uses LZMA2 and doesn't support LZMA1 at all. Compression speed and ratios "
++"of LZMA1 and LZMA2 are practically the same."
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:1346
++msgid "LZMA1 and LZMA2 share the same set of I<options>:"
++msgstr ""
++
++#. type: TP
++#: ../src/xz/xz.1:1347
++#, fuzzy, no-wrap
++#| msgid "B<dev=>I<target>"
++msgid "B<preset=>I<preset>"
++msgstr "B<dev=>I<mål>"
++
++#. type: Plain text
++#: ../src/xz/xz.1:1374
++msgid ""
++"Reset all LZMA1 or LZMA2 I<options> to I<preset>. I<Preset> consist of an "
++"integer, which may be followed by single-letter preset modifiers. The "
++"integer can be from B<0> to B<9>, matching the command line options B<-0> "
++"\\&...\\& B<-9>. The only supported modifier is currently B<e>, which "
++"matches B<--extreme>. If no B<preset> is specified, the default values of "
++"LZMA1 or LZMA2 I<options> are taken from the preset B<6>."
++msgstr ""
++
++#. type: TP
++#: ../src/xz/xz.1:1374
++#, no-wrap
++msgid "B<dict=>I<size>"
++msgstr "B<dict=>I<størrelse>"
++
++#. type: Plain text
++#: ../src/xz/xz.1:1389
++msgid ""
++"Dictionary (history buffer) I<size> indicates how many bytes of the "
++"recently processed uncompressed data is kept in memory. The algorithm tries "
++"to find repeating byte sequences (matches) in the uncompressed data, and "
++"replace them with references to the data currently in the dictionary. The "
++"bigger the dictionary, the higher is the chance to find a match. Thus, "
++"increasing dictionary I<size> usually improves compression ratio, but a "
++"dictionary bigger than the uncompressed file is waste of memory."
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:1398
++msgid ""
++"Typical dictionary I<size> is from 64\\ KiB to 64\\ MiB. The minimum is 4\\ "
++"KiB. The maximum for compression is currently 1.5\\ GiB (1536\\ MiB). The "
++"decompressor already supports dictionaries up to one byte less than 4\\ GiB, "
++"which is the maximum for the LZMA1 and LZMA2 stream formats."
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:1425
++msgid ""
++"Dictionary I<size> and match finder (I<mf>) together determine the memory "
++"usage of the LZMA1 or LZMA2 encoder. The same (or bigger) dictionary "
++"I<size> is required for decompressing that was used when compressing, thus "
++"the memory usage of the decoder is determined by the dictionary size used "
++"when compressing. The B<.xz> headers store the dictionary I<size> either as "
++"2^I<n> or 2^I<n> + 2^(I<n>-1), so these I<sizes> are somewhat preferred for "
++"compression. Other I<sizes> will get rounded up when stored in the B<.xz> "
++"headers."
++msgstr ""
++
++#. type: TP
++#: ../src/xz/xz.1:1425
++#, fuzzy, no-wrap
++#| msgid "B<--version>"
++msgid "B<lc=>I<lc>"
++msgstr "B<--version>"
++
++#. type: Plain text
++#: ../src/xz/xz.1:1434
++msgid ""
++"Specify the number of literal context bits. The minimum is 0 and the "
++"maximum is 4; the default is 3. In addition, the sum of I<lc> and I<lp> "
++"must not exceed 4."
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:1439
++msgid ""
++"All bytes that cannot be encoded as matches are encoded as literals. That "
++"is, literals are simply 8-bit bytes that are encoded one at a time."
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:1453
++msgid ""
++"The literal coding makes an assumption that the highest I<lc> bits of the "
++"previous uncompressed byte correlate with the next byte. For example, in "
++"typical English text, an upper-case letter is often followed by a lower-case "
++"letter, and a lower-case letter is usually followed by another lower-case "
++"letter. In the US-ASCII character set, the highest three bits are 010 for "
++"upper-case letters and 011 for lower-case letters. When I<lc> is at least "
++"3, the literal coding can take advantage of this property in the "
++"uncompressed data."
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:1462
++msgid ""
++"The default value (3) is usually good. If you want maximum compression, "
++"test B<lc=4>. Sometimes it helps a little, and sometimes it makes "
++"compression worse. If it makes it worse, test B<lc=2> too."
++msgstr ""
++
++#. type: TP
++#: ../src/xz/xz.1:1462
++#, fuzzy, no-wrap
++#| msgid "B<--wrap=>I<symbol>"
++msgid "B<lp=>I<lp>"
++msgstr "B<--wrap=>I<symbol>"
++
++#. type: Plain text
++#: ../src/xz/xz.1:1466
++msgid ""
++"Specify the number of literal position bits. The minimum is 0 and the "
++"maximum is 4; the default is 0."
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:1473
++msgid ""
++"I<Lp> affects what kind of alignment in the uncompressed data is assumed "
++"when encoding literals. See I<pb> below for more information about "
++"alignment."
++msgstr ""
++
++#. type: TP
++#: ../src/xz/xz.1:1473
++#, fuzzy, no-wrap
++#| msgid "B<--version>"
++msgid "B<pb=>I<pb>"
++msgstr "B<--version>"
++
++#. type: Plain text
++#: ../src/xz/xz.1:1477
++msgid ""
++"Specify the number of position bits. The minimum is 0 and the maximum is 4; "
++"the default is 2."
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:1484
++msgid ""
++"I<Pb> affects what kind of alignment in the uncompressed data is assumed in "
++"general. The default means four-byte alignment (2^I<pb>=2^2=4), which is "
++"often a good choice when there's no better guess."
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:1498
++msgid ""
++"When the alignment is known, setting I<pb> accordingly may reduce the file "
++"size a little. For example, with text files having one-byte alignment (US-"
++"ASCII, ISO-8859-*, UTF-8), setting B<pb=0> can improve compression "
++"slightly. For UTF-16 text, B<pb=1> is a good choice. If the alignment is "
++"an odd number like 3 bytes, B<pb=0> might be the best choice."
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:1506
++msgid ""
++"Even though the assumed alignment can be adjusted with I<pb> and I<lp>, "
++"LZMA1 and LZMA2 still slightly favor 16-byte alignment. It might be worth "
++"taking into account when designing file formats that are likely to be often "
++"compressed with LZMA1 or LZMA2."
++msgstr ""
++
++#. type: TP
++#: ../src/xz/xz.1:1506
++#, fuzzy, no-wrap
++#| msgid "B<--help>"
++msgid "B<mf=>I<mf>"
++msgstr "B<--help>"
++
++#. type: Plain text
++#: ../src/xz/xz.1:1521
++msgid ""
++"Match finder has a major effect on encoder speed, memory usage, and "
++"compression ratio. Usually Hash Chain match finders are faster than Binary "
++"Tree match finders. The default depends on the I<preset>: 0 uses B<hc3>, "
++"1\\(en3 use B<hc4>, and the rest use B<bt4>."
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:1527
++msgid ""
++"The following match finders are supported. The memory usage formulas below "
++"are rough approximations, which are closest to the reality when I<dict> is a "
++"power of two."
++msgstr ""
++
++#. type: TP
++#: ../src/xz/xz.1:1528
++#, no-wrap
++msgid "B<hc3>"
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:1531
++msgid "Hash Chain with 2- and 3-byte hashing"
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:1535 ../src/xz/xz.1:1584
++msgid "Minimum value for I<nice>: 3"
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:1537 ../src/xz/xz.1:1556 ../src/xz/xz.1:1586
++#: ../src/xz/xz.1:1605
++#, fuzzy
++#| msgid "--print-memory-usage"
++msgid "Memory usage:"
++msgstr "--print-memory-usage"
++
++#. type: Plain text
++#: ../src/xz/xz.1:1542
++msgid "I<dict> * 7.5 (if I<dict> E<lt>= 16 MiB);"
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:1547
++msgid "I<dict> * 5.5 + 64 MiB (if I<dict> E<gt> 16 MiB)"
++msgstr ""
++
++#. type: TP
++#: ../src/xz/xz.1:1547
++#, no-wrap
++msgid "B<hc4>"
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:1550
++msgid "Hash Chain with 2-, 3-, and 4-byte hashing"
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:1554 ../src/xz/xz.1:1603
++msgid "Minimum value for I<nice>: 4"
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:1561
++msgid "I<dict> * 7.5 (if I<dict> E<lt>= 32 MiB);"
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:1566
++msgid "I<dict> * 6.5 (if I<dict> E<gt> 32 MiB)"
++msgstr ""
++
++#. type: TP
++#: ../src/xz/xz.1:1566
++#, no-wrap
++msgid "B<bt2>"
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:1569
++msgid "Binary Tree with 2-byte hashing"
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:1573
++msgid "Minimum value for I<nice>: 2"
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:1577
++msgid "Memory usage: I<dict> * 9.5"
++msgstr ""
++
++#. type: TP
++#: ../src/xz/xz.1:1577
++#, no-wrap
++msgid "B<bt3>"
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:1580
++msgid "Binary Tree with 2- and 3-byte hashing"
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:1591
++msgid "I<dict> * 11.5 (if I<dict> E<lt>= 16 MiB);"
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:1596
++msgid "I<dict> * 9.5 + 64 MiB (if I<dict> E<gt> 16 MiB)"
++msgstr ""
++
++#. type: TP
++#: ../src/xz/xz.1:1596
++#, no-wrap
++msgid "B<bt4>"
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:1599
++msgid "Binary Tree with 2-, 3-, and 4-byte hashing"
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:1610
++msgid "I<dict> * 11.5 (if I<dict> E<lt>= 32 MiB);"
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:1615
++msgid "I<dict> * 10.5 (if I<dict> E<gt> 32 MiB)"
++msgstr ""
++
++#. type: TP
++#: ../src/xz/xz.1:1616
++#, fuzzy, no-wrap
++#| msgid "B<--version>"
++msgid "B<mode=>I<mode>"
++msgstr "B<--version>"
++
++#. type: Plain text
++#: ../src/xz/xz.1:1637
++msgid ""
++"Compression I<mode> specifies the method to analyze the data produced by the "
++"match finder. Supported I<modes> are B<fast> and B<normal>. The default is "
++"B<fast> for I<presets> 0\\(en3 and B<normal> for I<presets> 4\\(en9."
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:1646
++msgid ""
++"Usually B<fast> is used with Hash Chain match finders and B<normal> with "
++"Binary Tree match finders. This is also what the I<presets> do."
++msgstr ""
++
++#. type: TP
++#: ../src/xz/xz.1:1646
++#, fuzzy, no-wrap
++#| msgid "B<--help>"
++msgid "B<nice=>I<nice>"
++msgstr "B<--help>"
++
++#. type: Plain text
++#: ../src/xz/xz.1:1653
++msgid ""
++"Specify what is considered to be a nice length for a match. Once a match of "
++"at least I<nice> bytes is found, the algorithm stops looking for possibly "
++"better matches."
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:1660
++msgid ""
++"I<Nice> can be 2\\(en273 bytes. Higher values tend to give better "
++"compression ratio at the expense of speed. The default depends on the "
++"I<preset>."
++msgstr ""
++
++#. type: TP
++#: ../src/xz/xz.1:1660
++#, fuzzy, no-wrap
++#| msgid "B<dev=>I<target>"
++msgid "B<depth=>I<depth>"
++msgstr "B<dev=>I<mål>"
++
++#. type: Plain text
++#: ../src/xz/xz.1:1670
++msgid ""
++"Specify the maximum search depth in the match finder. The default is the "
++"special value of 0, which makes the compressor determine a reasonable "
++"I<depth> from I<mf> and I<nice>."
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:1681
++msgid ""
++"Reasonable I<depth> for Hash Chains is 4\\(en100 and 16\\(en1000 for Binary "
++"Trees. Using very high values for I<depth> can make the encoder extremely "
++"slow with some files. Avoid setting the I<depth> over 1000 unless you are "
++"prepared to interrupt the compression in case it is taking far too long."
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:1692
++msgid ""
++"When decoding raw streams (B<--format=raw>), LZMA2 needs only the dictionary "
++"I<size>. LZMA1 needs also I<lc>, I<lp>, and I<pb>."
++msgstr ""
++
++#. type: TP
++#: ../src/xz/xz.1:1692
++#, no-wrap
++msgid "B<--x86>[B<=>I<options>]"
++msgstr "B<--x86>[B<=>I<tilvalg>]"
++
++#. type: TP
++#: ../src/xz/xz.1:1695
++#, no-wrap
++msgid "B<--arm>[B<=>I<options>]"
++msgstr "B<--arm>[B<=>I<tilvalg>]"
++
++#. type: TP
++#: ../src/xz/xz.1:1697
++#, no-wrap
++msgid "B<--armthumb>[B<=>I<options>]"
++msgstr "B<--armthumb>[B<=>I<tilvalg>]"
++
++#. type: TP
++#: ../src/xz/xz.1:1699
++#, no-wrap
++msgid "B<--arm64>[B<=>I<options>]"
++msgstr "B<--arm64>[B<=>I<tilvalg>]"
++
++#. type: TP
++#: ../src/xz/xz.1:1701
++#, no-wrap
++msgid "B<--powerpc>[B<=>I<options>]"
++msgstr "B<--powerpc>[B<=>I<tilvalg>]"
++
++#. type: TP
++#: ../src/xz/xz.1:1703
++#, no-wrap
++msgid "B<--ia64>[B<=>I<options>]"
++msgstr "B<--ia64>[B<=>I<tilvalg>]"
++
++#. type: TP
++#: ../src/xz/xz.1:1705
++#, no-wrap
++msgid "B<--sparc>[B<=>I<options>]"
++msgstr "B<--sparc>[B<=>I<tilvalg>]"
++
++#. type: Plain text
++#: ../src/xz/xz.1:1711
++msgid ""
++"Add a branch/call/jump (BCJ) filter to the filter chain. These filters can "
++"be used only as a non-last filter in the filter chain."
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:1725
++msgid ""
++"A BCJ filter converts relative addresses in the machine code to their "
++"absolute counterparts. This doesn't change the size of the data but it "
++"increases redundancy, which can help LZMA2 to produce 0\\(en15\\ % smaller "
++"B<.xz> file. The BCJ filters are always reversible, so using a BCJ filter "
++"for wrong type of data doesn't cause any data loss, although it may make the "
++"compression ratio slightly worse. The BCJ filters are very fast and use an "
++"insignificant amount of memory."
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:1728
++msgid "These BCJ filters have known problems related to the compression ratio:"
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:1735
++msgid ""
++"Some types of files containing executable code (for example, object files, "
++"static libraries, and Linux kernel modules) have the addresses in the "
++"instructions filled with filler values. These BCJ filters will still do the "
++"address conversion, which will make the compression worse with these files."
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:1745
++msgid ""
++"If a BCJ filter is applied on an archive, it is possible that it makes the "
++"compression ratio worse than not using a BCJ filter. For example, if there "
++"are similar or even identical executables then filtering will likely make "
++"the files less similar and thus compression is worse. The contents of non-"
++"executable files in the same archive can matter too. In practice one has to "
++"try with and without a BCJ filter to see which is better in each situation."
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:1750
++msgid ""
++"Different instruction sets have different alignment: the executable file "
++"must be aligned to a multiple of this value in the input data to make the "
++"filter work."
++msgstr ""
++
++#. type: tbl table
++#: ../src/xz/xz.1:1757
++#, fuzzy, no-wrap
++#| msgid "Filters"
++msgid "Filter"
++msgstr "Filtre"
++
++#. type: tbl table
++#: ../src/xz/xz.1:1757
++#, fuzzy, no-wrap
++#| msgid "Arguments"
++msgid "Alignment"
++msgstr "Argumenter"
++
++#. type: tbl table
++#: ../src/xz/xz.1:1757
++#, no-wrap
++msgid "Notes"
++msgstr "Noter"
++
++#. type: tbl table
++#: ../src/xz/xz.1:1758
++#, fuzzy, no-wrap
++#| msgid "86"
++msgid "x86"
++msgstr "86"
++
++#. type: tbl table
++#: ../src/xz/xz.1:1758
++#, no-wrap
++msgid "32-bit or 64-bit x86"
++msgstr ""
++
++#. type: tbl table
++#: ../src/xz/xz.1:1759
++#, fuzzy, no-wrap
++#| msgid "RM"
++msgid "ARM"
++msgstr "RM"
++
++#. type: tbl table
++#: ../src/xz/xz.1:1760
++#, no-wrap
++msgid "ARM-Thumb"
++msgstr ""
++
++#. type: tbl table
++#: ../src/xz/xz.1:1761
++#, no-wrap
++msgid "ARM64"
++msgstr ""
++
++#. type: tbl table
++#: ../src/xz/xz.1:1761
++#, no-wrap
++msgid "4096-byte alignment is best"
++msgstr ""
++
++#. type: tbl table
++#: ../src/xz/xz.1:1762
++#, no-wrap
++msgid "PowerPC"
++msgstr ""
++
++#. type: tbl table
++#: ../src/xz/xz.1:1762
++#, no-wrap
++msgid "Big endian only"
++msgstr ""
++
++#. type: tbl table
++#: ../src/xz/xz.1:1763
++#, no-wrap
++msgid "IA-64"
++msgstr ""
++
++#. type: tbl table
++#: ../src/xz/xz.1:1763
++#, no-wrap
++msgid "16"
++msgstr "16"
++
++#. type: tbl table
++#: ../src/xz/xz.1:1763
++#, no-wrap
++msgid "Itanium"
++msgstr ""
++
++#. type: tbl table
++#: ../src/xz/xz.1:1764
++#, no-wrap
++msgid "SPARC"
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:1781
++msgid ""
++"Since the BCJ-filtered data is usually compressed with LZMA2, the "
++"compression ratio may be improved slightly if the LZMA2 options are set to "
++"match the alignment of the selected BCJ filter. For example, with the IA-64 "
++"filter, it's good to set B<pb=4> or even B<pb=4,lp=4,lc=0> with LZMA2 "
++"(2^4=16). The x86 filter is an exception; it's usually good to stick to "
++"LZMA2's default four-byte alignment when compressing x86 executables."
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:1784
++msgid "All BCJ filters support the same I<options>:"
++msgstr ""
++
++#. type: TP
++#: ../src/xz/xz.1:1785
++#, no-wrap
++msgid "B<start=>I<offset>"
++msgstr "B<start=>I<forskydning>"
++
++#. type: Plain text
++#: ../src/xz/xz.1:1799
++msgid ""
++"Specify the start I<offset> that is used when converting between relative "
++"and absolute addresses. The I<offset> must be a multiple of the alignment "
++"of the filter (see the table above). The default is zero. In practice, the "
++"default is good; specifying a custom I<offset> is almost never useful."
++msgstr ""
++
++#. type: TP
++#: ../src/xz/xz.1:1800
++#, no-wrap
++msgid "B<--delta>[B<=>I<options>]"
++msgstr "B<--delta>[B<=>I<tilvalg>]"
++
++#. type: Plain text
++#: ../src/xz/xz.1:1805
++msgid ""
++"Add the Delta filter to the filter chain. The Delta filter can be only used "
++"as a non-last filter in the filter chain."
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:1814
++msgid ""
++"Currently only simple byte-wise delta calculation is supported. It can be "
++"useful when compressing, for example, uncompressed bitmap images or "
++"uncompressed PCM audio. However, special purpose algorithms may give "
++"significantly better results than Delta + LZMA2. This is true especially "
++"with audio, which compresses faster and better, for example, with B<flac>(1)."
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:1817
++#, fuzzy
++#| msgid "Other options:"
++msgid "Supported I<options>:"
++msgstr "Andre flag:"
++
++#. type: TP
++#: ../src/xz/xz.1:1818
++#, fuzzy, no-wrap
++#| msgid "notrunc"
++msgid "B<dist=>I<distance>"
++msgstr "notrunc"
++
++#. type: Plain text
++#: ../src/xz/xz.1:1826
++msgid ""
++"Specify the I<distance> of the delta calculation in bytes. I<distance> must "
++"be 1\\(en256. The default is 1."
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:1831
++msgid ""
++"For example, with B<dist=2> and eight-byte input A1 B1 A2 B3 A3 B5 A4 B7, "
++"the output will be A1 B1 01 02 01 02 01 02."
++msgstr ""
++
++#. type: SS
++#: ../src/xz/xz.1:1833
++#, no-wrap
++msgid "Other options"
++msgstr ""
++
++#. type: TP
++#: ../src/xz/xz.1:1834 ../src/xzdec/xzdec.1:83
++#, no-wrap
++msgid "B<-q>, B<--quiet>"
++msgstr "B<-q>, B<--quiet>"
++
++#. type: Plain text
++#: ../src/xz/xz.1:1841
++msgid ""
++"Suppress warnings and notices. Specify this twice to suppress errors too. "
++"This option has no effect on the exit status. That is, even if a warning "
++"was suppressed, the exit status to indicate a warning is still used."
++msgstr ""
++
++#. type: TP
++#: ../src/xz/xz.1:1841
++#, no-wrap
++msgid "B<-v>, B<--verbose>"
++msgstr "B<-v>, B<--verbose>"
++
++#. type: Plain text
++#: ../src/xz/xz.1:1850
++msgid ""
++"Be verbose. If standard error is connected to a terminal, B<xz> will "
++"display a progress indicator. Specifying B<--verbose> twice will give even "
++"more verbose output."
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:1852
++msgid "The progress indicator shows the following information:"
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:1857
++msgid ""
++"Completion percentage is shown if the size of the input file is known. That "
++"is, the percentage cannot be shown in pipes."
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:1860
++msgid ""
++"Amount of compressed data produced (compressing) or consumed "
++"(decompressing)."
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:1863
++msgid ""
++"Amount of uncompressed data consumed (compressing) or produced "
++"(decompressing)."
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:1867
++msgid ""
++"Compression ratio, which is calculated by dividing the amount of compressed "
++"data processed so far by the amount of uncompressed data processed so far."
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:1874
++msgid ""
++"Compression or decompression speed. This is measured as the amount of "
++"uncompressed data consumed (compression) or produced (decompression) per "
++"second. It is shown after a few seconds have passed since B<xz> started "
++"processing the file."
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:1876
++msgid "Elapsed time in the format M:SS or H:MM:SS."
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:1884
++msgid ""
++"Estimated remaining time is shown only when the size of the input file is "
++"known and a couple of seconds have already passed since B<xz> started "
++"processing the file. The time is shown in a less precise format which never "
++"has any colons, for example, 2 min 30 s."
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:1899
++msgid ""
++"When standard error is not a terminal, B<--verbose> will make B<xz> print "
++"the filename, compressed size, uncompressed size, compression ratio, and "
++"possibly also the speed and elapsed time on a single line to standard error "
++"after compressing or decompressing the file. The speed and elapsed time are "
++"included only when the operation took at least a few seconds. If the "
++"operation didn't finish, for example, due to user interruption, also the "
++"completion percentage is printed if the size of the input file is known."
++msgstr ""
++
++#. type: TP
++#: ../src/xz/xz.1:1899 ../src/xzdec/xzdec.1:89
++#, no-wrap
++msgid "B<-Q>, B<--no-warn>"
++msgstr "B<-Q>, B<--no-warn>"
++
++#. type: Plain text
++#: ../src/xz/xz.1:1909
++msgid ""
++"Don't set the exit status to 2 even if a condition worth a warning was "
++"detected. This option doesn't affect the verbosity level, thus both B<--"
++"quiet> and B<--no-warn> have to be used to not display warnings and to not "
++"alter the exit status."
++msgstr ""
++
++#. type: TP
++#: ../src/xz/xz.1:1909
++#, no-wrap
++msgid "B<--robot>"
++msgstr "B<--robot>"
++
++#. type: Plain text
++#: ../src/xz/xz.1:1921
++msgid ""
++"Print messages in a machine-parsable format. This is intended to ease "
++"writing frontends that want to use B<xz> instead of liblzma, which may be "
++"the case with various scripts. The output with this option enabled is meant "
++"to be stable across B<xz> releases. See the section B<ROBOT MODE> for "
++"details."
++msgstr ""
++
++#. type: TP
++#: ../src/xz/xz.1:1921
++#, no-wrap
++msgid "B<--info-memory>"
++msgstr "B<--info-memory>"
++
++#. type: Plain text
++#: ../src/xz/xz.1:1928
++msgid ""
++"Display, in human-readable format, how much physical memory (RAM) and how "
++"many processor threads B<xz> thinks the system has and the memory usage "
++"limits for compression and decompression, and exit successfully."
++msgstr ""
++
++#. type: TP
++#: ../src/xz/xz.1:1928 ../src/xzdec/xzdec.1:96
++#, no-wrap
++msgid "B<-h>, B<--help>"
++msgstr "B<-h>, B<--help>"
++
++#. type: Plain text
++#: ../src/xz/xz.1:1932
++msgid ""
++"Display a help message describing the most commonly used options, and exit "
++"successfully."
++msgstr ""
++
++#. type: TP
++#: ../src/xz/xz.1:1932
++#, no-wrap
++msgid "B<-H>, B<--long-help>"
++msgstr "B<-H>, B<--long-help>"
++
++#. type: Plain text
++#: ../src/xz/xz.1:1937
++msgid ""
++"Display a help message describing all features of B<xz>, and exit "
++"successfully"
++msgstr ""
++
++#. type: TP
++#: ../src/xz/xz.1:1937 ../src/xzdec/xzdec.1:99
++#, no-wrap
++msgid "B<-V>, B<--version>"
++msgstr "B<-V>, B<--version>"
++
++#. type: Plain text
++#: ../src/xz/xz.1:1946
++msgid ""
++"Display the version number of B<xz> and liblzma in human readable format. "
++"To get machine-parsable output, specify B<--robot> before B<--version>."
++msgstr ""
++
++#. type: SH
++#: ../src/xz/xz.1:1947
++#, no-wrap
++msgid "ROBOT MODE"
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:1963
++msgid ""
++"The robot mode is activated with the B<--robot> option. It makes the output "
++"of B<xz> easier to parse by other programs. Currently B<--robot> is "
++"supported only together with B<--version>, B<--info-memory>, and B<--list>. "
++"It will be supported for compression and decompression in the future."
++msgstr ""
++
++#. type: SS
++#: ../src/xz/xz.1:1964
++#, fuzzy, no-wrap
++#| msgid "Versions"
++msgid "Version"
++msgstr "Versioner"
++
++#. type: Plain text
++#: ../src/xz/xz.1:1969
++msgid ""
++"B<xz --robot --version> will print the version number of B<xz> and liblzma "
++"in the following format:"
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:1971
++msgid "B<XZ_VERSION=>I<XYYYZZZS>"
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:1973
++msgid "B<LIBLZMA_VERSION=>I<XYYYZZZS>"
++msgstr ""
++
++#. type: TP
++#: ../src/xz/xz.1:1973
++#, no-wrap
++msgid "I<X>"
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:1976
++#, fuzzy
++#| msgid "version"
++msgid "Major version."
++msgstr "version"
++
++#. type: TP
++#: ../src/xz/xz.1:1976
++#, no-wrap
++msgid "I<YYY>"
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:1981
++msgid ""
++"Minor version. Even numbers are stable. Odd numbers are alpha or beta "
++"versions."
++msgstr ""
++
++#. type: TP
++#: ../src/xz/xz.1:1981
++#, no-wrap
++msgid "I<ZZZ>"
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:1985
++msgid ""
++"Patch level for stable releases or just a counter for development releases."
++msgstr ""
++
++#. type: TP
++#: ../src/xz/xz.1:1985
++#, no-wrap
++msgid "I<S>"
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:1993
++msgid ""
++"Stability. 0 is alpha, 1 is beta, and 2 is stable. I<S> should be always 2 "
++"when I<YYY> is even."
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:1998
++msgid ""
++"I<XYYYZZZS> are the same on both lines if B<xz> and liblzma are from the "
++"same XZ Utils release."
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:2004
++msgid "Examples: 4.999.9beta is B<49990091> and 5.0.0 is B<50000002>."
++msgstr ""
++
++#. type: SS
++#: ../src/xz/xz.1:2005
++#, no-wrap
++msgid "Memory limit information"
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:2008
++msgid ""
++"B<xz --robot --info-memory> prints a single line with three tab-separated "
++"columns:"
++msgstr ""
++
++#. type: IP
++#: ../src/xz/xz.1:2008
++#, no-wrap
++msgid "1."
++msgstr "1."
++
++#. type: Plain text
++#: ../src/xz/xz.1:2010
++msgid "Total amount of physical memory (RAM) in bytes."
++msgstr ""
++
++#. type: IP
++#: ../src/xz/xz.1:2010 ../src/xz/xz.1:2125 ../src/xz/xz.1:2162
++#: ../src/xz/xz.1:2188 ../src/xz/xz.1:2258 ../src/xz/xz.1:2285
++#, no-wrap
++msgid "2."
++msgstr "2."
++
++#. type: Plain text
++#: ../src/xz/xz.1:2017
++msgid ""
++"Memory usage limit for compression in bytes (B<--memlimit-compress>). A "
++"special value of B<0> indicates the default setting which for single-"
++"threaded mode is the same as no limit."
++msgstr ""
++
++#. type: IP
++#: ../src/xz/xz.1:2017 ../src/xz/xz.1:2127 ../src/xz/xz.1:2164
++#: ../src/xz/xz.1:2190 ../src/xz/xz.1:2263 ../src/xz/xz.1:2287
++#, no-wrap
++msgid "3."
++msgstr "3."
++
++#. type: Plain text
++#: ../src/xz/xz.1:2024
++msgid ""
++"Memory usage limit for decompression in bytes (B<--memlimit-decompress>). A "
++"special value of B<0> indicates the default setting which for single-"
++"threaded mode is the same as no limit."
++msgstr ""
++
++#. type: IP
++#: ../src/xz/xz.1:2024 ../src/xz/xz.1:2129 ../src/xz/xz.1:2166
++#: ../src/xz/xz.1:2193 ../src/xz/xz.1:2273 ../src/xz/xz.1:2289
++#, no-wrap
++msgid "4."
++msgstr "4."
++
++#. type: Plain text
++#: ../src/xz/xz.1:2036
++msgid ""
++"Since B<xz> 5.3.4alpha: Memory usage for multi-threaded decompression in "
++"bytes (B<--memlimit-mt-decompress>). This is never zero because a system-"
++"specific default value shown in the column 5 is used if no limit has been "
++"specified explicitly. This is also never greater than the value in the "
++"column 3 even if a larger value has been specified with B<--memlimit-mt-"
++"decompress>."
++msgstr ""
++
++#. type: IP
++#: ../src/xz/xz.1:2036 ../src/xz/xz.1:2131 ../src/xz/xz.1:2168
++#: ../src/xz/xz.1:2195 ../src/xz/xz.1:2291
++#, no-wrap
++msgid "5."
++msgstr "5."
++
++#. type: Plain text
++#: ../src/xz/xz.1:2048
++msgid ""
++"Since B<xz> 5.3.4alpha: A system-specific default memory usage limit that is "
++"used to limit the number of threads when compressing with an automatic "
++"number of threads (B<--threads=0>) and no memory usage limit has been "
++"specified (B<--memlimit-compress>). This is also used as the default value "
++"for B<--memlimit-mt-decompress>."
++msgstr ""
++
++#. type: IP
++#: ../src/xz/xz.1:2048 ../src/xz/xz.1:2133 ../src/xz/xz.1:2170
++#: ../src/xz/xz.1:2197 ../src/xz/xz.1:2293
++#, no-wrap
++msgid "6."
++msgstr "6."
++
++#. type: Plain text
++#: ../src/xz/xz.1:2053
++msgid "Since B<xz> 5.3.4alpha: Number of available processor threads."
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:2057
++msgid ""
++"In the future, the output of B<xz --robot --info-memory> may have more "
++"columns, but never more than a single line."
++msgstr ""
++
++#. type: SS
++#: ../src/xz/xz.1:2058
++#, no-wrap
++msgid "List mode"
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:2063
++msgid ""
++"B<xz --robot --list> uses tab-separated output. The first column of every "
++"line has a string that indicates the type of the information found on that "
++"line:"
++msgstr ""
++
++#. type: TP
++#: ../src/xz/xz.1:2063
++#, no-wrap
++msgid "B<name>"
++msgstr "B<name>"
++
++#. type: Plain text
++#: ../src/xz/xz.1:2067
++msgid ""
++"This is always the first line when starting to list a file. The second "
++"column on the line is the filename."
++msgstr ""
++
++#. type: TP
++#: ../src/xz/xz.1:2067
++#, no-wrap
++msgid "B<file>"
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:2075
++msgid ""
++"This line contains overall information about the B<.xz> file. This line is "
++"always printed after the B<name> line."
++msgstr ""
++
++#. type: TP
++#: ../src/xz/xz.1:2075
++#, fuzzy, no-wrap
++#| msgid "B<step>"
++msgid "B<stream>"
++msgstr "B<step>"
++
++#. type: Plain text
++#: ../src/xz/xz.1:2085
++msgid ""
++"This line type is used only when B<--verbose> was specified. There are as "
++"many B<stream> lines as there are streams in the B<.xz> file."
++msgstr ""
++
++#. type: TP
++#: ../src/xz/xz.1:2085
++#, fuzzy, no-wrap
++#| msgid "block"
++msgid "B<block>"
++msgstr "block"
++
++#. type: Plain text
++#: ../src/xz/xz.1:2100
++msgid ""
++"This line type is used only when B<--verbose> was specified. There are as "
++"many B<block> lines as there are blocks in the B<.xz> file. The B<block> "
++"lines are shown after all the B<stream> lines; different line types are not "
++"interleaved."
++msgstr ""
++
++#. type: TP
++#: ../src/xz/xz.1:2100
++#, no-wrap
++msgid "B<summary>"
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:2115
++msgid ""
++"This line type is used only when B<--verbose> was specified twice. This "
++"line is printed after all B<block> lines. Like the B<file> line, the "
++"B<summary> line contains overall information about the B<.xz> file."
++msgstr ""
++
++#. type: TP
++#: ../src/xz/xz.1:2115
++#, fuzzy, no-wrap
++#| msgid "B<--total>"
++msgid "B<totals>"
++msgstr "B<--total>"
++
++#. type: Plain text
++#: ../src/xz/xz.1:2119
++msgid ""
++"This line is always the very last line of the list output. It shows the "
++"total counts and sizes."
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:2123
++#, fuzzy
++#| msgid "The name of the file."
++msgid "The columns of the B<file> lines:"
++msgstr "Navnet på filen."
++
++#. type: Plain text
++#: ../src/xz/xz.1:2127
++msgid "Number of streams in the file"
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:2129
++msgid "Total number of blocks in the stream(s)"
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:2131
++#, fuzzy
++#| msgid "The name of the file."
++msgid "Compressed size of the file"
++msgstr "Navnet på filen."
++
++#. type: Plain text
++#: ../src/xz/xz.1:2133
++#, fuzzy
++#| msgid "The name of the file."
++msgid "Uncompressed size of the file"
++msgstr "Navnet på filen."
++
++#. type: Plain text
++#: ../src/xz/xz.1:2139
++msgid ""
++"Compression ratio, for example, B<0.123>. If ratio is over 9.999, three "
++"dashes (B<--->) are displayed instead of the ratio."
++msgstr ""
++
++#. type: IP
++#: ../src/xz/xz.1:2139 ../src/xz/xz.1:2172 ../src/xz/xz.1:2199
++#: ../src/xz/xz.1:2295
++#, no-wrap
++msgid "7."
++msgstr "7."
++
++#. type: Plain text
++#: ../src/xz/xz.1:2152
++msgid ""
++"Comma-separated list of integrity check names. The following strings are "
++"used for the known check types: B<None>, B<CRC32>, B<CRC64>, and "
++"B<SHA-256>. For unknown check types, B<Unknown->I<N> is used, where I<N> is "
++"the Check ID as a decimal number (one or two digits)."
++msgstr ""
++
++#. type: IP
++#: ../src/xz/xz.1:2152 ../src/xz/xz.1:2174 ../src/xz/xz.1:2201
++#: ../src/xz/xz.1:2298
++#, no-wrap
++msgid "8."
++msgstr "8."
++
++#. type: Plain text
++#: ../src/xz/xz.1:2154
++msgid "Total size of stream padding in the file"
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:2160
++msgid "The columns of the B<stream> lines:"
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:2164
++msgid "Stream number (the first stream is 1)"
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:2166
++msgid "Number of blocks in the stream"
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:2168
++msgid "Compressed start offset"
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:2170
++#, fuzzy
++#| msgid "Uncompress data."
++msgid "Uncompressed start offset"
++msgstr "Udpak komprimerede data."
++
++#. type: Plain text
++#: ../src/xz/xz.1:2172
++msgid "Compressed size (does not include stream padding)"
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:2174 ../src/xz/xz.1:2203 ../src/xz/xz.1:2293
++#, fuzzy
++#| msgid "Uncompress data."
++msgid "Uncompressed size"
++msgstr "Udpak komprimerede data."
++
++#. type: Plain text
++#: ../src/xz/xz.1:2176 ../src/xz/xz.1:2205
++#, fuzzy
++#| msgid "Compression"
++msgid "Compression ratio"
++msgstr "Kompression"
++
++#. type: IP
++#: ../src/xz/xz.1:2176 ../src/xz/xz.1:2203 ../src/xz/xz.1:2300
++#, no-wrap
++msgid "9."
++msgstr "9."
++
++#. type: Plain text
++#: ../src/xz/xz.1:2178 ../src/xz/xz.1:2207
++msgid "Name of the integrity check"
++msgstr ""
++
++#. type: IP
++#: ../src/xz/xz.1:2178 ../src/xz/xz.1:2205 ../src/xz/xz.1:2316
++#, no-wrap
++msgid "10."
++msgstr "10."
++
++#. type: Plain text
++#: ../src/xz/xz.1:2180
++msgid "Size of stream padding"
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:2186
++msgid "The columns of the B<block> lines:"
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:2190
++msgid "Number of the stream containing this block"
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:2193
++msgid ""
++"Block number relative to the beginning of the stream (the first block is 1)"
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:2195
++msgid "Block number relative to the beginning of the file"
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:2197
++msgid "Compressed start offset relative to the beginning of the file"
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:2199
++msgid "Uncompressed start offset relative to the beginning of the file"
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:2201
++msgid "Total compressed size of the block (includes headers)"
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:2219
++msgid ""
++"If B<--verbose> was specified twice, additional columns are included on the "
++"B<block> lines. These are not displayed with a single B<--verbose>, because "
++"getting this information requires many seeks and can thus be slow:"
++msgstr ""
++
++#. type: IP
++#: ../src/xz/xz.1:2221 ../src/xz/xz.1:2321
++#, no-wrap
++msgid "11."
++msgstr "11."
++
++#. type: Plain text
++#: ../src/xz/xz.1:2223
++msgid "Value of the integrity check in hexadecimal"
++msgstr ""
++
++#. type: IP
++#: ../src/xz/xz.1:2223 ../src/xz/xz.1:2331
++#, no-wrap
++msgid "12."
++msgstr "12."
++
++#. type: Plain text
++#: ../src/xz/xz.1:2225
++msgid "Block header size"
++msgstr ""
++
++#. type: IP
++#: ../src/xz/xz.1:2225
++#, no-wrap
++msgid "13."
++msgstr "13."
++
++#. type: Plain text
++#: ../src/xz/xz.1:2235
++msgid ""
++"Block flags: B<c> indicates that compressed size is present, and B<u> "
++"indicates that uncompressed size is present. If the flag is not set, a dash "
++"(B<->) is shown instead to keep the string length fixed. New flags may be "
++"added to the end of the string in the future."
++msgstr ""
++
++#. type: IP
++#: ../src/xz/xz.1:2235
++#, no-wrap
++msgid "14."
++msgstr "14."
++
++#. type: Plain text
++#: ../src/xz/xz.1:2238
++msgid ""
++"Size of the actual compressed data in the block (this excludes the block "
++"header, block padding, and check fields)"
++msgstr ""
++
++#. type: IP
++#: ../src/xz/xz.1:2238
++#, no-wrap
++msgid "15."
++msgstr "15."
++
++#. type: Plain text
++#: ../src/xz/xz.1:2243
++msgid ""
++"Amount of memory (in bytes) required to decompress this block with this "
++"B<xz> version"
++msgstr ""
++
++#. type: IP
++#: ../src/xz/xz.1:2243
++#, no-wrap
++msgid "16."
++msgstr "16."
++
++#. type: Plain text
++#: ../src/xz/xz.1:2250
++msgid ""
++"Filter chain. Note that most of the options used at compression time cannot "
++"be known, because only the options that are needed for decompression are "
++"stored in the B<.xz> headers."
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:2256
++msgid "The columns of the B<summary> lines:"
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:2263
++msgid ""
++"Amount of memory (in bytes) required to decompress this file with this B<xz> "
++"version"
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:2269 ../src/xz/xz.1:2327
++msgid ""
++"B<yes> or B<no> indicating if all block headers have both compressed size "
++"and uncompressed size stored in them"
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:2273 ../src/xz/xz.1:2331
++msgid "I<Since> B<xz> I<5.1.2alpha:>"
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:2277 ../src/xz/xz.1:2335
++msgid "Minimum B<xz> version required to decompress the file"
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:2283
++msgid "The columns of the B<totals> line:"
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:2287
++#, fuzzy
++#| msgid "Number of PBKDF2 iterations"
++msgid "Number of streams"
++msgstr "Antal PBKDF2-iterationer"
++
++#. type: Plain text
++#: ../src/xz/xz.1:2289
++#, fuzzy
++#| msgid "number of hard links"
++msgid "Number of blocks"
++msgstr "antal hårde lænker"
++
++#. type: Plain text
++#: ../src/xz/xz.1:2291
++#, fuzzy
++#| msgid "Compression"
++msgid "Compressed size"
++msgstr "Kompression"
++
++#. type: Plain text
++#: ../src/xz/xz.1:2295
++msgid "Average compression ratio"
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:2298
++msgid ""
++"Comma-separated list of integrity check names that were present in the files"
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:2300
++msgid "Stream padding size"
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:2306
++msgid ""
++"Number of files. This is here to keep the order of the earlier columns the "
++"same as on B<file> lines."
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:2314
++msgid ""
++"If B<--verbose> was specified twice, additional columns are included on the "
++"B<totals> line:"
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:2321
++msgid ""
++"Maximum amount of memory (in bytes) required to decompress the files with "
++"this B<xz> version"
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:2341
++msgid ""
++"Future versions may add new line types and new columns can be added to the "
++"existing line types, but the existing columns won't be changed."
++msgstr ""
++
++#. type: SH
++#: ../src/xz/xz.1:2342 ../src/xzdec/xzdec.1:104 ../src/lzmainfo/lzmainfo.1:44
++#: ../src/scripts/xzgrep.1:81
++#, no-wrap
++msgid "EXIT STATUS"
++msgstr "AFSLUT-STATUS"
++
++#. type: TP
++#: ../src/xz/xz.1:2343 ../src/xzdec/xzdec.1:105 ../src/lzmainfo/lzmainfo.1:45
++#, no-wrap
++msgid "B<0>"
++msgstr "B<0>"
++
++#. type: Plain text
++#: ../src/xz/xz.1:2346 ../src/lzmainfo/lzmainfo.1:48
++msgid "All is good."
++msgstr "Alt er godt."
++
++#. type: TP
++#: ../src/xz/xz.1:2346 ../src/xzdec/xzdec.1:108 ../src/lzmainfo/lzmainfo.1:48
++#, no-wrap
++msgid "B<1>"
++msgstr "B<1>"
++
++#. type: Plain text
++#: ../src/xz/xz.1:2349 ../src/xzdec/xzdec.1:111 ../src/lzmainfo/lzmainfo.1:51
++msgid "An error occurred."
++msgstr "Der opstod en fejl."
++
++#. type: TP
++#: ../src/xz/xz.1:2349
++#, no-wrap
++msgid "B<2>"
++msgstr "B<2>"
++
++#. type: Plain text
++#: ../src/xz/xz.1:2353
++msgid "Something worth a warning occurred, but no actual errors occurred."
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:2356
++msgid ""
++"Notices (not warnings or errors) printed on standard error don't affect the "
++"exit status."
++msgstr ""
++
++#. type: SH
++#: ../src/xz/xz.1:2357 ../src/scripts/xzgrep.1:94 ../src/scripts/xzless.1:52
++#, no-wrap
++msgid "ENVIRONMENT"
++msgstr "MILJØ"
++
++#. type: Plain text
++#: ../src/xz/xz.1:2370
++msgid ""
++"B<xz> parses space-separated lists of options from the environment variables "
++"B<XZ_DEFAULTS> and B<XZ_OPT>, in this order, before parsing the options from "
++"the command line. Note that only options are parsed from the environment "
++"variables; all non-options are silently ignored. Parsing is done with "
++"B<getopt_long>(3) which is used also for the command line arguments."
++msgstr ""
++
++#. type: TP
++#: ../src/xz/xz.1:2370
++#, no-wrap
++msgid "B<XZ_DEFAULTS>"
++msgstr "B<XZ_DEFAULTS>"
++
++#. type: Plain text
++#: ../src/xz/xz.1:2379
++msgid ""
++"User-specific or system-wide default options. Typically this is set in a "
++"shell initialization script to enable B<xz>'s memory usage limiter by "
++"default. Excluding shell initialization scripts and similar special cases, "
++"scripts must never set or unset B<XZ_DEFAULTS>."
++msgstr ""
++
++#. type: TP
++#: ../src/xz/xz.1:2379
++#, no-wrap
++msgid "B<XZ_OPT>"
++msgstr "B<XZ_OPT>"
++
++#. type: Plain text
++#: ../src/xz/xz.1:2390
++msgid ""
++"This is for passing options to B<xz> when it is not possible to set the "
++"options directly on the B<xz> command line. This is the case when B<xz> is "
++"run by a script or tool, for example, GNU B<tar>(1):"
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:2396
++#, no-wrap
++msgid "CW<XZ_OPT=-2v tar caf foo.tar.xz foo>\n"
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:2410
++msgid ""
++"Scripts may use B<XZ_OPT>, for example, to set script-specific default "
++"compression options. It is still recommended to allow users to override "
++"B<XZ_OPT> if that is reasonable. For example, in B<sh>(1) scripts one may "
++"use something like this:"
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:2417
++#, no-wrap
++msgid ""
++"CW<XZ_OPT=${XZ_OPT-\"-7e\"}\n"
++"export XZ_OPT>\n"
++msgstr ""
++"CW<XZ_OPT=${XZ_OPT-\"-7e\"}\n"
++"export XZ_OPT>\n"
++
++#. type: SH
++#: ../src/xz/xz.1:2422
++#, fuzzy, no-wrap
++#| msgid "COMPATIBILITY"
++msgid "LZMA UTILS COMPATIBILITY"
++msgstr "KOMPATIBILITET"
++
++#. type: Plain text
++#: ../src/xz/xz.1:2435
++msgid ""
++"The command line syntax of B<xz> is practically a superset of B<lzma>, "
++"B<unlzma>, and B<lzcat> as found from LZMA Utils 4.32.x. In most cases, it "
++"is possible to replace LZMA Utils with XZ Utils without breaking existing "
++"scripts. There are some incompatibilities though, which may sometimes cause "
++"problems."
++msgstr ""
++
++#. type: SS
++#: ../src/xz/xz.1:2436
++#, fuzzy, no-wrap
++#| msgid "Compression"
++msgid "Compression preset levels"
++msgstr "Kompression"
++
++#. type: Plain text
++#: ../src/xz/xz.1:2443
++msgid ""
++"The numbering of the compression level presets is not identical in B<xz> and "
++"LZMA Utils. The most important difference is how dictionary sizes are "
++"mapped to different presets. Dictionary size is roughly equal to the "
++"decompressor memory usage."
++msgstr ""
++
++#. type: tbl table
++#: ../src/xz/xz.1:2449 ../src/xz/xz.1:2474
++#, no-wrap
++msgid "Level"
++msgstr ""
++
++#. type: tbl table
++#: ../src/xz/xz.1:2449 ../src/xz/xz.1:2474
++#, fuzzy, no-wrap
++#| msgid "x"
++msgid "xz"
++msgstr "x"
++
++#. type: tbl table
++#: ../src/xz/xz.1:2449
++#, no-wrap
++msgid "LZMA Utils"
++msgstr "LZMA Utils"
++
++#. type: tbl table
++#: ../src/xz/xz.1:2450 ../src/xz/xz.1:2475
++#, no-wrap
++msgid "N/A"
++msgstr ""
++
++#. type: tbl table
++#: ../src/xz/xz.1:2451
++#, no-wrap
++msgid "64 KiB"
++msgstr ""
++
++#. type: tbl table
++#: ../src/xz/xz.1:2453
++#, no-wrap
++msgid "512 KiB"
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:2468
++msgid ""
++"The dictionary size differences affect the compressor memory usage too, but "
++"there are some other differences between LZMA Utils and XZ Utils, which make "
++"the difference even bigger:"
++msgstr ""
++
++#. type: tbl table
++#: ../src/xz/xz.1:2474
++#, no-wrap
++msgid "LZMA Utils 4.32.x"
++msgstr ""
++
++#. type: tbl table
++#: ../src/xz/xz.1:2477 ../src/xz/xz.1:2478
++#, no-wrap
++msgid "12 MiB"
++msgstr ""
++
++#. type: tbl table
++#: ../src/xz/xz.1:2480
++#, no-wrap
++msgid "26 MiB"
++msgstr ""
++
++#. type: tbl table
++#: ../src/xz/xz.1:2481
++#, no-wrap
++msgid "45 MiB"
++msgstr ""
++
++#. type: tbl table
++#: ../src/xz/xz.1:2482
++#, no-wrap
++msgid "83 MiB"
++msgstr ""
++
++#. type: tbl table
++#: ../src/xz/xz.1:2483
++#, no-wrap
++msgid "159 MiB"
++msgstr ""
++
++#. type: tbl table
++#: ../src/xz/xz.1:2484
++#, no-wrap
++msgid "311 MiB"
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:2493
++msgid ""
++"The default preset level in LZMA Utils is B<-7> while in XZ Utils it is "
++"B<-6>, so both use an 8 MiB dictionary by default."
++msgstr ""
++
++#. type: SS
++#: ../src/xz/xz.1:2494
++#, fuzzy, no-wrap
++#| msgid "The name of the file."
++msgid "Streamed vs. non-streamed .lzma files"
++msgstr "Navnet på filen."
++
++#. type: Plain text
++#: ../src/xz/xz.1:2504
++msgid ""
++"The uncompressed size of the file can be stored in the B<.lzma> header. "
++"LZMA Utils does that when compressing regular files. The alternative is to "
++"mark that uncompressed size is unknown and use end-of-payload marker to "
++"indicate where the decompressor should stop. LZMA Utils uses this method "
++"when uncompressed size isn't known, which is the case, for example, in pipes."
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:2525
++msgid ""
++"B<xz> supports decompressing B<.lzma> files with or without end-of-payload "
++"marker, but all B<.lzma> files created by B<xz> will use end-of-payload "
++"marker and have uncompressed size marked as unknown in the B<.lzma> header. "
++"This may be a problem in some uncommon situations. For example, a B<.lzma> "
++"decompressor in an embedded device might work only with files that have "
++"known uncompressed size. If you hit this problem, you need to use LZMA "
++"Utils or LZMA SDK to create B<.lzma> files with known uncompressed size."
++msgstr ""
++
++#. type: SS
++#: ../src/xz/xz.1:2526
++#, no-wrap
++msgid "Unsupported .lzma files"
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:2549
++msgid ""
++"The B<.lzma> format allows I<lc> values up to 8, and I<lp> values up to 4. "
++"LZMA Utils can decompress files with any I<lc> and I<lp>, but always creates "
++"files with B<lc=3> and B<lp=0>. Creating files with other I<lc> and I<lp> "
++"is possible with B<xz> and with LZMA SDK."
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:2560
++msgid ""
++"The implementation of the LZMA1 filter in liblzma requires that the sum of "
++"I<lc> and I<lp> must not exceed 4. Thus, B<.lzma> files, which exceed this "
++"limitation, cannot be decompressed with B<xz>."
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:2575
++msgid ""
++"LZMA Utils creates only B<.lzma> files which have a dictionary size of "
++"2^I<n> (a power of 2) but accepts files with any dictionary size. liblzma "
++"accepts only B<.lzma> files which have a dictionary size of 2^I<n> or 2^I<n> "
++"+ 2^(I<n>-1). This is to decrease false positives when detecting B<.lzma> "
++"files."
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:2580
++msgid ""
++"These limitations shouldn't be a problem in practice, since practically all "
++"B<.lzma> files have been compressed with settings that liblzma will accept."
++msgstr ""
++
++#. type: SS
++#: ../src/xz/xz.1:2581
++#, no-wrap
++msgid "Trailing garbage"
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:2591
++msgid ""
++"When decompressing, LZMA Utils silently ignore everything after the first B<."
++"lzma> stream. In most situations, this is a bug. This also means that LZMA "
++"Utils don't support decompressing concatenated B<.lzma> files."
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:2601
++msgid ""
++"If there is data left after the first B<.lzma> stream, B<xz> considers the "
++"file to be corrupt unless B<--single-stream> was used. This may break "
++"obscure scripts which have assumed that trailing garbage is ignored."
++msgstr ""
++
++#. type: SH
++#: ../src/xz/xz.1:2602 ../src/xzdec/xzdec.1:117
++#, no-wrap
++msgid "NOTES"
++msgstr "NOTER"
++
++#. type: SS
++#: ../src/xz/xz.1:2604
++#, no-wrap
++msgid "Compressed output may vary"
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:2615
++msgid ""
++"The exact compressed output produced from the same uncompressed input file "
++"may vary between XZ Utils versions even if compression options are "
++"identical. This is because the encoder can be improved (faster or better "
++"compression) without affecting the file format. The output can vary even "
++"between different builds of the same XZ Utils version, if different build "
++"options are used."
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:2625
++msgid ""
++"The above means that once B<--rsyncable> has been implemented, the resulting "
++"files won't necessarily be rsyncable unless both old and new files have been "
++"compressed with the same xz version. This problem can be fixed if a part of "
++"the encoder implementation is frozen to keep rsyncable output stable across "
++"xz versions."
++msgstr ""
++
++#. type: SS
++#: ../src/xz/xz.1:2626
++#, no-wrap
++msgid "Embedded .xz decompressors"
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:2643
++msgid ""
++"Embedded B<.xz> decompressor implementations like XZ Embedded don't "
++"necessarily support files created with integrity I<check> types other than "
++"B<none> and B<crc32>. Since the default is B<--check=crc64>, you must use "
++"B<--check=none> or B<--check=crc32> when creating files for embedded systems."
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:2653
++msgid ""
++"Outside embedded systems, all B<.xz> format decompressors support all the "
++"I<check> types, or at least are able to decompress the file without "
++"verifying the integrity check if the particular I<check> is not supported."
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:2656
++msgid ""
++"XZ Embedded supports BCJ filters, but only with the default start offset."
++msgstr ""
++
++#. type: SH
++#: ../src/xz/xz.1:2657
++#, no-wrap
++msgid "EXAMPLES"
++msgstr "EKSEMPLER"
++
++#. type: SS
++#: ../src/xz/xz.1:2659
++#, no-wrap
++msgid "Basics"
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:2669
++msgid ""
++"Compress the file I<foo> into I<foo.xz> using the default compression level "
++"(B<-6>), and remove I<foo> if compression is successful:"
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:2674
++#, no-wrap
++msgid "CW<xz foo>\n"
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:2685
++msgid ""
++"Decompress I<bar.xz> into I<bar> and don't remove I<bar.xz> even if "
++"decompression is successful:"
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:2690
++#, no-wrap
++msgid "CW<xz -dk bar.xz>\n"
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:2703
++msgid ""
++"Create I<baz.tar.xz> with the preset B<-4e> (B<-4 --extreme>), which is "
++"slower than the default B<-6>, but needs less memory for compression and "
++"decompression (48\\ MiB and 5\\ MiB, respectively):"
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:2708
++#, no-wrap
++msgid "CW<tar cf - baz | xz -4e E<gt> baz.tar.xz>\n"
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:2714
++msgid ""
++"A mix of compressed and uncompressed files can be decompressed to standard "
++"output with a single command:"
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:2719
++#, no-wrap
++msgid "CW<xz -dcf a.txt b.txt.xz c.txt d.txt.lzma E<gt> abcd.txt>\n"
++msgstr "CW<xz -dcf a.txt b.txt.xz c.txt d.txt.lzma E<gt> abcd.txt>\n"
++
++#. type: SS
++#: ../src/xz/xz.1:2723
++#, no-wrap
++msgid "Parallel compression of many files"
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:2729
++msgid ""
++"On GNU and *BSD, B<find>(1) and B<xargs>(1) can be used to parallelize "
++"compression of many files:"
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:2735
++#, no-wrap
++msgid ""
++"CW<find . -type f \\e! -name '*.xz' -print0 \\e\n"
++" | xargs -0r -P4 -n16 xz -T1>\n"
++msgstr ""
++"CW<find . -type f \\e! -name '*.xz' -print0 \\e\n"
++" | xargs -0r -P4 -n16 xz -T1>\n"
++
++#. type: Plain text
++#: ../src/xz/xz.1:2757
++msgid ""
++"The B<-P> option to B<xargs>(1) sets the number of parallel B<xz> "
++"processes. The best value for the B<-n> option depends on how many files "
++"there are to be compressed. If there are only a couple of files, the value "
++"should probably be 1; with tens of thousands of files, 100 or even more may "
++"be appropriate to reduce the number of B<xz> processes that B<xargs>(1) "
++"will eventually create."
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:2765
++msgid ""
++"The option B<-T1> for B<xz> is there to force it to single-threaded mode, "
++"because B<xargs>(1) is used to control the amount of parallelization."
++msgstr ""
++
++#. type: SS
++#: ../src/xz/xz.1:2766
++#, fuzzy, no-wrap
++#| msgid "Verbose mode."
++msgid "Robot mode"
++msgstr "Uddybende tilstand."
++
++#. type: Plain text
++#: ../src/xz/xz.1:2769
++msgid ""
++"Calculate how many bytes have been saved in total after compressing multiple "
++"files:"
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:2774
++#, no-wrap
++msgid "CW<xz --robot --list *.xz | awk '/^totals/{print $5-$4}'>\n"
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:2789
++msgid ""
++"A script may want to know that it is using new enough B<xz>. The following "
++"B<sh>(1) script checks that the version number of the B<xz> tool is at "
++"least 5.0.0. This method is compatible with old beta versions, which didn't "
++"support the B<--robot> option:"
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:2798
++#, no-wrap
++msgid ""
++"CW<if ! eval \"$(xz --robot --version 2E<gt> /dev/null)\" ||\n"
++" [ \"$XZ_VERSION\" -lt 50000002 ]; then\n"
++" echo \"Your xz is too old.\"\n"
++"fi\n"
++"unset XZ_VERSION LIBLZMA_VERSION>\n"
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:2805
++msgid ""
++"Set a memory usage limit for decompression using B<XZ_OPT>, but if a limit "
++"has already been set, don't increase it:"
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:2815
++#, no-wrap
++msgid ""
++"CW<NEWLIM=$((123 E<lt>E<lt> 20))\\ \\ # 123 MiB\n"
++"OLDLIM=$(xz --robot --info-memory | cut -f3)\n"
++"if [ $OLDLIM -eq 0 -o $OLDLIM -gt $NEWLIM ]; then\n"
++" XZ_OPT=\"$XZ_OPT --memlimit-decompress=$NEWLIM\"\n"
++" export XZ_OPT\n"
++"fi>\n"
++msgstr ""
++"CW<NEWLIM=$((123 E<lt>E<lt> 20))\\ \\ # 123 MiB\n"
++"OLDLIM=$(xz --robot --info-memory | cut -f3)\n"
++"if [ $OLDLIM -eq 0 -o $OLDLIM -gt $NEWLIM ]; then\n"
++" XZ_OPT=\"$XZ_OPT --memlimit-decompress=$NEWLIM\"\n"
++" export XZ_OPT\n"
++"fi>\n"
++
++#. type: Plain text
++#: ../src/xz/xz.1:2825
++msgid ""
++"The simplest use for custom filter chains is customizing a LZMA2 preset. "
++"This can be useful, because the presets cover only a subset of the "
++"potentially useful combinations of compression settings."
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:2833
++msgid ""
++"The CompCPU columns of the tables from the descriptions of the options "
++"B<-0> ... B<-9> and B<--extreme> are useful when customizing LZMA2 presets. "
++"Here are the relevant parts collected from those two tables:"
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:2858
++msgid ""
++"If you know that a file requires somewhat big dictionary (for example, 32\\ "
++"MiB) to compress well, but you want to compress it quicker than B<xz -8> "
++"would do, a preset with a low CompCPU value (for example, 1) can be "
++"modified to use a bigger dictionary:"
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:2863
++#, no-wrap
++msgid "CW<xz --lzma2=preset=1,dict=32MiB foo.tar>\n"
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:2879
++msgid ""
++"With certain files, the above command may be faster than B<xz -6> while "
++"compressing significantly better. However, it must be emphasized that only "
++"some files benefit from a big dictionary while keeping the CompCPU value "
++"low. The most obvious situation, where a big dictionary can help a lot, is "
++"an archive containing very similar files of at least a few megabytes each. "
++"The dictionary size has to be significantly bigger than any individual file "
++"to allow LZMA2 to take full advantage of the similarities between "
++"consecutive files."
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:2886
++msgid ""
++"If very high compressor and decompressor memory usage is fine, and the file "
++"being compressed is at least several hundred megabytes, it may be useful to "
++"use an even bigger dictionary than the 64 MiB that B<xz -9> would use:"
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:2891
++#, no-wrap
++msgid "CW<xz -vv --lzma2=dict=192MiB big_foo.tar>\n"
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:2904
++msgid ""
++"Using B<-vv> (B<--verbose --verbose>) like in the above example can be "
++"useful to see the memory requirements of the compressor and decompressor. "
++"Remember that using a dictionary bigger than the size of the uncompressed "
++"file is waste of memory, so the above command isn't useful for small files."
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:2916
++msgid ""
++"Sometimes the compression time doesn't matter, but the decompressor memory "
++"usage has to be kept low, for example, to make it possible to decompress the "
++"file on an embedded system. The following command uses B<-6e> (B<-6 --"
++"extreme>) as a base and sets the dictionary to only 64\\ KiB. The "
++"resulting file can be decompressed with XZ Embedded (that's why there is B<--"
++"check=crc32>) using about 100\\ KiB of memory."
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:2921
++#, no-wrap
++msgid "CW<xz --check=crc32 --lzma2=preset=6e,dict=64KiB foo>\n"
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:2944
++msgid ""
++"If you want to squeeze out as many bytes as possible, adjusting the number "
++"of literal context bits (I<lc>) and number of position bits (I<pb>) can "
++"sometimes help. Adjusting the number of literal position bits (I<lp>) "
++"might help too, but usually I<lc> and I<pb> are more important. For "
++"example, a source code archive contains mostly US-ASCII text, so something "
++"like the following might give slightly (like 0.1\\ %) smaller file than B<xz "
++"-6e> (try also without B<lc=4>):"
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:2949
++#, no-wrap
++msgid "CW<xz --lzma2=preset=6e,pb=0,lc=4 source_code.tar>\n"
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:2957
++msgid ""
++"Using another filter together with LZMA2 can improve compression with "
++"certain file types. For example, to compress a x86-32 or x86-64 shared "
++"library using the x86 BCJ filter:"
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:2962
++#, no-wrap
++msgid "CW<xz --x86 --lzma2 libfoo.so>\n"
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:2976
++msgid ""
++"Note that the order of the filter options is significant. If B<--x86> is "
++"specified after B<--lzma2>, B<xz> will give an error, because there cannot "
++"be any filter after LZMA2, and also because the x86 BCJ filter cannot be "
++"used as the last filter in the chain."
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:2982
++msgid ""
++"The Delta filter together with LZMA2 can give good results with bitmap "
++"images. It should usually beat PNG, which has a few more advanced filters "
++"than simple delta but uses Deflate for the actual compression."
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:2992
++msgid ""
++"The image has to be saved in uncompressed format, for example, as "
++"uncompressed TIFF. The distance parameter of the Delta filter is set to "
++"match the number of bytes per pixel in the image. For example, 24-bit RGB "
++"bitmap needs B<dist=3>, and it is also good to pass B<pb=0> to LZMA2 to "
++"accommodate the three-byte alignment:"
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:2997
++#, no-wrap
++msgid "CW<xz --delta=dist=3 --lzma2=pb=0 foo.tiff>\n"
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:3005
++msgid ""
++"If multiple images have been put into a single archive (for example, B<."
++"tar>), the Delta filter will work on that too as long as all images have the "
++"same number of bytes per pixel."
++msgstr ""
++
++#. type: SH
++#: ../src/xz/xz.1:3006 ../src/xzdec/xzdec.1:143 ../src/lzmainfo/lzmainfo.1:59
++#: ../src/scripts/xzdiff.1:65 ../src/scripts/xzgrep.1:106
++#: ../src/scripts/xzless.1:65 ../src/scripts/xzmore.1:51
++#, no-wrap
++msgid "SEE ALSO"
++msgstr "SE OGSÅ"
++
++#. type: Plain text
++#: ../src/xz/xz.1:3015
++msgid ""
++"B<xzdec>(1), B<xzdiff>(1), B<xzgrep>(1), B<xzless>(1), B<xzmore>(1), "
++"B<gzip>(1), B<bzip2>(1), B<7z>(1)"
++msgstr ""
++"B<xzdec>(1), B<xzdiff>(1), B<xzgrep>(1), B<xzless>(1), B<xzmore>(1), "
++"B<gzip>(1), B<bzip2>(1), B<7z>(1)"
++
++#. type: Plain text
++#: ../src/xz/xz.1:3017
++msgid "XZ Utils: E<lt>https://tukaani.org/xz/E<gt>"
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:3019 ../src/xzdec/xzdec.1:146
++msgid "XZ Embedded: E<lt>https://tukaani.org/xz/embedded.htmlE<gt>"
++msgstr ""
++
++#. type: Plain text
++#: ../src/xz/xz.1:3020
++msgid "LZMA SDK: E<lt>http://7-zip.org/sdk.htmlE<gt>"
++msgstr ""
++
++#. type: TH
++#: ../src/xzdec/xzdec.1:7
++#, no-wrap
++msgid "XZDEC"
++msgstr "XZDEC"
++
++#. type: TH
++#: ../src/xzdec/xzdec.1:7
++#, no-wrap
++msgid "2017-04-19"
++msgstr "19. april 2017"
++
++#. type: Plain text
++#: ../src/xzdec/xzdec.1:10
++msgid "xzdec, lzmadec - Small .xz and .lzma decompressors"
++msgstr ""
++
++#. type: Plain text
++#: ../src/xzdec/xzdec.1:14
++msgid "B<xzdec> [I<option...>] [I<file...>]"
++msgstr "B<xzdec> [I<tilvalg...>] [I<fil...>]"
++
++#. type: Plain text
++#: ../src/xzdec/xzdec.1:18
++msgid "B<lzmadec> [I<option...>] [I<file...>]"
++msgstr "B<lzmadec> [I<tilvalg...>] [I<fil...>]"
++
++#. type: Plain text
++#: ../src/xzdec/xzdec.1:44
++msgid ""
++"B<xzdec> is a liblzma-based decompression-only tool for B<.xz> (and only B<."
++"xz>) files. B<xzdec> is intended to work as a drop-in replacement for "
++"B<xz>(1) in the most common situations where a script has been written to "
++"use B<xz --decompress --stdout> (and possibly a few other commonly used "
++"options) to decompress B<.xz> files. B<lzmadec> is identical to B<xzdec> "
++"except that B<lzmadec> supports B<.lzma> files instead of B<.xz> files."
++msgstr ""
++
++#. type: Plain text
++#: ../src/xzdec/xzdec.1:61
++msgid ""
++"To reduce the size of the executable, B<xzdec> doesn't support "
++"multithreading or localization, and doesn't read options from B<XZ_DEFAULTS> "
++"and B<XZ_OPT> environment variables. B<xzdec> doesn't support displaying "
++"intermediate progress information: sending B<SIGINFO> to B<xzdec> does "
++"nothing, but sending B<SIGUSR1> terminates the process instead of displaying "
++"progress information."
++msgstr ""
++
++#. type: Plain text
++#: ../src/xzdec/xzdec.1:69
++msgid ""
++"Ignored for B<xz>(1) compatibility. B<xzdec> supports only decompression."
++msgstr ""
++
++#. type: Plain text
++#: ../src/xzdec/xzdec.1:76
++msgid ""
++"Ignored for B<xz>(1) compatibility. B<xzdec> never creates or removes any "
++"files."
++msgstr ""
++
++#. type: Plain text
++#: ../src/xzdec/xzdec.1:83
++msgid ""
++"Ignored for B<xz>(1) compatibility. B<xzdec> always writes the "
++"decompressed data to standard output."
++msgstr ""
++
++#. type: Plain text
++#: ../src/xzdec/xzdec.1:89
++msgid ""
++"Specifying this once does nothing since B<xzdec> never displays any warnings "
++"or notices. Specify this twice to suppress errors."
++msgstr ""
++
++#. type: Plain text
++#: ../src/xzdec/xzdec.1:96
++msgid ""
++"Ignored for B<xz>(1) compatibility. B<xzdec> never uses the exit status 2."
++msgstr ""
++
++#. type: Plain text
++#: ../src/xzdec/xzdec.1:99
++#, fuzzy
++#| msgid "Display a short usage message and exit."
++msgid "Display a help message and exit successfully."
++msgstr "Vis en kort hjælpetekst og afslut."
++
++#. type: Plain text
++#: ../src/xzdec/xzdec.1:104
++msgid "Display the version number of B<xzdec> and liblzma."
++msgstr ""
++
++#. type: Plain text
++#: ../src/xzdec/xzdec.1:108
++#, fuzzy
++#| msgid "All is good."
++msgid "All was good."
++msgstr "Alt er godt."
++
++#. type: Plain text
++#: ../src/xzdec/xzdec.1:117
++msgid ""
++"B<xzdec> doesn't have any warning messages like B<xz>(1) has, thus the exit "
++"status 2 is not used by B<xzdec>."
++msgstr ""
++
++#. type: Plain text
++#: ../src/xzdec/xzdec.1:131
++msgid ""
++"Use B<xz>(1) instead of B<xzdec> or B<lzmadec> for normal everyday use. "
++"B<xzdec> or B<lzmadec> are meant only for situations where it is important "
++"to have a smaller decompressor than the full-featured B<xz>(1)."
++msgstr ""
++
++#. type: Plain text
++#: ../src/xzdec/xzdec.1:143
++msgid ""
++"B<xzdec> and B<lzmadec> are not really that small. The size can be reduced "
++"further by dropping features from liblzma at compile time, but that "
++"shouldn't usually be done for executables distributed in typical non-"
++"embedded operating system distributions. If you need a truly small B<.xz> "
++"decompressor, consider using XZ Embedded."
++msgstr ""
++
++#. type: Plain text
++#: ../src/xzdec/xzdec.1:145 ../src/lzmainfo/lzmainfo.1:60
++msgid "B<xz>(1)"
++msgstr "B<xz>(1)"
++
++#. type: TH
++#: ../src/lzmainfo/lzmainfo.1:7
++#, no-wrap
++msgid "LZMAINFO"
++msgstr "LZMAINFO"
++
++#. type: TH
++#: ../src/lzmainfo/lzmainfo.1:7 ../src/scripts/xzmore.1:7
++#, no-wrap
++msgid "2013-06-30"
++msgstr "30. juni 2013"
++
++#. type: Plain text
++#: ../src/lzmainfo/lzmainfo.1:10
++msgid "lzmainfo - show information stored in the .lzma file header"
++msgstr ""
++
++#. type: Plain text
++#: ../src/lzmainfo/lzmainfo.1:15
++msgid "B<lzmainfo> [B<--help>] [B<--version>] [I<file...>]"
++msgstr "B<lzmainfo> [B<--help>] [B<--version>] [I<fil...>]"
++
++#. type: Plain text
++#: ../src/lzmainfo/lzmainfo.1:31
++msgid ""
++"B<lzmainfo> shows information stored in the B<.lzma> file header. It reads "
++"the first 13 bytes from the specified I<file>, decodes the header, and "
++"prints it to standard output in human readable format. If no I<files> are "
++"given or I<file> is B<->, standard input is read."
++msgstr ""
++
++#. type: Plain text
++#: ../src/lzmainfo/lzmainfo.1:40
++msgid ""
++"Usually the most interesting information is the uncompressed size and the "
++"dictionary size. Uncompressed size can be shown only if the file is in the "
++"non-streamed B<.lzma> format variant. The amount of memory required to "
++"decompress the file is a few dozen kilobytes plus the dictionary size."
++msgstr ""
++
++#. type: Plain text
++#: ../src/lzmainfo/lzmainfo.1:44
++#, fuzzy
++#| msgid ""
++#| "The command named B<lzless> is provided for backward compatibility with "
++#| "LZMA Utils."
++msgid ""
++"B<lzmainfo> is included in XZ Utils primarily for backward compatibility "
++"with LZMA Utils."
++msgstr ""
++"Kommandoen B<lzless> tilbydes for baglæns kompatibilitet med LZMA Utils."
++
++#. type: SH
++#: ../src/lzmainfo/lzmainfo.1:51 ../src/scripts/xzdiff.1:74
++#, no-wrap
++msgid "BUGS"
++msgstr "FEJL"
++
++#. type: Plain text
++#: ../src/lzmainfo/lzmainfo.1:59
++msgid ""
++"B<lzmainfo> uses B<MB> while the correct suffix would be B<MiB> (2^20 "
++"bytes). This is to keep the output compatible with LZMA Utils."
++msgstr ""
++
++#. type: TH
++#: ../src/scripts/xzdiff.1:9
++#, no-wrap
++msgid "XZDIFF"
++msgstr "XZDIFF"
++
++#. type: TH
++#: ../src/scripts/xzdiff.1:9
++#, no-wrap
++msgid "2021-06-04"
++msgstr "4. juni 2021"
++
++#. type: Plain text
++#: ../src/scripts/xzdiff.1:12
++msgid "xzcmp, xzdiff, lzcmp, lzdiff - compare compressed files"
++msgstr "xzcmp, xzdiff, lzcmp, lzdiff - sammenlign komprimerede filer"
++
++#. type: Plain text
++#: ../src/scripts/xzdiff.1:15
++msgid "B<xzcmp> [I<cmp_options>] I<file1> [I<file2>]"
++msgstr "B<xzcmp> [I<cmp_tilvalg>] I<fil1> [I<fil2>]"
++
++#. type: Plain text
++#: ../src/scripts/xzdiff.1:18
++msgid "B<xzdiff> [I<diff_options>] I<file1> [I<file2>]"
++msgstr "B<xzdiff> [I<diff_tilvalg>] I<fil1> [I<fil2>]"
++
++#. type: Plain text
++#: ../src/scripts/xzdiff.1:21
++msgid "B<lzcmp> [I<cmp_options>] I<file1> [I<file2>]"
++msgstr "B<lzcmp> [I<cmp_tilvalg>] I<fil1> [I<fil2>]"
++
++#. type: Plain text
++#: ../src/scripts/xzdiff.1:24
++msgid "B<lzdiff> [I<diff_options>] I<file1> [I<file2>]"
++msgstr "B<lzdiff> [I<diff_tilvalg>] I<fil1> [I<fil2>]"
++
++#. type: Plain text
++#: ../src/scripts/xzdiff.1:59
++#, fuzzy
++#| msgid ""
++#| "B<xzcmp> and B<xzdiff> invoke B<cmp>(1) or B<diff>(1) on files "
++#| "compressed with B<xz>(1), B<lzma>(1), B<gzip>(1), B<bzip2>(1), or "
++#| "B<lzop>(1). All options specified are passed directly to B<cmp>(1) or "
++#| "B<diff>(1). If only one file is specified, then the files compared are "
++#| "I<file1> (which must have a suffix of a supported compression format) and "
++#| "I<file1> from which the compression format suffix has been stripped. If "
++#| "two files are specified, then they are uncompressed if necessary and fed "
++#| "to B<cmp>(1) or B<diff>(1). The exit status from B<cmp>(1) or "
++#| "B<diff>(1) is preserved."
++msgid ""
++"B<xzcmp> and B<xzdiff> invoke B<cmp>(1) or B<diff>(1) on files compressed "
++"with B<xz>(1), B<lzma>(1), B<gzip>(1), B<bzip2>(1), B<lzop>(1), or "
++"B<zstd>(1). All options specified are passed directly to B<cmp>(1) or "
++"B<diff>(1). If only one file is specified, then the files compared are "
++"I<file1> (which must have a suffix of a supported compression format) and "
++"I<file1> from which the compression format suffix has been stripped. If two "
++"files are specified, then they are uncompressed if necessary and fed to "
++"B<cmp>(1) or B<diff>(1). The exit status from B<cmp>(1) or B<diff>(1) is "
++"preserved unless a decompression error occurs; then exit status is 2."
++msgstr ""
++"B<xzcmp> og B<xzdiff> igangsætter B<cmp>(1) eller B<diff>(1) på filer "
++"komprimeret med B<xz>(1), B<lzma>(1), B<gzip>(1), B<bzip2>(1) eller "
++"B<lzop>(1). Alle tilvalg angivet sendes direkte til B<cmp>(1) elller "
++"B<diff>(1). Hvis kun en fil er angivet, så er filerne der sammenlignes "
++"I<fil1> (der skal have et suffiks for et understøttet komprimeringsformat) "
++"og I<fil1> hvorfra suffikset med komprimeringsformatet er blevet fjernet. "
++"Hvis to filer er angivet, så pakkes de ud om nødvendigt og fødes til "
++"B<cmp>(1) eller B<diff>(1). Afslutningsstatus fra B<cmp>(1) eller B<diff>(1) "
++"bevares."
++
++#. type: Plain text
++#: ../src/scripts/xzdiff.1:65
++msgid ""
++"The names B<lzcmp> and B<lzdiff> are provided for backward compatibility "
++"with LZMA Utils."
++msgstr ""
++"Navnene B<lzcmp> og B<lzdiff> tilbydes for baglæns kompatibilitet med LZMA "
++"Utils."
++
++#. type: Plain text
++#: ../src/scripts/xzdiff.1:74
++msgid ""
++"B<cmp>(1), B<diff>(1), B<xz>(1), B<gzip>(1), B<bzip2>(1), B<lzop>(1), "
++"B<zstd>(1), B<zdiff>(1)"
++msgstr ""
++"B<cmp>(1), B<diff>(1), B<xz>(1), B<gzip>(1), B<bzip2>(1), B<lzop>(1), "
++"B<zstd>(1), B<zdiff>(1)"
++
++#. type: Plain text
++#: ../src/scripts/xzdiff.1:79
++msgid ""
++"Messages from the B<cmp>(1) or B<diff>(1) programs refer to temporary "
++"filenames instead of those specified."
++msgstr ""
++"Beskeder fra B<cmp>(1)- eller B<diff>(1)-programmer refererer til "
++"midlertidige filnavne i stedet for dem angivet."
++
++#. type: TH
++#: ../src/scripts/xzgrep.1:9
++#, no-wrap
++msgid "XZGREP"
++msgstr "XZGREP"
++
++#. type: TH
++#: ../src/scripts/xzgrep.1:9
++#, no-wrap
++msgid "2022-07-19"
++msgstr "19. juli 2022"
++
++#. type: Plain text
++#: ../src/scripts/xzgrep.1:12
++msgid "xzgrep - search compressed files for a regular expression"
++msgstr ""
++
++#. type: Plain text
++#: ../src/scripts/xzgrep.1:18
++msgid "B<xzgrep> [I<grep_options>] [B<-e>] I<pattern> [I<file...>]"
++msgstr "B<xzgrep> [I<grep-tilvalg>] [B<-e>] I<mønster> [I<fil...>]"
++
++#. type: Plain text
++#: ../src/scripts/xzgrep.1:21
++msgid "B<xzegrep> \\&..."
++msgstr "B<xzegrep> \\&..."
++
++#. type: Plain text
++#: ../src/scripts/xzgrep.1:24
++msgid "B<xzfgrep> \\&..."
++msgstr "B<xzfgrep> \\&..."
++
++#. type: Plain text
++#: ../src/scripts/xzgrep.1:27
++msgid "B<lzgrep> \\&..."
++msgstr "B<lzgrep> \\&..."
++
++#. type: Plain text
++#: ../src/scripts/xzgrep.1:30
++msgid "B<lzegrep> \\&..."
++msgstr "B<lzegrep> \\&..."
++
++#. type: Plain text
++#: ../src/scripts/xzgrep.1:33
++msgid "B<lzfgrep> \\&..."
++msgstr "B<lzfgrep> \\&..."
++
++#. type: Plain text
++#: ../src/scripts/xzgrep.1:49
++msgid ""
++"B<xzgrep> invokes B<grep>(1) on I<files> which may be either uncompressed "
++"or compressed with B<xz>(1), B<lzma>(1), B<gzip>(1), B<bzip2>(1), "
++"B<lzop>(1), or B<zstd>(1). All options specified are passed directly to "
++"B<grep>(1)."
++msgstr ""
++
++#. type: Plain text
++#: ../src/scripts/xzgrep.1:62
++msgid ""
++"If no I<file> is specified, then standard input is decompressed if necessary "
++"and fed to B<grep>(1). When reading from standard input, B<gzip>(1), "
++"B<bzip2>(1), B<lzop>(1), and B<zstd>(1) compressed files are not supported."
++msgstr ""
++
++#. type: Plain text
++#: ../src/scripts/xzgrep.1:81
++msgid ""
++"If B<xzgrep> is invoked as B<xzegrep> or B<xzfgrep> then B<grep -E> or "
++"B<grep -F> is used instead of B<grep>(1). The same applies to names "
++"B<lzgrep>, B<lzegrep>, and B<lzfgrep>, which are provided for backward "
++"compatibility with LZMA Utils."
++msgstr ""
++
++#. type: Plain text
++#: ../src/scripts/xzgrep.1:86
++msgid ""
++"At least one match was found from at least one of the input files. No "
++"errors occurred."
++msgstr ""
++
++#. type: Plain text
++#: ../src/scripts/xzgrep.1:90
++msgid "No matches were found from any of the input files. No errors occurred."
++msgstr ""
++
++#. type: TP
++#: ../src/scripts/xzgrep.1:90
++#, no-wrap
++msgid "E<gt>1"
++msgstr "E<gt>1"
++
++#. type: Plain text
++#: ../src/scripts/xzgrep.1:94
++msgid "One or more errors occurred. It is unknown if matches were found."
++msgstr ""
++
++#. type: TP
++#: ../src/scripts/xzgrep.1:95
++#, no-wrap
++msgid "B<GREP>"
++msgstr "B<GREP>"
++
++#. type: Plain text
++#: ../src/scripts/xzgrep.1:106
++msgid ""
++"If the B<GREP> environment variable is set, B<xzgrep> uses it instead of "
++"B<grep>(1), B<grep -E>, or B<grep -F>."
++msgstr ""
++
++#. type: Plain text
++#: ../src/scripts/xzgrep.1:113
++msgid ""
++"B<grep>(1), B<xz>(1), B<gzip>(1), B<bzip2>(1), B<lzop>(1), B<zstd>(1), "
++"B<zgrep>(1)"
++msgstr ""
++"B<grep>(1), B<xz>(1), B<gzip>(1), B<bzip2>(1), B<lzop>(1), B<zstd>(1), "
++"B<zgrep>(1)"
++
++#. type: TH
++#: ../src/scripts/xzless.1:10
++#, no-wrap
++msgid "XZLESS"
++msgstr "XZLESS"
++
++#. type: TH
++#: ../src/scripts/xzless.1:10
++#, no-wrap
++msgid "2010-09-27"
++msgstr "27. september 2010"
++
++#. type: Plain text
++#: ../src/scripts/xzless.1:13
++msgid "xzless, lzless - view xz or lzma compressed (text) files"
++msgstr "xzless, lzless - vis xz- eller lzma-komprimerede (tekst) filer"
++
++#. type: Plain text
++#: ../src/scripts/xzless.1:16
++msgid "B<xzless> [I<file>...]"
++msgstr "B<xzless> [I<fil>...]"
++
++#. type: Plain text
++#: ../src/scripts/xzless.1:19
++msgid "B<lzless> [I<file>...]"
++msgstr "B<lzless> [I<fil>...]"
++
++#. type: Plain text
++#: ../src/scripts/xzless.1:31
++msgid ""
++"B<xzless> is a filter that displays text from compressed files to a "
++"terminal. It works on files compressed with B<xz>(1) or B<lzma>(1). If no "
++"I<files> are given, B<xzless> reads from standard input."
++msgstr ""
++"B<xzless> er et filter, der viser tekst fra komprimerede filer i en "
++"terminal. Filteret fungerer på filer komprimeret med B<xz>(1) eller "
++"B<lzma>(1). Hvis ingen I<filer> er angivet, læser B<xzless> fra standardind."
++
++#. type: Plain text
++#: ../src/scripts/xzless.1:48
++msgid ""
++"B<xzless> uses B<less>(1) to present its output. Unlike B<xzmore>, its "
++"choice of pager cannot be altered by setting an environment variable. "
++"Commands are based on both B<more>(1) and B<vi>(1) and allow back and "
++"forth movement and searching. See the B<less>(1) manual for more "
++"information."
++msgstr ""
++"B<xzless> bruger B<less>(1) til at forhindre dets resultat. Til forskel fra "
++"B<xzmore> kan dets valg af tekstsøger ikke ændres ved at angive en "
++"miljøvariabel. Kommandoer er baseret på både B<more>(1) og B<vi>(1) og "
++"tillader tilbage og fremad bevægelse og søgning. Se B<less>(1)-manualen for "
++"yderligere information."
++
++#. type: Plain text
++#: ../src/scripts/xzless.1:52
++msgid ""
++"The command named B<lzless> is provided for backward compatibility with LZMA "
++"Utils."
++msgstr ""
++"Kommandoen B<lzless> tilbydes for baglæns kompatibilitet med LZMA Utils."
++
++#. type: TP
++#: ../src/scripts/xzless.1:53
++#, no-wrap
++msgid "B<LESSMETACHARS>"
++msgstr "B<LESSMETACHARS>"
++
++#. type: Plain text
++#: ../src/scripts/xzless.1:59
++msgid ""
++"A list of characters special to the shell. Set by B<xzless> unless it is "
++"already set in the environment."
++msgstr ""
++"En liste af tegn specielle for skallen. Angives af B<xzless> med mindre det "
++"allerede er angivet i miljøet."
++
++#. type: TP
++#: ../src/scripts/xzless.1:59
++#, no-wrap
++msgid "B<LESSOPEN>"
++msgstr "B<LESSOPEN>"
++
++#. type: Plain text
++#: ../src/scripts/xzless.1:65
++msgid ""
++"Set to a command line to invoke the B<xz>(1) decompressor for preprocessing "
++"the input files to B<less>(1)."
++msgstr ""
++"Angiv i kommandolinjen for at igangsætte B<xz>(1)-dekompressoren for "
++"forhåndsbehandling af inddatafilerne til B<less>(1)."
++
++#. type: Plain text
++#: ../src/scripts/xzless.1:69
++msgid "B<less>(1), B<xz>(1), B<xzmore>(1), B<zless>(1)"
++msgstr "B<less>(1), B<xz>(1), B<xzmore>(1), B<zless>(1)"
++
++#. type: TH
++#: ../src/scripts/xzmore.1:7
++#, no-wrap
++msgid "XZMORE"
++msgstr "XZMORE"
++
++#. type: Plain text
++#: ../src/scripts/xzmore.1:10
++msgid "xzmore, lzmore - view xz or lzma compressed (text) files"
++msgstr "xzmore, lzmore - vis xz- eller lzma-komprimerede (tekst) filer"
++
++#. type: Plain text
++#: ../src/scripts/xzmore.1:13
++msgid "B<xzmore> [I<file...>]"
++msgstr "B<xzmore> [I<fil...>]"
++
++#. type: Plain text
++#: ../src/scripts/xzmore.1:16
++msgid "B<lzmore> [I<file...>]"
++msgstr "B<lzmore> [I<fil...>]"
++
++#. type: Plain text
++#: ../src/scripts/xzmore.1:24
++msgid ""
++"B<xzmore> is a filter which allows examination of B<xz>(1) or B<lzma>(1) "
++"compressed text files one screenful at a time on a soft-copy terminal."
++msgstr ""
++"B<xzmore> er et filter, der gør det muligt at undersøge B<xz>(1)- eller "
++"B<lzma>(1)-komprimerede tekstfiler en skærm ad gangen på en soft-copy-"
++"terminal."
++
++#. type: Plain text
++#: ../src/scripts/xzmore.1:33
++msgid ""
++"To use a pager other than the default B<more,> set environment variable "
++"B<PAGER> to the name of the desired program. The name B<lzmore> is provided "
++"for backward compatibility with LZMA Utils."
++msgstr ""
++"For at bruge en anden tekstsøger den standarden B<more,> angives "
++"miljøvariablen B<PAGER> til navnet på det ønskede program. Navnet B<lzmore> "
++"tilbydes på grund af baglæns kompatibilitet med LZMA Utils."
++
++#. type: TP
++#: ../src/scripts/xzmore.1:33
++#, no-wrap
++msgid "B<e> or B<q>"
++msgstr "B<e> eller B<q>"
++
++#. type: Plain text
++#: ../src/scripts/xzmore.1:40
++msgid ""
++"When the prompt --More--(Next file: I<file>) is printed, this command "
++"causes B<xzmore> to exit."
++msgstr ""
++"Når prompten --More--(Næste file: I<fil>) udskrives, så får denne kommando "
++"B<xzmore> til af afslutte."
++
++#. type: TP
++#: ../src/scripts/xzmore.1:40
++#, no-wrap
++msgid "B<s>"
++msgstr "B<s>"
++
++#. type: Plain text
++#: ../src/scripts/xzmore.1:47
++msgid ""
++"When the prompt --More--(Next file: I<file>) is printed, this command "
++"causes B<xzmore> to skip the next file and continue."
++msgstr ""
++"Når prompten --More--(Næste fil: I<fil>) udskrives, så får denne kommando "
++"B<xzmore> til at udelade den næste fil og fortsætte."
++
++#. type: Plain text
++#: ../src/scripts/xzmore.1:51
++msgid ""
++"For list of keyboard commands supported while actually viewing the content "
++"of a file, refer to manual of the pager you use, usually B<more>(1)."
++msgstr ""
++"For en liste over understøttede tastaturkommandoer, når indholdet af en fil "
++"vises, så se manualen for tekstsøgeren du bruger, normalt B<more>(1)."
++
++#. type: Plain text
++#: ../src/scripts/xzmore.1:55
++msgid "B<more>(1), B<xz>(1), B<xzless>(1), B<zmore>(1)"
++msgstr "B<more>(1), B<xz>(1), B<xzless>(1), B<zmore>(1)"
+diff --git a/po4a/po4a.conf b/po4a/po4a.conf
+index c7a7d42..ea81236 100644
+--- a/po4a/po4a.conf
++++ b/po4a/po4a.conf
+@@ -2,7 +2,7 @@
+ # to get a new .po file. After translating the .po file, run
+ # "update-po" again to generate the translated man pages.
+
+-[po4a_langs] de fr ro uk ko pt_BR
++[po4a_langs] da de fr ro uk ko pt_BR
+ [po4a_paths] xz-man.pot $lang:$lang.po
+
+ [type: man] ../src/xz/xz.1 $lang:man/$lang/xz.1
diff --git a/debian/patches/Translations-Add-Brazilian-Portuguese-translation-of-man-.patch b/debian/patches/Translations-Add-Brazilian-Portuguese-translation-of-man-.patch
new file mode 100644
index 0000000..00e6ca3
--- /dev/null
+++ b/debian/patches/Translations-Add-Brazilian-Portuguese-translation-of-man-.patch
@@ -0,0 +1,3707 @@
+From: Jia Tan <jiat0218@gmail.com>
+Date: Fri, 27 Jan 2023 20:14:51 +0800
+Subject: Translations: Add Brazilian Portuguese translation of man pages.
+
+Thanks to Rafael Fontenelle.
+---
+ po4a/po4a.conf | 2 +-
+ po4a/pt_BR.po | 3677 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+ 2 files changed, 3678 insertions(+), 1 deletion(-)
+ create mode 100644 po4a/pt_BR.po
+
+diff --git a/po4a/po4a.conf b/po4a/po4a.conf
+index 120070a..c7a7d42 100644
+--- a/po4a/po4a.conf
++++ b/po4a/po4a.conf
+@@ -2,7 +2,7 @@
+ # to get a new .po file. After translating the .po file, run
+ # "update-po" again to generate the translated man pages.
+
+-[po4a_langs] de fr ro uk ko
++[po4a_langs] de fr ro uk ko pt_BR
+ [po4a_paths] xz-man.pot $lang:$lang.po
+
+ [type: man] ../src/xz/xz.1 $lang:man/$lang/xz.1
+diff --git a/po4a/pt_BR.po b/po4a/pt_BR.po
+new file mode 100644
+index 0000000..8af5e35
+--- /dev/null
++++ b/po4a/pt_BR.po
+@@ -0,0 +1,3677 @@
++# Brazilian Portuguese translations for xz package
++# Traduções em português brasileiro para o pacote xz.
++# This file is put in the public domain.
++# Rafael Fontenelle <rafaelff@gnome.org>, 2022-2023.
++#
++msgid ""
++msgstr ""
++"Project-Id-Version: xz-man 5.4.0-pre2\n"
++"POT-Creation-Date: 2022-12-01 21:23+0200\n"
++"PO-Revision-Date: 2023-01-26 13:29-0300\n"
++"Last-Translator: Rafael Fontenelle <rafaelff@gnome.org>\n"
++"Language-Team: Brazilian Portuguese <ldpbr-translation@lists.sourceforge.net>\n"
++"Language: pt_BR\n"
++"MIME-Version: 1.0\n"
++"Content-Type: text/plain; charset=UTF-8\n"
++"Content-Transfer-Encoding: 8bit\n"
++"X-Bugs: Report translation errors to the Language-Team address.\n"
++"Plural-Forms: nplurals=2; plural=(n > 1)\n"
++"X-Generator: Gtranslator 42.0\n"
++
++#. type: TH
++#: ../src/xz/xz.1:8
++#, no-wrap
++msgid "XZ"
++msgstr "XZ"
++
++#. type: TH
++#: ../src/xz/xz.1:8
++#, no-wrap
++msgid "2022-12-01"
++msgstr "2022-12-01"
++
++#. type: TH
++#: ../src/xz/xz.1:8 ../src/xzdec/xzdec.1:7 ../src/lzmainfo/lzmainfo.1:7
++#: ../src/scripts/xzdiff.1:9 ../src/scripts/xzgrep.1:9
++#: ../src/scripts/xzless.1:10 ../src/scripts/xzmore.1:7
++#, no-wrap
++msgid "Tukaani"
++msgstr "Tukaani"
++
++#. type: TH
++#: ../src/xz/xz.1:8 ../src/xzdec/xzdec.1:7 ../src/lzmainfo/lzmainfo.1:7
++#: ../src/scripts/xzdiff.1:9 ../src/scripts/xzgrep.1:9
++#: ../src/scripts/xzless.1:10 ../src/scripts/xzmore.1:7
++#, no-wrap
++msgid "XZ Utils"
++msgstr "XZ Utils"
++
++#. type: SH
++#: ../src/xz/xz.1:10 ../src/xzdec/xzdec.1:8 ../src/lzmainfo/lzmainfo.1:8
++#: ../src/scripts/xzdiff.1:10 ../src/scripts/xzgrep.1:10
++#: ../src/scripts/xzless.1:11 ../src/scripts/xzmore.1:8
++#, no-wrap
++msgid "NAME"
++msgstr "NOME"
++
++#. type: Plain text
++#: ../src/xz/xz.1:12
++msgid "xz, unxz, xzcat, lzma, unlzma, lzcat - Compress or decompress .xz and .lzma files"
++msgstr "xz, unxz, xzcat, lzma, unlzma, lzcat - Compacta ou descompacta arquivos .xz e .lzma"
++
++#. type: SH
++#: ../src/xz/xz.1:13 ../src/xzdec/xzdec.1:10 ../src/lzmainfo/lzmainfo.1:10
++#: ../src/scripts/xzdiff.1:12 ../src/scripts/xzgrep.1:12
++#: ../src/scripts/xzless.1:13 ../src/scripts/xzmore.1:10
++#, no-wrap
++msgid "SYNOPSIS"
++msgstr "SINOPSE"
++
++#. type: Plain text
++#: ../src/xz/xz.1:17
++msgid "B<xz> [I<option...>] [I<file...>]"
++msgstr "B<xz> [I<opção...>] [I<arquivo...>]"
++
++#. type: SH
++#: ../src/xz/xz.1:18
++#, no-wrap
++msgid "COMMAND ALIASES"
++msgstr "COMANDOS APELIDOS"
++
++#. type: Plain text
++#: ../src/xz/xz.1:22
++msgid "B<unxz> is equivalent to B<xz --decompress>."
++msgstr "B<unxz> é equivalente a B<xz --decompress>."
++
++#. type: Plain text
++#: ../src/xz/xz.1:26
++msgid "B<xzcat> is equivalent to B<xz --decompress --stdout>."
++msgstr "B<xzcat> é equivalente a B<xz --decompress --stdout>."
++
++#. type: Plain text
++#: ../src/xz/xz.1:30
++msgid "B<lzma> is equivalent to B<xz --format=lzma>."
++msgstr "B<lzma> é equivalente a B<xz --format=lzma>."
++
++#. type: Plain text
++#: ../src/xz/xz.1:34
++msgid "B<unlzma> is equivalent to B<xz --format=lzma --decompress>."
++msgstr "B<unlzma> é equivalente a B<xz --format=lzma --decompress>."
++
++#. type: Plain text
++#: ../src/xz/xz.1:38
++msgid "B<lzcat> is equivalent to B<xz --format=lzma --decompress --stdout>."
++msgstr "B<lzcat> é equivalente a B<xz --format=lzma --decompress --stdout>."
++
++#. type: Plain text
++#: ../src/xz/xz.1:50
++msgid "When writing scripts that need to decompress files, it is recommended to always use the name B<xz> with appropriate arguments (B<xz -d> or B<xz -dc>) instead of the names B<unxz> and B<xzcat>."
++msgstr "Ao escrever scripts que precisam descompactar arquivos, é recomendável sempre usar o nome B<xz> com os argumentos apropriados (B<xz -d> ou B<xz -dc>) em vez dos nomes B<unxz> e B<xzcat>."
++
++#. type: SH
++#: ../src/xz/xz.1:51 ../src/xzdec/xzdec.1:18 ../src/lzmainfo/lzmainfo.1:15
++#: ../src/scripts/xzdiff.1:24 ../src/scripts/xzgrep.1:33
++#: ../src/scripts/xzless.1:19 ../src/scripts/xzmore.1:16
++#, no-wrap
++msgid "DESCRIPTION"
++msgstr "DESCRIÇÃO"
++
++#. type: Plain text
++#: ../src/xz/xz.1:70
++msgid "B<xz> is a general-purpose data compression tool with command line syntax similar to B<gzip>(1) and B<bzip2>(1). The native file format is the B<.xz> format, but the legacy B<.lzma> format used by LZMA Utils and raw compressed streams with no container format headers are also supported. In addition, decompression of the B<.lz> format used by B<lzip> is supported."
++msgstr "B<xz> é uma ferramenta de compactação de dados de uso geral com sintaxe de linha de comando semelhante ao B<gzip>(1) e ao B<bzip2>(1). O formato de arquivo nativo é o formato B<.xz>, mas o formato legado B<.lzma> usado por LZMA Utils e fluxos compactados brutos sem cabeçalhos de formato de contêiner também são suportados. Além disso, a descompactação do formato B<.lz> usado por B<lzip> é suportada."
++
++#. type: Plain text
++#: ../src/xz/xz.1:92
++msgid "B<xz> compresses or decompresses each I<file> according to the selected operation mode. If no I<files> are given or I<file> is B<->, B<xz> reads from standard input and writes the processed data to standard output. B<xz> will refuse (display an error and skip the I<file>) to write compressed data to standard output if it is a terminal. Similarly, B<xz> will refuse to read compressed data from standard input if it is a terminal."
++msgstr "B<xz> compacta ou descompacta cada I<arquivo> de acordo com o modo de operação selecionado. Se nenhum I<arquivo> for fornecido ou I<arquivo> for B<->, B<xz> lê da entrada padrão e grava os dados processados na saída padrão. B<xz> recusará (exibirá um erro e ignorará o I<arquivo>) para gravar dados compactados na saída padrão se for um terminal. Da mesma forma, B<xz> se recusará a ler dados compactados da entrada padrão se for um terminal."
++
++#. type: Plain text
++#: ../src/xz/xz.1:102
++msgid "Unless B<--stdout> is specified, I<files> other than B<-> are written to a new file whose name is derived from the source I<file> name:"
++msgstr "A menos que B<--stdout> seja especificado, I<arquivos> diferentes de B<-> são gravados em um novo arquivo cujo nome é derivado do nome I<arquivo> de origem:"
++
++#. type: IP
++#: ../src/xz/xz.1:102 ../src/xz/xz.1:108 ../src/xz/xz.1:133 ../src/xz/xz.1:138
++#: ../src/xz/xz.1:141 ../src/xz/xz.1:144 ../src/xz/xz.1:160 ../src/xz/xz.1:421
++#: ../src/xz/xz.1:424 ../src/xz/xz.1:431 ../src/xz/xz.1:676 ../src/xz/xz.1:678
++#: ../src/xz/xz.1:777 ../src/xz/xz.1:788 ../src/xz/xz.1:797 ../src/xz/xz.1:805
++#: ../src/xz/xz.1:1033 ../src/xz/xz.1:1042 ../src/xz/xz.1:1054
++#: ../src/xz/xz.1:1729 ../src/xz/xz.1:1735 ../src/xz/xz.1:1853
++#: ../src/xz/xz.1:1857 ../src/xz/xz.1:1860 ../src/xz/xz.1:1863
++#: ../src/xz/xz.1:1867 ../src/xz/xz.1:1874 ../src/xz/xz.1:1876
++#, no-wrap
++msgid "\\(bu"
++msgstr "\\(bu"
++
++#. type: Plain text
++#: ../src/xz/xz.1:108
++msgid "When compressing, the suffix of the target file format (B<.xz> or B<.lzma>) is appended to the source filename to get the target filename."
++msgstr "Ao compactar, o sufixo do formato de arquivo de destino (B<.xz> ou B<.lzma>) é anexado ao nome do arquivo de origem para obter o nome do arquivo de destino."
++
++#. type: Plain text
++#: ../src/xz/xz.1:123
++msgid "When decompressing, the B<.xz>, B<.lzma>, or B<.lz> suffix is removed from the filename to get the target filename. B<xz> also recognizes the suffixes B<.txz> and B<.tlz>, and replaces them with the B<.tar> suffix."
++msgstr "Ao descompactar, o sufixo B<.xz>, B<.lzma> ou B<.lz> é removido do nome do arquivo para obter o nome do arquivo de destino. B<xz> também reconhece os sufixos B<.txz> e B<.tlz> e os substitui pelo sufixo B<.tar>."
++
++#. type: Plain text
++#: ../src/xz/xz.1:127
++msgid "If the target file already exists, an error is displayed and the I<file> is skipped."
++msgstr "Se o arquivo de destino já existir, um erro será exibido e I<arquivo> será ignorado."
++
++#. type: Plain text
++#: ../src/xz/xz.1:133
++msgid "Unless writing to standard output, B<xz> will display a warning and skip the I<file> if any of the following applies:"
++msgstr "A menos que grave na saída padrão, B<xz> exibirá um aviso e pulará o I<arquivo> se qualquer um dos seguintes se aplicar:"
++
++#. type: Plain text
++#: ../src/xz/xz.1:138
++msgid "I<File> is not a regular file. Symbolic links are not followed, and thus they are not considered to be regular files."
++msgstr "I<Arquivo> não é um arquivo normal. Links simbólicos não são seguidos e, portanto, não são considerados arquivos comuns."
++
++#. type: Plain text
++#: ../src/xz/xz.1:141
++msgid "I<File> has more than one hard link."
++msgstr "I<Arquivo> tem mais de um link físico."
++
++#. type: Plain text
++#: ../src/xz/xz.1:144
++msgid "I<File> has setuid, setgid, or sticky bit set."
++msgstr "I<File> tem setuid, setgid ou sticky bit definido."
++
++#. type: Plain text
++#: ../src/xz/xz.1:160
++msgid "The operation mode is set to compress and the I<file> already has a suffix of the target file format (B<.xz> or B<.txz> when compressing to the B<.xz> format, and B<.lzma> or B<.tlz> when compressing to the B<.lzma> format)."
++msgstr "O modo de operação está definido para compactar e o I<arquivo> já possui um sufixo do formato de arquivo de destino (B<.xz> ou B<.txz> ao compactar para o formato B<.xz> e B<.lzma > ou B<.tlz> ao compactar para o formato B<.lzma>)."
++
++#. type: Plain text
++#: ../src/xz/xz.1:170
++msgid "The operation mode is set to decompress and the I<file> doesn't have a suffix of any of the supported file formats (B<.xz>, B<.txz>, B<.lzma>, B<.tlz>, or B<.lz>)."
++msgstr "O modo de operação está definido para descompactar e o I<arquivo> não possui um sufixo de nenhum dos formatos de arquivo suportados (B<.xz>, B<.txz>, B<.lzma>, B<.tlz> , ou B<.lz>)."
++
++#. type: Plain text
++#: ../src/xz/xz.1:185
++msgid "After successfully compressing or decompressing the I<file>, B<xz> copies the owner, group, permissions, access time, and modification time from the source I<file> to the target file. If copying the group fails, the permissions are modified so that the target file doesn't become accessible to users who didn't have permission to access the source I<file>. B<xz> doesn't support copying other metadata like access control lists or extended attributes yet."
++msgstr "Depois de compactar ou descompactar com êxito o I<arquivo>, o B<xz> copia o dono, grupo, permissões, horário de acesso e horário de modificação do I<arquivo> de origem para o arquivo de destino. Se a cópia do grupo falhar, as permissões serão modificadas para que o arquivo de destino não se torne acessível a usuários que não têm permissão para acessar o I<arquivo> de origem. B<xz> ainda não oferece suporte à cópia de outros metadados, como listas de controle de acesso ou atributos estendidos."
++
++#. type: Plain text
++#: ../src/xz/xz.1:195
++msgid "Once the target file has been successfully closed, the source I<file> is removed unless B<--keep> was specified. The source I<file> is never removed if the output is written to standard output or if an error occurs."
++msgstr "Depois que o arquivo de destino for fechado com êxito, o I<arquivo> de origem será removido, a menos que B<--keep> tenha sido especificado. O I<arquivo> de origem nunca é removido se a saída for gravada na saída padrão ou se ocorrer um erro."
++
++#. type: Plain text
++#: ../src/xz/xz.1:207
++msgid "Sending B<SIGINFO> or B<SIGUSR1> to the B<xz> process makes it print progress information to standard error. This has only limited use since when standard error is a terminal, using B<--verbose> will display an automatically updating progress indicator."
++msgstr "O envio de B<SIGINFO> ou B<SIGUSR1> para o processo do B<xz> faz com que ele imprima informações de andamento para erro padrão. Isso tem uso limitado, pois quando o erro padrão é um terminal, usar B<--verbose> exibirá um indicador de progresso de atualização automática."
++
++#. type: SS
++#: ../src/xz/xz.1:208
++#, no-wrap
++msgid "Memory usage"
++msgstr "Uso de memória"
++
++#. type: Plain text
++#: ../src/xz/xz.1:224
++msgid "The memory usage of B<xz> varies from a few hundred kilobytes to several gigabytes depending on the compression settings. The settings used when compressing a file determine the memory requirements of the decompressor. Typically the decompressor needs 5\\ % to 20\\ % of the amount of memory that the compressor needed when creating the file. For example, decompressing a file created with B<xz -9> currently requires 65\\ MiB of memory. Still, it is possible to have B<.xz> files that require several gigabytes of memory to decompress."
++msgstr "O uso de memória de B<xz> varia de algumas centenas de kilobytes a vários gigabytes, dependendo das configurações de compactação. As configurações usadas ao compactar um arquivo determinam os requisitos de memória do descompactador. Normalmente, o descompactador precisa de 5\\ % a 20\\ % da quantidade de memória que o compactador precisou ao criar o arquivo. Por exemplo, descompactar um arquivo criado com B<xz -9> atualmente requer 65\\ MiB de memória. Ainda assim, é possível ter arquivos B<.xz> que requerem vários gigabytes de memória para descompactar."
++
++#. type: Plain text
++#: ../src/xz/xz.1:236
++msgid "Especially users of older systems may find the possibility of very large memory usage annoying. To prevent uncomfortable surprises, B<xz> has a built-in memory usage limiter, which is disabled by default. While some operating systems provide ways to limit the memory usage of processes, relying on it wasn't deemed to be flexible enough (for example, using B<ulimit>(1) to limit virtual memory tends to cripple B<mmap>(2))."
++msgstr "Especialmente os usuários de sistemas mais antigos podem achar irritante a possibilidade de uso de memória muito grande. Para evitar surpresas desconfortáveis, o B<xz> possui um limitador de uso de memória embutido, que está desabilitado por padrão. Embora alguns sistemas operacionais forneçam maneiras de limitar o uso de memória dos processos, confiar nele não foi considerado flexível o suficiente (por exemplo, usar B<ulimit>(1) para limitar a memória virtual tende a prejudicar B<mmap>(2))."
++
++#. type: Plain text
++#: ../src/xz/xz.1:258
++msgid "The memory usage limiter can be enabled with the command line option B<--memlimit=>I<limit>. Often it is more convenient to enable the limiter by default by setting the environment variable B<XZ_DEFAULTS>, for example, B<XZ_DEFAULTS=--memlimit=150MiB>. It is possible to set the limits separately for compression and decompression by using B<--memlimit-compress=>I<limit> and B<--memlimit-decompress=>I<limit>. Using these two options outside B<XZ_DEFAULTS> is rarely useful because a single run of B<xz> cannot do both compression and decompression and B<--memlimit=>I<limit> (or B<-M> I<limit>) is shorter to type on the command line."
++msgstr "O limitador de uso de memória pode ser ativado com a opção de linha de comando B<--memlimit=>I<limite>. Geralmente é mais conveniente habilitar o limitador por padrão definindo a variável de ambiente B<XZ_DEFAULTS>, por exemplo, B<XZ_DEFAULTS=--memlimit=150MiB>. É possível definir os limites separadamente para compactação e descompactação usando B<--memlimit-compress=>I<limite> e B<--memlimit-decompress=>I<limite>. Usar essas duas opções fora de B<XZ_DEFAULTS> raramente é útil porque uma única execução de B<xz> não pode fazer compactação e descompactação e B<--memlimit=>I<limite> (ou B<-M> I<limite> ) é mais curto para digitar na linha de comando."
++
++#. type: Plain text
++#: ../src/xz/xz.1:277
++msgid "If the specified memory usage limit is exceeded when decompressing, B<xz> will display an error and decompressing the file will fail. If the limit is exceeded when compressing, B<xz> will try to scale the settings down so that the limit is no longer exceeded (except when using B<--format=raw> or B<--no-adjust>). This way the operation won't fail unless the limit is very small. The scaling of the settings is done in steps that don't match the compression level presets, for example, if the limit is only slightly less than the amount required for B<xz -9>, the settings will be scaled down only a little, not all the way down to B<xz -8>."
++msgstr "Se o limite de uso de memória especificado for excedido durante a descompactação, B<xz> exibirá um erro e a descompactação do arquivo falhará. Se o limite for excedido durante a compactação, B<xz> tentará reduzir as configurações para que o limite não seja mais excedido (exceto ao usar B<--format=raw> ou B<--no-adjust>). Dessa forma, a operação não falhará, a menos que o limite seja muito pequeno. A escala das configurações é feita em etapas que não correspondem às predefinições do nível de compactação, por exemplo, se o limite for apenas um pouco menor que o valor necessário para B<xz -9>, as configurações serão reduzidas apenas um pouco , não até B<xz -8>."
++
++#. type: SS
++#: ../src/xz/xz.1:278
++#, no-wrap
++msgid "Concatenation and padding with .xz files"
++msgstr "Concatenação e preenchimento com arquivos .xz"
++
++#. type: Plain text
++#: ../src/xz/xz.1:286
++msgid "It is possible to concatenate B<.xz> files as is. B<xz> will decompress such files as if they were a single B<.xz> file."
++msgstr "É possível concatenar arquivos B<.xz> como estão. B<xz> irá descompactar tais arquivos como se fossem um único arquivo B<.xz>."
++
++#. type: Plain text
++#: ../src/xz/xz.1:295
++msgid "It is possible to insert padding between the concatenated parts or after the last part. The padding must consist of null bytes and the size of the padding must be a multiple of four bytes. This can be useful, for example, if the B<.xz> file is stored on a medium that measures file sizes in 512-byte blocks."
++msgstr "É possível inserir preenchimento entre as partes concatenadas ou após a última parte. O preenchimento deve consistir em bytes nulos e o tamanho do preenchimento deve ser um múltiplo de quatro bytes. Isso pode ser útil, por exemplo, se o arquivo B<.xz> for armazenado em uma mídia que mede tamanhos de arquivo em blocos de 512 bytes."
++
++#. type: Plain text
++#: ../src/xz/xz.1:299
++msgid "Concatenation and padding are not allowed with B<.lzma> files or raw streams."
++msgstr "Concatenação e preenchimento não são permitidos com arquivos B<.lzma> ou fluxos brutos."
++
++#. type: SH
++#: ../src/xz/xz.1:300 ../src/xzdec/xzdec.1:61
++#, no-wrap
++msgid "OPTIONS"
++msgstr "OPÇÕES"
++
++#. type: SS
++#: ../src/xz/xz.1:302
++#, no-wrap
++msgid "Integer suffixes and special values"
++msgstr "Sufixos inteiros e valores especiais"
++
++#. type: Plain text
++#: ../src/xz/xz.1:306
++msgid "In most places where an integer argument is expected, an optional suffix is supported to easily indicate large integers. There must be no space between the integer and the suffix."
++msgstr "Na maioria dos lugares onde um argumento inteiro é esperado, um sufixo opcional é suportado para indicar facilmente números inteiros grandes. Não deve haver espaço entre o número inteiro e o sufixo."
++
++#. type: TP
++#: ../src/xz/xz.1:306
++#, no-wrap
++msgid "B<KiB>"
++msgstr "B<KiB>"
++
++#. type: Plain text
++#: ../src/xz/xz.1:317
++msgid "Multiply the integer by 1,024 (2^10). B<Ki>, B<k>, B<kB>, B<K>, and B<KB> are accepted as synonyms for B<KiB>."
++msgstr "Multiplica o inteiro por 1.024 (2^10). B<Ki>, B<k>, B<kB>, B<K> e B<KB> são aceitos como sinônimos de B<KiB>."
++
++#. type: TP
++#: ../src/xz/xz.1:317
++#, no-wrap
++msgid "B<MiB>"
++msgstr "B<MiB>"
++
++#. type: Plain text
++#: ../src/xz/xz.1:327
++msgid "Multiply the integer by 1,048,576 (2^20). B<Mi>, B<m>, B<M>, and B<MB> are accepted as synonyms for B<MiB>."
++msgstr "Multiplica o número inteiro por 1.048.576 (2^20). B<Mi>, B<m>, B<M> e B<MB> são aceitos como sinônimos de B<MiB>."
++
++#. type: TP
++#: ../src/xz/xz.1:327
++#, no-wrap
++msgid "B<GiB>"
++msgstr "B<GiB>"
++
++#. type: Plain text
++#: ../src/xz/xz.1:337
++msgid "Multiply the integer by 1,073,741,824 (2^30). B<Gi>, B<g>, B<G>, and B<GB> are accepted as synonyms for B<GiB>."
++msgstr "Multiplica o número inteiro por 1.073.741.824 (2^30). B<Gi>, B<g>, B<G> e B<GB> são aceitos como sinônimos de B<GiB>."
++
++#. type: Plain text
++#: ../src/xz/xz.1:342
++msgid "The special value B<max> can be used to indicate the maximum integer value supported by the option."
++msgstr "O valor especial B<max> pode ser usado para indicar o valor inteiro máximo suportado pela opção."
++
++#. type: SS
++#: ../src/xz/xz.1:343
++#, no-wrap
++msgid "Operation mode"
++msgstr "Modo de operação"
++
++#. type: Plain text
++#: ../src/xz/xz.1:346
++msgid "If multiple operation mode options are given, the last one takes effect."
++msgstr "Se várias opções de modo de operação forem dadas, a última entrará em vigor."
++
++#. type: TP
++#: ../src/xz/xz.1:346
++#, no-wrap
++msgid "B<-z>, B<--compress>"
++msgstr "B<-z>, B<--compress>"
++
++#. type: Plain text
++#: ../src/xz/xz.1:355
++msgid "Compress. This is the default operation mode when no operation mode option is specified and no other operation mode is implied from the command name (for example, B<unxz> implies B<--decompress>)."
++msgstr "Compacta. Este é o modo de operação padrão quando nenhuma opção de modo de operação é especificada e nenhum outro modo de operação está implícito no nome do comando (por exemplo, B<unxz> implica em B<--decompress>)."
++
++#. type: TP
++#: ../src/xz/xz.1:355 ../src/xzdec/xzdec.1:62
++#, no-wrap
++msgid "B<-d>, B<--decompress>, B<--uncompress>"
++msgstr "B<-d>, B<--decompress>, B<--uncompress>"
++
++#. type: Plain text
++#: ../src/xz/xz.1:358
++msgid "Decompress."
++msgstr "Descompacta."
++
++#. type: TP
++#: ../src/xz/xz.1:358
++#, no-wrap
++msgid "B<-t>, B<--test>"
++msgstr "B<-t>, B<--test>"
++
++#. type: Plain text
++#: ../src/xz/xz.1:367
++msgid "Test the integrity of compressed I<files>. This option is equivalent to B<--decompress --stdout> except that the decompressed data is discarded instead of being written to standard output. No files are created or removed."
++msgstr "Testa a integridade de I<arquivos> compactados. Esta opção é equivalente a B<--decompress --stdout> exceto que os dados descompactados são descartados em vez de serem gravados na saída padrão. Nenhum arquivo é criado ou removido."
++
++#. type: TP
++#: ../src/xz/xz.1:367
++#, no-wrap
++msgid "B<-l>, B<--list>"
++msgstr "B<-l>, B<--list>"
++
++#. type: Plain text
++#: ../src/xz/xz.1:376
++msgid "Print information about compressed I<files>. No uncompressed output is produced, and no files are created or removed. In list mode, the program cannot read the compressed data from standard input or from other unseekable sources."
++msgstr "Imprime informações sobre I<arquivos> compactados. Nenhuma saída descompactada é produzida e nenhum arquivo é criado ou removido. No modo de lista, o programa não pode ler os dados compactados da entrada padrão ou de outras fontes não pesquisáveis."
++
++#. type: Plain text
++#: ../src/xz/xz.1:391
++msgid "The default listing shows basic information about I<files>, one file per line. To get more detailed information, use also the B<--verbose> option. For even more information, use B<--verbose> twice, but note that this may be slow, because getting all the extra information requires many seeks. The width of verbose output exceeds 80 characters, so piping the output to, for example, B<less\\ -S> may be convenient if the terminal isn't wide enough."
++msgstr "A listagem padrão mostra informações básicas sobre I<arquivos>, um arquivo por linha. Para obter informações mais detalhadas, use também a opção B<--verbose>. Para obter ainda mais informações, use B<--verbose> duas vezes, mas observe que isso pode ser lento, porque obter todas as informações extras requer muitas buscas. A largura da saída detalhada excede 80 caracteres, portanto, canalizar a saída para, por exemplo, B<less\\ -S> pode ser conveniente se o terminal não tiver largura o suficiente."
++
++#. type: Plain text
++#: ../src/xz/xz.1:398
++msgid "The exact output may vary between B<xz> versions and different locales. For machine-readable output, B<--robot --list> should be used."
++msgstr "A saída exata pode variar entre versões B<xz> e localidades diferentes. Para saída legível por máquina, B<--robot --list> deve ser usado."
++
++#. type: SS
++#: ../src/xz/xz.1:399
++#, no-wrap
++msgid "Operation modifiers"
++msgstr "Modificadores de operação"
++
++#. type: TP
++#: ../src/xz/xz.1:400 ../src/xzdec/xzdec.1:69
++#, no-wrap
++msgid "B<-k>, B<--keep>"
++msgstr "B<-k>, B<--keep>"
++
++#. type: Plain text
++#: ../src/xz/xz.1:403
++msgid "Don't delete the input files."
++msgstr "Não exclui os arquivos de entrada."
++
++#. type: Plain text
++#: ../src/xz/xz.1:417
++msgid "Since B<xz> 5.2.6, this option also makes B<xz> compress or decompress even if the input is a symbolic link to a regular file, has more than one hard link, or has the setuid, setgid, or sticky bit set. The setuid, setgid, and sticky bits are not copied to the target file. In earlier versions this was only done with B<--force>."
++msgstr "Desde B<xz> 5.2.6, esta opção também faz B<xz> compactar ou descompactar mesmo se a entrada for um link simbólico para um arquivo comum, tiver mais de um link físico ou tiver o setuid, setgid ou sticky bit definir. Os bits setuid, setgid e sticky não são copiados para o arquivo de destino. Nas versões anteriores, isso era feito apenas com B<--force>."
++
++#. type: TP
++#: ../src/xz/xz.1:417
++#, no-wrap
++msgid "B<-f>, B<--force>"
++msgstr "B<-f>, B<--force>"
++
++#. type: Plain text
++#: ../src/xz/xz.1:420
++msgid "This option has several effects:"
++msgstr "Esta opção tem vários efeitos:"
++
++#. type: Plain text
++#: ../src/xz/xz.1:424
++msgid "If the target file already exists, delete it before compressing or decompressing."
++msgstr "Se o arquivo de destino já existir, o exclui antes de compactar ou descompactar."
++
++#. type: Plain text
++#: ../src/xz/xz.1:431
++msgid "Compress or decompress even if the input is a symbolic link to a regular file, has more than one hard link, or has the setuid, setgid, or sticky bit set. The setuid, setgid, and sticky bits are not copied to the target file."
++msgstr "Compacta ou descompacta, mesmo que a entrada seja um link simbólico para um arquivo normal, tenha mais de um link físico ou tenha setuid, setgid ou sticky bit definido. Os bits setuid, setgid e sticky não são copiados para o arquivo de destino."
++
++#. type: Plain text
++#: ../src/xz/xz.1:456
++msgid "When used with B<--decompress> B<--stdout> and B<xz> cannot recognize the type of the source file, copy the source file as is to standard output. This allows B<xzcat> B<--force> to be used like B<cat>(1) for files that have not been compressed with B<xz>. Note that in future, B<xz> might support new compressed file formats, which may make B<xz> decompress more types of files instead of copying them as is to standard output. B<--format=>I<format> can be used to restrict B<xz> to decompress only a single file format."
++msgstr "Quando usado com B<--decompress> B<--stdout> e B<xz> não consegue reconhecer o tipo do arquivo de origem, copia o arquivo de origem como está na saída padrão. Isso permite que B<xzcat> B<--force> seja usado como B<cat>(1) para arquivos que não foram compactados com B<xz>. Observe que, no futuro, o B<xz> pode oferecer suporte a novos formatos de arquivo compactado, o que pode fazer com que o B<xz> descompacte mais tipos de arquivos em vez de copiá-los como na saída padrão. B<--format=>I<formato> pode ser usado para restringir B<xz> para descompactar apenas um único formato de arquivo."
++
++#. type: TP
++#: ../src/xz/xz.1:457 ../src/xzdec/xzdec.1:76
++#, no-wrap
++msgid "B<-c>, B<--stdout>, B<--to-stdout>"
++msgstr "B<-c>, B<--stdout>, B<--to-stdout>"
++
++#. type: Plain text
++#: ../src/xz/xz.1:463
++msgid "Write the compressed or decompressed data to standard output instead of a file. This implies B<--keep>."
++msgstr "Grava os dados compactados ou descompactados na saída padrão em vez de em um arquivo. Isso implica em B<--keep>."
++
++#. type: TP
++#: ../src/xz/xz.1:463
++#, no-wrap
++msgid "B<--single-stream>"
++msgstr "B<--single-stream>"
++
++#. type: Plain text
++#: ../src/xz/xz.1:472
++msgid "Decompress only the first B<.xz> stream, and silently ignore possible remaining input data following the stream. Normally such trailing garbage makes B<xz> display an error."
++msgstr "Descompacta apenas o primeiro fluxo de B<.xz> e ignora silenciosamente possíveis dados de entrada restantes após o fluxo. Normalmente, esse restante posterior sem uso faz com que B<xz> exiba um erro."
++
++#. type: Plain text
++#: ../src/xz/xz.1:481
++msgid "B<xz> never decompresses more than one stream from B<.lzma> files or raw streams, but this option still makes B<xz> ignore the possible trailing data after the B<.lzma> file or raw stream."
++msgstr "B<xz> nunca descompacta mais de um fluxo de arquivos B<.lzma> ou fluxos brutos, mas esta opção ainda faz B<xz> ignorar os possíveis dados posteriores após o arquivo B<.lzma> ou fluxo bruto."
++
++#. type: Plain text
++#: ../src/xz/xz.1:486
++msgid "This option has no effect if the operation mode is not B<--decompress> or B<--test>."
++msgstr "Esta opção não tem efeito se o modo de operação não for B<--decompress> ou B<--test>."
++
++#. type: TP
++#: ../src/xz/xz.1:486
++#, no-wrap
++msgid "B<--no-sparse>"
++msgstr "B<--no-sparse>"
++
++#. type: Plain text
++#: ../src/xz/xz.1:498
++msgid "Disable creation of sparse files. By default, if decompressing into a regular file, B<xz> tries to make the file sparse if the decompressed data contains long sequences of binary zeros. It also works when writing to standard output as long as standard output is connected to a regular file and certain additional conditions are met to make it safe. Creating sparse files may save disk space and speed up the decompression by reducing the amount of disk I/O."
++msgstr "Desativa a criação de arquivos esparsos. Por padrão, ao descompactar em um arquivo normal, B<xz> tenta tornar o arquivo esparso se os dados descompactados contiverem longas sequências de zeros binários. Ele também funciona ao gravar na saída padrão, desde que a saída padrão esteja conectada a um arquivo normal e certas condições adicionais sejam atendidas para torná-la segura. A criação de arquivos esparsos pode economizar espaço em disco e acelerar a descompactação, reduzindo a quantidade de E/S do disco."
++
++#. type: TP
++#: ../src/xz/xz.1:498
++#, no-wrap
++msgid "B<-S> I<.suf>, B<--suffix=>I<.suf>"
++msgstr "B<-S> I<.suf>, B<--suffix=>I<.suf>"
++
++#. type: Plain text
++#: ../src/xz/xz.1:510
++msgid "When compressing, use I<.suf> as the suffix for the target file instead of B<.xz> or B<.lzma>. If not writing to standard output and the source file already has the suffix I<.suf>, a warning is displayed and the file is skipped."
++msgstr "Ao compactar, usa I<.suf> como sufixo para o arquivo de destino em vez de B<.xz> ou B<.lzma>. Se não estiver gravando na saída padrão e o arquivo de origem já tiver o sufixo I<.suf>, um aviso será exibido e o arquivo será ignorado."
++
++#. type: Plain text
++#: ../src/xz/xz.1:524
++msgid "When decompressing, recognize files with the suffix I<.suf> in addition to files with the B<.xz>, B<.txz>, B<.lzma>, B<.tlz>, or B<.lz> suffix. If the source file has the suffix I<.suf>, the suffix is removed to get the target filename."
++msgstr "Ao descompactar, reconhece arquivos com o sufixo I<.suf> além de arquivos com o sufixo B<.xz>, B<.txz>, B<.lzma>, B<.tlz> ou B<.lz> . Se o arquivo de origem tiver o sufixo I<.suf>, o sufixo será removido para obter o nome do arquivo de destino."
++
++#. type: Plain text
++#: ../src/xz/xz.1:530
++msgid "When compressing or decompressing raw streams (B<--format=raw>), the suffix must always be specified unless writing to standard output, because there is no default suffix for raw streams."
++msgstr "Ao compactar ou descompactar fluxos brutos (B<--format=raw>), o sufixo sempre deve ser especificado, a menos que seja gravado na saída padrão, porque não há sufixo padrão para fluxos brutos."
++
++#. type: TP
++#: ../src/xz/xz.1:530
++#, no-wrap
++msgid "B<--files>[B<=>I<file>]"
++msgstr "B<--files>[B<=>I<arquivo>]"
++
++#. type: Plain text
++#: ../src/xz/xz.1:544
++msgid "Read the filenames to process from I<file>; if I<file> is omitted, filenames are read from standard input. Filenames must be terminated with the newline character. A dash (B<->) is taken as a regular filename; it doesn't mean standard input. If filenames are given also as command line arguments, they are processed before the filenames read from I<file>."
++msgstr "Lê os nomes dos arquivos a serem processados em I<arquivo>; se I<arquivo> for omitido, os nomes dos arquivos serão lidos da entrada padrão. Os nomes de arquivo devem terminar com o caractere de nova linha. Um traço (B<->) é considerado um nome de arquivo regular; não significa entrada padrão. Se os nomes de arquivo forem fornecidos também como argumentos de linha de comando, eles serão processados antes da leitura dos nomes de arquivo de I<arquivo>."
++
++#. type: TP
++#: ../src/xz/xz.1:544
++#, no-wrap
++msgid "B<--files0>[B<=>I<file>]"
++msgstr "B<--files0>[B<=>I<arquivo>]"
++
++#. type: Plain text
++#: ../src/xz/xz.1:548
++msgid "This is identical to B<--files>[B<=>I<file>] except that each filename must be terminated with the null character."
++msgstr "Isso é idêntico a B<--files>[B<=>I<arquivo>], exceto que cada nome de arquivo deve ser finalizado com o caractere nulo."
++
++#. type: SS
++#: ../src/xz/xz.1:549
++#, no-wrap
++msgid "Basic file format and compression options"
++msgstr "Opções básicas de formato de arquivo e de compactação"
++
++#. type: TP
++#: ../src/xz/xz.1:550
++#, no-wrap
++msgid "B<-F> I<format>, B<--format=>I<format>"
++msgstr "B<-F> I<formato>, B<--format=>I<formato>"
++
++#. type: Plain text
++#: ../src/xz/xz.1:555
++msgid "Specify the file I<format> to compress or decompress:"
++msgstr "Especifica o I<formato> de arquivo para compactar ou descompactar:"
++
++#. type: TP
++#: ../src/xz/xz.1:556
++#, no-wrap
++msgid "B<auto>"
++msgstr "B<auto>"
++
++#. type: Plain text
++#: ../src/xz/xz.1:568
++msgid "This is the default. When compressing, B<auto> is equivalent to B<xz>. When decompressing, the format of the input file is automatically detected. Note that raw streams (created with B<--format=raw>) cannot be auto-detected."
++msgstr "Este é o padrão. Ao compactar, B<auto> é equivalente a B<xz>. Ao descompactar, o formato do arquivo de entrada é detectado automaticamente. Observe que os fluxos brutos (criados com B<--format=raw>) não podem ser detectados automaticamente."
++
++#. type: TP
++#: ../src/xz/xz.1:568
++#, no-wrap
++msgid "B<xz>"
++msgstr "B<xz>"
++
++#. type: Plain text
++#: ../src/xz/xz.1:575
++msgid "Compress to the B<.xz> file format, or accept only B<.xz> files when decompressing."
++msgstr "Compacta no formato de arquivo B<.xz> ou aceite apenas arquivos B<.xz> ao descompactar."
++
++#. type: TP
++#: ../src/xz/xz.1:575
++#, no-wrap
++msgid "B<lzma>, B<alone>"
++msgstr "B<lzma>, B<alone>"
++
++#. type: Plain text
++#: ../src/xz/xz.1:585
++msgid "Compress to the legacy B<.lzma> file format, or accept only B<.lzma> files when decompressing. The alternative name B<alone> is provided for backwards compatibility with LZMA Utils."
++msgstr "Compacta no formato de arquivo legado B<.lzma> ou aceite apenas arquivos B<.lzma> ao descompactar. O nome alternativo B<alone> é fornecido para compatibilidade com versões anteriores do LZMA Utils."
++
++#. type: TP
++#: ../src/xz/xz.1:585
++#, no-wrap
++msgid "B<lzip>"
++msgstr "B<lzip>"
++
++#. type: Plain text
++#: ../src/xz/xz.1:591
++msgid "Accept only B<.lz> files when decompressing. Compression is not supported."
++msgstr "Aceita apenas arquivos B<.lz> ao descompactar. Sem suporte a compactação."
++
++#. type: Plain text
++#: ../src/xz/xz.1:604
++msgid "The B<.lz> format version 0 and the unextended version 1 are supported. Version 0 files were produced by B<lzip> 1.3 and older. Such files aren't common but may be found from file archives as a few source packages were released in this format. People might have old personal files in this format too. Decompression support for the format version 0 was removed in B<lzip> 1.18."
++msgstr "O formato B<.lz> versão 0 e a versão não estendida 1 são suportados. Os arquivos da versão 0 foram produzidos por B<lzip> 1.3 e anteriores. Esses arquivos não são comuns, mas podem ser encontrados em arquivos compactados, pois alguns pacotes de origem foram lançados nesse formato. As pessoas também podem ter arquivos pessoais antigos neste formato. O suporte de descompactação para o formato versão 0 foi removido em B<lzip> 1.18."
++
++#. type: Plain text
++#: ../src/xz/xz.1:613
++msgid "B<lzip> 1.4 and later create files in the format version 1. The sync flush marker extension to the format version 1 was added in B<lzip> 1.6. This extension is rarely used and isn't supported by B<xz> (diagnosed as corrupt input)."
++msgstr "B<lzip> 1.4 e posteriores criam arquivos no formato versão 1. A extensão do marcador de descarga de sincronização para o formato versão 1 foi adicionada em B<lzip> 1.6. Esta extensão raramente é usada e não é suportada por B<xz> (diagnosticada como entrada corrompida)."
++
++#. type: TP
++#: ../src/xz/xz.1:613
++#, no-wrap
++msgid "B<raw>"
++msgstr "B<raw>"
++
++#. type: Plain text
++#: ../src/xz/xz.1:621
++msgid "Compress or uncompress a raw stream (no headers). This is meant for advanced users only. To decode raw streams, you need use B<--format=raw> and explicitly specify the filter chain, which normally would have been stored in the container headers."
++msgstr "Compacta ou descompacta um fluxo bruto (sem cabeçalhos). Isso é destinado apenas a usuários avançados. Para decodificar fluxos brutos, você precisa usar B<--format=raw> e especificar explicitamente a cadeia de filtros, que normalmente seria armazenada nos cabeçalhos do contêiner."
++
++#. type: TP
++#: ../src/xz/xz.1:622
++#, no-wrap
++msgid "B<-C> I<check>, B<--check=>I<check>"
++msgstr "B<-C> I<verificação>, B<--check=>I<verificação>"
++
++#. type: Plain text
++#: ../src/xz/xz.1:637
++msgid "Specify the type of the integrity check. The check is calculated from the uncompressed data and stored in the B<.xz> file. This option has an effect only when compressing into the B<.xz> format; the B<.lzma> format doesn't support integrity checks. The integrity check (if any) is verified when the B<.xz> file is decompressed."
++msgstr "Especifica o tipo de verificação de integridade. A verificação é calculada a partir dos dados descompactados e armazenados no arquivo B<.xz>. Esta opção tem efeito somente ao compactar no formato B<.xz>; o formato B<.lzma> não oferece suporte a verificações de integridade. A verificação de integridade (se for o caso) é verificada quando o arquivo B<.xz> é descompactado."
++
++#. type: Plain text
++#: ../src/xz/xz.1:641
++msgid "Supported I<check> types:"
++msgstr "Tipos de I<verificação> suportados:"
++
++#. type: TP
++#: ../src/xz/xz.1:642
++#, no-wrap
++msgid "B<none>"
++msgstr "B<none>"
++
++#. type: Plain text
++#: ../src/xz/xz.1:648
++msgid "Don't calculate an integrity check at all. This is usually a bad idea. This can be useful when integrity of the data is verified by other means anyway."
++msgstr "Não calcula uma verificação de integridade. Isso geralmente é uma má ideia. Pode ser útil quando a integridade dos dados é verificada por outros meios."
++
++#. type: TP
++#: ../src/xz/xz.1:648
++#, no-wrap
++msgid "B<crc32>"
++msgstr "B<crc32>"
++
++#. type: Plain text
++#: ../src/xz/xz.1:651
++msgid "Calculate CRC32 using the polynomial from IEEE-802.3 (Ethernet)."
++msgstr "Calcula CRC32 usando o polinômio do IEEE-802.3 (Ethernet)."
++
++#. type: TP
++#: ../src/xz/xz.1:651
++#, no-wrap
++msgid "B<crc64>"
++msgstr "B<crc64>"
++
++#. type: Plain text
++#: ../src/xz/xz.1:656
++msgid "Calculate CRC64 using the polynomial from ECMA-182. This is the default, since it is slightly better than CRC32 at detecting damaged files and the speed difference is negligible."
++msgstr "Calcula CRC64 usando o polinômio de ECMA-182. Este é o padrão, pois é um pouco melhor que o CRC32 na detecção de arquivos danificados e a diferença de velocidade é insignificante."
++
++#. type: TP
++#: ../src/xz/xz.1:656
++#, no-wrap
++msgid "B<sha256>"
++msgstr "B<sha256>"
++
++#. type: Plain text
++#: ../src/xz/xz.1:660
++msgid "Calculate SHA-256. This is somewhat slower than CRC32 and CRC64."
++msgstr "Calcula SHA-256. Isso é um pouco mais lento do que CRC32 e CRC64."
++
++#. type: Plain text
++#: ../src/xz/xz.1:666
++msgid "Integrity of the B<.xz> headers is always verified with CRC32. It is not possible to change or disable it."
++msgstr "A integridade dos cabeçalhos de B<.xz> é sempre verificada com CRC32. Não é possível alterá-la ou desativá-la."
++
++#. type: TP
++#: ../src/xz/xz.1:666
++#, no-wrap
++msgid "B<--ignore-check>"
++msgstr "B<--ignore-check>"
++
++# Enquanto verify=verificar, achei melhor alterar para conferir para evitar excesso de "verificar" e "verificação" -- Rafael
++#. type: Plain text
++#: ../src/xz/xz.1:672
++msgid "Don't verify the integrity check of the compressed data when decompressing. The CRC32 values in the B<.xz> headers will still be verified normally."
++msgstr "Não confere a verificação de integridade dos dados compactados ao descompactar. Os valores CRC32 nos cabeçalhos B<.xz> ainda serão conferidos normalmente."
++
++#. type: Plain text
++#: ../src/xz/xz.1:675
++msgid "B<Do not use this option unless you know what you are doing.> Possible reasons to use this option:"
++msgstr "B<Não use esta opção a menos que saiba o que está fazendo.> Possíveis razões para usar esta opção:"
++
++#. type: Plain text
++#: ../src/xz/xz.1:678
++msgid "Trying to recover data from a corrupt .xz file."
++msgstr "Tentativa de recuperar dados de um arquivo .xz corrompido."
++
++#. type: Plain text
++#: ../src/xz/xz.1:684
++msgid "Speeding up decompression. This matters mostly with SHA-256 or with files that have compressed extremely well. It's recommended to not use this option for this purpose unless the file integrity is verified externally in some other way."
++msgstr "Acelerar a descompactação. Isso é importante principalmente com SHA-256 ou com arquivos extremamente bem compactados. É recomendável não usar essa opção para essa finalidade, a menos que a integridade do arquivo seja verificada externamente de alguma outra forma."
++
++#. type: TP
++#: ../src/xz/xz.1:685
++#, no-wrap
++msgid "B<-0> ... B<-9>"
++msgstr "B<-0> ... B<-9>"
++
++#. type: Plain text
++#: ../src/xz/xz.1:694
++msgid "Select a compression preset level. The default is B<-6>. If multiple preset levels are specified, the last one takes effect. If a custom filter chain was already specified, setting a compression preset level clears the custom filter chain."
++msgstr "Seleciona um nível de predefinição de compactação. O padrão é B<-6>. Se vários níveis de predefinição forem especificados, o último terá efeito. Se uma cadeia de filtro personalizada já foi especificada, especificar um nível de predefinição de compactação limpa a cadeia de filtro personalizada."
++
++#. type: Plain text
++#: ../src/xz/xz.1:709
++msgid "The differences between the presets are more significant than with B<gzip>(1) and B<bzip2>(1). The selected compression settings determine the memory requirements of the decompressor, thus using a too high preset level might make it painful to decompress the file on an old system with little RAM. Specifically, B<it's not a good idea to blindly use -9 for everything> like it often is with B<gzip>(1) and B<bzip2>(1)."
++msgstr "As diferenças entre as predefinições são mais significativas do que com B<gzip>(1) e B<bzip2>(1). As configurações de compactação selecionadas determinam os requisitos de memória do descompactador, portanto, usar um nível de predefinição muito alto pode dificultar a descompactação do arquivo em um sistema antigo com pouca RAM. Especificamente, B<não é uma boa ideia usar cegamente -9 para tudo> como costuma acontecer com B<gzip>(1) e B<bzip2>(1)."
++
++#. type: TP
++#: ../src/xz/xz.1:710
++#, no-wrap
++msgid "B<-0> ... B<-3>"
++msgstr "B<-0> ... B<-3>"
++
++#. type: Plain text
++#: ../src/xz/xz.1:722
++msgid "These are somewhat fast presets. B<-0> is sometimes faster than B<gzip -9> while compressing much better. The higher ones often have speed comparable to B<bzip2>(1) with comparable or better compression ratio, although the results depend a lot on the type of data being compressed."
++msgstr "Estas são predefinições um tanto rápidas. B<-0> às vezes é mais rápida que B<gzip -9> ao mesmo tempo que compacta muito melhor. As mais altas geralmente têm velocidade comparável ao B<bzip2>(1) com taxa de compactação comparável ou melhor, embora os resultados dependam muito do tipo de dados que estão sendo compactados."
++
++#. type: TP
++#: ../src/xz/xz.1:722
++#, no-wrap
++msgid "B<-4> ... B<-6>"
++msgstr "B<-4> ... B<-6>"
++
++#. type: Plain text
++#: ../src/xz/xz.1:736
++msgid "Good to very good compression while keeping decompressor memory usage reasonable even for old systems. B<-6> is the default, which is usually a good choice for distributing files that need to be decompressible even on systems with only 16\\ MiB RAM. (B<-5e> or B<-6e> may be worth considering too. See B<--extreme>.)"
++msgstr "Compactação boa a muito boa, mantendo o uso de memória do descompactador razoável mesmo para sistemas antigos. B<-6> é o padrão, que geralmente é uma boa escolha para distribuir arquivos que precisam ser descompactáveis, mesmo em sistemas com apenas 16\\ MiB de RAM. (B<-5e> ou B<-6e> também vale a pena considerar. Veja B<--extreme>.)"
++
++#. type: TP
++#: ../src/xz/xz.1:736
++#, no-wrap
++msgid "B<-7 ... -9>"
++msgstr "B<-7 ... -9>"
++
++#. type: Plain text
++#: ../src/xz/xz.1:743
++msgid "These are like B<-6> but with higher compressor and decompressor memory requirements. These are useful only when compressing files bigger than 8\\ MiB, 16\\ MiB, and 32\\ MiB, respectively."
++msgstr "Eles são como B<-6>, mas com requisitos de memória de compressor e descompressor mais altos. Eles são úteis apenas ao compactar arquivos maiores que 8\\ MiB, 16\\ MiB e 32\\ MiB, respectivamente."
++
++#. type: Plain text
++#: ../src/xz/xz.1:751
++msgid "On the same hardware, the decompression speed is approximately a constant number of bytes of compressed data per second. In other words, the better the compression, the faster the decompression will usually be. This also means that the amount of uncompressed output produced per second can vary a lot."
++msgstr "No mesmo hardware, a velocidade de descompactação é aproximadamente um número constante de bytes de dados compactados por segundo. Em outras palavras, quanto melhor a compactação, mais rápida será a descompactação. Isso também significa que a quantidade de saída não compactada produzida por segundo pode variar muito."
++
++#. type: Plain text
++#: ../src/xz/xz.1:753
++msgid "The following table summarises the features of the presets:"
++msgstr "A tabela a seguir resume os recursos das predefinições:"
++
++#. type: tbl table
++#: ../src/xz/xz.1:760 ../src/xz/xz.1:841 ../src/xz/xz.1:2839
++#, no-wrap
++msgid "Preset"
++msgstr "Predefinição"
++
++#. type: tbl table
++#: ../src/xz/xz.1:760 ../src/xz/xz.1:841
++#, no-wrap
++msgid "DictSize"
++msgstr "DicTam"
++
++#. type: tbl table
++#: ../src/xz/xz.1:760 ../src/xz/xz.1:841 ../src/xz/xz.1:2839
++#, no-wrap
++msgid "CompCPU"
++msgstr "CompCPU"
++
++#. type: tbl table
++#: ../src/xz/xz.1:760 ../src/xz/xz.1:841
++#, no-wrap
++msgid "CompMem"
++msgstr "CompMem"
++
++#. type: tbl table
++#: ../src/xz/xz.1:760 ../src/xz/xz.1:841
++#, no-wrap
++msgid "DecMem"
++msgstr "DecMem"
++
++#. type: tbl table
++#: ../src/xz/xz.1:761 ../src/xz/xz.1:2450 ../src/xz/xz.1:2475
++#: ../src/xz/xz.1:2840
++#, no-wrap
++msgid "-0"
++msgstr "-0"
++
++#. type: tbl table
++#: ../src/xz/xz.1:761 ../src/xz/xz.1:842 ../src/xz/xz.1:2450
++#, no-wrap
++msgid "256 KiB"
++msgstr "256 KiB"
++
++#. type: TP
++#: ../src/xz/xz.1:761 ../src/xz/xz.1:2840 ../src/scripts/xzgrep.1:82
++#, no-wrap
++msgid "0"
++msgstr "0"
++
++#. type: tbl table
++#: ../src/xz/xz.1:761 ../src/xz/xz.1:763 ../src/xz/xz.1:844
++#: ../src/xz/xz.1:2475
++#, no-wrap
++msgid "3 MiB"
++msgstr "3 MiB"
++
++#. type: tbl table
++#: ../src/xz/xz.1:761 ../src/xz/xz.1:762 ../src/xz/xz.1:842 ../src/xz/xz.1:843
++#: ../src/xz/xz.1:2451 ../src/xz/xz.1:2452 ../src/xz/xz.1:2454
++#, no-wrap
++msgid "1 MiB"
++msgstr "1 MiB"
++
++#. type: tbl table
++#: ../src/xz/xz.1:762 ../src/xz/xz.1:2451 ../src/xz/xz.1:2476
++#: ../src/xz/xz.1:2841
++#, no-wrap
++msgid "-1"
++msgstr "-1"
++
++#. type: TP
++#: ../src/xz/xz.1:762 ../src/xz/xz.1:1758 ../src/xz/xz.1:2841
++#: ../src/scripts/xzgrep.1:86
++#, no-wrap
++msgid "1"
++msgstr "1"
++
++#. type: tbl table
++#: ../src/xz/xz.1:762 ../src/xz/xz.1:766 ../src/xz/xz.1:767 ../src/xz/xz.1:847
++#: ../src/xz/xz.1:848 ../src/xz/xz.1:2476
++#, no-wrap
++msgid "9 MiB"
++msgstr "9 MiB"
++
++#. type: tbl table
++#: ../src/xz/xz.1:762 ../src/xz/xz.1:763 ../src/xz/xz.1:843 ../src/xz/xz.1:844
++#: ../src/xz/xz.1:2452 ../src/xz/xz.1:2455 ../src/xz/xz.1:2476
++#, no-wrap
++msgid "2 MiB"
++msgstr "2 MiB"
++
++#. type: tbl table
++#: ../src/xz/xz.1:763 ../src/xz/xz.1:2452 ../src/xz/xz.1:2477
++#: ../src/xz/xz.1:2842
++#, no-wrap
++msgid "-2"
++msgstr "-2"
++
++#. type: tbl table
++#: ../src/xz/xz.1:763 ../src/xz/xz.1:1760 ../src/xz/xz.1:2842
++#, no-wrap
++msgid "2"
++msgstr "2"
++
++#. type: tbl table
++#: ../src/xz/xz.1:763 ../src/xz/xz.1:768 ../src/xz/xz.1:849
++#: ../src/xz/xz.1:2477
++#, no-wrap
++msgid "17 MiB"
++msgstr "17 MiB"
++
++#. type: tbl table
++#: ../src/xz/xz.1:764 ../src/xz/xz.1:2453 ../src/xz/xz.1:2478
++#: ../src/xz/xz.1:2843
++#, no-wrap
++msgid "-3"
++msgstr "-3"
++
++#. type: tbl table
++#: ../src/xz/xz.1:764 ../src/xz/xz.1:765 ../src/xz/xz.1:842 ../src/xz/xz.1:845
++#: ../src/xz/xz.1:846 ../src/xz/xz.1:2453 ../src/xz/xz.1:2454
++#: ../src/xz/xz.1:2456
++#, no-wrap
++msgid "4 MiB"
++msgstr "4 MiB"
++
++#. type: tbl table
++#: ../src/xz/xz.1:764 ../src/xz/xz.1:2843
++#, no-wrap
++msgid "3"
++msgstr "3"
++
++#. type: tbl table
++#: ../src/xz/xz.1:764 ../src/xz/xz.1:769 ../src/xz/xz.1:850
++#: ../src/xz/xz.1:2458 ../src/xz/xz.1:2459 ../src/xz/xz.1:2478
++#, no-wrap
++msgid "32 MiB"
++msgstr "32 MiB"
++
++#. type: tbl table
++#: ../src/xz/xz.1:764 ../src/xz/xz.1:765 ../src/xz/xz.1:845 ../src/xz/xz.1:846
++#, no-wrap
++msgid "5 MiB"
++msgstr "5 MiB"
++
++#. type: tbl table
++#: ../src/xz/xz.1:765 ../src/xz/xz.1:2454 ../src/xz/xz.1:2479
++#: ../src/xz/xz.1:2844
++#, no-wrap
++msgid "-4"
++msgstr "-4"
++
++#. type: tbl table
++#: ../src/xz/xz.1:765 ../src/xz/xz.1:1759 ../src/xz/xz.1:1761
++#: ../src/xz/xz.1:1762 ../src/xz/xz.1:1764 ../src/xz/xz.1:2844
++#, no-wrap
++msgid "4"
++msgstr "4"
++
++#. type: tbl table
++#: ../src/xz/xz.1:765 ../src/xz/xz.1:845 ../src/xz/xz.1:846
++#: ../src/xz/xz.1:2479
++#, no-wrap
++msgid "48 MiB"
++msgstr "48 MiB"
++
++#. type: tbl table
++#: ../src/xz/xz.1:766 ../src/xz/xz.1:2455 ../src/xz/xz.1:2480
++#: ../src/xz/xz.1:2845
++#, no-wrap
++msgid "-5"
++msgstr "-5"
++
++#. type: tbl table
++#: ../src/xz/xz.1:766 ../src/xz/xz.1:767 ../src/xz/xz.1:847 ../src/xz/xz.1:848
++#: ../src/xz/xz.1:2455 ../src/xz/xz.1:2456 ../src/xz/xz.1:2457
++#, no-wrap
++msgid "8 MiB"
++msgstr "8 MiB"
++
++#. type: tbl table
++#: ../src/xz/xz.1:766 ../src/xz/xz.1:2845
++#, no-wrap
++msgid "5"
++msgstr "5"
++
++#. type: tbl table
++#: ../src/xz/xz.1:766 ../src/xz/xz.1:767 ../src/xz/xz.1:847 ../src/xz/xz.1:848
++#: ../src/xz/xz.1:2480 ../src/xz/xz.1:2481
++#, no-wrap
++msgid "94 MiB"
++msgstr "94 MiB"
++
++#. type: tbl table
++#: ../src/xz/xz.1:767 ../src/xz/xz.1:2456 ../src/xz/xz.1:2481
++#: ../src/xz/xz.1:2846
++#, no-wrap
++msgid "-6"
++msgstr "-6"
++
++#. type: tbl table
++#: ../src/xz/xz.1:767 ../src/xz/xz.1:768 ../src/xz/xz.1:769 ../src/xz/xz.1:770
++#: ../src/xz/xz.1:2846
++#, no-wrap
++msgid "6"
++msgstr "6"
++
++#. type: tbl table
++#: ../src/xz/xz.1:768 ../src/xz/xz.1:2457 ../src/xz/xz.1:2482
++#, no-wrap
++msgid "-7"
++msgstr "-7"
++
++#. type: tbl table
++#: ../src/xz/xz.1:768 ../src/xz/xz.1:849 ../src/xz/xz.1:2457
++#: ../src/xz/xz.1:2458 ../src/xz/xz.1:2479
++#, no-wrap
++msgid "16 MiB"
++msgstr "16 MiB"
++
++#. type: tbl table
++#: ../src/xz/xz.1:768 ../src/xz/xz.1:849 ../src/xz/xz.1:2482
++#, no-wrap
++msgid "186 MiB"
++msgstr "186 MiB"
++
++#. type: tbl table
++#: ../src/xz/xz.1:769 ../src/xz/xz.1:2458 ../src/xz/xz.1:2483
++#, no-wrap
++msgid "-8"
++msgstr "-8"
++
++#. type: tbl table
++#: ../src/xz/xz.1:769 ../src/xz/xz.1:850 ../src/xz/xz.1:2483
++#, no-wrap
++msgid "370 MiB"
++msgstr "370 MiB"
++
++#. type: tbl table
++#: ../src/xz/xz.1:769 ../src/xz/xz.1:850
++#, no-wrap
++msgid "33 MiB"
++msgstr "33 MiB"
++
++#. type: tbl table
++#: ../src/xz/xz.1:770 ../src/xz/xz.1:2459 ../src/xz/xz.1:2484
++#, no-wrap
++msgid "-9"
++msgstr "-9"
++
++#. type: tbl table
++#: ../src/xz/xz.1:770 ../src/xz/xz.1:851 ../src/xz/xz.1:2459
++#, no-wrap
++msgid "64 MiB"
++msgstr "64 MiB"
++
++#. type: tbl table
++#: ../src/xz/xz.1:770 ../src/xz/xz.1:851 ../src/xz/xz.1:2484
++#, no-wrap
++msgid "674 MiB"
++msgstr "674 MiB"
++
++#. type: tbl table
++#: ../src/xz/xz.1:770 ../src/xz/xz.1:851
++#, no-wrap
++msgid "65 MiB"
++msgstr "65 MiB"
++
++#. type: Plain text
++#: ../src/xz/xz.1:776
++msgid "Column descriptions:"
++msgstr "Descrições das colunas:"
++
++#. type: Plain text
++#: ../src/xz/xz.1:788
++msgid "DictSize is the LZMA2 dictionary size. It is waste of memory to use a dictionary bigger than the size of the uncompressed file. This is why it is good to avoid using the presets B<-7> ... B<-9> when there's no real need for them. At B<-6> and lower, the amount of memory wasted is usually low enough to not matter."
++msgstr "DicTam é o tamanho do dicionário LZMA2. É desperdício de memória usar um dicionário maior que o tamanho do arquivo descompactado. É por isso que é bom evitar usar as predefinições B<-7> ... B<-9> quando não há real necessidade deles. Em B<-6> e inferior, a quantidade de memória desperdiçada geralmente é baixa o suficiente para não importar."
++
++#. type: Plain text
++#: ../src/xz/xz.1:797
++msgid "CompCPU is a simplified representation of the LZMA2 settings that affect compression speed. The dictionary size affects speed too, so while CompCPU is the same for levels B<-6> ... B<-9>, higher levels still tend to be a little slower. To get even slower and thus possibly better compression, see B<--extreme>."
++msgstr "CompCPU é uma representação simplificada das configurações LZMA2 que afetam a velocidade de compactação. O tamanho do dicionário também afeta a velocidade, portanto, embora o CompCPU seja o mesmo para os níveis B<-6> ... B<-9>, níveis mais altos ainda tendem a ser um pouco mais lentos. Para obter uma compactação ainda mais lenta e possivelmente melhor, consulte B<--extreme>."
++
++#. type: Plain text
++#: ../src/xz/xz.1:805
++msgid "CompMem contains the compressor memory requirements in the single-threaded mode. It may vary slightly between B<xz> versions. Memory requirements of some of the future multithreaded modes may be dramatically higher than that of the single-threaded mode."
++msgstr "CompMem contém os requisitos de memória do compactador no modo de thread única.Pode variar ligeiramente entre as versões B<xz>. Os requisitos de memória de alguns dos futuros modos de várias threads (multithread) podem ser dramaticamente maiores do que os do modo de thread única."
++
++#. type: Plain text
++#: ../src/xz/xz.1:812
++msgid "DecMem contains the decompressor memory requirements. That is, the compression settings determine the memory requirements of the decompressor. The exact decompressor memory usage is slightly more than the LZMA2 dictionary size, but the values in the table have been rounded up to the next full MiB."
++msgstr "DecMem contém os requisitos de memória do descompactador. Ou seja, as configurações de compactação determinam os requisitos de memória do descompactador. O uso exato da memória do descompactador é um pouco maior do que o tamanho do dicionário LZMA2, mas os valores na tabela foram arredondados para o próximo MiB completo."
++
++#. type: TP
++#: ../src/xz/xz.1:813
++#, no-wrap
++msgid "B<-e>, B<--extreme>"
++msgstr "B<-e>, B<--extreme>"
++
++#. type: Plain text
++#: ../src/xz/xz.1:822
++msgid "Use a slower variant of the selected compression preset level (B<-0> ... B<-9>) to hopefully get a little bit better compression ratio, but with bad luck this can also make it worse. Decompressor memory usage is not affected, but compressor memory usage increases a little at preset levels B<-0> ... B<-3>."
++msgstr "Usa uma variante mais lenta do nível de predefinição de compactação selecionado (B<-0> ... B<-9>) para obter uma taxa de compactação um pouco melhor, mas, com azar, isso também pode piorar. O uso da memória do descompressor não é afetado, mas o uso da memória do compactador aumenta um pouco nos níveis de predefinição B<-0> ... B<-3>."
++
++#. type: Plain text
++#: ../src/xz/xz.1:834
++msgid "Since there are two presets with dictionary sizes 4\\ MiB and 8\\ MiB, the presets B<-3e> and B<-5e> use slightly faster settings (lower CompCPU) than B<-4e> and B<-6e>, respectively. That way no two presets are identical."
++msgstr "Como existem duas predefinições com tamanhos de dicionário 4\\ MiB e 8\\ MiB, as predefinições B<-3e> e B<-5e> usam configurações um pouco mais rápidas (CompCPU inferior) do que B<-4e> e B<-6e>, respectivamente. Dessa forma, não há duas predefinições idênticas."
++
++#. type: tbl table
++#: ../src/xz/xz.1:842
++#, no-wrap
++msgid "-0e"
++msgstr "-0e"
++
++#. type: tbl table
++#: ../src/xz/xz.1:842 ../src/xz/xz.1:843 ../src/xz/xz.1:844 ../src/xz/xz.1:846
++#: ../src/xz/xz.1:848 ../src/xz/xz.1:849 ../src/xz/xz.1:850 ../src/xz/xz.1:851
++#: ../src/xz/xz.1:2848
++#, no-wrap
++msgid "8"
++msgstr "8"
++
++#. type: tbl table
++#: ../src/xz/xz.1:843
++#, no-wrap
++msgid "-1e"
++msgstr "-1e"
++
++#. type: tbl table
++#: ../src/xz/xz.1:843
++#, no-wrap
++msgid "13 MiB"
++msgstr "13 MiB"
++
++#. type: tbl table
++#: ../src/xz/xz.1:844
++#, no-wrap
++msgid "-2e"
++msgstr "-2e"
++
++#. type: tbl table
++#: ../src/xz/xz.1:844
++#, no-wrap
++msgid "25 MiB"
++msgstr "25 MiB"
++
++#. type: tbl table
++#: ../src/xz/xz.1:845
++#, no-wrap
++msgid "-3e"
++msgstr "-3e"
++
++#. type: tbl table
++#: ../src/xz/xz.1:845 ../src/xz/xz.1:847 ../src/xz/xz.1:2847
++#, no-wrap
++msgid "7"
++msgstr "7"
++
++#. type: tbl table
++#: ../src/xz/xz.1:846
++#, no-wrap
++msgid "-4e"
++msgstr "-4e"
++
++#. type: tbl table
++#: ../src/xz/xz.1:847 ../src/xz/xz.1:2847
++#, no-wrap
++msgid "-5e"
++msgstr "-5e"
++
++#. type: tbl table
++#: ../src/xz/xz.1:848 ../src/xz/xz.1:2848
++#, no-wrap
++msgid "-6e"
++msgstr "-6e"
++
++#. type: tbl table
++#: ../src/xz/xz.1:849
++#, no-wrap
++msgid "-7e"
++msgstr "-7e"
++
++#. type: tbl table
++#: ../src/xz/xz.1:850
++#, no-wrap
++msgid "-8e"
++msgstr "-8e"
++
++#. type: tbl table
++#: ../src/xz/xz.1:851
++#, no-wrap
++msgid "-9e"
++msgstr "-9e"
++
++#. type: Plain text
++#: ../src/xz/xz.1:863
++msgid "For example, there are a total of four presets that use 8\\ MiB dictionary, whose order from the fastest to the slowest is B<-5>, B<-6>, B<-5e>, and B<-6e>."
++msgstr "Por exemplo, há um total de quatro predefinições que usam o dicionário 8\\ MiB, cuja ordem do mais rápido ao mais lento é B<-5>, B<-6>, B<-5e> e B<-6e>."
++
++#. type: TP
++#: ../src/xz/xz.1:863
++#, no-wrap
++msgid "B<--fast>"
++msgstr "B<--fast>"
++
++#. type: TP
++#: ../src/xz/xz.1:866
++#, no-wrap
++msgid "B<--best>"
++msgstr "B<--best>"
++
++#. type: Plain text
++#: ../src/xz/xz.1:877
++msgid "These are somewhat misleading aliases for B<-0> and B<-9>, respectively. These are provided only for backwards compatibility with LZMA Utils. Avoid using these options."
++msgstr "Esses são apelidos um tanto enganosos para B<-0> e B<-9>, respectivamente. Eles são fornecidos apenas para compatibilidade com versões anteriores do LZMA Utils. Evite usar essas opções."
++
++#. type: TP
++#: ../src/xz/xz.1:877
++#, no-wrap
++msgid "B<--block-size=>I<size>"
++msgstr "B<--block-size=>I<tamanho>"
++
++#. type: Plain text
++#: ../src/xz/xz.1:890
++msgid "When compressing to the B<.xz> format, split the input data into blocks of I<size> bytes. The blocks are compressed independently from each other, which helps with multi-threading and makes limited random-access decompression possible. This option is typically used to override the default block size in multi-threaded mode, but this option can be used in single-threaded mode too."
++msgstr "Ao compactar para o formato B<.xz>, divida os dados de entrada em blocos de I<tamanho> bytes. Os blocos são compactados independentemente uns dos outros, o que ajuda no multi-threading e torna possível a descompactação limitada de acesso aleatório. Essa opção normalmente é usada para substituir o tamanho de bloco padrão no modo multi-thread, mas também pode ser usada em thread única."
++
++#. type: Plain text
++#: ../src/xz/xz.1:908
++msgid "In multi-threaded mode about three times I<size> bytes will be allocated in each thread for buffering input and output. The default I<size> is three times the LZMA2 dictionary size or 1 MiB, whichever is more. Typically a good value is 2\\(en4 times the size of the LZMA2 dictionary or at least 1 MiB. Using I<size> less than the LZMA2 dictionary size is waste of RAM because then the LZMA2 dictionary buffer will never get fully used. The sizes of the blocks are stored in the block headers, which a future version of B<xz> will use for multi-threaded decompression."
++msgstr "No modo multi-thread, cerca de três vezes I<tamanho> bytes serão alocados em cada thread para armazenar em buffer a entrada e a saída. O I<tamanho> padrão é três vezes o tamanho do dicionário LZMA2 ou 1 MiB, o que for maior. Normalmente, um bom valor é 2\\(en4 vezes o tamanho do dicionário LZMA2 ou pelo menos 1 MiB. Usar I<tamanho> menor que o tamanho do dicionário LZMA2 é um desperdício de RAM porque o buffer do dicionário LZMA2 nunca será totalmente usado. Os tamanhos dos blocos são armazenados nos cabeçalhos dos blocos, que uma versão futura do B<xz> usará para descompactação em multi-thread."
++
++#. type: Plain text
++#: ../src/xz/xz.1:917
++msgid "In single-threaded mode no block splitting is done by default. Setting this option doesn't affect memory usage. No size information is stored in block headers, thus files created in single-threaded mode won't be identical to files created in multi-threaded mode. The lack of size information also means that a future version of B<xz> won't be able decompress the files in multi-threaded mode."
++msgstr "No modo de thread única, nenhuma divisão de bloco é feita por padrão. Definir essa opção não afeta o uso da memória. Nenhuma informação de tamanho é armazenada nos cabeçalhos dos blocos, portanto, os arquivos criados no modo de thread única não serão idênticos aos arquivos criados no modo multi-thread. A falta de informações de tamanho também significa que uma versão futura do B<xz> não poderá descompactar os arquivos no modo multi-thread."
++
++#. type: TP
++#: ../src/xz/xz.1:917
++#, no-wrap
++msgid "B<--block-list=>I<sizes>"
++msgstr "B<--block-list=>I<tamanhos>"
++
++#. type: Plain text
++#: ../src/xz/xz.1:923
++msgid "When compressing to the B<.xz> format, start a new block after the given intervals of uncompressed data."
++msgstr "Ao compactar para o formato B<.xz>, inicia um novo bloco após os intervalos fornecidos de dados não compactados."
++
++#. type: Plain text
++#: ../src/xz/xz.1:929
++msgid "The uncompressed I<sizes> of the blocks are specified as a comma-separated list. Omitting a size (two or more consecutive commas) is a shorthand to use the size of the previous block."
++msgstr "Os I<tamanhos> não compactados dos blocos são especificados como uma lista separada por vírgulas. Omitir um tamanho (duas ou mais vírgulas consecutivas) é uma forma abreviada de usar o tamanho do bloco anterior."
++
++#. type: Plain text
++#: ../src/xz/xz.1:939
++msgid "If the input file is bigger than the sum of I<sizes>, the last value in I<sizes> is repeated until the end of the file. A special value of B<0> may be used as the last value to indicate that the rest of the file should be encoded as a single block."
++msgstr "Se o arquivo de entrada for maior que a soma de I<tamanhos>, o último valor em I<tamanhos> é repetido até o final do arquivo. Um valor especial de B<0> pode ser usado como o último valor para indicar que o restante do arquivo deve ser codificado como um único bloco."
++
++#. type: Plain text
++#: ../src/xz/xz.1:954
++msgid "If one specifies I<sizes> that exceed the encoder's block size (either the default value in threaded mode or the value specified with B<--block-size=>I<size>), the encoder will create additional blocks while keeping the boundaries specified in I<sizes>. For example, if one specifies B<--block-size=10MiB> B<--block-list=5MiB,10MiB,8MiB,12MiB,24MiB> and the input file is 80 MiB, one will get 11 blocks: 5, 10, 8, 10, 2, 10, 10, 4, 10, 10, and 1 MiB."
++msgstr "Se alguém especificar I<tamanhos> que excedam o tamanho do bloco do codificador (seja o valor padrão no modo em threads ou o valor especificado com B<--block-size=>I<tamanho>), o codificador criará blocos adicionais enquanto mantém o limites especificados em I<tamanhos>. Por exemplo, se alguém especificar B<--block-size=10MiB> B<--block-list=5MiB,10MiB,8MiB,12MiB,24MiB> e o arquivo de entrada for 80 MiB, obterá 11 blocos: 5, 10, 8, 10, 2, 10, 10, 4, 10, 10 e 1 MiB."
++
++#. type: Plain text
++#: ../src/xz/xz.1:960
++msgid "In multi-threaded mode the sizes of the blocks are stored in the block headers. This isn't done in single-threaded mode, so the encoded output won't be identical to that of the multi-threaded mode."
++msgstr "No modo multi-thread, os tamanhos dos blocos são armazenados nos cabeçalhos dos blocos. Isso não é feito no modo de thread única, portanto, a saída codificada não será idêntica à do modo multi-thread."
++
++#. type: TP
++#: ../src/xz/xz.1:960
++#, no-wrap
++msgid "B<--flush-timeout=>I<timeout>"
++msgstr "B<--flush-timeout=>I<tempo_limite>"
++
++#. type: Plain text
++#: ../src/xz/xz.1:977
++msgid "When compressing, if more than I<timeout> milliseconds (a positive integer) has passed since the previous flush and reading more input would block, all the pending input data is flushed from the encoder and made available in the output stream. This can be useful if B<xz> is used to compress data that is streamed over a network. Small I<timeout> values make the data available at the receiving end with a small delay, but large I<timeout> values give better compression ratio."
++msgstr "Ao compactar, se mais de I<tempo_limite> milissegundos (um número inteiro positivo) se passaram desde a liberação anterior e a leitura de mais entrada seria bloqueada, todos os dados de entrada pendentes serão liberados do codificador e disponibilizados no fluxo de saída. Isso pode ser útil se B<xz> for usado para compactar dados transmitidos por uma rede. Valores I<tempo_limite> pequenos tornam os dados disponíveis na extremidade receptora com um pequeno atraso, mas valores I<tempo_limite> grandes oferecem melhor taxa de compactação."
++
++#. type: Plain text
++#: ../src/xz/xz.1:985
++msgid "This feature is disabled by default. If this option is specified more than once, the last one takes effect. The special I<timeout> value of B<0> can be used to explicitly disable this feature."
++msgstr "Esse recurso está desabilitado por padrão. Se esta opção for especificada mais de uma vez, a última terá efeito. O valor especial I<tempo_limite> de B<0> pode ser usado para desabilitar explicitamente esse recurso."
++
++#. type: Plain text
++#: ../src/xz/xz.1:987
++msgid "This feature is not available on non-POSIX systems."
++msgstr "Este recurso não está disponível em sistemas não-POSIX."
++
++#. FIXME
++#. type: Plain text
++#: ../src/xz/xz.1:995
++msgid "B<This feature is still experimental.> Currently B<xz> is unsuitable for decompressing the stream in real time due to how B<xz> does buffering."
++msgstr "B<Este recurso ainda é experimental.> Atualmente, B<xz> não é adequado para descompactar o fluxo em tempo real devido à forma como B<xz> faz o buffer."
++
++#. type: TP
++#: ../src/xz/xz.1:995
++#, no-wrap
++msgid "B<--memlimit-compress=>I<limit>"
++msgstr "B<--memlimit-compress=>I<limite>"
++
++#. type: Plain text
++#: ../src/xz/xz.1:1000
++msgid "Set a memory usage limit for compression. If this option is specified multiple times, the last one takes effect."
++msgstr "Define um limite de uso de memória para compactação. Se esta opção for especificada várias vezes, a última entrará em vigor."
++
++#. type: Plain text
++#: ../src/xz/xz.1:1013
++msgid "If the compression settings exceed the I<limit>, B<xz> will attempt to adjust the settings downwards so that the limit is no longer exceeded and display a notice that automatic adjustment was done. The adjustments are done in this order: reducing the number of threads, switching to single-threaded mode if even one thread in multi-threaded mode exceeds the I<limit>, and finally reducing the LZMA2 dictionary size."
++msgstr "Se as configurações de compactação excederem o I<limite>, B<xz> tentará ajustar as configurações para baixo para que o limite não seja mais excedido e exibirá um aviso de que o ajuste automático foi feito. Os ajustes são feitos nesta ordem: reduzindo o número de encadeamentos, alternando para o modo sigle-thread se até mesmo uma thread no modo multi-thread exceder o I<limite> e, finalmente, reduzindo o tamanho do dicionário LZMA2."
++
++#. type: Plain text
++#: ../src/xz/xz.1:1021
++msgid "When compressing with B<--format=raw> or if B<--no-adjust> has been specified, only the number of threads may be reduced since it can be done without affecting the compressed output."
++msgstr "Ao compactar com B<--format=raw> ou se B<--no-adjust> tiver sido especificado, apenas o número de threads pode ser reduzido, pois isso pode ser feito sem afetar a saída compactada."
++
++#. type: Plain text
++#: ../src/xz/xz.1:1028
++msgid "If the I<limit> cannot be met even with the adjustments described above, an error is displayed and B<xz> will exit with exit status 1."
++msgstr "Se o I<limite> não puder ser alcançado mesmo com os ajustes descritos acima, um erro será exibido e B<xz> sairá com status de saída 1."
++
++#. type: Plain text
++#: ../src/xz/xz.1:1032
++msgid "The I<limit> can be specified in multiple ways:"
++msgstr "O I<limite> pode ser especificado de várias maneiras:"
++
++#. type: Plain text
++#: ../src/xz/xz.1:1042
++msgid "The I<limit> can be an absolute value in bytes. Using an integer suffix like B<MiB> can be useful. Example: B<--memlimit-compress=80MiB>"
++msgstr "O I<limite> pode ser um valor absoluto em bytes. Usar um sufixo inteiro como B<MiB> pode ser útil. Exemplo: B<--memlimit-compress=80MiB>"
++
++#. type: Plain text
++#: ../src/xz/xz.1:1054
++msgid "The I<limit> can be specified as a percentage of total physical memory (RAM). This can be useful especially when setting the B<XZ_DEFAULTS> environment variable in a shell initialization script that is shared between different computers. That way the limit is automatically bigger on systems with more memory. Example: B<--memlimit-compress=70%>"
++msgstr "O I<limite> pode ser especificado como uma porcentagem da memória física total (RAM). Isso pode ser útil especialmente ao definir a variável de ambiente B<XZ_DEFAULTS> em um script de inicialização de shell que é compartilhado entre diferentes computadores. Dessa forma o limite é automaticamente maior em sistemas com mais memória. Exemplo: B<--memlimit-compress=70%>"
++
++#. type: Plain text
++#: ../src/xz/xz.1:1064
++msgid "The I<limit> can be reset back to its default value by setting it to B<0>. This is currently equivalent to setting the I<limit> to B<max> (no memory usage limit)."
++msgstr "O I<limite> pode ser redefinido para seu valor padrão, definindo-o como B<0>. Atualmente, isso equivale a definir I<limite> como B<max> (sem limite de uso de memória)."
++
++#. type: Plain text
++#: ../src/xz/xz.1:1088
++msgid "For 32-bit B<xz> there is a special case: if the I<limit> would be over B<4020\\ MiB>, the I<limit> is set to B<4020\\ MiB>. On MIPS32 B<2000\\ MiB> is used instead. (The values B<0> and B<max> aren't affected by this. A similar feature doesn't exist for decompression.) This can be helpful when a 32-bit executable has access to 4\\ GiB address space (2 GiB on MIPS32) while hopefully doing no harm in other situations."
++msgstr "Para B<xz> de 32 bits, há um caso especial: se o I<limite> estiver acima de B<4020\\ MiB>, o I<limite> é definido como B<4020\\ MiB>. No MIPS32 B<2000\\ MiB> é usado em seu lugar. (Os valores B<0> e B<max> não são afetados por isso. Um recurso semelhante não existe para descompactação.) Isso pode ser útil quando um executável de 32 bits tem acesso a espaço de endereço de 4\\ GiB (2 GiB no MIPS32) enquanto espero não causar danos em outras situações."
++
++#. type: Plain text
++#: ../src/xz/xz.1:1091
++msgid "See also the section B<Memory usage>."
++msgstr "Consulte também a seção B<Uso de memória>."
++
++#. type: TP
++#: ../src/xz/xz.1:1091
++#, no-wrap
++msgid "B<--memlimit-decompress=>I<limit>"
++msgstr "B<--memlimit-decompress=>I<limite>"
++
++#. type: Plain text
++#: ../src/xz/xz.1:1105
++msgid "Set a memory usage limit for decompression. This also affects the B<--list> mode. If the operation is not possible without exceeding the I<limit>, B<xz> will display an error and decompressing the file will fail. See B<--memlimit-compress=>I<limit> for possible ways to specify the I<limit>."
++msgstr "Define um limite de uso de memória para descompactação. Isso também afeta o modo B<--list>. Se a operação não for possível sem exceder o I<limite>, B<xz> exibirá um erro e a descompactação do arquivo falhará. Consulte B<--memlimit-compress=>I<limite> para possíveis maneiras de especificar o I<limite>."
++
++#. type: TP
++#: ../src/xz/xz.1:1105
++#, no-wrap
++msgid "B<--memlimit-mt-decompress=>I<limit>"
++msgstr "B<--memlimit-mt-decompress=>I<limite>"
++
++#. type: Plain text
++#: ../src/xz/xz.1:1127
++msgid "Set a memory usage limit for multi-threaded decompression. This can only affect the number of threads; this will never make B<xz> refuse to decompress a file. If I<limit> is too low to allow any multi-threading, the I<limit> is ignored and B<xz> will continue in single-threaded mode. Note that if also B<--memlimit-decompress> is used, it will always apply to both single-threaded and multi-threaded modes, and so the effective I<limit> for multi-threading will never be higher than the limit set with B<--memlimit-decompress>."
++msgstr "Define um limite de uso de memória para descompactação multi-thread. Isso pode afetar apenas o número de threads; isso nunca fará com que B<xz> se recuse a descompactar um arquivo. Se I<limite> for muito baixo para permitir qualquer multi-thread, o I<limite> será ignorado e B<xz> continuará no modo de thread única. Observe que se B<--memlimit-decompress> também for usado, ele sempre se aplicará aos modos de thread única e multi-thread e, portanto, o I<limite> efetivo para multi-threading nunca será maior que o limite definido com B<--memlimit-decompress>."
++
++#. type: Plain text
++#: ../src/xz/xz.1:1134
++msgid "In contrast to the other memory usage limit options, B<--memlimit-mt-decompress=>I<limit> has a system-specific default I<limit>. B<xz --info-memory> can be used to see the current value."
++msgstr "Em contraste com as outras opções de limite de uso de memória, B<--memlimit-mt-decompress=>I<limite> tem um padrão I<limite> específico do sistema. B<xz --info-memory> pode ser usado para ver o valor atual."
++
++#. type: Plain text
++#: ../src/xz/xz.1:1150
++msgid "This option and its default value exist because without any limit the threaded decompressor could end up allocating an insane amount of memory with some input files. If the default I<limit> is too low on your system, feel free to increase the I<limit> but never set it to a value larger than the amount of usable RAM as with appropriate input files B<xz> will attempt to use that amount of memory even with a low number of threads. Running out of memory or swapping will not improve decompression performance."
++msgstr "Esta opção e seu valor padrão existem porque, sem qualquer limite, o descompactador usando threads pode acabar alocando uma quantidade insana de memória com alguns arquivos de entrada. Se o I<limite> padrão for muito baixo em seu sistema, sinta-se à vontade para aumentar o I<limite>, mas nunca defina-o para um valor maior que a quantidade de RAM utilizável, pois com os arquivos de entrada apropriados B<xz> tentará usar essa quantidade de memória mesmo com um baixo número de threads. Ficar sem memória ou trocar não melhorará o desempenho da descompactação."
++
++#. type: Plain text
++#: ../src/xz/xz.1:1162
++msgid "See B<--memlimit-compress=>I<limit> for possible ways to specify the I<limit>. Setting I<limit> to B<0> resets the I<limit> to the default system-specific value."
++msgstr "Consulte B<--memlimit-compress=>I<limite> para possíveis maneiras de especificar o I<limite>. Definir I<limite> como B<0> redefine I<limite> para o valor padrão específico do sistema."
++
++#. type: TP
++#: ../src/xz/xz.1:1163
++#, no-wrap
++msgid "B<-M> I<limit>, B<--memlimit=>I<limit>, B<--memory=>I<limit>"
++msgstr "B<-M> I<limite>, B<--memlimit=>I<limite>, B<--memory=>I<limite>"
++
++#. type: Plain text
++#: ../src/xz/xz.1:1169
++msgid "This is equivalent to specifying B<--memlimit-compress=>I<limit> B<--memlimit-decompress=>I<limit> B<--memlimit-mt-decompress=>I<limit>."
++msgstr "Isso é equivalente a especificar B<--memlimit-compress=>I<limite> B<--memlimit-decompress=>I<limite> B<--memlimit-mt-decompress=>I<limite>."
++
++#. type: TP
++#: ../src/xz/xz.1:1169
++#, no-wrap
++msgid "B<--no-adjust>"
++msgstr "B<--no-adjust>"
++
++#. type: Plain text
++#: ../src/xz/xz.1:1179
++msgid "Display an error and exit if the memory usage limit cannot be met without adjusting settings that affect the compressed output. That is, this prevents B<xz> from switching the encoder from multi-threaded mode to single-threaded mode and from reducing the LZMA2 dictionary size. Even when this option is used the number of threads may be reduced to meet the memory usage limit as that won't affect the compressed output."
++msgstr "Exibe um erro e saia se o limite de uso de memória não puder ser atendido sem ajustar as configurações que afetam a saída compactada. Ou seja, isso evita que B<xz> alterne o codificador do modo multi-thread para o modo encadeado único e reduza o tamanho do dicionário LZMA2. Mesmo quando esta opção é usada, o número de threads pode ser reduzido para atender ao limite de uso de memória, pois isso não afetará a saída compactada."
++
++#. type: Plain text
++#: ../src/xz/xz.1:1182
++msgid "Automatic adjusting is always disabled when creating raw streams (B<--format=raw>)."
++msgstr "O ajuste automático é sempre desativado ao criar fluxos brutos (B<--format=raw>)."
++
++#. type: TP
++#: ../src/xz/xz.1:1182
++#, no-wrap
++msgid "B<-T> I<threads>, B<--threads=>I<threads>"
++msgstr "B<-T> I<threads>, B<--threads=>I<threads>"
++
++#. type: Plain text
++#: ../src/xz/xz.1:1197
++msgid "Specify the number of worker threads to use. Setting I<threads> to a special value B<0> makes B<xz> use up to as many threads as the processor(s) on the system support. The actual number of threads can be fewer than I<threads> if the input file is not big enough for threading with the given settings or if using more threads would exceed the memory usage limit."
++msgstr "Especifica o número de threads de trabalho a serem usados. Definir I<threads> para um valor especial B<0> faz com que B<xz> use tantos threads quanto o(s) processador(es) no suporte do sistema. O número real de encadeamentos pode ser menor que I<threads> se o arquivo de entrada não for grande o suficiente para subdividir em threads com as configurações fornecidas ou se o uso de mais threads exceder o limite de uso de memória."
++
++#. type: Plain text
++#: ../src/xz/xz.1:1216
++msgid "The single-threaded and multi-threaded compressors produce different output. Single-threaded compressor will give the smallest file size but only the output from the multi-threaded compressor can be decompressed using multiple threads. Setting I<threads> to B<1> will use the single-threaded mode. Setting I<threads> to any other value, including B<0>, will use the multi-threaded compressor even if the system supports only one hardware thread. (B<xz> 5.2.x used single-threaded mode in this situation.)"
++msgstr "Os compactadores usando thread única e várias threads produzem saídas diferentes. O compactador de thread única fornecerá o menor tamanho de arquivo, mas apenas a saída do compactador de várias threads pode ser descompactada usando várias threads. Definir I<threads> como B<1> usará o modo de thread única. Definir I<threads> para qualquer outro valor, incluindo B<0>, usará o compressor de várias threads, mesmo que o sistema tenha suporte a apenas uma thread de hardware. (B<xz> 5.2.x usou o modo de thread única nesta situação.)"
++
++#. type: Plain text
++#: ../src/xz/xz.1:1235
++msgid "To use multi-threaded mode with only one thread, set I<threads> to B<+1>. The B<+> prefix has no effect with values other than B<1>. A memory usage limit can still make B<xz> switch to single-threaded mode unless B<--no-adjust> is used. Support for the B<+> prefix was added in B<xz> 5.4.0."
++msgstr "Para usar o modo de várias threads com apenas uma thread, defina I<threads> como B<+1>. O prefixo B<+> não tem efeito com valores diferentes de B<1>. Um limite de uso de memória ainda pode fazer B<xz> alternar para o modo de thread única, a menos que B<--no-adjust> seja usado. O suporte para o prefixo B<+> foi adicionado no B<xz> 5.4.0."
++
++#. type: Plain text
++#: ../src/xz/xz.1:1250
++msgid "If an automatic number of threads has been requested and no memory usage limit has been specified, then a system-specific default soft limit will be used to possibly limit the number of threads. It is a soft limit in sense that it is ignored if the number of threads becomes one, thus a soft limit will never stop B<xz> from compressing or decompressing. This default soft limit will not make B<xz> switch from multi-threaded mode to single-threaded mode. The active limits can be seen with B<xz --info-memory>."
++msgstr "Se um número automático de threads foi solicitado e nenhum limite de uso de memória foi especificado, um limite flexível padrão específico do sistema será usado para possivelmente limitar o número de threads. É um limite flexível no sentido de que é ignorado se o número de threads se tornar um, portanto, um limite flexível nunca impedirá B<xz> de compactar ou descompactar. Este limite flexível padrão não fará com que B<xz> alterne do modo de várias threads para o modo de thread única. Os limites ativos podem ser vistos com B<xz --info-memory>."
++
++#. type: Plain text
++#: ../src/xz/xz.1:1257
++msgid "Currently the only threading method is to split the input into blocks and compress them independently from each other. The default block size depends on the compression level and can be overridden with the B<--block-size=>I<size> option."
++msgstr "Atualmente, o único método de threading é dividir a entrada em blocos e comprimi-los independentemente um do outro. O tamanho padrão do bloco depende do nível de compactação e pode ser substituído com a opção B<--block-size=>I<tamanho>."
++
++#. type: Plain text
++#: ../src/xz/xz.1:1265
++msgid "Threaded decompression only works on files that contain multiple blocks with size information in block headers. All large enough files compressed in multi-threaded mode meet this condition, but files compressed in single-threaded mode don't even if B<--block-size=>I<size> has been used."
++msgstr "A descompactação em threads funciona apenas em arquivos que contêm vários blocos com informações de tamanho nos cabeçalhos dos blocos. Todos os arquivos grandes o suficiente compactados no modo de várias thread atendem a essa condição, mas os arquivos compactados no modo de thread única não atendem, mesmo se B<--block-size=>I<tamanho> tiver sido usado."
++
++#. type: SS
++#: ../src/xz/xz.1:1266 ../src/xz/xz.1:2819
++#, no-wrap
++msgid "Custom compressor filter chains"
++msgstr "Cadeias de filtro de compressor personalizadas"
++
++#. type: Plain text
++#: ../src/xz/xz.1:1282
++msgid "A custom filter chain allows specifying the compression settings in detail instead of relying on the settings associated to the presets. When a custom filter chain is specified, preset options (B<-0> \\&...\\& B<-9> and B<--extreme>) earlier on the command line are forgotten. If a preset option is specified after one or more custom filter chain options, the new preset takes effect and the custom filter chain options specified earlier are forgotten."
++msgstr "Uma cadeia de filtro personalizada permite especificar as configurações de compactação em detalhes, em vez de confiar nas configurações associadas às predefinições. Quando uma cadeia de filtro personalizada é especificada, as opções predefinidas (B<-0> \\&...\\& B<-9> e B<--extreme>) anteriores na linha de comando são esquecidas. Se uma opção predefinida for especificada após uma ou mais opções de cadeia de filtros personalizados, a nova predefinição entrará em vigor e as opções de cadeia de filtros personalizados especificadas anteriormente serão esquecidas."
++
++#. type: Plain text
++#: ../src/xz/xz.1:1289
++msgid "A filter chain is comparable to piping on the command line. When compressing, the uncompressed input goes to the first filter, whose output goes to the next filter (if any). The output of the last filter gets written to the compressed file. The maximum number of filters in the chain is four, but typically a filter chain has only one or two filters."
++msgstr "Uma cadeia de filtro é comparável à tubulação na linha de comando. Ao compactar, a entrada descompactada vai para o primeiro filtro, cuja saída vai para o próximo filtro (se houver). A saída do último filtro é gravada no arquivo compactado. O número máximo de filtros na cadeia é quatro, mas normalmente uma cadeia de filtros tem apenas um ou dois filtros."
++
++#. type: Plain text
++#: ../src/xz/xz.1:1297
++msgid "Many filters have limitations on where they can be in the filter chain: some filters can work only as the last filter in the chain, some only as a non-last filter, and some work in any position in the chain. Depending on the filter, this limitation is either inherent to the filter design or exists to prevent security issues."
++msgstr "Muitos filtros têm limitações sobre onde podem estar na cadeia de filtros: alguns filtros podem funcionar apenas como o último filtro na cadeia, alguns apenas como filtro não-último e alguns funcionam em qualquer posição na cadeia. Dependendo do filtro, essa limitação é inerente ao projeto do filtro ou existe para evitar problemas de segurança."
++
++#. type: Plain text
++#: ../src/xz/xz.1:1305
++msgid "A custom filter chain is specified by using one or more filter options in the order they are wanted in the filter chain. That is, the order of filter options is significant! When decoding raw streams (B<--format=raw>), the filter chain is specified in the same order as it was specified when compressing."
++msgstr "Uma cadeia de filtro personalizada é especificada usando uma ou mais opções de filtro na ordem desejada na cadeia de filtro. Ou seja, a ordem das opções de filtro é significativa! Ao decodificar fluxos brutos (B<--format=raw>), a cadeia de filtros é especificada na mesma ordem em que foi especificada durante a compactação."
++
++#. type: Plain text
++#: ../src/xz/xz.1:1314
++msgid "Filters take filter-specific I<options> as a comma-separated list. Extra commas in I<options> are ignored. Every option has a default value, so you need to specify only those you want to change."
++msgstr "Os filtros usam I<opções> específicas do filtro como uma lista separada por vírgulas. As vírgulas extras em I<opções> são ignoradas. Cada opção tem um valor padrão, portanto, você precisa especificar apenas aquelas que deseja alterar."
++
++#. type: Plain text
++#: ../src/xz/xz.1:1323
++msgid "To see the whole filter chain and I<options>, use B<xz -vv> (that is, use B<--verbose> twice). This works also for viewing the filter chain options used by presets."
++msgstr "Para ver toda a cadeia de filtros e I<opções>, use B<xz -vv> (isto é, use B<--verbose> duas vezes). Isso também funciona para visualizar as opções da cadeia de filtros usadas pelas predefinições."
++
++#. type: TP
++#: ../src/xz/xz.1:1323
++#, no-wrap
++msgid "B<--lzma1>[B<=>I<options>]"
++msgstr "B<--lzma1>[B<=>I<opções>]"
++
++#. type: TP
++#: ../src/xz/xz.1:1326
++#, no-wrap
++msgid "B<--lzma2>[B<=>I<options>]"
++msgstr "B<--lzma2>[B<=>I<opções>]"
++
++#. type: Plain text
++#: ../src/xz/xz.1:1331
++msgid "Add LZMA1 or LZMA2 filter to the filter chain. These filters can be used only as the last filter in the chain."
++msgstr "Adiciona o filtro LZMA1 ou LZMA2 à cadeia de filtros. Esses filtros podem ser usados apenas como o último filtro na cadeia."
++
++#. type: Plain text
++#: ../src/xz/xz.1:1343
++msgid "LZMA1 is a legacy filter, which is supported almost solely due to the legacy B<.lzma> file format, which supports only LZMA1. LZMA2 is an updated version of LZMA1 to fix some practical issues of LZMA1. The B<.xz> format uses LZMA2 and doesn't support LZMA1 at all. Compression speed and ratios of LZMA1 and LZMA2 are practically the same."
++msgstr "LZMA1 é um filtro legado, que é suportado quase exclusivamente devido ao formato de arquivo legado B<.lzma>, que suporta apenas LZMA1. LZMA2 é uma versão atualizada do LZMA1 para corrigir alguns problemas práticos do LZMA1. O formato B<.xz> usa LZMA2 e não suporta LZMA1. A velocidade de compactação e as proporções de LZMA1 e LZMA2 são praticamente as mesmas."
++
++#. type: Plain text
++#: ../src/xz/xz.1:1346
++msgid "LZMA1 and LZMA2 share the same set of I<options>:"
++msgstr "LZMA1 e LZMA2 compartilham o mesmo conjunto de I<opções>:"
++
++#. type: TP
++#: ../src/xz/xz.1:1347
++#, no-wrap
++msgid "B<preset=>I<preset>"
++msgstr "B<preset=>I<predefinição>"
++
++#. type: Plain text
++#: ../src/xz/xz.1:1374
++msgid "Reset all LZMA1 or LZMA2 I<options> to I<preset>. I<Preset> consist of an integer, which may be followed by single-letter preset modifiers. The integer can be from B<0> to B<9>, matching the command line options B<-0> \\&...\\& B<-9>. The only supported modifier is currently B<e>, which matches B<--extreme>. If no B<preset> is specified, the default values of LZMA1 or LZMA2 I<options> are taken from the preset B<6>."
++msgstr "Redefine todas as I<opções> de LZMA1 ou LZMA2 para I<predefinição>. I<Predefinição> consiste em um número inteiro, que pode ser seguido por modificadores de predefinição de uma única letra. O inteiro pode ser de B<0> a B<9>, correspondendo às opções de linha de comando B<-0> \\&...\\& B<-9>. O único modificador suportado atualmente é B<e>, que corresponde a B<--extreme>. Se nenhum B<preset> for especificado, os valores padrão das I<opções> LZMA1 ou LZMA2 serão obtidos da predefinição B<6>."
++
++#. type: TP
++#: ../src/xz/xz.1:1374
++#, no-wrap
++msgid "B<dict=>I<size>"
++msgstr "B<dict=>I<tamanho>"
++
++#. type: Plain text
++#: ../src/xz/xz.1:1389
++msgid "Dictionary (history buffer) I<size> indicates how many bytes of the recently processed uncompressed data is kept in memory. The algorithm tries to find repeating byte sequences (matches) in the uncompressed data, and replace them with references to the data currently in the dictionary. The bigger the dictionary, the higher is the chance to find a match. Thus, increasing dictionary I<size> usually improves compression ratio, but a dictionary bigger than the uncompressed file is waste of memory."
++msgstr "O I<tamanho> do dicionário (buffer de histórico) indica quantos bytes dos dados não compactados processados recentemente são mantidos na memória. O algoritmo tenta encontrar sequências de bytes repetidos (correspondências) nos dados não compactados e substituí-los por referências aos dados atualmente no dicionário. Quanto maior o dicionário, maior a chance de encontrar uma correspondência. Portanto, aumentar o dicionário I<tamanho> geralmente melhora a taxa de compactação, mas um dicionário maior que o arquivo não compactado é um desperdício de memória."
++
++#. type: Plain text
++#: ../src/xz/xz.1:1398
++msgid "Typical dictionary I<size> is from 64\\ KiB to 64\\ MiB. The minimum is 4\\ KiB. The maximum for compression is currently 1.5\\ GiB (1536\\ MiB). The decompressor already supports dictionaries up to one byte less than 4\\ GiB, which is the maximum for the LZMA1 and LZMA2 stream formats."
++msgstr "Um I<tamanho> de dicionário típico é de 64\\ KiB a 64\\ MiB. O mínimo é 4\\ KiB. O máximo para compactação é atualmente 1,5\\ GiB (1536\\ MiB). O descompactador já oferece suporte a dicionários de até um byte a menos de 4\\ GiB, que é o máximo para os formatos de fluxo LZMA1 e LZMA2."
++
++#. type: Plain text
++#: ../src/xz/xz.1:1425
++msgid "Dictionary I<size> and match finder (I<mf>) together determine the memory usage of the LZMA1 or LZMA2 encoder. The same (or bigger) dictionary I<size> is required for decompressing that was used when compressing, thus the memory usage of the decoder is determined by the dictionary size used when compressing. The B<.xz> headers store the dictionary I<size> either as 2^I<n> or 2^I<n> + 2^(I<n>-1), so these I<sizes> are somewhat preferred for compression. Other I<sizes> will get rounded up when stored in the B<.xz> headers."
++msgstr "O I<tamanho> de dicionário e o localizador de correspondência (I<mf>) juntos determinam o uso de memória do codificador LZMA1 ou LZMA2. O mesmo (ou maior) I<tamanho> de dicionário é necessário para descompactar que foi usado durante a compactação, portanto, o uso de memória do decodificador é determinado pelo tamanho do dicionário usado durante a compactação. Os cabeçalhos B<.xz> armazenam o I<tamanho> de dicionário como 2^I<n> ou 2^I<n> + 2^(I<n>-1), então esses I<tamanhos> são um tanto preferidos para compactação. Outros I<tamanhos> serão arredondados quando armazenados nos cabeçalhos B<.xz>."
++
++#. type: TP
++#: ../src/xz/xz.1:1425
++#, no-wrap
++msgid "B<lc=>I<lc>"
++msgstr "B<lc=>I<lc>"
++
++#. type: Plain text
++#: ../src/xz/xz.1:1434
++msgid "Specify the number of literal context bits. The minimum is 0 and the maximum is 4; the default is 3. In addition, the sum of I<lc> and I<lp> must not exceed 4."
++msgstr "Especifica o número de bits de contexto literais. O mínimo é 0 e o máximo é 4; o padrão é 3. Além disso, a soma de I<lc> e I<lp> não deve exceder 4."
++
++#. type: Plain text
++#: ../src/xz/xz.1:1439
++msgid "All bytes that cannot be encoded as matches are encoded as literals. That is, literals are simply 8-bit bytes that are encoded one at a time."
++msgstr "Todos os bytes que não podem ser codificados como correspondências são codificados como literais. Ou seja, literais são simplesmente bytes de 8 bits que são codificados um de cada vez."
++
++#. type: Plain text
++#: ../src/xz/xz.1:1453
++msgid "The literal coding makes an assumption that the highest I<lc> bits of the previous uncompressed byte correlate with the next byte. For example, in typical English text, an upper-case letter is often followed by a lower-case letter, and a lower-case letter is usually followed by another lower-case letter. In the US-ASCII character set, the highest three bits are 010 for upper-case letters and 011 for lower-case letters. When I<lc> is at least 3, the literal coding can take advantage of this property in the uncompressed data."
++msgstr "A codificação literal assume que os bits I<lc> mais altos do byte não compactado anterior se correlacionam com o próximo byte. Por exemplo, em um texto típico em inglês, uma letra maiúscula geralmente é seguida por uma letra minúscula, e uma letra minúscula geralmente é seguida por outra letra minúscula. No conjunto de caracteres US-ASCII, os três bits mais altos são 010 para letras maiúsculas e 011 para letras minúsculas. Quando I<lc> é pelo menos 3, a codificação literal pode aproveitar essa propriedade nos dados não compactados."
++
++#. type: Plain text
++#: ../src/xz/xz.1:1462
++msgid "The default value (3) is usually good. If you want maximum compression, test B<lc=4>. Sometimes it helps a little, and sometimes it makes compression worse. If it makes it worse, test B<lc=2> too."
++msgstr "O valor padrão (3) geralmente é bom. Se você deseja compactação máxima, experimente B<lc=4>. Às vezes ajuda um pouco, às vezes piora a compactação. Se piorar, experimente B<lc=2> também."
++
++#. type: TP
++#: ../src/xz/xz.1:1462
++#, no-wrap
++msgid "B<lp=>I<lp>"
++msgstr "B<lp=>I<lp>"
++
++#. type: Plain text
++#: ../src/xz/xz.1:1466
++msgid "Specify the number of literal position bits. The minimum is 0 and the maximum is 4; the default is 0."
++msgstr "Especifica o número de bits de posição literal. O mínimo é 0 e o máximo é 4; o padrão é 0."
++
++#. type: Plain text
++#: ../src/xz/xz.1:1473
++msgid "I<Lp> affects what kind of alignment in the uncompressed data is assumed when encoding literals. See I<pb> below for more information about alignment."
++msgstr "I<Lp> afeta que tipo de alinhamento nos dados não compactados é assumido ao codificar literais. Consulte I<pb> abaixo para obter mais informações sobre alinhamento."
++
++#. type: TP
++#: ../src/xz/xz.1:1473
++#, no-wrap
++msgid "B<pb=>I<pb>"
++msgstr "B<pb=>I<pb>"
++
++#. type: Plain text
++#: ../src/xz/xz.1:1477
++msgid "Specify the number of position bits. The minimum is 0 and the maximum is 4; the default is 2."
++msgstr "Especifica o número de bits de posição. O mínimo é 0 e o máximo é 4; o padrão é 2."
++
++#. type: Plain text
++#: ../src/xz/xz.1:1484
++msgid "I<Pb> affects what kind of alignment in the uncompressed data is assumed in general. The default means four-byte alignment (2^I<pb>=2^2=4), which is often a good choice when there's no better guess."
++msgstr "I<Pb> afeta que tipo de alinhamento nos dados não compactados é assumido em geral. O padrão significa alinhamento de quatro bytes (2^I<pb>=2^2=4), que geralmente é uma boa escolha quando não há melhor estimativa."
++
++#. type: Plain text
++#: ../src/xz/xz.1:1498
++msgid "When the alignment is known, setting I<pb> accordingly may reduce the file size a little. For example, with text files having one-byte alignment (US-ASCII, ISO-8859-*, UTF-8), setting B<pb=0> can improve compression slightly. For UTF-16 text, B<pb=1> is a good choice. If the alignment is an odd number like 3 bytes, B<pb=0> might be the best choice."
++msgstr "Quando o alinhamento é conhecido, definir I<pb> adequadamente pode reduzir um pouco o tamanho do arquivo. Por exemplo, com arquivos de texto com alinhamento de um byte (US-ASCII, ISO-8859-*, UTF-8), a configuração B<pb=0> pode melhorar um pouco a compactação. Para texto UTF-16, B<pb=1> é uma boa escolha. Se o alinhamento for um número ímpar como 3 bytes, B<pb=0> pode ser a melhor escolha."
++
++#. type: Plain text
++#: ../src/xz/xz.1:1506
++msgid "Even though the assumed alignment can be adjusted with I<pb> and I<lp>, LZMA1 and LZMA2 still slightly favor 16-byte alignment. It might be worth taking into account when designing file formats that are likely to be often compressed with LZMA1 or LZMA2."
++msgstr "Embora o alinhamento assumido possa ser ajustado com I<pb> e I<lp>, LZMA1 e LZMA2 ainda favorecem ligeiramente o alinhamento de 16 bytes. Pode valer a pena levar em consideração ao projetar formatos de arquivo que provavelmente serão compactados com LZMA1 ou LZMA2."
++
++#. type: TP
++#: ../src/xz/xz.1:1506
++#, no-wrap
++msgid "B<mf=>I<mf>"
++msgstr "B<mf=>I<mf>"
++
++#. type: Plain text
++#: ../src/xz/xz.1:1521
++msgid "Match finder has a major effect on encoder speed, memory usage, and compression ratio. Usually Hash Chain match finders are faster than Binary Tree match finders. The default depends on the I<preset>: 0 uses B<hc3>, 1\\(en3 use B<hc4>, and the rest use B<bt4>."
++msgstr "O localizador de correspondência tem um efeito importante na velocidade do codificador, uso de memória e taxa de compactação. Normalmente, os localizadores de correspondência de Hash Chain são mais rápidos do que os localizadores de correspondência de árvore binária. O padrão depende do I<predefinição>: 0 usa B<hc3>, 1\\(en3 usa B<hc4> e o resto usa B<bt4>."
++
++#. type: Plain text
++#: ../src/xz/xz.1:1527
++msgid "The following match finders are supported. The memory usage formulas below are rough approximations, which are closest to the reality when I<dict> is a power of two."
++msgstr "Os seguintes localizadores de correspondência são suportados. As fórmulas de uso de memória abaixo são aproximações aproximadas, que estão mais próximas da realidade quando I<dict> é uma potência de dois."
++
++#. type: TP
++#: ../src/xz/xz.1:1528
++#, no-wrap
++msgid "B<hc3>"
++msgstr "B<hc3>"
++
++#. type: Plain text
++#: ../src/xz/xz.1:1531
++msgid "Hash Chain with 2- and 3-byte hashing"
++msgstr "Cadeia de hashs com hashing de 2 e 3 bytes"
++
++#. type: Plain text
++#: ../src/xz/xz.1:1535 ../src/xz/xz.1:1584
++msgid "Minimum value for I<nice>: 3"
++msgstr "Valor mínimo para I<nice>: 3"
++
++#. type: Plain text
++#: ../src/xz/xz.1:1537 ../src/xz/xz.1:1556 ../src/xz/xz.1:1586
++#: ../src/xz/xz.1:1605
++msgid "Memory usage:"
++msgstr "Uso de memória:"
++
++#. type: Plain text
++#: ../src/xz/xz.1:1542
++msgid "I<dict> * 7.5 (if I<dict> E<lt>= 16 MiB);"
++msgstr "I<dict> * 7.5 (if I<dict> E<lt>= 16 MiB);"
++
++#. type: Plain text
++#: ../src/xz/xz.1:1547
++msgid "I<dict> * 5.5 + 64 MiB (if I<dict> E<gt> 16 MiB)"
++msgstr "I<dict> * 5.5 + 64 MiB (if I<dict> E<gt> 16 MiB)"
++
++#. type: TP
++#: ../src/xz/xz.1:1547
++#, no-wrap
++msgid "B<hc4>"
++msgstr "B<hc4>"
++
++#. type: Plain text
++#: ../src/xz/xz.1:1550
++msgid "Hash Chain with 2-, 3-, and 4-byte hashing"
++msgstr "Cadeia de hashs com hashing de 2, 3 e 4 bytes"
++
++#. type: Plain text
++#: ../src/xz/xz.1:1554 ../src/xz/xz.1:1603
++msgid "Minimum value for I<nice>: 4"
++msgstr "Valor mínimo para I<nice>: 4"
++
++#. type: Plain text
++#: ../src/xz/xz.1:1561
++msgid "I<dict> * 7.5 (if I<dict> E<lt>= 32 MiB);"
++msgstr "I<dict> * 7.5 (if I<dict> E<lt>= 32 MiB);"
++
++#. type: Plain text
++#: ../src/xz/xz.1:1566
++msgid "I<dict> * 6.5 (if I<dict> E<gt> 32 MiB)"
++msgstr "I<dict> * 6.5 (if I<dict> E<gt> 32 MiB)"
++
++#. type: TP
++#: ../src/xz/xz.1:1566
++#, no-wrap
++msgid "B<bt2>"
++msgstr "B<bt2>"
++
++#. type: Plain text
++#: ../src/xz/xz.1:1569
++msgid "Binary Tree with 2-byte hashing"
++msgstr "Árvore binária com hashing de 2 bytes"
++
++#. type: Plain text
++#: ../src/xz/xz.1:1573
++msgid "Minimum value for I<nice>: 2"
++msgstr "Valor mínimo para I<nice>: 2"
++
++#. type: Plain text
++#: ../src/xz/xz.1:1577
++msgid "Memory usage: I<dict> * 9.5"
++msgstr "Uso de memória: I<dict> * 9.5"
++
++#. type: TP
++#: ../src/xz/xz.1:1577
++#, no-wrap
++msgid "B<bt3>"
++msgstr "B<bt3>"
++
++#. type: Plain text
++#: ../src/xz/xz.1:1580
++msgid "Binary Tree with 2- and 3-byte hashing"
++msgstr "Árvore binária com hashing de 2 e 3 bytes"
++
++#. type: Plain text
++#: ../src/xz/xz.1:1591
++msgid "I<dict> * 11.5 (if I<dict> E<lt>= 16 MiB);"
++msgstr "I<dict> * 11.5 (if I<dict> E<lt>= 16 MiB);"
++
++#. type: Plain text
++#: ../src/xz/xz.1:1596
++msgid "I<dict> * 9.5 + 64 MiB (if I<dict> E<gt> 16 MiB)"
++msgstr "I<dict> * 9.5 + 64 MiB (if I<dict> E<gt> 16 MiB)"
++
++#. type: TP
++#: ../src/xz/xz.1:1596
++#, no-wrap
++msgid "B<bt4>"
++msgstr "B<bt4>"
++
++#. type: Plain text
++#: ../src/xz/xz.1:1599
++msgid "Binary Tree with 2-, 3-, and 4-byte hashing"
++msgstr "Árvore binária com hashing de 2, 3 e 4 bytes"
++
++#. type: Plain text
++#: ../src/xz/xz.1:1610
++msgid "I<dict> * 11.5 (if I<dict> E<lt>= 32 MiB);"
++msgstr "I<dict> * 11.5 (if I<dict> E<lt>= 32 MiB);"
++
++#. type: Plain text
++#: ../src/xz/xz.1:1615
++msgid "I<dict> * 10.5 (if I<dict> E<gt> 32 MiB)"
++msgstr "I<dict> * 10.5 (if I<dict> E<gt> 32 MiB)"
++
++#. type: TP
++#: ../src/xz/xz.1:1616
++#, no-wrap
++msgid "B<mode=>I<mode>"
++msgstr "B<mode=>I<modo>"
++
++#. type: Plain text
++#: ../src/xz/xz.1:1637
++msgid "Compression I<mode> specifies the method to analyze the data produced by the match finder. Supported I<modes> are B<fast> and B<normal>. The default is B<fast> for I<presets> 0\\(en3 and B<normal> for I<presets> 4\\(en9."
++msgstr "O I<modo> de compactação especifica o método para analisar os dados produzidos pelo localizador de correspondência. Os I<modos> suportados são B<fast> e B<normal>. O padrão é B<fast> para I<predefinições> 0\\(en3 e B<normal> para I<predefinições> 4\\(en9."
++
++#. type: Plain text
++#: ../src/xz/xz.1:1646
++msgid "Usually B<fast> is used with Hash Chain match finders and B<normal> with Binary Tree match finders. This is also what the I<presets> do."
++msgstr "Normalmente, B<fast> é usado com localizadores de correspondência cadeia de hashs e B<normal> com localizadores de correspondência de árvore binária. Isso também é o que os I<predefinições> fazem."
++
++#. type: TP
++#: ../src/xz/xz.1:1646
++#, no-wrap
++msgid "B<nice=>I<nice>"
++msgstr "B<nice=>I<nice>"
++
++#. type: Plain text
++#: ../src/xz/xz.1:1653
++msgid "Specify what is considered to be a nice length for a match. Once a match of at least I<nice> bytes is found, the algorithm stops looking for possibly better matches."
++msgstr "Especifica o que é considerado um bom comprimento para uma correspondência. Uma vez que uma correspondência de pelo menos I<nice> bytes é encontrada, o algoritmo para de procurar correspondências possivelmente melhores."
++
++#. type: Plain text
++#: ../src/xz/xz.1:1660
++msgid "I<Nice> can be 2\\(en273 bytes. Higher values tend to give better compression ratio at the expense of speed. The default depends on the I<preset>."
++msgstr "I<Nice> pode ser 2\\(en273 bytes. Valores mais altos tendem a fornecer melhor taxa de compactação em detrimento da velocidade. O padrão depende do I<predefinição>."
++
++#. type: TP
++#: ../src/xz/xz.1:1660
++#, no-wrap
++msgid "B<depth=>I<depth>"
++msgstr "B<depth=>I<profundidade>"
++
++#. type: Plain text
++#: ../src/xz/xz.1:1670
++msgid "Specify the maximum search depth in the match finder. The default is the special value of 0, which makes the compressor determine a reasonable I<depth> from I<mf> and I<nice>."
++msgstr "Especifica a profundidade máxima de pesquisa no localizador de correspondências. O padrão é o valor especial de 0, que faz com que o compressor determine um I<profundidade> razoável de I<mf> e I<nice>."
++
++#. type: Plain text
++#: ../src/xz/xz.1:1681
++msgid "Reasonable I<depth> for Hash Chains is 4\\(en100 and 16\\(en1000 for Binary Trees. Using very high values for I<depth> can make the encoder extremely slow with some files. Avoid setting the I<depth> over 1000 unless you are prepared to interrupt the compression in case it is taking far too long."
++msgstr "Uma I<profundidade> razoável para cadeias de hash é 4\\(en100 e 16\\(en1000 para árvores binárias. Usar valores muito altos para I<profundidade> pode tornar o codificador extremamente lento com alguns arquivos. Evite definir I<profundidade> acima de 1000 a menos que você esteja preparado para interromper a compactação caso ela esteja demorando muito."
++
++#. type: Plain text
++#: ../src/xz/xz.1:1692
++msgid "When decoding raw streams (B<--format=raw>), LZMA2 needs only the dictionary I<size>. LZMA1 needs also I<lc>, I<lp>, and I<pb>."
++msgstr "Ao decodificar fluxos brutos (B<--format=raw>), o LZMA2 precisa apenas do dicionário I<tamanho>. LZMA1 também precisa de I<lc>, I<lp> e I<pb>."
++
++#. type: TP
++#: ../src/xz/xz.1:1692
++#, no-wrap
++msgid "B<--x86>[B<=>I<options>]"
++msgstr "B<--x86>[B<=>I<opções>]"
++
++#. type: TP
++#: ../src/xz/xz.1:1695
++#, no-wrap
++msgid "B<--arm>[B<=>I<options>]"
++msgstr "B<--arm>[B<=>I<opções>]"
++
++#. type: TP
++#: ../src/xz/xz.1:1697
++#, no-wrap
++msgid "B<--armthumb>[B<=>I<options>]"
++msgstr "B<--armthumb>[B<=>I<opções>]"
++
++#. type: TP
++#: ../src/xz/xz.1:1699
++#, no-wrap
++msgid "B<--arm64>[B<=>I<options>]"
++msgstr "B<--arm64>[B<=>I<opções>]"
++
++#. type: TP
++#: ../src/xz/xz.1:1701
++#, no-wrap
++msgid "B<--powerpc>[B<=>I<options>]"
++msgstr "B<--powerpc>[B<=>I<opções>]"
++
++#. type: TP
++#: ../src/xz/xz.1:1703
++#, no-wrap
++msgid "B<--ia64>[B<=>I<options>]"
++msgstr "B<--ia64>[B<=>I<opções>]"
++
++#. type: TP
++#: ../src/xz/xz.1:1705
++#, no-wrap
++msgid "B<--sparc>[B<=>I<options>]"
++msgstr "B<--sparc>[B<=>I<opções>]"
++
++#. type: Plain text
++#: ../src/xz/xz.1:1711
++msgid "Add a branch/call/jump (BCJ) filter to the filter chain. These filters can be used only as a non-last filter in the filter chain."
++msgstr "Adiciona um filtro de ramificação/chamada/salto (BCJ) à cadeia de filtros. Esses filtros podem ser usados apenas como um filtro não último na cadeia de filtros."
++
++#. type: Plain text
++#: ../src/xz/xz.1:1725
++msgid "A BCJ filter converts relative addresses in the machine code to their absolute counterparts. This doesn't change the size of the data but it increases redundancy, which can help LZMA2 to produce 0\\(en15\\ % smaller B<.xz> file. The BCJ filters are always reversible, so using a BCJ filter for wrong type of data doesn't cause any data loss, although it may make the compression ratio slightly worse. The BCJ filters are very fast and use an insignificant amount of memory."
++msgstr "Um filtro BCJ converte endereços relativos no código de máquina em suas contrapartes absolutas. Isso não altera o tamanho dos dados, mas aumenta a redundância, o que pode ajudar o LZMA2 a produzir um arquivo B<.xz> 0\\(en15\\ % menor. Os filtros BCJ são sempre reversíveis, portanto, usar um filtro BCJ para o tipo errado de dados não causa nenhuma perda de dados, embora possa piorar um pouco a taxa de compactação.Os filtros BCJ são muito rápidos e usam uma quantidade insignificante de memória."
++
++#. type: Plain text
++#: ../src/xz/xz.1:1728
++msgid "These BCJ filters have known problems related to the compression ratio:"
++msgstr "Esses filtros BCJ têm problemas conhecidos relacionados à taxa de compactação:"
++
++#. type: Plain text
++#: ../src/xz/xz.1:1735
++msgid "Some types of files containing executable code (for example, object files, static libraries, and Linux kernel modules) have the addresses in the instructions filled with filler values. These BCJ filters will still do the address conversion, which will make the compression worse with these files."
++msgstr "Alguns tipos de arquivos contendo código executável (por exemplo, arquivos de objeto, bibliotecas estáticas e módulos do kernel do Linux) têm os endereços nas instruções preenchidos com valores de preenchimento. Esses filtros BCJ ainda vão fazer a conversão de endereço, o que vai piorar a compactação desses arquivos."
++
++#. type: Plain text
++#: ../src/xz/xz.1:1745
++msgid "If a BCJ filter is applied on an archive, it is possible that it makes the compression ratio worse than not using a BCJ filter. For example, if there are similar or even identical executables then filtering will likely make the files less similar and thus compression is worse. The contents of non-executable files in the same archive can matter too. In practice one has to try with and without a BCJ filter to see which is better in each situation."
++msgstr "Se um filtro BCJ for aplicado em um arquivo, é possível que isso torne a taxa de compactação pior do que não usar um filtro BCJ. Por exemplo, se houver executáveis semelhantes ou mesmo idênticos, a filtragem provavelmente tornará os arquivos menos semelhantes e, portanto, a compactação será pior. O conteúdo de arquivos não executáveis no mesmo arquivo também pode ser importante. Na prática tem que tentar com e sem filtro BCJ para ver qual é melhor em cada situação."
++
++#. type: Plain text
++#: ../src/xz/xz.1:1750
++msgid "Different instruction sets have different alignment: the executable file must be aligned to a multiple of this value in the input data to make the filter work."
++msgstr "Conjuntos de instruções diferentes têm alinhamento diferente: o arquivo executável deve ser alinhado a um múltiplo desse valor nos dados de entrada para fazer o filtro funcionar."
++
++#. type: tbl table
++#: ../src/xz/xz.1:1757
++#, no-wrap
++msgid "Filter"
++msgstr "Filtro"
++
++#. type: tbl table
++#: ../src/xz/xz.1:1757
++#, no-wrap
++msgid "Alignment"
++msgstr "Alinhamento"
++
++#. type: tbl table
++#: ../src/xz/xz.1:1757
++#, no-wrap
++msgid "Notes"
++msgstr "Observações"
++
++#. type: tbl table
++#: ../src/xz/xz.1:1758
++#, no-wrap
++msgid "x86"
++msgstr "x86"
++
++#. type: tbl table
++#: ../src/xz/xz.1:1758
++#, no-wrap
++msgid "32-bit or 64-bit x86"
++msgstr "x86 32 bits ou 64 bits"
++
++#. type: tbl table
++#: ../src/xz/xz.1:1759
++#, no-wrap
++msgid "ARM"
++msgstr "ARM"
++
++#. type: tbl table
++#: ../src/xz/xz.1:1760
++#, no-wrap
++msgid "ARM-Thumb"
++msgstr "ARM-Thumb"
++
++#. type: tbl table
++#: ../src/xz/xz.1:1761
++#, no-wrap
++msgid "ARM64"
++msgstr "ARM64"
++
++#. type: tbl table
++#: ../src/xz/xz.1:1761
++#, no-wrap
++msgid "4096-byte alignment is best"
++msgstr ""
++"Alinhamento de 4096 bytes\n"
++";;é melhor"
++
++#. type: tbl table
++#: ../src/xz/xz.1:1762
++#, no-wrap
++msgid "PowerPC"
++msgstr "PowerPC"
++
++#. type: tbl table
++#: ../src/xz/xz.1:1762
++#, no-wrap
++msgid "Big endian only"
++msgstr "Somente big endian"
++
++#. type: tbl table
++#: ../src/xz/xz.1:1763
++#, no-wrap
++msgid "IA-64"
++msgstr "IA-64"
++
++#. type: tbl table
++#: ../src/xz/xz.1:1763
++#, no-wrap
++msgid "16"
++msgstr "16"
++
++#. type: tbl table
++#: ../src/xz/xz.1:1763
++#, no-wrap
++msgid "Itanium"
++msgstr "Itanium"
++
++#. type: tbl table
++#: ../src/xz/xz.1:1764
++#, no-wrap
++msgid "SPARC"
++msgstr "SPARC"
++
++#. type: Plain text
++#: ../src/xz/xz.1:1781
++msgid "Since the BCJ-filtered data is usually compressed with LZMA2, the compression ratio may be improved slightly if the LZMA2 options are set to match the alignment of the selected BCJ filter. For example, with the IA-64 filter, it's good to set B<pb=4> or even B<pb=4,lp=4,lc=0> with LZMA2 (2^4=16). The x86 filter is an exception; it's usually good to stick to LZMA2's default four-byte alignment when compressing x86 executables."
++msgstr "Como os dados filtrados por BCJ geralmente são compactados com LZMA2, a taxa de compactação pode melhorar ligeiramente se as opções de LZMA2 forem definidas para corresponder ao alinhamento do filtro BCJ selecionado. Por exemplo, com o filtro IA-64, é bom definir B<pb=4> ou mesmo B<pb=4,lp=4,lc=0> com LZMA2 (2^4=16). O filtro x86 é uma exceção; geralmente é bom manter o alinhamento padrão de quatro bytes do LZMA2 ao compactar executáveis x86."
++
++#. type: Plain text
++#: ../src/xz/xz.1:1784
++msgid "All BCJ filters support the same I<options>:"
++msgstr "Todos os filtros BCJ suportam as mesmas I<opções>:"
++
++#. type: TP
++#: ../src/xz/xz.1:1785
++#, no-wrap
++msgid "B<start=>I<offset>"
++msgstr "B<start=>I<deslocamento>"
++
++#. type: Plain text
++#: ../src/xz/xz.1:1799
++msgid "Specify the start I<offset> that is used when converting between relative and absolute addresses. The I<offset> must be a multiple of the alignment of the filter (see the table above). The default is zero. In practice, the default is good; specifying a custom I<offset> is almost never useful."
++msgstr "Especifica o I<deslocamento> inicial que é usado na conversão entre endereços relativos e absolutos. O I<deslocamento> deve ser um múltiplo do alinhamento do filtro (ver tabela acima). O padrão é zero. Na prática, o padrão é bom; especificar um I<deslocamento> personalizado quase nunca é útil."
++
++#. type: TP
++#: ../src/xz/xz.1:1800
++#, no-wrap
++msgid "B<--delta>[B<=>I<options>]"
++msgstr "B<--delta>[B<=>I<opções>]"
++
++#. type: Plain text
++#: ../src/xz/xz.1:1805
++msgid "Add the Delta filter to the filter chain. The Delta filter can be only used as a non-last filter in the filter chain."
++msgstr "Adiciona o filtro Delta à cadeia de filtros. O filtro Delta só pode ser usado como filtro não-último na cadeia de filtros."
++
++#. type: Plain text
++#: ../src/xz/xz.1:1814
++msgid "Currently only simple byte-wise delta calculation is supported. It can be useful when compressing, for example, uncompressed bitmap images or uncompressed PCM audio. However, special purpose algorithms may give significantly better results than Delta + LZMA2. This is true especially with audio, which compresses faster and better, for example, with B<flac>(1)."
++msgstr "Atualmente, apenas o cálculo simples de delta byte a byte é suportado. Pode ser útil ao compactar, por exemplo, imagens bitmap não compactadas ou áudio PCM não compactado. No entanto, algoritmos de propósito especial podem fornecer resultados significativamente melhores do que Delta + LZMA2. Isso é verdade especialmente com áudio, que compacta mais rápido e melhor, por exemplo, com B<flac>(1)."
++
++#. type: Plain text
++#: ../src/xz/xz.1:1817
++msgid "Supported I<options>:"
++msgstr "I<Opções> suportadas:"
++
++#. type: TP
++#: ../src/xz/xz.1:1818
++#, no-wrap
++msgid "B<dist=>I<distance>"
++msgstr "B<dist=>I<distância>"
++
++#. type: Plain text
++#: ../src/xz/xz.1:1826
++msgid "Specify the I<distance> of the delta calculation in bytes. I<distance> must be 1\\(en256. The default is 1."
++msgstr "Especifica a I<distância> do cálculo delta em bytes. I<distância> deve ser 1\\(en256. O padrão é 1."
++
++#. type: Plain text
++#: ../src/xz/xz.1:1831
++msgid "For example, with B<dist=2> and eight-byte input A1 B1 A2 B3 A3 B5 A4 B7, the output will be A1 B1 01 02 01 02 01 02."
++msgstr "Por exemplo, com B<dist=2> e entrada de oito bytes A1 B1 A2 B3 A3 B5 A4 B7, a saída será A1 B1 01 02 01 02 01 02."
++
++#. type: SS
++#: ../src/xz/xz.1:1833
++#, no-wrap
++msgid "Other options"
++msgstr "Outras opções"
++
++#. type: TP
++#: ../src/xz/xz.1:1834 ../src/xzdec/xzdec.1:83
++#, no-wrap
++msgid "B<-q>, B<--quiet>"
++msgstr "B<-q>, B<--quiet>"
++
++#. type: Plain text
++#: ../src/xz/xz.1:1841
++msgid "Suppress warnings and notices. Specify this twice to suppress errors too. This option has no effect on the exit status. That is, even if a warning was suppressed, the exit status to indicate a warning is still used."
++msgstr "Suprime avisos e avisos. Especifique isso duas vezes para suprimir erros também. Esta opção não tem efeito no status de saída. Ou seja, mesmo que um aviso tenha sido suprimido, o status de saída para indicar um aviso ainda é usado."
++
++#. type: TP
++#: ../src/xz/xz.1:1841
++#, no-wrap
++msgid "B<-v>, B<--verbose>"
++msgstr "B<-v>, B<--verbose>"
++
++#. type: Plain text
++#: ../src/xz/xz.1:1850
++msgid "Be verbose. If standard error is connected to a terminal, B<xz> will display a progress indicator. Specifying B<--verbose> twice will give even more verbose output."
++msgstr "Ser detalhado. Se o erro padrão estiver conectado a um terminal, B<xz> exibirá um indicador de progresso. Especifique B<--verbose> duas vezes dará uma saída ainda mais detalhada."
++
++#. type: Plain text
++#: ../src/xz/xz.1:1852
++msgid "The progress indicator shows the following information:"
++msgstr "O indicador de progresso mostra as seguintes informações:"
++
++#. type: Plain text
++#: ../src/xz/xz.1:1857
++msgid "Completion percentage is shown if the size of the input file is known. That is, the percentage cannot be shown in pipes."
++msgstr "A porcentagem de conclusão é mostrada se o tamanho do arquivo de entrada for conhecido. Ou seja, a porcentagem não pode ser mostrada em encadeamentos (pipe)."
++
++#. type: Plain text
++#: ../src/xz/xz.1:1860
++msgid "Amount of compressed data produced (compressing) or consumed (decompressing)."
++msgstr "Quantidade de dados compactados produzidos (compactando) ou consumidos (descompactando)."
++
++#. type: Plain text
++#: ../src/xz/xz.1:1863
++msgid "Amount of uncompressed data consumed (compressing) or produced (decompressing)."
++msgstr "Quantidade de dados não compactados consumidos (compactação) ou produzidos (descompactação)."
++
++#. type: Plain text
++#: ../src/xz/xz.1:1867
++msgid "Compression ratio, which is calculated by dividing the amount of compressed data processed so far by the amount of uncompressed data processed so far."
++msgstr "Taxa de compactação, que é calculada dividindo a quantidade de dados compactados processados até o momento pela quantidade de dados não compactados processados até o momento."
++
++#. type: Plain text
++#: ../src/xz/xz.1:1874
++msgid "Compression or decompression speed. This is measured as the amount of uncompressed data consumed (compression) or produced (decompression) per second. It is shown after a few seconds have passed since B<xz> started processing the file."
++msgstr "Velocidade de compactação ou descompactação. Isso é medido como a quantidade de dados não compactados consumidos (compactação) ou produzidos (descompactação) por segundo. É mostrado após alguns segundos desde que B<xz> começou a processar o arquivo."
++
++#. type: Plain text
++#: ../src/xz/xz.1:1876
++msgid "Elapsed time in the format M:SS or H:MM:SS."
++msgstr "Tempo decorrido no formato M:SS ou H:MM:SS."
++
++#. type: Plain text
++#: ../src/xz/xz.1:1884
++msgid "Estimated remaining time is shown only when the size of the input file is known and a couple of seconds have already passed since B<xz> started processing the file. The time is shown in a less precise format which never has any colons, for example, 2 min 30 s."
++msgstr "O tempo restante estimado é mostrado apenas quando o tamanho do arquivo de entrada é conhecido e alguns segundos já se passaram desde que B<xz> começou a processar o arquivo. A hora é mostrada em um formato menos preciso que nunca tem dois pontos, por exemplo, 2 min 30 s."
++
++#. type: Plain text
++#: ../src/xz/xz.1:1899
++msgid "When standard error is not a terminal, B<--verbose> will make B<xz> print the filename, compressed size, uncompressed size, compression ratio, and possibly also the speed and elapsed time on a single line to standard error after compressing or decompressing the file. The speed and elapsed time are included only when the operation took at least a few seconds. If the operation didn't finish, for example, due to user interruption, also the completion percentage is printed if the size of the input file is known."
++msgstr "Quando o erro padrão não é um terminal, B<--verbose> fará com que B<xz> imprima o nome do arquivo, tamanho compactado, tamanho não compactado, taxa de compactação e possivelmente também a velocidade e o tempo decorrido em uma única linha para o erro padrão após a compactação ou descompactando o arquivo. A velocidade e o tempo decorrido são incluídos apenas quando a operação leva pelo menos alguns segundos. Se a operação não foi concluída, por exemplo, devido à interrupção do usuário, também é impressa a porcentagem de conclusão se o tamanho do arquivo de entrada for conhecido."
++
++#. type: TP
++#: ../src/xz/xz.1:1899 ../src/xzdec/xzdec.1:89
++#, no-wrap
++msgid "B<-Q>, B<--no-warn>"
++msgstr "B<-Q>, B<--no-warn>"
++
++#. type: Plain text
++#: ../src/xz/xz.1:1909
++msgid "Don't set the exit status to 2 even if a condition worth a warning was detected. This option doesn't affect the verbosity level, thus both B<--quiet> and B<--no-warn> have to be used to not display warnings and to not alter the exit status."
++msgstr "Não define o status de saída como 2, mesmo que uma condição digna de um aviso tenha sido detectada. Esta opção não afeta o nível de detalhamento, portanto, tanto B<--quiet> quanto B<--no-warn> devem ser usados para não exibir avisos e não alterar o status de saída."
++
++#. type: TP
++#: ../src/xz/xz.1:1909
++#, no-wrap
++msgid "B<--robot>"
++msgstr "B<--robot>"
++
++#. type: Plain text
++#: ../src/xz/xz.1:1921
++msgid "Print messages in a machine-parsable format. This is intended to ease writing frontends that want to use B<xz> instead of liblzma, which may be the case with various scripts. The output with this option enabled is meant to be stable across B<xz> releases. See the section B<ROBOT MODE> for details."
++msgstr "Imprime mensagens em um formato analisável por máquina. Isso visa facilitar a criação de frontends que desejam usar B<xz> em vez de liblzma, o que pode ser o caso de vários scripts. A saída com esta opção habilitada deve ser estável em versões B<xz>. Consulte a seção B<MODO ROBÔ> para obter detalhes."
++
++#. type: TP
++#: ../src/xz/xz.1:1921
++#, no-wrap
++msgid "B<--info-memory>"
++msgstr "B<--info-memory>"
++
++#. type: Plain text
++#: ../src/xz/xz.1:1928
++msgid "Display, in human-readable format, how much physical memory (RAM) and how many processor threads B<xz> thinks the system has and the memory usage limits for compression and decompression, and exit successfully."
++msgstr "Exibe, em formato legível por humanos, quanta memória física (RAM) e quantos threads de processador B<xz> acredita que o sistema possui e os limites de uso de memória para compactação e descompactação e saia com êxito."
++
++#. type: TP
++#: ../src/xz/xz.1:1928 ../src/xzdec/xzdec.1:96
++#, no-wrap
++msgid "B<-h>, B<--help>"
++msgstr "B<-h>, B<--help>"
++
++#. type: Plain text
++#: ../src/xz/xz.1:1932
++msgid "Display a help message describing the most commonly used options, and exit successfully."
++msgstr "Exibe uma mensagem de ajuda descrevendo as opções mais usadas e sai com sucesso."
++
++#. type: TP
++#: ../src/xz/xz.1:1932
++#, no-wrap
++msgid "B<-H>, B<--long-help>"
++msgstr "B<-H>, B<--long-help>"
++
++#. type: Plain text
++#: ../src/xz/xz.1:1937
++msgid "Display a help message describing all features of B<xz>, and exit successfully"
++msgstr "Exibe uma mensagem de ajuda descrevendo todos os recursos de B<xz> e sai com sucesso"
++
++#. type: TP
++#: ../src/xz/xz.1:1937 ../src/xzdec/xzdec.1:99
++#, no-wrap
++msgid "B<-V>, B<--version>"
++msgstr "B<-V>, B<--version>"
++
++#. type: Plain text
++#: ../src/xz/xz.1:1946
++msgid "Display the version number of B<xz> and liblzma in human readable format. To get machine-parsable output, specify B<--robot> before B<--version>."
++msgstr "Exibe o número da versão de B<xz> e liblzma em formato legível por humanos. Para obter uma saída analisável por máquina, especifique B<--robot> antes de B<--version>."
++
++#. type: SH
++#: ../src/xz/xz.1:1947
++#, no-wrap
++msgid "ROBOT MODE"
++msgstr "MODO ROBÔ"
++
++#. type: Plain text
++#: ../src/xz/xz.1:1963
++msgid "The robot mode is activated with the B<--robot> option. It makes the output of B<xz> easier to parse by other programs. Currently B<--robot> is supported only together with B<--version>, B<--info-memory>, and B<--list>. It will be supported for compression and decompression in the future."
++msgstr "O modo robô é ativado com a opção B<--robot>. Isso torna a saída de B<xz> mais fácil de ser analisada por outros programas. Atualmente B<--robot> é suportado apenas junto com B<--version>, B<--info-memory> e B<--list>. Ele terá suporte para compactação e descompactação no futuro."
++
++#. type: SS
++#: ../src/xz/xz.1:1964
++#, no-wrap
++msgid "Version"
++msgstr "Versão"
++
++#. type: Plain text
++#: ../src/xz/xz.1:1969
++msgid "B<xz --robot --version> will print the version number of B<xz> and liblzma in the following format:"
++msgstr "B<xz --robot --version> imprimirá o número da versão de B<xz> e liblzma no seguinte formato:"
++
++#. type: Plain text
++#: ../src/xz/xz.1:1971
++msgid "B<XZ_VERSION=>I<XYYYZZZS>"
++msgstr "B<XZ_VERSION=>I<XYYYZZZS>"
++
++#. type: Plain text
++#: ../src/xz/xz.1:1973
++msgid "B<LIBLZMA_VERSION=>I<XYYYZZZS>"
++msgstr "B<LIBLZMA_VERSION=>I<XYYYZZZS>"
++
++#. type: TP
++#: ../src/xz/xz.1:1973
++#, no-wrap
++msgid "I<X>"
++msgstr "I<X>"
++
++#. type: Plain text
++#: ../src/xz/xz.1:1976
++msgid "Major version."
++msgstr "Versão principal."
++
++#. type: TP
++#: ../src/xz/xz.1:1976
++#, no-wrap
++msgid "I<YYY>"
++msgstr "I<YYY>"
++
++#. type: Plain text
++#: ../src/xz/xz.1:1981
++msgid "Minor version. Even numbers are stable. Odd numbers are alpha or beta versions."
++msgstr "Versão menor. Números pares são estáveis. Os números ímpares são versões alfa ou beta."
++
++#. type: TP
++#: ../src/xz/xz.1:1981
++#, no-wrap
++msgid "I<ZZZ>"
++msgstr "I<ZZZ>"
++
++#. type: Plain text
++#: ../src/xz/xz.1:1985
++msgid "Patch level for stable releases or just a counter for development releases."
++msgstr "Nível de patch para versões estáveis ou apenas um contador para versões de desenvolvimento."
++
++#. type: TP
++#: ../src/xz/xz.1:1985
++#, no-wrap
++msgid "I<S>"
++msgstr "I<S>"
++
++#. type: Plain text
++#: ../src/xz/xz.1:1993
++msgid "Stability. 0 is alpha, 1 is beta, and 2 is stable. I<S> should be always 2 when I<YYY> is even."
++msgstr "Estabilidade. 0 é alfa, 1 é beta e 2 é estável. I<S> deve ser sempre 2 quando I<YYY> for par."
++
++#. type: Plain text
++#: ../src/xz/xz.1:1998
++msgid "I<XYYYZZZS> are the same on both lines if B<xz> and liblzma are from the same XZ Utils release."
++msgstr "I<XYYYZZZS> são iguais em ambas as linhas se B<xz> e liblzma forem da mesma versão do XZ Utils."
++
++#. type: Plain text
++#: ../src/xz/xz.1:2004
++msgid "Examples: 4.999.9beta is B<49990091> and 5.0.0 is B<50000002>."
++msgstr "Exemplos: 4.999.9beta é B<49990091> e 5.0.0 é B<50000002>."
++
++#. type: SS
++#: ../src/xz/xz.1:2005
++#, no-wrap
++msgid "Memory limit information"
++msgstr "Informações de limite de memória"
++
++#. type: Plain text
++#: ../src/xz/xz.1:2008
++msgid "B<xz --robot --info-memory> prints a single line with three tab-separated columns:"
++msgstr "B<xz --robot --info-memory> imprime uma única linha com três colunas separadas por tabulações:"
++
++#. type: IP
++#: ../src/xz/xz.1:2008
++#, no-wrap
++msgid "1."
++msgstr "1."
++
++#. type: Plain text
++#: ../src/xz/xz.1:2010
++msgid "Total amount of physical memory (RAM) in bytes."
++msgstr "Quantidade total de memória física (RAM) em bytes."
++
++#. type: IP
++#: ../src/xz/xz.1:2010 ../src/xz/xz.1:2125 ../src/xz/xz.1:2162
++#: ../src/xz/xz.1:2188 ../src/xz/xz.1:2258 ../src/xz/xz.1:2285
++#, no-wrap
++msgid "2."
++msgstr "2."
++
++#. type: Plain text
++#: ../src/xz/xz.1:2017
++msgid "Memory usage limit for compression in bytes (B<--memlimit-compress>). A special value of B<0> indicates the default setting which for single-threaded mode is the same as no limit."
++msgstr "Limite de uso de memória para compactação em bytes (B<--memlimit-compress>). Um valor especial de B<0> indica a configuração padrão que para o modo de thread única é o mesmo que sem limite."
++
++#. type: IP
++#: ../src/xz/xz.1:2017 ../src/xz/xz.1:2127 ../src/xz/xz.1:2164
++#: ../src/xz/xz.1:2190 ../src/xz/xz.1:2263 ../src/xz/xz.1:2287
++#, no-wrap
++msgid "3."
++msgstr "3."
++
++#. type: Plain text
++#: ../src/xz/xz.1:2024
++msgid "Memory usage limit for decompression in bytes (B<--memlimit-decompress>). A special value of B<0> indicates the default setting which for single-threaded mode is the same as no limit."
++msgstr "Limite de uso de memória para descompactação em bytes (B<--memlimit-decompress>). Um valor especial de B<0> indica a configuração padrão que para o modo de thread única é o mesmo que sem limite."
++
++#. type: IP
++#: ../src/xz/xz.1:2024 ../src/xz/xz.1:2129 ../src/xz/xz.1:2166
++#: ../src/xz/xz.1:2193 ../src/xz/xz.1:2273 ../src/xz/xz.1:2289
++#, no-wrap
++msgid "4."
++msgstr "4."
++
++#. type: Plain text
++#: ../src/xz/xz.1:2036
++msgid "Since B<xz> 5.3.4alpha: Memory usage for multi-threaded decompression in bytes (B<--memlimit-mt-decompress>). This is never zero because a system-specific default value shown in the column 5 is used if no limit has been specified explicitly. This is also never greater than the value in the column 3 even if a larger value has been specified with B<--memlimit-mt-decompress>."
++msgstr "Desde B<xz> 5.3.4alpha: Uso de memória para descompactação com várias thread em bytes (B<--memlimit-mt-decompress>). Isso nunca é zero porque um valor padrão específico do sistema mostrado na coluna 5 é usado se nenhum limite for especificado explicitamente. Isso também nunca é maior que o valor na coluna 3, mesmo que um valor maior tenha sido especificado com B<--memlimit-mt-decompress>."
++
++#. type: IP
++#: ../src/xz/xz.1:2036 ../src/xz/xz.1:2131 ../src/xz/xz.1:2168
++#: ../src/xz/xz.1:2195 ../src/xz/xz.1:2291
++#, no-wrap
++msgid "5."
++msgstr "5."
++
++#. type: Plain text
++#: ../src/xz/xz.1:2048
++msgid "Since B<xz> 5.3.4alpha: A system-specific default memory usage limit that is used to limit the number of threads when compressing with an automatic number of threads (B<--threads=0>) and no memory usage limit has been specified (B<--memlimit-compress>). This is also used as the default value for B<--memlimit-mt-decompress>."
++msgstr "Desde B<xz> 5.3.4alpha: Um limite de uso de memória padrão específico do sistema que é usado para limitar o número de threads ao compactar com um número automático de threads (B<--threads=0>) e nenhum limite de uso de memória foi especificado (B<--memlimit-compress>). Isso também é usado como o valor padrão para B<--memlimit-mt-decompress>."
++
++#. type: IP
++#: ../src/xz/xz.1:2048 ../src/xz/xz.1:2133 ../src/xz/xz.1:2170
++#: ../src/xz/xz.1:2197 ../src/xz/xz.1:2293
++#, no-wrap
++msgid "6."
++msgstr "6."
++
++#. type: Plain text
++#: ../src/xz/xz.1:2053
++msgid "Since B<xz> 5.3.4alpha: Number of available processor threads."
++msgstr "Desde B<xz> 5.3.4alpha: Número de threads de processador disponíveis."
++
++#. type: Plain text
++#: ../src/xz/xz.1:2057
++msgid "In the future, the output of B<xz --robot --info-memory> may have more columns, but never more than a single line."
++msgstr "No futuro, a saída de B<xz --robot --info-memory> pode ter mais colunas, mas nunca mais do que uma única linha."
++
++#. type: SS
++#: ../src/xz/xz.1:2058
++#, no-wrap
++msgid "List mode"
++msgstr "Modo lista"
++
++#. type: Plain text
++#: ../src/xz/xz.1:2063
++msgid "B<xz --robot --list> uses tab-separated output. The first column of every line has a string that indicates the type of the information found on that line:"
++msgstr "B<xz --robot --list> usa saída separada por tabulações. A primeira coluna de cada linha possui uma string que indica o tipo de informação encontrada naquela linha:"
++
++#. type: TP
++#: ../src/xz/xz.1:2063
++#, no-wrap
++msgid "B<name>"
++msgstr "B<name>"
++
++#. type: Plain text
++#: ../src/xz/xz.1:2067
++msgid "This is always the first line when starting to list a file. The second column on the line is the filename."
++msgstr "Esta é sempre a primeira linha ao começar a listar um arquivo. A segunda coluna na linha é o nome do arquivo."
++
++#. type: TP
++#: ../src/xz/xz.1:2067
++#, no-wrap
++msgid "B<file>"
++msgstr "B<file>"
++
++#. type: Plain text
++#: ../src/xz/xz.1:2075
++msgid "This line contains overall information about the B<.xz> file. This line is always printed after the B<name> line."
++msgstr "Esta linha contém informações gerais sobre o arquivo B<.xz>. Esta linha é sempre impressa após a linha B<name>."
++
++#. type: TP
++#: ../src/xz/xz.1:2075
++#, no-wrap
++msgid "B<stream>"
++msgstr "B<stream>"
++
++#. type: Plain text
++#: ../src/xz/xz.1:2085
++msgid "This line type is used only when B<--verbose> was specified. There are as many B<stream> lines as there are streams in the B<.xz> file."
++msgstr "Este tipo de linha é usado somente quando B<--verbose> foi especificado. Existem tantas linhas de B<stream> quanto fluxos no arquivo B<.xz>."
++
++#. type: TP
++#: ../src/xz/xz.1:2085
++#, no-wrap
++msgid "B<block>"
++msgstr "B<block>"
++
++#. type: Plain text
++#: ../src/xz/xz.1:2100
++msgid "This line type is used only when B<--verbose> was specified. There are as many B<block> lines as there are blocks in the B<.xz> file. The B<block> lines are shown after all the B<stream> lines; different line types are not interleaved."
++msgstr "Este tipo de linha é usado somente quando B<--verbose> foi especificado. Existem tantas linhas B<block> quanto blocos no arquivo B<.xz>. As linhas B<block> são mostradas após todas as linhas B<stream>; diferentes tipos de linha não são intercalados."
++
++#. type: TP
++#: ../src/xz/xz.1:2100
++#, no-wrap
++msgid "B<summary>"
++msgstr "B<summary>"
++
++#. type: Plain text
++#: ../src/xz/xz.1:2115
++msgid "This line type is used only when B<--verbose> was specified twice. This line is printed after all B<block> lines. Like the B<file> line, the B<summary> line contains overall information about the B<.xz> file."
++msgstr "Este tipo de linha é usado apenas quando B<--verbose> foi especificado duas vezes. Esta linha é impressa após todas as linhas de B<block>. Assim como a linha B<arquivo>, a linha B<summary> contém informações gerais sobre o arquivo B<.xz>."
++
++#. type: TP
++#: ../src/xz/xz.1:2115
++#, no-wrap
++msgid "B<totals>"
++msgstr "B<totals>"
++
++#. type: Plain text
++#: ../src/xz/xz.1:2119
++msgid "This line is always the very last line of the list output. It shows the total counts and sizes."
++msgstr "Esta linha é sempre a última linha da saída da lista. Ele mostra as contagens totais e tamanhos."
++
++#. type: Plain text
++#: ../src/xz/xz.1:2123
++msgid "The columns of the B<file> lines:"
++msgstr "As colunas das linhas B<file>:"
++
++#. type: Plain text
++#: ../src/xz/xz.1:2127
++msgid "Number of streams in the file"
++msgstr "Número de fluxos no arquivo"
++
++#. type: Plain text
++#: ../src/xz/xz.1:2129
++msgid "Total number of blocks in the stream(s)"
++msgstr "Número total de blocos no(s) fluxo(s)"
++
++#. type: Plain text
++#: ../src/xz/xz.1:2131
++msgid "Compressed size of the file"
++msgstr "Tamanho compactado do arquivo"
++
++#. type: Plain text
++#: ../src/xz/xz.1:2133
++msgid "Uncompressed size of the file"
++msgstr "Uncompressed size of the file"
++
++#. type: Plain text
++#: ../src/xz/xz.1:2139
++msgid "Compression ratio, for example, B<0.123>. If ratio is over 9.999, three dashes (B<--->) are displayed instead of the ratio."
++msgstr "Taxa de compactação, por exemplo, B<0.123>. Se a proporção for superior a 9.999, serão exibidos três traços (B<--->) em vez da proporção."
++
++#. type: IP
++#: ../src/xz/xz.1:2139 ../src/xz/xz.1:2172 ../src/xz/xz.1:2199
++#: ../src/xz/xz.1:2295
++#, no-wrap
++msgid "7."
++msgstr "7."
++
++#. type: Plain text
++#: ../src/xz/xz.1:2152
++msgid "Comma-separated list of integrity check names. The following strings are used for the known check types: B<None>, B<CRC32>, B<CRC64>, and B<SHA-256>. For unknown check types, B<Unknown->I<N> is used, where I<N> is the Check ID as a decimal number (one or two digits)."
++msgstr "Lista separada por vírgulas de nomes de verificação de integridade. As seguintes strings são usadas para os tipos de verificação conhecidos: B<None>, B<CRC32>, B<CRC64> e B<SHA-256>. Para tipos de verificações desconhecidos, B<Unknown->I<N> é usado, onde I<N> é o ID do cheque como um número decimal (um ou dois dígitos)."
++
++#. type: IP
++#: ../src/xz/xz.1:2152 ../src/xz/xz.1:2174 ../src/xz/xz.1:2201
++#: ../src/xz/xz.1:2298
++#, no-wrap
++msgid "8."
++msgstr "8."
++
++#. type: Plain text
++#: ../src/xz/xz.1:2154
++msgid "Total size of stream padding in the file"
++msgstr "Tamanho total do preenchimento de fluxo no arquivo"
++
++#. type: Plain text
++#: ../src/xz/xz.1:2160
++msgid "The columns of the B<stream> lines:"
++msgstr "As colunas das linhas B<stream>:"
++
++#. type: Plain text
++#: ../src/xz/xz.1:2164
++msgid "Stream number (the first stream is 1)"
++msgstr "Número do fluxo (o primeiro fluxo é 1)"
++
++#. type: Plain text
++#: ../src/xz/xz.1:2166
++msgid "Number of blocks in the stream"
++msgstr "Número de blocos no fluxo"
++
++#. type: Plain text
++#: ../src/xz/xz.1:2168
++msgid "Compressed start offset"
++msgstr "Deslocamento inicial compactado"
++
++#. type: Plain text
++#: ../src/xz/xz.1:2170
++msgid "Uncompressed start offset"
++msgstr "Deslocamento inicial descompactado"
++
++#. type: Plain text
++#: ../src/xz/xz.1:2172
++msgid "Compressed size (does not include stream padding)"
++msgstr "Tamanho compactado (não inclui preenchimento de fluxo)"
++
++#. type: Plain text
++#: ../src/xz/xz.1:2174 ../src/xz/xz.1:2203 ../src/xz/xz.1:2293
++msgid "Uncompressed size"
++msgstr "Tamanho descompactado"
++
++#. type: Plain text
++#: ../src/xz/xz.1:2176 ../src/xz/xz.1:2205
++msgid "Compression ratio"
++msgstr "Taxa de compactação"
++
++#. type: IP
++#: ../src/xz/xz.1:2176 ../src/xz/xz.1:2203 ../src/xz/xz.1:2300
++#, no-wrap
++msgid "9."
++msgstr "9."
++
++#. type: Plain text
++#: ../src/xz/xz.1:2178 ../src/xz/xz.1:2207
++msgid "Name of the integrity check"
++msgstr "Nome da verificação de integridade"
++
++#. type: IP
++#: ../src/xz/xz.1:2178 ../src/xz/xz.1:2205 ../src/xz/xz.1:2316
++#, no-wrap
++msgid "10."
++msgstr "10."
++
++#. type: Plain text
++#: ../src/xz/xz.1:2180
++msgid "Size of stream padding"
++msgstr "Tamanho do preenchimento do fluxo"
++
++#. type: Plain text
++#: ../src/xz/xz.1:2186
++msgid "The columns of the B<block> lines:"
++msgstr "As colunas das linhas B<block>:"
++
++#. type: Plain text
++#: ../src/xz/xz.1:2190
++msgid "Number of the stream containing this block"
++msgstr "Número do fluxo que contém este bloco"
++
++#. type: Plain text
++#: ../src/xz/xz.1:2193
++msgid "Block number relative to the beginning of the stream (the first block is 1)"
++msgstr "Número do bloco relativo ao início do fluxo (o primeiro bloco é 1)"
++
++#. type: Plain text
++#: ../src/xz/xz.1:2195
++msgid "Block number relative to the beginning of the file"
++msgstr "Número do bloco relativo ao início do arquivo"
++
++#. type: Plain text
++#: ../src/xz/xz.1:2197
++msgid "Compressed start offset relative to the beginning of the file"
++msgstr "Deslocamento inicial compactado em relação ao início do arquivo"
++
++#. type: Plain text
++#: ../src/xz/xz.1:2199
++msgid "Uncompressed start offset relative to the beginning of the file"
++msgstr "Deslocamento inicial descompactado em relação ao início do arquivo"
++
++#. type: Plain text
++#: ../src/xz/xz.1:2201
++msgid "Total compressed size of the block (includes headers)"
++msgstr "Tamanho total compactado do bloco (inclui cabeçalhos)"
++
++#. type: Plain text
++#: ../src/xz/xz.1:2219
++msgid "If B<--verbose> was specified twice, additional columns are included on the B<block> lines. These are not displayed with a single B<--verbose>, because getting this information requires many seeks and can thus be slow:"
++msgstr "Se B<--verbose> for especificado duas vezes, colunas adicionais serão incluídas nas linhas B<block>. Eles não são exibidos com um único B<--verbose>, porque obter essas informações requer muitas buscas e, portanto, pode ser lento:"
++
++#. type: IP
++#: ../src/xz/xz.1:2221 ../src/xz/xz.1:2321
++#, no-wrap
++msgid "11."
++msgstr "11."
++
++#. type: Plain text
++#: ../src/xz/xz.1:2223
++msgid "Value of the integrity check in hexadecimal"
++msgstr "Valor da verificação de integridade em hexadecimal"
++
++#. type: IP
++#: ../src/xz/xz.1:2223 ../src/xz/xz.1:2331
++#, no-wrap
++msgid "12."
++msgstr "12."
++
++#. type: Plain text
++#: ../src/xz/xz.1:2225
++msgid "Block header size"
++msgstr "Tamanho do cabeçalho do bloco"
++
++#. type: IP
++#: ../src/xz/xz.1:2225
++#, no-wrap
++msgid "13."
++msgstr "13."
++
++#. type: Plain text
++#: ../src/xz/xz.1:2235
++msgid "Block flags: B<c> indicates that compressed size is present, and B<u> indicates that uncompressed size is present. If the flag is not set, a dash (B<->) is shown instead to keep the string length fixed. New flags may be added to the end of the string in the future."
++msgstr "Sinalizadores de bloco: B<c> indica que o tamanho compactado está presente e B<u> indica que o tamanho não compactado está presente. Se o sinalizador não estiver definido, um traço (B<->) será exibido para manter o comprimento da string fixo. Novos sinalizadores podem ser adicionados ao final da string no futuro."
++
++#. type: IP
++#: ../src/xz/xz.1:2235
++#, no-wrap
++msgid "14."
++msgstr "14."
++
++#. type: Plain text
++#: ../src/xz/xz.1:2238
++msgid "Size of the actual compressed data in the block (this excludes the block header, block padding, and check fields)"
++msgstr "Tamanho dos dados reais compactados no bloco (isso exclui o cabeçalho do bloco, o preenchimento do bloco e os campos de verificação)"
++
++#. type: IP
++#: ../src/xz/xz.1:2238
++#, no-wrap
++msgid "15."
++msgstr "15."
++
++#. type: Plain text
++#: ../src/xz/xz.1:2243
++msgid "Amount of memory (in bytes) required to decompress this block with this B<xz> version"
++msgstr "Quantidade de memória (em bytes) necessária para descompactar este bloco com esta versão B<xz>"
++
++#. type: IP
++#: ../src/xz/xz.1:2243
++#, no-wrap
++msgid "16."
++msgstr "16."
++
++#. type: Plain text
++#: ../src/xz/xz.1:2250
++msgid "Filter chain. Note that most of the options used at compression time cannot be known, because only the options that are needed for decompression are stored in the B<.xz> headers."
++msgstr "Cadeia de filtro. Observe que a maioria das opções usadas no momento da compactação não pode ser conhecida, pois apenas as opções necessárias para a descompactação são armazenadas nos cabeçalhos B<.xz>."
++
++#. type: Plain text
++#: ../src/xz/xz.1:2256
++msgid "The columns of the B<summary> lines:"
++msgstr "As colunas das linhas B<summary>:"
++
++#. type: Plain text
++#: ../src/xz/xz.1:2263
++msgid "Amount of memory (in bytes) required to decompress this file with this B<xz> version"
++msgstr "Quantidade de memória (em bytes) necessária para descompactar este arquivo com esta versão do B<xz>"
++
++#. type: Plain text
++#: ../src/xz/xz.1:2269 ../src/xz/xz.1:2327
++msgid "B<yes> or B<no> indicating if all block headers have both compressed size and uncompressed size stored in them"
++msgstr "B<yes> ou B<no> indicando se todos os cabeçalhos de bloco têm tamanho compactado e tamanho não compactado armazenados neles"
++
++#. type: Plain text
++#: ../src/xz/xz.1:2273 ../src/xz/xz.1:2331
++msgid "I<Since> B<xz> I<5.1.2alpha:>"
++msgstr "I<Desde> B<xz> I<5.1.2alpha:>"
++
++#. type: Plain text
++#: ../src/xz/xz.1:2277 ../src/xz/xz.1:2335
++msgid "Minimum B<xz> version required to decompress the file"
++msgstr "Versão mínima do B<xz> necessária para descompactar o arquivo"
++
++#. type: Plain text
++#: ../src/xz/xz.1:2283
++msgid "The columns of the B<totals> line:"
++msgstr "As colunas da linha B<totals>:"
++
++#. type: Plain text
++#: ../src/xz/xz.1:2287
++msgid "Number of streams"
++msgstr "Número de fluxos"
++
++#. type: Plain text
++#: ../src/xz/xz.1:2289
++msgid "Number of blocks"
++msgstr "Número de blocos"
++
++#. type: Plain text
++#: ../src/xz/xz.1:2291
++msgid "Compressed size"
++msgstr "Tamanho compactado"
++
++#. type: Plain text
++#: ../src/xz/xz.1:2295
++msgid "Average compression ratio"
++msgstr "Taxa de compactação média"
++
++#. type: Plain text
++#: ../src/xz/xz.1:2298
++msgid "Comma-separated list of integrity check names that were present in the files"
++msgstr "Lista separada por vírgulas de nomes de verificação de integridade que estavam presentes nos arquivos"
++
++#. type: Plain text
++#: ../src/xz/xz.1:2300
++msgid "Stream padding size"
++msgstr "Tamanho do preenchimento do fluxo"
++
++#. type: Plain text
++#: ../src/xz/xz.1:2306
++msgid "Number of files. This is here to keep the order of the earlier columns the same as on B<file> lines."
++msgstr "Número de arquivos. Isso está aqui para manter a ordem das colunas anteriores a mesma das linhas B<file>."
++
++#. type: Plain text
++#: ../src/xz/xz.1:2314
++msgid "If B<--verbose> was specified twice, additional columns are included on the B<totals> line:"
++msgstr "Se B<--verbose> for especificado duas vezes, colunas adicionais serão incluídas na linha B<totals>:"
++
++#. type: Plain text
++#: ../src/xz/xz.1:2321
++msgid "Maximum amount of memory (in bytes) required to decompress the files with this B<xz> version"
++msgstr "Quantidade máxima de memória (em bytes) necessária para descompactar os arquivos com esta versão do B<xz>"
++
++#. type: Plain text
++#: ../src/xz/xz.1:2341
++msgid "Future versions may add new line types and new columns can be added to the existing line types, but the existing columns won't be changed."
++msgstr "Versões futuras podem adicionar novos tipos de linha e novas colunas podem ser adicionadas aos tipos de linha existentes, mas as colunas existentes não serão alteradas."
++
++#. type: SH
++#: ../src/xz/xz.1:2342 ../src/xzdec/xzdec.1:104 ../src/lzmainfo/lzmainfo.1:44
++#: ../src/scripts/xzgrep.1:81
++#, no-wrap
++msgid "EXIT STATUS"
++msgstr "STATUS DE SAÍDA"
++
++#. type: TP
++#: ../src/xz/xz.1:2343 ../src/xzdec/xzdec.1:105 ../src/lzmainfo/lzmainfo.1:45
++#, no-wrap
++msgid "B<0>"
++msgstr "B<0>"
++
++#. type: Plain text
++#: ../src/xz/xz.1:2346 ../src/lzmainfo/lzmainfo.1:48
++msgid "All is good."
++msgstr "Está tudo bem."
++
++#. type: TP
++#: ../src/xz/xz.1:2346 ../src/xzdec/xzdec.1:108 ../src/lzmainfo/lzmainfo.1:48
++#, no-wrap
++msgid "B<1>"
++msgstr "B<1>"
++
++#. type: Plain text
++#: ../src/xz/xz.1:2349 ../src/xzdec/xzdec.1:111 ../src/lzmainfo/lzmainfo.1:51
++msgid "An error occurred."
++msgstr "Ocorreu um erro."
++
++#. type: TP
++#: ../src/xz/xz.1:2349
++#, no-wrap
++msgid "B<2>"
++msgstr "B<2>"
++
++#. type: Plain text
++#: ../src/xz/xz.1:2353
++msgid "Something worth a warning occurred, but no actual errors occurred."
++msgstr "Algo digno de um aviso ocorreu, mas ocorreu nenhum erro real."
++
++#. type: Plain text
++#: ../src/xz/xz.1:2356
++msgid "Notices (not warnings or errors) printed on standard error don't affect the exit status."
++msgstr "Observações (não avisos ou erros) impressas no erro padrão não afetam o status de saída."
++
++#. type: SH
++#: ../src/xz/xz.1:2357 ../src/scripts/xzgrep.1:94 ../src/scripts/xzless.1:52
++#, no-wrap
++msgid "ENVIRONMENT"
++msgstr "AMBIENTE"
++
++#. type: Plain text
++#: ../src/xz/xz.1:2370
++msgid "B<xz> parses space-separated lists of options from the environment variables B<XZ_DEFAULTS> and B<XZ_OPT>, in this order, before parsing the options from the command line. Note that only options are parsed from the environment variables; all non-options are silently ignored. Parsing is done with B<getopt_long>(3) which is used also for the command line arguments."
++msgstr "B<xz> analisa listas de opções separadas por espaços das variáveis de ambiente B<XZ_DEFAULTS> e B<XZ_OPT>, nesta ordem, antes de analisar as opções da linha de comando. Observe que apenas as opções são analisadas a partir das variáveis de ambiente; todas as não opções são silenciosamente ignoradas. A análise é feita com B<getopt_long>(3) que também é usado para os argumentos da linha de comando."
++
++#. type: TP
++#: ../src/xz/xz.1:2370
++#, no-wrap
++msgid "B<XZ_DEFAULTS>"
++msgstr "B<XZ_DEFAULTS>"
++
++#. type: Plain text
++#: ../src/xz/xz.1:2379
++msgid "User-specific or system-wide default options. Typically this is set in a shell initialization script to enable B<xz>'s memory usage limiter by default. Excluding shell initialization scripts and similar special cases, scripts must never set or unset B<XZ_DEFAULTS>."
++msgstr "Opções padrão específicas do usuário ou de todo o sistema. Normalmente, isso é definido em um script de inicialização do shell para habilitar o limitador de uso de memória do B<xz> por padrão. Excluindo scripts de inicialização de shell e casos especiais semelhantes, os scripts nunca devem definir ou remover a definição de B<XZ_DEFAULTS>."
++
++#. type: TP
++#: ../src/xz/xz.1:2379
++#, no-wrap
++msgid "B<XZ_OPT>"
++msgstr "B<XZ_OPT>"
++
++#. type: Plain text
++#: ../src/xz/xz.1:2390
++msgid "This is for passing options to B<xz> when it is not possible to set the options directly on the B<xz> command line. This is the case when B<xz> is run by a script or tool, for example, GNU B<tar>(1):"
++msgstr "Isso é para passar opções para B<xz> quando não é possível definir as opções diretamente na linha de comando B<xz>. Este é o caso quando B<xz> é executado por um script ou ferramenta, por exemplo, GNU B<tar>(1):"
++
++#. type: Plain text
++#: ../src/xz/xz.1:2396
++#, no-wrap
++msgid "CW<XZ_OPT=-2v tar caf foo.tar.xz foo>\n"
++msgstr "CW<XZ_OPT=-2v tar caf foo.tar.xz foo>\n"
++
++#. type: Plain text
++#: ../src/xz/xz.1:2410
++msgid "Scripts may use B<XZ_OPT>, for example, to set script-specific default compression options. It is still recommended to allow users to override B<XZ_OPT> if that is reasonable. For example, in B<sh>(1) scripts one may use something like this:"
++msgstr "Os scripts podem usar B<XZ_OPT>, por exemplo, para definir opções de compactação padrão específicas do script. Ainda é recomendável permitir que os usuários substituam B<XZ_OPT> se isso for razoável. Por exemplo, em scripts B<sh>(1) pode-se usar algo assim:"
++
++#. type: Plain text
++#: ../src/xz/xz.1:2417
++#, no-wrap
++msgid ""
++"CW<XZ_OPT=${XZ_OPT-\"-7e\"}\n"
++"export XZ_OPT>\n"
++msgstr ""
++"CW<XZ_OPT=${XZ_OPT-\"-7e\"}\n"
++"export XZ_OPT>\n"
++
++#. type: SH
++#: ../src/xz/xz.1:2422
++#, no-wrap
++msgid "LZMA UTILS COMPATIBILITY"
++msgstr "COMPATIBILIDADE COM LZMA UTILS"
++
++#. type: Plain text
++#: ../src/xz/xz.1:2435
++msgid "The command line syntax of B<xz> is practically a superset of B<lzma>, B<unlzma>, and B<lzcat> as found from LZMA Utils 4.32.x. In most cases, it is possible to replace LZMA Utils with XZ Utils without breaking existing scripts. There are some incompatibilities though, which may sometimes cause problems."
++msgstr "A sintaxe da linha de comando do B<xz> é praticamente um superconjunto de B<lzma>, B<unlzma> e B<lzcat> conforme encontrado no LZMA Utils 4.32.x. Na maioria dos casos, é possível substituir LZMA Utils por XZ Utils sem interromper os scripts existentes. Existem algumas incompatibilidades, porém, que às vezes podem causar problemas."
++
++#. type: SS
++#: ../src/xz/xz.1:2436
++#, no-wrap
++msgid "Compression preset levels"
++msgstr "Níveis de predefinição de compactação"
++
++#. type: Plain text
++#: ../src/xz/xz.1:2443
++msgid "The numbering of the compression level presets is not identical in B<xz> and LZMA Utils. The most important difference is how dictionary sizes are mapped to different presets. Dictionary size is roughly equal to the decompressor memory usage."
++msgstr "A numeração das predefinições de nível de compactação não é idêntica em B<xz> e LZMA Utils. A diferença mais importante é como os tamanhos dos dicionários são mapeados para diferentes predefinições. O tamanho do dicionário é aproximadamente igual ao uso de memória do descompactador."
++
++#. type: tbl table
++#: ../src/xz/xz.1:2449 ../src/xz/xz.1:2474
++#, no-wrap
++msgid "Level"
++msgstr "Nível"
++
++#. type: tbl table
++#: ../src/xz/xz.1:2449 ../src/xz/xz.1:2474
++#, no-wrap
++msgid "xz"
++msgstr "xz"
++
++#. type: tbl table
++#: ../src/xz/xz.1:2449
++#, no-wrap
++msgid "LZMA Utils"
++msgstr "LZMA Utils"
++
++#. type: tbl table
++#: ../src/xz/xz.1:2450 ../src/xz/xz.1:2475
++#, no-wrap
++msgid "N/A"
++msgstr "N/D"
++
++#. type: tbl table
++#: ../src/xz/xz.1:2451
++#, no-wrap
++msgid "64 KiB"
++msgstr "64 KiB"
++
++#. type: tbl table
++#: ../src/xz/xz.1:2453
++#, no-wrap
++msgid "512 KiB"
++msgstr "512 KiB"
++
++#. type: Plain text
++#: ../src/xz/xz.1:2468
++msgid "The dictionary size differences affect the compressor memory usage too, but there are some other differences between LZMA Utils and XZ Utils, which make the difference even bigger:"
++msgstr "As diferenças de tamanho do dicionário também afetam o uso da memória do compressor, mas existem algumas outras diferenças entre LZMA Utils e XZ Utils, que tornam a diferença ainda maior:"
++
++#. type: tbl table
++#: ../src/xz/xz.1:2474
++#, no-wrap
++msgid "LZMA Utils 4.32.x"
++msgstr "LZMA Utils 4.32.x"
++
++#. type: tbl table
++#: ../src/xz/xz.1:2477 ../src/xz/xz.1:2478
++#, no-wrap
++msgid "12 MiB"
++msgstr "12 MiB"
++
++#. type: tbl table
++#: ../src/xz/xz.1:2480
++#, no-wrap
++msgid "26 MiB"
++msgstr "26 MiB"
++
++#. type: tbl table
++#: ../src/xz/xz.1:2481
++#, no-wrap
++msgid "45 MiB"
++msgstr "45 MiB"
++
++#. type: tbl table
++#: ../src/xz/xz.1:2482
++#, no-wrap
++msgid "83 MiB"
++msgstr "83 MiB"
++
++#. type: tbl table
++#: ../src/xz/xz.1:2483
++#, no-wrap
++msgid "159 MiB"
++msgstr "159 MiB"
++
++#. type: tbl table
++#: ../src/xz/xz.1:2484
++#, no-wrap
++msgid "311 MiB"
++msgstr "311 MiB"
++
++#. type: Plain text
++#: ../src/xz/xz.1:2493
++msgid "The default preset level in LZMA Utils is B<-7> while in XZ Utils it is B<-6>, so both use an 8 MiB dictionary by default."
++msgstr "O nível de predefinição padrão no LZMA Utils é B<-7> enquanto no XZ Utils é B<-6>, então ambos usam um dicionário de 8 MiB por padrão."
++
++#. type: SS
++#: ../src/xz/xz.1:2494
++#, no-wrap
++msgid "Streamed vs. non-streamed .lzma files"
++msgstr "Arquivos .lzma em um fluxo versus sem ser em um fluxo"
++
++#. type: Plain text
++#: ../src/xz/xz.1:2504
++msgid "The uncompressed size of the file can be stored in the B<.lzma> header. LZMA Utils does that when compressing regular files. The alternative is to mark that uncompressed size is unknown and use end-of-payload marker to indicate where the decompressor should stop. LZMA Utils uses this method when uncompressed size isn't known, which is the case, for example, in pipes."
++msgstr "O tamanho descompactado do arquivo pode ser armazenado no cabeçalho de B<.lzma>. O LZMA Utils faz isso ao compactar arquivos comuns. A alternativa é marcar que o tamanho não compactado é desconhecido e usar o marcador de fim de carga útil para indicar onde o descompactador deve parar. O LZMA Utils usa este método quando o tamanho não compactado não é conhecido, como é o caso, por exemplo, de encadeamentos (pipes)."
++
++#. type: Plain text
++#: ../src/xz/xz.1:2525
++msgid "B<xz> supports decompressing B<.lzma> files with or without end-of-payload marker, but all B<.lzma> files created by B<xz> will use end-of-payload marker and have uncompressed size marked as unknown in the B<.lzma> header. This may be a problem in some uncommon situations. For example, a B<.lzma> decompressor in an embedded device might work only with files that have known uncompressed size. If you hit this problem, you need to use LZMA Utils or LZMA SDK to create B<.lzma> files with known uncompressed size."
++msgstr "B<xz> oferece suporte à descompactação de arquivos B<.lzma> com ou sem marcador de fim de carga útil, mas todos os arquivos B<.lzma> criados por B<xz> usarão marcador de fim de carga útil e terão o tamanho descompactado marcado como desconhecido no cabeçalho de B<.lzma>. Isso pode ser um problema em algumas situações incomuns. Por exemplo, um descompactador de B<.lzma> em um dispositivo embarcado pode funcionar apenas com arquivos que tenham tamanho descompactado conhecido. Se você encontrar esse problema, precisará usar o LZMA Utils ou o LZMA SDK para criar arquivos B<.lzma> com tamanho descompactado conhecido."
++
++#. type: SS
++#: ../src/xz/xz.1:2526
++#, no-wrap
++msgid "Unsupported .lzma files"
++msgstr "Arquivos .lzma não suportados"
++
++#. type: Plain text
++#: ../src/xz/xz.1:2549
++msgid "The B<.lzma> format allows I<lc> values up to 8, and I<lp> values up to 4. LZMA Utils can decompress files with any I<lc> and I<lp>, but always creates files with B<lc=3> and B<lp=0>. Creating files with other I<lc> and I<lp> is possible with B<xz> and with LZMA SDK."
++msgstr "O formato B<.lzma> permite valores I<lc> até 8 e valores I<lp> até 4. LZMA Utils pode descompactar arquivos com qualquer I<lc> e I<lp>, mas sempre cria arquivos com B<lc=3> e B<lp=0>. Criar arquivos com outros I<lc> e I<lp> é possível com B<xz> e com LZMA SDK."
++
++#. type: Plain text
++#: ../src/xz/xz.1:2560
++msgid "The implementation of the LZMA1 filter in liblzma requires that the sum of I<lc> and I<lp> must not exceed 4. Thus, B<.lzma> files, which exceed this limitation, cannot be decompressed with B<xz>."
++msgstr "A implementação do filtro LZMA1 em liblzma requer que a soma de I<lc> e I<lp> não exceda 4. Assim, arquivos B<.lzma>, que excedam esta limitação, não podem ser descompactados com B<xz>."
++
++#. type: Plain text
++#: ../src/xz/xz.1:2575
++msgid "LZMA Utils creates only B<.lzma> files which have a dictionary size of 2^I<n> (a power of 2) but accepts files with any dictionary size. liblzma accepts only B<.lzma> files which have a dictionary size of 2^I<n> or 2^I<n> + 2^(I<n>-1). This is to decrease false positives when detecting B<.lzma> files."
++msgstr "LZMA Utils cria apenas arquivos B<.lzma> que possuem um tamanho de dicionário de 2^I<n> (uma potência de 2), mas aceita arquivos com qualquer tamanho de dicionário. liblzma aceita apenas arquivos B<.lzma> que tenham um tamanho de dicionário de 2^I<n> ou 2^I<n> + 2^(I<n>-1). Isso é para diminuir os falsos positivos ao detectar arquivos B<.lzma>."
++
++#. type: Plain text
++#: ../src/xz/xz.1:2580
++msgid "These limitations shouldn't be a problem in practice, since practically all B<.lzma> files have been compressed with settings that liblzma will accept."
++msgstr "Essas limitações não devem ser um problema na prática, já que praticamente todos os arquivos B<.lzma> foram compactados com configurações que o liblzma aceitará."
++
++#. type: SS
++#: ../src/xz/xz.1:2581
++#, no-wrap
++msgid "Trailing garbage"
++msgstr "Lixo à direita"
++
++#. type: Plain text
++#: ../src/xz/xz.1:2591
++msgid "When decompressing, LZMA Utils silently ignore everything after the first B<.lzma> stream. In most situations, this is a bug. This also means that LZMA Utils don't support decompressing concatenated B<.lzma> files."
++msgstr "Ao descompactar, o LZMA Utils silenciosamente ignora tudo após o primeiro fluxo B<.lzma>. Na maioria das situações, isso é um bug. Isso também significa que o LZMA Utils não oferece suporte a descompactação de arquivos B<.lzma> concatenados."
++
++#. type: Plain text
++#: ../src/xz/xz.1:2601
++msgid "If there is data left after the first B<.lzma> stream, B<xz> considers the file to be corrupt unless B<--single-stream> was used. This may break obscure scripts which have assumed that trailing garbage is ignored."
++msgstr "Se houver dados restantes após o primeiro fluxo de B<.lzma>, B<xz> considera o arquivo corrompido, a menos que B<--single-stream> tenha sido usado. Isso pode quebrar scripts obscuros que presumiram que o lixo à direita é ignorado."
++
++#. type: SH
++#: ../src/xz/xz.1:2602 ../src/xzdec/xzdec.1:117
++#, no-wrap
++msgid "NOTES"
++msgstr "NOTAS"
++
++#. type: SS
++#: ../src/xz/xz.1:2604
++#, no-wrap
++msgid "Compressed output may vary"
++msgstr "A saída compactada pode variar"
++
++#. type: Plain text
++#: ../src/xz/xz.1:2615
++msgid "The exact compressed output produced from the same uncompressed input file may vary between XZ Utils versions even if compression options are identical. This is because the encoder can be improved (faster or better compression) without affecting the file format. The output can vary even between different builds of the same XZ Utils version, if different build options are used."
++msgstr "A saída compactada exata produzida a partir do mesmo arquivo de entrada não compactado pode variar entre as versões do XZ Utils, mesmo se as opções de compactação forem idênticas. Isso ocorre porque o codificador pode ser aprimorado (compactação mais rápida ou melhor) sem afetar o formato do arquivo. A saída pode variar mesmo entre diferentes compilações da mesma versão do XZ Utils, se diferentes opções de compilação forem usadas."
++
++#. type: Plain text
++#: ../src/xz/xz.1:2625
++msgid "The above means that once B<--rsyncable> has been implemented, the resulting files won't necessarily be rsyncable unless both old and new files have been compressed with the same xz version. This problem can be fixed if a part of the encoder implementation is frozen to keep rsyncable output stable across xz versions."
++msgstr "A informação acima significa que, uma vez que B<--rsyncable> tenha sido implementado, os arquivos resultantes não serão necessariamente \"rsyncáveis\", a menos que os arquivos antigos e novos tenham sido compactados com a mesma versão xz. Esse problema pode ser corrigido se uma parte da implementação do codificador for congelada para manter a saída de rsyncable estável nas versões do xz."
++
++#. type: SS
++#: ../src/xz/xz.1:2626
++#, no-wrap
++msgid "Embedded .xz decompressors"
++msgstr "Descompactadores .xz embarcados"
++
++#. type: Plain text
++#: ../src/xz/xz.1:2643
++msgid "Embedded B<.xz> decompressor implementations like XZ Embedded don't necessarily support files created with integrity I<check> types other than B<none> and B<crc32>. Since the default is B<--check=crc64>, you must use B<--check=none> or B<--check=crc32> when creating files for embedded systems."
++msgstr "As implementações do descompactador B<.xz> embarcados, como o XZ Embedded, não oferecem necessariamente suporte a arquivos criados com tipos de I<verificações> de integridade diferentes de B<none> e B<crc32>. Como o padrão é B<--check=crc64>, você deve usar B<--check=none> ou B<--check=crc32> ao criar arquivos para sistemas embarcados."
++
++#. type: Plain text
++#: ../src/xz/xz.1:2653
++msgid "Outside embedded systems, all B<.xz> format decompressors support all the I<check> types, or at least are able to decompress the file without verifying the integrity check if the particular I<check> is not supported."
++msgstr "Fora dos sistemas embarcados, todos os descompactadores de formato B<.xz> oferecem suporte a todos os tipos de I<verificação> ou, pelo menos, são capazes de descompactar o arquivo sem verificar a verificação de integridade se a I<verificação> específica não for suportada."
++
++#. type: Plain text
++#: ../src/xz/xz.1:2656
++msgid "XZ Embedded supports BCJ filters, but only with the default start offset."
++msgstr "XZ Embedded oferece suporte a filtros BCJ, mas apenas com o deslocamento inicial padrão."
++
++#. type: SH
++#: ../src/xz/xz.1:2657
++#, no-wrap
++msgid "EXAMPLES"
++msgstr "EXEMPLOS"
++
++#. type: SS
++#: ../src/xz/xz.1:2659
++#, no-wrap
++msgid "Basics"
++msgstr "Básico"
++
++#. type: Plain text
++#: ../src/xz/xz.1:2669
++msgid "Compress the file I<foo> into I<foo.xz> using the default compression level (B<-6>), and remove I<foo> if compression is successful:"
++msgstr "Compactar o arquivo I<foo> em I<foo.xz> usando o nível de compactação padrão (B<-6>) e remover I<foo> se a compactação for bem-sucedida:"
++
++#. type: Plain text
++#: ../src/xz/xz.1:2674
++#, no-wrap
++msgid "CW<xz foo>\n"
++msgstr "CW<xz foo>\n"
++
++#. type: Plain text
++#: ../src/xz/xz.1:2685
++msgid "Decompress I<bar.xz> into I<bar> and don't remove I<bar.xz> even if decompression is successful:"
++msgstr "Descompactar I<bar.xz> em I<bar> e não remover I<bar.xz> mesmo se a descompactação for bem-sucedida:"
++
++#. type: Plain text
++#: ../src/xz/xz.1:2690
++#, no-wrap
++msgid "CW<xz -dk bar.xz>\n"
++msgstr "CW<xz -dk bar.xz>\n"
++
++#. type: Plain text
++#: ../src/xz/xz.1:2703
++msgid "Create I<baz.tar.xz> with the preset B<-4e> (B<-4 --extreme>), which is slower than the default B<-6>, but needs less memory for compression and decompression (48\\ MiB and 5\\ MiB, respectively):"
++msgstr "Criar I<baz.tar.xz> com a predefinição B<-4e> (B<-4 --extreme>), que é mais lenta que o padrão B<-6>, mas precisa de menos memória para compactação e descompactação (48 \\ MiB e 5\\ MiB, respectivamente):"
++
++#. type: Plain text
++#: ../src/xz/xz.1:2708
++#, no-wrap
++msgid "CW<tar cf - baz | xz -4e E<gt> baz.tar.xz>\n"
++msgstr "CW<tar cf - baz | xz -4e E<gt> baz.tar.xz>\n"
++
++#. type: Plain text
++#: ../src/xz/xz.1:2714
++msgid "A mix of compressed and uncompressed files can be decompressed to standard output with a single command:"
++msgstr "Uma mistura de arquivos compactados e descompactados pode ser descompactada para a saída padrão com um único comando:"
++
++#. type: Plain text
++#: ../src/xz/xz.1:2719
++#, no-wrap
++msgid "CW<xz -dcf a.txt b.txt.xz c.txt d.txt.lzma E<gt> abcd.txt>\n"
++msgstr "CW<xz -dcf a.txt b.txt.xz c.txt d.txt.lzma E<gt> abcd.txt>\n"
++
++#. type: SS
++#: ../src/xz/xz.1:2723
++#, no-wrap
++msgid "Parallel compression of many files"
++msgstr "Compactação paralela de muitos arquivos"
++
++#. type: Plain text
++#: ../src/xz/xz.1:2729
++msgid "On GNU and *BSD, B<find>(1) and B<xargs>(1) can be used to parallelize compression of many files:"
++msgstr "No GNU e *BSD, B<find>(1) e B<xargs>(1) podem ser usados para paralelizar a compactação de muitos arquivos:"
++
++#. type: Plain text
++#: ../src/xz/xz.1:2735
++#, no-wrap
++msgid ""
++"CW<find . -type f \\e! -name '*.xz' -print0 \\e\n"
++" | xargs -0r -P4 -n16 xz -T1>\n"
++msgstr ""
++"CW<find . -type f \\e! -name '*.xz' -print0 \\e\n"
++" | xargs -0r -P4 -n16 xz -T1>\n"
++
++#. type: Plain text
++#: ../src/xz/xz.1:2757
++msgid "The B<-P> option to B<xargs>(1) sets the number of parallel B<xz> processes. The best value for the B<-n> option depends on how many files there are to be compressed. If there are only a couple of files, the value should probably be 1; with tens of thousands of files, 100 or even more may be appropriate to reduce the number of B<xz> processes that B<xargs>(1) will eventually create."
++msgstr "A opção B<-P> para B<xargs>(1) define o número de processos paralelos do B<xz>. O melhor valor para a opção B<-n> depende de quantos arquivos devem ser compactados. Se houver apenas alguns arquivos, o valor provavelmente deve ser 1; com dezenas de milhares de arquivos, 100 ou até mais podem ser apropriados para reduzir o número de processos de B<xz> que B<xargs>(1) eventualmente criará."
++
++#. type: Plain text
++#: ../src/xz/xz.1:2765
++msgid "The option B<-T1> for B<xz> is there to force it to single-threaded mode, because B<xargs>(1) is used to control the amount of parallelization."
++msgstr "A opção B<-T1> para B<xz> existe para forçá-lo ao modo de thread única, porque B<xargs>(1) é usado para controlar a quantidade de paralelização."
++
++#. type: SS
++#: ../src/xz/xz.1:2766
++#, no-wrap
++msgid "Robot mode"
++msgstr "Modo robô"
++
++#. type: Plain text
++#: ../src/xz/xz.1:2769
++msgid "Calculate how many bytes have been saved in total after compressing multiple files:"
++msgstr "Calcular quantos bytes foram salvos no total depois de compactar vários arquivos:"
++
++#. type: Plain text
++#: ../src/xz/xz.1:2774
++#, no-wrap
++msgid "CW<xz --robot --list *.xz | awk '/^totals/{print $5-$4}'>\n"
++msgstr "CW<xz --robot --list *.xz | awk '/^totals/{print $5-$4}'>\n"
++
++#. type: Plain text
++#: ../src/xz/xz.1:2789
++msgid "A script may want to know that it is using new enough B<xz>. The following B<sh>(1) script checks that the version number of the B<xz> tool is at least 5.0.0. This method is compatible with old beta versions, which didn't support the B<--robot> option:"
++msgstr "Um script pode querer saber que está usando B<xz> novo o suficiente. O seguinte script B<sh>(1) verifica se o número da versão da ferramenta B<xz> é pelo menos 5.0.0. Este método é compatível com versões beta antigas, que não suportavam a opção B<--robot>:"
++
++#. type: Plain text
++#: ../src/xz/xz.1:2798
++#, no-wrap
++msgid ""
++"CW<if ! eval \"$(xz --robot --version 2E<gt> /dev/null)\" ||\n"
++" [ \"$XZ_VERSION\" -lt 50000002 ]; then\n"
++" echo \"Your xz is too old.\"\n"
++"fi\n"
++"unset XZ_VERSION LIBLZMA_VERSION>\n"
++msgstr ""
++"CW<if ! eval \"$(xz --robot --version 2E<gt> /dev/null)\" ||\n"
++" [ \"$XZ_VERSION\" -lt 50000002 ]; then\n"
++" echo \"Your xz is too old.\"\n"
++"fi\n"
++"unset XZ_VERSION LIBLZMA_VERSION>\n"
++
++#. type: Plain text
++#: ../src/xz/xz.1:2805
++msgid "Set a memory usage limit for decompression using B<XZ_OPT>, but if a limit has already been set, don't increase it:"
++msgstr "Definir um limite de uso de memória para descompactação usando B<XZ_OPT>, mas se um limite já tiver sido definido, não o aumentar:"
++
++#. type: Plain text
++#: ../src/xz/xz.1:2815
++#, no-wrap
++msgid ""
++"CW<NEWLIM=$((123 E<lt>E<lt> 20))\\ \\ # 123 MiB\n"
++"OLDLIM=$(xz --robot --info-memory | cut -f3)\n"
++"if [ $OLDLIM -eq 0 -o $OLDLIM -gt $NEWLIM ]; then\n"
++" XZ_OPT=\"$XZ_OPT --memlimit-decompress=$NEWLIM\"\n"
++" export XZ_OPT\n"
++"fi>\n"
++msgstr ""
++"CW<NEWLIM=$((123 E<lt>E<lt> 20))\\ \\ # 123 MiB\n"
++"OLDLIM=$(xz --robot --info-memory | cut -f3)\n"
++"if [ $OLDLIM -eq 0 -o $OLDLIM -gt $NEWLIM ]; then\n"
++" XZ_OPT=\"$XZ_OPT --memlimit-decompress=$NEWLIM\"\n"
++" export XZ_OPT\n"
++"fi>\n"
++
++#. type: Plain text
++#: ../src/xz/xz.1:2825
++msgid "The simplest use for custom filter chains is customizing a LZMA2 preset. This can be useful, because the presets cover only a subset of the potentially useful combinations of compression settings."
++msgstr "O uso mais simples para cadeias de filtro personalizadas é personalizar uma predefinição LZMA2. Isso pode ser útil, porque as predefinições abrangem apenas um subconjunto das combinações potencialmente úteis de configurações de compactação."
++
++#. type: Plain text
++#: ../src/xz/xz.1:2833
++msgid "The CompCPU columns of the tables from the descriptions of the options B<-0> ... B<-9> and B<--extreme> are useful when customizing LZMA2 presets. Here are the relevant parts collected from those two tables:"
++msgstr "As colunas CompCPU das tabelas das descrições das opções B<-0> ... B<-9> e B<--extreme> são úteis ao personalizar as predefinições LZMA2. Aqui estão as partes relevantes coletadas dessas duas tabelas:"
++
++#. type: Plain text
++#: ../src/xz/xz.1:2858
++msgid "If you know that a file requires somewhat big dictionary (for example, 32\\ MiB) to compress well, but you want to compress it quicker than B<xz -8> would do, a preset with a low CompCPU value (for example, 1) can be modified to use a bigger dictionary:"
++msgstr "Se você sabe que um arquivo requer um dicionário um tanto grande (por exemplo, 32\\ MiB) para compactar bem, mas deseja comprimi-lo mais rapidamente do que B<xz -8> faria, uma predefinição com um valor CompCPU baixo (por exemplo, 1) pode ser modificado para usar um dicionário maior:"
++
++#. type: Plain text
++#: ../src/xz/xz.1:2863
++#, no-wrap
++msgid "CW<xz --lzma2=preset=1,dict=32MiB foo.tar>\n"
++msgstr "CW<xz --lzma2=preset=1,dict=32MiB foo.tar>\n"
++
++#. type: Plain text
++#: ../src/xz/xz.1:2879
++msgid "With certain files, the above command may be faster than B<xz -6> while compressing significantly better. However, it must be emphasized that only some files benefit from a big dictionary while keeping the CompCPU value low. The most obvious situation, where a big dictionary can help a lot, is an archive containing very similar files of at least a few megabytes each. The dictionary size has to be significantly bigger than any individual file to allow LZMA2 to take full advantage of the similarities between consecutive files."
++msgstr "Com certos arquivos, o comando acima pode ser mais rápido que B<xz -6> enquanto compacta significativamente melhor. No entanto, deve-se enfatizar que apenas alguns arquivos se beneficiam de um grande dicionário, mantendo o valor CompCPU baixo. A situação mais óbvia, onde um grande dicionário pode ajudar muito, é um arquivo contendo arquivos muito semelhantes de pelo menos alguns megabytes cada. O tamanho do dicionário deve ser significativamente maior do que qualquer arquivo individual para permitir que o LZMA2 aproveite ao máximo as semelhanças entre arquivos consecutivos."
++
++#. type: Plain text
++#: ../src/xz/xz.1:2886
++msgid "If very high compressor and decompressor memory usage is fine, and the file being compressed is at least several hundred megabytes, it may be useful to use an even bigger dictionary than the 64 MiB that B<xz -9> would use:"
++msgstr "Se o uso muito alto de memória do compactador e do descompactador for bom e o arquivo que está sendo compactado tiver pelo menos várias centenas de megabytes, pode ser útil usar um dicionário ainda maior do que os 64 MiB que o B<xz -9> usaria:"
++
++#. type: Plain text
++#: ../src/xz/xz.1:2891
++#, no-wrap
++msgid "CW<xz -vv --lzma2=dict=192MiB big_foo.tar>\n"
++msgstr "CW<xz -vv --lzma2=dict=192MiB big_foo.tar>\n"
++
++#. type: Plain text
++#: ../src/xz/xz.1:2904
++msgid "Using B<-vv> (B<--verbose --verbose>) like in the above example can be useful to see the memory requirements of the compressor and decompressor. Remember that using a dictionary bigger than the size of the uncompressed file is waste of memory, so the above command isn't useful for small files."
++msgstr "Usar B<-vv> (B<--verbose --verbose>) como no exemplo acima pode ser útil para ver os requisitos de memória do compactador e do descompactador. Lembre-se que usar um dicionário maior que o tamanho do arquivo descompactado é desperdício de memória, então o comando acima não é útil para arquivos pequenos."
++
++#. type: Plain text
++#: ../src/xz/xz.1:2916
++msgid "Sometimes the compression time doesn't matter, but the decompressor memory usage has to be kept low, for example, to make it possible to decompress the file on an embedded system. The following command uses B<-6e> (B<-6 --extreme>) as a base and sets the dictionary to only 64\\ KiB. The resulting file can be decompressed with XZ Embedded (that's why there is B<--check=crc32>) using about 100\\ KiB of memory."
++msgstr "Às vezes, o tempo de compactação não importa, mas o uso de memória do descompactador deve ser mantido baixo, por exemplo, para possibilitar a descompactação do arquivo em um sistema embarcado. O comando a seguir usa B<-6e> (B<-6 --extreme>) como base e define o dicionário como apenas 64\\ KiB. O arquivo resultante pode ser descompactado com XZ Embedded (é por isso que existe B<--check=crc32>) usando cerca de 100\\ KiB de memória."
++
++#. type: Plain text
++#: ../src/xz/xz.1:2921
++#, no-wrap
++msgid "CW<xz --check=crc32 --lzma2=preset=6e,dict=64KiB foo>\n"
++msgstr "CW<xz --check=crc32 --lzma2=preset=6e,dict=64KiB foo>\n"
++
++#. type: Plain text
++#: ../src/xz/xz.1:2944
++msgid "If you want to squeeze out as many bytes as possible, adjusting the number of literal context bits (I<lc>) and number of position bits (I<pb>) can sometimes help. Adjusting the number of literal position bits (I<lp>) might help too, but usually I<lc> and I<pb> are more important. For example, a source code archive contains mostly US-ASCII text, so something like the following might give slightly (like 0.1\\ %) smaller file than B<xz -6e> (try also without B<lc=4>):"
++msgstr "Se você deseja espremer o máximo de bytes possível, ajustar o número de bits de contexto literal (I<lc>) e o número de bits de posição (I<pb>) às vezes pode ajudar. Ajustar o número de bits de posição literal (I<lp>) também pode ajudar, mas geralmente I<lc> e I<pb> são mais importantes. Por exemplo, um arquivo de código-fonte contém principalmente texto US-ASCII, então algo como o seguinte pode fornecer um arquivo ligeiramente (como 0,1\\ %) menor que B<xz -6e> (tente também sem B<lc=4>):"
++
++#. type: Plain text
++#: ../src/xz/xz.1:2949
++#, no-wrap
++msgid "CW<xz --lzma2=preset=6e,pb=0,lc=4 source_code.tar>\n"
++msgstr "CW<xz --lzma2=preset=6e,pb=0,lc=4 source_code.tar>\n"
++
++#. type: Plain text
++#: ../src/xz/xz.1:2957
++msgid "Using another filter together with LZMA2 can improve compression with certain file types. For example, to compress a x86-32 or x86-64 shared library using the x86 BCJ filter:"
++msgstr "O uso de outro filtro junto com o LZMA2 pode melhorar a compactação com determinados tipos de arquivo. Por exemplo, para compactar uma biblioteca compartilhada x86-32 ou x86-64 usando o filtro x86 BCJ:"
++
++#. type: Plain text
++#: ../src/xz/xz.1:2962
++#, no-wrap
++msgid "CW<xz --x86 --lzma2 libfoo.so>\n"
++msgstr "CW<xz --x86 --lzma2 libfoo.so>\n"
++
++#. type: Plain text
++#: ../src/xz/xz.1:2976
++msgid "Note that the order of the filter options is significant. If B<--x86> is specified after B<--lzma2>, B<xz> will give an error, because there cannot be any filter after LZMA2, and also because the x86 BCJ filter cannot be used as the last filter in the chain."
++msgstr "Observe que a ordem das opções de filtro é significativa. Se B<--x86> for especificado após B<--lzma2>, B<xz> dará um erro, porque não pode haver nenhum filtro após LZMA2 e também porque o filtro x86 BCJ não pode ser usado como o último filtro em a corrente."
++
++#. type: Plain text
++#: ../src/xz/xz.1:2982
++msgid "The Delta filter together with LZMA2 can give good results with bitmap images. It should usually beat PNG, which has a few more advanced filters than simple delta but uses Deflate for the actual compression."
++msgstr "O filtro Delta junto com LZMA2 pode dar bons resultados com imagens bitmap. Ele geralmente deve superar o PNG, que possui alguns filtros mais avançados do que o delta simples, mas usa Deflate para a compactação real."
++
++#. type: Plain text
++#: ../src/xz/xz.1:2992
++msgid "The image has to be saved in uncompressed format, for example, as uncompressed TIFF. The distance parameter of the Delta filter is set to match the number of bytes per pixel in the image. For example, 24-bit RGB bitmap needs B<dist=3>, and it is also good to pass B<pb=0> to LZMA2 to accommodate the three-byte alignment:"
++msgstr "A imagem deve ser salva em formato não compactado, por exemplo, como TIFF não compactado. O parâmetro de distância do filtro Delta é definido para corresponder ao número de bytes por pixel na imagem. Por exemplo, bitmap RGB de 24 bits precisa de B<dist=3>, e também é bom passar B<pb=0> para LZMA2 para acomodar o alinhamento de três bytes:"
++
++#. type: Plain text
++#: ../src/xz/xz.1:2997
++#, no-wrap
++msgid "CW<xz --delta=dist=3 --lzma2=pb=0 foo.tiff>\n"
++msgstr "CW<xz --delta=dist=3 --lzma2=pb=0 foo.tiff>\n"
++
++#. type: Plain text
++#: ../src/xz/xz.1:3005
++msgid "If multiple images have been put into a single archive (for example, B<.tar>), the Delta filter will work on that too as long as all images have the same number of bytes per pixel."
++msgstr "Se várias imagens foram colocadas em um único arquivo (por exemplo, B<.tar>), o filtro Delta também funcionará, desde que todas as imagens tenham o mesmo número de bytes por pixel."
++
++#. type: SH
++#: ../src/xz/xz.1:3006 ../src/xzdec/xzdec.1:143 ../src/lzmainfo/lzmainfo.1:59
++#: ../src/scripts/xzdiff.1:65 ../src/scripts/xzgrep.1:106
++#: ../src/scripts/xzless.1:65 ../src/scripts/xzmore.1:51
++#, no-wrap
++msgid "SEE ALSO"
++msgstr "VEJA TAMBÉM"
++
++#. type: Plain text
++#: ../src/xz/xz.1:3015
++msgid "B<xzdec>(1), B<xzdiff>(1), B<xzgrep>(1), B<xzless>(1), B<xzmore>(1), B<gzip>(1), B<bzip2>(1), B<7z>(1)"
++msgstr "B<xzdec>(1), B<xzdiff>(1), B<xzgrep>(1), B<xzless>(1), B<xzmore>(1), B<gzip>(1), B<bzip2>(1), B<7z>(1)"
++
++#. type: Plain text
++#: ../src/xz/xz.1:3017
++msgid "XZ Utils: E<lt>https://tukaani.org/xz/E<gt>"
++msgstr "XZ Utils: E<lt>https://tukaani.org/xz/E<gt>"
++
++#. type: Plain text
++#: ../src/xz/xz.1:3019 ../src/xzdec/xzdec.1:146
++msgid "XZ Embedded: E<lt>https://tukaani.org/xz/embedded.htmlE<gt>"
++msgstr "XZ Embedded: E<lt>https://tukaani.org/xz/embedded.htmlE<gt>"
++
++#. type: Plain text
++#: ../src/xz/xz.1:3020
++msgid "LZMA SDK: E<lt>http://7-zip.org/sdk.htmlE<gt>"
++msgstr "LZMA SDK: E<lt>http://7-zip.org/sdk.htmlE<gt>"
++
++#. type: TH
++#: ../src/xzdec/xzdec.1:7
++#, no-wrap
++msgid "XZDEC"
++msgstr "XZDEC"
++
++#. type: TH
++#: ../src/xzdec/xzdec.1:7
++#, no-wrap
++msgid "2017-04-19"
++msgstr "2017-04-19"
++
++#. type: Plain text
++#: ../src/xzdec/xzdec.1:10
++msgid "xzdec, lzmadec - Small .xz and .lzma decompressors"
++msgstr "xzdec, lzmadec - Pequenos descompactadores .xz e .lzma"
++
++#. type: Plain text
++#: ../src/xzdec/xzdec.1:14
++msgid "B<xzdec> [I<option...>] [I<file...>]"
++msgstr "B<xzdec> [I<opção...>] [I<arquivo...>]"
++
++#. type: Plain text
++#: ../src/xzdec/xzdec.1:18
++msgid "B<lzmadec> [I<option...>] [I<file...>]"
++msgstr "B<lzmadec> [I<opção...>] [I<arquivo...>]"
++
++#. type: Plain text
++#: ../src/xzdec/xzdec.1:44
++msgid "B<xzdec> is a liblzma-based decompression-only tool for B<.xz> (and only B<.xz>) files. B<xzdec> is intended to work as a drop-in replacement for B<xz>(1) in the most common situations where a script has been written to use B<xz --decompress --stdout> (and possibly a few other commonly used options) to decompress B<.xz> files. B<lzmadec> is identical to B<xzdec> except that B<lzmadec> supports B<.lzma> files instead of B<.xz> files."
++msgstr "B<xzdec> é uma ferramenta de descompactação baseada em liblzma somente para arquivos B<.xz> (e somente B<.xz>). B<xzdec> destina-se a funcionar como um substituto para B<xz>(1) nas situações mais comuns em que um script foi escrito para usar B<xz --decompress --stdout> (e possivelmente alguns outras opções comumente usadas) para descompactar arquivos B<.xz>. B<lzmadec> é idêntico a B<xzdec> exceto que B<lzmadec> tem suporte a arquivos B<.lzma> em vez de arquivos B<.xz>."
++
++#. type: Plain text
++#: ../src/xzdec/xzdec.1:61
++msgid "To reduce the size of the executable, B<xzdec> doesn't support multithreading or localization, and doesn't read options from B<XZ_DEFAULTS> and B<XZ_OPT> environment variables. B<xzdec> doesn't support displaying intermediate progress information: sending B<SIGINFO> to B<xzdec> does nothing, but sending B<SIGUSR1> terminates the process instead of displaying progress information."
++msgstr "Para reduzir o tamanho do executável, B<xzdec> não tem suporte ao uso de várias threads ou a localização, e não lê opções de variáveis de ambiente B<XZ_DEFAULTS> e B<XZ_OPT>. B<xzdec> não tem suporte à exibição de informações de progresso intermediárias: enviar B<SIGINFO> para B<xzdec> não faz nada, mas enviar B<SIGUSR1> encerra o processo em vez de exibir informações de progresso."
++
++#. type: Plain text
++#: ../src/xzdec/xzdec.1:69
++msgid "Ignored for B<xz>(1) compatibility. B<xzdec> supports only decompression."
++msgstr "Ignorada para compatibilidade B<xz>(1). B<xzdec> tem suporte a apenas descompactação."
++
++#. type: Plain text
++#: ../src/xzdec/xzdec.1:76
++msgid "Ignored for B<xz>(1) compatibility. B<xzdec> never creates or removes any files."
++msgstr "Ignorada para compatibilidade B<xz>(1). B<xzdec> nunca cria ou remove quaisquer arquivos."
++
++#. type: Plain text
++#: ../src/xzdec/xzdec.1:83
++msgid "Ignored for B<xz>(1) compatibility. B<xzdec> always writes the decompressed data to standard output."
++msgstr "Ignorada para compatibilidade B<xz>(1). B<xzdec> sempre grava os dados descompactados para a saída padrão."
++
++#. type: Plain text
++#: ../src/xzdec/xzdec.1:89
++msgid "Specifying this once does nothing since B<xzdec> never displays any warnings or notices. Specify this twice to suppress errors."
++msgstr "Especificar isso uma vez não faz nada, pois B<xzdec> nunca exibe nenhum aviso ou notificação. Especifique isso duas vezes para suprimir erros."
++
++#. type: Plain text
++#: ../src/xzdec/xzdec.1:96
++msgid "Ignored for B<xz>(1) compatibility. B<xzdec> never uses the exit status 2."
++msgstr "Ignorada para compatibilidade B<xz>(1). B<xzdec> nunca usa o status de saída 2."
++
++#. type: Plain text
++#: ../src/xzdec/xzdec.1:99
++msgid "Display a help message and exit successfully."
++msgstr "Exibe uma mensagem de ajuda e sai com sucesso."
++
++#. type: Plain text
++#: ../src/xzdec/xzdec.1:104
++msgid "Display the version number of B<xzdec> and liblzma."
++msgstr "Mostra o número da versão do B<xzdec> e liblzma."
++
++#. type: Plain text
++#: ../src/xzdec/xzdec.1:108
++msgid "All was good."
++msgstr "Correu tudo bem."
++
++#. type: Plain text
++#: ../src/xzdec/xzdec.1:117
++msgid "B<xzdec> doesn't have any warning messages like B<xz>(1) has, thus the exit status 2 is not used by B<xzdec>."
++msgstr "B<xzdec> não possui nenhuma mensagem de aviso como o B<xz>(1), portanto, o status de saída 2 não é usado por B<xzdec>."
++
++#. type: Plain text
++#: ../src/xzdec/xzdec.1:131
++msgid "Use B<xz>(1) instead of B<xzdec> or B<lzmadec> for normal everyday use. B<xzdec> or B<lzmadec> are meant only for situations where it is important to have a smaller decompressor than the full-featured B<xz>(1)."
++msgstr "Use B<xz>(1) em vez de B<xzdec> ou B<lzmadec> para uso diário normal. B<xzdec> ou B<lzmadec> destinam-se apenas a situações em que é importante ter um descompactador menor do que o B<xz>(1) completo."
++
++#. type: Plain text
++#: ../src/xzdec/xzdec.1:143
++msgid "B<xzdec> and B<lzmadec> are not really that small. The size can be reduced further by dropping features from liblzma at compile time, but that shouldn't usually be done for executables distributed in typical non-embedded operating system distributions. If you need a truly small B<.xz> decompressor, consider using XZ Embedded."
++msgstr "B<xzdec> e B<lzmadec> não são realmente tão pequenos. O tamanho pode ser reduzido ainda mais eliminando recursos do liblzma no tempo de compilação, mas isso geralmente não deve ser feito para executáveis distribuídos em distribuições típicas de sistemas operacionais não embarcados. Se você precisa de um descompactador B<.xz> realmente pequeno, considere usar o XZ Embedded."
++
++#. type: Plain text
++#: ../src/xzdec/xzdec.1:145 ../src/lzmainfo/lzmainfo.1:60
++msgid "B<xz>(1)"
++msgstr "B<xz>(1)"
++
++#. type: TH
++#: ../src/lzmainfo/lzmainfo.1:7
++#, no-wrap
++msgid "LZMAINFO"
++msgstr "LZMAINFO"
++
++#. type: TH
++#: ../src/lzmainfo/lzmainfo.1:7 ../src/scripts/xzmore.1:7
++#, no-wrap
++msgid "2013-06-30"
++msgstr "2013-06-30"
++
++#. type: Plain text
++#: ../src/lzmainfo/lzmainfo.1:10
++msgid "lzmainfo - show information stored in the .lzma file header"
++msgstr "lzmainfo - mostra informações armazenadas no cabeçalho do arquivo .lzma"
++
++#. type: Plain text
++#: ../src/lzmainfo/lzmainfo.1:15
++msgid "B<lzmainfo> [B<--help>] [B<--version>] [I<file...>]"
++msgstr "B<lzmainfo> [B<--help>] [B<--version>] [I<arquivo...>]"
++
++#. type: Plain text
++#: ../src/lzmainfo/lzmainfo.1:31
++msgid "B<lzmainfo> shows information stored in the B<.lzma> file header. It reads the first 13 bytes from the specified I<file>, decodes the header, and prints it to standard output in human readable format. If no I<files> are given or I<file> is B<->, standard input is read."
++msgstr "B<lzmainfo> mostra as informações armazenadas no cabeçalho do arquivo B<.lzma>. Ele lê os primeiros 13 bytes do I<arquivo> especificado, decodifica o cabeçalho e o imprime na saída padrão em formato legível por humanos. Se nenhum I<arquivo> for fornecido ou I<arquivo> for B<->, a entrada padrão será lida."
++
++#. type: Plain text
++#: ../src/lzmainfo/lzmainfo.1:40
++msgid "Usually the most interesting information is the uncompressed size and the dictionary size. Uncompressed size can be shown only if the file is in the non-streamed B<.lzma> format variant. The amount of memory required to decompress the file is a few dozen kilobytes plus the dictionary size."
++msgstr "Normalmente, as informações mais interessantes são o tamanho descompactado e o tamanho do dicionário. O tamanho não compactado pode ser mostrado apenas se o arquivo estiver na variante de formato B<.lzma> não transmitido. A quantidade de memória necessária para descompactar o arquivo é de algumas dezenas de kilobytes mais o tamanho do dicionário."
++
++#. type: Plain text
++#: ../src/lzmainfo/lzmainfo.1:44
++msgid "B<lzmainfo> is included in XZ Utils primarily for backward compatibility with LZMA Utils."
++msgstr "B<lzmainfo> está incluído no XZ Utils principalmente para compatibilidade com versões anteriores do LZMA Utils."
++
++#. type: SH
++#: ../src/lzmainfo/lzmainfo.1:51 ../src/scripts/xzdiff.1:74
++#, no-wrap
++msgid "BUGS"
++msgstr "BUGS"
++
++#. type: Plain text
++#: ../src/lzmainfo/lzmainfo.1:59
++msgid "B<lzmainfo> uses B<MB> while the correct suffix would be B<MiB> (2^20 bytes). This is to keep the output compatible with LZMA Utils."
++msgstr "B<lzmainfo> usa B<MB> enquanto o sufixo correto seria B<MiB> (2^20 bytes). Isso é para manter a saída compatível com LZMA Utils."
++
++#. type: TH
++#: ../src/scripts/xzdiff.1:9
++#, no-wrap
++msgid "XZDIFF"
++msgstr "XZDIFF"
++
++#. type: TH
++#: ../src/scripts/xzdiff.1:9
++#, no-wrap
++msgid "2021-06-04"
++msgstr "2021-06-04"
++
++#. type: Plain text
++#: ../src/scripts/xzdiff.1:12
++msgid "xzcmp, xzdiff, lzcmp, lzdiff - compare compressed files"
++msgstr "xzcmp, xzdiff, lzcmp, lzdiff - compara arquivos compactados"
++
++#. type: Plain text
++#: ../src/scripts/xzdiff.1:15
++msgid "B<xzcmp> [I<cmp_options>] I<file1> [I<file2>]"
++msgstr "B<xzcmp> [I<opções_cmd>] I<arquivo1> [I<arquivo2>]"
++
++#. type: Plain text
++#: ../src/scripts/xzdiff.1:18
++msgid "B<xzdiff> [I<diff_options>] I<file1> [I<file2>]"
++msgstr "B<xzdiff> [I<opções_diff>] I<arquivo1> [I<arquivo2>]"
++
++#. type: Plain text
++#: ../src/scripts/xzdiff.1:21
++msgid "B<lzcmp> [I<cmp_options>] I<file1> [I<file2>]"
++msgstr "B<lzcmp> [I<opções_cmp>] I<arquivo1> [I<arquivo2>]"
++
++#. type: Plain text
++#: ../src/scripts/xzdiff.1:24
++msgid "B<lzdiff> [I<diff_options>] I<file1> [I<file2>]"
++msgstr "B<lzdiff> [I<opções_diff>] I<arquivo1> [I<arquivo2>]"
++
++#. type: Plain text
++#: ../src/scripts/xzdiff.1:59
++msgid "B<xzcmp> and B<xzdiff> invoke B<cmp>(1) or B<diff>(1) on files compressed with B<xz>(1), B<lzma>(1), B<gzip>(1), B<bzip2>(1), B<lzop>(1), or B<zstd>(1). All options specified are passed directly to B<cmp>(1) or B<diff>(1). If only one file is specified, then the files compared are I<file1> (which must have a suffix of a supported compression format) and I<file1> from which the compression format suffix has been stripped. If two files are specified, then they are uncompressed if necessary and fed to B<cmp>(1) or B<diff>(1). The exit status from B<cmp>(1) or B<diff>(1) is preserved unless a decompression error occurs; then exit status is 2."
++msgstr "B<xzcmp> e B<xzdiff> invocam B<cmp>(1) ou B<diff>(1) em arquivos compactados com B<xz>(1), B<lzma>(1), B<gzip>( 1), B<bzip2>(1), B<lzop>(1) ou B<zstd>(1). Todas as opções especificadas são passadas diretamente para B<cmp>(1) ou B<diff>(1). Se apenas um arquivo for especificado, os arquivos comparados serão I<arquivo1> (que deve ter um sufixo de um formato de compactação compatível) e I<arquivo1> do qual o sufixo do formato de compactação foi removido. Se dois arquivos forem especificados, eles serão descompactados, se necessário, e enviados para B<cmp>(1) ou B<diff>(1). O status de saída de B<cmp>(1) ou B<diff>(1) é preservado, a menos que ocorra um erro de descompactação; então o status de saída é 2."
++
++#. type: Plain text
++#: ../src/scripts/xzdiff.1:65
++msgid "The names B<lzcmp> and B<lzdiff> are provided for backward compatibility with LZMA Utils."
++msgstr "Os nomes B<lzcmp> e B<lzdiff> são fornecidos para compatibilidade com versões anteriores do LZMA Utils."
++
++#. type: Plain text
++#: ../src/scripts/xzdiff.1:74
++msgid "B<cmp>(1), B<diff>(1), B<xz>(1), B<gzip>(1), B<bzip2>(1), B<lzop>(1), B<zstd>(1), B<zdiff>(1)"
++msgstr "B<cmp>(1), B<diff>(1), B<xz>(1), B<gzip>(1), B<bzip2>(1), B<lzop>(1), B<zstd>(1), B<zdiff>(1)"
++
++#. type: Plain text
++#: ../src/scripts/xzdiff.1:79
++msgid "Messages from the B<cmp>(1) or B<diff>(1) programs refer to temporary filenames instead of those specified."
++msgstr "As mensagens dos programas B<cmp>(1) ou B<diff>(1) referem-se a nomes de arquivos temporários em vez daqueles especificados."
++
++#. type: TH
++#: ../src/scripts/xzgrep.1:9
++#, no-wrap
++msgid "XZGREP"
++msgstr "XZGREP"
++
++#. type: TH
++#: ../src/scripts/xzgrep.1:9
++#, no-wrap
++msgid "2022-07-19"
++msgstr "2022-07-19"
++
++#. type: Plain text
++#: ../src/scripts/xzgrep.1:12
++msgid "xzgrep - search compressed files for a regular expression"
++msgstr "xzgrep - pesquisa arquivos compactados para uma expressão regular"
++
++#. type: Plain text
++#: ../src/scripts/xzgrep.1:18
++msgid "B<xzgrep> [I<grep_options>] [B<-e>] I<pattern> [I<file...>]"
++msgstr "B<xzgrep> [I<opções_grep>] [B<-e>] I<padrão> [I<arquivo...>]"
++
++#. type: Plain text
++#: ../src/scripts/xzgrep.1:21
++msgid "B<xzegrep> \\&..."
++msgstr "B<xzegrep> \\&..."
++
++#. type: Plain text
++#: ../src/scripts/xzgrep.1:24
++msgid "B<xzfgrep> \\&..."
++msgstr "B<xzfgrep> \\&..."
++
++#. type: Plain text
++#: ../src/scripts/xzgrep.1:27
++msgid "B<lzgrep> \\&..."
++msgstr "B<lzgrep> \\&..."
++
++#. type: Plain text
++#: ../src/scripts/xzgrep.1:30
++msgid "B<lzegrep> \\&..."
++msgstr "B<lzegrep> \\&..."
++
++#. type: Plain text
++#: ../src/scripts/xzgrep.1:33
++msgid "B<lzfgrep> \\&..."
++msgstr "B<lzfgrep> \\&..."
++
++#. type: Plain text
++#: ../src/scripts/xzgrep.1:49
++msgid "B<xzgrep> invokes B<grep>(1) on I<files> which may be either uncompressed or compressed with B<xz>(1), B<lzma>(1), B<gzip>(1), B<bzip2>(1), B<lzop>(1), or B<zstd>(1). All options specified are passed directly to B<grep>(1)."
++msgstr "B<xzgrep> invoca B<grep>(1) em I<arquivos> que podem ser descompactados ou compactados com B<xz>(1), B<lzma>(1), B<gzip>(1), B<bzip2>(1), B<lzop>(1), ou B<zstd>(1). Todas as opções especificadas são passadas diretamente para B<grep>(1)."
++
++#. type: Plain text
++#: ../src/scripts/xzgrep.1:62
++msgid "If no I<file> is specified, then standard input is decompressed if necessary and fed to B<grep>(1). When reading from standard input, B<gzip>(1), B<bzip2>(1), B<lzop>(1), and B<zstd>(1) compressed files are not supported."
++msgstr "Se nenhum I<arquivo> for especificado, a entrada padrão será descompactada, se necessário, e enviada para B<grep>(1). Ao ler da entrada padrão, os arquivos compactados B<gzip>(1), B<bzip2>(1), B<lzop>(1) e B<zstd>(1) não são suportados."
++
++#. type: Plain text
++#: ../src/scripts/xzgrep.1:81
++msgid "If B<xzgrep> is invoked as B<xzegrep> or B<xzfgrep> then B<grep -E> or B<grep -F> is used instead of B<grep>(1). The same applies to names B<lzgrep>, B<lzegrep>, and B<lzfgrep>, which are provided for backward compatibility with LZMA Utils."
++msgstr "Se B<xzgrep> for chamado como B<xzegrep> ou B<xzfgrep>, então B<grep -E> ou B<grep -F> será usado em vez de B<grep>(1). O mesmo se aplica aos nomes B<lzgrep>, B<lzegrep> e B<lzfgrep>, que são fornecidos para compatibilidade com versões anteriores do LZMA Utils."
++
++#. type: Plain text
++#: ../src/scripts/xzgrep.1:86
++msgid "At least one match was found from at least one of the input files. No errors occurred."
++msgstr "Pelo menos uma correspondência foi encontrada em pelo menos um dos arquivos de entrada. Nenhum erro ocorreu."
++
++#. type: Plain text
++#: ../src/scripts/xzgrep.1:90
++msgid "No matches were found from any of the input files. No errors occurred."
++msgstr "Nenhuma correspondência foi encontrada em nenhum dos arquivos de entrada. Nenhum erro ocorreu."
++
++#. type: TP
++#: ../src/scripts/xzgrep.1:90
++#, no-wrap
++msgid "E<gt>1"
++msgstr "E<gt>1"
++
++#. type: Plain text
++#: ../src/scripts/xzgrep.1:94
++msgid "One or more errors occurred. It is unknown if matches were found."
++msgstr "Ocorreu um ou mais erros. Não se sabe se foram encontradas correspondências."
++
++#. type: TP
++#: ../src/scripts/xzgrep.1:95
++#, no-wrap
++msgid "B<GREP>"
++msgstr "B<GREP>"
++
++#. type: Plain text
++#: ../src/scripts/xzgrep.1:106
++msgid "If the B<GREP> environment variable is set, B<xzgrep> uses it instead of B<grep>(1), B<grep -E>, or B<grep -F>."
++msgstr "Se a variável de ambiente B<GREP> for definida, B<xzgrep> a usará em vez de B<grep>(1), B<grep -E> ou B<grep -F>."
++
++#. type: Plain text
++#: ../src/scripts/xzgrep.1:113
++msgid "B<grep>(1), B<xz>(1), B<gzip>(1), B<bzip2>(1), B<lzop>(1), B<zstd>(1), B<zgrep>(1)"
++msgstr "B<grep>(1), B<xz>(1), B<gzip>(1), B<bzip2>(1), B<lzop>(1), B<zstd>(1), B<zgrep>(1)"
++
++#. type: TH
++#: ../src/scripts/xzless.1:10
++#, no-wrap
++msgid "XZLESS"
++msgstr "XZLESS"
++
++#. type: TH
++#: ../src/scripts/xzless.1:10
++#, no-wrap
++msgid "2010-09-27"
++msgstr "2010-09-27"
++
++#. type: Plain text
++#: ../src/scripts/xzless.1:13
++msgid "xzless, lzless - view xz or lzma compressed (text) files"
++msgstr "xzless, lzless - visualiza arquivos (texto) compactados em xz ou lzma"
++
++#. type: Plain text
++#: ../src/scripts/xzless.1:16
++msgid "B<xzless> [I<file>...]"
++msgstr "B<xzless> [I<arquivo>...]"
++
++#. type: Plain text
++#: ../src/scripts/xzless.1:19
++msgid "B<lzless> [I<file>...]"
++msgstr "B<lzless> [I<arquivo>...]"
++
++#. type: Plain text
++#: ../src/scripts/xzless.1:31
++msgid "B<xzless> is a filter that displays text from compressed files to a terminal. It works on files compressed with B<xz>(1) or B<lzma>(1). If no I<files> are given, B<xzless> reads from standard input."
++msgstr "B<xzless> é um filtro que exibe texto de arquivos compactados em um terminal. Ele funciona em arquivos compactados com B<xz>(1) ou B<lzma>(1). Se nenhum I<files> for fornecido, B<xzless> lê da entrada padrão."
++
++#. type: Plain text
++#: ../src/scripts/xzless.1:48
++msgid "B<xzless> uses B<less>(1) to present its output. Unlike B<xzmore>, its choice of pager cannot be altered by setting an environment variable. Commands are based on both B<more>(1) and B<vi>(1) and allow back and forth movement and searching. See the B<less>(1) manual for more information."
++msgstr "B<xzless> usa B<less>(1) para apresentar sua saída. Ao contrário de B<xzmore>, sua escolha de pager não pode ser alterada pela configuração de uma variável de ambiente. Os comandos são baseados em B<more>(1) e B<vi>(1) e permitem movimento e busca para frente e para trás. Consulte o manual B<less>(1) para obter mais informações."
++
++#. type: Plain text
++#: ../src/scripts/xzless.1:52
++msgid "The command named B<lzless> is provided for backward compatibility with LZMA Utils."
++msgstr "O comando denominado B<lzless> é fornecido para compatibilidade com versões anteriores do LZMA Utils."
++
++#. type: TP
++#: ../src/scripts/xzless.1:53
++#, no-wrap
++msgid "B<LESSMETACHARS>"
++msgstr "B<LESSMETACHARS>"
++
++#. type: Plain text
++#: ../src/scripts/xzless.1:59
++msgid "A list of characters special to the shell. Set by B<xzless> unless it is already set in the environment."
++msgstr "Uma lista de caracteres especiais para o shell. Definido por B<xzless> a menos que já esteja definido no ambiente."
++
++#. type: TP
++#: ../src/scripts/xzless.1:59
++#, no-wrap
++msgid "B<LESSOPEN>"
++msgstr "B<LESSOPEN>"
++
++#. type: Plain text
++#: ../src/scripts/xzless.1:65
++msgid "Set to a command line to invoke the B<xz>(1) decompressor for preprocessing the input files to B<less>(1)."
++msgstr "Defina como uma linha de comando para invocar o descompactador B<xz>(1) para pré-processar os arquivos de entrada para B<less>(1)."
++
++#. type: Plain text
++#: ../src/scripts/xzless.1:69
++msgid "B<less>(1), B<xz>(1), B<xzmore>(1), B<zless>(1)"
++msgstr "B<less>(1), B<xz>(1), B<xzmore>(1), B<zless>(1)"
++
++#. type: TH
++#: ../src/scripts/xzmore.1:7
++#, no-wrap
++msgid "XZMORE"
++msgstr "XZMORE"
++
++#. type: Plain text
++#: ../src/scripts/xzmore.1:10
++msgid "xzmore, lzmore - view xz or lzma compressed (text) files"
++msgstr "xzmore, lzmore - visualiza arquivos (texto) compactados em xz ou lzma"
++
++#. type: Plain text
++#: ../src/scripts/xzmore.1:13
++msgid "B<xzmore> [I<file...>]"
++msgstr "B<xzmore> [I<arquivo...>]"
++
++#. type: Plain text
++#: ../src/scripts/xzmore.1:16
++msgid "B<lzmore> [I<file...>]"
++msgstr "B<lzmore> [I<arquivo...>]"
++
++#. type: Plain text
++#: ../src/scripts/xzmore.1:24
++msgid "B<xzmore> is a filter which allows examination of B<xz>(1) or B<lzma>(1) compressed text files one screenful at a time on a soft-copy terminal."
++msgstr "B<xzmore> é um filtro que permite o exame de arquivos de texto compactados B<xz>(1) ou B<lzma>(1) uma tela por vez em um terminal de cópia eletrônica."
++
++#. type: Plain text
++#: ../src/scripts/xzmore.1:33
++msgid "To use a pager other than the default B<more,> set environment variable B<PAGER> to the name of the desired program. The name B<lzmore> is provided for backward compatibility with LZMA Utils."
++msgstr "Para usar um pager diferente do padrão B<more,> defina a variável de ambiente B<PAGER> para o nome do programa desejado. O nome B<lzmore> é fornecido para compatibilidade com versões anteriores do LZMA Utils."
++
++#. type: TP
++#: ../src/scripts/xzmore.1:33
++#, no-wrap
++msgid "B<e> or B<q>"
++msgstr "B<e> ou B<q>"
++
++#. type: Plain text
++#: ../src/scripts/xzmore.1:40
++msgid "When the prompt --More--(Next file: I<file>) is printed, this command causes B<xzmore> to exit."
++msgstr "Quando o prompt --More--(Next file: I<arquivo>) é impresso, esse comando faz com que B<xzmore> saia."
++
++#. type: TP
++#: ../src/scripts/xzmore.1:40
++#, no-wrap
++msgid "B<s>"
++msgstr "B<s>"
++
++#. type: Plain text
++#: ../src/scripts/xzmore.1:47
++msgid "When the prompt --More--(Next file: I<file>) is printed, this command causes B<xzmore> to skip the next file and continue."
++msgstr "Quando o prompt --More--(Next file: I<arquivo>) é impresso, esse comando faz com que B<xzmore> pule o próximo arquivo e continue."
++
++#. type: Plain text
++#: ../src/scripts/xzmore.1:51
++msgid "For list of keyboard commands supported while actually viewing the content of a file, refer to manual of the pager you use, usually B<more>(1)."
++msgstr "Para obter uma lista de comandos de teclado suportados durante a exibição real do conteúdo de um arquivo, consulte o manual do paginador que você usa, geralmente B<more>(1)."
++
++#. type: Plain text
++#: ../src/scripts/xzmore.1:55
++msgid "B<more>(1), B<xz>(1), B<xzless>(1), B<zmore>(1)"
++msgstr "B<more>(1), B<xz>(1), B<xzless>(1), B<zmore>(1)"
diff --git a/debian/patches/Translations-Update-the-Brazilian-Portuguese-translation.patch b/debian/patches/Translations-Update-the-Brazilian-Portuguese-translation.patch
new file mode 100644
index 0000000..57083ee
--- /dev/null
+++ b/debian/patches/Translations-Update-the-Brazilian-Portuguese-translation.patch
@@ -0,0 +1,1223 @@
+From: Jia Tan <jiat0218@gmail.com>
+Date: Fri, 13 Jan 2023 20:37:06 +0800
+Subject: Translations: Update the Brazilian Portuguese translation.
+
+---
+ po/pt_BR.po | 603 ++++++++++++++++++++++++++++++++++--------------------------
+ 1 file changed, 344 insertions(+), 259 deletions(-)
+
+diff --git a/po/pt_BR.po b/po/pt_BR.po
+index c312932..2a083f0 100644
+--- a/po/pt_BR.po
++++ b/po/pt_BR.po
+@@ -1,13 +1,14 @@
+ # Brazilian Portuguese translations for xz package
+ # Traduções em português brasileiro para o pacote xz.
+ # This file is put in the public domain.
+-# Rafael Fontenelle <rafaelff@gnome.org>, 2019-2021.
++# Rafael Fontenelle <rafaelff@gnome.org>, 2019-2023.
++#
+ msgid ""
+ msgstr ""
+-"Project-Id-Version: xz 5.2.4\n"
+-"Report-Msgid-Bugs-To: lasse.collin@tukaani.org\n"
+-"POT-Creation-Date: 2022-06-29 17:47+0300\n"
+-"PO-Revision-Date: 2021-01-06 22:30-0300\n"
++"Project-Id-Version: xz 5.4.0-pre2\n"
++"Report-Msgid-Bugs-To: xz@tukaani.org\n"
++"POT-Creation-Date: 2023-01-13 20:21+0800\n"
++"PO-Revision-Date: 2023-01-12 14:40-0300\n"
+ "Last-Translator: Rafael Fontenelle <rafaelff@gnome.org>\n"
+ "Language-Team: Brazilian Portuguese <ldpbr-translation@lists.sourceforge.net>\n"
+ "Language: pt_BR\n"
+@@ -15,102 +16,116 @@ msgstr ""
+ "Content-Type: text/plain; charset=UTF-8\n"
+ "Content-Transfer-Encoding: 8bit\n"
+ "X-Bugs: Report translation errors to the Language-Team address.\n"
+-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+-"X-Generator: Virtaal 1.0.0-beta1\n"
++"Plural-Forms: nplurals=2; plural=(n > 1)\n"
++"X-Generator: Gtranslator 42.0\n"
+
+-#: src/xz/args.c:63
++#: src/xz/args.c:77
+ #, c-format
+ msgid "%s: Invalid argument to --block-list"
+ msgstr "%s: Argumento inválido para --block-list"
+
+-#: src/xz/args.c:73
++#: src/xz/args.c:87
+ #, c-format
+ msgid "%s: Too many arguments to --block-list"
+ msgstr "%s: Argumentos demais para --block-list"
+
+-#: src/xz/args.c:102
++#: src/xz/args.c:116
+ msgid "0 can only be used as the last element in --block-list"
+ msgstr "0 só pode ser usado como o último elemento em --block-list"
+
+-#: src/xz/args.c:406
++#: src/xz/args.c:451
+ #, c-format
+ msgid "%s: Unknown file format type"
+ msgstr "%s: Tipo de formato de arquivo desconhecido"
+
+-#: src/xz/args.c:429 src/xz/args.c:437
++#: src/xz/args.c:474 src/xz/args.c:482
+ #, c-format
+ msgid "%s: Unsupported integrity check type"
+ msgstr "%s: Tipo de verificação de integridade sem suporte"
+
+-#: src/xz/args.c:473
++#: src/xz/args.c:518
+ msgid "Only one file can be specified with `--files' or `--files0'."
+ msgstr "Somente um arquivo pode ser especificado com \"--files\" ou \"--files0\"."
+
+-#: src/xz/args.c:541
++#: src/xz/args.c:586
+ #, c-format
+ msgid "The environment variable %s contains too many arguments"
+ msgstr "A variável de ambiente %s contém argumentos demais"
+
+-#: src/xz/args.c:643
++#: src/xz/args.c:688
+ msgid "Compression support was disabled at build time"
+ msgstr "Suporte a compressão foi desabilitado em tempo de compilação"
+
+-#: src/xz/args.c:650
++#: src/xz/args.c:695
+ msgid "Decompression support was disabled at build time"
+ msgstr "Suporte a descompressão foi desabilitado em tempo de compilação"
+
+-#: src/xz/coder.c:110
++#: src/xz/args.c:701
++msgid "Compression of lzip files (.lz) is not supported"
++msgstr "A compactação de arquivos lzip (.lz) não é suportada"
++
++#: src/xz/coder.c:115
+ msgid "Maximum number of filters is four"
+ msgstr "O número máximo de filtros é quatro"
+
+-#: src/xz/coder.c:129
++#: src/xz/coder.c:134
+ msgid "Memory usage limit is too low for the given filter setup."
+ msgstr "O limite de uso de memória é baixo demais para a configuração de filtro dada."
+
+-#: src/xz/coder.c:159
++#: src/xz/coder.c:169
+ msgid "Using a preset in raw mode is discouraged."
+ msgstr "O uso de uma predefinição em modo bruto é desencorajado."
+
+-#: src/xz/coder.c:161
++#: src/xz/coder.c:171
+ msgid "The exact options of the presets may vary between software versions."
+ msgstr "As opções exatas de predefinições podem variar entre versões do software."
+
+-#: src/xz/coder.c:184
++#: src/xz/coder.c:194
+ msgid "The .lzma format supports only the LZMA1 filter"
+ msgstr "O formato .lzma possui suporte apenas ao filtro LZMA1"
+
+-#: src/xz/coder.c:192
++#: src/xz/coder.c:202
+ msgid "LZMA1 cannot be used with the .xz format"
+ msgstr "LZMA1 não pode ser usado com o formato .xz"
+
+-#: src/xz/coder.c:209
++#: src/xz/coder.c:219
+ msgid "The filter chain is incompatible with --flush-timeout"
+ msgstr "A cadeia de filtros é incompatível com --flush-timeout"
+
+-#: src/xz/coder.c:215
++#: src/xz/coder.c:225
+ msgid "Switching to single-threaded mode due to --flush-timeout"
+ msgstr "Alternando para o modo de thread única por causa de --flush-timeout"
+
+-#: src/xz/coder.c:235
++#: src/xz/coder.c:249
+ #, c-format
+ msgid "Using up to %<PRIu32> threads."
+ msgstr "Usando até %<PRIu32> threads."
+
+-#: src/xz/coder.c:251
++#: src/xz/coder.c:265
+ msgid "Unsupported filter chain or filter options"
+ msgstr "Opções de filtro ou cadeia de filtros sem suporte"
+
+-#: src/xz/coder.c:263
++#: src/xz/coder.c:277
+ #, c-format
+ msgid "Decompression will need %s MiB of memory."
+ msgstr "A descompressão precisará de %s MiB de memória."
+
+-#: src/xz/coder.c:300
++#: src/xz/coder.c:309
+ #, c-format
+-msgid "Adjusted the number of threads from %s to %s to not exceed the memory usage limit of %s MiB"
+-msgstr "Ajustado o número de threads de %s de %s para não exceder o limite de uso de memória de %s MiB"
++msgid "Reduced the number of threads from %s to %s to not exceed the memory usage limit of %s MiB"
++msgstr "Reduzido o número de threads de %s para %s para não exceder o limite de uso de memória de %s MiB"
+
+-#: src/xz/coder.c:354
++#: src/xz/coder.c:329
++#, c-format
++msgid "Reduced the number of threads from %s to one. The automatic memory usage limit of %s MiB is still being exceeded. %s MiB of memory is required. Continuing anyway."
++msgstr "Reduzido o número de threads de %s para um. O limite de uso de memória automática de %s MiB ainda está sendo excedido. %s MiB de memória é necessário. Continuando de qualquer maneira."
++
++#: src/xz/coder.c:356
++#, c-format
++msgid "Switching to single-threaded mode to not exceed the memory usage limit of %s MiB"
++msgstr "Alternando para o modo de thread única para não exceder o limite de uso de memória de %s MiB"
++
++#: src/xz/coder.c:411
+ #, c-format
+ msgid "Adjusted LZMA%c dictionary size from %s MiB to %s MiB to not exceed the memory usage limit of %s MiB"
+ msgstr "Ajustado o tamanho de dicionário de LZMA%c de %s MiB para %s MiB para não exceder o limite de uso de memória de %s MiB"
+@@ -120,11 +135,11 @@ msgstr "Ajustado o tamanho de dicionário de LZMA%c de %s MiB para %s MiB para n
+ msgid "Error creating a pipe: %s"
+ msgstr "Erro ao criar um pipe: %s"
+
+-#: src/xz/file_io.c:224
++#: src/xz/file_io.c:235
+ msgid "Failed to enable the sandbox"
+ msgstr "Falha ao habilitar o sandbox"
+
+-#: src/xz/file_io.c:266
++#: src/xz/file_io.c:277
+ #, c-format
+ msgid "%s: poll() failed: %s"
+ msgstr "%s: poll() falhou: %s"
+@@ -139,209 +154,332 @@ msgstr "%s: poll() falhou: %s"
+ #. it is possible that the user has put a new file in place
+ #. of the original file, and in that case it obviously
+ #. shouldn't be removed.
+-#: src/xz/file_io.c:333
++#: src/xz/file_io.c:344
+ #, c-format
+ msgid "%s: File seems to have been moved, not removing"
+ msgstr "%s: O arquivo parece ter sido movido, não será removido"
+
+-#: src/xz/file_io.c:340 src/xz/file_io.c:882
++#: src/xz/file_io.c:351 src/xz/file_io.c:907
+ #, c-format
+ msgid "%s: Cannot remove: %s"
+ msgstr "%s: Não foi possível remover: %s"
+
+-#: src/xz/file_io.c:366
++#: src/xz/file_io.c:377
+ #, c-format
+ msgid "%s: Cannot set the file owner: %s"
+ msgstr "%s: Não foi possível definir o dono do arquivo: %s"
+
+-#: src/xz/file_io.c:372
++#: src/xz/file_io.c:390
+ #, c-format
+ msgid "%s: Cannot set the file group: %s"
+ msgstr "%s: Não foi possível definir o grupo do arquivo: %s"
+
+-#: src/xz/file_io.c:391
++#: src/xz/file_io.c:409
+ #, c-format
+ msgid "%s: Cannot set the file permissions: %s"
+ msgstr "%s: Não foi possível definir as permissões do arquivo: %s"
+
+-#: src/xz/file_io.c:517
++#: src/xz/file_io.c:535
+ #, c-format
+ msgid "Error getting the file status flags from standard input: %s"
+ msgstr "Erro ao obter os sinalizadores de status da entrada padrão: %s"
+
+-#: src/xz/file_io.c:574 src/xz/file_io.c:636
++#: src/xz/file_io.c:593 src/xz/file_io.c:655
+ #, c-format
+ msgid "%s: Is a symbolic link, skipping"
+ msgstr "%s: É um link simbólico, ignorando"
+
+-#: src/xz/file_io.c:665
++#: src/xz/file_io.c:684
+ #, c-format
+ msgid "%s: Is a directory, skipping"
+ msgstr "%s: É um diretório, ignorando"
+
+-#: src/xz/file_io.c:671
++#: src/xz/file_io.c:690
+ #, c-format
+ msgid "%s: Not a regular file, skipping"
+ msgstr "%s: Não é um arquivo comum, ignorando"
+
+-#: src/xz/file_io.c:688
++#: src/xz/file_io.c:707
+ #, c-format
+ msgid "%s: File has setuid or setgid bit set, skipping"
+ msgstr "%s: O arquivo possui o bit setuid ou setgid definido, ignorando"
+
+-#: src/xz/file_io.c:695
++#: src/xz/file_io.c:714
+ #, c-format
+ msgid "%s: File has sticky bit set, skipping"
+ msgstr "%s: O arquivo possui o bit sticky definido, ignorando"
+
+-#: src/xz/file_io.c:702
++#: src/xz/file_io.c:721
+ #, c-format
+ msgid "%s: Input file has more than one hard link, skipping"
+ msgstr "%s: O arquivo de entrada possui mais de um link físico, ignorando"
+
+-#: src/xz/file_io.c:792
++#: src/xz/file_io.c:763
++msgid "Empty filename, skipping"
++msgstr "Nome de arquivo vazio, ignorando"
++
++#: src/xz/file_io.c:817
+ #, c-format
+ msgid "Error restoring the status flags to standard input: %s"
+ msgstr "Erro ao restaurar os sinalizadores de status para entrada padrão: %s"
+
+-#: src/xz/file_io.c:840
++#: src/xz/file_io.c:865
+ #, c-format
+ msgid "Error getting the file status flags from standard output: %s"
+ msgstr "Erro ao obter os sinalizadores de status de arquivo da saída padrão: %s"
+
+-#: src/xz/file_io.c:1018
++#: src/xz/file_io.c:1043
+ #, c-format
+ msgid "Error restoring the O_APPEND flag to standard output: %s"
+ msgstr "Erro ao restaurar o sinalizador O_APPEND para a saída padrão: %s"
+
+-#: src/xz/file_io.c:1030
++#: src/xz/file_io.c:1055
+ #, c-format
+ msgid "%s: Closing the file failed: %s"
+ msgstr "%s: Fechamento do arquivo falhou: %s"
+
+-#: src/xz/file_io.c:1066 src/xz/file_io.c:1309
++#: src/xz/file_io.c:1091 src/xz/file_io.c:1354
+ #, c-format
+ msgid "%s: Seeking failed when trying to create a sparse file: %s"
+ msgstr "%s: Busca falhou ao tentar criar um arquivo esparso: %s"
+
+-#: src/xz/file_io.c:1167
++#: src/xz/file_io.c:1192
+ #, c-format
+ msgid "%s: Read error: %s"
+ msgstr "%s: Erro de leitura: %s"
+
+-#: src/xz/file_io.c:1191
++#: src/xz/file_io.c:1222
+ #, c-format
+ msgid "%s: Error seeking the file: %s"
+ msgstr "%s: Erro ao buscar o arquivo: %s"
+
+-#: src/xz/file_io.c:1201
++#: src/xz/file_io.c:1246
+ #, c-format
+ msgid "%s: Unexpected end of file"
+ msgstr "%s: Fim de arquivo inesperado"
+
+-#: src/xz/file_io.c:1260
++#: src/xz/file_io.c:1305
+ #, c-format
+ msgid "%s: Write error: %s"
+ msgstr "%s: Erro de escrita: %s"
+
+-#: src/xz/hardware.c:137
++#: src/xz/hardware.c:238
+ msgid "Disabled"
+ msgstr "Desabilitado"
+
+-# Espaços adicionados para manter alinhamento com mensagens adjacentes -- Rafael
+-#. TRANSLATORS: Test with "xz --info-memory" to see if
+-#. the alignment looks nice.
+-#: src/xz/hardware.c:156
+-msgid "Total amount of physical memory (RAM): "
+-msgstr "Quantidade total de memória física (RAM): "
++#: src/xz/hardware.c:269
++msgid "Amount of physical memory (RAM):"
++msgstr "Quantidade total de memória física (RAM):"
+
+-# Espaços adicionados para manter alinhamento com mensagens adjacentes -- Rafael
+-#: src/xz/hardware.c:158
+-msgid "Memory usage limit for compression: "
+-msgstr "Limite de uso de memória para compressão: "
++#: src/xz/hardware.c:270
++msgid "Number of processor threads:"
++msgstr "Número de threads de processador:"
+
+-# Espaços reduzidos para manter alinhamento com mensagens adjacentes -- Rafael
+-#: src/xz/hardware.c:160
+-msgid "Memory usage limit for decompression: "
+-msgstr "Limite de uso de memória para descompressão: "
++#: src/xz/hardware.c:271
++msgid "Compression:"
++msgstr "Compactação:"
++
++#: src/xz/hardware.c:272
++msgid "Decompression:"
++msgstr "Descompactação:"
++
++#: src/xz/hardware.c:273
++msgid "Multi-threaded decompression:"
++msgstr "Descompactação com várias threads:"
++
++#: src/xz/hardware.c:274
++msgid "Default for -T0:"
++msgstr "Padrão para -T0:"
++
++#: src/xz/hardware.c:292
++msgid "Hardware information:"
++msgstr "Informações de hardware:"
++
++#: src/xz/hardware.c:299
++msgid "Memory usage limits:"
++msgstr "Memory usage limits:"
++
++#: src/xz/list.c:68
++msgid "Streams:"
++msgstr "Fluxos:"
++
++#: src/xz/list.c:69
++msgid "Blocks:"
++msgstr "Blocos:"
++
++#: src/xz/list.c:70
++msgid "Compressed size:"
++msgstr "Tamanho compactado:"
++
++#: src/xz/list.c:71
++msgid "Uncompressed size:"
++msgstr "Tamanho não compactado:"
++
++#: src/xz/list.c:72
++msgid "Ratio:"
++msgstr "Proporção:"
++
++#: src/xz/list.c:73
++msgid "Check:"
++msgstr "Verificação:"
++
++#: src/xz/list.c:74
++msgid "Stream Padding:"
++msgstr "Ajuste do fluxo:"
++
++#: src/xz/list.c:75
++msgid "Memory needed:"
++msgstr "Memória exigida:"
++
++#: src/xz/list.c:76
++msgid "Sizes in headers:"
++msgstr "Tamanhos nos cabeçalhos:"
++
++#: src/xz/list.c:79
++msgid "Number of files:"
++msgstr "Número de arquivos:"
++
++#: src/xz/list.c:122
++msgid "Stream"
++msgstr "Fluxo"
++
++#: src/xz/list.c:123
++msgid "Block"
++msgstr "Bloco"
++
++#: src/xz/list.c:124
++msgid "Blocks"
++msgstr "Blocos"
++
++#: src/xz/list.c:125
++msgid "CompOffset"
++msgstr "DeslocComp"
++
++#: src/xz/list.c:126
++msgid "UncompOffset"
++msgstr "DeslocDescomp"
++
++#: src/xz/list.c:127
++msgid "CompSize"
++msgstr "TamComp"
++
++#: src/xz/list.c:128
++msgid "UncompSize"
++msgstr "TamDescomp"
++
++#: src/xz/list.c:129
++msgid "TotalSize"
++msgstr "TamTotal"
++
++#: src/xz/list.c:130
++msgid "Ratio"
++msgstr "Proporção"
++
++#: src/xz/list.c:131
++msgid "Check"
++msgstr "Verificação"
++
++#: src/xz/list.c:132
++msgid "CheckVal"
++msgstr "ValorVerific."
++
++#: src/xz/list.c:133
++msgid "Padding"
++msgstr "Preench."
++
++#: src/xz/list.c:134
++msgid "Header"
++msgstr "Cabeçalho"
++
++#: src/xz/list.c:135
++msgid "Flags"
++msgstr "Sinalizadores"
++
++#: src/xz/list.c:136
++msgid "MemUsage"
++msgstr "UsoMem"
++
++#: src/xz/list.c:137
++msgid "Filters"
++msgstr "Filtros"
+
+ #. TRANSLATORS: Indicates that there is no integrity check.
+-#. This string is used in tables, so the width must not
+-#. exceed ten columns with a fixed-width font.
+-#: src/xz/list.c:65
++#. This string is used in tables. In older xz version this
++#. string was limited to ten columns in a fixed-width font, but
++#. nowadays there is no strict length restriction anymore.
++#: src/xz/list.c:169
+ msgid "None"
+ msgstr "Nenhuma"
+
+ #. TRANSLATORS: Indicates that integrity check name is not known,
+-#. but the Check ID is known (here 2). This and other "Unknown-N"
+-#. strings are used in tables, so the width must not exceed ten
+-#. columns with a fixed-width font. It's OK to omit the dash if
+-#. you need space for one extra letter, but don't use spaces.
+-#: src/xz/list.c:72
++#. but the Check ID is known (here 2). In older xz version these
++#. strings were limited to ten columns in a fixed-width font, but
++#. nowadays there is no strict length restriction anymore.
++#: src/xz/list.c:175
+ msgid "Unknown-2"
+ msgstr "Incógnito2"
+
+ # Não exceder 10 caracteres e espaços não são permitidos -- Rafael
+-#: src/xz/list.c:73
++#: src/xz/list.c:176
+ msgid "Unknown-3"
+ msgstr "Incógnito3"
+
+ # Não exceder 10 caracteres e espaços não são permitidos -- Rafael
+-#: src/xz/list.c:75
++#: src/xz/list.c:178
+ msgid "Unknown-5"
+ msgstr "Incógnito5"
+
+ # Não exceder 10 caracteres e espaços não são permitidos -- Rafael
+-#: src/xz/list.c:76
++#: src/xz/list.c:179
+ msgid "Unknown-6"
+ msgstr "Incógnito6"
+
+ # Não exceder 10 caracteres e espaços não são permitidos -- Rafael
+-#: src/xz/list.c:77
++#: src/xz/list.c:180
+ msgid "Unknown-7"
+ msgstr "Incógnito7"
+
+ # Não exceder 10 caracteres e espaços não são permitidos -- Rafael
+-#: src/xz/list.c:78
++#: src/xz/list.c:181
+ msgid "Unknown-8"
+ msgstr "Incógnito8"
+
+ # Não exceder 10 caracteres e espaços não são permitidos -- Rafael
+-#: src/xz/list.c:79
++#: src/xz/list.c:182
+ msgid "Unknown-9"
+ msgstr "Incógnito9"
+
+ # Não exceder 10 caracteres e espaços não são permitidos -- Rafael
+-#: src/xz/list.c:81
++#: src/xz/list.c:184
+ msgid "Unknown-11"
+ msgstr "Incógnito11"
+
+ # Não exceder 10 caracteres e espaços não são permitidos -- Rafael
+-#: src/xz/list.c:82
++#: src/xz/list.c:185
+ msgid "Unknown-12"
+ msgstr "Incógnito12"
+
+ # Não exceder 10 caracteres e espaços não são permitidos -- Rafael
+-#: src/xz/list.c:83
++#: src/xz/list.c:186
+ msgid "Unknown-13"
+ msgstr "Incógnito13"
+
+ # Não exceder 10 caracteres e espaços não são permitidos -- Rafael
+-#: src/xz/list.c:84
++#: src/xz/list.c:187
+ msgid "Unknown-14"
+ msgstr "Incógnito14"
+
+ # Não exceder 10 caracteres e espaços não são permitidos -- Rafael
+-#: src/xz/list.c:85
++#: src/xz/list.c:188
+ msgid "Unknown-15"
+ msgstr "Incógnito15"
+
+-#: src/xz/list.c:153
++#: src/xz/list.c:351
+ #, c-format
+ msgid "%s: File is empty"
+ msgstr "%s: O arquivo está vazio"
+
+-#: src/xz/list.c:158
++#: src/xz/list.c:356
+ #, c-format
+ msgid "%s: Too small to be a valid .xz file"
+ msgstr "%s: Pequeno demais para ser um arquivo .xz válido"
+@@ -350,126 +488,41 @@ msgstr "%s: Pequeno demais para ser um arquivo .xz válido"
+ #. to Ratio, the columns are right aligned. Check and Filename
+ #. are left aligned. If you need longer words, it's OK to
+ #. use two lines here. Test with "xz -l foo.xz".
+-#: src/xz/list.c:677
++#: src/xz/list.c:730
+ msgid "Strms Blocks Compressed Uncompressed Ratio Check Filename"
+ msgstr "Fluxos Blocos Comprimido Descomprimid Propo Verif Nome de Arquivo"
+
+-#: src/xz/list.c:717
+-#, c-format
+-msgid " Streams: %s\n"
+-msgstr " Fluxos: %s\n"
+-
+-#: src/xz/list.c:719
+-#, c-format
+-msgid " Blocks: %s\n"
+-msgstr " Blocos: %s\n"
+-
+-#: src/xz/list.c:721
+-#, c-format
+-msgid " Compressed size: %s\n"
+-msgstr " Tam. comprimido: %s\n"
+-
+-#: src/xz/list.c:724
+-#, c-format
+-msgid " Uncompressed size: %s\n"
+-msgstr " Tam. descomprimido: %s\n"
+-
+-#: src/xz/list.c:727
+-#, c-format
+-msgid " Ratio: %s\n"
+-msgstr " Proporção: %s\n"
+-
+-#: src/xz/list.c:729
+-#, c-format
+-msgid " Check: %s\n"
+-msgstr " Verificação: %s\n"
+-
+-#: src/xz/list.c:730
+-#, c-format
+-msgid " Stream padding: %s\n"
+-msgstr " Ajuste do fluxo: %s\n"
+-
+-#. TRANSLATORS: The second line is column headings. All except
+-#. Check are right aligned; Check is left aligned. Test with
+-#. "xz -lv foo.xz".
+-#: src/xz/list.c:758
+-msgid ""
+-" Streams:\n"
+-" Stream Blocks CompOffset UncompOffset CompSize UncompSize Ratio Check Padding"
+-msgstr ""
+-" Fluxos:\n"
+-" Fluxo Blocos DeslocComp DeslocDescomp TamanhoComp TamanhoDescomp Propo Verif Ajuste"
+-
+-#. TRANSLATORS: The second line is column headings. All
+-#. except Check are right aligned; Check is left aligned.
+-#: src/xz/list.c:813
+-#, c-format
+-msgid ""
+-" Blocks:\n"
+-" Stream Block CompOffset UncompOffset TotalSize UncompSize Ratio Check"
+-msgstr ""
+-" Blocos:\n"
+-" Fluxo Bloco DeslocComp DeslocDescomp TamanhoTotal TamanhoDecomp Propo Verif"
+-
+-#. TRANSLATORS: These are additional column headings
+-#. for the most verbose listing mode. CheckVal
+-#. (Check value), Flags, and Filters are left aligned.
+-#. Header (Block Header Size), CompSize, and MemUsage
+-#. are right aligned. %*s is replaced with 0-120
+-#. spaces to make the CheckVal column wide enough.
+-#. Test with "xz -lvv foo.xz".
+-#: src/xz/list.c:825
+-#, c-format
+-msgid " CheckVal %*s Header Flags CompSize MemUsage Filters"
+-msgstr " ValVerif %*s Cabeç Sinaliz TamComp UsoMem Filtros"
+-
+-#: src/xz/list.c:903 src/xz/list.c:1078
+-#, c-format
+-msgid " Memory needed: %s MiB\n"
+-msgstr " Memória exigida: %s MiB\n"
+-
+-# Espaço adicionado para promover alinhamento, vide "xz -lvv foo.xz"
+-#: src/xz/list.c:905 src/xz/list.c:1080
+-#, c-format
+-msgid " Sizes in headers: %s\n"
+-msgstr " Tam. cabeçalhos: %s\n"
+-
+-#: src/xz/list.c:906 src/xz/list.c:1081
++#: src/xz/list.c:1025 src/xz/list.c:1203
+ msgid "Yes"
+ msgstr "Sim"
+
+-#: src/xz/list.c:906 src/xz/list.c:1081
++#: src/xz/list.c:1025 src/xz/list.c:1203
+ msgid "No"
+ msgstr "Não"
+
+-#: src/xz/list.c:907 src/xz/list.c:1082
++#: src/xz/list.c:1027 src/xz/list.c:1205
+ #, c-format
+ msgid " Minimum XZ Utils version: %s\n"
+ msgstr " Versão mínima do XZ Utils: %s\n"
+
+ #. TRANSLATORS: %s is an integer. Only the plural form of this
+ #. message is used (e.g. "2 files"). Test with "xz -l foo.xz bar.xz".
+-#: src/xz/list.c:1057
++#: src/xz/list.c:1178
+ #, c-format
+ msgid "%s file\n"
+ msgid_plural "%s files\n"
+ msgstr[0] "%s arquivo\n"
+ msgstr[1] "%s arquivos\n"
+
+-#: src/xz/list.c:1070
++#: src/xz/list.c:1191
+ msgid "Totals:"
+ msgstr "Totais:"
+
+-#: src/xz/list.c:1071
+-#, c-format
+-msgid " Number of files: %s\n"
+-msgstr " Núm. de arquivos: %s\n"
+-
+-#: src/xz/list.c:1146
++#: src/xz/list.c:1269
+ msgid "--list works only on .xz files (--format=xz or --format=auto)"
+ msgstr "--list funciona apenas em arquivos .xz (--format=xz ou --format=auto)"
+
+-#: src/xz/list.c:1152
++#: src/xz/list.c:1275
+ msgid "--list does not support reading from standard input"
+ msgstr "--list não possui suporte a leitura da entrada padrão"
+
+@@ -488,11 +541,11 @@ msgstr "%s: Fim da entrada inesperado ao ler nomes de arquivos"
+ msgid "%s: Null character found when reading filenames; maybe you meant to use `--files0' instead of `--files'?"
+ msgstr "%s: Caractere nulo encontrado ao ler nomes de arquivos; talvez você queria usar \"--files0\" em vez de \"--files\"?"
+
+-#: src/xz/main.c:174
++#: src/xz/main.c:188
+ msgid "Compression and decompression with --robot are not supported yet."
+ msgstr "Ainda não há suporte a compressão e descompressão com --robot."
+
+-#: src/xz/main.c:252
++#: src/xz/main.c:266
+ msgid "Cannot read data from standard input when reading filenames from standard input"
+ msgstr "Não é possível ler dados da entrada padrão ao ler nomes de arquivos da entrada padrão"
+
+@@ -500,68 +553,68 @@ msgstr "Não é possível ler dados da entrada padrão ao ler nomes de arquivos
+ #. of the line in messages. Usually it becomes "xz: ".
+ #. This is a translatable string because French needs
+ #. a space before a colon.
+-#: src/xz/message.c:728
++#: src/xz/message.c:725
+ #, c-format
+ msgid "%s: "
+ msgstr "%s: "
+
+-#: src/xz/message.c:791 src/xz/message.c:841
++#: src/xz/message.c:797 src/xz/message.c:856
+ msgid "Internal error (bug)"
+ msgstr "Erro interno (bug)"
+
+-#: src/xz/message.c:798
++#: src/xz/message.c:804
+ msgid "Cannot establish signal handlers"
+ msgstr "Não foi possível estabelecer manipuladores de sinais"
+
+-#: src/xz/message.c:807
++#: src/xz/message.c:813
+ msgid "No integrity check; not verifying file integrity"
+ msgstr "Sem verificação de integridade; não será verificada a integridade do arquivo"
+
+-#: src/xz/message.c:810
++#: src/xz/message.c:816
+ msgid "Unsupported type of integrity check; not verifying file integrity"
+ msgstr "Tipo de verificação de integridade sem suporte; não será verificada a integridade do arquivo"
+
+-#: src/xz/message.c:817
++#: src/xz/message.c:823
+ msgid "Memory usage limit reached"
+ msgstr "Limite de uso de memória alcançado"
+
+-#: src/xz/message.c:820
++#: src/xz/message.c:826
+ msgid "File format not recognized"
+ msgstr "Formato de arquivo não reconhecido"
+
+-#: src/xz/message.c:823
++#: src/xz/message.c:829
+ msgid "Unsupported options"
+ msgstr "Opções sem suporte"
+
+-#: src/xz/message.c:826
++#: src/xz/message.c:832
+ msgid "Compressed data is corrupt"
+ msgstr "Os dados comprimidos estão corrompidos"
+
+-#: src/xz/message.c:829
++#: src/xz/message.c:835
+ msgid "Unexpected end of input"
+ msgstr "Fim da entrada inesperado"
+
+-#: src/xz/message.c:862
++#: src/xz/message.c:877
+ #, c-format
+ msgid "%s MiB of memory is required. The limiter is disabled."
+ msgstr "%s MiB de memória é necessário. O limitador está desabilitado."
+
+-#: src/xz/message.c:890
++#: src/xz/message.c:905
+ #, c-format
+ msgid "%s MiB of memory is required. The limit is %s."
+ msgstr "%s MiB de memória é necessário. O limite é %s."
+
+-#: src/xz/message.c:1057
++#: src/xz/message.c:924
+ #, c-format
+ msgid "%s: Filter chain: %s\n"
+ msgstr "%s: Cadeia de filtros: %s\n"
+
+-#: src/xz/message.c:1067
++#: src/xz/message.c:935
+ #, c-format
+ msgid "Try `%s --help' for more information."
+ msgstr "Tente \"%s --help\" para mais informações."
+
+-#: src/xz/message.c:1093
++#: src/xz/message.c:961
+ #, c-format
+ msgid ""
+ "Usage: %s [OPTION]... [FILE]...\n"
+@@ -572,15 +625,15 @@ msgstr ""
+ "Comprime e descomprime ARQUIVOs no formato .xz.\n"
+ "\n"
+
+-#: src/xz/message.c:1100
++#: src/xz/message.c:968
+ msgid "Mandatory arguments to long options are mandatory for short options too.\n"
+ msgstr "Argumentos obrigatórios para opções longas também o são para opções curtas.\n"
+
+-#: src/xz/message.c:1104
++#: src/xz/message.c:972
+ msgid " Operation mode:\n"
+ msgstr " Modo de operação:\n"
+
+-#: src/xz/message.c:1107
++#: src/xz/message.c:975
+ msgid ""
+ " -z, --compress force compression\n"
+ " -d, --decompress force decompression\n"
+@@ -592,7 +645,7 @@ msgstr ""
+ " -t, --test testa a integridade do arquivo comprimido\n"
+ " -l, --list lista informações sobre arquivos .xz"
+
+-#: src/xz/message.c:1113
++#: src/xz/message.c:981
+ msgid ""
+ "\n"
+ " Operation modifiers:\n"
+@@ -600,7 +653,7 @@ msgstr ""
+ "\n"
+ " Modificadores de opções:\n"
+
+-#: src/xz/message.c:1116
++#: src/xz/message.c:984
+ msgid ""
+ " -k, --keep keep (don't delete) input files\n"
+ " -f, --force force overwrite of output file and (de)compress links\n"
+@@ -612,7 +665,7 @@ msgstr ""
+ " -c, --stdout escreve a entrada padrão e não exclui os arquivos\n"
+ " de entrada"
+
+-#: src/xz/message.c:1122
++#: src/xz/message.c:993
+ msgid ""
+ " --single-stream decompress only the first stream, and silently\n"
+ " ignore possible remaining input data"
+@@ -620,7 +673,7 @@ msgstr ""
+ " --single-stream descomprime apenas o primeiro fluxo, e ignora de forma\n"
+ " silenciosa possíveis dados de entrada restantes"
+
+-#: src/xz/message.c:1125
++#: src/xz/message.c:996
+ msgid ""
+ " --no-sparse do not create sparse files when decompressing\n"
+ " -S, --suffix=.SUF use the suffix `.SUF' on compressed files\n"
+@@ -640,7 +693,7 @@ msgstr ""
+ " similar a --files, mas usa o caractere nulo como\n"
+ " terminador"
+
+-#: src/xz/message.c:1134
++#: src/xz/message.c:1005
+ msgid ""
+ "\n"
+ " Basic file format and compression options:\n"
+@@ -648,24 +701,24 @@ msgstr ""
+ "\n"
+ " Opções básicas de formato de arquivo e compressão:\n"
+
+-#: src/xz/message.c:1136
++#: src/xz/message.c:1007
+ msgid ""
+ " -F, --format=FMT file format to encode or decode; possible values are\n"
+-" `auto' (default), `xz', `lzma', and `raw'\n"
++" `auto' (default), `xz', `lzma', `lzip', and `raw'\n"
+ " -C, --check=CHECK integrity check type: `none' (use with caution),\n"
+ " `crc32', `crc64' (default), or `sha256'"
+ msgstr ""
+ " -F, --format=FMT formato de arquivo para codificar ou decodificar;\n"
+ " valores possíveis são\n"
+-" \"auto\" (padrão), \"xz\", \"lzma\" e \"raw\"\n"
++" \"auto\" (padrão), \"xz\", \"lzma\", \"lzip\" e \"raw\"\n"
+ " -C, --check=VERIF tipo de verificação de integridade: \"none\" (cuidado!),\n"
+ " \"crc32\", \"crc64\" (padrão) ou \"sha256\""
+
+-#: src/xz/message.c:1141
++#: src/xz/message.c:1012
+ msgid " --ignore-check don't verify the integrity check when decompressing"
+ msgstr " --ignore-check não faz a verificação de integridade ao descomprimir"
+
+-#: src/xz/message.c:1145
++#: src/xz/message.c:1016
+ msgid ""
+ " -0 ... -9 compression preset; default is 6; take compressor *and*\n"
+ " decompressor memory usage into account before using 7-9!"
+@@ -674,7 +727,7 @@ msgstr ""
+ " memória do compressor *e* descompressor em conta\n"
+ " antes de usar 7-9!"
+
+-#: src/xz/message.c:1149
++#: src/xz/message.c:1020
+ msgid ""
+ " -e, --extreme try to improve compression ratio by using more CPU time;\n"
+ " does not affect decompressor memory requirements"
+@@ -683,7 +736,7 @@ msgstr ""
+ " tempo de CPU; não afeta os requisitos de memória do\n"
+ " descompressor"
+
+-#: src/xz/message.c:1153
++#: src/xz/message.c:1024
+ msgid ""
+ " -T, --threads=NUM use at most NUM threads; the default is 1; set to 0\n"
+ " to use as many threads as there are processor cores"
+@@ -692,7 +745,7 @@ msgstr ""
+ " 0 para usar o máximo de threads que há de núcleos de\n"
+ " processador"
+
+-#: src/xz/message.c:1158
++#: src/xz/message.c:1029
+ msgid ""
+ " --block-size=SIZE\n"
+ " start a new .xz block after every SIZE bytes of input;\n"
+@@ -703,7 +756,7 @@ msgstr ""
+ " use isso para definido o tamanho de bloco para\n"
+ " compressão com threads"
+
+-#: src/xz/message.c:1162
++#: src/xz/message.c:1033
+ msgid ""
+ " --block-list=SIZES\n"
+ " start a new .xz block after the given comma-separated\n"
+@@ -713,7 +766,7 @@ msgstr ""
+ " inicia um novo bloco .xz após os intervalos dados,\n"
+ " separados por vírgula, de dados descomprimidos"
+
+-#: src/xz/message.c:1166
++#: src/xz/message.c:1037
+ msgid ""
+ " --flush-timeout=TIMEOUT\n"
+ " when compressing, if more than TIMEOUT milliseconds has\n"
+@@ -726,23 +779,26 @@ msgstr ""
+ " de mais entrada bloquearia, todos os dados pendentes\n"
+ " serão liberados"
+
+-#: src/xz/message.c:1172
++#: src/xz/message.c:1043
+ #, no-c-format
+ msgid ""
+ " --memlimit-compress=LIMIT\n"
+ " --memlimit-decompress=LIMIT\n"
++" --memlimit-mt-decompress=LIMIT\n"
+ " -M, --memlimit=LIMIT\n"
+ " set memory usage limit for compression, decompression,\n"
+-" or both; LIMIT is in bytes, % of RAM, or 0 for defaults"
++" threaded decompression, or all of these; LIMIT is in\n"
++" bytes, % of RAM, or 0 for defaults"
+ msgstr ""
+ " --memlimit-compress=LIMITE\n"
+ " --memlimit-decompress=LIMITE\n"
++" --memlimit-mt-decompress=LIMITE\n"
+ " -M, --memlimit=LIMITE\n"
+ " define o limite de uso de memória para compressão,\n"
+-" descompressão ou ambos; LIMITE é em bytes, % de RAM\n"
+-" ou 0 para padrões"
++" descompressão, compactação em threads ou todas essas;\n"
++" LIMITE é em bytes, % de RAM ou 0 para padrões"
+
+-#: src/xz/message.c:1179
++#: src/xz/message.c:1052
+ msgid ""
+ " --no-adjust if compression settings exceed the memory usage limit,\n"
+ " give an error instead of adjusting the settings downwards"
+@@ -751,7 +807,7 @@ msgstr ""
+ " de uso de memória, fornece um erro em vez de\n"
+ " ajustar as configurações para baixo"
+
+-#: src/xz/message.c:1185
++#: src/xz/message.c:1058
+ msgid ""
+ "\n"
+ " Custom filter chain for compression (alternative for using presets):"
+@@ -759,7 +815,7 @@ msgstr ""
+ "\n"
+ " Cadeia de filtros personalizada para compressão (alternativa à predefinição):"
+
+-#: src/xz/message.c:1194
++#: src/xz/message.c:1067
+ msgid ""
+ "\n"
+ " --lzma1[=OPTS] LZMA1 or LZMA2; OPTS is a comma-separated list of zero or\n"
+@@ -789,30 +845,32 @@ msgstr ""
+ " depth=NUM máximo de profundidade de pesquisa;\n"
+ " 0=automatic (padrão)"
+
+-#: src/xz/message.c:1209
++#: src/xz/message.c:1082
+ msgid ""
+ "\n"
+ " --x86[=OPTS] x86 BCJ filter (32-bit and 64-bit)\n"
++" --arm[=OPTS] ARM BCJ filter\n"
++" --armthumb[=OPTS] ARM-Thumb BCJ filter\n"
++" --arm64[=OPTS] ARM64 BCJ filter\n"
+ " --powerpc[=OPTS] PowerPC BCJ filter (big endian only)\n"
+ " --ia64[=OPTS] IA-64 (Itanium) BCJ filter\n"
+-" --arm[=OPTS] ARM BCJ filter (little endian only)\n"
+-" --armthumb[=OPTS] ARM-Thumb BCJ filter (little endian only)\n"
+ " --sparc[=OPTS] SPARC BCJ filter\n"
+ " Valid OPTS for all BCJ filters:\n"
+ " start=NUM start offset for conversions (default=0)"
+ msgstr ""
+ "\n"
+ " --x86[=OPÇÕES] filtro BCJ x86 (32 bits e 64 bits)\n"
++" --arm[=OPÇÕES] filtro BCJ ARM\n"
++" --armthumb[=OPÇÕES] filtro BCJ ARM-Thumb\n"
++" --arm64[=OPÇÕES] filtro BCJ ARM64\n"
+ " --powerpc[=OPÇÕES] filtro BCJ PowerPC (big endian apenas)\n"
+ " --ia64[=OPÇÕES] filtro BCJ IA-64 (Itanium)\n"
+-" --arm[=OPÇÕES] filtro BCJ ARM (little endian apenas)\n"
+-" --armthumb[=OPÇÕES] filtro BCJ ARM-Thumb (little endian apenas)\n"
+ " --sparc[=OPÇÕES] filtro BCJ SPARC\n"
+ " OPÇÕES válidas para todos os filtros BCJ:\n"
+ " start=NUM deslocamento inicial para conversões\n"
+-" (default=0)"
++" (padrão=0)"
+
+-#: src/xz/message.c:1221
++#: src/xz/message.c:1095
+ msgid ""
+ "\n"
+ " --delta[=OPTS] Delta filter; valid OPTS (valid values; default):\n"
+@@ -824,7 +882,7 @@ msgstr ""
+ " dist=NÚM distância entre bytes sendo subtraído\n"
+ " de cada um (1-256; 1)"
+
+-#: src/xz/message.c:1229
++#: src/xz/message.c:1103
+ msgid ""
+ "\n"
+ " Other options:\n"
+@@ -832,7 +890,7 @@ msgstr ""
+ "\n"
+ " Outras opções:\n"
+
+-#: src/xz/message.c:1232
++#: src/xz/message.c:1106
+ msgid ""
+ " -q, --quiet suppress warnings; specify twice to suppress errors too\n"
+ " -v, --verbose be verbose; specify twice for even more verbose"
+@@ -840,15 +898,15 @@ msgstr ""
+ " -q, --quiet suprime avisos, use duas vezes para suprimir erros também\n"
+ " -v, --verbose ser detalhado; use duas vezes para ainda mais detalhes"
+
+-#: src/xz/message.c:1237
++#: src/xz/message.c:1111
+ msgid " -Q, --no-warn make warnings not affect the exit status"
+ msgstr " -Q, --no-warn faz os avisos não afetarem o status de saída"
+
+-#: src/xz/message.c:1239
++#: src/xz/message.c:1113
+ msgid " --robot use machine-parsable messages (useful for scripts)"
+ msgstr " --robot usa mensagens analisáveis por máquina (útil p/ scripts)"
+
+-#: src/xz/message.c:1242
++#: src/xz/message.c:1116
+ msgid ""
+ " --info-memory display the total amount of RAM and the currently active\n"
+ " memory usage limits, and exit"
+@@ -856,7 +914,7 @@ msgstr ""
+ " --info-memory exibe a quantidade total de RAM e os limites de uso\n"
+ " de memória atualmente ativos e sai"
+
+-#: src/xz/message.c:1245
++#: src/xz/message.c:1119
+ msgid ""
+ " -h, --help display the short help (lists only the basic options)\n"
+ " -H, --long-help display this long help and exit"
+@@ -864,7 +922,7 @@ msgstr ""
+ " -h, --help exibe a ajuda curto (lista apenas as opções básicas)\n"
+ " -H, --long-help exibe essa ajuda longa e sai"
+
+-#: src/xz/message.c:1249
++#: src/xz/message.c:1123
+ msgid ""
+ " -h, --help display this short help and exit\n"
+ " -H, --long-help display the long help (lists also the advanced options)"
+@@ -872,11 +930,11 @@ msgstr ""
+ " -h, --help exibe essa ajuda curta e sai\n"
+ " -H, --long-help exibe a ajuda longa (lista também as opções avançadas)"
+
+-#: src/xz/message.c:1254
++#: src/xz/message.c:1128
+ msgid " -V, --version display the version number and exit"
+ msgstr " -V, --version exibe o número de versão e sai"
+
+-#: src/xz/message.c:1256
++#: src/xz/message.c:1130
+ msgid ""
+ "\n"
+ "With no FILE, or when FILE is -, read standard input.\n"
+@@ -888,19 +946,19 @@ msgstr ""
+ #. for this package. Please add _another line_ saying
+ #. "Report translation bugs to <...>\n" with the email or WWW
+ #. address for translation bugs. Thanks.
+-#: src/xz/message.c:1262
++#: src/xz/message.c:1136
+ #, c-format
+ msgid "Report bugs to <%s> (in English or Finnish).\n"
+ msgstr ""
+ "Relate erros para <%s> (em inglês ou finlandês).\n"
+ "Relate erros de tradução para <https://translationproject.org/team/pt_BR.html>.\n"
+
+-#: src/xz/message.c:1264
++#: src/xz/message.c:1138
+ #, c-format
+ msgid "%s home page: <%s>\n"
+ msgstr "Site do %s: <%s>\n"
+
+-#: src/xz/message.c:1268
++#: src/xz/message.c:1142
+ msgid "THIS IS A DEVELOPMENT VERSION NOT INTENDED FOR PRODUCTION USE."
+ msgstr "ESSA É UMA VERSÃO DE DESENVOLVIMENTO, NÃO DESTINADA PARA USO EM PRODUÇÃO."
+
+@@ -928,27 +986,22 @@ msgstr "Predefinição LZMA1/LZMA2 sem suporte: %s"
+ msgid "The sum of lc and lp must not exceed 4"
+ msgstr "A soma de lc e lp não deve exceder 4"
+
+-#: src/xz/options.c:359
+-#, c-format
+-msgid "The selected match finder requires at least nice=%<PRIu32>"
+-msgstr "O localizador de correspondência selecionado requer pelo menos nice=%<PRIu32>"
+-
+-#: src/xz/suffix.c:133 src/xz/suffix.c:258
++#: src/xz/suffix.c:137 src/xz/suffix.c:268
+ #, c-format
+ msgid "%s: With --format=raw, --suffix=.SUF is required unless writing to stdout"
+ msgstr "%s: Com --format=raw, --suffix=.SUF é exigido, a menos que esteja escrevendo para stdout"
+
+-#: src/xz/suffix.c:164
++#: src/xz/suffix.c:168
+ #, c-format
+ msgid "%s: Filename has an unknown suffix, skipping"
+ msgstr "%s: O nome de arquivo tem um sufixo desconhecido, ignorando"
+
+-#: src/xz/suffix.c:185
++#: src/xz/suffix.c:189
+ #, c-format
+ msgid "%s: File already has `%s' suffix, skipping"
+ msgstr "%s: O arquivo já tem o sufixo \"%s\", ignorando"
+
+-#: src/xz/suffix.c:393
++#: src/xz/suffix.c:405
+ #, c-format
+ msgid "%s: Invalid filename suffix"
+ msgstr "%s: Sufixo de nome de arquivo inválido"
+@@ -972,15 +1025,11 @@ msgstr "Sufixos válidos são \"KiB\" (2^10), \"MiB\" (2^20) e \"GiB\" (2^30)."
+ msgid "Value of the option `%s' must be in the range [%<PRIu64>, %<PRIu64>]"
+ msgstr "O valor da opção \"%s\" deve estar no intervalo [%<PRIu64>, %<PRIu64>]"
+
+-#: src/xz/util.c:267
+-msgid "Empty filename, skipping"
+-msgstr "Nome de arquivo vazio, ignorando"
+-
+-#: src/xz/util.c:281
++#: src/xz/util.c:269
+ msgid "Compressed data cannot be read from a terminal"
+ msgstr "Dados comprimidos não podem ser lidos de um terminal"
+
+-#: src/xz/util.c:294
++#: src/xz/util.c:282
+ msgid "Compressed data cannot be written to a terminal"
+ msgstr "Dados comprimidos não podem ser escrito para um terminal"
+
+@@ -997,3 +1046,39 @@ msgstr "Erro desconhecido"
+
+ #~ msgid "Sandbox was successfully enabled"
+ #~ msgstr "Sandbox foi habilitado com sucesso"
++
++# Espaços adicionados para manter alinhamento com mensagens adjacentes -- Rafael
++#~ msgid "Memory usage limit for compression: "
++#~ msgstr "Limite de uso de memória para compressão: "
++
++#~ msgid " Streams: %s\n"
++#~ msgstr " Fluxos: %s\n"
++
++#~ msgid " Blocks: %s\n"
++#~ msgstr " Blocos: %s\n"
++
++#~ msgid " Ratio: %s\n"
++#~ msgstr " Proporção: %s\n"
++
++#~ msgid " Check: %s\n"
++#~ msgstr " Verificação: %s\n"
++
++#~ msgid ""
++#~ " Streams:\n"
++#~ " Stream Blocks CompOffset UncompOffset CompSize UncompSize Ratio Check Padding"
++#~ msgstr ""
++#~ " Fluxos:\n"
++#~ " Fluxo Blocos DeslocComp DeslocDescomp TamanhoComp TamanhoDescomp Propo Verif Ajuste"
++
++#~ msgid ""
++#~ " Blocks:\n"
++#~ " Stream Block CompOffset UncompOffset TotalSize UncompSize Ratio Check"
++#~ msgstr ""
++#~ " Blocos:\n"
++#~ " Fluxo Bloco DeslocComp DeslocDescomp TamanhoTotal TamanhoDecomp Propo Verif"
++
++#~ msgid " CheckVal %*s Header Flags CompSize MemUsage Filters"
++#~ msgstr " ValVerif %*s Cabeç Sinaliz TamComp UsoMem Filtros"
++
++#~ msgid "The selected match finder requires at least nice=%<PRIu32>"
++#~ msgstr "O localizador de correspondência selecionado requer pelo menos nice=%<PRIu32>"
diff --git a/debian/patches/po-pt_BR-Revert-changes-from-the-release.patch b/debian/patches/po-pt_BR-Revert-changes-from-the-release.patch
new file mode 100644
index 0000000..dab13fe
--- /dev/null
+++ b/debian/patches/po-pt_BR-Revert-changes-from-the-release.patch
@@ -0,0 +1,1245 @@
+From: Sebastian Andrzej Siewior <sebastian@breakpoint.cc>
+Date: Mon, 30 Jan 2023 21:06:43 +0100
+Subject: po/pt_BR: Revert changes from the release.
+
+Signed-off-by: Sebastian Andrzej Siewior <sebastian@breakpoint.cc>
+---
+ po/pt_BR.po | 625 ++++++++++++++++++++++++------------------------------------
+ 1 file changed, 244 insertions(+), 381 deletions(-)
+
+diff --git a/po/pt_BR.po b/po/pt_BR.po
+index 5ebd9d1..c312932 100644
+--- a/po/pt_BR.po
++++ b/po/pt_BR.po
+@@ -5,8 +5,8 @@
+ msgid ""
+ msgstr ""
+ "Project-Id-Version: xz 5.2.4\n"
+-"Report-Msgid-Bugs-To: xz@tukaani.org\n"
+-"POT-Creation-Date: 2023-01-11 19:01+0200\n"
++"Report-Msgid-Bugs-To: lasse.collin@tukaani.org\n"
++"POT-Creation-Date: 2022-06-29 17:47+0300\n"
+ "PO-Revision-Date: 2021-01-06 22:30-0300\n"
+ "Last-Translator: Rafael Fontenelle <rafaelff@gnome.org>\n"
+ "Language-Team: Brazilian Portuguese <ldpbr-translation@lists.sourceforge.net>\n"
+@@ -18,115 +18,99 @@ msgstr ""
+ "Plural-Forms: nplurals=2; plural=(n > 1);\n"
+ "X-Generator: Virtaal 1.0.0-beta1\n"
+
+-#: src/xz/args.c:77
++#: src/xz/args.c:63
+ #, c-format
+ msgid "%s: Invalid argument to --block-list"
+ msgstr "%s: Argumento inválido para --block-list"
+
+-#: src/xz/args.c:87
++#: src/xz/args.c:73
+ #, c-format
+ msgid "%s: Too many arguments to --block-list"
+ msgstr "%s: Argumentos demais para --block-list"
+
+-#: src/xz/args.c:116
++#: src/xz/args.c:102
+ msgid "0 can only be used as the last element in --block-list"
+ msgstr "0 só pode ser usado como o último elemento em --block-list"
+
+-#: src/xz/args.c:451
++#: src/xz/args.c:406
+ #, c-format
+ msgid "%s: Unknown file format type"
+ msgstr "%s: Tipo de formato de arquivo desconhecido"
+
+-#: src/xz/args.c:474 src/xz/args.c:482
++#: src/xz/args.c:429 src/xz/args.c:437
+ #, c-format
+ msgid "%s: Unsupported integrity check type"
+ msgstr "%s: Tipo de verificação de integridade sem suporte"
+
+-#: src/xz/args.c:518
++#: src/xz/args.c:473
+ msgid "Only one file can be specified with `--files' or `--files0'."
+ msgstr "Somente um arquivo pode ser especificado com \"--files\" ou \"--files0\"."
+
+-#: src/xz/args.c:586
++#: src/xz/args.c:541
+ #, c-format
+ msgid "The environment variable %s contains too many arguments"
+ msgstr "A variável de ambiente %s contém argumentos demais"
+
+-#: src/xz/args.c:688
++#: src/xz/args.c:643
+ msgid "Compression support was disabled at build time"
+ msgstr "Suporte a compressão foi desabilitado em tempo de compilação"
+
+-#: src/xz/args.c:695
++#: src/xz/args.c:650
+ msgid "Decompression support was disabled at build time"
+ msgstr "Suporte a descompressão foi desabilitado em tempo de compilação"
+
+-#: src/xz/args.c:701
+-msgid "Compression of lzip files (.lz) is not supported"
+-msgstr ""
+-
+-#: src/xz/coder.c:115
++#: src/xz/coder.c:110
+ msgid "Maximum number of filters is four"
+ msgstr "O número máximo de filtros é quatro"
+
+-#: src/xz/coder.c:134
++#: src/xz/coder.c:129
+ msgid "Memory usage limit is too low for the given filter setup."
+ msgstr "O limite de uso de memória é baixo demais para a configuração de filtro dada."
+
+-#: src/xz/coder.c:169
++#: src/xz/coder.c:159
+ msgid "Using a preset in raw mode is discouraged."
+ msgstr "O uso de uma predefinição em modo bruto é desencorajado."
+
+-#: src/xz/coder.c:171
++#: src/xz/coder.c:161
+ msgid "The exact options of the presets may vary between software versions."
+ msgstr "As opções exatas de predefinições podem variar entre versões do software."
+
+-#: src/xz/coder.c:194
++#: src/xz/coder.c:184
+ msgid "The .lzma format supports only the LZMA1 filter"
+ msgstr "O formato .lzma possui suporte apenas ao filtro LZMA1"
+
+-#: src/xz/coder.c:202
++#: src/xz/coder.c:192
+ msgid "LZMA1 cannot be used with the .xz format"
+ msgstr "LZMA1 não pode ser usado com o formato .xz"
+
+-#: src/xz/coder.c:219
++#: src/xz/coder.c:209
+ msgid "The filter chain is incompatible with --flush-timeout"
+ msgstr "A cadeia de filtros é incompatível com --flush-timeout"
+
+-#: src/xz/coder.c:225
++#: src/xz/coder.c:215
+ msgid "Switching to single-threaded mode due to --flush-timeout"
+ msgstr "Alternando para o modo de thread única por causa de --flush-timeout"
+
+-#: src/xz/coder.c:249
++#: src/xz/coder.c:235
+ #, c-format
+ msgid "Using up to %<PRIu32> threads."
+ msgstr "Usando até %<PRIu32> threads."
+
+-#: src/xz/coder.c:265
++#: src/xz/coder.c:251
+ msgid "Unsupported filter chain or filter options"
+ msgstr "Opções de filtro ou cadeia de filtros sem suporte"
+
+-#: src/xz/coder.c:277
++#: src/xz/coder.c:263
+ #, c-format
+ msgid "Decompression will need %s MiB of memory."
+ msgstr "A descompressão precisará de %s MiB de memória."
+
+-#: src/xz/coder.c:309
+-#, fuzzy, c-format
+-#| msgid "Adjusted the number of threads from %s to %s to not exceed the memory usage limit of %s MiB"
+-msgid "Reduced the number of threads from %s to %s to not exceed the memory usage limit of %s MiB"
+-msgstr "Ajustado o número de threads de %s de %s para não exceder o limite de uso de memória de %s MiB"
+-
+-#: src/xz/coder.c:329
++#: src/xz/coder.c:300
+ #, c-format
+-msgid "Reduced the number of threads from %s to one. The automatic memory usage limit of %s MiB is still being exceeded. %s MiB of memory is required. Continuing anyway."
+-msgstr ""
+-
+-#: src/xz/coder.c:356
+-#, fuzzy, c-format
+-#| msgid "Adjusted the number of threads from %s to %s to not exceed the memory usage limit of %s MiB"
+-msgid "Switching to single-threaded mode to not exceed the memory usage limit of %s MiB"
++msgid "Adjusted the number of threads from %s to %s to not exceed the memory usage limit of %s MiB"
+ msgstr "Ajustado o número de threads de %s de %s para não exceder o limite de uso de memória de %s MiB"
+
+-#: src/xz/coder.c:411
++#: src/xz/coder.c:354
+ #, c-format
+ msgid "Adjusted LZMA%c dictionary size from %s MiB to %s MiB to not exceed the memory usage limit of %s MiB"
+ msgstr "Ajustado o tamanho de dicionário de LZMA%c de %s MiB para %s MiB para não exceder o limite de uso de memória de %s MiB"
+@@ -136,11 +120,11 @@ msgstr "Ajustado o tamanho de dicionário de LZMA%c de %s MiB para %s MiB para n
+ msgid "Error creating a pipe: %s"
+ msgstr "Erro ao criar um pipe: %s"
+
+-#: src/xz/file_io.c:235
++#: src/xz/file_io.c:224
+ msgid "Failed to enable the sandbox"
+ msgstr "Falha ao habilitar o sandbox"
+
+-#: src/xz/file_io.c:277
++#: src/xz/file_io.c:266
+ #, c-format
+ msgid "%s: poll() failed: %s"
+ msgstr "%s: poll() falhou: %s"
+@@ -155,355 +139,209 @@ msgstr "%s: poll() falhou: %s"
+ #. it is possible that the user has put a new file in place
+ #. of the original file, and in that case it obviously
+ #. shouldn't be removed.
+-#: src/xz/file_io.c:344
++#: src/xz/file_io.c:333
+ #, c-format
+ msgid "%s: File seems to have been moved, not removing"
+ msgstr "%s: O arquivo parece ter sido movido, não será removido"
+
+-#: src/xz/file_io.c:351 src/xz/file_io.c:907
++#: src/xz/file_io.c:340 src/xz/file_io.c:882
+ #, c-format
+ msgid "%s: Cannot remove: %s"
+ msgstr "%s: Não foi possível remover: %s"
+
+-#: src/xz/file_io.c:377
++#: src/xz/file_io.c:366
+ #, c-format
+ msgid "%s: Cannot set the file owner: %s"
+ msgstr "%s: Não foi possível definir o dono do arquivo: %s"
+
+-#: src/xz/file_io.c:390
++#: src/xz/file_io.c:372
+ #, c-format
+ msgid "%s: Cannot set the file group: %s"
+ msgstr "%s: Não foi possível definir o grupo do arquivo: %s"
+
+-#: src/xz/file_io.c:409
++#: src/xz/file_io.c:391
+ #, c-format
+ msgid "%s: Cannot set the file permissions: %s"
+ msgstr "%s: Não foi possível definir as permissões do arquivo: %s"
+
+-#: src/xz/file_io.c:535
++#: src/xz/file_io.c:517
+ #, c-format
+ msgid "Error getting the file status flags from standard input: %s"
+ msgstr "Erro ao obter os sinalizadores de status da entrada padrão: %s"
+
+-#: src/xz/file_io.c:593 src/xz/file_io.c:655
++#: src/xz/file_io.c:574 src/xz/file_io.c:636
+ #, c-format
+ msgid "%s: Is a symbolic link, skipping"
+ msgstr "%s: É um link simbólico, ignorando"
+
+-#: src/xz/file_io.c:684
++#: src/xz/file_io.c:665
+ #, c-format
+ msgid "%s: Is a directory, skipping"
+ msgstr "%s: É um diretório, ignorando"
+
+-#: src/xz/file_io.c:690
++#: src/xz/file_io.c:671
+ #, c-format
+ msgid "%s: Not a regular file, skipping"
+ msgstr "%s: Não é um arquivo comum, ignorando"
+
+-#: src/xz/file_io.c:707
++#: src/xz/file_io.c:688
+ #, c-format
+ msgid "%s: File has setuid or setgid bit set, skipping"
+ msgstr "%s: O arquivo possui o bit setuid ou setgid definido, ignorando"
+
+-#: src/xz/file_io.c:714
++#: src/xz/file_io.c:695
+ #, c-format
+ msgid "%s: File has sticky bit set, skipping"
+ msgstr "%s: O arquivo possui o bit sticky definido, ignorando"
+
+-#: src/xz/file_io.c:721
++#: src/xz/file_io.c:702
+ #, c-format
+ msgid "%s: Input file has more than one hard link, skipping"
+ msgstr "%s: O arquivo de entrada possui mais de um link físico, ignorando"
+
+-#: src/xz/file_io.c:763
+-msgid "Empty filename, skipping"
+-msgstr "Nome de arquivo vazio, ignorando"
+-
+-#: src/xz/file_io.c:817
++#: src/xz/file_io.c:792
+ #, c-format
+ msgid "Error restoring the status flags to standard input: %s"
+ msgstr "Erro ao restaurar os sinalizadores de status para entrada padrão: %s"
+
+-#: src/xz/file_io.c:865
++#: src/xz/file_io.c:840
+ #, c-format
+ msgid "Error getting the file status flags from standard output: %s"
+ msgstr "Erro ao obter os sinalizadores de status de arquivo da saída padrão: %s"
+
+-#: src/xz/file_io.c:1043
++#: src/xz/file_io.c:1018
+ #, c-format
+ msgid "Error restoring the O_APPEND flag to standard output: %s"
+ msgstr "Erro ao restaurar o sinalizador O_APPEND para a saída padrão: %s"
+
+-#: src/xz/file_io.c:1055
++#: src/xz/file_io.c:1030
+ #, c-format
+ msgid "%s: Closing the file failed: %s"
+ msgstr "%s: Fechamento do arquivo falhou: %s"
+
+-#: src/xz/file_io.c:1091 src/xz/file_io.c:1354
++#: src/xz/file_io.c:1066 src/xz/file_io.c:1309
+ #, c-format
+ msgid "%s: Seeking failed when trying to create a sparse file: %s"
+ msgstr "%s: Busca falhou ao tentar criar um arquivo esparso: %s"
+
+-#: src/xz/file_io.c:1192
++#: src/xz/file_io.c:1167
+ #, c-format
+ msgid "%s: Read error: %s"
+ msgstr "%s: Erro de leitura: %s"
+
+-#: src/xz/file_io.c:1222
++#: src/xz/file_io.c:1191
+ #, c-format
+ msgid "%s: Error seeking the file: %s"
+ msgstr "%s: Erro ao buscar o arquivo: %s"
+
+-#: src/xz/file_io.c:1246
++#: src/xz/file_io.c:1201
+ #, c-format
+ msgid "%s: Unexpected end of file"
+ msgstr "%s: Fim de arquivo inesperado"
+
+-#: src/xz/file_io.c:1305
++#: src/xz/file_io.c:1260
+ #, c-format
+ msgid "%s: Write error: %s"
+ msgstr "%s: Erro de escrita: %s"
+
+-#: src/xz/hardware.c:238
++#: src/xz/hardware.c:137
+ msgid "Disabled"
+ msgstr "Desabilitado"
+
+ # Espaços adicionados para manter alinhamento com mensagens adjacentes -- Rafael
+-#: src/xz/hardware.c:269
+-#, fuzzy
+-#| msgid "Total amount of physical memory (RAM): "
+-msgid "Amount of physical memory (RAM):"
++#. TRANSLATORS: Test with "xz --info-memory" to see if
++#. the alignment looks nice.
++#: src/xz/hardware.c:156
++msgid "Total amount of physical memory (RAM): "
+ msgstr "Quantidade total de memória física (RAM): "
+
+-#: src/xz/hardware.c:270
+-msgid "Number of processor threads:"
+-msgstr ""
+-
+-#: src/xz/hardware.c:271
+-msgid "Compression:"
+-msgstr ""
+-
+-#: src/xz/hardware.c:272
+-msgid "Decompression:"
+-msgstr ""
++# Espaços adicionados para manter alinhamento com mensagens adjacentes -- Rafael
++#: src/xz/hardware.c:158
++msgid "Memory usage limit for compression: "
++msgstr "Limite de uso de memória para compressão: "
+
+ # Espaços reduzidos para manter alinhamento com mensagens adjacentes -- Rafael
+-#: src/xz/hardware.c:273
+-#, fuzzy
+-#| msgid "Memory usage limit for decompression: "
+-msgid "Multi-threaded decompression:"
++#: src/xz/hardware.c:160
++msgid "Memory usage limit for decompression: "
+ msgstr "Limite de uso de memória para descompressão: "
+
+-#: src/xz/hardware.c:274
+-msgid "Default for -T0:"
+-msgstr ""
+-
+-#: src/xz/hardware.c:292
+-msgid "Hardware information:"
+-msgstr ""
+-
+-#: src/xz/hardware.c:299
+-#, fuzzy
+-#| msgid "Memory usage limit reached"
+-msgid "Memory usage limits:"
+-msgstr "Limite de uso de memória alcançado"
+-
+-#: src/xz/list.c:68
+-msgid "Streams:"
+-msgstr ""
+-
+-#: src/xz/list.c:69
+-msgid "Blocks:"
+-msgstr ""
+-
+-#: src/xz/list.c:70
+-#, fuzzy
+-#| msgid " Compressed size: %s\n"
+-msgid "Compressed size:"
+-msgstr " Tam. comprimido: %s\n"
+-
+-#: src/xz/list.c:71
+-#, fuzzy
+-#| msgid " Uncompressed size: %s\n"
+-msgid "Uncompressed size:"
+-msgstr " Tam. descomprimido: %s\n"
+-
+-#: src/xz/list.c:72
+-msgid "Ratio:"
+-msgstr ""
+-
+-#: src/xz/list.c:73
+-msgid "Check:"
+-msgstr ""
+-
+-#: src/xz/list.c:74
+-#, fuzzy
+-#| msgid " Stream padding: %s\n"
+-msgid "Stream Padding:"
+-msgstr " Ajuste do fluxo: %s\n"
+-
+-#: src/xz/list.c:75
+-#, fuzzy
+-#| msgid " Memory needed: %s MiB\n"
+-msgid "Memory needed:"
+-msgstr " Memória exigida: %s MiB\n"
+-
+-# Espaço adicionado para promover alinhamento, vide "xz -lvv foo.xz"
+-#: src/xz/list.c:76
+-#, fuzzy
+-#| msgid " Sizes in headers: %s\n"
+-msgid "Sizes in headers:"
+-msgstr " Tam. cabeçalhos: %s\n"
+-
+-#: src/xz/list.c:79
+-#, fuzzy
+-#| msgid " Number of files: %s\n"
+-msgid "Number of files:"
+-msgstr " Núm. de arquivos: %s\n"
+-
+-#: src/xz/list.c:122
+-msgid "Stream"
+-msgstr ""
+-
+-#: src/xz/list.c:123
+-msgid "Block"
+-msgstr ""
+-
+-#: src/xz/list.c:124
+-msgid "Blocks"
+-msgstr ""
+-
+-#: src/xz/list.c:125
+-msgid "CompOffset"
+-msgstr ""
+-
+-#: src/xz/list.c:126
+-msgid "UncompOffset"
+-msgstr ""
+-
+-#: src/xz/list.c:127
+-msgid "CompSize"
+-msgstr ""
+-
+-#: src/xz/list.c:128
+-msgid "UncompSize"
+-msgstr ""
+-
+-#: src/xz/list.c:129
+-#, fuzzy
+-#| msgid "Totals:"
+-msgid "TotalSize"
+-msgstr "Totais:"
+-
+-#: src/xz/list.c:130
+-msgid "Ratio"
+-msgstr ""
+-
+-#: src/xz/list.c:131
+-msgid "Check"
+-msgstr ""
+-
+-#: src/xz/list.c:132
+-msgid "CheckVal"
+-msgstr ""
+-
+-#: src/xz/list.c:133
+-msgid "Padding"
+-msgstr ""
+-
+-#: src/xz/list.c:134
+-msgid "Header"
+-msgstr ""
+-
+-#: src/xz/list.c:135
+-msgid "Flags"
+-msgstr ""
+-
+-#: src/xz/list.c:136
+-msgid "MemUsage"
+-msgstr ""
+-
+-#: src/xz/list.c:137
+-msgid "Filters"
+-msgstr ""
+-
+ #. TRANSLATORS: Indicates that there is no integrity check.
+-#. This string is used in tables. In older xz version this
+-#. string was limited to ten columns in a fixed-width font, but
+-#. nowadays there is no strict length restriction anymore.
+-#: src/xz/list.c:169
++#. This string is used in tables, so the width must not
++#. exceed ten columns with a fixed-width font.
++#: src/xz/list.c:65
+ msgid "None"
+ msgstr "Nenhuma"
+
+ #. TRANSLATORS: Indicates that integrity check name is not known,
+-#. but the Check ID is known (here 2). In older xz version these
+-#. strings were limited to ten columns in a fixed-width font, but
+-#. nowadays there is no strict length restriction anymore.
+-#: src/xz/list.c:175
++#. but the Check ID is known (here 2). This and other "Unknown-N"
++#. strings are used in tables, so the width must not exceed ten
++#. columns with a fixed-width font. It's OK to omit the dash if
++#. you need space for one extra letter, but don't use spaces.
++#: src/xz/list.c:72
+ msgid "Unknown-2"
+ msgstr "Incógnito2"
+
+ # Não exceder 10 caracteres e espaços não são permitidos -- Rafael
+-#: src/xz/list.c:176
++#: src/xz/list.c:73
+ msgid "Unknown-3"
+ msgstr "Incógnito3"
+
+ # Não exceder 10 caracteres e espaços não são permitidos -- Rafael
+-#: src/xz/list.c:178
++#: src/xz/list.c:75
+ msgid "Unknown-5"
+ msgstr "Incógnito5"
+
+ # Não exceder 10 caracteres e espaços não são permitidos -- Rafael
+-#: src/xz/list.c:179
++#: src/xz/list.c:76
+ msgid "Unknown-6"
+ msgstr "Incógnito6"
+
+ # Não exceder 10 caracteres e espaços não são permitidos -- Rafael
+-#: src/xz/list.c:180
++#: src/xz/list.c:77
+ msgid "Unknown-7"
+ msgstr "Incógnito7"
+
+ # Não exceder 10 caracteres e espaços não são permitidos -- Rafael
+-#: src/xz/list.c:181
++#: src/xz/list.c:78
+ msgid "Unknown-8"
+ msgstr "Incógnito8"
+
+ # Não exceder 10 caracteres e espaços não são permitidos -- Rafael
+-#: src/xz/list.c:182
++#: src/xz/list.c:79
+ msgid "Unknown-9"
+ msgstr "Incógnito9"
+
+ # Não exceder 10 caracteres e espaços não são permitidos -- Rafael
+-#: src/xz/list.c:184
++#: src/xz/list.c:81
+ msgid "Unknown-11"
+ msgstr "Incógnito11"
+
+ # Não exceder 10 caracteres e espaços não são permitidos -- Rafael
+-#: src/xz/list.c:185
++#: src/xz/list.c:82
+ msgid "Unknown-12"
+ msgstr "Incógnito12"
+
+ # Não exceder 10 caracteres e espaços não são permitidos -- Rafael
+-#: src/xz/list.c:186
++#: src/xz/list.c:83
+ msgid "Unknown-13"
+ msgstr "Incógnito13"
+
+ # Não exceder 10 caracteres e espaços não são permitidos -- Rafael
+-#: src/xz/list.c:187
++#: src/xz/list.c:84
+ msgid "Unknown-14"
+ msgstr "Incógnito14"
+
+ # Não exceder 10 caracteres e espaços não são permitidos -- Rafael
+-#: src/xz/list.c:188
++#: src/xz/list.c:85
+ msgid "Unknown-15"
+ msgstr "Incógnito15"
+
+-#: src/xz/list.c:351
++#: src/xz/list.c:153
+ #, c-format
+ msgid "%s: File is empty"
+ msgstr "%s: O arquivo está vazio"
+
+-#: src/xz/list.c:356
++#: src/xz/list.c:158
+ #, c-format
+ msgid "%s: Too small to be a valid .xz file"
+ msgstr "%s: Pequeno demais para ser um arquivo .xz válido"
+@@ -512,41 +350,126 @@ msgstr "%s: Pequeno demais para ser um arquivo .xz válido"
+ #. to Ratio, the columns are right aligned. Check and Filename
+ #. are left aligned. If you need longer words, it's OK to
+ #. use two lines here. Test with "xz -l foo.xz".
+-#: src/xz/list.c:730
++#: src/xz/list.c:677
+ msgid "Strms Blocks Compressed Uncompressed Ratio Check Filename"
+ msgstr "Fluxos Blocos Comprimido Descomprimid Propo Verif Nome de Arquivo"
+
+-#: src/xz/list.c:1025 src/xz/list.c:1203
++#: src/xz/list.c:717
++#, c-format
++msgid " Streams: %s\n"
++msgstr " Fluxos: %s\n"
++
++#: src/xz/list.c:719
++#, c-format
++msgid " Blocks: %s\n"
++msgstr " Blocos: %s\n"
++
++#: src/xz/list.c:721
++#, c-format
++msgid " Compressed size: %s\n"
++msgstr " Tam. comprimido: %s\n"
++
++#: src/xz/list.c:724
++#, c-format
++msgid " Uncompressed size: %s\n"
++msgstr " Tam. descomprimido: %s\n"
++
++#: src/xz/list.c:727
++#, c-format
++msgid " Ratio: %s\n"
++msgstr " Proporção: %s\n"
++
++#: src/xz/list.c:729
++#, c-format
++msgid " Check: %s\n"
++msgstr " Verificação: %s\n"
++
++#: src/xz/list.c:730
++#, c-format
++msgid " Stream padding: %s\n"
++msgstr " Ajuste do fluxo: %s\n"
++
++#. TRANSLATORS: The second line is column headings. All except
++#. Check are right aligned; Check is left aligned. Test with
++#. "xz -lv foo.xz".
++#: src/xz/list.c:758
++msgid ""
++" Streams:\n"
++" Stream Blocks CompOffset UncompOffset CompSize UncompSize Ratio Check Padding"
++msgstr ""
++" Fluxos:\n"
++" Fluxo Blocos DeslocComp DeslocDescomp TamanhoComp TamanhoDescomp Propo Verif Ajuste"
++
++#. TRANSLATORS: The second line is column headings. All
++#. except Check are right aligned; Check is left aligned.
++#: src/xz/list.c:813
++#, c-format
++msgid ""
++" Blocks:\n"
++" Stream Block CompOffset UncompOffset TotalSize UncompSize Ratio Check"
++msgstr ""
++" Blocos:\n"
++" Fluxo Bloco DeslocComp DeslocDescomp TamanhoTotal TamanhoDecomp Propo Verif"
++
++#. TRANSLATORS: These are additional column headings
++#. for the most verbose listing mode. CheckVal
++#. (Check value), Flags, and Filters are left aligned.
++#. Header (Block Header Size), CompSize, and MemUsage
++#. are right aligned. %*s is replaced with 0-120
++#. spaces to make the CheckVal column wide enough.
++#. Test with "xz -lvv foo.xz".
++#: src/xz/list.c:825
++#, c-format
++msgid " CheckVal %*s Header Flags CompSize MemUsage Filters"
++msgstr " ValVerif %*s Cabeç Sinaliz TamComp UsoMem Filtros"
++
++#: src/xz/list.c:903 src/xz/list.c:1078
++#, c-format
++msgid " Memory needed: %s MiB\n"
++msgstr " Memória exigida: %s MiB\n"
++
++# Espaço adicionado para promover alinhamento, vide "xz -lvv foo.xz"
++#: src/xz/list.c:905 src/xz/list.c:1080
++#, c-format
++msgid " Sizes in headers: %s\n"
++msgstr " Tam. cabeçalhos: %s\n"
++
++#: src/xz/list.c:906 src/xz/list.c:1081
+ msgid "Yes"
+ msgstr "Sim"
+
+-#: src/xz/list.c:1025 src/xz/list.c:1203
++#: src/xz/list.c:906 src/xz/list.c:1081
+ msgid "No"
+ msgstr "Não"
+
+-#: src/xz/list.c:1027 src/xz/list.c:1205
++#: src/xz/list.c:907 src/xz/list.c:1082
+ #, c-format
+ msgid " Minimum XZ Utils version: %s\n"
+ msgstr " Versão mínima do XZ Utils: %s\n"
+
+ #. TRANSLATORS: %s is an integer. Only the plural form of this
+ #. message is used (e.g. "2 files"). Test with "xz -l foo.xz bar.xz".
+-#: src/xz/list.c:1178
++#: src/xz/list.c:1057
+ #, c-format
+ msgid "%s file\n"
+ msgid_plural "%s files\n"
+ msgstr[0] "%s arquivo\n"
+ msgstr[1] "%s arquivos\n"
+
+-#: src/xz/list.c:1191
++#: src/xz/list.c:1070
+ msgid "Totals:"
+ msgstr "Totais:"
+
+-#: src/xz/list.c:1269
++#: src/xz/list.c:1071
++#, c-format
++msgid " Number of files: %s\n"
++msgstr " Núm. de arquivos: %s\n"
++
++#: src/xz/list.c:1146
+ msgid "--list works only on .xz files (--format=xz or --format=auto)"
+ msgstr "--list funciona apenas em arquivos .xz (--format=xz ou --format=auto)"
+
+-#: src/xz/list.c:1275
++#: src/xz/list.c:1152
+ msgid "--list does not support reading from standard input"
+ msgstr "--list não possui suporte a leitura da entrada padrão"
+
+@@ -565,11 +488,11 @@ msgstr "%s: Fim da entrada inesperado ao ler nomes de arquivos"
+ msgid "%s: Null character found when reading filenames; maybe you meant to use `--files0' instead of `--files'?"
+ msgstr "%s: Caractere nulo encontrado ao ler nomes de arquivos; talvez você queria usar \"--files0\" em vez de \"--files\"?"
+
+-#: src/xz/main.c:188
++#: src/xz/main.c:174
+ msgid "Compression and decompression with --robot are not supported yet."
+ msgstr "Ainda não há suporte a compressão e descompressão com --robot."
+
+-#: src/xz/main.c:266
++#: src/xz/main.c:252
+ msgid "Cannot read data from standard input when reading filenames from standard input"
+ msgstr "Não é possível ler dados da entrada padrão ao ler nomes de arquivos da entrada padrão"
+
+@@ -577,68 +500,68 @@ msgstr "Não é possível ler dados da entrada padrão ao ler nomes de arquivos
+ #. of the line in messages. Usually it becomes "xz: ".
+ #. This is a translatable string because French needs
+ #. a space before a colon.
+-#: src/xz/message.c:725
++#: src/xz/message.c:728
+ #, c-format
+ msgid "%s: "
+ msgstr "%s: "
+
+-#: src/xz/message.c:797 src/xz/message.c:856
++#: src/xz/message.c:791 src/xz/message.c:841
+ msgid "Internal error (bug)"
+ msgstr "Erro interno (bug)"
+
+-#: src/xz/message.c:804
++#: src/xz/message.c:798
+ msgid "Cannot establish signal handlers"
+ msgstr "Não foi possível estabelecer manipuladores de sinais"
+
+-#: src/xz/message.c:813
++#: src/xz/message.c:807
+ msgid "No integrity check; not verifying file integrity"
+ msgstr "Sem verificação de integridade; não será verificada a integridade do arquivo"
+
+-#: src/xz/message.c:816
++#: src/xz/message.c:810
+ msgid "Unsupported type of integrity check; not verifying file integrity"
+ msgstr "Tipo de verificação de integridade sem suporte; não será verificada a integridade do arquivo"
+
+-#: src/xz/message.c:823
++#: src/xz/message.c:817
+ msgid "Memory usage limit reached"
+ msgstr "Limite de uso de memória alcançado"
+
+-#: src/xz/message.c:826
++#: src/xz/message.c:820
+ msgid "File format not recognized"
+ msgstr "Formato de arquivo não reconhecido"
+
+-#: src/xz/message.c:829
++#: src/xz/message.c:823
+ msgid "Unsupported options"
+ msgstr "Opções sem suporte"
+
+-#: src/xz/message.c:832
++#: src/xz/message.c:826
+ msgid "Compressed data is corrupt"
+ msgstr "Os dados comprimidos estão corrompidos"
+
+-#: src/xz/message.c:835
++#: src/xz/message.c:829
+ msgid "Unexpected end of input"
+ msgstr "Fim da entrada inesperado"
+
+-#: src/xz/message.c:877
++#: src/xz/message.c:862
+ #, c-format
+ msgid "%s MiB of memory is required. The limiter is disabled."
+ msgstr "%s MiB de memória é necessário. O limitador está desabilitado."
+
+-#: src/xz/message.c:905
++#: src/xz/message.c:890
+ #, c-format
+ msgid "%s MiB of memory is required. The limit is %s."
+ msgstr "%s MiB de memória é necessário. O limite é %s."
+
+-#: src/xz/message.c:924
++#: src/xz/message.c:1057
+ #, c-format
+ msgid "%s: Filter chain: %s\n"
+ msgstr "%s: Cadeia de filtros: %s\n"
+
+-#: src/xz/message.c:935
++#: src/xz/message.c:1067
+ #, c-format
+ msgid "Try `%s --help' for more information."
+ msgstr "Tente \"%s --help\" para mais informações."
+
+-#: src/xz/message.c:961
++#: src/xz/message.c:1093
+ #, c-format
+ msgid ""
+ "Usage: %s [OPTION]... [FILE]...\n"
+@@ -649,15 +572,15 @@ msgstr ""
+ "Comprime e descomprime ARQUIVOs no formato .xz.\n"
+ "\n"
+
+-#: src/xz/message.c:968
++#: src/xz/message.c:1100
+ msgid "Mandatory arguments to long options are mandatory for short options too.\n"
+ msgstr "Argumentos obrigatórios para opções longas também o são para opções curtas.\n"
+
+-#: src/xz/message.c:972
++#: src/xz/message.c:1104
+ msgid " Operation mode:\n"
+ msgstr " Modo de operação:\n"
+
+-#: src/xz/message.c:975
++#: src/xz/message.c:1107
+ msgid ""
+ " -z, --compress force compression\n"
+ " -d, --decompress force decompression\n"
+@@ -669,7 +592,7 @@ msgstr ""
+ " -t, --test testa a integridade do arquivo comprimido\n"
+ " -l, --list lista informações sobre arquivos .xz"
+
+-#: src/xz/message.c:981
++#: src/xz/message.c:1113
+ msgid ""
+ "\n"
+ " Operation modifiers:\n"
+@@ -677,7 +600,7 @@ msgstr ""
+ "\n"
+ " Modificadores de opções:\n"
+
+-#: src/xz/message.c:984
++#: src/xz/message.c:1116
+ msgid ""
+ " -k, --keep keep (don't delete) input files\n"
+ " -f, --force force overwrite of output file and (de)compress links\n"
+@@ -689,7 +612,7 @@ msgstr ""
+ " -c, --stdout escreve a entrada padrão e não exclui os arquivos\n"
+ " de entrada"
+
+-#: src/xz/message.c:993
++#: src/xz/message.c:1122
+ msgid ""
+ " --single-stream decompress only the first stream, and silently\n"
+ " ignore possible remaining input data"
+@@ -697,7 +620,7 @@ msgstr ""
+ " --single-stream descomprime apenas o primeiro fluxo, e ignora de forma\n"
+ " silenciosa possíveis dados de entrada restantes"
+
+-#: src/xz/message.c:996
++#: src/xz/message.c:1125
+ msgid ""
+ " --no-sparse do not create sparse files when decompressing\n"
+ " -S, --suffix=.SUF use the suffix `.SUF' on compressed files\n"
+@@ -717,7 +640,7 @@ msgstr ""
+ " similar a --files, mas usa o caractere nulo como\n"
+ " terminador"
+
+-#: src/xz/message.c:1005
++#: src/xz/message.c:1134
+ msgid ""
+ "\n"
+ " Basic file format and compression options:\n"
+@@ -725,16 +648,10 @@ msgstr ""
+ "\n"
+ " Opções básicas de formato de arquivo e compressão:\n"
+
+-#: src/xz/message.c:1007
+-#, fuzzy
+-#| msgid ""
+-#| " -F, --format=FMT file format to encode or decode; possible values are\n"
+-#| " `auto' (default), `xz', `lzma', and `raw'\n"
+-#| " -C, --check=CHECK integrity check type: `none' (use with caution),\n"
+-#| " `crc32', `crc64' (default), or `sha256'"
++#: src/xz/message.c:1136
+ msgid ""
+ " -F, --format=FMT file format to encode or decode; possible values are\n"
+-" `auto' (default), `xz', `lzma', `lzip', and `raw'\n"
++" `auto' (default), `xz', `lzma', and `raw'\n"
+ " -C, --check=CHECK integrity check type: `none' (use with caution),\n"
+ " `crc32', `crc64' (default), or `sha256'"
+ msgstr ""
+@@ -744,11 +661,11 @@ msgstr ""
+ " -C, --check=VERIF tipo de verificação de integridade: \"none\" (cuidado!),\n"
+ " \"crc32\", \"crc64\" (padrão) ou \"sha256\""
+
+-#: src/xz/message.c:1012
++#: src/xz/message.c:1141
+ msgid " --ignore-check don't verify the integrity check when decompressing"
+ msgstr " --ignore-check não faz a verificação de integridade ao descomprimir"
+
+-#: src/xz/message.c:1016
++#: src/xz/message.c:1145
+ msgid ""
+ " -0 ... -9 compression preset; default is 6; take compressor *and*\n"
+ " decompressor memory usage into account before using 7-9!"
+@@ -757,7 +674,7 @@ msgstr ""
+ " memória do compressor *e* descompressor em conta\n"
+ " antes de usar 7-9!"
+
+-#: src/xz/message.c:1020
++#: src/xz/message.c:1149
+ msgid ""
+ " -e, --extreme try to improve compression ratio by using more CPU time;\n"
+ " does not affect decompressor memory requirements"
+@@ -766,7 +683,7 @@ msgstr ""
+ " tempo de CPU; não afeta os requisitos de memória do\n"
+ " descompressor"
+
+-#: src/xz/message.c:1024
++#: src/xz/message.c:1153
+ msgid ""
+ " -T, --threads=NUM use at most NUM threads; the default is 1; set to 0\n"
+ " to use as many threads as there are processor cores"
+@@ -775,7 +692,7 @@ msgstr ""
+ " 0 para usar o máximo de threads que há de núcleos de\n"
+ " processador"
+
+-#: src/xz/message.c:1029
++#: src/xz/message.c:1158
+ msgid ""
+ " --block-size=SIZE\n"
+ " start a new .xz block after every SIZE bytes of input;\n"
+@@ -786,7 +703,7 @@ msgstr ""
+ " use isso para definido o tamanho de bloco para\n"
+ " compressão com threads"
+
+-#: src/xz/message.c:1033
++#: src/xz/message.c:1162
+ msgid ""
+ " --block-list=SIZES\n"
+ " start a new .xz block after the given comma-separated\n"
+@@ -796,7 +713,7 @@ msgstr ""
+ " inicia um novo bloco .xz após os intervalos dados,\n"
+ " separados por vírgula, de dados descomprimidos"
+
+-#: src/xz/message.c:1037
++#: src/xz/message.c:1166
+ msgid ""
+ " --flush-timeout=TIMEOUT\n"
+ " when compressing, if more than TIMEOUT milliseconds has\n"
+@@ -809,22 +726,14 @@ msgstr ""
+ " de mais entrada bloquearia, todos os dados pendentes\n"
+ " serão liberados"
+
+-#: src/xz/message.c:1043
+-#, fuzzy, no-c-format
+-#| msgid ""
+-#| " --memlimit-compress=LIMIT\n"
+-#| " --memlimit-decompress=LIMIT\n"
+-#| " -M, --memlimit=LIMIT\n"
+-#| " set memory usage limit for compression, decompression,\n"
+-#| " or both; LIMIT is in bytes, % of RAM, or 0 for defaults"
++#: src/xz/message.c:1172
++#, no-c-format
+ msgid ""
+ " --memlimit-compress=LIMIT\n"
+ " --memlimit-decompress=LIMIT\n"
+-" --memlimit-mt-decompress=LIMIT\n"
+ " -M, --memlimit=LIMIT\n"
+ " set memory usage limit for compression, decompression,\n"
+-" threaded decompression, or all of these; LIMIT is in\n"
+-" bytes, % of RAM, or 0 for defaults"
++" or both; LIMIT is in bytes, % of RAM, or 0 for defaults"
+ msgstr ""
+ " --memlimit-compress=LIMITE\n"
+ " --memlimit-decompress=LIMITE\n"
+@@ -833,7 +742,7 @@ msgstr ""
+ " descompressão ou ambos; LIMITE é em bytes, % de RAM\n"
+ " ou 0 para padrões"
+
+-#: src/xz/message.c:1052
++#: src/xz/message.c:1179
+ msgid ""
+ " --no-adjust if compression settings exceed the memory usage limit,\n"
+ " give an error instead of adjusting the settings downwards"
+@@ -842,7 +751,7 @@ msgstr ""
+ " de uso de memória, fornece um erro em vez de\n"
+ " ajustar as configurações para baixo"
+
+-#: src/xz/message.c:1058
++#: src/xz/message.c:1185
+ msgid ""
+ "\n"
+ " Custom filter chain for compression (alternative for using presets):"
+@@ -850,7 +759,7 @@ msgstr ""
+ "\n"
+ " Cadeia de filtros personalizada para compressão (alternativa à predefinição):"
+
+-#: src/xz/message.c:1067
++#: src/xz/message.c:1194
+ msgid ""
+ "\n"
+ " --lzma1[=OPTS] LZMA1 or LZMA2; OPTS is a comma-separated list of zero or\n"
+@@ -880,26 +789,14 @@ msgstr ""
+ " depth=NUM máximo de profundidade de pesquisa;\n"
+ " 0=automatic (padrão)"
+
+-#: src/xz/message.c:1082
+-#, fuzzy
+-#| msgid ""
+-#| "\n"
+-#| " --x86[=OPTS] x86 BCJ filter (32-bit and 64-bit)\n"
+-#| " --powerpc[=OPTS] PowerPC BCJ filter (big endian only)\n"
+-#| " --ia64[=OPTS] IA-64 (Itanium) BCJ filter\n"
+-#| " --arm[=OPTS] ARM BCJ filter (little endian only)\n"
+-#| " --armthumb[=OPTS] ARM-Thumb BCJ filter (little endian only)\n"
+-#| " --sparc[=OPTS] SPARC BCJ filter\n"
+-#| " Valid OPTS for all BCJ filters:\n"
+-#| " start=NUM start offset for conversions (default=0)"
++#: src/xz/message.c:1209
+ msgid ""
+ "\n"
+ " --x86[=OPTS] x86 BCJ filter (32-bit and 64-bit)\n"
+-" --arm[=OPTS] ARM BCJ filter\n"
+-" --armthumb[=OPTS] ARM-Thumb BCJ filter\n"
+-" --arm64[=OPTS] ARM64 BCJ filter\n"
+ " --powerpc[=OPTS] PowerPC BCJ filter (big endian only)\n"
+ " --ia64[=OPTS] IA-64 (Itanium) BCJ filter\n"
++" --arm[=OPTS] ARM BCJ filter (little endian only)\n"
++" --armthumb[=OPTS] ARM-Thumb BCJ filter (little endian only)\n"
+ " --sparc[=OPTS] SPARC BCJ filter\n"
+ " Valid OPTS for all BCJ filters:\n"
+ " start=NUM start offset for conversions (default=0)"
+@@ -915,7 +812,7 @@ msgstr ""
+ " start=NUM deslocamento inicial para conversões\n"
+ " (default=0)"
+
+-#: src/xz/message.c:1095
++#: src/xz/message.c:1221
+ msgid ""
+ "\n"
+ " --delta[=OPTS] Delta filter; valid OPTS (valid values; default):\n"
+@@ -927,7 +824,7 @@ msgstr ""
+ " dist=NÚM distância entre bytes sendo subtraído\n"
+ " de cada um (1-256; 1)"
+
+-#: src/xz/message.c:1103
++#: src/xz/message.c:1229
+ msgid ""
+ "\n"
+ " Other options:\n"
+@@ -935,7 +832,7 @@ msgstr ""
+ "\n"
+ " Outras opções:\n"
+
+-#: src/xz/message.c:1106
++#: src/xz/message.c:1232
+ msgid ""
+ " -q, --quiet suppress warnings; specify twice to suppress errors too\n"
+ " -v, --verbose be verbose; specify twice for even more verbose"
+@@ -943,15 +840,15 @@ msgstr ""
+ " -q, --quiet suprime avisos, use duas vezes para suprimir erros também\n"
+ " -v, --verbose ser detalhado; use duas vezes para ainda mais detalhes"
+
+-#: src/xz/message.c:1111
++#: src/xz/message.c:1237
+ msgid " -Q, --no-warn make warnings not affect the exit status"
+ msgstr " -Q, --no-warn faz os avisos não afetarem o status de saída"
+
+-#: src/xz/message.c:1113
++#: src/xz/message.c:1239
+ msgid " --robot use machine-parsable messages (useful for scripts)"
+ msgstr " --robot usa mensagens analisáveis por máquina (útil p/ scripts)"
+
+-#: src/xz/message.c:1116
++#: src/xz/message.c:1242
+ msgid ""
+ " --info-memory display the total amount of RAM and the currently active\n"
+ " memory usage limits, and exit"
+@@ -959,7 +856,7 @@ msgstr ""
+ " --info-memory exibe a quantidade total de RAM e os limites de uso\n"
+ " de memória atualmente ativos e sai"
+
+-#: src/xz/message.c:1119
++#: src/xz/message.c:1245
+ msgid ""
+ " -h, --help display the short help (lists only the basic options)\n"
+ " -H, --long-help display this long help and exit"
+@@ -967,7 +864,7 @@ msgstr ""
+ " -h, --help exibe a ajuda curto (lista apenas as opções básicas)\n"
+ " -H, --long-help exibe essa ajuda longa e sai"
+
+-#: src/xz/message.c:1123
++#: src/xz/message.c:1249
+ msgid ""
+ " -h, --help display this short help and exit\n"
+ " -H, --long-help display the long help (lists also the advanced options)"
+@@ -975,11 +872,11 @@ msgstr ""
+ " -h, --help exibe essa ajuda curta e sai\n"
+ " -H, --long-help exibe a ajuda longa (lista também as opções avançadas)"
+
+-#: src/xz/message.c:1128
++#: src/xz/message.c:1254
+ msgid " -V, --version display the version number and exit"
+ msgstr " -V, --version exibe o número de versão e sai"
+
+-#: src/xz/message.c:1130
++#: src/xz/message.c:1256
+ msgid ""
+ "\n"
+ "With no FILE, or when FILE is -, read standard input.\n"
+@@ -991,19 +888,19 @@ msgstr ""
+ #. for this package. Please add _another line_ saying
+ #. "Report translation bugs to <...>\n" with the email or WWW
+ #. address for translation bugs. Thanks.
+-#: src/xz/message.c:1136
++#: src/xz/message.c:1262
+ #, c-format
+ msgid "Report bugs to <%s> (in English or Finnish).\n"
+ msgstr ""
+ "Relate erros para <%s> (em inglês ou finlandês).\n"
+ "Relate erros de tradução para <https://translationproject.org/team/pt_BR.html>.\n"
+
+-#: src/xz/message.c:1138
++#: src/xz/message.c:1264
+ #, c-format
+ msgid "%s home page: <%s>\n"
+ msgstr "Site do %s: <%s>\n"
+
+-#: src/xz/message.c:1142
++#: src/xz/message.c:1268
+ msgid "THIS IS A DEVELOPMENT VERSION NOT INTENDED FOR PRODUCTION USE."
+ msgstr "ESSA É UMA VERSÃO DE DESENVOLVIMENTO, NÃO DESTINADA PARA USO EM PRODUÇÃO."
+
+@@ -1031,22 +928,27 @@ msgstr "Predefinição LZMA1/LZMA2 sem suporte: %s"
+ msgid "The sum of lc and lp must not exceed 4"
+ msgstr "A soma de lc e lp não deve exceder 4"
+
+-#: src/xz/suffix.c:137 src/xz/suffix.c:268
++#: src/xz/options.c:359
++#, c-format
++msgid "The selected match finder requires at least nice=%<PRIu32>"
++msgstr "O localizador de correspondência selecionado requer pelo menos nice=%<PRIu32>"
++
++#: src/xz/suffix.c:133 src/xz/suffix.c:258
+ #, c-format
+ msgid "%s: With --format=raw, --suffix=.SUF is required unless writing to stdout"
+ msgstr "%s: Com --format=raw, --suffix=.SUF é exigido, a menos que esteja escrevendo para stdout"
+
+-#: src/xz/suffix.c:168
++#: src/xz/suffix.c:164
+ #, c-format
+ msgid "%s: Filename has an unknown suffix, skipping"
+ msgstr "%s: O nome de arquivo tem um sufixo desconhecido, ignorando"
+
+-#: src/xz/suffix.c:189
++#: src/xz/suffix.c:185
+ #, c-format
+ msgid "%s: File already has `%s' suffix, skipping"
+ msgstr "%s: O arquivo já tem o sufixo \"%s\", ignorando"
+
+-#: src/xz/suffix.c:405
++#: src/xz/suffix.c:393
+ #, c-format
+ msgid "%s: Invalid filename suffix"
+ msgstr "%s: Sufixo de nome de arquivo inválido"
+@@ -1070,11 +972,15 @@ msgstr "Sufixos válidos são \"KiB\" (2^10), \"MiB\" (2^20) e \"GiB\" (2^30)."
+ msgid "Value of the option `%s' must be in the range [%<PRIu64>, %<PRIu64>]"
+ msgstr "O valor da opção \"%s\" deve estar no intervalo [%<PRIu64>, %<PRIu64>]"
+
+-#: src/xz/util.c:269
++#: src/xz/util.c:267
++msgid "Empty filename, skipping"
++msgstr "Nome de arquivo vazio, ignorando"
++
++#: src/xz/util.c:281
+ msgid "Compressed data cannot be read from a terminal"
+ msgstr "Dados comprimidos não podem ser lidos de um terminal"
+
+-#: src/xz/util.c:282
++#: src/xz/util.c:294
+ msgid "Compressed data cannot be written to a terminal"
+ msgstr "Dados comprimidos não podem ser escrito para um terminal"
+
+@@ -1086,49 +992,6 @@ msgstr "A escrita para a saída padrão falhou"
+ msgid "Unknown error"
+ msgstr "Erro desconhecido"
+
+-# Espaços adicionados para manter alinhamento com mensagens adjacentes -- Rafael
+-#~ msgid "Memory usage limit for compression: "
+-#~ msgstr "Limite de uso de memória para compressão: "
+-
+-#, c-format
+-#~ msgid " Streams: %s\n"
+-#~ msgstr " Fluxos: %s\n"
+-
+-#, c-format
+-#~ msgid " Blocks: %s\n"
+-#~ msgstr " Blocos: %s\n"
+-
+-#, c-format
+-#~ msgid " Ratio: %s\n"
+-#~ msgstr " Proporção: %s\n"
+-
+-#, c-format
+-#~ msgid " Check: %s\n"
+-#~ msgstr " Verificação: %s\n"
+-
+-#~ msgid ""
+-#~ " Streams:\n"
+-#~ " Stream Blocks CompOffset UncompOffset CompSize UncompSize Ratio Check Padding"
+-#~ msgstr ""
+-#~ " Fluxos:\n"
+-#~ " Fluxo Blocos DeslocComp DeslocDescomp TamanhoComp TamanhoDescomp Propo Verif Ajuste"
+-
+-#, c-format
+-#~ msgid ""
+-#~ " Blocks:\n"
+-#~ " Stream Block CompOffset UncompOffset TotalSize UncompSize Ratio Check"
+-#~ msgstr ""
+-#~ " Blocos:\n"
+-#~ " Fluxo Bloco DeslocComp DeslocDescomp TamanhoTotal TamanhoDecomp Propo Verif"
+-
+-#, c-format
+-#~ msgid " CheckVal %*s Header Flags CompSize MemUsage Filters"
+-#~ msgstr " ValVerif %*s Cabeç Sinaliz TamComp UsoMem Filtros"
+-
+-#, c-format
+-#~ msgid "The selected match finder requires at least nice=%<PRIu32>"
+-#~ msgstr "O localizador de correspondência selecionado requer pelo menos nice=%<PRIu32>"
+-
+ #~ msgid "Sandbox is disabled due to incompatible command line arguments"
+ #~ msgstr "Sandbox está desabilitado em razão de argumentos de linha de comando incompatíveis"
+
diff --git a/debian/patches/series b/debian/patches/series
new file mode 100644
index 0000000..da3fb0d
--- /dev/null
+++ b/debian/patches/series
@@ -0,0 +1,4 @@
+Translations-Add-Brazilian-Portuguese-translation-of-man-.patch
+po-pt_BR-Revert-changes-from-the-release.patch
+Translations-Update-the-Brazilian-Portuguese-translation.patch
+Add-da.po-based-on-translation-from-manpages-l10n.patch
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..2df44cf
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,141 @@
+#!/usr/bin/make -f
+export DEB_BUILD_MAINT_OPTIONS = hardening=+all
+
+%:
+ dh $@ $(opt_no_act)
+
+override_dh_autoreconf:
+ ./autogen.sh
+
+override_dh_auto_clean:
+ dh_auto_clean --builddirectory debian/xzdec-build
+ dh_auto_clean --builddirectory debian/normal-build
+ dh_auto_clean --builddirectory debian/static-build
+
+override_dh_auto_install-indep:
+
+override_dh_auto_install-arch:
+ dh_auto_install --builddirectory debian/xzdec-build
+ dh_auto_install --builddirectory debian/normal-build
+ dh_auto_install --builddirectory debian/static-build
+ set -e; arch=$$(dpkg-architecture -qDEB_HOST_MULTIARCH); \
+ install -d debian/tmp/lib/$$arch; \
+ mv debian/tmp/usr/lib/$$arch/liblzma.so.* debian/tmp/lib/$$arch/; \
+ dso=$$(basename $$(readlink debian/tmp/usr/lib/$$arch/liblzma.so)); \
+ ln -s -f /lib/$$arch/$$dso debian/tmp/usr/lib/$$arch/liblzma.so
+
+override_dh_installchangelogs:
+ dh_installchangelogs ChangeLog
+
+override_dh_auto_build-indep:
+ cd debian/normal-build && doxygen Doxyfile
+
+override_dh_auto_build-arch:
+ $(MAKE) -C debian/normal-build/po update-gmo
+ dh_auto_build --builddirectory debian/normal-build
+ dh_auto_build --builddirectory debian/static-build
+ # The xzdec binary/ package is built with -Os as suggested in PACKAGERS
+ # to create a small binary.
+ @echo "blhc: ignore-line-regexp: .*-D_BLHC_IGNORE_THIS_LINE.*"
+ dh_auto_build --builddirectory debian/xzdec-build
+
+override_dh_auto_test-indep:
+
+override_dh_auto_test-arch:
+ifneq (,$(findstring nocheck,$(DEB_BUILD_OPTIONS)))
+ @echo Skipping tests
+else
+ dh_auto_test --builddirectory debian/normal-build
+ dh_auto_test --builddirectory debian/static-build
+ dh_auto_test --builddirectory debian/xzdec-build
+endif
+
+override_dh_auto_configure:
+ dh_auto_configure --builddirectory debian/normal-build -- \
+ $(opt_reproduce) \
+ --enable-threads --disable-static \
+ $(opt_optimize) $(opt_quiet) \
+ --disable-xzdec --disable-lzmadec
+ dh_auto_configure --builddirectory debian/static-build -- \
+ $(opt_reproduce) \
+ --enable-threads --disable-shared \
+ --enable-liblzma2-compat \
+ $(opt_optimize) $(opt_quiet) \
+ --disable-lzmainfo --disable-scripts \
+ --disable-xzdec --disable-lzmadec \
+ --disable-xz --disable-lzma-links
+ dh_auto_configure --builddirectory debian/xzdec-build -- \
+ $(opt_reproduce) \
+ --disable-shared --disable-nls --disable-encoders \
+ --enable-small --disable-threads \
+ --disable-liblzma2-compat \
+ $(opt_optimize_small) $(opt_quiet) \
+ --disable-lzmainfo --disable-scripts \
+ --disable-xz --disable-lzma-links
+
+small_flags_env =
+small_flags_env += DEB_CFLAGS_MAINT_STRIP='-O2 -O3'
+small_flags_env += DEB_CFLAGS_MAINT_PREPEND=-Os -D_BLHC_IGNORE_THIS_LINE
+flags_cmd = dpkg-buildflags --export=configure
+opt_optimize = $(shell $(flags_cmd))
+opt_optimize_small = $(shell $(small_flags_env) $(flags_cmd))
+opt_reproduce = gl_cv_posix_shell=/bin/sh
+
+opt_no_act =
+opt_quiet =
+
+# Unless noopt is set, use optimized CRC32 routine on the Hurd.
+ifeq (hurd,$(shell dpkg-architecture -qDEB_HOST_ARCH_OS))
+ cputype := $(shell dpkg-architecture -qDEB_HOST_ARCH_CPU)
+ ifeq (i386,$(cputype))
+ opt_optimize += --enable-assembler=x86
+ opt_optimize_small += --enable-assembler=x86
+ endif
+ ifeq (amd64,$(cputype))
+ opt_optimize += --enable-assembler=x86_64
+ opt_optimize_small += --enable-assembler=x86_64
+ endif
+endif
+
+ifneq (,$(filter noopt,$(DEB_BUILD_OPTIONS)))
+ opt_optimize += --disable-assembler
+ opt_optimize_small += --disable-assembler
+endif
+
+ifneq (,$(findstring n,$(MAKEFLAGS)))
+ opt_no_act = --no-act
+endif
+
+ifneq (,$(filter quiet,$(DEB_BUILD_OPTIONS)))
+ opt_quiet = --quiet
+ MAKEFLAGS += --quiet
+endif
+
+# Build a tarball with the latest upstream version.
+# This is made complicated by the need to choose a nice version number.
+REPO = https://git.tukaani.org/xz.git
+BRANCH = master
+get-orig-source:
+ mkdir debian-orig-source
+ -set -e; cd debian-orig-source; \
+ : Fetch latest upstream version.; \
+ git init -q; \
+ git fetch -q --tags $(REPO); \
+ git fetch -q $(REPO) $(BRANCH); \
+ : Determine version number.; \
+ commit_name=$$(git describe FETCH_HEAD); \
+ release=$${commit_name%%-*}; \
+ date=$$(date --utc --date="$$( \
+ git log -1 --pretty=format:%cD "$$commit_name" \
+ )" "+%Y%m%d"); \
+ if test "$$commit_name" = "$$release"; \
+ then upstream_version=$${commit_name#v}; \
+ else upstream_version="$${release#v}+$${date}"; \
+ fi; \
+ : Generate tarball.; \
+ echo "packaging $$commit_name"; \
+ git archive --format=tar "$$commit_name" \
+ --prefix="xz-utils-$$upstream_version/" | \
+ gzip -n --rsyncable -9 \
+ > "../xz-utils_$$upstream_version.orig.tar.gz"
+ rm -fr debian-orig-source
diff --git a/debian/source.lintian-overrides b/debian/source.lintian-overrides
new file mode 100644
index 0000000..8c4e5b7
--- /dev/null
+++ b/debian/source.lintian-overrides
@@ -0,0 +1,6 @@
+# Source is tests/bcj_test.c
+source-is-missing [tests/compress_prepared_bcj_sparc]
+# Source is tests/bcj_test.c
+source-is-missing [tests/compress_prepared_bcj_x86]
+# This is a compressed text file with bad magic for testing.
+source-contains-prebuilt-windows-binary [tests/files/bad-1-v1-magic-2.lz]
diff --git a/debian/source/format b/debian/source/format
new file mode 100644
index 0000000..163aaf8
--- /dev/null
+++ b/debian/source/format
@@ -0,0 +1 @@
+3.0 (quilt)
diff --git a/debian/symbols b/debian/symbols
new file mode 100644
index 0000000..74dd00b
--- /dev/null
+++ b/debian/symbols
@@ -0,0 +1,26 @@
+liblzma.so.5 liblzma5 #MINVER#
+* Build-Depends-Package: liblzma-dev
+ (symver)XZ_5.0 5.1.1alpha+20110809
+ (arch=linux-any)XZ_5.1.2alpha@XZ_5.1.2alpha 5.4
+ lzma_code@XZ_5.0 5.1.1alpha+20120614
+ lzma_raw_buffer_decode@XZ_5.0 5.1.1alpha+20120614
+ lzma_raw_buffer_encode@XZ_5.0 5.1.1alpha+20120614
+ (symver)XZ_5.2 5.2.2
+ (arch=linux-any)XZ_5.2.2@XZ_5.2.2 5.4
+ (arch=linux-any)lzma_block_uncomp_encode@XZ_5.2.2 5.4
+ XZ_5.4@XZ_5.4 5.4.0
+ lzma_file_info_decoder@XZ_5.4 5.4.0
+ lzma_filters_free@XZ_5.4 5.4.0
+ lzma_lzip_decoder@XZ_5.4 5.4.0
+ lzma_microlzma_decoder@XZ_5.4 5.4.0
+ lzma_microlzma_encoder@XZ_5.4 5.4.0
+ lzma_str_from_filters@XZ_5.4 5.4.0
+ lzma_str_list_filters@XZ_5.4 5.4.0
+ lzma_str_to_filters@XZ_5.4 5.4.0
+ lzma_stream_decoder_mt@XZ_5.4 5.4.0
+ (arch=linux-any)lzma_cputhreads@XZ_5.2.2 5.2.2
+ (arch=linux-any)lzma_get_progress@XZ_5.2.2 5.2.2
+ (arch=linux-any)lzma_stream_encoder_mt@XZ_5.1.2alpha 5.4
+ (arch=linux-any)lzma_stream_encoder_mt@XZ_5.2.2 5.2.2
+ (arch=linux-any)lzma_stream_encoder_mt_memusage@XZ_5.1.2alpha 5.4
+ (arch=linux-any)lzma_stream_encoder_mt_memusage@XZ_5.2.2 5.2.2
diff --git a/debian/tests/control b/debian/tests/control
new file mode 100644
index 0000000..10ec68d
--- /dev/null
+++ b/debian/tests/control
@@ -0,0 +1,3 @@
+Tests: testsuite
+Depends: debhelper-compat (= 13), autoconf (>= 2.64~), automake, libtool (>= 2.2), gettext, @
+Restrictions: rw-build-tree
diff --git a/debian/tests/testsuite b/debian/tests/testsuite
new file mode 100644
index 0000000..bea1a02
--- /dev/null
+++ b/debian/tests/testsuite
@@ -0,0 +1,8 @@
+#!/bin/bash
+
+# Tweak the Makefile to link against the installed liblzma for the tests
+sed 's@..top_builddir..src.liblzma.liblzma.la@-llzma@' -i tests/Makefile.am
+
+./configure
+
+exec make check
diff --git a/debian/upstream/signing-key.asc b/debian/upstream/signing-key.asc
new file mode 100644
index 0000000..6404b92
--- /dev/null
+++ b/debian/upstream/signing-key.asc
@@ -0,0 +1,52 @@
+-----BEGIN PGP PUBLIC KEY BLOCK-----
+
+mQINBEzEOZIBEACxg/IuXERlDB48JBWmF4NxNUuuup1IhJAJyFGFSKh3OGAO2Ard
+sNuRLjANsFXA7m7P5eTFcG+BoHHuAVYmKnI3PPZtHVLnUt4pGItPczQZ2BE1WpcI
+ayjGTBJeKItX3Npqg9D/odO9WWS1i3FQPVdrLn0YH37/BA66jeMQCRo7g7GLpaNf
+IrvYGsqTbxCwsmA37rpE7oyU4Yrf74HT091WBsRIoq/MelhbxTDMR8eu/dUGZQVc
+Kj3lN55RepwWwUUKyqarY0zMt4HkFJ7v7yRL+Cvzy92Ouv4Wf2FlhNtEs5LE4Tax
+W0PO5AEmUoKjX87SezQK0f652018b4u6Ex52cY7p+n5TII/UyoowH6+tY8UHo9yb
+fStrqgNE/mY2bhA6+AwCaOUGsFzVVPTbjtxL3HacUP/jlA1h78V8VTvTs5d55iG7
+jSqR9o05wje8rwNiXXK0xtiJahyNzL97Kn/DgPSqPIi45G+8nxWSPFM5eunBKRl9
+vAnsvwrdPRsR6YR3uMHTuVhQX9/CY891MHkaZJ6wydWtKt3yQwJLYqwo5d4DwnUX
+CduUwSKv+6RmtWI5ZmTQYOcBRcZyGKml9X9Q8iSbm6cnpFXmLrNQwCJN+D3SiYGc
+MtbltZo0ysPMa6Xj5xFaYqWk/BI4iLb2Gs+ByGo/+a0Eq4XYBMOpitNniQARAQAB
+tCdMYXNzZSBDb2xsaW4gPGxhc3NlLmNvbGxpbkB0dWthYW5pLm9yZz6JAlEEEwEK
+ADsCGwMCHgECF4AECwkIBwMVCggFFgIDAQAWIQQ2kMJAzlG0Zw0wrRw47nV9aRhG
+IAUCYzcN9AUJGPjTYgAKCRA47nV9aRhGIIlfD/0cS3q+z1fGoSYAR8FX/am39S6v
+1T0yVyicEFbwNd7x7OCJ6T8qZYb72FjArP8hq/S/1JQOYn7qAvzRb+5WLMgxEOUs
+rqol6jvwXGeyIhA09lSe7uEfv+NehEKs8F/30qIEa8Fwc7D6t/WCesDMULFMf4G8
+6XMFVs4gZDS2P54d7rt4+mDn2ZZve2OGcR3k3qr0sgZWNlLOk05n15XtBIFIBJbg
+hKXU68ud9I46Ji1Xrnqrn0H/P0jybW3klhp9AzUOfhuoRyUi1PLHDsw7d+jRAHGm
+8NnOPOAqxitYcAyU8SLBcpL3k24kjq6C6UwpStHBzqwQTQIfoyCVefxvlYm+8zht
+u/CmVXfjB0W+UImCWIeSpj/YzaD3i+YWz8m9lBGuU2WFNO7SAdoenJcUdNiwRL7P
+1E0n8HGM0OsSOks9NOWZHn+Ka36ivsNXAAec6inp0BnDEzdNcfrtgFMNBkiEeBD4
++8T/HRNtBpYBrlDLtmk2uF86wRhSb+J+pOZeUVIuRQiHg3ridz2U+n6Ld4jqNRS1
+5L+yOhx2yJQ/lyIoAF0caPB3QcubXEYvnBLlZHvpdB5XwYr2ROv4OP5bniAvzL4P
+45jPdrWd/BJUpBD7V3pac83nvcB+z4K91Hnru2bTNatFlmAhR+1rN9nK9fggmeud
+BtgxpnVJAJt5VwF9p7kCDQRMxDmSARAAv8XAp2PGA/G1KmCrVIzOBm1NPIuqGAYP
+c1l9p0dYdhEgvfw0NXcl5MDv1jbOPZ2PspA8NP7Rqp6LNNXYTeM/eIJDndU5Phyi
+ewFpACAp7Gmm2dL5PUOhu0gIUnQYbN/QdGPoo7bNI646K1Y9aVTBu9fszQssjb6G
+qXHSNM+pskVn9lropO1tLrF0I9VSlSphlCmiQRlzBCZSnxD6UagkPaw1gJnJqnrd
+f9oA6AIavZFdh104fl7y8bMZb6bC0K/5ZD0DLfmYaojkyqRtl3VBu6/ZvXrjsT9A
+QS5x9EdVslUoYY+kUxQm1wi3LIi3mOj6v0IIvgKzjt0X/39E3C42+m8ddTKowFB1
+Y1lEzHiT80YP9a+I+L2bqYgy6Lqs5CxI5qph1xRfg2rY6uvc5rPYk9B1R94jbeKi
+3W8ryHG9QJBNXcd8mCGLM3qylWXTJA4oGITyaIlGCuMeKUfeFNvGijjbEOQ0Cr4J
+CjdACbWJsPEoIOrRFxY+NwJEA39Dkyalyh2l0qTNXTIYhLiDuzl+tWuBX+SjHavj
+9jGyvwr3T37gfzYCNMoZf8GaxAUJMCoGTqnsjTPGMion/DfdNkFDQ+fivdYiVQ9p
+/Njpr38sC83V8dHF/1KkIHImyzMPTdC7l/lMHyC2Gx2dWZOjuOOKit0Qoy3DZoQw
+vN1ZZND9M1UAEQEAAYkCOwQYAQoAJgIbDBYhBDaQwkDOUbRnDTCtHDjudX1pGEYg
+BQJjNw3ZBQkY+NNHAAoJEDjudX1pGEYg1mcP+IeCk90IFZ3SLX+siaZQCQIzcD+L
+3U+rwuiMPGcxBft5DBWetZe9lmsH9Q4JHj0B4wl8CIzL5U/oCc+J2wiZqWBF7w67
+ojM6RruuJyRNxoWyskDiCSYtcoMis8Eq2kBYmuz4Hei4MYBTX0R/HF3dJzOtfNYG
+olLta4vXzMuobBatsWpvTw0U60kHNixKRw3w61vFyhU8aZkTSH6KCRhtpkyw50GM
+KoTn4UHpIAZJ9msFqkrl2L73REDWPS1xdS9TA/h8JjRHH3BmuY9zVHYPwkesFDN9
+eah3rmt3VVI6r0HwBZnDWfqfANzvxJdoJP+b5KiY4OayQI5Jz+rqztNRva0rCy/O
+y32kSo7MSf5bvDA5bFzI4rFjgBXk58gy8HNA7bHrKSH5uSFSPnsii/Zvuva1T2sB
+VzV4ueNCA837y7zrT91B18y5rlUgKoUI3qUurJPjMe3TxLW2tsHHLNdkfxqqONOC
+7B7+rlqs4F/Gze1pBv848W4Zen2aCIJVAsZy0O3b/5018s6eZah5TLakGpLXfTaw
+EH6d+sYVMWYkLjKnNjy5AUb3x3EGjOowTzfoqsyGIFt4siCFeCw5Ace36BfJBXO/
+OyR51TFnibHNnUP/4l8mHDEa/FkWfmwAYtsCZFtegi/R24eT8lbYXW+39LTevN5z
+zLfsHcstacg70so=
+=u56s
+-----END PGP PUBLIC KEY BLOCK-----
diff --git a/debian/watch b/debian/watch
new file mode 100644
index 0000000..6aee3aa
--- /dev/null
+++ b/debian/watch
@@ -0,0 +1,3 @@
+version=4
+opts=dversionmangle=s/\+\d{8}$//,pgpsigurlmangle=s/$/.sig/ \
+https://tukaani.org/xz/xz-([\d.]*(?:beta)?)\.tar\.xz
diff --git a/debian/xz-utils.README.Debian b/debian/xz-utils.README.Debian
new file mode 100644
index 0000000..77633ef
--- /dev/null
+++ b/debian/xz-utils.README.Debian
@@ -0,0 +1,47 @@
+XZ Utils for Debian
+===================
+
+Contents:
+ 1. History
+ 2. LZMA Utils compatibility
+ 3. Configuration
+
+History
+-------
+
+XZ Utils should have been called LZMA Utils 4.42, but it came too late.
+The old .lzma file format has some problems, worst of which is the lack
+of magic number, but it gets enough use to still need to be supported.
+See /usr/share/doc/xz-utils/history.txt.gz for the full story.
+
+LZMA Utils compatibility
+------------------------
+
+To support old scripts and muscle memory, XZ Utils can emulate the
+legacy LZMA Utils interface. To use this feature, you can install some
+subset of the following list of symbolic links to your $PATH.
+
+ lzma, unlzma, lzcat -> /usr/bin/xz
+ lzgrep, lzegrep, lzfgrep -> /usr/bin/xzgrep
+ lzless -> /usr/bin/xzless
+ lzmore -> /usr/bin/xzmore
+ lzdiff, lzcmp -> /usr/bin/xzdiff
+
+If you would like XZ Utils to provide these commands by default for
+all users, use "update-alternatives --config lzma".
+
+Configuration
+-------------
+
+The memory usage of xz can vary from a few hundred kilobytes to several
+gigabytes depending on the compression settings. If you would like xz
+to automatically scale down its settings while compressing to decrease
+memory usage, you can declare so by adding an option like the
+following to your environment (e.g., in ~/.profile):
+
+ XZ_DEFAULTS=--memlimit-compress=256MiB
+ export XZ_DEFAULTS
+
+See the "Memory usage" section of the xz(1) manual page for details.
+
+ -- Jonathan Nieder <jrnieder@gmail.com> Sun, 27 Jan 2019 15:32:33 -0800
diff --git a/debian/xz-utils.docs b/debian/xz-utils.docs
new file mode 100644
index 0000000..feb42b7
--- /dev/null
+++ b/debian/xz-utils.docs
@@ -0,0 +1,6 @@
+usr/share/doc/xz/AUTHORS
+usr/share/doc/xz/NEWS
+usr/share/doc/xz/README
+usr/share/doc/xz/THANKS
+usr/share/doc/xz/faq.txt
+usr/share/doc/xz/history.txt
diff --git a/debian/xz-utils.install b/debian/xz-utils.install
new file mode 100644
index 0000000..28bb151
--- /dev/null
+++ b/debian/xz-utils.install
@@ -0,0 +1,39 @@
+usr/bin/lzmainfo
+usr/bin/unxz
+usr/bin/xz
+usr/bin/xz*grep
+usr/bin/xzcat
+usr/bin/xzcmp
+usr/bin/xzdiff
+usr/bin/xzless
+usr/bin/xzmore
+usr/share/locale/*/LC_MESSAGES/xz.mo
+usr/share/man/*/man1/lzcat.1
+usr/share/man/*/man1/lzcmp.1
+usr/share/man/*/man1/lzdiff.1
+usr/share/man/*/man1/lzegrep.1
+usr/share/man/*/man1/lzfgrep.1
+usr/share/man/*/man1/lzgrep.1
+usr/share/man/*/man1/lzless.1
+usr/share/man/*/man1/lzma.1
+usr/share/man/*/man1/lzmore.1
+usr/share/man/*/man1/unlzma.1
+usr/share/man/*/man1/unxz.1
+usr/share/man/*/man1/xz.1
+usr/share/man/*/man1/xzcat.1
+usr/share/man/*/man1/xzcmp.1
+usr/share/man/*/man1/xzdiff.1
+usr/share/man/*/man1/xzegrep.1
+usr/share/man/*/man1/xzfgrep.1
+usr/share/man/*/man1/xzgrep.1
+usr/share/man/*/man1/xzless.1
+usr/share/man/*/man1/xzmore.1
+usr/share/man/man1/lzmainfo.1
+usr/share/man/man1/unxz.1
+usr/share/man/man1/xz*grep.1
+usr/share/man/man1/xz.1
+usr/share/man/man1/xzcat.1
+usr/share/man/man1/xzcmp.1
+usr/share/man/man1/xzdiff.1
+usr/share/man/man1/xzless.1
+usr/share/man/man1/xzmore.1
diff --git a/debian/xz-utils.postinst b/debian/xz-utils.postinst
new file mode 100644
index 0000000..a2cf46f
--- /dev/null
+++ b/debian/xz-utils.postinst
@@ -0,0 +1,19 @@
+#!/bin/sh
+set -e
+
+slave () {
+ dir=$1 filename=$2 target=$3
+ echo "--slave $dir/$filename $filename $dir/$target"
+}
+
+update-alternatives --install /usr/bin/lzma lzma /usr/bin/xz 20 $(
+ slave /usr/share/man/man1 lzma.1.gz xz.1.gz
+ slave /usr/bin unlzma unxz
+ slave /usr/share/man/man1 unlzma.1.gz unxz.1.gz
+ for util in cat more less diff cmp grep egrep fgrep
+ do
+ slave /usr/bin lz$util xz$util
+ slave /usr/share/man/man1 lz$util.1.gz xz$util.1.gz
+ done
+)
+#DEBHELPER#
diff --git a/debian/xz-utils.prerm b/debian/xz-utils.prerm
new file mode 100644
index 0000000..8dd3d8f
--- /dev/null
+++ b/debian/xz-utils.prerm
@@ -0,0 +1,10 @@
+#!/bin/sh
+set -e
+if
+ test "$1" != upgrade ||
+ # downgrading to a pre-alternatives version
+ dpkg --compare-versions "$2" lt-nl 5.1.1alpha+20120614-1
+then
+ update-alternatives --remove lzma /usr/bin/xz
+fi
+#DEBHELPER#
diff --git a/debian/xzdec.docs b/debian/xzdec.docs
new file mode 100644
index 0000000..feb42b7
--- /dev/null
+++ b/debian/xzdec.docs
@@ -0,0 +1,6 @@
+usr/share/doc/xz/AUTHORS
+usr/share/doc/xz/NEWS
+usr/share/doc/xz/README
+usr/share/doc/xz/THANKS
+usr/share/doc/xz/faq.txt
+usr/share/doc/xz/history.txt
diff --git a/debian/xzdec.install b/debian/xzdec.install
new file mode 100644
index 0000000..7f67bd8
--- /dev/null
+++ b/debian/xzdec.install
@@ -0,0 +1,4 @@
+usr/bin/xzdec
+usr/bin/lzmadec
+usr/share/man/man1/xzdec.1
+usr/share/man/man1/lzmadec.1