Compare commits

..
Author SHA1 Message Date
Mounir IDRASSI 177ec1fce1 Fix max volume size handling with no-size-check
Keep the max size sentinel and interactive max choice bounded by available disk space even when --no-size-check allows explicit sparse container sizes beyond the current free space.
2026-06-14 23:18:10 +09:00
Damian RickardandClaude Fable 5 2dbc718225 Honor --no-size-check when creating file containers via the CLI
The text-mode volume creation path clamps the maximum allowed volume
size to the available free disk space and never consults
ArgDisableFileSizeCheck, so the documented --no-size-check switch has no
effect when creating a file-hosted container with `--text --create`.

The flag is honored by the GUI wizard (Forms/VolumeSizeWizardPage.cpp)
but was missing from the text UI, making it impossible to create a
(sparse) container larger than the current free space from the command
line -- even though such a container is perfectly valid on filesystems
with sparse-file support (e.g. APFS, ext4, NTFS) and is exactly what the
flag exists to allow.

Skip the free-space clamp when --no-size-check is set, mirroring the GUI
behavior.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
2026-06-10 16:37:32 -04:00
Mounir IDRASSI d26216c294 Update MBR bootloader 2026-06-09 19:55:00 +09:00
Mounir IDRASSI 616e33fad8 Set release date to June 9th 2026 2026-06-09 19:29:01 +09:00
Mounir IDRASSI 3575194415 Linux: Support legacy Python for reproducible build
Allow reproducible makeself finalization to run with Python 2.6+ or Python 3 by avoiding Python 3-only syntax and probing python3, python, then python2.
2026-06-09 18:29:50 +09:00
Mounir IDRASSI dd96f1a483 Fix RPM reproducibility macro escaping
Escape RPM line-continuation backslashes in CPACK_RPM_SPEC_MORE_DEFINE so generated CPackConfig.cmake parses cleanly on CMake 2.8.
2026-06-09 16:53:44 +09:00
Mounir IDRASSI d26be95861 Update copyright year to 2026 2026-06-09 09:56:25 +09:00
Mounir IDRASSI 030be14a82 Increment version to 1.26.29.3. Update signed Windows drivers 2026-06-09 09:25:28 +09:00
Mounir IDRASSI f59c8188d7 Windows: simplify favorite mount batch results
Return a structured internal result for favorite mount batches instead of combining a BOOL return value with optional out parameters.

Keep the public MountFavoriteVolumes API unchanged and preserve favorite-on-arrival cancellation and drive-letter handling semantics.
2026-06-08 21:36:54 +09:00
Mounir IDRASSI 304088f908 Windows: stop auto-mount scan on mount cancellation
Add a cancel callback and batch abort flag so auto-mount-all stops after dialog cancellation.

Mark MountVolume ERR_USER_ABORT with ERROR_CANCELLED so external /cancelmount also stops the scan.
2026-06-08 20:19:47 +09:00
Mounir IDRASSI 1871765a76 Windows: allow cancelling long mount operations
Add a root-driver abort IOCTL that bypasses the mount control mutex and sets cooperative KDF abort flags for the active mount.

Restrict abort requests to privileged callers or to the user that initiated the pending mount, and retry early wait-dialog cancel requests until the driver has registered the cancellable mount context.

Wire the wait dialog Cancel button to send the abort request through a fresh driver handle, and propagate ERR_USER_ABORT through header/cache processing.

Add a /cancelmount command-line switch that sends the same abort request without displaying UI, so users can cancel hidden-wait-dialog mount operations from another process.
2026-06-07 23:39:52 +09:00
Mounir IDRASSI 105425ebb0 Build: bundle matching FUSE library in AppImage 2026-06-06 23:45:27 +09:00
Mounir IDRASSI e349c76686 Build: extend reproducible packaging to RPM
Run the install(SCRIPT) mtime/mode clamp for every CPack generator instead of
only the DEB branch, so the RPM payload staging tree is normalised the same way
before rpmbuild sees it. Payload file timestamps and permissions are therefore
reproducible on any rpm version.

For the RPM header, set the spec %defines that pin BuildTime to
SOURCE_DATE_EPOCH (use_source_date_epoch_as_buildtime, which consumes the
exported environment variable) and BuildHost to a fixed value (_buildhost), and
clamp payload mtimes through both the legacy clamp_mtime_to_source_date_epoch
macro and its modern build_mtime_policy replacement. source_date_epoch_from_changelog
is disabled so CPack's placeholder changelog date cannot hijack the epoch.

These macros only exist on rpm >= 4.14 (buildtime/mtime) and >= 4.18
(buildhost). To make the two header fields reproducible on older rpm as well
(CentOS/RHEL 7, rpm < 4.14), add a small libc-interposition shim
(Build/Tools/repro_buildstamp.c) that pins time() and the build hostname,
LD_PRELOAD'ed onto cpack's rpmbuild child by the RPM packaging wrappers. The
shim calls the real uname() and overwrites only nodename, leaving architecture
detection intact, never overrides monotonic clocks, and defers to the real
time() when SOURCE_DATE_EPOCH is unset so a missing epoch is a no-op rather than
a frozen 1970 clock. It is enabled only after it compiles and loads cleanly;
otherwise packaging proceeds without it, because a preload that fails to load
would emit an ld.so error that rpm's check-buildroot script turns into a fatal
%install error.

Derive and export SOURCE_DATE_EPOCH in the rpm and openSUSE wrappers the same
way the deb wrapper already does, mark both wrappers executable, and note in the
README that .deb and .rpm packages are reproducible including on older rpm.
2026-06-06 23:45:22 +09:00
Mounir IDRASSI f77d0c0760 Build: replace fixed SOURCE_DATE_EPOCH fallback
Keep caller-provided SOURCE_DATE_EPOCH authoritative and derive the automatic default through a shared helper used by the Makefile, direct CMake/CPack packaging, and the deb packaging wrapper.

When repository metadata is available, use the HEAD commit timestamp without relying on git -C. Resolve the source root before probing Git so symlinked source paths still use the checkout HEAD. For source tarballs without .git, derive the fallback timestamp from the release date encoded in Common/Tcdefs.h instead of the stale 2020-01-01 constant.

Add TC_RELEASE_DATE_DAY and validate it together with TC_RELEASE_DATE_YEAR, TC_RELEASE_DATE_MONTH, and TC_STR_RELEASE_DATE. Abort when no valid timestamp can be derived.

For direct CMake invocation, initialize SOURCEPATH when the wrapper has not provided it, use the shared helper for derivation, validate the result, and export it for package targets. Also persist the configured epoch through CPACK_PROJECT_CONFIG_FILE so later standalone cpack --config runs export the same value before invoking package generators.

Document that automatic git-checkout builds and release-tarball builds intentionally use different epochs; release reproducers should build from the tarball or set SOURCE_DATE_EPOCH explicitly.
2026-06-05 23:51:51 +09:00
Mounir IDRASSI fd80bc0679 Windows: allow selecting KDFs in benchmark dialog
Add a KDF checklist to the Windows benchmark dialog while keeping all algorithms selected by default.

Filter KDF benchmark execution to the checked algorithms and silently skip when none are selected.

Reuse existing KDF localization strings and keep Language.xml unchanged.
2026-06-05 22:08:02 +09:00
Mounir IDRASSI df3bb7c5e6 Crypto: fix no-SSE2 x86 fallback paths
Guard BLAKE2s x86 SIMD dispatch on compiled SSE2 intrinsic support so NOSSE2 builds do not reference missing compressor symbols.

Make Argon2 AVX2/SSE2 stubs fall back to the next available implementation instead of returning ARGON2_INCORRECT_PARAMETER when runtime CPU flags outpace build capabilities.
2026-06-05 15:40:56 +09:00
Mounir IDRASSI 0feecd019a Update translations 2026-06-05 02:37:02 +09:00
Mounir IDRASSI 0800a1652b Documentation: Update CHM files 2026-06-05 02:35:32 +09:00
Mounir IDRASSI 522a784bfc Update Release Notes. Set release date. 2026-06-04 21:45:44 +09:00
Mounir IDRASSI f5a67a378f Windows: Update signed driver to version 1.26.29.2 2026-06-04 14:31:13 +09:00
Mounir IDRASSI 7f905395c6 Windows: Add Win64 unwind metadata for AES assembly
Emit NASM-compatible .pdata/.xdata records for the x64 table AES routines and AES-NI 32-block paths.

Describe the nonvolatile GP and XMM6-XMM15 saves so kernel stack unwinding can cross these routines reliably.

Gate the metadata on win64 output so ELF and Mach-O builds keep their existing assembly paths.
2026-06-04 10:30:40 +09:00
Mounir IDRASSI a24cbe55bd Fix Twofish x64 multiblock tail handling
Only call the one-block assembly helper when one block remains after the three-block loop.

This prevents zero-block and multiple-of-three requests from reading and writing one extra block past the caller buffer.

Add a Twofish multiblock self-test covering block counts 0 through 9.
2026-06-03 20:54:42 +09:00
Mounir IDRASSI 61978021d2 Documentation: Use correct Yasm download link instead of old dead link 2026-06-03 19:30:59 +09:00
Mounir IDRASSI 612bccbd1a Align key schedules and fix Camellia SSSE3 dispatch
Align CRYPTO_INFO primary and secondary key-schedule buffers so cipher implementations can safely use word-sized schedule access on VeraCrypt-managed storage.

Keep generic Camellia direct uint64 schedule indexing. Builds that define CRYPTOPP_ALLOW_UNALIGNED_DATA_ACCESS use direct 64-bit key and block byte loads/stores; memcpy is retained only for strict-alignment builds.

Require SSSE3 before using the x64 AESNI 16-way Camellia path because the assembly uses pshufb in addition to AES and AVX.
2026-06-03 18:17:42 +09:00
Mounir IDRASSI aab9e38894 Fix x64 CPU feature macro guard
CRYPTOPP_BOOL_X64 is defined as 0 on non-x64 builds, so #ifdef made HasSSE2() and HasISSE() always true. Use #if so non-x64 builds follow runtime feature detection and DisableCPUExtendedFeatures().
2026-06-03 15:10:13 +09:00
Mounir IDRASSI c748b44b02 Windows driver: fix PBKDF XSTATE cleanup
Ensure SHA-256 and SHA-512 PBKDF cancellation paths restore saved extended processor state before cleanup. Remove unnecessary extended-state save/restore around BLAKE2s, which does not use AVX in the current implementation.
2026-06-03 14:55:57 +09:00
Mounir IDRASSI fcd430d659 Increment version to 1.26.29. Update signed Windows drivers 2026-06-03 14:55:49 +09:00
Mounir IDRASSIandGitHub 689a59cd58 Merge commit from fork
Hidden volumes are forced to quick format to avoid rewriting the hidden data area. Keep that behavior while skipping the file-container allocation shortcut that writes plaintext zero sectors at 128 MiB intervals.

The allocation shortcut remains enabled for non-hidden file containers; hidden containers now use only the encrypted formatter write path for sectors that are written.
2026-06-03 14:32:17 +09:00
Mounir IDRASSI 9ef369bd45 Windows: discover newer SDK MSI tools
Enhance build_msi_x64.bat to enumerate installed Windows Kits 10 SDK bin directories matching 10.* and select the newest x86 path that contains the MSI tools.

Keep VC_DIR_PLATFORMSDK as the first override and preserve the existing fixed SDK fallback paths for older installations.

Require MsiInfo.exe during discovery as well as msitran.exe and msidb.exe so the selected SDK path supports the final MSI metadata step.
2026-06-02 19:26:44 +09:00
Mounir IDRASSI f18ec1ab1e Update Windows build documentation for VS2022
Replace outdated Visual Studio 2010/2019 and legacy Windows SDK 7.1, WDK 7.1, and Windows 8.1 SDK guidance with the current Visual Studio 2022/v143 toolchain, Windows 10/11 SDK, and WDK requirements.

Document NASM, YASM, WiX Toolset v3.x, signtool.exe, and optional legacy BIOS bootloader tools separately. Update the build flow for x64, ARM64, Win32 setup/helper projects, and explicit Driver project builds.

Align the zh-cn and ru translated guides with the updated English content while preserving their existing translation style. Fix test certificate paths to use src/Signing/TestCertificate.
2026-06-02 19:26:44 +09:00
VastBlastandGitHub 39f9391007 Merge commit from fork
* Fix wolfCrypt PBKDF2 key derivation

* Document wolfSSL PBKDF2 build option

* Handle wolfCrypt PBKDF2 failures
2026-06-02 15:03:54 +09:00
Mounir IDRASSI bc84aa8c1e Align Whirlpool lookup table and local buffer 2026-06-02 00:03:51 +09:00
Mounir IDRASSI 91b6ad5a19 Linux/WSL: open mounted volumes via Windows Explorer
Route Linux GUI mounted-volume opens through Windows Explorer when WSL interop is available, before falling back to xdg-open and known file managers.

Detect WSL by checking for /usr/bin/wslinfo and /usr/bin/wslpath, build the target path from the WSL root UNC so /mnt/<drive> mount points stay in the WSL VFS overlay, and launch Explorer directly so the folder argument is preserved.
2026-06-01 22:58:35 +09:00
Mounir IDRASSI 5407a581ac FreeBSD: link static wx builds with iconv 2026-05-31 18:16:03 +09:00
Mounir IDRASSI 45ed8aba8f XML language file: Update Russian translations by Dmitry Yerokhin 2026-05-31 16:40:43 +09:00
Mounir IDRASSI 21524dc48d Fix leaf 7 feature detection
BMI2 support is advertised by CPUID leaf 7, subleaf 0, EBX bit 8. The previous early assignment used CPUID leaf 1 EBX bit 8, which is not the BMI2 feature bit and could leave a bogus fallback value before vendor-specific leaf 7 detection.

Keep BMI2 detection based on the leaf 7 result only. Unlike AVX2, BMI2 is GPR-only and does not require an OS/XCR0 state gate.

Also save the max basic CPUID leaf immediately after CPUID leaf 0. The AMD/Hygon path reuses the cpuid buffer for leaf 0x80000005 before checking whether leaf 7 is available, so using the saved max basic leaf prevents RDSEED, AVX2, and BMI2 detection from being skipped because that buffer was clobbered.
2026-05-31 15:18:11 +09:00
Mounir IDRASSI 11739c41f4 Fix AVX2 feature gating
AVX2 support is advertised by CPUID leaf 7, subleaf 0, EBX bit 5. The previous early assignment used cpuid1[1] bit 5, which is CPUID leaf 1 EBX and is not the AVX2 feature bit.

Record the leaf 7 AVX2 bit separately and assign g_hasAVX2 only after vendor-specific detection has completed. The final value is now gated by g_hasAVX, which reflects the OS/XCR0 AVX state check, so AVX2 code is not selected unless both the CPU and OS state support it.
2026-05-31 14:32:00 +09:00
Mounir IDRASSI 3b27eb1acf Windows: fix security token foreach warning 2026-05-31 12:38:31 +09:00
Mounir IDRASSI d6220089ca Fix Unmount All access keys
Move the Unmount All mnemonic away from the single-volume Unmount action in the Windows resources and affected language files. This keeps the two main actions reachable through distinct keyboard accelerators across packaged translations.

Fixes https://github.com/veracrypt/VeraCrypt/issues/1751
2026-05-31 10:47:14 +09:00
Mounir IDRASSI 91a01826aa Windows: fix EFI DcsProp rewrite handling
Ensure ESP file writes have true replace semantics even when the operation is delegated to the elevated COM helper. This prevents shorter edits of EFI\VeraCrypt\DcsProp from leaving stale bytes at the end of the file.

Also XML-escape decoded EFI boot configuration values before serializing them, preserving values containing characters such as <, > and & during EfiBootConf save/update paths.

Fixes #954.
2026-05-31 00:12:06 +09:00
Ganeron11andGitHub 329bc18bb6 Update Language.pl.xml (#1750)
* Update Language.pl.xml

* Update Language.pl.xml

* Update Language.pl.xml

* Update Language.pl.xml

* Update Language.pl.xml

* Update Language.pl.xml

* Update Language.pl.xml

* Update Language.pl.xml

* Update Language.pl.xml

* Update Language.pl.xml

* Update Language.pl.xml

* Update Language.pl.xml

* Update Language.pl.xml

* Update Language.pl.xml

more fixes

* Update Language.pl.xml

* Update Language.pl.xml

* Update Language.pl.xml

* Update Language.pl.xml

* Update Language.pl.xml

* Update Language.pl.xml
2026-05-30 23:32:43 +09:00
Mounir IDRASSI 19b3ebc0bb Windows: fix ReFS formatting during volume creation
Mount temporary ReFS volumes as fixed media, since Windows does not support ReFS on removable media. Use FMIFS_HARDDISK for the FormatEx fallback while preserving the removable-media path for NTFS and exFAT.

Also make the FormatEx DONE-with-failure status explicit and guard against a missing callback parameter.
2026-05-30 16:50:33 +09:00
Mounir IDRASSI 2605adcfff Linux: store GUI instance lock under XDG paths
The GUI single-instance lock was previously created through wxSingleInstanceChecker without an explicit Unix path, causing wxWidgets to place .VeraCrypt-lock-$USER directly in the user home directory.

Resolve a private lock directory before constructing wxSingleInstanceChecker. Prefer $XDG_RUNTIME_DIR/VeraCrypt, then $XDG_CACHE_HOME/VeraCrypt, then ~/.cache/VeraCrypt, and keep the previous home-directory behavior only as a final fallback if no XDG location can be used.

Update stale-lock cleanup to remove the lock from the same resolved directory, so false-positive cleanup continues to work after moving the lock out of $HOME.

Fixes https://github.com/veracrypt/VeraCrypt/issues/819
2026-05-29 22:31:08 +09:00
Mounir IDRASSI 170dfa83ee Linux/macOS: fix hidden volume FAT size limit
The Unix volume creation wizard applied the FAT32 sector-count limit as a blanket check for device-hosted hidden-volume outer volumes. On 512e disks Linux reports 512-byte logical sectors, so this incorrectly rejected larger device-hosted outer volumes even when the selected outer filesystem was not FAT.

Compute the actual VeraCrypt filesystem/data area size through a shared helper and apply the FAT32 size limit only when FAT is selected. This preserves correct FAT validation while allowing non-FAT outer volumes to proceed to the existing hidden-volume size estimation flow.

Update text-mode creation so FAT is not offered when the selected size cannot support it, and default to the platform native filesystem in that case. Clarify the user-facing FAT limit wording to refer to logical sector size.

Fixes #262
2026-05-29 19:18:56 +09:00
Mounir IDRASSI 610feb4c28 macOS: block partitioned disk alias bypass
On macOS, the same whole disk can be addressed as both /dev/diskN and /dev/rdiskN. The GUI creation wizard only compared the selected path against the enumerated raw device path, so manually entering the block-device alias could bypass the existing DEVICE_PARTITIONS_ERR guard and allow formatting a disk that still had partitions.

Add a shared macOS device-path comparison helper that normalizes paths to their raw-device form before comparison. Use it in the GUI wizard so /dev/diskN and /dev/rdiskN are treated as the same whole-disk target while partition paths remain distinct.

Apply the same partitioned whole-device guard in the text/CLI creation path as well, including the macOS alias normalization, so command-line creation cannot format a partitioned top-level disk through an alternate device alias.

Fixes #728
2026-05-29 18:32:32 +09:00
nkh0472andGitHub c8f0efde99 Update Language.zh-cn.xml (#1748)
* Update Language.zh-cn.xml

Translate NTFS mount options to Chinese

* Update NTFS kernel driver entries in Chinese translation
2026-05-29 17:12:45 +09:00
Mounir IDRASSI b33a534581 Linux/macOS: fix remaining wxWidgets sizer flags
Remove the remaining generated-form alignment flag that wxWidgets ignores in box sizers: the language page system-default button bottom alignment combined with wxEXPAND. Preserve the Legal Notices OK button centering and keep Forms.cpp and TrueCrypt.fbp in sync.

Keep the existing global sizer consistency check suppressions in place pending additional testing.

Follow-up to issue #49.
2026-05-29 15:50:49 +09:00
PatriccolluandGitHub d728d23394 Update Corsican translation on 2026-05 (4th) (#1747) 2026-05-29 10:41:38 +09:00
Mounir IDRASSI 0caacd3405 macOS: Fix Command-A in password fields
Install a macOS-specific secure text field hotkey handler so Command-A selects the full contents of password controls when Cocoa does not route the shortcut through wxWidgets accelerators. Keep the existing wxWidgets accelerator handler for Command-V and Command-A, and recognize the standard paste/select-all IDs when they do reach the C++ event path.

Add Objective-C++ compilation support for the macOS helper and include it in the GUI target only on macOS.

Fixes https://github.com/veracrypt/VeraCrypt/issues/1567
2026-05-28 17:18:47 +02:00
Mounir IDRASSI cfd54af700 macOS: force fresh exFAT layout when formatting volumes
Pass -R to newfs_exfat in both GUI and text-mode volume creation so macOS derives a fresh exFAT layout instead of preserving stale geometry from an existing exFAT boot region. This matches Finder/Disk Utility erase behavior.

Validated on Windows 11: chkdsk no longer reports boot-region corruption on volumes formatted this way.

Fixes #1021.
2026-05-28 13:14:19 +02:00
Mounir IDRASSI 08b433012e Fix volume size unit choice width
The volume size page populates the unit wxChoice after the generated base class has already fit the empty control. On macOS this can leave the closed choice too narrow, truncating MiB to .... Measure the localized unit labels after appending them and set a sufficient minimum width.
2026-05-27 11:31:56 +02:00
Mounir IDRASSI ce20a24aa5 Fix hidden volume size estimate for exFAT outer volumes
On Unix and macOS, the hidden volume wizard estimates the available space for non-FAT outer filesystems using statvfs(). The previous calculation used f_bsize with f_bavail, which can overstate available bytes on macOS exFAT because f_bsize may be the preferred I/O size instead of the fragment size associated with the block counts.

Use f_frsize when it is reported, fall back to f_bsize, and clamp the non-FAT estimate to the actual outer VeraCrypt data size before applying the existing 80% safety heuristic.

Also harden hidden volume creation in both the cross-platform VolumeCreator path and the Windows/common formatting path by rejecting sizes that would exceed the hidden host data area and overlap volume header space.

Fixes #1037
2026-05-27 10:28:43 +02:00
Marius KjærstadandGitHub 3e6400c982 Update Norwegian Bokmål translation (#1746)
* Update Norwegian Bokmål translation

* Issues reported by Idrassi

* Corrected two issues

* Some more issues
2026-05-27 10:15:37 +02:00
Mounir IDRASSI f9089b0202 Linux: improve AppImage portability
Bundle the FUSE2 userspace library inside the AppImage AppDir and make AppRun prefer APPDIR/usr/lib. This lets the bundled VeraCrypt binary resolve libfuse.so.2 on systems where FUSE2 userspace packages are no longer installed by default.

Name AppImage artifacts according to the GTK backend detected during the build. GTK3 builds keep the default VeraCrypt-<version>-<arch>.AppImage name, while GTK2 builds use a gtk2-legacy suffix to distinguish the legacy compatibility artifact.

Include immintrin.h in the Argon2 AVX2 implementation so GCC toolchains such as the one on CentOS 7 see the AVX2 intrinsic types when compiling with -mavx2.

Refs: https://github.com/veracrypt/VeraCrypt/issues/1595
2026-05-26 23:46:33 +09:00
Mounir IDRASSI 4ad36447b2 Linux: fix CentOS 6 build with GCC 4.4
CentOS 6 builds VeraCrypt with GCC 4.4.7 and -std=c++0x. That compiler does not support range-based for loops, and its libstdc++ does not provide std::string::back() or std::string::pop_back().

Avoid those constructs in the affected Unix/Linux code paths: use VeraCrypt's existing foreach helper when iterating PKCS#11 object handles, and use indexing plus erase() when trimming trailing slashes from PATH entries.

This keeps the code valid for newer Linux toolchains while restoring compatibility with the CentOS 6 build environment.
2026-05-26 21:04:52 +09:00
Mounir IDRASSI 9b20099255 Build: harden OpenWrt package input handling
Stage VeraCrypt and wxWidgets sources under the SDK package directory before rendering the OpenWrt package Makefile. The generated recipe now refers only to fixed package-local paths, so checkout and work directory names are no longer parsed as GNU Make syntax or passed unquoted through recipe source arguments.

Validate VeraCrypt and wxWidgets version tokens before substituting them into generated package metadata. This prevents unexpected Make metacharacters from entering the generated OpenWrt recipe while preserving normal dotted release versions.

Quote OpenWrt QEMU test container-size values with the existing shell quoting helper, matching the password handling and preventing user-supplied size text from being split or interpreted by the guest shell.
2026-05-26 18:16:33 +09:00
Mounir IDRASSI d0bc546614 OpenBSD: fix CLI build and PCSC exit handling
OpenBSD builds were relying on ggod to generate embedded resource
headers. That tool is not available on a stock OpenBSD 7.9 install,
and using base od directly is not a safe substitute because it emits
zero-padded decimal values such as 060 and 098. Those tokens are then
included in C++ source and parsed as octal constants, which either
changes values or fails compilation.

Use hexdump with an explicit unsigned-byte format for OpenBSD. It is
part of the base system and emits unpadded decimal byte values suitable
for the existing resource-header pipeline.

The text-mode binary also crashed on normal process exit on OpenBSD,
including after --version, --test, create, mount, list, and dismount.
GDB showed the crash in libpcsclite_real during SCardReleaseContext(),
called from the static SCardManager destructor. This happened even for
commands that did not use EMV or security-token support because the
static manager constructor eagerly initialized PC/SC at startup.

Avoid eager PC/SC initialization and exit-time finalization on OpenBSD.
The existing call sites still initialize PC/SC lazily when EMV/token
operations need it, while ordinary CLI commands no longer touch
pcsc-lite and no longer crash during static destruction.

Validated on OpenBSD 7.9 amd64 with:
- gmake NOGUI=1 -j2
- veracrypt --text --version
- veracrypt --text --test
- device-hosted create/mount/list/dismount smoke test through doas/vnd

Refs #1589.
Refs #1593.
2026-05-26 17:58:04 +09:00
Mounir IDRASSI 6774de941d OpenBSD: honor doas user for mount ownership and FUSE access
VeraCrypt derives the real (non-root) user from SUDO_UID/SUDO_GID
to set default mount-point ownership and the FUSE service access
filter. On OpenBSD, privileged commands are normally run through doas,
which exposes the invoking login name via DOAS_USER and does not set
the sudo variables. As a result, VeraCrypt launched through doas
attributes both to root instead of the invoking user.

When the sudo identity variables are absent, resolve DOAS_USER through
the password database and use that uid/gid for default mount-point
ownership and the VeraCrypt FUSE service access filter. sudo behavior
is unchanged.

This is a correctness fix for the doas launch path. It is not confirmed
to resolve the non-root ext2fs EACCES reported in the linked issues:
that failure occurs at the ext2fs layer reached through vnd, whose
backing-image I/O runs as root and is therefore already permitted by
the access filter.

Refs #1589.
Refs #1593.
2026-05-26 11:07:40 +09:00
Mounir IDRASSI 5d7a2a78b8 OpenBSD: fix device-hosted volume sizing
OpenBSD device length detection was returning the raw disk sector count from DIOCGPDINFO directly. That value is not bytes and it describes the physical/default disk label, which caused VeraCrypt to expose an incorrectly sized FUSE backing image through vnd for device-hosted volumes.

Use the current disklabel from DIOCGDINFO, derive the opened partition from the device minor number, and return the selected partition size in bytes. Keep the raw c partition on the whole-disk path by using DL_GETDSIZE there.

Also reject sector-misaligned device-hosted sizes during volume creation so new malformed OpenBSD device-hosted volumes are not created. Do not reject existing malformed headers at mount time, so users can still mount old OpenBSD-created volumes for recovery.

Refs #1589.

Refs #1593.
2026-05-26 11:04:54 +09:00
Mounir IDRASSI 0190270f9d Add OpenWrt package build and QEMU test scripts
Add OpenWrt SDK packaging under src/Build for console-only x86/64 builds. The build helper prepares the SDK, renders a local package recipe, builds VeraCrypt with the OpenWrt musl toolchain, uses wxWidgets 3.2.10 as static wxBase, enables FUSE3, and skips release self-tests during cross compilation.

Add a package template that installs the console binary, mount.veracrypt, and license files only. The package declares bash for mount.veracrypt and keeps runtime dependencies focused on the direct userland requirements.

Add a documented QEMU runtime test path that boots the matching OpenWrt image, installs the locally built package set with opkg, runs the VeraCrypt version and algorithm self-tests, and exercises a small filesystem=none container mount/unmount flow.

Allow wxbuild callers to pass WX_CONFIGURE_EXTRA_FLAGS so OpenWrt cross configure flags can be passed into the wxWidgets build without carrying an OpenWrt-specific source patch.
2026-05-26 10:39:21 +09:00
Mounir IDRASSI 3c771c07fc Windows: set version to 1.26.28.1 and update signed Windows drivers 2026-05-26 10:10:11 +09:00
Mounir IDRASSI a173a11cfe Linux: parallelize header KDF autodetection
Extend the Unix encryption thread pool to run key-derivation work items and use it when mounting volumes without an explicitly selected KDF. This brings Linux/macOS header PRF autodetection closer to the Windows path while keeping selected-KDF mounts unchanged.

Fixes #1610.
2026-05-25 21:54:14 +09:00
Mounir IDRASSI 66ddd29c91 Windows: report missing EFI boot loader clearly
When preparing UEFI system encryption, check for the standard Windows bootmgfw.efi path before reading it. If it is absent, show the existing VeraCrypt diagnostic instead of surfacing a generic file-not-found error from the elevated COM path.
2026-05-25 17:06:10 +09:00
Mounir IDRASSI 0d86b9b3e6 Document system favorite VHD startup limitation
Clarify that Windows startup-managed VHD/VHDX files, including Dev Drive backing images, cannot live on system favorite volumes because they are accessed before those volumes are mounted.

Document that native-boot VHD/VHDX files also cannot live on system favorite volumes and remain subject to the existing VeraCrypt pre-boot authentication limitation for operating systems installed within VHD/VHDX files.

Mention a delayed/retrying attach workaround for non-boot-critical VHD/VHDX files after VeraCryptSystemFavorites mounts the host volume.

Closes #1605.
2026-05-25 16:25:48 +09:00
Mounir IDRASSI 5bd9277970 Windows: fix MSI Start Menu folder upgrades
Use a stable VeraCrypt Start Menu folder for MSI installs instead of deriving it from the versioned product name. Refresh the shortcut component identities for the new folder location and add upgrade-time cleanup for old versioned VeraCrypt Start Menu folders while preserving folders that contain non-VeraCrypt content.

Fixes #1631.
2026-05-25 04:50:49 +09:00
Mounir IDRASSI 854f85f013 Linux: fix language loading when running as AppImage
Fixes #1624

The language file path was hardcoded to /usr/share/veracrypt/languages/
which doesn't exist inside an AppImage runtime. Language files are
actually located under $APPDIR/usr/share/veracrypt/languages/ when
running from an AppImage.

This affected both the language file loading in Resources.cpp and the
language enumeration in PreferencesDialog.cpp, causing the language
selection to show only "System default" and "English" regardless of
which translations were packaged in the AppImage.
2026-05-24 21:47:11 +09:00
Mounir IDRASSI fc2efd0b8f Linux: suppress redundant already-running dialog
When a second GUI process successfully notifies the running instance through the show-request FIFO, the handoff is not an error. Avoid showing the informational modal before exiting, and let the running instance restore the main window on any show request.

Also initialize the GTK indicator menu item pointers to NULL and guard the show/hide label update, preventing a latent crash in SetBackgroundMode when the indicator menu has not been built (e.g. background task disabled in preferences) -- a path made more reachable by the FIFO timer now invoking SetBackgroundMode unconditionally on incoming show requests.

Fixes #1447.

Closes #1745.

Refs #461.
2026-05-22 23:45:04 +09:00
Mounir IDRASSI d1f73ce429 Windows driver: queue volume flushes as ordered barriers
Route IRP_MJ_FLUSH_BUFFERS through EncryptedIoQueue for mounted writable non-system volumes. Flushes are represented as zero-length queue items handled by the I/O thread, so ZwFlushBuffersFile runs after earlier encrypted write fragments before completing to the caller.

Also perform a best-effort ZwFlushBuffersFile before closing writable mounted-volume host handles, after the encrypted I/O queue has drained, so clean dismount/shutdown paths push the host file or raw device before close.

This keeps the change focused on ordinary mounted-volume flush ordering and avoids system-encryption, boot-drive, and header-update paths.
2026-05-22 18:29:14 +09:00
Mounir IDRASSI 79bee911be Linux/macOS: enable quick format for file containers
Allow normal file-hosted containers to use quick format in the Unix volume creation path by sizing the host file with ftruncate before backup headers are written.

Enable the GUI checkbox for normal file containers and honor --quick in text mode. Update the Unix HTML documentation for the weaker deniability properties of sparse or unwritten host regions.
2026-05-22 10:46:30 +09:00
Mounir IDRASSI 1fd2fb06cd Build: avoid awk warning in version extraction 2026-05-21 23:43:49 +09:00
Mounir IDRASSI c3ce2db9ac Document fixed Argon2id header key size
Argon2id includes the requested output length in its computation, so deriving 192 bytes and using a prefix is not equivalent to deriving only the selected cipher's key material length. This differs from PBKDF2, where the prefix property made this detail invisible.

VeraCrypt derives the maximum header key material currently needed by the supported cipher/cascade set, which is 192 bytes, and then uses the required prefix for the selected encryption algorithm. For AES-XTS this means the first 64 bytes of the 192-byte Argon2id output are used.

Make this design rule explicit in code and documentation by introducing ARGON2_HEADER_KEYDATA_SIZE instead of relying implicitly on GetMaxPkcs5OutSize. If a future cipher or cascade requires more than 192 bytes, that must be handled as an explicit format/design change.

Document the 192-byte Argon2id header KDF output requirement so third-party implementations derive the same header key material.

References: https://github.com/veracrypt/VeraCrypt/issues/1614
2026-05-21 18:10:06 +09:00
Mr-UpdateandGitHub c4acb6a0be Update Language.de.xml (#1742)
* Update Language.de.xml

- Translation completed

* Update Language.de.xml
2026-05-21 08:27:49 +09:00
Mounir IDRASSI b97b0f2c06 macOS: fix TC_VERSION extraction in makefiles 2026-05-20 08:38:42 +02:00
Mounir IDRASSI 21f773cd6d docs: fix Argon2id default PIM 2026-05-20 14:33:06 +09:00
Mounir IDRASSI aaffec8b5c Windows: support new Microsoft EFI CA bootloaders
Embed both Microsoft UEFI CA 2011 and 2023 signed DCS EFI sets and select the 2023 set only when the firmware db trusts the required 2023 third-party CAs.

Fall back to the 2011 EFI set when firmware db state cannot be determined, preserving pre-existing compatibility behavior and recording the reason in HKLM diagnostics.

Refresh installed ESP modules during PostOOBE repair, keep backups before replacing existing DCS modules, and use the selected EFI set when creating rescue media.

Record the selected EFI bootloader resource set and selection reason in HKLM, allow larger firmware db variables on systems with many Secure Boot certificates, and remove diagnostic registry keys on uninstall.

Fix MSI SetupDLL COM typelib version constants so unregister targets the current Main and Format COM typelib versions.

References: https://github.com/veracrypt/VeraCrypt/issues/1655
2026-05-20 14:07:47 +09:00
Mounir IDRASSI 4f71883ac1 Windows: Add new signed EFI bootloader files (2011CA and 2023CA) 2026-05-20 14:05:27 +09:00
Mounir IDRASSIandGitHub 964ecde6a1 Linux: add Arch package build support (#1740) 2026-05-20 09:38:38 +09:00
Thomas De RockerandGitHub 86082f3bf5 Update Language.nl.xml (#1741) 2026-05-19 18:33:06 +09:00
Marius KjærstadandGitHub 1f256ae3f2 Update to Norwegian Bokmål translation (#1738)
* Update to Norwegian Bokmål translation

* Issues found by Idrassi
2026-05-19 13:25:03 +09:00
MatthaiksandGitHub 8282f17745 Update Polish translation (#1737)
* Update Polish translation

* Update Polish translation
2026-05-19 08:11:58 +09:00
Mounir IDRASSI dec2bd882f Linux/macOS: suppress wxWidgets sizer consistency checks 2026-05-19 07:52:14 +09:00
thuraskandGitHub a93e5d4214 Update FUSE package version for Debian and Ubuntu (#1736)
libfuse3-3 dropped in Debian 13/Ubuntu 25.10, replaced with libfuse3-4
2026-05-19 07:10:59 +09:00
Mounir IDRASSI 6bef9e009c Linux: refine in-kernel NTFS driver selection
Keep the NTFS kernel-driver option as a generic in-kernel NTFS path rather than an ntfs3-specific path. Add --filesystem=kernel-ntfs and -m kernelntfs routes that select a registered or loadable kernel NTFS driver and mount with -i so mount.ntfs/ntfs-3g helpers are not invoked.

Preserve --filesystem=ntfs3 as a literal pin to the ntfs3 driver. Treat both ntfs3 and kernel-ntfs as mount-only selectors; volume creation continues to use filesystem type NTFS.

The preference and -m kernelntfs path only select an in-kernel NTFS driver when no explicit filesystem type was supplied and blkid detects NTFS.

Treat ntfs as the preferred in-kernel driver on Linux 7.1 and later, where the upstream read/write driver is expected. On earlier kernels, select ntfs only when module metadata identifies the standalone read/write driver and /sys/module confirms it loaded, avoiding ntfs3 read-only ntfs compatibility registrations. Fall back to ntfs3 otherwise, and report a generic kernel-driver error if neither supported driver is available or loadable.

Rename the internal preference/config field to MountNtfsWithKernelDriver, migrate the old MountNtfsWithNtfs3 preference key, and update UI strings, CLI help, documentation, release notes, and translation placeholders accordingly.

Reference: https://github.com/veracrypt/VeraCrypt/issues/1735
2026-05-18 22:19:23 +09:00
9535e65bd8 Ensure reproducible builds on Linux (#1731)
* ensure reproducible builds

* improve patch

* improve patch

* Narrow reproducibility scope to legacy and DEB

Keep the verified Linux legacy Makefile and DEB reproducibility paths, but remove the unverified RPM/openSUSE timestamp changes and AppImage reproducibility behavior from this PR.

The CPack mtime/mode clamp is now installed only for Debian/Ubuntu packaging, matching the scope covered by the provided reproducibility logs.

Retain umask 022 in the RPM/openSUSE wrappers so staged package permissions do not depend on a restrictive caller umask.

* Harden reproducible build cleanup

Validate SOURCE_DATE_EPOCH before interpolating it into Make, CMake or shell packaging paths.

Refuse live DESTDIR values in the CPack mtime clamp and pass makeself options through normal argv construction instead of eval.

---------

Co-authored-by: curious-rabbit <curious-rabbit@local>
Co-authored-by: Mounir IDRASSI <mounir.idrassi@amcrypto.jp>
2026-05-18 20:54:13 +09:00
Mounir IDRASSI 8b1c668b77 Linux: Fix PreferencesDialog build with GCC 4.4
Replace the Linux ntfs3 help icon paint lambda with a small wxWindow
subclass and regular paint event handler.

GCC 4.4, used on CentOS 6, builds with -std=c++0x but does not support
the lambda syntax used in PreferencesDialog.cpp, causing compilation to
fail at the ntfs3 help icon handler.

The drawing behavior is unchanged.
2026-05-17 13:52:45 +09:00
Mounir IDRASSI 80bce77cb9 Fix CMake 4 compatibility for Linux packaging
Keep the executable requirement at CMake 2.8.12 for legacy CentOS 6 package builders while using the version-range syntax to declare policy compatibility up to 3.10. Newer CMake versions use the policy maximum to avoid CMake 4 failures, and older CMake versions ignore the suffix and continue to configure as before.
2026-05-17 13:43:00 +09:00
Mounir IDRASSI 70922afe9b Remove bank transfer donation option 2026-05-16 21:52:58 +09:00
Mounir IDRASSI 46131086e1 Linux/FUSE: honor inodes and map unknown errors to EIO
Enable use_ino for Linux FUSE mounts so stable inode numbers returned by getattr and readdir are reported to userspace. For FUSE3, set fuse_config.use_ino from init; for FUSE2, pass -o use_ino because there is no fuse_config init hook.

Also map otherwise unhandled FUSE exceptions to EIO instead of EINTR, since these failures are not signal interruptions and should not encourage retry loops.
2026-05-16 17:38:56 +09:00
Mounir IDRASSI b82f2dd934 CI: skip cache cleanup on pull requests
Fork PR GITHUB_TOKENs cannot delete repository Actions caches, so run the cleanup only after trusted pushes to master.
2026-05-16 10:44:40 +09:00
Mounir IDRASSI cd101433c5 macOS: recover mounted volume mount points
Prefer hdiutil plist entities that carry a mount-point when recording the virtual device. This fixes APFS images where the first dev-entry is not the mounted volume.

Add a macOS mounted-volume refresh hook that recovers VirtualDevice and MountPoint from hdiutil info when FUSE-T SMB auxiliary metadata is missing or stale.
2026-05-15 15:35:28 +02:00
nkh0472andGitHub d4a237fbaf Update Language.zh-cn.xml (#1732)
* Update Language.zh-cn.xml

* Update Language.zh-cn.xml
2026-05-15 14:23:17 +09:00
Mounir IDRASSI 77e4830c99 macOS: run APFS formatter elevated
APFS volume creation can still fail with Permission denied after preparing the raw and block device aliases because newfs_apfs performs privileged APFS container and volume operations beyond opening the device nodes.

Route APFS formatting through the elevated CoreService path for non-root macOS runs. Keep the elevated interface narrow by sending only the target device and invoking user UID/GID, validate the device path on the privileged side, rebuild the formatter arguments there, and execute /sbin/newfs_apfs by absolute path to avoid PATH shadowing.

Pass -U/-G so the created filesystem preserves the invoking user ownership. Apply the same path to GUI and text-mode creation.
2026-05-15 13:52:21 +09:00
Thomas De RockerandGitHub 213dd2e74a Update Language.nl.xml (#1730)
* Update Language.nl.xml

* Update Language.nl.xml
2026-05-14 17:13:35 +09:00
PatriccolluandGitHub 22aec149de Update Corsican translation on 2026-05 (3rd) (#1728)
* Update Corsican translation on 2026-05 (3rd)

* Update Corsican translation on 2026-05 (3rd)
2026-05-14 09:19:26 +09:00
Mr-UpdateandGitHub efdfc4f273 Update Language.de.xml (#1727)
* Update Language.de.xml

- Translation completed

* Update Language.de.xml
2026-05-14 09:18:33 +09:00
571 changed files with 9636 additions and 5019 deletions
+1 -1
View File
@@ -188,7 +188,7 @@ jobs:
- name: Cleanup old caches
uses: actions/github-script@v6
if: always()
if: ${{ always() && github.event_name == 'push' && github.ref == 'refs/heads/master' }}
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
script: |
+19 -1
View File
@@ -4,6 +4,10 @@
# CLion
.idea/
# Python build/test artifacts
__pycache__/
*.py[cod]
# VC Linux build artifacts
*.o
*.o0
@@ -18,7 +22,14 @@ src/Main/veracrypt
*.ossse3
*.oshani
*.oaesni
*.oavx2
*.oarmv8crypto
src/Setup/Linux/packaging/
src/Setup/Linux/usr/
src/Setup/Linux/veracrypt.AppDir/usr/
src/Setup/Linux/veracrypt.AppDir/veracrypt.png
src/Setup/Linux/veracrypt_*.tar.gz
src/Setup/Linux/veracrypt-*-setup-*
# VC macOS build artifacts
src/Main/VeraCrypt
@@ -34,6 +45,13 @@ src/Setup/MacOSX/*.pkg
src/wxrelease
src/wxdebug
# Arch Linux package build artifacts
src/Build/Packaging/arch/pkg/
src/Build/Packaging/arch/src/
src/Build/Packaging/arch/PKGBUILD.release
src/Build/Packaging/arch/*.pkg.tar*
src/Build/Packaging/arch/*.log
src/.vs
src/Boot/Windows/obj
@@ -110,4 +128,4 @@ src/Setup/Release
src/Setup/PortableRelease
src/SetupDLL/Debug
src/SetupDLL/Release
src/SetupDLL/Release
+21 -2
View File
@@ -119,6 +119,16 @@ it is also available [online](https://veracrypt.jp/en/CompilingGuidelineLinux.ht
4. If successful, the VeraCrypt executable should be located in the directory
'Main'.
Reproducible build note: when `SOURCE_DATE_EPOCH` is not set, a build from a
git checkout uses the HEAD commit timestamp, while a build from a release
tarball uses the release date in `src/Common/Tcdefs.h` at 00:00 UTC. To
reproduce official release artifacts from a git checkout, set
`SOURCE_DATE_EPOCH` explicitly or build from the release tarball. Vendored
VeraCrypt sources tracked in another git checkout are treated the same way and
use that checkout's HEAD timestamp.
Both the generated `.deb` and `.rpm` packages are reproducible, including on older rpm (e.g. CentOS/RHEL 7) that lacks the `SOURCE_DATE_EPOCH`/`_buildhost` build macros.
By default, a universal executable supporting both graphical and text user
interface (through the switch --text) is built.
On Linux, a console-only executable, which requires no GUI library, can be
@@ -128,6 +138,15 @@ built using the 'NOGUI' parameter:
`$ make NOGUI=1 WXSTATIC=1`
## Arch Linux package build:
Arch Linux users can build and install a package from the current checkout with
makepkg:
`$ cd src/Build/Packaging/arch`
`$ makepkg -si`
On MacOSX, building a console-only executable is not supported.
## Mac OS X specifics:
@@ -208,10 +227,10 @@ https://veracrypt.io/ (mirror)
## Copyright Information
This software as a whole:
Copyright (c) 2025 AM Crypto. All rights reserved.
Copyright (c) 2026 AM Crypto. All rights reserved.
Portions of this software:
Copyright (c) 2025 AM Crypto. All rights reserved.
Copyright (c) 2026 AM Crypto. All rights reserved.
Copyright (c) 2013-2025 IDRIX. All rights reserved.
Copyright (c) 2003-2012 TrueCrypt Developers Association. All rights reserved.
Copyright (c) 1998-2000 Paul Le Roux. All rights reserved.
+5 -8
View File
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<VeraCrypt>
<localization prog-version="1.26.28">
<localization prog-version="1.26.29">
<language langid="ar" name="العربية" en-name="Arabic" version="0.2.0" translators="Ahmad Gharbeia, Khaled Hosny, Ali Khojah" />
<font lang="ar" class="normal" size="11" face="default" />
<font lang="ar" class="bold" size="13" face="Arial" />
@@ -181,7 +181,7 @@
<entry lang="ar" key="IDC_TRAVEL_OPEN_EXPLORER">‮افتح &amp;نافذة إكسبلورر للمجلدات الموصولة</entry>
<entry lang="ar" key="IDC_TRAV_CACHE_PASSWORDS">‮خزّن كلمات السرّ &amp;مؤقتا في ذاكرة المُشغِّل</entry>
<entry lang="ar" key="IDC_TRUECRYPT_MODE">TrueCrypt نمط</entry>
<entry lang="ar" key="IDC_UNMOUNTALL">ا&amp;فصل الكل</entry>
<entry lang="ar" key="IDC_UNMOUNTALL">افصل ال&amp;كل</entry>
<entry lang="ar" key="IDC_VOLUME_PROPERTIES">‮خ&amp;صائص المجلد…</entry>
<entry lang="ar" key="IDC_VOLUME_TOOLS">‮أ&amp;دوات المجلد…</entry>
<entry lang="ar" key="IDC_WIPE_CACHE">ا&amp;مح المخبئية</entry>
@@ -1517,10 +1517,6 @@
<entry lang="ar" key="LINUX_MOUNTET_HINT">نظام الملفات للجهاز المحدد مثبت حاليًا. يرجى إلغاء تركيب '{0}' قبل المتابعة.</entry>
<entry lang="ar" key="LINUX_HIDDEN_PASS_NO_DIFF">لا يمكن أن يكون للحجم المخفي نفس كلمة المرور و PIM وملفات المفاتيح للحجم الخارجي</entry>
<entry lang="ar" key="LINUX_NOT_FAT_HINT">يرجى ملاحظة أن الحجم لن يتم تنسيقه بنظام ملفات FAT، ولهذا السبب، قد تحتاج إلى تثبيت برامج تشغيل لنظام الملفات على منصات غير {0}، والتي ستمكنك من تركيب الحجم.</entry>
<entry lang="ar" key="LINUX_ERROR_SIZE_HIDDEN_VOL">خطأ: الحجم المخفي الذي سيتم إنشاؤه أكبر من {0} تيرابايت ({1} جيجابايت).\n\nالحلول الممكنة:\n- إنشاء حاوية / قسم أصغر من {0} تيرابايت.\n</entry>
<entry lang="ar" key="LINUX_MAX_SIZE_HINT">- استخدام محرك بأحجام قطاع 4096 بايت لتتمكن من إنشاء أحجام مخفية مستضافة على أقسام / أجهزة تصل إلى 16 تيرابايت</entry>
<entry lang="ar" key="LINUX_DOT_LF">.\n</entry>
<entry lang="ar" key="LINUX_NOT_SUPPORTED">(غير مدعوم بواسطة المكونات المتاحة على هذا النظام).\n</entry>
<entry lang="ar" key="LINUX_KERNEL_OLD">نظامك يستخدم إصدارًا قديمًا من نواة لينكس.\n\nنظرًا لخلل في نواة لينكس، قد يتوقف نظامك عن الاستجابة عند كتابة البيانات إلى حجم VeraCrypt. يمكن حل هذه المشكلة بترقية النواة إلى الإصدار 2.6.24 أو أحدث.</entry>
<entry lang="ar" key="LINUX_VOL_UNMOUNTED">تم إلغاء تركيب الحجم {0}.</entry>
<entry lang="ar" key="LINUX_VOL_MOUNTED">تم تركيب الحجم {0}.</entry>
@@ -1668,8 +1664,9 @@
<entry lang="en" key="PIM_ARGON2_LARGE_WARNING">You have chosen an Argon2 PIM value that is larger than VeraCrypt default value.\nPlease note that this can require more memory and lead to much slower mounting.</entry>
<entry lang="en" key="PIM_ARGON2_SMALL_WARNING">You have chosen an Argon2 PIM value that is smaller than the default VeraCrypt value. Please note that if your password is not strong enough, this could lead to weaker security.\n\nDo you confirm that you are using a strong password?</entry>
<entry lang="en" key="PIM_ARGON2_REQUIRE_LONG_PASSWORD">Password must contain 20 or more characters in order to use the specified Argon2 PIM.\nShorter passwords can only be used if the Argon2 PIM is 12 or greater.</entry>
<entry lang="en" key="LINUX_PREF_MOUNT_NTFS_WITH_NTFS3">Mount NTFS volumes with the Linux kernel ntfs3 driver</entry>
<entry lang="en" key="LINUX_PREF_MOUNT_NTFS_WITH_NTFS3_HELP">Linux only. When enabled, VeraCrypt probes the decrypted virtual device with blkid -p and mounts detected NTFS filesystems with ntfs3 instead of the default NTFS backend. If NTFS detection fails, VeraCrypt uses the normal automatic filesystem selection. If ntfs3 is unavailable or blocked by the distribution, mounting may fail. This opt-in option can avoid suspend or hibernate hangs caused by frozen user-space FUSE filesystems.</entry>
<entry lang="en" key="LINUX_PREF_MOUNT_NTFS_WITH_KERNEL_DRIVER">Mount NTFS volumes with an in-kernel Linux driver</entry>
<entry lang="en" key="LINUX_PREF_MOUNT_NTFS_WITH_KERNEL_DRIVER_HELP">Linux only. When enabled and no explicit filesystem type was supplied, VeraCrypt probes the decrypted virtual device with blkid -p and mounts detected NTFS filesystems with an available in-kernel NTFS driver, bypassing mount helpers such as ntfs-3g. VeraCrypt uses ntfs when it is positively identified as a modern read/write driver or expected on Linux 7.1 or later, and otherwise uses ntfs3. If NTFS detection fails, VeraCrypt uses the normal automatic filesystem selection. If no supported in-kernel NTFS driver is available or loadable, mounting fails. This opt-in option can avoid suspend or hibernate hangs caused by frozen user-space FUSE filesystems.</entry>
<entry lang="en" key="LINUX_KERNEL_NTFS_DRIVER_UNAVAILABLE">No supported in-kernel NTFS driver is available or loadable. To use the system default NTFS backend, disable the NTFS kernel-driver preference or do not request kernel NTFS explicitly.</entry>
<entry lang="en" key="LINUX_EMERGENCY_UNMOUNT_WARNING">Normal unmount of volume {0} failed. This can happen when applications still have files or directories open on the volume, or when the backing device was disconnected and the mount became stale.\n\nIf the device is still connected, choose No, close applications using the volume, and try unmounting again.\n\nIf the device was disconnected or the mount is stale, VeraCrypt can attempt emergency cleanup by lazy-detaching the filesystem and removing or scheduling removal of VeraCrypt kernel objects. Pending writes may have failed, data may be lost, and cleanup may remain pending until applications close open files. Check the filesystem with fsck or the appropriate repair tool before using it again.\n\nContinue?</entry>
<entry lang="en" key="LINUX_EMERGENCY_UNMOUNTED">Emergency cleanup for volume {0} has been initiated. If the volume was disconnected, the mount was stale, or there were pending writes, check the filesystem with fsck or the appropriate repair tool before using it again.</entry>
<entry lang="en" key="FORMAT_STAGE_WRITING_DATA">Creating volume data. Please wait.</entry>
+4 -7
View File
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<VeraCrypt>
<localization prog-version="1.26.28">
<localization prog-version="1.26.29">
<language langid="be" name="Беларуская" en-name="Belarusian" version="0.1.0" translators="Aleg Azarousky" />
<font lang="be" class="normal" size="11" face="default" />
<font lang="be" class="bold" size="13" face="Arial" />
@@ -1517,10 +1517,6 @@
<entry lang="en" key="LINUX_MOUNTET_HINT">The filesystem of the selected device is currently mounted. Please unmount '{0}' before proceeding.</entry>
<entry lang="en" key="LINUX_HIDDEN_PASS_NO_DIFF">The Hidden volume can't have the same password, PIM and keyfiles as the Outer volume</entry>
<entry lang="en" key="LINUX_NOT_FAT_HINT">Please note that the volume will not be formatted with a FAT filesystem and, therefore, you may be required to install additional filesystem drivers on platforms other than {0}, which will enable you to mount the volume.</entry>
<entry lang="en" key="LINUX_ERROR_SIZE_HIDDEN_VOL">Error: The hidden volume to be created is larger than {0} TB ({1} GB).\n\nPossible solutions:\n- Create a container/partition smaller than {0} TB.\n</entry>
<entry lang="en" key="LINUX_MAX_SIZE_HINT">- Use a drive with 4096-byte sectors to be able to create partition/device-hosted hidden volumes up to 16 TB in size</entry>
<entry lang="en" key="LINUX_DOT_LF">.\n</entry>
<entry lang="en" key="LINUX_NOT_SUPPORTED"> (not supported by components available on this platform).\n</entry>
<entry lang="en" key="LINUX_KERNEL_OLD">Your system uses an old version of the Linux kernel.\n\nDue to a bug in the Linux kernel, your system may stop responding when writing data to a VeraCrypt volume. This problem can be solved by upgrading the kernel to version 2.6.24 or later.</entry>
<entry lang="en" key="LINUX_VOL_UNMOUNTED">Volume {0} has been unmounted.</entry>
<entry lang="en" key="LINUX_VOL_MOUNTED">Volume {0} has been mounted.</entry>
@@ -1668,8 +1664,9 @@
<entry lang="en" key="PIM_ARGON2_LARGE_WARNING">You have chosen an Argon2 PIM value that is larger than VeraCrypt default value.\nPlease note that this can require more memory and lead to much slower mounting.</entry>
<entry lang="en" key="PIM_ARGON2_SMALL_WARNING">You have chosen an Argon2 PIM value that is smaller than the default VeraCrypt value. Please note that if your password is not strong enough, this could lead to weaker security.\n\nDo you confirm that you are using a strong password?</entry>
<entry lang="en" key="PIM_ARGON2_REQUIRE_LONG_PASSWORD">Password must contain 20 or more characters in order to use the specified Argon2 PIM.\nShorter passwords can only be used if the Argon2 PIM is 12 or greater.</entry>
<entry lang="en" key="LINUX_PREF_MOUNT_NTFS_WITH_NTFS3">Mount NTFS volumes with the Linux kernel ntfs3 driver</entry>
<entry lang="en" key="LINUX_PREF_MOUNT_NTFS_WITH_NTFS3_HELP">Linux only. When enabled, VeraCrypt probes the decrypted virtual device with blkid -p and mounts detected NTFS filesystems with ntfs3 instead of the default NTFS backend. If NTFS detection fails, VeraCrypt uses the normal automatic filesystem selection. If ntfs3 is unavailable or blocked by the distribution, mounting may fail. This opt-in option can avoid suspend or hibernate hangs caused by frozen user-space FUSE filesystems.</entry>
<entry lang="en" key="LINUX_PREF_MOUNT_NTFS_WITH_KERNEL_DRIVER">Mount NTFS volumes with an in-kernel Linux driver</entry>
<entry lang="en" key="LINUX_PREF_MOUNT_NTFS_WITH_KERNEL_DRIVER_HELP">Linux only. When enabled and no explicit filesystem type was supplied, VeraCrypt probes the decrypted virtual device with blkid -p and mounts detected NTFS filesystems with an available in-kernel NTFS driver, bypassing mount helpers such as ntfs-3g. VeraCrypt uses ntfs when it is positively identified as a modern read/write driver or expected on Linux 7.1 or later, and otherwise uses ntfs3. If NTFS detection fails, VeraCrypt uses the normal automatic filesystem selection. If no supported in-kernel NTFS driver is available or loadable, mounting fails. This opt-in option can avoid suspend or hibernate hangs caused by frozen user-space FUSE filesystems.</entry>
<entry lang="en" key="LINUX_KERNEL_NTFS_DRIVER_UNAVAILABLE">No supported in-kernel NTFS driver is available or loadable. To use the system default NTFS backend, disable the NTFS kernel-driver preference or do not request kernel NTFS explicitly.</entry>
<entry lang="en" key="LINUX_EMERGENCY_UNMOUNT_WARNING">Normal unmount of volume {0} failed. This can happen when applications still have files or directories open on the volume, or when the backing device was disconnected and the mount became stale.\n\nIf the device is still connected, choose No, close applications using the volume, and try unmounting again.\n\nIf the device was disconnected or the mount is stale, VeraCrypt can attempt emergency cleanup by lazy-detaching the filesystem and removing or scheduling removal of VeraCrypt kernel objects. Pending writes may have failed, data may be lost, and cleanup may remain pending until applications close open files. Check the filesystem with fsck or the appropriate repair tool before using it again.\n\nContinue?</entry>
<entry lang="en" key="LINUX_EMERGENCY_UNMOUNTED">Emergency cleanup for volume {0} has been initiated. If the volume was disconnected, the mount was stale, or there were pending writes, check the filesystem with fsck or the appropriate repair tool before using it again.</entry>
<entry lang="en" key="FORMAT_STAGE_WRITING_DATA">Creating volume data. Please wait.</entry>
+5 -8
View File
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<VeraCrypt>
<localization prog-version="1.26.28">
<localization prog-version="1.26.29">
<language langid="bg" name="Български" en-name="Bulgarian" version="0.1.0" translators="Lachezar Gorchev" />
<font lang="bg" class="normal" size="11" face="default" />
<font lang="bg" class="bold" size="13" face="Arial" />
@@ -181,7 +181,7 @@
<entry lang="bg" key="IDC_TRAVEL_OPEN_EXPLORER">Отваряне на &amp;Explorer прозорец за монтирания том</entry>
<entry lang="bg" key="IDC_TRAV_CACHE_PASSWORDS">&amp;Кеширане на паролата в паметта на драйвера</entry>
<entry lang="en" key="IDC_TRUECRYPT_MODE">&amp;TrueCrypt Mode</entry>
<entry lang="bg" key="IDC_UNMOUNTALL">&amp;Демонтиране - всички</entry>
<entry lang="bg" key="IDC_UNMOUNTALL">Демонтиране - &amp;всички</entry>
<entry lang="bg" key="IDC_VOLUME_PROPERTIES">&amp;Свойства на тома...</entry>
<entry lang="bg" key="IDC_VOLUME_TOOLS">&amp;Инструменти за том...</entry>
<entry lang="bg" key="IDC_WIPE_CACHE">&amp;Заличаване на кеша</entry>
@@ -1517,10 +1517,6 @@
<entry lang="en" key="LINUX_MOUNTET_HINT">The filesystem of the selected device is currently mounted. Please unmount '{0}' before proceeding.</entry>
<entry lang="en" key="LINUX_HIDDEN_PASS_NO_DIFF">The Hidden volume can't have the same password, PIM and keyfiles as the Outer volume</entry>
<entry lang="en" key="LINUX_NOT_FAT_HINT">Please note that the volume will not be formatted with a FAT filesystem and, therefore, you may be required to install additional filesystem drivers on platforms other than {0}, which will enable you to mount the volume.</entry>
<entry lang="en" key="LINUX_ERROR_SIZE_HIDDEN_VOL">Error: The hidden volume to be created is larger than {0} TB ({1} GB).\n\nPossible solutions:\n- Create a container/partition smaller than {0} TB.\n</entry>
<entry lang="en" key="LINUX_MAX_SIZE_HINT">- Use a drive with 4096-byte sectors to be able to create partition/device-hosted hidden volumes up to 16 TB in size</entry>
<entry lang="en" key="LINUX_DOT_LF">.\n</entry>
<entry lang="en" key="LINUX_NOT_SUPPORTED"> (not supported by components available on this platform).\n</entry>
<entry lang="en" key="LINUX_KERNEL_OLD">Your system uses an old version of the Linux kernel.\n\nDue to a bug in the Linux kernel, your system may stop responding when writing data to a VeraCrypt volume. This problem can be solved by upgrading the kernel to version 2.6.24 or later.</entry>
<entry lang="en" key="LINUX_VOL_UNMOUNTED">Volume {0} has been unmounted.</entry>
<entry lang="en" key="LINUX_VOL_MOUNTED">Volume {0} has been mounted.</entry>
@@ -1668,8 +1664,9 @@
<entry lang="en" key="PIM_ARGON2_LARGE_WARNING">You have chosen an Argon2 PIM value that is larger than VeraCrypt default value.\nPlease note that this can require more memory and lead to much slower mounting.</entry>
<entry lang="en" key="PIM_ARGON2_SMALL_WARNING">You have chosen an Argon2 PIM value that is smaller than the default VeraCrypt value. Please note that if your password is not strong enough, this could lead to weaker security.\n\nDo you confirm that you are using a strong password?</entry>
<entry lang="en" key="PIM_ARGON2_REQUIRE_LONG_PASSWORD">Password must contain 20 or more characters in order to use the specified Argon2 PIM.\nShorter passwords can only be used if the Argon2 PIM is 12 or greater.</entry>
<entry lang="en" key="LINUX_PREF_MOUNT_NTFS_WITH_NTFS3">Mount NTFS volumes with the Linux kernel ntfs3 driver</entry>
<entry lang="en" key="LINUX_PREF_MOUNT_NTFS_WITH_NTFS3_HELP">Linux only. When enabled, VeraCrypt probes the decrypted virtual device with blkid -p and mounts detected NTFS filesystems with ntfs3 instead of the default NTFS backend. If NTFS detection fails, VeraCrypt uses the normal automatic filesystem selection. If ntfs3 is unavailable or blocked by the distribution, mounting may fail. This opt-in option can avoid suspend or hibernate hangs caused by frozen user-space FUSE filesystems.</entry>
<entry lang="en" key="LINUX_PREF_MOUNT_NTFS_WITH_KERNEL_DRIVER">Mount NTFS volumes with an in-kernel Linux driver</entry>
<entry lang="en" key="LINUX_PREF_MOUNT_NTFS_WITH_KERNEL_DRIVER_HELP">Linux only. When enabled and no explicit filesystem type was supplied, VeraCrypt probes the decrypted virtual device with blkid -p and mounts detected NTFS filesystems with an available in-kernel NTFS driver, bypassing mount helpers such as ntfs-3g. VeraCrypt uses ntfs when it is positively identified as a modern read/write driver or expected on Linux 7.1 or later, and otherwise uses ntfs3. If NTFS detection fails, VeraCrypt uses the normal automatic filesystem selection. If no supported in-kernel NTFS driver is available or loadable, mounting fails. This opt-in option can avoid suspend or hibernate hangs caused by frozen user-space FUSE filesystems.</entry>
<entry lang="en" key="LINUX_KERNEL_NTFS_DRIVER_UNAVAILABLE">No supported in-kernel NTFS driver is available or loadable. To use the system default NTFS backend, disable the NTFS kernel-driver preference or do not request kernel NTFS explicitly.</entry>
<entry lang="en" key="LINUX_EMERGENCY_UNMOUNT_WARNING">Normal unmount of volume {0} failed. This can happen when applications still have files or directories open on the volume, or when the backing device was disconnected and the mount became stale.\n\nIf the device is still connected, choose No, close applications using the volume, and try unmounting again.\n\nIf the device was disconnected or the mount is stale, VeraCrypt can attempt emergency cleanup by lazy-detaching the filesystem and removing or scheduling removal of VeraCrypt kernel objects. Pending writes may have failed, data may be lost, and cleanup may remain pending until applications close open files. Check the filesystem with fsck or the appropriate repair tool before using it again.\n\nContinue?</entry>
<entry lang="en" key="LINUX_EMERGENCY_UNMOUNTED">Emergency cleanup for volume {0} has been initiated. If the volume was disconnected, the mount was stale, or there were pending writes, check the filesystem with fsck or the appropriate repair tool before using it again.</entry>
<entry lang="en" key="FORMAT_STAGE_WRITING_DATA">Creating volume data. Please wait.</entry>
+5 -8
View File
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<VeraCrypt>
<localization prog-version="1.26.28">
<localization prog-version="1.26.29">
<language langid="ca" name="Català" en-name="Catalan" version="0.1.0" translators="CESICAT, Centre de Seguretat de la Informació de Catalunya" />
<font lang="ca" class="normal" size="11" face="default" />
<font lang="ca" class="bold" size="13" face="Arial" />
@@ -181,7 +181,7 @@
<entry lang="ca" key="IDC_TRAVEL_OPEN_EXPLORER">Obrir una finestra de l'&amp;exporador pel volum muntat</entry>
<entry lang="ca" key="IDC_TRAV_CACHE_PASSWORDS">Guardar contrassenyes a la memòria del controlador</entry>
<entry lang="en" key="IDC_TRUECRYPT_MODE">&amp;TrueCrypt Mode</entry>
<entry lang="ca" key="IDC_UNMOUNTALL">&amp;Desmuntar-ho tot</entry>
<entry lang="ca" key="IDC_UNMOUNTALL">Desmuntar-ho t&amp;ot</entry>
<entry lang="ca" key="IDC_VOLUME_PROPERTIES">Propietats del &amp;volum...</entry>
<entry lang="ca" key="IDC_VOLUME_TOOLS">&amp;Eines de volum...</entry>
<entry lang="ca" key="IDC_WIPE_CACHE">&amp;Buidar la memòria cau</entry>
@@ -1517,10 +1517,6 @@
<entry lang="en" key="LINUX_MOUNTET_HINT">The filesystem of the selected device is currently mounted. Please unmount '{0}' before proceeding.</entry>
<entry lang="en" key="LINUX_HIDDEN_PASS_NO_DIFF">The Hidden volume can't have the same password, PIM and keyfiles as the Outer volume</entry>
<entry lang="en" key="LINUX_NOT_FAT_HINT">Please note that the volume will not be formatted with a FAT filesystem and, therefore, you may be required to install additional filesystem drivers on platforms other than {0}, which will enable you to mount the volume.</entry>
<entry lang="en" key="LINUX_ERROR_SIZE_HIDDEN_VOL">Error: The hidden volume to be created is larger than {0} TB ({1} GB).\n\nPossible solutions:\n- Create a container/partition smaller than {0} TB.\n</entry>
<entry lang="en" key="LINUX_MAX_SIZE_HINT">- Use a drive with 4096-byte sectors to be able to create partition/device-hosted hidden volumes up to 16 TB in size</entry>
<entry lang="en" key="LINUX_DOT_LF">.\n</entry>
<entry lang="en" key="LINUX_NOT_SUPPORTED"> (not supported by components available on this platform).\n</entry>
<entry lang="en" key="LINUX_KERNEL_OLD">Your system uses an old version of the Linux kernel.\n\nDue to a bug in the Linux kernel, your system may stop responding when writing data to a VeraCrypt volume. This problem can be solved by upgrading the kernel to version 2.6.24 or later.</entry>
<entry lang="en" key="LINUX_VOL_UNMOUNTED">Volume {0} has been unmounted.</entry>
<entry lang="en" key="LINUX_VOL_MOUNTED">Volume {0} has been mounted.</entry>
@@ -1668,8 +1664,9 @@
<entry lang="en" key="PIM_ARGON2_LARGE_WARNING">You have chosen an Argon2 PIM value that is larger than VeraCrypt default value.\nPlease note that this can require more memory and lead to much slower mounting.</entry>
<entry lang="en" key="PIM_ARGON2_SMALL_WARNING">You have chosen an Argon2 PIM value that is smaller than the default VeraCrypt value. Please note that if your password is not strong enough, this could lead to weaker security.\n\nDo you confirm that you are using a strong password?</entry>
<entry lang="en" key="PIM_ARGON2_REQUIRE_LONG_PASSWORD">Password must contain 20 or more characters in order to use the specified Argon2 PIM.\nShorter passwords can only be used if the Argon2 PIM is 12 or greater.</entry>
<entry lang="en" key="LINUX_PREF_MOUNT_NTFS_WITH_NTFS3">Mount NTFS volumes with the Linux kernel ntfs3 driver</entry>
<entry lang="en" key="LINUX_PREF_MOUNT_NTFS_WITH_NTFS3_HELP">Linux only. When enabled, VeraCrypt probes the decrypted virtual device with blkid -p and mounts detected NTFS filesystems with ntfs3 instead of the default NTFS backend. If NTFS detection fails, VeraCrypt uses the normal automatic filesystem selection. If ntfs3 is unavailable or blocked by the distribution, mounting may fail. This opt-in option can avoid suspend or hibernate hangs caused by frozen user-space FUSE filesystems.</entry>
<entry lang="en" key="LINUX_PREF_MOUNT_NTFS_WITH_KERNEL_DRIVER">Mount NTFS volumes with an in-kernel Linux driver</entry>
<entry lang="en" key="LINUX_PREF_MOUNT_NTFS_WITH_KERNEL_DRIVER_HELP">Linux only. When enabled and no explicit filesystem type was supplied, VeraCrypt probes the decrypted virtual device with blkid -p and mounts detected NTFS filesystems with an available in-kernel NTFS driver, bypassing mount helpers such as ntfs-3g. VeraCrypt uses ntfs when it is positively identified as a modern read/write driver or expected on Linux 7.1 or later, and otherwise uses ntfs3. If NTFS detection fails, VeraCrypt uses the normal automatic filesystem selection. If no supported in-kernel NTFS driver is available or loadable, mounting fails. This opt-in option can avoid suspend or hibernate hangs caused by frozen user-space FUSE filesystems.</entry>
<entry lang="en" key="LINUX_KERNEL_NTFS_DRIVER_UNAVAILABLE">No supported in-kernel NTFS driver is available or loadable. To use the system default NTFS backend, disable the NTFS kernel-driver preference or do not request kernel NTFS explicitly.</entry>
<entry lang="en" key="LINUX_EMERGENCY_UNMOUNT_WARNING">Normal unmount of volume {0} failed. This can happen when applications still have files or directories open on the volume, or when the backing device was disconnected and the mount became stale.\n\nIf the device is still connected, choose No, close applications using the volume, and try unmounting again.\n\nIf the device was disconnected or the mount is stale, VeraCrypt can attempt emergency cleanup by lazy-detaching the filesystem and removing or scheduling removal of VeraCrypt kernel objects. Pending writes may have failed, data may be lost, and cleanup may remain pending until applications close open files. Check the filesystem with fsck or the appropriate repair tool before using it again.\n\nContinue?</entry>
<entry lang="en" key="LINUX_EMERGENCY_UNMOUNTED">Emergency cleanup for volume {0} has been initiated. If the volume was disconnected, the mount was stale, or there were pending writes, check the filesystem with fsck or the appropriate repair tool before using it again.</entry>
<entry lang="en" key="FORMAT_STAGE_WRITING_DATA">Creating volume data. Please wait.</entry>
+12 -14
View File
@@ -6,7 +6,8 @@ Information about Corsican localization:
https://github.com/veracrypt/VeraCrypt/blob/master/Translations/Language.co.xml
2. History of Corsican translation for VeraCrypt:
- Updated in 2026 by Patriccollu di Santa Maria è Sichè: May 2nd (1.26.28), May 9th (1.26.28)
- Updated in 2026 by Patriccollu di Santa Maria è Sichè: May 2nd (1.26.28), May 9th (1.26.28), May 13th (1.26.28),
May 27th (1.26.28)
- Updated in 2025 by Patriccollu di Santa Maria è Sichè: May 5th (1.26.21), May 25th (1.26.24), June 26th (1.26.27),
Aug. 31st (1.26.27), Sep. 27th (1.26.27)
- Updated in 2024 by Patriccollu di Santa Maria è Sichè: Aug. 2nd (1.26.13), Aug. 10th (1.26.13)
@@ -21,8 +22,8 @@ Information about Corsican localization:
https://github.com/Patriccollu/Lingua_Corsa-Infurmatica/blob/ceppu/Prughjetti/VeraCrypt/Traduzzione.md
-->
<VeraCrypt>
<localization prog-version="1.26.28">
<language langid="co" name="Corsu" en-name="Corsican" version="1.5.3" translators="Patriccollu di Santa Maria è Sichè"/>
<localization prog-version="1.26.29">
<language langid="co" name="Corsu" en-name="Corsican" version="1.5.5" translators="Patriccollu di Santa Maria è Sichè"/>
<font lang="co" class="normal" size="11" face="default"/>
<font lang="co" class="bold" size="13" face="Arial"/>
<font lang="co" class="fixed" size="12" face="Lucida Console"/>
@@ -1538,10 +1539,6 @@ Information about Corsican localization:
<entry lang="co" key="LINUX_MOUNTET_HINT">U sistema di schedarii di lapparechju selezziunatu hè attualmente muntatu. Smuntate « {0} » prima di cuntinuà.</entry>
<entry lang="co" key="LINUX_HIDDEN_PASS_NO_DIFF">U vulume piattatu ùn pò micca avè i listessi parolla dintesa, PIM è schedarii chjave chè u vulume esternu</entry>
<entry lang="co" key="LINUX_NOT_FAT_HINT">Sappiate chì u vulume ùn serà micca messu à u furmatu cù un sistema di schedarii FAT è, in cunsequenza, puderia esse bisognu à installà piloti addiziunale di u sistema di schedarii nant’à piattaforme altre chè {0}, ciò chì vi permetterà di muntà u vulume.</entry>
<entry lang="co" key="LINUX_ERROR_SIZE_HIDDEN_VOL">Sbagliu : U vulume piattatu à creà hè più maiò chè {0} To ({1} Go).\n\nSuluzioni pussibule :\n- Creà un cuntenidore o una partizione più chjucu(a) chè {0} To.\n</entry>
<entry lang="co" key="LINUX_MAX_SIZE_HINT">- Impiegà un lettore cù settori di 4096 ottetti per pudè creà vulumi piattati ospitati in una partizione o in un apparechju duna dimensione sin’à 16 To</entry>
<entry lang="co" key="LINUX_DOT_LF">.\n</entry>
<entry lang="co" key="LINUX_NOT_SUPPORTED">(micca accettatu da i cumpunenti dispunibule nant’à sta piattaforma).\n</entry>
<entry lang="co" key="LINUX_KERNEL_OLD">U vostru sistema impiegheghja una vechja versione di u nocciulu Linux.\n\nPer via dun prublema in u nocciulu Linux, u vostru sistema puderia piantassi di risponde quandu si scrive i dati nant’à u vulume VeraCrypt. Stu prublema pò esse currettu mittendu à livellu u nocciulu à a versione 2.6.24 o più recente.</entry>
<entry lang="co" key="LINUX_VOL_UNMOUNTED">U vulume {0} hè statu smuntatu.</entry>
<entry lang="co" key="LINUX_VOL_MOUNTED">U vulume {0} hè statu muntatu.</entry>
@@ -1689,8 +1686,9 @@ Information about Corsican localization:
<entry lang="co" key="PIM_ARGON2_LARGE_WARNING">Avete sceltu un valore PIM Argon2 chì hè più maiò chè u valore predefinitu di VeraCrypt.\nSappiate chì què pò richiede più memoria è aumenterà a durata di muntatura.</entry>
<entry lang="co" key="PIM_ARGON2_SMALL_WARNING">Avete sceltu un valore PIM Argon2 più chjucu chè u valore predefinitu di VeraCrypt. Sappiate chì, s’è a vostra parolla dintesa ùn hè abbastanza forta, què pò riduce u livellu di sicurità.\n\nCunfirmate chì vò impiegate una parolla dintesa forta ?</entry>
<entry lang="co" key="PIM_ARGON2_REQUIRE_LONG_PASSWORD">A parolla dintesa deve cuntene omancu 20 caratteri per pudè impiegà u valore PIM Argon2 specificatu.\nE parolle dintesa più corte ponu solu esse impiegate s’è u PIM Argon2 hè uguale à 12 o superiore.</entry>
<entry lang="co" key="LINUX_PREF_MOUNT_NTFS_WITH_NTFS3">Muntà i vulumi NTFS cù u pilotu ntfs3 di u nocciulu Linux</entry>
<entry lang="co" key="LINUX_PREF_MOUNT_NTFS_WITH_NTFS3_HELP">Solu Linux. Quandu stozzione hè attivata, VeraCrypt esamineghja lapparechju virtuale dicifratu cù « blkid -p » è munta i sistemi di schedarii NTFS scuperti cù ntfs3 invece di u terminale NTFS predefinitu. S’è a scuperta NTFS ùn riesce, VeraCrypt impiegheghja a selezzione autumatica nurmale di sistema di schedarii. Sè ntfs3 hè indispunibule, o bluccatu da a distribuzione, a muntatura fiascà. Stozzione daccettazione pò evità i blucchime dinterruzzione o dinvernazione cagiunati da sistemi di schedarii FUSE cù spaziu dutilizatore senza risposta.</entry>
<entry lang="co" key="LINUX_PREF_MOUNT_NTFS_WITH_KERNEL_DRIVER">Muntà i vulumi NTFS cù un pilotu Linux integratu in u nocciulu </entry>
<entry lang="co" key="LINUX_PREF_MOUNT_NTFS_WITH_KERNEL_DRIVER_HELP">Solu Linux. Quandu stozzione hè attivata è chella ùn ci hè alcunu tipu di sistema di schedarii di pruvistu, VeraCrypt esamineghja lapparechju virtuale dicifratu cù « blkid -p » è munta i sistemi di schedarii NTFS scuperti cù un pilotu NTFS dispunibule integratu in u nocciulu, ignurendu laiuti di muntatura cum’è ntfs-3g. VeraCrypt impiegheghja ntfs quandellu hè identificatu veramente cum’è un pilotu mudernu di lettura è di scrittura o attesu nant’à Linux 7.1 o più recente, osinnò ellu impiegheghja ntfs3. S’è a scuperta NTFS ùn riesce, VeraCrypt impiegheghja a selezzione autumatica nurmale di sistema di schedarii. Sella ùn ci hè alcunu pilotu NTFS integratu in u nocciulu ricunnisciutu è dispunibule o s’è ùn si pò caricallu, a muntatura fiasca. Stozzione daccettazione pò evità i blucchime dinterruzzione o dinvernazione cagiunati da sistemi di schedarii FUSE cù spaziu dutilizatore senza risposta.</entry>
<entry lang="co" key="LINUX_KERNEL_NTFS_DRIVER_UNAVAILABLE">Ùn ci hè alcunu pilotu NTFS integratu in u nocciulu ricunnisciutu è dispunibule o ùn si pò caricallu. Per impiegà u terminale NTFS predefinitu da u sistema, disattivate a preferenza di u pilotu di nocciulu NTFS o ùn dumandate micca di manera esplicita u NTFS di nocciulu.</entry>
<entry lang="co" key="LINUX_EMERGENCY_UNMOUNT_WARNING">Fiascu di a smuntatura nurmale di u vulume {0}. Què pò accade quandu qualchì appiecazione hà sempre schedarii o cartulari aperti nant’à u vulume, o quandu lapparechju di salvaguardia hè statu discunnessu è chì a muntatura hè diventata instabile.\n\nS’è lapparechju hè sempre cunnessu, sceglie Nò, chjode lappiecazioni chì impieganu u vulume è pruvà torna à smuntallu.\n\nS’è lapparechju hè statu discunnessu o s’è a muntatura hè instabile, VeraCrypt pò fà un tentativu di nettata durgenza stacchendu u sistema di schedarii di manera attimpata è cacciendu - o pianificà a cacciatura di - loggetti di u nocciulu VeraCrypt. E scritture in attesa ponu esse fiascate, i dati ponu esse persi, è a nettata pò stà in attesa fin’à ciò chì lappiecazioni chjodinu i schedarii aperti. Verificà u sistema di schedarii cù « fsck » o cù lattrezzu di riparazione adequatu prima dimpiegallu torna.\n\nCuntinuà ?</entry>
<entry lang="co" key="LINUX_EMERGENCY_UNMOUNTED">A nettata durgenza per u vulume {0} hè stata lanciata. S’è u vulume hè statu discunnessu, o a muntatura era instabile, o ancu ci era scritture in attesa, verificà u sistema di schedarii cù « fsck » o cù lattrezzu di riparazione adequatu prima dimpiegallu torna.</entry>
<entry lang="co" key="FORMAT_STAGE_WRITING_DATA">Creazione di i dati di u vulume. Aspittate per piacè.</entry>
@@ -1703,11 +1701,11 @@ Information about Corsican localization:
<entry lang="co" key="FORMAT_STAGE_PREPARING_TEMP_DEVICE">Cumpiimentu di a creazione di u vulume : appruntata di lapparechju timpurariu.</entry>
<entry lang="co" key="FORMAT_STAGE_CREATING_FILESYSTEM">Cumpiimentu di a creazione di u vulume : creazione di u sistema di schedarii impieghendu {0}.</entry>
<entry lang="co" key="FORMAT_STAGE_DISMOUNTING_TEMP_VOLUME">Cumpiimentu di a creazione di u vulume : smuntatura di u vulume timpurariu.</entry>
<entry lang="en" key="MACOSX_APFS_SYNTHESIZED_DEVICE">The selected device '{0}' is an APFS synthesized container or volume and cannot be used as a raw VeraCrypt volume host.\n\nSelect the physical APFS store partition{1} instead.</entry>
<entry lang="en" key="MACOSX_DEVICE_SYSTEM_PARTITION">The selected device '{0}' is a macOS system/support partition and cannot be used as a VeraCrypt volume host.</entry>
<entry lang="en" key="MACOSX_APFS_SYSTEM_STORE">The selected APFS physical store '{0}' contains the currently mounted macOS system volume and cannot be used as a VeraCrypt volume host.</entry>
<entry lang="en" key="MACOSX_DEVICE_NOT_WRITABLE">macOS reports the selected device '{0}' as read-only. Select a writable physical partition or disk.</entry>
<entry lang="en" key="MACOSX_APFS_EROFS_HINT">macOS reported the selected device as read-only. If this is an APFS disk, make sure you selected the physical APFS store partition, not an APFS synthesized volume. Use Disk Utility or 'diskutil list' to identify the physical partition, then retry.</entry>
<entry lang="co" key="MACOSX_APFS_SYNTHESIZED_DEVICE">Lapparechju selezziunatu « {0} » hè un cuntenidore o un vulume APFS sintetizatu è ùn pò micca esse impiegatu cum’è un ospite di vulume VeraCrypt di basa.\n\nSelezziunate piuttostu a partizione{1} dallucamentu APFS fisica.</entry>
<entry lang="co" key="MACOSX_DEVICE_SYSTEM_PARTITION">Lapparechju selezziunatu « {0} » hè una partizione macOS di u sistema o dassistenza è ùn pò micca esse impiegata cum’è un ospite di vulume VeraCrypt.</entry>
<entry lang="co" key="MACOSX_APFS_SYSTEM_STORE">Lallucamentu fisicu APFS selezziunatu « {0} » cuntene u vulume di u sistema macOS muntatu attualmente è ùn pò micca esse impiegatu cum’è un ospite di vulume VeraCrypt.</entry>
<entry lang="co" key="MACOSX_DEVICE_NOT_WRITABLE">macOS signaleghja lapparechju selezziunatu « {0} » cum’è essendu in lettura sola. Selezziunate una partizione fisica o un discu induve si pò scrive.</entry>
<entry lang="co" key="MACOSX_APFS_EROFS_HINT">macOS hà signalatu lapparechju selezziunatu cum’è essendu in lettura sola. Sellu hè un discu APFS, assicuratevi chì ghjè a partizione dallucamentu APFS fisica chì hè selezziunata, è micca un vulume APFS sintetizatu. Impiegate lattrezzu di discu o « diskutil list » per identificà a partizione fisica eppò pruvate torna.</entry>
</localization>
<xs:schema attributeFormDefault="unqualified" elementFormDefault="qualified" xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:element name="VeraCrypt">
+46 -49
View File
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<VeraCrypt>
<localization prog-version="1.26.28">
<localization prog-version="1.26.29">
<language langid="cs" name="Čeština" en-name="Czech" version="1.3.0" translators="Vítek Moser, Lagardere" />
<font lang="cs" class="normal" size="11" face="default" />
<font lang="cs" class="bold" size="13" face="Arial" />
@@ -295,7 +295,7 @@
<entry lang="cs" key="IDT_NEW_KDF">KDF:</entry>
<entry lang="cs" key="IDT_PW_CACHE_OPTIONS">Mezipaměť pro hesla</entry>
<entry lang="cs" key="IDT_SECURITY_OPTIONS">Možnosti zabezpečení</entry>
<entry lang="en" key="IDT_EMV_OPTIONS">EMV Options</entry>
<entry lang="cs" key="IDT_EMV_OPTIONS">Možnosti EMV</entry>
<entry lang="cs" key="IDT_TASKBAR_ICON">VeraCrypt služba na pozadí</entry>
<entry lang="cs" key="IDT_TRAVELER_MOUNT">Svazek VeraCryptu, který chcete připojit (relativní ke kořenovému adresáři):</entry>
<entry lang="cs" key="IDT_TRAVEL_INSERTION">Po připojení přenosného disku:</entry>
@@ -390,7 +390,7 @@
<entry lang="cs" key="ADMINISTRATOR">Správce</entry>
<entry lang="cs" key="ADMIN_PRIVILEGES_DRIVER">Pro nahrání ovladače VeraCrypt musíte být přihlášeni jako správce systému.</entry>
<entry lang="cs" key="ADMIN_PRIVILEGES_WARN_DEVICES">Pro šifrování/formátování diskového oddílu/zařízení musíte být přihlášeni s oprávněním správce.\n\nTo se netýká svazků, které jsou vytvořeny ze souborů.</entry>
<entry lang="en" key="ADMIN_PRIVILEGES_WARN_MANAGE_VOLUME">Unable to activate fast file creation: Administrator privileges required.\nPlease relaunch the program as an Administrator to enable this feature.\n\nWould you like to proceed without fast file creation?</entry>
<entry lang="cs" key="ADMIN_PRIVILEGES_WARN_MANAGE_VOLUME">Nelze aktivovat rychlé vytvoření souboru: jsou vyžadována oprávnění správce.\nPro povolení této funkce spusťte program znovu jako správce.\n\nChcete pokračovat bez rychlého vytvoření souboru?</entry>
<entry lang="cs" key="ADMIN_PRIVILEGES_WARN_HIDVOL">Pro vytvoření skrytého svazku musíte být přihlášeni s oprávněním správce.\n\nPokračovat?</entry>
<entry lang="cs" key="ADMIN_PRIVILEGES_WARN_NTFS">Pro zformátování svazku systémem NTFS musíte být přihlášeni s oprávněním správce.\n\nBez oprávnění správce můžete svazek zformátovat systémem souborů FAT.</entry>
<entry lang="cs" key="AES_HELP">Šifra povolená FIPS (Rijndael, zveřejněno v roce 1998) kterou mohou používat úřady a agentury vlády Spojených států k ochraně utajovaných informací až k úrovni přísně tajné. 256-bitový klíč, 128-bitové bloky, 14 iterací (AES-256). Operační režim je XTS.</entry>
@@ -940,7 +940,7 @@
<entry lang="cs" key="ENTER_HEADER_BACKUP_PASSWORD">Zadejte heslo pro hlavičku uloženou v záložním souboru</entry>
<entry lang="cs" key="KEYFILE_CREATED">Souborový klíč byl úspěšně vytvořen.</entry>
<entry lang="cs" key="KEYFILE_INCORRECT_NUMBER">Počet poskytnutých souborových klíčů je neplatný.</entry>
<entry lang="en" key="KEYFILE_INCORRECT_SIZE">The keyfile size must be at least 64 bytes.</entry>
<entry lang="cs" key="KEYFILE_INCORRECT_SIZE">Velikost souborového klíče musí být alespoň 64 bajtů.</entry>
<entry lang="cs" key="KEYFILE_EMPTY_BASE_NAME">Prosím, zadejte název pro vygenerovaný souborový klíč</entry>
<entry lang="cs" key="KEYFILE_INVALID_BASE_NAME">Základní název souborového klíče je neplatný</entry>
<entry lang="cs" key="KEYFILE_ALREADY_EXISTS">Souborový klíč '%s' již existuje.\nPřejete si ho přepsat? Jeho vygenerování bude zastaveno, odpovíte-li „Ne”.</entry>
@@ -1517,13 +1517,9 @@
<entry lang="cs" key="LINUX_MOUNTET_HINT">Souborový systém vybraného zařízení je aktuálně připojen. Před pokračováním prosím odpojte '{0}'.</entry>
<entry lang="cs" key="LINUX_HIDDEN_PASS_NO_DIFF">Skrytý svazek nemůže mít stejné heslo, PIM a klíčové soubory jako vnější svazek</entry>
<entry lang="cs" key="LINUX_NOT_FAT_HINT">Upozorňujeme, že svazek nebude naformátován systémem souborů FAT, a proto může být nutné na jiných platformách než {0} nainstalovat další ovladače souborového systému, jenž umožní připojení svazku.</entry>
<entry lang="cs" key="LINUX_ERROR_SIZE_HIDDEN_VOL">Chyba: Skrytý svazek, který má být vytvořen, je větší než {0} TB ({1} GB).\n\nMožná řešení:\n Vytvořte kontejner/diskový oddíl menší než {0} TB.\n</entry>
<entry lang="cs" key="LINUX_MAX_SIZE_HINT">- Použijte disk s 4096bajtovými sektory, abyste mohli vytvářet skryté svazky s diskovými oddíly/zařízeními o velikosti až 16 TB.</entry>
<entry lang="cs" key="LINUX_DOT_LF">.\n</entry>
<entry lang="cs" key="LINUX_NOT_SUPPORTED"> (není podporováno komponentami dostupnými na této platformě).\n</entry>
<entry lang="cs" key="LINUX_KERNEL_OLD">Váš systém používá starou verzi linuxového jádra.\n\nV důsledku chyby v linuxovém jádře může systém přestat reagovat při zápisu dat na svazek VeraCryptu. Tento problém lze vyřešit aktualizací jádra na verzi 2.6.24 nebo novější.</entry>
<entry lang="cs" key="LINUX_VOL_UNMOUNTED">Svazek {0} byl odpojen.</entry>
<entry lang="en" key="LINUX_VOL_MOUNTED">Volume {0} has been mounted.</entry>
<entry lang="cs" key="LINUX_VOL_MOUNTED">Svazek {0} byl připojen.</entry>
<entry lang="cs" key="LINUX_OOM">Nedostatek paměti.</entry>
<entry lang="cs" key="LINUX_CANT_GET_ADMIN_PRIV">Nepodařilo se získat oprávnění správce systému</entry>
<entry lang="cs" key="LINUX_COMMAND_GET_ERROR">Příkaz {0} vrátil chybu {1}.</entry>
@@ -1647,46 +1643,47 @@
<entry lang="cs" key="IDC_DISABLE_SCREEN_PROTECTION">Zakázat ochranu proti snímkům obrazovky a záznamu obrazovky</entry>
<entry lang="cs" key="DISABLE_SCREEN_PROTECTION_WARNING">UPOZORNĚNÍ: Vypnutí ochrany obrazovky výrazně snižuje úroveň zabezpečení. Tuto možnost povolte POUZE v případě, že potřebujete konkrétně zachytit rozhraní VeraCryptu. Toto nastavení může vystavit citlivá data nástrojům pro snímání obrazovky a funkcím pro záznam obrazovky, jako je například Windows 11 Recall.</entry>
<entry lang="cs" key="MEMORY_COST">Paměťová náročnost</entry>
<entry lang="en" key="IDT_KDF_ALGO">KDF Algorithm</entry>
<entry lang="en" key="IDD_PREFERENCES_TAB_GENERAL">General</entry>
<entry lang="en" key="IDD_PREFERENCES_TAB_ACTIONS">Actions</entry>
<entry lang="en" key="IDD_PREFERENCES_TAB_PASSWORD">Password</entry>
<entry lang="en" key="IDC_SECURE_DESKTOP_ENABLE_IME">Enable Input Method Editor (IME) in Secure Desktop</entry>
<entry lang="en" key="ENABLE_IME_IN_SECURE_DESKTOP_WARNING">WARNING: Enable this option only if you are encountering issues when selecting Keyfiles/Tokens under Secure Desktop.</entry>
<entry lang="en" key="ERR_KEY_DERIVATION_FAILED">Key derivation failed. This may be caused by insufficient memory or an interrupted operation.</entry>
<entry lang="en" key="EFI_MS_BOOT_LOADER_RESTORE_FAILED">The system partition/drive is already decrypted, but the EFI Microsoft boot loader path was not restored to the Windows Boot Manager. Only the EFI boot files need repair. Use the VeraCrypt Rescue Disk repair option, or boot Windows recovery media and run 'bcdboot W:\\Windows /s S: /f UEFI' after replacing W: with the Windows volume drive letter and S: with the EFI System Partition drive letter. Path:</entry>
<entry lang="en" key="EFI_FALLBACK_BOOT_LOADER_STILL_VERACRYPT">The system partition/drive is already decrypted, but the EFI fallback boot loader path still contains the VeraCrypt Boot Loader. Only the EFI boot files need repair. Use the VeraCrypt Rescue Disk repair option, or boot Windows recovery media and run 'bcdboot W:\\Windows /s S: /f UEFI' after replacing W: with the Windows volume drive letter and S: with the EFI System Partition drive letter. Path:</entry>
<entry lang="en" key="IDM_REPAIR_EFI_BOOT_LOADER">Repair EFI Boot Loader...</entry>
<entry lang="en" key="CONFIRM_REPAIR_EFI_BOOT_LOADER">VeraCrypt will restore the Windows EFI boot loader paths and remove VeraCrypt EFI boot entries and files.\n\nUse this only after the system partition/drive is fully decrypted and Windows can boot without system encryption.\n\nDo you want to continue?</entry>
<entry lang="en" key="EFI_BOOT_LOADER_FILE_READ_FAILED">The EFI boot loader file could not be read completely:</entry>
<entry lang="en" key="EFI_BOOT_LOADER_FILE_TOO_LARGE">The EFI boot loader file is unexpectedly large and was not inspected:</entry>
<entry lang="en" key="EFI_BOOT_LOADER_NVRAM_CLEANUP_FAILED">The system partition/drive is already decrypted and the EFI boot loader files were restored, but VeraCrypt could not remove one or more VeraCrypt firmware boot entries. The VeraCrypt EFI files were left in place so any remaining firmware entry still points to an existing loader. Retry as Administrator or remove the VeraCrypt boot entry from firmware setup after confirming Windows Boot Manager starts normally.</entry>
<entry lang="en" key="EFI_BOOT_LOADER_REPAIR_BLOCKED">The EFI boot loader cannot be repaired while system encryption or decryption is active or incomplete. Complete or resume the pending system encryption/decryption process before retrying.</entry>
<entry lang="en" key="EFI_BOOT_LOADER_REPAIR_NOT_APPLICABLE">This repair action is available only on systems booting in UEFI mode from a GPT system partition.</entry>
<entry lang="en" key="EFI_BOOT_LOADER_REPAIR_SUCCESS">The EFI boot loader has been repaired successfully.</entry>
<entry lang="en" key="PIM_ARGON2_HELP">PIM (Personal Iterations Multiplier) controls the memory and time costs used by Argon2id header key derivation as follows:\n Memory = min(64 MiB + ((PIM - 1) x 32 MiB), 1024 MiB)\n Iterations = 3 + ((PIM - 1) / 3) for PIM 31 or lower, then 13 + (PIM - 31)\n\nWhen left empty or set to 0, VeraCrypt will use the default Argon2 PIM (12), which uses 416 MiB of memory and 6 iterations.\n\nWhen the password is less than 20 characters, Argon2 PIM can't be smaller than 12 in order to maintain a minimal security level.\nWhen the password is 20 characters or more, Argon2 PIM can be set to any value.\n\nAn Argon2 PIM larger than 12 increases memory usage up to 1024 MiB and then increases iterations. This will lead to slower mounting. A small Argon2 PIM (less than 12) will lead to quicker mounting but it can reduce security if the password is not strong enough.</entry>
<entry lang="en" key="PIM_ARGON2_LARGE_WARNING">You have chosen an Argon2 PIM value that is larger than VeraCrypt default value.\nPlease note that this can require more memory and lead to much slower mounting.</entry>
<entry lang="en" key="PIM_ARGON2_SMALL_WARNING">You have chosen an Argon2 PIM value that is smaller than the default VeraCrypt value. Please note that if your password is not strong enough, this could lead to weaker security.\n\nDo you confirm that you are using a strong password?</entry>
<entry lang="en" key="PIM_ARGON2_REQUIRE_LONG_PASSWORD">Password must contain 20 or more characters in order to use the specified Argon2 PIM.\nShorter passwords can only be used if the Argon2 PIM is 12 or greater.</entry>
<entry lang="en" key="LINUX_PREF_MOUNT_NTFS_WITH_NTFS3">Mount NTFS volumes with the Linux kernel ntfs3 driver</entry>
<entry lang="en" key="LINUX_PREF_MOUNT_NTFS_WITH_NTFS3_HELP">Linux only. When enabled, VeraCrypt probes the decrypted virtual device with blkid -p and mounts detected NTFS filesystems with ntfs3 instead of the default NTFS backend. If NTFS detection fails, VeraCrypt uses the normal automatic filesystem selection. If ntfs3 is unavailable or blocked by the distribution, mounting may fail. This opt-in option can avoid suspend or hibernate hangs caused by frozen user-space FUSE filesystems.</entry>
<entry lang="en" key="LINUX_EMERGENCY_UNMOUNT_WARNING">Normal unmount of volume {0} failed. This can happen when applications still have files or directories open on the volume, or when the backing device was disconnected and the mount became stale.\n\nIf the device is still connected, choose No, close applications using the volume, and try unmounting again.\n\nIf the device was disconnected or the mount is stale, VeraCrypt can attempt emergency cleanup by lazy-detaching the filesystem and removing or scheduling removal of VeraCrypt kernel objects. Pending writes may have failed, data may be lost, and cleanup may remain pending until applications close open files. Check the filesystem with fsck or the appropriate repair tool before using it again.\n\nContinue?</entry>
<entry lang="en" key="LINUX_EMERGENCY_UNMOUNTED">Emergency cleanup for volume {0} has been initiated. If the volume was disconnected, the mount was stale, or there were pending writes, check the filesystem with fsck or the appropriate repair tool before using it again.</entry>
<entry lang="en" key="FORMAT_STAGE_WRITING_DATA">Creating volume data. Please wait.</entry>
<entry lang="en" key="FORMAT_STAGE_WRITING_BACKUP_HEADER">Finalizing volume creation: writing backup header.</entry>
<entry lang="en" key="FORMAT_STAGE_FLUSHING_DATA">Finalizing volume creation: flushing data to disk. This can take several minutes on large volumes or slow/USB storage.</entry>
<entry lang="en" key="FORMAT_STAGE_FINISHED">Finalizing volume creation.</entry>
<entry lang="en" key="FORMAT_STAGE_ABORTED">Volume creation has been aborted.</entry>
<entry lang="en" key="FORMAT_STAGE_ERROR">Volume creation failed.</entry>
<entry lang="en" key="FORMAT_STAGE_PREPARING_TEMP_VOLUME">Finalizing volume creation: mounting temporary volume.</entry>
<entry lang="en" key="FORMAT_STAGE_PREPARING_TEMP_DEVICE">Finalizing volume creation: preparing temporary device.</entry>
<entry lang="en" key="FORMAT_STAGE_CREATING_FILESYSTEM">Finalizing volume creation: creating filesystem using {0}.</entry>
<entry lang="en" key="FORMAT_STAGE_DISMOUNTING_TEMP_VOLUME">Finalizing volume creation: dismounting temporary volume.</entry>
<entry lang="en" key="MACOSX_APFS_SYNTHESIZED_DEVICE">The selected device '{0}' is an APFS synthesized container or volume and cannot be used as a raw VeraCrypt volume host.\n\nSelect the physical APFS store partition{1} instead.</entry>
<entry lang="en" key="MACOSX_DEVICE_SYSTEM_PARTITION">The selected device '{0}' is a macOS system/support partition and cannot be used as a VeraCrypt volume host.</entry>
<entry lang="en" key="MACOSX_APFS_SYSTEM_STORE">The selected APFS physical store '{0}' contains the currently mounted macOS system volume and cannot be used as a VeraCrypt volume host.</entry>
<entry lang="en" key="MACOSX_DEVICE_NOT_WRITABLE">macOS reports the selected device '{0}' as read-only. Select a writable physical partition or disk.</entry>
<entry lang="en" key="MACOSX_APFS_EROFS_HINT">macOS reported the selected device as read-only. If this is an APFS disk, make sure you selected the physical APFS store partition, not an APFS synthesized volume. Use Disk Utility or 'diskutil list' to identify the physical partition, then retry.</entry>
<entry lang="cs" key="IDT_KDF_ALGO">Algoritmus KDF</entry>
<entry lang="cs" key="IDD_PREFERENCES_TAB_GENERAL">Obecné</entry>
<entry lang="cs" key="IDD_PREFERENCES_TAB_ACTIONS">Akce</entry>
<entry lang="cs" key="IDD_PREFERENCES_TAB_PASSWORD">Heslo</entry>
<entry lang="cs" key="IDC_SECURE_DESKTOP_ENABLE_IME">Povolit editor vstupní metody (IME) na zabezpečené ploše</entry>
<entry lang="cs" key="ENABLE_IME_IN_SECURE_DESKTOP_WARNING">UPOZORNĚNÍ: tuto možnost povolte pouze v případě, že máte potíže při výběru souborových klíčů/tokenů na zabezpečené ploše.</entry>
<entry lang="cs" key="ERR_KEY_DERIVATION_FAILED">Odvození klíče se nezdařilo. Příčinou může být nedostatek paměti nebo přerušená operace.</entry>
<entry lang="cs" key="EFI_MS_BOOT_LOADER_RESTORE_FAILED">Systémový diskový oddíl/disk je již dešifrován, ale cesta k zavaděči EFI od Microsoftu nebyla obnovena do Správce zavaděče Windows. Je třeba opravit pouze spouštěcí soubory EFI. Použijte možnost opravy záchranného disku VeraCryptu, nebo spusťte médium pro obnovení Windows a spusťte příkaz 'bcdboot W:\\Windows /s S: /f UEFI' poté, co nahradíte W: písmenem jednotky svazku Windows a S: písmenem jednotky systémového diskového oddílu EFI. Cesta:</entry>
<entry lang="cs" key="EFI_FALLBACK_BOOT_LOADER_STILL_VERACRYPT">Systémový diskový oddíl/disk je již dešifrován, ale náhradní cesta zavaděče EFI stále obsahuje zavaděč VeraCryptu. Je třeba opravit pouze spouštěcí soubory EFI. Použijte možnost opravy záchranného disku VeraCryptu, nebo spusťte médium pro obnovení Windows a spusťte příkaz 'bcdboot W:\\Windows /s S: /f UEFI' poté, co nahradíte W: písmenem jednotky svazku Windows a S: písmenem jednotky systémového diskového oddílu EFI. Cesta:</entry>
<entry lang="cs" key="IDM_REPAIR_EFI_BOOT_LOADER">Opravit zavaděč EFI...</entry>
<entry lang="cs" key="CONFIRM_REPAIR_EFI_BOOT_LOADER">VeraCrypt obnoví cesty zavaděče EFI systému Windows a odstraní položky a soubory zavaděče EFI VeraCryptu.\n\nPoužijte tuto možnost pouze poté, co je systémový diskový oddíl/disk plně dešifrován a Windows lze spustit bez šifrování systému.\n\nChcete pokračovat?</entry>
<entry lang="cs" key="EFI_BOOT_LOADER_FILE_READ_FAILED">Soubor zavaděče EFI nebylo možné načíst úplně:</entry>
<entry lang="cs" key="EFI_BOOT_LOADER_FILE_TOO_LARGE">Soubor zavaděče EFI je neočekávaně velký a nebyl zkontrolován:</entry>
<entry lang="cs" key="EFI_BOOT_LOADER_NVRAM_CLEANUP_FAILED">Systémový diskový oddíl/disk je již dešifrován a soubory zavaděče EFI byly obnoveny, ale VeraCrypt nemohl odstranit jednu nebo více položek zavaděče VeraCryptu ve firmwaru. Soubory EFI VeraCryptu byly ponechány na místě, aby zbývající položky firmwaru stále odkazovaly na existující zavaděč. Zkuste to znovu jako správce nebo odstraňte položku zavaděče VeraCryptu z nastavení firmwaru poté, co ověříte, že se Správce zavaděče Windows spouští normálně.</entry>
<entry lang="cs" key="EFI_BOOT_LOADER_REPAIR_BLOCKED">Zavaděč EFI nelze opravit, dokud je šifrování nebo dešifrování systému aktivní či nedokončené. Dokončete nebo obnovte čekající proces šifrování/dešifrování systému a zkuste to znovu.</entry>
<entry lang="cs" key="EFI_BOOT_LOADER_REPAIR_NOT_APPLICABLE">Tato oprava je dostupná pouze na systémech, které se spouštějí v režimu UEFI ze systémového diskového oddílu GPT.</entry>
<entry lang="cs" key="EFI_BOOT_LOADER_REPAIR_SUCCESS">Zavaděč EFI byl úspěšně opraven.</entry>
<entry lang="cs" key="PIM_ARGON2_HELP">PIM (Personal Iterations Multiplier) reguluje paměťovou a časovou náročnost použitou při odvození klíče hlavičky pomocí Argon2id následovně:\n Paměť = min(64 MiB + ((PIM - 1) x 32 MiB), 1024 MiB)\n Iterace = 3 + ((PIM - 1) / 3) pro PIM 31 nebo nižší, poté 13 + (PIM - 31)\n\nZanecháte-li prázdné, nebo nastavíte 0, VeraCrypt použije výchozí Argon2 PIM (12), který používá 416 MiB paměti a 6 iterací.\n\nJe-li heslo kratší než 20 znaků, Argon2 PIM nesmí být menší než 12, aby byla zachována alespoň minimální úroveň zabezpečení.\nMá-li heslo minimálně 20 znaků, Argon2 PIM může obsahovat jakoukoliv hodnotu.\n\nHodnota Argon2 PIM větší než 12 zvyšuje využití paměti až na 1024 MiB a poté zvyšuje počet iterací. To povede k pomalejšímu připojení. Malá hodnota Argon2 PIM (menší než 12) povede k rychlejšímu připojení, ale může snížit zabezpečení, není-li heslo dostatečně silné.</entry>
<entry lang="cs" key="PIM_ARGON2_LARGE_WARNING">Byla vybrána hodnota Argon2 PIM, která je větší než výchozí hodnota VeraCryptu.\nUvědomte si, že to může vyžadovat více paměti a vést k výrazně pomalejšímu připojení.</entry>
<entry lang="cs" key="PIM_ARGON2_SMALL_WARNING">Byla vybrána hodnota Argon2 PIM, která je menší než výchozí hodnota VeraCryptu. Uvědomte si, že není-li vaše heslo dostatečně silné, může to vést ke slabšímu zabezpečení.\n\nPotvrzujete, že používáte silné heslo?</entry>
<entry lang="cs" key="PIM_ARGON2_REQUIRE_LONG_PASSWORD">Heslo musí obsahovat 20 nebo více znaků, aby bylo možné použít zadaný Argon2 PIM.\nKratší hesla lze použít pouze v případě, že Argon2 PIM je 12 nebo vyšší.</entry>
<entry lang="cs" key="LINUX_PREF_MOUNT_NTFS_WITH_KERNEL_DRIVER">Připojovat svazky NTFS pomocí ovladače v linuxovém jádře</entry>
<entry lang="cs" key="LINUX_PREF_MOUNT_NTFS_WITH_KERNEL_DRIVER_HELP">Pouze Linux. Je-li tato možnost povolena a nebyl zadán explicitní typ systému souborů, VeraCrypt prověří dešifrované virtuální zařízení pomocí blkid -p a připojí zjištěné systémy souborů NTFS pomocí dostupného ovladače NTFS v jádře, přičemž obejde pomocné nástroje pro připojení, jako je ntfs-3g. VeraCrypt použije ntfs, pokud je jednoznačně rozpoznán jako moderní ovladač pro čtení/zápis nebo očekáván v Linuxu 7.1 či novějším, jinak použije ntfs3. Pokud zjištění NTFS selže, VeraCrypt použije běžný automatický výběr systému souborů. Není-li podporovaný ovladač NTFS v jádře dostupný nebo ho nelze načíst, připojení selže. Tato volitelná možnost může zabránit zaseknutí při uspání nebo hibernaci způsobenému zamrzlými systémy souborů FUSE v uživatelském prostoru.</entry>
<entry lang="cs" key="LINUX_KERNEL_NTFS_DRIVER_UNAVAILABLE">Není dostupný žádný podporovaný ovladač NTFS v jádře nebo jej nelze načíst. Chcete-li použít výchozí systémovou podporu NTFS, zakažte nastavení ovladače NTFS v jádře nebo nepožadujte NTFS v jádře explicitně.</entry>
<entry lang="cs" key="LINUX_EMERGENCY_UNMOUNT_WARNING">Běžné odpojení svazku {0} selhalo. To se může stát, pokud aplikace mají na svazku stále otevřené soubory nebo adresáře, nebo pokud bylo hostitelské zařízení odpojeno a připojení je neplatné.\n\nJe-li zařízení stále připojeno, vyberte „Ne”, zavřete aplikace používající svazek a zkuste svazek odpojit znovu.\n\nBylo-li zařízení odpojeno nebo je připojení neplatné, VeraCrypt se může pokusit o nouzové vyčištění odpojením systému souborů metodou lazy a odstraněním objektů VeraCryptu v jádře nebo naplánováním jejich odstranění. Čekající zápisy mohly selhat, data mohla být ztracena a čištění může zůstat nedokončené, dokud aplikace nezavřou otevřené soubory. Před dalším použitím zkontrolujte systém souborů pomocí fsck nebo příslušného opravného nástroje.\n\nPokračovat?</entry>
<entry lang="cs" key="LINUX_EMERGENCY_UNMOUNTED">Bylo zahájeno nouzové vyčištění svazku {0}. Pokud bylo zařízení odpojeno, připojení bylo neplatné nebo existovaly čekající zápisy, před dalším použitím zkontrolujte systém souborů pomocí fsck nebo příslušného opravného nástroje.</entry>
<entry lang="cs" key="FORMAT_STAGE_WRITING_DATA">Vytváření dat svazku. Čekejte prosím.</entry>
<entry lang="cs" key="FORMAT_STAGE_WRITING_BACKUP_HEADER">Dokončování vytváření svazku: zápis záložní hlavičky.</entry>
<entry lang="cs" key="FORMAT_STAGE_FLUSHING_DATA">Dokončování vytváření svazku: zápis dat na disk. U velkých svazků nebo pomalých/USB úložišť to může trvat několik minut.</entry>
<entry lang="cs" key="FORMAT_STAGE_FINISHED">Dokončování vytváření svazku.</entry>
<entry lang="cs" key="FORMAT_STAGE_ABORTED">Vytváření svazku bylo přerušeno.</entry>
<entry lang="cs" key="FORMAT_STAGE_ERROR">Vytváření svazku selhalo.</entry>
<entry lang="cs" key="FORMAT_STAGE_PREPARING_TEMP_VOLUME">Dokončování vytváření svazku: připojení dočasného svazku.</entry>
<entry lang="cs" key="FORMAT_STAGE_PREPARING_TEMP_DEVICE">Dokončování vytváření svazku: příprava dočasného zařízení.</entry>
<entry lang="cs" key="FORMAT_STAGE_CREATING_FILESYSTEM">Dokončování vytváření svazku: vytváření systému souborů pomocí {0}.</entry>
<entry lang="cs" key="FORMAT_STAGE_DISMOUNTING_TEMP_VOLUME">Dokončování vytváření svazku: odpojení dočasného svazku.</entry>
<entry lang="cs" key="MACOSX_APFS_SYNTHESIZED_DEVICE">Vybrané zařízení '{0}' je syntetizovaný kontejner nebo svazek APFS a nelze jej použít jako hostitele pro raw svazek VeraCryptu.\n\nMísto toho vyberte fyzický diskový oddíl úložiště APFS{1}.</entry>
<entry lang="cs" key="MACOSX_DEVICE_SYSTEM_PARTITION">Vybrané zařízení '{0}' je systémový/podpůrný diskový oddíl macOS a nelze jej použít jako hostitele svazku VeraCryptu.</entry>
<entry lang="cs" key="MACOSX_APFS_SYSTEM_STORE">Vybrané fyzické úložiště APFS '{0}' obsahuje aktuálně připojený systémový svazek macOS a nelze jej použít jako hostitele svazku VeraCryptu.</entry>
<entry lang="cs" key="MACOSX_DEVICE_NOT_WRITABLE">macOS hlásí vybrané zařízení '{0}' jako pouze pro čtení. Vyberte zapisovatelný fyzický diskový oddíl nebo disk.</entry>
<entry lang="cs" key="MACOSX_APFS_EROFS_HINT">macOS oznámil, že vybrané zařízení je pouze pro čtení. Jde-li o disk APFS, ujistěte se, že jste vybrali fyzický diskový oddíl úložiště APFS, nikoli syntetizovaný svazek APFS. Pomocí Diskové utility nebo příkazu 'diskutil list' určete fyzický diskový oddíl a zkuste to znovu.</entry>
</localization>
<xs:schema attributeFormDefault="unqualified" elementFormDefault="qualified" xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:element name="VeraCrypt">
+4 -7
View File
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<VeraCrypt>
<localization prog-version="1.26.28">
<localization prog-version="1.26.29">
<language langid="da" name="Dansk" en-name="Danish" version="0.1.0" translators="Lasse Bond" />
<font lang="da" class="normal" size="11" face="default" />
<font lang="da" class="bold" size="13" face="Arial" />
@@ -1517,10 +1517,6 @@
<entry lang="en" key="LINUX_MOUNTET_HINT">The filesystem of the selected device is currently mounted. Please unmount '{0}' before proceeding.</entry>
<entry lang="en" key="LINUX_HIDDEN_PASS_NO_DIFF">The Hidden volume can't have the same password, PIM and keyfiles as the Outer volume</entry>
<entry lang="en" key="LINUX_NOT_FAT_HINT">Please note that the volume will not be formatted with a FAT filesystem and, therefore, you may be required to install additional filesystem drivers on platforms other than {0}, which will enable you to mount the volume.</entry>
<entry lang="en" key="LINUX_ERROR_SIZE_HIDDEN_VOL">Error: The hidden volume to be created is larger than {0} TB ({1} GB).\n\nPossible solutions:\n- Create a container/partition smaller than {0} TB.\n</entry>
<entry lang="en" key="LINUX_MAX_SIZE_HINT">- Use a drive with 4096-byte sectors to be able to create partition/device-hosted hidden volumes up to 16 TB in size</entry>
<entry lang="en" key="LINUX_DOT_LF">.\n</entry>
<entry lang="en" key="LINUX_NOT_SUPPORTED"> (not supported by components available on this platform).\n</entry>
<entry lang="en" key="LINUX_KERNEL_OLD">Your system uses an old version of the Linux kernel.\n\nDue to a bug in the Linux kernel, your system may stop responding when writing data to a VeraCrypt volume. This problem can be solved by upgrading the kernel to version 2.6.24 or later.</entry>
<entry lang="en" key="LINUX_VOL_UNMOUNTED">Volume {0} has been unmounted.</entry>
<entry lang="en" key="LINUX_VOL_MOUNTED">Volume {0} has been mounted.</entry>
@@ -1668,8 +1664,9 @@
<entry lang="en" key="PIM_ARGON2_LARGE_WARNING">You have chosen an Argon2 PIM value that is larger than VeraCrypt default value.\nPlease note that this can require more memory and lead to much slower mounting.</entry>
<entry lang="en" key="PIM_ARGON2_SMALL_WARNING">You have chosen an Argon2 PIM value that is smaller than the default VeraCrypt value. Please note that if your password is not strong enough, this could lead to weaker security.\n\nDo you confirm that you are using a strong password?</entry>
<entry lang="en" key="PIM_ARGON2_REQUIRE_LONG_PASSWORD">Password must contain 20 or more characters in order to use the specified Argon2 PIM.\nShorter passwords can only be used if the Argon2 PIM is 12 or greater.</entry>
<entry lang="en" key="LINUX_PREF_MOUNT_NTFS_WITH_NTFS3">Mount NTFS volumes with the Linux kernel ntfs3 driver</entry>
<entry lang="en" key="LINUX_PREF_MOUNT_NTFS_WITH_NTFS3_HELP">Linux only. When enabled, VeraCrypt probes the decrypted virtual device with blkid -p and mounts detected NTFS filesystems with ntfs3 instead of the default NTFS backend. If NTFS detection fails, VeraCrypt uses the normal automatic filesystem selection. If ntfs3 is unavailable or blocked by the distribution, mounting may fail. This opt-in option can avoid suspend or hibernate hangs caused by frozen user-space FUSE filesystems.</entry>
<entry lang="en" key="LINUX_PREF_MOUNT_NTFS_WITH_KERNEL_DRIVER">Mount NTFS volumes with an in-kernel Linux driver</entry>
<entry lang="en" key="LINUX_PREF_MOUNT_NTFS_WITH_KERNEL_DRIVER_HELP">Linux only. When enabled and no explicit filesystem type was supplied, VeraCrypt probes the decrypted virtual device with blkid -p and mounts detected NTFS filesystems with an available in-kernel NTFS driver, bypassing mount helpers such as ntfs-3g. VeraCrypt uses ntfs when it is positively identified as a modern read/write driver or expected on Linux 7.1 or later, and otherwise uses ntfs3. If NTFS detection fails, VeraCrypt uses the normal automatic filesystem selection. If no supported in-kernel NTFS driver is available or loadable, mounting fails. This opt-in option can avoid suspend or hibernate hangs caused by frozen user-space FUSE filesystems.</entry>
<entry lang="en" key="LINUX_KERNEL_NTFS_DRIVER_UNAVAILABLE">No supported in-kernel NTFS driver is available or loadable. To use the system default NTFS backend, disable the NTFS kernel-driver preference or do not request kernel NTFS explicitly.</entry>
<entry lang="en" key="LINUX_EMERGENCY_UNMOUNT_WARNING">Normal unmount of volume {0} failed. This can happen when applications still have files or directories open on the volume, or when the backing device was disconnected and the mount became stale.\n\nIf the device is still connected, choose No, close applications using the volume, and try unmounting again.\n\nIf the device was disconnected or the mount is stale, VeraCrypt can attempt emergency cleanup by lazy-detaching the filesystem and removing or scheduling removal of VeraCrypt kernel objects. Pending writes may have failed, data may be lost, and cleanup may remain pending until applications close open files. Check the filesystem with fsck or the appropriate repair tool before using it again.\n\nContinue?</entry>
<entry lang="en" key="LINUX_EMERGENCY_UNMOUNTED">Emergency cleanup for volume {0} has been initiated. If the volume was disconnected, the mount was stale, or there were pending writes, check the filesystem with fsck or the appropriate repair tool before using it again.</entry>
<entry lang="en" key="FORMAT_STAGE_WRITING_DATA">Creating volume data. Please wait.</entry>
+10 -13
View File
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<VeraCrypt>
<localization prog-version="1.26.28">
<localization prog-version="1.26.29">
<!-- Sprachen -->
<language langid="de" name="Deutsch" en-name="German" version="1.1.8" translators="Harry Haller, Alexander Schorg, Simon Frankenberger, David Arndt, H. Sauer, Dulla, Ettore Atalan, Matthias Kolja Miehl, Felix Reichmann, Bernhard Erdmann" />
<!-- Schriftarten -->
@@ -1520,10 +1520,6 @@
<entry lang="de" key="LINUX_MOUNTET_HINT">Das Dateisystem des gewählten Gerätes ist eingehängt. Bitte hängen Sie '{0}' aus, um fortzufahren.</entry>
<entry lang="de" key="LINUX_HIDDEN_PASS_NO_DIFF">Das versteckte Volume darf nicht zum äußeren Volume identische Schlüsseldateien, Passwörter und PIM haben.</entry>
<entry lang="de" key="LINUX_NOT_FAT_HINT">Bitte beachten Sie, dass das Volume nicht mit dem Dateisystem FAT formatiert wird. Deshalb kann die Installation eines Dateisystemtreibers auf anderen Plattformen als '{0}' notwendig sein, um das Volume einzuhängen.</entry>
<entry lang="de" key="LINUX_ERROR_SIZE_HIDDEN_VOL">FEHLER: Das zu erstellende versteckte Volume ist größer als {0} TB ({1} GB).\n\nMögliche Lösungen:\n- Erstellen Sie ein Volume/eine Partition kleiner als {0} TB.\n</entry>
<entry lang="de" key="LINUX_MAX_SIZE_HINT">- Verwenden Sie ein Laufwerk mit 4096-Byte-Sektoren, um versteckte Partitionen/Geräte mit bis zu 16 TB erstellen zu können</entry>
<entry lang="de" key="LINUX_DOT_LF">.\n</entry>
<entry lang="de" key="LINUX_NOT_SUPPORTED">(wird von den vorhandenen Komponenten dieser Plattform nicht unterstützt).</entry>
<entry lang="de" key="LINUX_KERNEL_OLD">Ihr System verwendet einen alten Linux-Kernel.\n\nWegen eines Fehlers im Linux-Kernel kann es passieren, dass Ihr System beim Schreiben auf ein VeraCrypt-Volume nicht mehr reagiert. Diese Problem kann durch einen Kernel in Version 2.6.24 oder neuer gelöst werden.</entry>
<entry lang="de" key="LINUX_VOL_UNMOUNTED">Volume {0} ausgehängt.</entry>
<entry lang="de" key="LINUX_VOL_MOUNTED">Volume {0} wurde eingehängt.</entry>
@@ -1671,11 +1667,12 @@
<entry lang="de" key="PIM_ARGON2_LARGE_WARNING">Sie haben einen Argon2-PIM-Wert gewählt, der größer ist als der Standardwert von VeraCrypt.\nBitte beachten Sie, dass dies mehr Arbeitsspeicher erfordern und zu einer deutlich langsameren Einbindung führen kann.</entry>
<entry lang="de" key="PIM_ARGON2_SMALL_WARNING">Sie haben einen Argon2-PIM-Wert gewählt, der kleiner als der Standardwert von VeraCrypt ist. Bitte beachten Sie, dass ein zu schwaches Passwort die Sicherheit beeinträchtigen kann.\n\nBestätigen Sie, dass Sie ein sicheres Passwort verwenden?</entry>
<entry lang="de" key="PIM_ARGON2_REQUIRE_LONG_PASSWORD">Das Passwort muss mindestens 20 Zeichen lang sein, damit der angegebene Argon2-PIM verwendet werden kann.\nKürzere Passwörter können nur verwendet werden, wenn der Argon2-PIM-Wert 12 oder größer ist.</entry>
<entry lang="de" key="LINUX_PREF_MOUNT_NTFS_WITH_NTFS3">NTFS-Volumes mit dem NTFS3-Treiber des Linux-Kernels einbinden</entry>
<entry lang="de" key="LINUX_PREF_MOUNT_NTFS_WITH_NTFS3_HELP">Nur Linux. Wenn diese Option aktiviert ist, überprüft VeraCrypt das entschlüsselte virtuelle Gerät mit 'blkid -p' und hängt erkannte NTFS-Dateisysteme mit 'ntfs3' anstelle des standardmäßigen NTFS-Backends ein. Wenn die NTFS-Erkennung fehlschlägt, verwendet VeraCrypt die normale automatische Dateisystemauswahl. Wenn 'ntfs3' nicht verfügbar ist oder von der Distribution blockiert wird, kann das Einbinden fehlschlagen. Diese Opt-in-Option kann Hänger beim Suspendieren oder im Ruhezustand vermeiden, die durch eingefrorene FUSE-Dateisysteme im Benutzerbereich verursacht werden.</entry>
<entry lang="de" key="LINUX_PREF_MOUNT_NTFS_WITH_KERNEL_DRIVER">NTFS-Volumes mit einem Linux-Kernel-Treiber einbinden</entry>
<entry lang="de" key="LINUX_PREF_MOUNT_NTFS_WITH_KERNEL_DRIVER_HELP">Nur Linux. Wenn diese Option aktiviert ist und kein expliziter Dateisystemtyp angegeben wurde, untersucht VeraCrypt das entschlüsselte virtuelle Gerät mit 'blkid -p' und hängt erkannte NTFS-Dateisysteme mit einem verfügbaren NTFS-Treiber im Kernel ein, wobei Einhängehelfer wie ntfs-3g umgangen werden. VeraCrypt verwendet ntfs, wenn dieser eindeutig als moderner Lese-/Schreibtreiber identifiziert wird oder ab Linux-Kernel 7.1 erwartet wird, anderenfalls wird ntfs3 verwendet. Wenn die NTFS-Erkennung fehlschlägt, verwendet VeraCrypt die normale automatische Dateisystemauswahl. Wenn kein unterstützter NTFS-Treiber im Kernel verfügbar oder ladbar ist, schlägt das Einhängen fehl. Diese aktivierbare Option kann Hänger beim Suspendieren oder im Ruhezustand vermeiden, die durch eingefrorene FUSE-Dateisysteme im Benutzerbereich verursacht werden.</entry>
<entry lang="de" key="LINUX_KERNEL_NTFS_DRIVER_UNAVAILABLE">Es ist kein unterstützter NTFS-Kerneltreiber verfügbar oder ladbar. Um das standardmäßige NTFS-Backend des Systems zu verwenden, deaktivieren Sie die Einstellung für den NTFS-Kerneltreiber oder fordern Sie den NTFS-Treiber im Kernel nicht explizit an.</entry>
<entry lang="de" key="LINUX_EMERGENCY_UNMOUNT_WARNING">Das normale Aushängen des Volumes {0} ist fehlgeschlagen. Dies kann passieren, wenn Anwendungen noch Dateien oder Verzeichnisse auf dem Volume geöffnet haben oder wenn das zugrunde liegende Gerät getrennt wurde und die Einbindung veraltet ist.\n\nWenn das Gerät noch angeschlossen ist, wählen Sie „Nein“, schließen Sie die Anwendungen, die das Volume verwenden, und versuchen Sie erneut, das Volume auszuhängen.\n\nWenn das Gerät getrennt wurde oder die Einbindung veraltet ist, kann VeraCrypt eine Notfallbereinigung versuchen, indem es das Dateisystem verzögert trennt und VeraCrypt-Kernelobjekte entfernt oder deren Entfernung plant. Ausstehende Schreibvorgänge sind möglicherweise fehlgeschlagen, Daten können verloren gegangen sein, und die Bereinigung bleibt möglicherweise ausstehend, bis Anwendungen geöffnete Dateien schließen. Überprüfen Sie das Dateisystem mit 'fsck' oder dem entsprechenden Reparaturtool, bevor Sie es wieder verwenden.\n\nWeiter?</entry>
<entry lang="de" key="LINUX_EMERGENCY_UNMOUNTED">Die Notfallbereinigung für das Volume {0} wurde gestartet. Falls das Volume getrennt wurde, die Einbindung veraltet war oder Schreibvorgänge ausstehend waren, überprüfen Sie das Dateisystem mit 'fsck' oder dem entsprechenden Reparaturtool, bevor Sie es erneut verwenden.</entry>
<entry lang="de" key="FORMAT_STAGE_WRITING_DATA">Volumendaten werden erstellt. Bitte warten.</entry>
<entry lang="de" key="FORMAT_STAGE_WRITING_DATA">Volume-Daten werden erstellt. Bitte warten.</entry>
<entry lang="de" key="FORMAT_STAGE_WRITING_BACKUP_HEADER">Abschluss der Volume-Erstellung: Schreiben der Kopfdatensicherung.</entry>
<entry lang="de" key="FORMAT_STAGE_FLUSHING_DATA">Abschluss der Volume-Erstellung: Daten werden auf die Festplatte geschrieben. Bei großen Volumes oder langsamen Speichergeräten bzw. USB-Speichern kann dies einige Minuten dauern.</entry>
<entry lang="de" key="FORMAT_STAGE_FINISHED">Die Erstellung des Volumes wird abgeschlossen.</entry>
@@ -1685,11 +1682,11 @@
<entry lang="de" key="FORMAT_STAGE_PREPARING_TEMP_DEVICE">Abschluss der Volume-Erstellung: Vorbereiten des temporären Geräts.</entry>
<entry lang="de" key="FORMAT_STAGE_CREATING_FILESYSTEM">Abschluss der Volume-Erstellung: Erstellen des Dateisystems mit {0}.</entry>
<entry lang="de" key="FORMAT_STAGE_DISMOUNTING_TEMP_VOLUME">Abschluss der Volume-Erstellung: Temporäres Volume wird ausgehängt.</entry>
<entry lang="en" key="MACOSX_APFS_SYNTHESIZED_DEVICE">The selected device '{0}' is an APFS synthesized container or volume and cannot be used as a raw VeraCrypt volume host.\n\nSelect the physical APFS store partition{1} instead.</entry>
<entry lang="en" key="MACOSX_DEVICE_SYSTEM_PARTITION">The selected device '{0}' is a macOS system/support partition and cannot be used as a VeraCrypt volume host.</entry>
<entry lang="en" key="MACOSX_APFS_SYSTEM_STORE">The selected APFS physical store '{0}' contains the currently mounted macOS system volume and cannot be used as a VeraCrypt volume host.</entry>
<entry lang="en" key="MACOSX_DEVICE_NOT_WRITABLE">macOS reports the selected device '{0}' as read-only. Select a writable physical partition or disk.</entry>
<entry lang="en" key="MACOSX_APFS_EROFS_HINT">macOS reported the selected device as read-only. If this is an APFS disk, make sure you selected the physical APFS store partition, not an APFS synthesized volume. Use Disk Utility or 'diskutil list' to identify the physical partition, then retry.</entry>
<entry lang="de" key="MACOSX_APFS_SYNTHESIZED_DEVICE">Das ausgewählte Gerät '{0}' ist ein synthetischer APFS-Container oder ein synthetisches APFS-Volume und kann nicht als Host für ein VeraCrypt-Raw-Volume verwendet werden.\n\nWählen Sie stattdessen die physische APFS-Speicherpartition{1} aus.</entry>
<entry lang="de" key="MACOSX_DEVICE_SYSTEM_PARTITION">Das ausgewählte Gerät '{0}' ist eine macOS-System-/Support-Partition und kann nicht als Host für ein VeraCrypt-Volume verwendet werden.</entry>
<entry lang="de" key="MACOSX_APFS_SYSTEM_STORE">Die ausgewählte physische APFS-Speicherpartition '{0}' enthält das derzeit eingebundene macOS-Systemvolume und kann nicht als VeraCrypt-Volume-Host verwendet werden.</entry>
<entry lang="de" key="MACOSX_DEVICE_NOT_WRITABLE">macOS meldet, dass das ausgewählte Gerät '{0}' schreibgeschützt ist. Wählen Sie eine beschreibbare physische Partition oder Festplatte aus.</entry>
<entry lang="de" key="MACOSX_APFS_EROFS_HINT">macOS hat das ausgewählte Gerät als schreibgeschützt gemeldet. Handelt es sich um eine APFS-Festplatte, stellen Sie sicher, dass Sie die physische APFS-Speicherpartition ausgewählt haben und nicht ein synthetisches APFS-Volume. Identifizieren Sie die physische Partition mit dem Festplatten-Dienstprogramm oder dem Befehl „diskutil list“ und versuchen Sie es dann erneut.</entry>
</localization>
<!-- XML-Schema -->
<xs:schema attributeFormDefault="unqualified" elementFormDefault="qualified" xmlns:xs="http://www.w3.org/2001/XMLSchema">
+4 -7
View File
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<VeraCrypt>
<localization prog-version="1.26.28">
<localization prog-version="1.26.29">
<language langid="el" name="Ελληνικά" en-name="Greek" version="0.1.0" translators="Βασίλης Κοσμίδης" />
<font lang="el" class="normal" size="11" face="default" />
<font lang="el" class="bold" size="13" face="Arial" />
@@ -1517,10 +1517,6 @@
<entry lang="en" key="LINUX_MOUNTET_HINT">The filesystem of the selected device is currently mounted. Please unmount '{0}' before proceeding.</entry>
<entry lang="en" key="LINUX_HIDDEN_PASS_NO_DIFF">The Hidden volume can't have the same password, PIM and keyfiles as the Outer volume</entry>
<entry lang="en" key="LINUX_NOT_FAT_HINT">Please note that the volume will not be formatted with a FAT filesystem and, therefore, you may be required to install additional filesystem drivers on platforms other than {0}, which will enable you to mount the volume.</entry>
<entry lang="en" key="LINUX_ERROR_SIZE_HIDDEN_VOL">Error: The hidden volume to be created is larger than {0} TB ({1} GB).\n\nPossible solutions:\n- Create a container/partition smaller than {0} TB.\n</entry>
<entry lang="en" key="LINUX_MAX_SIZE_HINT">- Use a drive with 4096-byte sectors to be able to create partition/device-hosted hidden volumes up to 16 TB in size</entry>
<entry lang="en" key="LINUX_DOT_LF">.\n</entry>
<entry lang="en" key="LINUX_NOT_SUPPORTED"> (not supported by components available on this platform).\n</entry>
<entry lang="en" key="LINUX_KERNEL_OLD">Your system uses an old version of the Linux kernel.\n\nDue to a bug in the Linux kernel, your system may stop responding when writing data to a VeraCrypt volume. This problem can be solved by upgrading the kernel to version 2.6.24 or later.</entry>
<entry lang="en" key="LINUX_VOL_UNMOUNTED">Volume {0} has been unmounted.</entry>
<entry lang="en" key="LINUX_VOL_MOUNTED">Volume {0} has been mounted.</entry>
@@ -1668,8 +1664,9 @@
<entry lang="en" key="PIM_ARGON2_LARGE_WARNING">You have chosen an Argon2 PIM value that is larger than VeraCrypt default value.\nPlease note that this can require more memory and lead to much slower mounting.</entry>
<entry lang="en" key="PIM_ARGON2_SMALL_WARNING">You have chosen an Argon2 PIM value that is smaller than the default VeraCrypt value. Please note that if your password is not strong enough, this could lead to weaker security.\n\nDo you confirm that you are using a strong password?</entry>
<entry lang="en" key="PIM_ARGON2_REQUIRE_LONG_PASSWORD">Password must contain 20 or more characters in order to use the specified Argon2 PIM.\nShorter passwords can only be used if the Argon2 PIM is 12 or greater.</entry>
<entry lang="en" key="LINUX_PREF_MOUNT_NTFS_WITH_NTFS3">Mount NTFS volumes with the Linux kernel ntfs3 driver</entry>
<entry lang="en" key="LINUX_PREF_MOUNT_NTFS_WITH_NTFS3_HELP">Linux only. When enabled, VeraCrypt probes the decrypted virtual device with blkid -p and mounts detected NTFS filesystems with ntfs3 instead of the default NTFS backend. If NTFS detection fails, VeraCrypt uses the normal automatic filesystem selection. If ntfs3 is unavailable or blocked by the distribution, mounting may fail. This opt-in option can avoid suspend or hibernate hangs caused by frozen user-space FUSE filesystems.</entry>
<entry lang="en" key="LINUX_PREF_MOUNT_NTFS_WITH_KERNEL_DRIVER">Mount NTFS volumes with an in-kernel Linux driver</entry>
<entry lang="en" key="LINUX_PREF_MOUNT_NTFS_WITH_KERNEL_DRIVER_HELP">Linux only. When enabled and no explicit filesystem type was supplied, VeraCrypt probes the decrypted virtual device with blkid -p and mounts detected NTFS filesystems with an available in-kernel NTFS driver, bypassing mount helpers such as ntfs-3g. VeraCrypt uses ntfs when it is positively identified as a modern read/write driver or expected on Linux 7.1 or later, and otherwise uses ntfs3. If NTFS detection fails, VeraCrypt uses the normal automatic filesystem selection. If no supported in-kernel NTFS driver is available or loadable, mounting fails. This opt-in option can avoid suspend or hibernate hangs caused by frozen user-space FUSE filesystems.</entry>
<entry lang="en" key="LINUX_KERNEL_NTFS_DRIVER_UNAVAILABLE">No supported in-kernel NTFS driver is available or loadable. To use the system default NTFS backend, disable the NTFS kernel-driver preference or do not request kernel NTFS explicitly.</entry>
<entry lang="en" key="LINUX_EMERGENCY_UNMOUNT_WARNING">Normal unmount of volume {0} failed. This can happen when applications still have files or directories open on the volume, or when the backing device was disconnected and the mount became stale.\n\nIf the device is still connected, choose No, close applications using the volume, and try unmounting again.\n\nIf the device was disconnected or the mount is stale, VeraCrypt can attempt emergency cleanup by lazy-detaching the filesystem and removing or scheduling removal of VeraCrypt kernel objects. Pending writes may have failed, data may be lost, and cleanup may remain pending until applications close open files. Check the filesystem with fsck or the appropriate repair tool before using it again.\n\nContinue?</entry>
<entry lang="en" key="LINUX_EMERGENCY_UNMOUNTED">Emergency cleanup for volume {0} has been initiated. If the volume was disconnected, the mount was stale, or there were pending writes, check the filesystem with fsck or the appropriate repair tool before using it again.</entry>
<entry lang="en" key="FORMAT_STAGE_WRITING_DATA">Creating volume data. Please wait.</entry>
+37 -40
View File
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<VeraCrypt>
<localization prog-version="1.26.28">
<localization prog-version="1.26.29">
<language langid="es" name="Español" en-name="Spanish" version="1.0.0" translators="Juan Antonio Auñón Ochando" />
<font lang="es" class="normal" size="11" face="default" />
<font lang="es" class="bold" size="13" face="Arial" />
@@ -181,7 +181,7 @@
<entry lang="es" key="IDC_TRAVEL_OPEN_EXPLORER">Abrir en el &amp;explorador el volumen montado</entry>
<entry lang="es" key="IDC_TRAV_CACHE_PASSWORDS">Guardar &amp;contraseña en caché</entry>
<entry lang="es" key="IDC_TRUECRYPT_MODE">Modo TrueCrypt</entry>
<entry lang="es" key="IDC_UNMOUNTALL">&amp;Desmontar Todo</entry>
<entry lang="es" key="IDC_UNMOUNTALL">Desmontar Tod&amp;o</entry>
<entry lang="es" key="IDC_VOLUME_PROPERTIES">Propiedades del &amp;Volumen</entry>
<entry lang="es" key="IDC_VOLUME_TOOLS">Herramien&amp;tas de volumen</entry>
<entry lang="es" key="IDC_WIPE_CACHE">&amp;Borrar Caché</entry>
@@ -1517,10 +1517,6 @@
<entry lang="es" key="LINUX_MOUNTET_HINT">El sistema de archivos del dispositivo seleccionado está actualmente montado. Por favor, desmonte '{0}' antes de continuar.</entry>
<entry lang="es" key="LINUX_HIDDEN_PASS_NO_DIFF">El volumen oculto no puede tener la misma contraseña, PIM y archivos de clave que el volumen externo</entry>
<entry lang="es" key="LINUX_NOT_FAT_HINT">Tenga en cuenta que el volumen no será formateado con un sistema de archivos FAT y, por lo tanto, puede ser necesario instalar controladores de sistema de archivos adicionales en plataformas distintas a {0}, lo que le permitirá montar el volumen.</entry>
<entry lang="es" key="LINUX_ERROR_SIZE_HIDDEN_VOL">Error: El volumen oculto a crear es mayor que {0} TB ({1} GB).\n\nSoluciones posibles:\n- Crear un contenedor/partición menor que {0} TB.\n</entry>
<entry lang="es" key="LINUX_MAX_SIZE_HINT">- Utilice una unidad con sectores de 4096 bytes para crear volúmenes ocultos en particiones/dispositivos de hasta 16 TB de tamaño</entry>
<entry lang="es" key="LINUX_DOT_LF">.\n</entry>
<entry lang="es" key="LINUX_NOT_SUPPORTED"> (no es compatible con los componentes disponibles en esta plataforma).\n</entry>
<entry lang="es" key="LINUX_KERNEL_OLD">Su sistema utiliza una versión antigua del kernel de Linux.\n\nDebido a un error en el kernel de Linux, su sistema puede dejar de responder al escribir datos en un volumen de VeraCrypt. Este problema se puede resolver actualizando el kernel a la versión 2.6.24 o posterior.</entry>
<entry lang="es" key="LINUX_VOL_UNMOUNTED">El volumen {0} ha sido desmontado.</entry>
<entry lang="es" key="LINUX_VOL_MOUNTED">El volumen {0} ha sido montado.</entry>
@@ -1653,40 +1649,41 @@
<entry lang="es" key="IDD_PREFERENCES_TAB_PASSWORD">Contraseña</entry>
<entry lang="es" key="IDC_SECURE_DESKTOP_ENABLE_IME">Habilitar el editor de métodos de entrada (IME) en el Escritorio seguro</entry>
<entry lang="es" key="ENABLE_IME_IN_SECURE_DESKTOP_WARNING">ADVERTENCIA: Habilite esta opción SOLO si encuentra problemas al seleccionar archivos clave (Keyfiles) o tokens en el Escritorio seguro.</entry>
<entry lang="en" key="ERR_KEY_DERIVATION_FAILED">Key derivation failed. This may be caused by insufficient memory or an interrupted operation.</entry>
<entry lang="en" key="EFI_MS_BOOT_LOADER_RESTORE_FAILED">The system partition/drive is already decrypted, but the EFI Microsoft boot loader path was not restored to the Windows Boot Manager. Only the EFI boot files need repair. Use the VeraCrypt Rescue Disk repair option, or boot Windows recovery media and run 'bcdboot W:\\Windows /s S: /f UEFI' after replacing W: with the Windows volume drive letter and S: with the EFI System Partition drive letter. Path:</entry>
<entry lang="en" key="EFI_FALLBACK_BOOT_LOADER_STILL_VERACRYPT">The system partition/drive is already decrypted, but the EFI fallback boot loader path still contains the VeraCrypt Boot Loader. Only the EFI boot files need repair. Use the VeraCrypt Rescue Disk repair option, or boot Windows recovery media and run 'bcdboot W:\\Windows /s S: /f UEFI' after replacing W: with the Windows volume drive letter and S: with the EFI System Partition drive letter. Path:</entry>
<entry lang="en" key="IDM_REPAIR_EFI_BOOT_LOADER">Repair EFI Boot Loader...</entry>
<entry lang="en" key="CONFIRM_REPAIR_EFI_BOOT_LOADER">VeraCrypt will restore the Windows EFI boot loader paths and remove VeraCrypt EFI boot entries and files.\n\nUse this only after the system partition/drive is fully decrypted and Windows can boot without system encryption.\n\nDo you want to continue?</entry>
<entry lang="en" key="EFI_BOOT_LOADER_FILE_READ_FAILED">The EFI boot loader file could not be read completely:</entry>
<entry lang="en" key="EFI_BOOT_LOADER_FILE_TOO_LARGE">The EFI boot loader file is unexpectedly large and was not inspected:</entry>
<entry lang="en" key="EFI_BOOT_LOADER_NVRAM_CLEANUP_FAILED">The system partition/drive is already decrypted and the EFI boot loader files were restored, but VeraCrypt could not remove one or more VeraCrypt firmware boot entries. The VeraCrypt EFI files were left in place so any remaining firmware entry still points to an existing loader. Retry as Administrator or remove the VeraCrypt boot entry from firmware setup after confirming Windows Boot Manager starts normally.</entry>
<entry lang="en" key="EFI_BOOT_LOADER_REPAIR_BLOCKED">The EFI boot loader cannot be repaired while system encryption or decryption is active or incomplete. Complete or resume the pending system encryption/decryption process before retrying.</entry>
<entry lang="en" key="EFI_BOOT_LOADER_REPAIR_NOT_APPLICABLE">This repair action is available only on systems booting in UEFI mode from a GPT system partition.</entry>
<entry lang="en" key="EFI_BOOT_LOADER_REPAIR_SUCCESS">The EFI boot loader has been repaired successfully.</entry>
<entry lang="en" key="PIM_ARGON2_HELP">PIM (Personal Iterations Multiplier) controls the memory and time costs used by Argon2id header key derivation as follows:\n Memory = min(64 MiB + ((PIM - 1) x 32 MiB), 1024 MiB)\n Iterations = 3 + ((PIM - 1) / 3) for PIM 31 or lower, then 13 + (PIM - 31)\n\nWhen left empty or set to 0, VeraCrypt will use the default Argon2 PIM (12), which uses 416 MiB of memory and 6 iterations.\n\nWhen the password is less than 20 characters, Argon2 PIM can't be smaller than 12 in order to maintain a minimal security level.\nWhen the password is 20 characters or more, Argon2 PIM can be set to any value.\n\nAn Argon2 PIM larger than 12 increases memory usage up to 1024 MiB and then increases iterations. This will lead to slower mounting. A small Argon2 PIM (less than 12) will lead to quicker mounting but it can reduce security if the password is not strong enough.</entry>
<entry lang="en" key="PIM_ARGON2_LARGE_WARNING">You have chosen an Argon2 PIM value that is larger than VeraCrypt default value.\nPlease note that this can require more memory and lead to much slower mounting.</entry>
<entry lang="en" key="PIM_ARGON2_SMALL_WARNING">You have chosen an Argon2 PIM value that is smaller than the default VeraCrypt value. Please note that if your password is not strong enough, this could lead to weaker security.\n\nDo you confirm that you are using a strong password?</entry>
<entry lang="en" key="PIM_ARGON2_REQUIRE_LONG_PASSWORD">Password must contain 20 or more characters in order to use the specified Argon2 PIM.\nShorter passwords can only be used if the Argon2 PIM is 12 or greater.</entry>
<entry lang="en" key="LINUX_PREF_MOUNT_NTFS_WITH_NTFS3">Mount NTFS volumes with the Linux kernel ntfs3 driver</entry>
<entry lang="en" key="LINUX_PREF_MOUNT_NTFS_WITH_NTFS3_HELP">Linux only. When enabled, VeraCrypt probes the decrypted virtual device with blkid -p and mounts detected NTFS filesystems with ntfs3 instead of the default NTFS backend. If NTFS detection fails, VeraCrypt uses the normal automatic filesystem selection. If ntfs3 is unavailable or blocked by the distribution, mounting may fail. This opt-in option can avoid suspend or hibernate hangs caused by frozen user-space FUSE filesystems.</entry>
<entry lang="en" key="LINUX_EMERGENCY_UNMOUNT_WARNING">Normal unmount of volume {0} failed. This can happen when applications still have files or directories open on the volume, or when the backing device was disconnected and the mount became stale.\n\nIf the device is still connected, choose No, close applications using the volume, and try unmounting again.\n\nIf the device was disconnected or the mount is stale, VeraCrypt can attempt emergency cleanup by lazy-detaching the filesystem and removing or scheduling removal of VeraCrypt kernel objects. Pending writes may have failed, data may be lost, and cleanup may remain pending until applications close open files. Check the filesystem with fsck or the appropriate repair tool before using it again.\n\nContinue?</entry>
<entry lang="en" key="LINUX_EMERGENCY_UNMOUNTED">Emergency cleanup for volume {0} has been initiated. If the volume was disconnected, the mount was stale, or there were pending writes, check the filesystem with fsck or the appropriate repair tool before using it again.</entry>
<entry lang="en" key="FORMAT_STAGE_WRITING_DATA">Creating volume data. Please wait.</entry>
<entry lang="en" key="FORMAT_STAGE_WRITING_BACKUP_HEADER">Finalizing volume creation: writing backup header.</entry>
<entry lang="en" key="FORMAT_STAGE_FLUSHING_DATA">Finalizing volume creation: flushing data to disk. This can take several minutes on large volumes or slow/USB storage.</entry>
<entry lang="en" key="FORMAT_STAGE_FINISHED">Finalizing volume creation.</entry>
<entry lang="en" key="FORMAT_STAGE_ABORTED">Volume creation has been aborted.</entry>
<entry lang="en" key="FORMAT_STAGE_ERROR">Volume creation failed.</entry>
<entry lang="en" key="FORMAT_STAGE_PREPARING_TEMP_VOLUME">Finalizing volume creation: mounting temporary volume.</entry>
<entry lang="en" key="FORMAT_STAGE_PREPARING_TEMP_DEVICE">Finalizing volume creation: preparing temporary device.</entry>
<entry lang="en" key="FORMAT_STAGE_CREATING_FILESYSTEM">Finalizing volume creation: creating filesystem using {0}.</entry>
<entry lang="en" key="FORMAT_STAGE_DISMOUNTING_TEMP_VOLUME">Finalizing volume creation: dismounting temporary volume.</entry>
<entry lang="en" key="MACOSX_APFS_SYNTHESIZED_DEVICE">The selected device '{0}' is an APFS synthesized container or volume and cannot be used as a raw VeraCrypt volume host.\n\nSelect the physical APFS store partition{1} instead.</entry>
<entry lang="en" key="MACOSX_DEVICE_SYSTEM_PARTITION">The selected device '{0}' is a macOS system/support partition and cannot be used as a VeraCrypt volume host.</entry>
<entry lang="en" key="MACOSX_APFS_SYSTEM_STORE">The selected APFS physical store '{0}' contains the currently mounted macOS system volume and cannot be used as a VeraCrypt volume host.</entry>
<entry lang="en" key="MACOSX_DEVICE_NOT_WRITABLE">macOS reports the selected device '{0}' as read-only. Select a writable physical partition or disk.</entry>
<entry lang="en" key="MACOSX_APFS_EROFS_HINT">macOS reported the selected device as read-only. If this is an APFS disk, make sure you selected the physical APFS store partition, not an APFS synthesized volume. Use Disk Utility or 'diskutil list' to identify the physical partition, then retry.</entry>
<entry lang="es" key="ERR_KEY_DERIVATION_FAILED">La derivación de clave ha fallado. Esto puede deberse a memoria insuficiente o a una operación interrumpida.</entry>
<entry lang="es" key="EFI_MS_BOOT_LOADER_RESTORE_FAILED">La partición/unidad del sistema ya está descifrada, pero la ruta del cargador de arranque EFI de Microsoft no se restauró en el Administrador de arranque de Windows. Sólo es necesario reparar los archivos de arranque EFI. Use la opción de reparación del Disco de Rescate de VeraCrypt, o arranque un medio de recuperación de Windows y ejecute 'bcdboot W:\\Windows /s S: /f UEFI' después de reemplazar W: por la letra de unidad del volumen de Windows y S: por la letra de unidad de la partición del sistema EFI. Ruta:</entry>
<entry lang="es" key="EFI_FALLBACK_BOOT_LOADER_STILL_VERACRYPT">La partición/unidad del sistema ya está descifrada, pero la ruta alternativa del cargador de arranque EFI todavía contiene el Cargador de Arranque de VeraCrypt. Sólo es necesario reparar los archivos de arranque EFI. Use la opción de reparación del Disco de Rescate de VeraCrypt, o arranque un medio de recuperación de Windows y ejecute 'bcdboot W:\\Windows /s S: /f UEFI' después de reemplazar W: por la letra de unidad del volumen de Windows y S: por la letra de unidad de la partición del sistema EFI. Ruta:</entry>
<entry lang="es" key="IDM_REPAIR_EFI_BOOT_LOADER">Reparar Cargador de Arranque EFI...</entry>
<entry lang="es" key="CONFIRM_REPAIR_EFI_BOOT_LOADER">VeraCrypt restaurará las rutas del cargador de arranque EFI de Windows y eliminará las entradas y archivos de arranque EFI de VeraCrypt.\n\nUse esta opción sólo después de que la partición/unidad del sistema esté completamente descifrada y Windows pueda arrancar sin cifrado del sistema.\n\n¿Desea continuar?</entry>
<entry lang="es" key="EFI_BOOT_LOADER_FILE_READ_FAILED">El fichero del cargador de arranque EFI no pudo leerse por completo:</entry>
<entry lang="es" key="EFI_BOOT_LOADER_FILE_TOO_LARGE">El fichero del cargador de arranque EFI es inesperadamente grande y no fue inspeccionado:</entry>
<entry lang="es" key="EFI_BOOT_LOADER_NVRAM_CLEANUP_FAILED">La partición/unidad del sistema ya está descifrada y los archivos del cargador de arranque EFI han sido restaurados, pero VeraCrypt no pudo eliminar una o más entradas de arranque VeraCrypt del firmware. Los archivos EFI de VeraCrypt se dejaron en su lugar para que cualquier entrada de firmware restante siga apuntando a un cargador existente. Reinténtelo como administrador o elimine la entrada de arranque de VeraCrypt desde la configuración del firmware después de confirmar que el Administrador de arranque de Windows se inicia normalmente.</entry>
<entry lang="es" key="EFI_BOOT_LOADER_REPAIR_BLOCKED">El cargador de arranque EFI no puede repararse mientras el cifrado o descifrado del sistema esté activo o incompleto. Complete o reanude el proceso pendiente de cifrado/descifrado del sistema antes de reintentarlo.</entry>
<entry lang="es" key="EFI_BOOT_LOADER_REPAIR_NOT_APPLICABLE">Esta acción de reparación sólo está disponible en sistemas que arrancan en modo UEFI desde una partición del sistema en un disco GPT.</entry>
<entry lang="es" key="EFI_BOOT_LOADER_REPAIR_SUCCESS">El cargador de arranque EFI ha sido reparado con éxito.</entry>
<entry lang="es" key="PIM_ARGON2_HELP">PIM (Personal Iterations Multiplier) controla los costes de memoria y tiempo usados por la derivación de la clave de cabecera Argon2id de la siguiente forma:\n Memoria = min(64 MiB + ((PIM - 1) x 32 MiB), 1024 MiB)\n Iteraciones = 3 + ((PIM - 1) / 3) para PIM 31 o inferior, y luego 13 + (PIM - 31)\n\nCuando se deja en blanco o se pone a 0, VeraCrypt usará el PIM Argon2 predeterminado (12), que utiliza 416 MiB de memoria y 6 iteraciones.\n\nCuando la contraseña es de menos de 20 caracteres, el PIM Argon2 no puede ser inferior a 12 con el fin de mantener un nivel de seguridad mínimo.\nCuando la contraseña es de 20 ó más caracteres, se puede usar cualquier valor de PIM Argon2.\n\nUn PIM Argon2 superior a 12 incrementa el uso de memoria hasta 1024 MiB y luego incrementa las iteraciones. Esto conllevará un proceso de montaje más lento. Un PIM Argon2 pequeño (menor de 12) conllevará un proceso de montaje más rápido, pero podría reducir la seguridad si la contraseña no es suficientemente fuerte.</entry>
<entry lang="es" key="PIM_ARGON2_LARGE_WARNING">Ha elegido un valor de PIM Argon2 superior al valor por defecto de VeraCrypt.\nPor favor, sea consciente que esto puede requerir más memoria y conllevar un montaje mucho más lento.</entry>
<entry lang="es" key="PIM_ARGON2_SMALL_WARNING">Ha elegido un valor de PIM Argon2 inferior al valor por defecto de VeraCrypt. Por favor, sea consciente que si su contraseña no es lo suficientemente fuerte, podría ver reducido el nivel de seguridad.\n\n¿Está seguro que usa una contraseña fuerte?</entry>
<entry lang="es" key="PIM_ARGON2_REQUIRE_LONG_PASSWORD">La contraseña debe contener 20 caracteres o más para usar el PIM Argon2 especificado.\nSólo se pueden usar contraseñas de menor longitud si el PIM Argon2 es 12 ó más.</entry>
<entry lang="es" key="LINUX_PREF_MOUNT_NTFS_WITH_KERNEL_DRIVER">Montar volúmenes NTFS con un controlador integrado en el kernel de Linux</entry>
<entry lang="es" key="LINUX_PREF_MOUNT_NTFS_WITH_KERNEL_DRIVER_HELP">Sólo Linux. Cuando está habilitado y no se ha suministrado ningún tipo explícito de sistema de archivos, VeraCrypt sondea el dispositivo virtual descifrado con blkid -p y monta los sistemas de archivos NTFS detectados con un controlador NTFS integrado en el kernel disponible, evitando herramientas auxiliares de montaje como ntfs-3g. VeraCrypt usa ntfs cuando se identifica positivamente como un controlador moderno de lectura/escritura o esperado en Linux 7.1 o posterior, y en caso contrario usa ntfs3. Si la detección de NTFS falla, VeraCrypt usa la selección automática normal del sistema de archivos. Si no hay ningún controlador NTFS integrado en el kernel soportado disponible o cargable, el montaje falla. Esta opción, que debe activarse explícitamente, puede evitar bloqueos de suspensión o hibernación causados por sistemas de archivos FUSE de espacio de usuario congelados.</entry>
<entry lang="es" key="LINUX_KERNEL_NTFS_DRIVER_UNAVAILABLE">No hay disponible ni se puede cargar ningún controlador NTFS integrado en el kernel que esté soportado. Para usar el soporte NTFS predeterminado del sistema, desactive la preferencia del controlador NTFS del kernel o no solicite NTFS del kernel explícitamente.</entry>
<entry lang="es" key="LINUX_EMERGENCY_UNMOUNT_WARNING">El desmontaje normal del volumen {0} falló. Esto puede ocurrir cuando todavía hay aplicaciones con archivos o directorios abiertos en el volumen, o cuando el dispositivo subyacente fue desconectado y el montaje quedó obsoleto.\n\nSi el dispositivo sigue conectado, elija No, cierre las aplicaciones que estén usando el volumen e intente desmontarlo de nuevo.\n\nSi el dispositivo fue desconectado o el montaje quedó obsoleto, VeraCrypt puede intentar una limpieza de emergencia mediante el desmontaje diferido del sistema de archivos y eliminando o programando la eliminación de objetos del kernel de VeraCrypt. Las escrituras pendientes pueden haber fallado, pueden haberse perdido datos y la limpieza puede permanecer pendiente hasta que las aplicaciones cierren los archivos abiertos. Compruebe el sistema de archivos con fsck o con la herramienta de reparación apropiada antes de usarlo de nuevo.\n\n¿Continuar?</entry>
<entry lang="es" key="LINUX_EMERGENCY_UNMOUNTED">Se ha iniciado la limpieza de emergencia del volumen {0}. Si el volumen fue desconectado, el montaje quedó obsoleto o había escrituras pendientes, compruebe el sistema de archivos con fsck o con la herramienta de reparación apropiada antes de usarlo de nuevo.</entry>
<entry lang="es" key="FORMAT_STAGE_WRITING_DATA">Creando datos del volumen. Por favor, espere.</entry>
<entry lang="es" key="FORMAT_STAGE_WRITING_BACKUP_HEADER">Finalizando la creación del volumen: escribiendo la copia de seguridad de la cabecera.</entry>
<entry lang="es" key="FORMAT_STAGE_FLUSHING_DATA">Finalizando la creación del volumen: sincronizando los datos con el disco. Esto puede tardar varios minutos en volúmenes grandes o almacenamiento lento/USB.</entry>
<entry lang="es" key="FORMAT_STAGE_FINISHED">Finalizando la creación del volumen.</entry>
<entry lang="es" key="FORMAT_STAGE_ABORTED">La creación del volumen ha sido abortada.</entry>
<entry lang="es" key="FORMAT_STAGE_ERROR">La creación del volumen falló.</entry>
<entry lang="es" key="FORMAT_STAGE_PREPARING_TEMP_VOLUME">Finalizando la creación del volumen: montando el volumen temporal.</entry>
<entry lang="es" key="FORMAT_STAGE_PREPARING_TEMP_DEVICE">Finalizando la creación del volumen: preparando el dispositivo temporal.</entry>
<entry lang="es" key="FORMAT_STAGE_CREATING_FILESYSTEM">Finalizando la creación del volumen: creando el sistema de archivos usando {0}.</entry>
<entry lang="es" key="FORMAT_STAGE_DISMOUNTING_TEMP_VOLUME">Finalizando la creación del volumen: desmontando el volumen temporal.</entry>
<entry lang="es" key="MACOSX_APFS_SYNTHESIZED_DEVICE">El dispositivo seleccionado '{0}' es un contenedor o volumen APFS sintetizado y no puede usarse como dispositivo anfitrión sin procesar de un volumen VeraCrypt.\n\nSeleccione en su lugar la partición física de almacenamiento APFS{1}.</entry>
<entry lang="es" key="MACOSX_DEVICE_SYSTEM_PARTITION">El dispositivo seleccionado '{0}' es una partición de sistema o soporte de macOS y no puede usarse como host de volumen VeraCrypt.</entry>
<entry lang="es" key="MACOSX_APFS_SYSTEM_STORE">El almacenamiento físico APFS seleccionado '{0}' contiene el volumen de sistema macOS actualmente montado y no puede usarse como host de volumen VeraCrypt.</entry>
<entry lang="es" key="MACOSX_DEVICE_NOT_WRITABLE">macOS informa que el dispositivo seleccionado '{0}' es de sólo lectura. Seleccione una partición física o disco con permiso de escritura.</entry>
<entry lang="es" key="MACOSX_APFS_EROFS_HINT">macOS informó que el dispositivo seleccionado es de sólo lectura. Si se trata de un disco APFS, asegúrese de haber seleccionado la partición física de almacenamiento APFS, no un volumen APFS sintetizado. Use la Utilidad de Discos o 'diskutil list' para identificar la partición física y luego reinténtelo.</entry>
</localization>
<xs:schema attributeFormDefault="unqualified" elementFormDefault="qualified" xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:element name="VeraCrypt">
+4 -7
View File
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<VeraCrypt>
<localization prog-version="1.26.28">
<localization prog-version="1.26.29">
<language langid="et" name="Eesti" en-name="Estonian" version="0.1.0" translators="Maiko Mõtsar" />
<font lang="et" class="normal" size="11" face="vaikimisi" />
<font lang="et" class="bold" size="13" face="Arial" />
@@ -1517,10 +1517,6 @@
<entry lang="en" key="LINUX_MOUNTET_HINT">The filesystem of the selected device is currently mounted. Please unmount '{0}' before proceeding.</entry>
<entry lang="en" key="LINUX_HIDDEN_PASS_NO_DIFF">The Hidden volume can't have the same password, PIM and keyfiles as the Outer volume</entry>
<entry lang="en" key="LINUX_NOT_FAT_HINT">Please note that the volume will not be formatted with a FAT filesystem and, therefore, you may be required to install additional filesystem drivers on platforms other than {0}, which will enable you to mount the volume.</entry>
<entry lang="en" key="LINUX_ERROR_SIZE_HIDDEN_VOL">Error: The hidden volume to be created is larger than {0} TB ({1} GB).\n\nPossible solutions:\n- Create a container/partition smaller than {0} TB.\n</entry>
<entry lang="en" key="LINUX_MAX_SIZE_HINT">- Use a drive with 4096-byte sectors to be able to create partition/device-hosted hidden volumes up to 16 TB in size</entry>
<entry lang="en" key="LINUX_DOT_LF">.\n</entry>
<entry lang="en" key="LINUX_NOT_SUPPORTED"> (not supported by components available on this platform).\n</entry>
<entry lang="en" key="LINUX_KERNEL_OLD">Your system uses an old version of the Linux kernel.\n\nDue to a bug in the Linux kernel, your system may stop responding when writing data to a VeraCrypt volume. This problem can be solved by upgrading the kernel to version 2.6.24 or later.</entry>
<entry lang="en" key="LINUX_VOL_UNMOUNTED">Volume {0} has been unmounted.</entry>
<entry lang="en" key="LINUX_VOL_MOUNTED">Volume {0} has been mounted.</entry>
@@ -1668,8 +1664,9 @@
<entry lang="en" key="PIM_ARGON2_LARGE_WARNING">You have chosen an Argon2 PIM value that is larger than VeraCrypt default value.\nPlease note that this can require more memory and lead to much slower mounting.</entry>
<entry lang="en" key="PIM_ARGON2_SMALL_WARNING">You have chosen an Argon2 PIM value that is smaller than the default VeraCrypt value. Please note that if your password is not strong enough, this could lead to weaker security.\n\nDo you confirm that you are using a strong password?</entry>
<entry lang="en" key="PIM_ARGON2_REQUIRE_LONG_PASSWORD">Password must contain 20 or more characters in order to use the specified Argon2 PIM.\nShorter passwords can only be used if the Argon2 PIM is 12 or greater.</entry>
<entry lang="en" key="LINUX_PREF_MOUNT_NTFS_WITH_NTFS3">Mount NTFS volumes with the Linux kernel ntfs3 driver</entry>
<entry lang="en" key="LINUX_PREF_MOUNT_NTFS_WITH_NTFS3_HELP">Linux only. When enabled, VeraCrypt probes the decrypted virtual device with blkid -p and mounts detected NTFS filesystems with ntfs3 instead of the default NTFS backend. If NTFS detection fails, VeraCrypt uses the normal automatic filesystem selection. If ntfs3 is unavailable or blocked by the distribution, mounting may fail. This opt-in option can avoid suspend or hibernate hangs caused by frozen user-space FUSE filesystems.</entry>
<entry lang="en" key="LINUX_PREF_MOUNT_NTFS_WITH_KERNEL_DRIVER">Mount NTFS volumes with an in-kernel Linux driver</entry>
<entry lang="en" key="LINUX_PREF_MOUNT_NTFS_WITH_KERNEL_DRIVER_HELP">Linux only. When enabled and no explicit filesystem type was supplied, VeraCrypt probes the decrypted virtual device with blkid -p and mounts detected NTFS filesystems with an available in-kernel NTFS driver, bypassing mount helpers such as ntfs-3g. VeraCrypt uses ntfs when it is positively identified as a modern read/write driver or expected on Linux 7.1 or later, and otherwise uses ntfs3. If NTFS detection fails, VeraCrypt uses the normal automatic filesystem selection. If no supported in-kernel NTFS driver is available or loadable, mounting fails. This opt-in option can avoid suspend or hibernate hangs caused by frozen user-space FUSE filesystems.</entry>
<entry lang="en" key="LINUX_KERNEL_NTFS_DRIVER_UNAVAILABLE">No supported in-kernel NTFS driver is available or loadable. To use the system default NTFS backend, disable the NTFS kernel-driver preference or do not request kernel NTFS explicitly.</entry>
<entry lang="en" key="LINUX_EMERGENCY_UNMOUNT_WARNING">Normal unmount of volume {0} failed. This can happen when applications still have files or directories open on the volume, or when the backing device was disconnected and the mount became stale.\n\nIf the device is still connected, choose No, close applications using the volume, and try unmounting again.\n\nIf the device was disconnected or the mount is stale, VeraCrypt can attempt emergency cleanup by lazy-detaching the filesystem and removing or scheduling removal of VeraCrypt kernel objects. Pending writes may have failed, data may be lost, and cleanup may remain pending until applications close open files. Check the filesystem with fsck or the appropriate repair tool before using it again.\n\nContinue?</entry>
<entry lang="en" key="LINUX_EMERGENCY_UNMOUNTED">Emergency cleanup for volume {0} has been initiated. If the volume was disconnected, the mount was stale, or there were pending writes, check the filesystem with fsck or the appropriate repair tool before using it again.</entry>
<entry lang="en" key="FORMAT_STAGE_WRITING_DATA">Creating volume data. Please wait.</entry>
+4 -7
View File
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<VeraCrypt>
<localization prog-version="1.26.28">
<localization prog-version="1.26.29">
<language langid="eu" name="Euskara" en-name="Basque" version="1.0.0" translators="Ander Genua" />
<font lang="eu" class="normal" size="11" face="default" />
<font lang="eu" class="bold" size="13" face="Arial" />
@@ -1517,10 +1517,6 @@
<entry lang="en" key="LINUX_MOUNTET_HINT">The filesystem of the selected device is currently mounted. Please unmount '{0}' before proceeding.</entry>
<entry lang="en" key="LINUX_HIDDEN_PASS_NO_DIFF">The Hidden volume can't have the same password, PIM and keyfiles as the Outer volume</entry>
<entry lang="en" key="LINUX_NOT_FAT_HINT">Please note that the volume will not be formatted with a FAT filesystem and, therefore, you may be required to install additional filesystem drivers on platforms other than {0}, which will enable you to mount the volume.</entry>
<entry lang="en" key="LINUX_ERROR_SIZE_HIDDEN_VOL">Error: The hidden volume to be created is larger than {0} TB ({1} GB).\n\nPossible solutions:\n- Create a container/partition smaller than {0} TB.\n</entry>
<entry lang="en" key="LINUX_MAX_SIZE_HINT">- Use a drive with 4096-byte sectors to be able to create partition/device-hosted hidden volumes up to 16 TB in size</entry>
<entry lang="en" key="LINUX_DOT_LF">.\n</entry>
<entry lang="en" key="LINUX_NOT_SUPPORTED"> (not supported by components available on this platform).\n</entry>
<entry lang="en" key="LINUX_KERNEL_OLD">Your system uses an old version of the Linux kernel.\n\nDue to a bug in the Linux kernel, your system may stop responding when writing data to a VeraCrypt volume. This problem can be solved by upgrading the kernel to version 2.6.24 or later.</entry>
<entry lang="en" key="LINUX_VOL_UNMOUNTED">Volume {0} has been unmounted.</entry>
<entry lang="en" key="LINUX_VOL_MOUNTED">Volume {0} has been mounted.</entry>
@@ -1668,8 +1664,9 @@
<entry lang="en" key="PIM_ARGON2_LARGE_WARNING">You have chosen an Argon2 PIM value that is larger than VeraCrypt default value.\nPlease note that this can require more memory and lead to much slower mounting.</entry>
<entry lang="en" key="PIM_ARGON2_SMALL_WARNING">You have chosen an Argon2 PIM value that is smaller than the default VeraCrypt value. Please note that if your password is not strong enough, this could lead to weaker security.\n\nDo you confirm that you are using a strong password?</entry>
<entry lang="en" key="PIM_ARGON2_REQUIRE_LONG_PASSWORD">Password must contain 20 or more characters in order to use the specified Argon2 PIM.\nShorter passwords can only be used if the Argon2 PIM is 12 or greater.</entry>
<entry lang="en" key="LINUX_PREF_MOUNT_NTFS_WITH_NTFS3">Mount NTFS volumes with the Linux kernel ntfs3 driver</entry>
<entry lang="en" key="LINUX_PREF_MOUNT_NTFS_WITH_NTFS3_HELP">Linux only. When enabled, VeraCrypt probes the decrypted virtual device with blkid -p and mounts detected NTFS filesystems with ntfs3 instead of the default NTFS backend. If NTFS detection fails, VeraCrypt uses the normal automatic filesystem selection. If ntfs3 is unavailable or blocked by the distribution, mounting may fail. This opt-in option can avoid suspend or hibernate hangs caused by frozen user-space FUSE filesystems.</entry>
<entry lang="en" key="LINUX_PREF_MOUNT_NTFS_WITH_KERNEL_DRIVER">Mount NTFS volumes with an in-kernel Linux driver</entry>
<entry lang="en" key="LINUX_PREF_MOUNT_NTFS_WITH_KERNEL_DRIVER_HELP">Linux only. When enabled and no explicit filesystem type was supplied, VeraCrypt probes the decrypted virtual device with blkid -p and mounts detected NTFS filesystems with an available in-kernel NTFS driver, bypassing mount helpers such as ntfs-3g. VeraCrypt uses ntfs when it is positively identified as a modern read/write driver or expected on Linux 7.1 or later, and otherwise uses ntfs3. If NTFS detection fails, VeraCrypt uses the normal automatic filesystem selection. If no supported in-kernel NTFS driver is available or loadable, mounting fails. This opt-in option can avoid suspend or hibernate hangs caused by frozen user-space FUSE filesystems.</entry>
<entry lang="en" key="LINUX_KERNEL_NTFS_DRIVER_UNAVAILABLE">No supported in-kernel NTFS driver is available or loadable. To use the system default NTFS backend, disable the NTFS kernel-driver preference or do not request kernel NTFS explicitly.</entry>
<entry lang="en" key="LINUX_EMERGENCY_UNMOUNT_WARNING">Normal unmount of volume {0} failed. This can happen when applications still have files or directories open on the volume, or when the backing device was disconnected and the mount became stale.\n\nIf the device is still connected, choose No, close applications using the volume, and try unmounting again.\n\nIf the device was disconnected or the mount is stale, VeraCrypt can attempt emergency cleanup by lazy-detaching the filesystem and removing or scheduling removal of VeraCrypt kernel objects. Pending writes may have failed, data may be lost, and cleanup may remain pending until applications close open files. Check the filesystem with fsck or the appropriate repair tool before using it again.\n\nContinue?</entry>
<entry lang="en" key="LINUX_EMERGENCY_UNMOUNTED">Emergency cleanup for volume {0} has been initiated. If the volume was disconnected, the mount was stale, or there were pending writes, check the filesystem with fsck or the appropriate repair tool before using it again.</entry>
<entry lang="en" key="FORMAT_STAGE_WRITING_DATA">Creating volume data. Please wait.</entry>
+5 -8
View File
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<VeraCrypt>
<localization prog-version="1.26.28">
<localization prog-version="1.26.29">
<language langid="fa" name="فارسي" en-name="Persian" version="0.1.0" translators="Ali Bitazar, Rodabeh Sarmadi" />
<font lang="fa" class="normal" size="11" face="default" />
<font lang="fa" class="bold" size="13" face="Arial" />
@@ -181,7 +181,7 @@
<entry lang="en" key="IDC_TRAVEL_OPEN_EXPLORER">Open &amp;Explorer window for mounted volume</entry>
<entry lang="en" key="IDC_TRAV_CACHE_PASSWORDS">&amp;Cache password in driver memory</entry>
<entry lang="en" key="IDC_TRUECRYPT_MODE">&amp;TrueCrypt Mode</entry>
<entry lang="en" key="IDC_UNMOUNTALL">&amp;Unmount All</entry>
<entry lang="en" key="IDC_UNMOUNTALL">Unmount A&amp;ll</entry>
<entry lang="en" key="IDC_VOLUME_PROPERTIES">&amp;Volume Properties...</entry>
<entry lang="en" key="IDC_VOLUME_TOOLS">Volume &amp;Tools...</entry>
<entry lang="en" key="IDC_WIPE_CACHE">&amp;Wipe Cache</entry>
@@ -1517,10 +1517,6 @@
<entry lang="en" key="LINUX_MOUNTET_HINT">The filesystem of the selected device is currently mounted. Please unmount '{0}' before proceeding.</entry>
<entry lang="en" key="LINUX_HIDDEN_PASS_NO_DIFF">The Hidden volume can't have the same password, PIM and keyfiles as the Outer volume</entry>
<entry lang="en" key="LINUX_NOT_FAT_HINT">Please note that the volume will not be formatted with a FAT filesystem and, therefore, you may be required to install additional filesystem drivers on platforms other than {0}, which will enable you to mount the volume.</entry>
<entry lang="en" key="LINUX_ERROR_SIZE_HIDDEN_VOL">Error: The hidden volume to be created is larger than {0} TB ({1} GB).\n\nPossible solutions:\n- Create a container/partition smaller than {0} TB.\n</entry>
<entry lang="en" key="LINUX_MAX_SIZE_HINT">- Use a drive with 4096-byte sectors to be able to create partition/device-hosted hidden volumes up to 16 TB in size</entry>
<entry lang="en" key="LINUX_DOT_LF">.\n</entry>
<entry lang="en" key="LINUX_NOT_SUPPORTED"> (not supported by components available on this platform).\n</entry>
<entry lang="en" key="LINUX_KERNEL_OLD">Your system uses an old version of the Linux kernel.\n\nDue to a bug in the Linux kernel, your system may stop responding when writing data to a VeraCrypt volume. This problem can be solved by upgrading the kernel to version 2.6.24 or later.</entry>
<entry lang="en" key="LINUX_VOL_UNMOUNTED">Volume {0} has been unmounted.</entry>
<entry lang="en" key="LINUX_VOL_MOUNTED">Volume {0} has been mounted.</entry>
@@ -1668,8 +1664,9 @@
<entry lang="en" key="PIM_ARGON2_LARGE_WARNING">You have chosen an Argon2 PIM value that is larger than VeraCrypt default value.\nPlease note that this can require more memory and lead to much slower mounting.</entry>
<entry lang="en" key="PIM_ARGON2_SMALL_WARNING">You have chosen an Argon2 PIM value that is smaller than the default VeraCrypt value. Please note that if your password is not strong enough, this could lead to weaker security.\n\nDo you confirm that you are using a strong password?</entry>
<entry lang="en" key="PIM_ARGON2_REQUIRE_LONG_PASSWORD">Password must contain 20 or more characters in order to use the specified Argon2 PIM.\nShorter passwords can only be used if the Argon2 PIM is 12 or greater.</entry>
<entry lang="en" key="LINUX_PREF_MOUNT_NTFS_WITH_NTFS3">Mount NTFS volumes with the Linux kernel ntfs3 driver</entry>
<entry lang="en" key="LINUX_PREF_MOUNT_NTFS_WITH_NTFS3_HELP">Linux only. When enabled, VeraCrypt probes the decrypted virtual device with blkid -p and mounts detected NTFS filesystems with ntfs3 instead of the default NTFS backend. If NTFS detection fails, VeraCrypt uses the normal automatic filesystem selection. If ntfs3 is unavailable or blocked by the distribution, mounting may fail. This opt-in option can avoid suspend or hibernate hangs caused by frozen user-space FUSE filesystems.</entry>
<entry lang="en" key="LINUX_PREF_MOUNT_NTFS_WITH_KERNEL_DRIVER">Mount NTFS volumes with an in-kernel Linux driver</entry>
<entry lang="en" key="LINUX_PREF_MOUNT_NTFS_WITH_KERNEL_DRIVER_HELP">Linux only. When enabled and no explicit filesystem type was supplied, VeraCrypt probes the decrypted virtual device with blkid -p and mounts detected NTFS filesystems with an available in-kernel NTFS driver, bypassing mount helpers such as ntfs-3g. VeraCrypt uses ntfs when it is positively identified as a modern read/write driver or expected on Linux 7.1 or later, and otherwise uses ntfs3. If NTFS detection fails, VeraCrypt uses the normal automatic filesystem selection. If no supported in-kernel NTFS driver is available or loadable, mounting fails. This opt-in option can avoid suspend or hibernate hangs caused by frozen user-space FUSE filesystems.</entry>
<entry lang="en" key="LINUX_KERNEL_NTFS_DRIVER_UNAVAILABLE">No supported in-kernel NTFS driver is available or loadable. To use the system default NTFS backend, disable the NTFS kernel-driver preference or do not request kernel NTFS explicitly.</entry>
<entry lang="en" key="LINUX_EMERGENCY_UNMOUNT_WARNING">Normal unmount of volume {0} failed. This can happen when applications still have files or directories open on the volume, or when the backing device was disconnected and the mount became stale.\n\nIf the device is still connected, choose No, close applications using the volume, and try unmounting again.\n\nIf the device was disconnected or the mount is stale, VeraCrypt can attempt emergency cleanup by lazy-detaching the filesystem and removing or scheduling removal of VeraCrypt kernel objects. Pending writes may have failed, data may be lost, and cleanup may remain pending until applications close open files. Check the filesystem with fsck or the appropriate repair tool before using it again.\n\nContinue?</entry>
<entry lang="en" key="LINUX_EMERGENCY_UNMOUNTED">Emergency cleanup for volume {0} has been initiated. If the volume was disconnected, the mount was stale, or there were pending writes, check the filesystem with fsck or the appropriate repair tool before using it again.</entry>
<entry lang="en" key="FORMAT_STAGE_WRITING_DATA">Creating volume data. Please wait.</entry>
+42 -45
View File
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<VeraCrypt>
<localization prog-version="1.26.28">
<localization prog-version="1.26.29">
<language langid="fi" name="Suomi" en-name="Finnish" version="0.4.0" translators="Matti Ruhanen, Jertzukka" />
<font lang="fi" class="normal" size="11" face="default" />
<font lang="fi" class="bold" size="13" face="Arial" />
@@ -1517,10 +1517,6 @@
<entry lang="fi" key="LINUX_MOUNTET_HINT">Valitun laitteen tietojärjestelmä on jo liitetty. Poista liitos '{0}' ennen kuin jatkat.</entry>
<entry lang="fi" key="LINUX_HIDDEN_PASS_NO_DIFF">Piilotetulla taltiolla ei voi olla sama salasana, PIM ja avaintiedostot kuin Ulommalla taltiolla.</entry>
<entry lang="fi" key="LINUX_NOT_FAT_HINT">Ota huomioon että taltiota ei alusteta FAT-tietojärjestelmällä, tästä johtuen voit joutua asentamaan ylimääräisiä tiedostojärjestelmäajureita liittääksesi taltion muilla kuin {0} alustalla.</entry>
<entry lang="fi" key="LINUX_ERROR_SIZE_HIDDEN_VOL">Virhe: Luotava piilotettu taltio on suurempi kuin {0} Tt ({1} Gt).\n\nMahdollisia ratkaisuja:\n- Luo säilö/osio joka on pienempi kuin {0} Tt.\n</entry>
<entry lang="fi" key="LINUX_MAX_SIZE_HINT">- Käytä levyä jossa on 4096 tavun sektorikoko voidaksesi luoda osio/laitepohjaisia piilotettuja taltioita 16 Tt asti.</entry>
<entry lang="fi" key="LINUX_DOT_LF">.\n</entry>
<entry lang="fi" key="LINUX_NOT_SUPPORTED"> (ei ole tuettu tällä alustalla saatavilla olevilla komponenteilla).\n</entry>
<entry lang="fi" key="LINUX_KERNEL_OLD">Järjestelmässäsi on käytössä vanha Linux-ydin.\n\nLinux-ytimessä olevan vian vuoksi järjestelmäsi voi lakata vastaamasta kirjoittaessasi dataa VeraCrypt taltioon. Tämä ongelma voidaan ratkaista päivittämällä Linux-ydin versioon 2.6.24 tai uudempaan.</entry>
<entry lang="fi" key="LINUX_VOL_UNMOUNTED">Taltion {0} liitos on poistettu.</entry>
<entry lang="fi" key="LINUX_VOL_MOUNTED">Taltio {0} on liitetty.</entry>
@@ -1647,46 +1643,47 @@
<entry lang="fi" key="IDC_DISABLE_SCREEN_PROTECTION">Ota kuvakaappaus- ja näytöntallennussuojaus pois käytöstä</entry>
<entry lang="fi" key="DISABLE_SCREEN_PROTECTION_WARNING">VAROITUS: Kuvakaappaus- ja näytöntallennussuojauksen poistaminen käytöstä heikentää tietoturvaa merkittävästi. Ota tämä käyttöön VAIN, jos sinun täytyy erityisesti tallentaa VeraCryptin käyttöliittymä. Tämä voi paljastaa arkaluontoisia tietoja kuvakaappausohjelmille ja näytöntallennusominaisuuksille, kuten Windows 11 Recall.</entry>
<entry lang="fi" key="MEMORY_COST">Muistikustannus</entry>
<entry lang="en" key="IDT_KDF_ALGO">KDF Algorithm</entry>
<entry lang="en" key="IDD_PREFERENCES_TAB_GENERAL">General</entry>
<entry lang="en" key="IDD_PREFERENCES_TAB_ACTIONS">Actions</entry>
<entry lang="en" key="IDD_PREFERENCES_TAB_PASSWORD">Password</entry>
<entry lang="en" key="IDC_SECURE_DESKTOP_ENABLE_IME">Enable Input Method Editor (IME) in Secure Desktop</entry>
<entry lang="en" key="ENABLE_IME_IN_SECURE_DESKTOP_WARNING">WARNING: Enable this option only if you are encountering issues when selecting Keyfiles/Tokens under Secure Desktop.</entry>
<entry lang="en" key="ERR_KEY_DERIVATION_FAILED">Key derivation failed. This may be caused by insufficient memory or an interrupted operation.</entry>
<entry lang="en" key="EFI_MS_BOOT_LOADER_RESTORE_FAILED">The system partition/drive is already decrypted, but the EFI Microsoft boot loader path was not restored to the Windows Boot Manager. Only the EFI boot files need repair. Use the VeraCrypt Rescue Disk repair option, or boot Windows recovery media and run 'bcdboot W:\\Windows /s S: /f UEFI' after replacing W: with the Windows volume drive letter and S: with the EFI System Partition drive letter. Path:</entry>
<entry lang="en" key="EFI_FALLBACK_BOOT_LOADER_STILL_VERACRYPT">The system partition/drive is already decrypted, but the EFI fallback boot loader path still contains the VeraCrypt Boot Loader. Only the EFI boot files need repair. Use the VeraCrypt Rescue Disk repair option, or boot Windows recovery media and run 'bcdboot W:\\Windows /s S: /f UEFI' after replacing W: with the Windows volume drive letter and S: with the EFI System Partition drive letter. Path:</entry>
<entry lang="en" key="IDM_REPAIR_EFI_BOOT_LOADER">Repair EFI Boot Loader...</entry>
<entry lang="en" key="CONFIRM_REPAIR_EFI_BOOT_LOADER">VeraCrypt will restore the Windows EFI boot loader paths and remove VeraCrypt EFI boot entries and files.\n\nUse this only after the system partition/drive is fully decrypted and Windows can boot without system encryption.\n\nDo you want to continue?</entry>
<entry lang="en" key="EFI_BOOT_LOADER_FILE_READ_FAILED">The EFI boot loader file could not be read completely:</entry>
<entry lang="en" key="EFI_BOOT_LOADER_FILE_TOO_LARGE">The EFI boot loader file is unexpectedly large and was not inspected:</entry>
<entry lang="en" key="EFI_BOOT_LOADER_NVRAM_CLEANUP_FAILED">The system partition/drive is already decrypted and the EFI boot loader files were restored, but VeraCrypt could not remove one or more VeraCrypt firmware boot entries. The VeraCrypt EFI files were left in place so any remaining firmware entry still points to an existing loader. Retry as Administrator or remove the VeraCrypt boot entry from firmware setup after confirming Windows Boot Manager starts normally.</entry>
<entry lang="en" key="EFI_BOOT_LOADER_REPAIR_BLOCKED">The EFI boot loader cannot be repaired while system encryption or decryption is active or incomplete. Complete or resume the pending system encryption/decryption process before retrying.</entry>
<entry lang="en" key="EFI_BOOT_LOADER_REPAIR_NOT_APPLICABLE">This repair action is available only on systems booting in UEFI mode from a GPT system partition.</entry>
<entry lang="en" key="EFI_BOOT_LOADER_REPAIR_SUCCESS">The EFI boot loader has been repaired successfully.</entry>
<entry lang="en" key="PIM_ARGON2_HELP">PIM (Personal Iterations Multiplier) controls the memory and time costs used by Argon2id header key derivation as follows:\n Memory = min(64 MiB + ((PIM - 1) x 32 MiB), 1024 MiB)\n Iterations = 3 + ((PIM - 1) / 3) for PIM 31 or lower, then 13 + (PIM - 31)\n\nWhen left empty or set to 0, VeraCrypt will use the default Argon2 PIM (12), which uses 416 MiB of memory and 6 iterations.\n\nWhen the password is less than 20 characters, Argon2 PIM can't be smaller than 12 in order to maintain a minimal security level.\nWhen the password is 20 characters or more, Argon2 PIM can be set to any value.\n\nAn Argon2 PIM larger than 12 increases memory usage up to 1024 MiB and then increases iterations. This will lead to slower mounting. A small Argon2 PIM (less than 12) will lead to quicker mounting but it can reduce security if the password is not strong enough.</entry>
<entry lang="en" key="PIM_ARGON2_LARGE_WARNING">You have chosen an Argon2 PIM value that is larger than VeraCrypt default value.\nPlease note that this can require more memory and lead to much slower mounting.</entry>
<entry lang="en" key="PIM_ARGON2_SMALL_WARNING">You have chosen an Argon2 PIM value that is smaller than the default VeraCrypt value. Please note that if your password is not strong enough, this could lead to weaker security.\n\nDo you confirm that you are using a strong password?</entry>
<entry lang="en" key="PIM_ARGON2_REQUIRE_LONG_PASSWORD">Password must contain 20 or more characters in order to use the specified Argon2 PIM.\nShorter passwords can only be used if the Argon2 PIM is 12 or greater.</entry>
<entry lang="en" key="LINUX_PREF_MOUNT_NTFS_WITH_NTFS3">Mount NTFS volumes with the Linux kernel ntfs3 driver</entry>
<entry lang="en" key="LINUX_PREF_MOUNT_NTFS_WITH_NTFS3_HELP">Linux only. When enabled, VeraCrypt probes the decrypted virtual device with blkid -p and mounts detected NTFS filesystems with ntfs3 instead of the default NTFS backend. If NTFS detection fails, VeraCrypt uses the normal automatic filesystem selection. If ntfs3 is unavailable or blocked by the distribution, mounting may fail. This opt-in option can avoid suspend or hibernate hangs caused by frozen user-space FUSE filesystems.</entry>
<entry lang="en" key="LINUX_EMERGENCY_UNMOUNT_WARNING">Normal unmount of volume {0} failed. This can happen when applications still have files or directories open on the volume, or when the backing device was disconnected and the mount became stale.\n\nIf the device is still connected, choose No, close applications using the volume, and try unmounting again.\n\nIf the device was disconnected or the mount is stale, VeraCrypt can attempt emergency cleanup by lazy-detaching the filesystem and removing or scheduling removal of VeraCrypt kernel objects. Pending writes may have failed, data may be lost, and cleanup may remain pending until applications close open files. Check the filesystem with fsck or the appropriate repair tool before using it again.\n\nContinue?</entry>
<entry lang="en" key="LINUX_EMERGENCY_UNMOUNTED">Emergency cleanup for volume {0} has been initiated. If the volume was disconnected, the mount was stale, or there were pending writes, check the filesystem with fsck or the appropriate repair tool before using it again.</entry>
<entry lang="en" key="FORMAT_STAGE_WRITING_DATA">Creating volume data. Please wait.</entry>
<entry lang="en" key="FORMAT_STAGE_WRITING_BACKUP_HEADER">Finalizing volume creation: writing backup header.</entry>
<entry lang="en" key="FORMAT_STAGE_FLUSHING_DATA">Finalizing volume creation: flushing data to disk. This can take several minutes on large volumes or slow/USB storage.</entry>
<entry lang="en" key="FORMAT_STAGE_FINISHED">Finalizing volume creation.</entry>
<entry lang="en" key="FORMAT_STAGE_ABORTED">Volume creation has been aborted.</entry>
<entry lang="en" key="FORMAT_STAGE_ERROR">Volume creation failed.</entry>
<entry lang="en" key="FORMAT_STAGE_PREPARING_TEMP_VOLUME">Finalizing volume creation: mounting temporary volume.</entry>
<entry lang="en" key="FORMAT_STAGE_PREPARING_TEMP_DEVICE">Finalizing volume creation: preparing temporary device.</entry>
<entry lang="en" key="FORMAT_STAGE_CREATING_FILESYSTEM">Finalizing volume creation: creating filesystem using {0}.</entry>
<entry lang="en" key="FORMAT_STAGE_DISMOUNTING_TEMP_VOLUME">Finalizing volume creation: dismounting temporary volume.</entry>
<entry lang="en" key="MACOSX_APFS_SYNTHESIZED_DEVICE">The selected device '{0}' is an APFS synthesized container or volume and cannot be used as a raw VeraCrypt volume host.\n\nSelect the physical APFS store partition{1} instead.</entry>
<entry lang="en" key="MACOSX_DEVICE_SYSTEM_PARTITION">The selected device '{0}' is a macOS system/support partition and cannot be used as a VeraCrypt volume host.</entry>
<entry lang="en" key="MACOSX_APFS_SYSTEM_STORE">The selected APFS physical store '{0}' contains the currently mounted macOS system volume and cannot be used as a VeraCrypt volume host.</entry>
<entry lang="en" key="MACOSX_DEVICE_NOT_WRITABLE">macOS reports the selected device '{0}' as read-only. Select a writable physical partition or disk.</entry>
<entry lang="en" key="MACOSX_APFS_EROFS_HINT">macOS reported the selected device as read-only. If this is an APFS disk, make sure you selected the physical APFS store partition, not an APFS synthesized volume. Use Disk Utility or 'diskutil list' to identify the physical partition, then retry.</entry>
<entry lang="fi" key="IDT_KDF_ALGO">KDF-algoritmi</entry>
<entry lang="fi" key="IDD_PREFERENCES_TAB_GENERAL">Yleiset</entry>
<entry lang="fi" key="IDD_PREFERENCES_TAB_ACTIONS">Toiminnot</entry>
<entry lang="fi" key="IDD_PREFERENCES_TAB_PASSWORD">Salasana</entry>
<entry lang="fi" key="IDC_SECURE_DESKTOP_ENABLE_IME">Ota syöttömenetelmäeditori (IME) käyttöön Secure Desktop -tilassa</entry>
<entry lang="fi" key="ENABLE_IME_IN_SECURE_DESKTOP_WARNING">VAROITUS: Ota tämä asetus käyttöön vain, jos avaintiedostojen/turvallisuustunnisteiden valinnassa Secure Desktop -tilassa ilmenee ongelmia.</entry>
<entry lang="fi" key="ERR_KEY_DERIVATION_FAILED">Avaimen johtaminen epäonnistui. Tämä voi johtua riittämättömästä muistista tai keskeytyneestä toiminnosta.</entry>
<entry lang="fi" key="EFI_MS_BOOT_LOADER_RESTORE_FAILED">Järjestelmäosio/-asema on jo purettu salauksesta, mutta Microsoftin EFI-käynnistysohjelman polkua ei palautettu Windows Boot Manageriin. Vain EFI-käynnistystiedostot on korjattava. Käytä VeraCryptin pelastuslevyn korjaustoimintoa tai käynnistä Windowsin palautusvälineeltä ja suorita 'bcdboot W:\\Windows /s S: /f UEFI' sen jälkeen, kun olet korvannut W: Windows-taltion asemakirjaimella ja S: EFI-järjestelmäosion asemakirjaimella. Polku:</entry>
<entry lang="fi" key="EFI_FALLBACK_BOOT_LOADER_STILL_VERACRYPT">Järjestelmäosio/-asema on jo purettu salauksesta, mutta EFI-varakäynnistysohjelman polku sisältää yhä VeraCryptin käynnistysohjelman. Vain EFI-käynnistystiedostot on korjattava. Käytä VeraCryptin pelastuslevyn korjaustoimintoa tai käynnistä Windowsin palautusvälineeltä ja suorita 'bcdboot W:\\Windows /s S: /f UEFI' sen jälkeen, kun olet korvannut W: Windows-taltion asemakirjaimella ja S: EFI-järjestelmäosion asemakirjaimella. Polku:</entry>
<entry lang="fi" key="IDM_REPAIR_EFI_BOOT_LOADER">Korjaa EFI-käynnistysohjelma...</entry>
<entry lang="fi" key="CONFIRM_REPAIR_EFI_BOOT_LOADER">VeraCrypt palauttaa Windowsin EFI-käynnistysohjelman polut ja poistaa VeraCryptin EFI-käynnistysmerkinnät ja -tiedostot.\n\nKäytä tätä vain sen jälkeen, kun järjestelmäosio/-asema on kokonaan purettu salauksesta ja Windows käynnistyy ilman järjestelmäsalausta.\n\nHaluatko jatkaa?</entry>
<entry lang="fi" key="EFI_BOOT_LOADER_FILE_READ_FAILED">EFI-käynnistysohjelman tiedostoa ei voitu lukea kokonaan:</entry>
<entry lang="fi" key="EFI_BOOT_LOADER_FILE_TOO_LARGE">EFI-käynnistysohjelman tiedosto on odottamattoman suuri, eikä sitä tarkistettu:</entry>
<entry lang="fi" key="EFI_BOOT_LOADER_NVRAM_CLEANUP_FAILED">Järjestelmäosio/-asema on jo purettu salauksesta ja EFI-käynnistysohjelman tiedostot palautettiin, mutta VeraCrypt ei voinut poistaa yhtä tai useampaa laiteohjelmistossa olevaa VeraCrypt-käynnistysmerkintää. VeraCryptin EFI-tiedostot jätettiin paikalleen, jotta jäljellä olevat laiteohjelmiston merkinnät osoittavat yhä olemassa olevaan käynnistysohjelmaan. Yritä uudelleen järjestelmänvalvojana tai poista VeraCryptin käynnistysmerkintä laiteohjelmiston asetuksista varmistettuasi, että Windows Boot Manager käynnistyy normaalisti.</entry>
<entry lang="fi" key="EFI_BOOT_LOADER_REPAIR_BLOCKED">EFI-käynnistysohjelmaa ei voi korjata, kun järjestelmän salaus tai salauksen purku on käynnissä tai keskeneräinen. Suorita tai jatka kesken oleva järjestelmän salaus-/salauksenpurkuprosessi loppuun ennen uudelleen yrittämistä.</entry>
<entry lang="fi" key="EFI_BOOT_LOADER_REPAIR_NOT_APPLICABLE">Tämä korjaustoiminto on käytettävissä vain järjestelmissä, jotka käynnistyvät UEFI-tilassa GPT-järjestelmäosiolta.</entry>
<entry lang="fi" key="EFI_BOOT_LOADER_REPAIR_SUCCESS">EFI-käynnistysohjelma on korjattu onnistuneesti.</entry>
<entry lang="fi" key="PIM_ARGON2_HELP">PIM (henkilökohtainen iteraatiokerroin) säätää Argon2id-otsikkoavaimen johtamisessa käytettäviä muisti- ja aikakustannuksia seuraavasti:\n Muisti = min(64 MiB + ((PIM - 1) x 32 MiB), 1024 MiB)\n Iteraatiot = 3 + ((PIM - 1) / 3), kun PIM on 31 tai pienempi, sen jälkeen 13 + (PIM - 31)\n\nKun kenttä jätetään tyhjäksi tai asetetaan arvoon 0, VeraCrypt käyttää Argon2:n oletus-PIM-arvoa (12), joka käyttää 416 MiB muistia ja 6 iteraatiota.\n\nKun salasana on alle 20 merkkiä pitkä, Argon2-PIM ei voi olla pienempi kuin 12, jotta vähimmäisturvataso säilyy.\nKun salasana on vähintään 20 merkkiä pitkä, Argon2-PIM voidaan asettaa mihin tahansa arvoon.\n\nYli 12:n Argon2-PIM lisää muistin käyttöä 1024 MiB:iin asti ja kasvattaa sen jälkeen iteraatioiden määrää. Tämä hidastaa liittämistä. Pieni Argon2-PIM (alle 12) nopeuttaa liittämistä, mutta se voi heikentää turvallisuutta, jos salasana ei ole tarpeeksi vahva.</entry>
<entry lang="fi" key="PIM_ARGON2_LARGE_WARNING">Valitsit Argon2-PIM-arvon, joka on suurempi kuin VeraCryptin oletusarvo.\nHuomioi, että tämä voi vaatia enemmän muistia ja hidastaa liittämistä huomattavasti.</entry>
<entry lang="fi" key="PIM_ARGON2_SMALL_WARNING">Valitsit Argon2-PIM-arvon, joka on pienempi kuin VeraCryptin oletusarvo. Huomioi, että jos salasanasi ei ole tarpeeksi vahva, tämä voi heikentää turvallisuutta.\n\nVahvistatko käyttäväsi vahvaa salasanaa?</entry>
<entry lang="fi" key="PIM_ARGON2_REQUIRE_LONG_PASSWORD">Salasanan tulee sisältää vähintään 20 merkkiä, jotta määritettyä Argon2-PIM-arvoa voidaan käyttää.\nLyhyempiä salasanoja voidaan käyttää vain, jos Argon2-PIM on 12 tai suurempi.</entry>
<entry lang="fi" key="LINUX_PREF_MOUNT_NTFS_WITH_KERNEL_DRIVER">Liitä NTFS-taltiot Linux-ytimen sisäisellä ajurilla</entry>
<entry lang="fi" key="LINUX_PREF_MOUNT_NTFS_WITH_KERNEL_DRIVER_HELP">Vain Linux. Kun tämä asetus on käytössä eikä tiedostojärjestelmän tyyppiä ole annettu erikseen, VeraCrypt tutkii salauksen puretun virtuaalilaitteen komennolla blkid -p ja liittää havaitut NTFS-tiedostojärjestelmät käytettävissä olevalla ytimen sisäisellä NTFS-ajurilla ohittaen liittämisapureiden, kuten ntfs-3g:n, käytön. VeraCrypt käyttää ntfs-ajuria, kun se tunnistetaan varmasti moderniksi luku-/kirjoitusajuriksi tai kun sitä odotetaan Linux-versiossa 7.1 tai uudemmassa, ja muulloin ntfs3-ajuria. Jos NTFS-tunnistus epäonnistuu, VeraCrypt käyttää normaalia automaattista tiedostojärjestelmän valintaa. Jos tuettua ytimen sisäistä NTFS-ajuria ei ole käytettävissä tai ladattavissa, liittäminen epäonnistuu. Tämä erikseen valittava asetus voi välttää virransäästö- tai horrostilaan siirtymisen jumittumisen, jonka jäätyneet käyttäjätilan FUSE-tiedostojärjestelmät aiheuttavat.</entry>
<entry lang="fi" key="LINUX_KERNEL_NTFS_DRIVER_UNAVAILABLE">Tuettua ytimen sisäistä NTFS-ajuria ei ole käytettävissä tai ladattavissa. Jos haluat käyttää järjestelmän oletusarvoista NTFS-taustajärjestelmää, poista NTFS-ydinajurin asetus käytöstä tai älä pyydä ytimen NTFS-ajuria erikseen.</entry>
<entry lang="fi" key="LINUX_EMERGENCY_UNMOUNT_WARNING">Taltion {0} normaali irrotus epäonnistui. Näin voi tapahtua, kun sovelluksilla on yhä tiedostoja tai hakemistoja avoinna taltiolla, tai kun isäntälaite irrotettiin ja liitos vanheni.\n\nJos laite on edelleen kytkettynä, valitse Ei, sulje taltiota käyttävät sovellukset ja yritä irrottaa taltio uudelleen.\n\nJos laite irrotettiin tai liitos on vanhentunut, VeraCrypt voi yrittää hätätilanteen puhdistusta käyttämällä tiedostojärjestelmän lazy-irrotusta ja poistamalla VeraCryptin ytimen objektit tai ajoittamalla niiden poiston. Odottavat kirjoitukset ovat saattaneet epäonnistua, tietoja on voinut kadota ja puhdistus voi pysyä odottavana, kunnes sovellukset sulkevat avoimet tiedostot. Tarkista tiedostojärjestelmä fsck:lla tai sopivalla korjaustyökalulla ennen kuin käytät sitä uudelleen.\n\nJatketaanko?</entry>
<entry lang="fi" key="LINUX_EMERGENCY_UNMOUNTED">Taltion {0} hätätilanteen puhdistus on aloitettu. Jos taltio irrotettiin, liitos oli vanhentunut tai odottavia kirjoituksia oli, tarkista tiedostojärjestelmä fsck:lla tai sopivalla korjaustyökalulla ennen kuin käytät sitä uudelleen.</entry>
<entry lang="fi" key="FORMAT_STAGE_WRITING_DATA">Luodaan taltion dataa. Odota.</entry>
<entry lang="fi" key="FORMAT_STAGE_WRITING_BACKUP_HEADER">Viimeistellään taltion luontia: kirjoitetaan varaotsikkoa.</entry>
<entry lang="fi" key="FORMAT_STAGE_FLUSHING_DATA">Viimeistellään taltion luontia: varmistetaan datan kirjoitus levylle. Tämä voi kestää useita minuutteja suurilla taltioilla tai hitaalla/USB-tallennusvälineellä.</entry>
<entry lang="fi" key="FORMAT_STAGE_FINISHED">Viimeistellään taltion luontia.</entry>
<entry lang="fi" key="FORMAT_STAGE_ABORTED">Taltion luonti on keskeytetty.</entry>
<entry lang="fi" key="FORMAT_STAGE_ERROR">Taltion luonti epäonnistui.</entry>
<entry lang="fi" key="FORMAT_STAGE_PREPARING_TEMP_VOLUME">Viimeistellään taltion luontia: liitetään väliaikainen taltio.</entry>
<entry lang="fi" key="FORMAT_STAGE_PREPARING_TEMP_DEVICE">Viimeistellään taltion luontia: valmistellaan väliaikaista laitetta.</entry>
<entry lang="fi" key="FORMAT_STAGE_CREATING_FILESYSTEM">Viimeistellään taltion luontia: luodaan tiedostojärjestelmä käyttäen {0}.</entry>
<entry lang="fi" key="FORMAT_STAGE_DISMOUNTING_TEMP_VOLUME">Viimeistellään taltion luontia: irrotetaan väliaikainen taltio.</entry>
<entry lang="fi" key="MACOSX_APFS_SYNTHESIZED_DEVICE">Valittu laite '{0}' on APFS:n syntetisoitu säilö tai taltio, eikä sitä voi käyttää raakamuotoisen VeraCrypt-taltion isäntänä.\n\nValitse sen sijaan fyysinen APFS-tallennusosio{1}.</entry>
<entry lang="fi" key="MACOSX_DEVICE_SYSTEM_PARTITION">Valittu laite '{0}' on macOS-järjestelmä- tai tukiosio, eikä sitä voi käyttää VeraCrypt-taltion isäntänä.</entry>
<entry lang="fi" key="MACOSX_APFS_SYSTEM_STORE">Valittu fyysinen APFS-tallennusosio '{0}' sisältää parhaillaan liitetyn macOS-järjestelmätaltion, eikä sitä voi käyttää VeraCrypt-taltion isäntänä.</entry>
<entry lang="fi" key="MACOSX_DEVICE_NOT_WRITABLE">macOS ilmoittaa valitun laitteen '{0}' olevan vain luku -tilassa. Valitse kirjoituskelpoinen fyysinen osio tai levy.</entry>
<entry lang="fi" key="MACOSX_APFS_EROFS_HINT">macOS ilmoitti valitun laitteen olevan vain luku -tilassa. Jos kyseessä on APFS-levy, varmista, että valitsit fyysisen APFS-tallennusosion etkä APFS:n syntetisoitua taltiota. Käytä Levytyökalua tai komentoa 'diskutil list' fyysisen osion tunnistamiseen ja yritä sitten uudelleen.</entry>
</localization>
<xs:schema attributeFormDefault="unqualified" elementFormDefault="qualified" xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:element name="VeraCrypt">
+36 -39
View File
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<VeraCrypt>
<localization prog-version="1.26.28">
<localization prog-version="1.26.29">
<language langid="fr" name="Français" en-name="French" version="0.3.0" translators="Stéphane S., Olivier M., Thierry T, Mounir IDRASSI" />
<font lang="fr" class="normal" size="11" face="default" />
<font lang="fr" class="bold" size="13" face="Arial" />
@@ -1517,10 +1517,6 @@
<entry lang="fr" key="LINUX_MOUNTET_HINT">Le système de fichiers de l'appareil sélectionné est actuellement monté. Veuillez démonter '{0}' avant de continuer.</entry>
<entry lang="fr" key="LINUX_HIDDEN_PASS_NO_DIFF">Le volume caché ne peut pas avoir le même mot de passe, PIM et fichiers-clés que le volume externe.</entry>
<entry lang="fr" key="LINUX_NOT_FAT_HINT">Notez que le volume ne sera pas formaté avec un système de fichiers FAT et, par conséquent, vous pourriez devoir installer des pilotes supplémentaires sur des plateformes autres que {0} pour pouvoir monter le volume.</entry>
<entry lang="fr" key="LINUX_ERROR_SIZE_HIDDEN_VOL">Erreur : Le volume caché à créer est plus grand que {0} To ({1} Go).\n\nSolutions possibles :\n- Créez un conteneur ou une partition plus petit(e) que {0} To.\n</entry>
<entry lang="fr" key="LINUX_MAX_SIZE_HINT">- Utilisez un lecteur avec des secteurs de 4096 octets pour pouvoir créer des volumes cachés jusqu'à 16 To.</entry>
<entry lang="fr" key="LINUX_DOT_LF">.\n</entry>
<entry lang="fr" key="LINUX_NOT_SUPPORTED"> (non pris en charge par les composants disponibles sur cette plateforme).\n</entry>
<entry lang="fr" key="LINUX_KERNEL_OLD">Votre système utilise une ancienne version du noyau Linux.\n\nEn raison d'un bogue dans le noyau Linux, votre système peut cesser de répondre lors de l'écriture de données sur un volume VeraCrypt. Ce problème peut être résolu en mettant à jour le noyau vers la version 2.6.24 ou ultérieure.</entry>
<entry lang="fr" key="LINUX_VOL_UNMOUNTED">Le volume {0} a été démonté.</entry>
<entry lang="fr" key="LINUX_VOL_MOUNTED">Le volume {0} a été monté.</entry>
@@ -1653,40 +1649,41 @@
<entry lang="fr" key="IDD_PREFERENCES_TAB_PASSWORD">Mot de passe</entry>
<entry lang="fr" key="IDC_SECURE_DESKTOP_ENABLE_IME">Activer l'éditeur de méthode de saisie (IME) dans le bureau sécurisé</entry>
<entry lang="fr" key="ENABLE_IME_IN_SECURE_DESKTOP_WARNING">AVERTISSEMENT : Activez cette option uniquement si vous rencontrez des problèmes lors de la sélection de fichiers clés/tokens dans le bureau sécurisé.</entry>
<entry lang="en" key="ERR_KEY_DERIVATION_FAILED">Key derivation failed. This may be caused by insufficient memory or an interrupted operation.</entry>
<entry lang="en" key="EFI_MS_BOOT_LOADER_RESTORE_FAILED">The system partition/drive is already decrypted, but the EFI Microsoft boot loader path was not restored to the Windows Boot Manager. Only the EFI boot files need repair. Use the VeraCrypt Rescue Disk repair option, or boot Windows recovery media and run 'bcdboot W:\\Windows /s S: /f UEFI' after replacing W: with the Windows volume drive letter and S: with the EFI System Partition drive letter. Path:</entry>
<entry lang="en" key="EFI_FALLBACK_BOOT_LOADER_STILL_VERACRYPT">The system partition/drive is already decrypted, but the EFI fallback boot loader path still contains the VeraCrypt Boot Loader. Only the EFI boot files need repair. Use the VeraCrypt Rescue Disk repair option, or boot Windows recovery media and run 'bcdboot W:\\Windows /s S: /f UEFI' after replacing W: with the Windows volume drive letter and S: with the EFI System Partition drive letter. Path:</entry>
<entry lang="en" key="IDM_REPAIR_EFI_BOOT_LOADER">Repair EFI Boot Loader...</entry>
<entry lang="en" key="CONFIRM_REPAIR_EFI_BOOT_LOADER">VeraCrypt will restore the Windows EFI boot loader paths and remove VeraCrypt EFI boot entries and files.\n\nUse this only after the system partition/drive is fully decrypted and Windows can boot without system encryption.\n\nDo you want to continue?</entry>
<entry lang="en" key="EFI_BOOT_LOADER_FILE_READ_FAILED">The EFI boot loader file could not be read completely:</entry>
<entry lang="en" key="EFI_BOOT_LOADER_FILE_TOO_LARGE">The EFI boot loader file is unexpectedly large and was not inspected:</entry>
<entry lang="en" key="EFI_BOOT_LOADER_NVRAM_CLEANUP_FAILED">The system partition/drive is already decrypted and the EFI boot loader files were restored, but VeraCrypt could not remove one or more VeraCrypt firmware boot entries. The VeraCrypt EFI files were left in place so any remaining firmware entry still points to an existing loader. Retry as Administrator or remove the VeraCrypt boot entry from firmware setup after confirming Windows Boot Manager starts normally.</entry>
<entry lang="en" key="EFI_BOOT_LOADER_REPAIR_BLOCKED">The EFI boot loader cannot be repaired while system encryption or decryption is active or incomplete. Complete or resume the pending system encryption/decryption process before retrying.</entry>
<entry lang="en" key="EFI_BOOT_LOADER_REPAIR_NOT_APPLICABLE">This repair action is available only on systems booting in UEFI mode from a GPT system partition.</entry>
<entry lang="en" key="EFI_BOOT_LOADER_REPAIR_SUCCESS">The EFI boot loader has been repaired successfully.</entry>
<entry lang="en" key="PIM_ARGON2_HELP">PIM (Personal Iterations Multiplier) controls the memory and time costs used by Argon2id header key derivation as follows:\n Memory = min(64 MiB + ((PIM - 1) x 32 MiB), 1024 MiB)\n Iterations = 3 + ((PIM - 1) / 3) for PIM 31 or lower, then 13 + (PIM - 31)\n\nWhen left empty or set to 0, VeraCrypt will use the default Argon2 PIM (12), which uses 416 MiB of memory and 6 iterations.\n\nWhen the password is less than 20 characters, Argon2 PIM can't be smaller than 12 in order to maintain a minimal security level.\nWhen the password is 20 characters or more, Argon2 PIM can be set to any value.\n\nAn Argon2 PIM larger than 12 increases memory usage up to 1024 MiB and then increases iterations. This will lead to slower mounting. A small Argon2 PIM (less than 12) will lead to quicker mounting but it can reduce security if the password is not strong enough.</entry>
<entry lang="en" key="PIM_ARGON2_LARGE_WARNING">You have chosen an Argon2 PIM value that is larger than VeraCrypt default value.\nPlease note that this can require more memory and lead to much slower mounting.</entry>
<entry lang="en" key="PIM_ARGON2_SMALL_WARNING">You have chosen an Argon2 PIM value that is smaller than the default VeraCrypt value. Please note that if your password is not strong enough, this could lead to weaker security.\n\nDo you confirm that you are using a strong password?</entry>
<entry lang="en" key="PIM_ARGON2_REQUIRE_LONG_PASSWORD">Password must contain 20 or more characters in order to use the specified Argon2 PIM.\nShorter passwords can only be used if the Argon2 PIM is 12 or greater.</entry>
<entry lang="en" key="LINUX_PREF_MOUNT_NTFS_WITH_NTFS3">Mount NTFS volumes with the Linux kernel ntfs3 driver</entry>
<entry lang="en" key="LINUX_PREF_MOUNT_NTFS_WITH_NTFS3_HELP">Linux only. When enabled, VeraCrypt probes the decrypted virtual device with blkid -p and mounts detected NTFS filesystems with ntfs3 instead of the default NTFS backend. If NTFS detection fails, VeraCrypt uses the normal automatic filesystem selection. If ntfs3 is unavailable or blocked by the distribution, mounting may fail. This opt-in option can avoid suspend or hibernate hangs caused by frozen user-space FUSE filesystems.</entry>
<entry lang="en" key="LINUX_EMERGENCY_UNMOUNT_WARNING">Normal unmount of volume {0} failed. This can happen when applications still have files or directories open on the volume, or when the backing device was disconnected and the mount became stale.\n\nIf the device is still connected, choose No, close applications using the volume, and try unmounting again.\n\nIf the device was disconnected or the mount is stale, VeraCrypt can attempt emergency cleanup by lazy-detaching the filesystem and removing or scheduling removal of VeraCrypt kernel objects. Pending writes may have failed, data may be lost, and cleanup may remain pending until applications close open files. Check the filesystem with fsck or the appropriate repair tool before using it again.\n\nContinue?</entry>
<entry lang="en" key="LINUX_EMERGENCY_UNMOUNTED">Emergency cleanup for volume {0} has been initiated. If the volume was disconnected, the mount was stale, or there were pending writes, check the filesystem with fsck or the appropriate repair tool before using it again.</entry>
<entry lang="en" key="FORMAT_STAGE_WRITING_DATA">Creating volume data. Please wait.</entry>
<entry lang="en" key="FORMAT_STAGE_WRITING_BACKUP_HEADER">Finalizing volume creation: writing backup header.</entry>
<entry lang="en" key="FORMAT_STAGE_FLUSHING_DATA">Finalizing volume creation: flushing data to disk. This can take several minutes on large volumes or slow/USB storage.</entry>
<entry lang="en" key="FORMAT_STAGE_FINISHED">Finalizing volume creation.</entry>
<entry lang="en" key="FORMAT_STAGE_ABORTED">Volume creation has been aborted.</entry>
<entry lang="en" key="FORMAT_STAGE_ERROR">Volume creation failed.</entry>
<entry lang="en" key="FORMAT_STAGE_PREPARING_TEMP_VOLUME">Finalizing volume creation: mounting temporary volume.</entry>
<entry lang="en" key="FORMAT_STAGE_PREPARING_TEMP_DEVICE">Finalizing volume creation: preparing temporary device.</entry>
<entry lang="en" key="FORMAT_STAGE_CREATING_FILESYSTEM">Finalizing volume creation: creating filesystem using {0}.</entry>
<entry lang="en" key="FORMAT_STAGE_DISMOUNTING_TEMP_VOLUME">Finalizing volume creation: dismounting temporary volume.</entry>
<entry lang="en" key="MACOSX_APFS_SYNTHESIZED_DEVICE">The selected device '{0}' is an APFS synthesized container or volume and cannot be used as a raw VeraCrypt volume host.\n\nSelect the physical APFS store partition{1} instead.</entry>
<entry lang="en" key="MACOSX_DEVICE_SYSTEM_PARTITION">The selected device '{0}' is a macOS system/support partition and cannot be used as a VeraCrypt volume host.</entry>
<entry lang="en" key="MACOSX_APFS_SYSTEM_STORE">The selected APFS physical store '{0}' contains the currently mounted macOS system volume and cannot be used as a VeraCrypt volume host.</entry>
<entry lang="en" key="MACOSX_DEVICE_NOT_WRITABLE">macOS reports the selected device '{0}' as read-only. Select a writable physical partition or disk.</entry>
<entry lang="en" key="MACOSX_APFS_EROFS_HINT">macOS reported the selected device as read-only. If this is an APFS disk, make sure you selected the physical APFS store partition, not an APFS synthesized volume. Use Disk Utility or 'diskutil list' to identify the physical partition, then retry.</entry>
<entry lang="fr" key="ERR_KEY_DERIVATION_FAILED">La dérivation de la clé a échoué. Cela peut être dû à une mémoire insuffisante ou à une opération interrompue.</entry>
<entry lang="fr" key="EFI_MS_BOOT_LOADER_RESTORE_FAILED">La partition/le disque système est déjà déchiffré, mais le chemin du chargeur de démarrage EFI de Microsoft na pas été restauré vers le Gestionnaire de démarrage Windows. Seuls les fichiers de démarrage EFI doivent être réparés. Utilisez loption de réparation du disque de secours VeraCrypt ou démarrez sur un média de récupération Windows et exécutez 'bcdboot W:\\Windows /s S: /f UEFI' après avoir remplacé W: par la lettre du volume Windows et S: par la lettre de la partition système EFI. Chemin :</entry>
<entry lang="fr" key="EFI_FALLBACK_BOOT_LOADER_STILL_VERACRYPT">La partition/le disque système est déjà déchiffré, mais le chemin du chargeur de démarrage EFI de secours contient encore le chargeur de démarrage VeraCrypt. Seuls les fichiers de démarrage EFI doivent être réparés. Utilisez loption de réparation du disque de secours VeraCrypt ou démarrez sur un média de récupération Windows et exécutez 'bcdboot W:\\Windows /s S: /f UEFI' après avoir remplacé W: par la lettre du volume Windows et S: par la lettre de la partition système EFI. Chemin :</entry>
<entry lang="fr" key="IDM_REPAIR_EFI_BOOT_LOADER">Réparer le chargeur de démarrage EFI...</entry>
<entry lang="fr" key="CONFIRM_REPAIR_EFI_BOOT_LOADER">VeraCrypt va restaurer les chemins du chargeur de démarrage EFI de Windows et supprimer les entrées et fichiers de démarrage EFI de VeraCrypt.\n\nUtilisez cette option uniquement après que la partition/le disque système a été entièrement déchiffré et que Windows peut démarrer sans chiffrement système.\n\nVoulez-vous continuer ?</entry>
<entry lang="fr" key="EFI_BOOT_LOADER_FILE_READ_FAILED">Le fichier du chargeur de démarrage EFI na pas pu être lu entièrement :</entry>
<entry lang="fr" key="EFI_BOOT_LOADER_FILE_TOO_LARGE">Le fichier du chargeur de démarrage EFI est anormalement volumineux et na pas été inspecté :</entry>
<entry lang="fr" key="EFI_BOOT_LOADER_NVRAM_CLEANUP_FAILED">La partition/le disque système est déjà déchiffré et les fichiers du chargeur de démarrage EFI ont été restaurés, mais VeraCrypt na pas pu supprimer une ou plusieurs entrées de démarrage VeraCrypt du firmware. Les fichiers EFI de VeraCrypt ont été laissés en place afin que toute entrée restante du firmware pointe toujours vers un chargeur existant. Réessayez en tant quadministrateur ou supprimez lentrée de démarrage VeraCrypt depuis la configuration du firmware après avoir confirmé que le Gestionnaire de démarrage Windows démarre normalement.</entry>
<entry lang="fr" key="EFI_BOOT_LOADER_REPAIR_BLOCKED">Le chargeur de démarrage EFI ne peut pas être réparé tant quun chiffrement ou déchiffrement du système est actif ou incomplet. Terminez ou reprenez le processus de chiffrement/déchiffrement du système en attente avant de réessayer.</entry>
<entry lang="fr" key="EFI_BOOT_LOADER_REPAIR_NOT_APPLICABLE">Cette action de réparation est disponible uniquement sur les systèmes démarrant en mode UEFI depuis une partition système GPT.</entry>
<entry lang="fr" key="EFI_BOOT_LOADER_REPAIR_SUCCESS">Le chargeur de démarrage EFI a été réparé avec succès.</entry>
<entry lang="fr" key="PIM_ARGON2_HELP">PIM (Personal Iterations Multiplier) contrôle les coûts en mémoire et en temps utilisés par la dérivation de la clé den-tête Argon2id comme suit:\n Mémoire = min(64 Mo + ((PIM - 1) x 32 Mo), 1024 Mo)\n Itérations = 3 + ((PIM - 1) / 3) pour un PIM inférieur ou égal à 31, puis 13 + (PIM - 31)\n\nLorsque ce champ est laissé vide ou défini à 0, VeraCrypt utilisera le PIM Argon2 par défaut (12), qui utilise 416 Mo de mémoire et 6 itérations.\n\nLorsque le mot de passe contient moins de 20 caractères, le PIM Argon2 ne peut pas être inférieur à 12 afin de maintenir un niveau minimal de sécurité.\nLorsque le mot de passe contient 20 caractères ou plus, le PIM Argon2 peut être défini à nimporte quelle valeur.\n\nUn PIM Argon2 supérieur à 12 augmente lutilisation de la mémoire jusqu’à 1024 Mo puis augmente le nombre ditérations. Cela aboutira à un montage plus lent. Un PIM Argon2 faible (inférieur à 12) conduira à un montage plus rapide mais cela peut réduire la sécurité si le mot de passe nest pas assez fort.</entry>
<entry lang="fr" key="PIM_ARGON2_LARGE_WARNING">Vous avez choisi une valeur de PIM Argon2 supérieure à la valeur par défaut de VeraCrypt.\nNotez que cela peut nécessiter plus de mémoire et aboutir à un montage beaucoup plus lent.</entry>
<entry lang="fr" key="PIM_ARGON2_SMALL_WARNING">Vous avez choisi une valeur de PIM Argon2 inférieure à la valeur par défaut de VeraCrypt. Notez que si votre mot de passe nest pas assez fort, cela pourrait réduire la sécurité.\n\nConfirmez-vous que vous utilisez un mot de passe fort ?</entry>
<entry lang="fr" key="PIM_ARGON2_REQUIRE_LONG_PASSWORD">Le mot de passe doit contenir 20 caractères ou plus afin dutiliser le PIM Argon2 spécifié.\nLes mots de passe plus courts ne peuvent être utilisés que si le PIM Argon2 est supérieur ou égal à 12.</entry>
<entry lang="fr" key="LINUX_PREF_MOUNT_NTFS_WITH_KERNEL_DRIVER">Monter les volumes NTFS avec un pilote intégré au noyau Linux</entry>
<entry lang="fr" key="LINUX_PREF_MOUNT_NTFS_WITH_KERNEL_DRIVER_HELP">Linux uniquement. Lorsque cette option est activée et quaucun type explicite de système de fichiers na été fourni, VeraCrypt sonde le périphérique virtuel déchiffré avec blkid -p et monte les systèmes de fichiers NTFS détectés avec un pilote NTFS intégré au noyau disponible, en contournant les utilitaires de montage tels que ntfs-3g. VeraCrypt utilise ntfs lorsquil est identifié avec certitude comme un pilote moderne en lecture/écriture ou attendu sous Linux 7.1 ou ultérieur, et utilise ntfs3 dans les autres cas. Si la détection NTFS échoue, VeraCrypt utilise la sélection automatique normale du système de fichiers. Si aucun pilote NTFS intégré au noyau pris en charge nest disponible ou chargeable, le montage échoue. Cette option facultative peut éviter les blocages de mise en veille ou dhibernation causés par des systèmes de fichiers FUSE en espace utilisateur figés.</entry>
<entry lang="fr" key="LINUX_KERNEL_NTFS_DRIVER_UNAVAILABLE">Aucun pilote NTFS intégré au noyau pris en charge nest disponible ou chargeable. Pour utiliser le mécanisme NTFS par défaut du système, désactivez la préférence de pilote NTFS intégré au noyau ou ne demandez pas explicitement le NTFS du noyau.</entry>
<entry lang="fr" key="LINUX_EMERGENCY_UNMOUNT_WARNING">Le démontage normal du volume {0} a échoué. Cela peut arriver lorsque des applications ont encore des fichiers ou des répertoires ouverts sur le volume, ou lorsque le périphérique hôte a été déconnecté et que le montage est devenu périmé.\n\nSi le périphérique est toujours connecté, choisissez Non, fermez les applications utilisant le volume, puis essayez de le démonter à nouveau.\n\nSi le périphérique a été déconnecté ou si le montage est périmé, VeraCrypt peut tenter un nettoyage durgence en détachant de manière différée le système de fichiers et en supprimant ou en programmant la suppression des objets du noyau VeraCrypt. Les écritures en attente peuvent avoir échoué, des données peuvent être perdues, et le nettoyage peut rester en attente jusqu’à ce que les applications ferment les fichiers ouverts. Vérifiez le système de fichiers avec fsck ou loutil de réparation approprié avant de lutiliser à nouveau.\n\nContinuer ?</entry>
<entry lang="fr" key="LINUX_EMERGENCY_UNMOUNTED">Le nettoyage durgence du volume {0} a été lancé. Si le volume a été déconnecté, si le montage était périmé ou sil y avait des écritures en attente, vérifiez le système de fichiers avec fsck ou loutil de réparation approprié avant de lutiliser à nouveau.</entry>
<entry lang="fr" key="FORMAT_STAGE_WRITING_DATA">Création des données du volume. Merci de patienter.</entry>
<entry lang="fr" key="FORMAT_STAGE_WRITING_BACKUP_HEADER">Finalisation de la création du volume : écriture de len-tête de sauvegarde.</entry>
<entry lang="fr" key="FORMAT_STAGE_FLUSHING_DATA">Finalisation de la création du volume : synchronisation des données sur le disque. Cela peut prendre plusieurs minutes sur les grands volumes ou les supports lents/USB.</entry>
<entry lang="fr" key="FORMAT_STAGE_FINISHED">Finalisation de la création du volume.</entry>
<entry lang="fr" key="FORMAT_STAGE_ABORTED">La création du volume a été abandonnée.</entry>
<entry lang="fr" key="FORMAT_STAGE_ERROR">La création du volume a échoué.</entry>
<entry lang="fr" key="FORMAT_STAGE_PREPARING_TEMP_VOLUME">Finalisation de la création du volume : montage du volume temporaire.</entry>
<entry lang="fr" key="FORMAT_STAGE_PREPARING_TEMP_DEVICE">Finalisation de la création du volume : préparation du périphérique temporaire.</entry>
<entry lang="fr" key="FORMAT_STAGE_CREATING_FILESYSTEM">Finalisation de la création du volume : création du système de fichiers avec {0}.</entry>
<entry lang="fr" key="FORMAT_STAGE_DISMOUNTING_TEMP_VOLUME">Finalisation de la création du volume : démontage du volume temporaire.</entry>
<entry lang="fr" key="MACOSX_APFS_SYNTHESIZED_DEVICE">Le périphérique sélectionné '{0}' est un conteneur ou volume APFS synthétisé et ne peut pas être utilisé comme hôte brut de volume VeraCrypt.\n\nSélectionnez plutôt la partition physique de stockage APFS{1}.</entry>
<entry lang="fr" key="MACOSX_DEVICE_SYSTEM_PARTITION">Le périphérique sélectionné '{0}' est une partition système ou de support macOS et ne peut pas être utilisé comme hôte de volume VeraCrypt.</entry>
<entry lang="fr" key="MACOSX_APFS_SYSTEM_STORE">Le support physique APFS sélectionné '{0}' contient le volume système macOS actuellement monté et ne peut pas être utilisé comme hôte de volume VeraCrypt.</entry>
<entry lang="fr" key="MACOSX_DEVICE_NOT_WRITABLE">macOS signale que le périphérique sélectionné '{0}' est en lecture seule. Sélectionnez une partition physique ou un disque accessible en écriture.</entry>
<entry lang="fr" key="MACOSX_APFS_EROFS_HINT">macOS a signalé que le périphérique sélectionné est en lecture seule. Sil sagit dun disque APFS, assurez-vous davoir sélectionné la partition physique de stockage APFS et non un volume APFS synthétisé. Utilisez lUtilitaire de disque ou 'diskutil list' pour identifier la partition physique, puis réessayez.</entry>
</localization>
<xs:schema attributeFormDefault="unqualified" elementFormDefault="qualified" xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:element name="VeraCrypt">
+4 -7
View File
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<VeraCrypt xmlns:xs="http://www.w3.org/2001/XMLSchema">
<localization prog-version="1.26.28">
<localization prog-version="1.26.29">
<language langid="he" name="עברית" en-name="Hebrew" version="0.1.0" translators="thewh1teagle" />
<font lang="he" class="normal" size="11" face="default" />
<font lang="he" class="bold" size="13" face="Arial" />
@@ -1517,10 +1517,6 @@
<entry lang="he" key="LINUX_MOUNTET_HINT">מערכת הקבצים של ההתקן שנבחר מותקנת כעת.אנא הורד את &amp;apos;{0}&amp;apos; לפני שתמשיך.</entry>
<entry lang="he" key="LINUX_HIDDEN_PASS_NO_DIFF">לאמצעי האחסון הנסתר לא יכולה להיות אותה סיסמה, PIM וקובצי מפתח כמו האמצעי אחסון החיצוני</entry>
<entry lang="he" key="LINUX_NOT_FAT_HINT">שים לב שהאמצעי אחסון לא יעוצב עם מערכת קבצים FAT ולכן ייתכן שתידרש להתקין מנהלי התקנים נוספים של מערכות קבצים בפלטפורמות שאינן {0}, שיאפשרו לך לעלות על אמצעי האחסון.</entry>
<entry lang="he" key="LINUX_ERROR_SIZE_HIDDEN_VOL">שגיאה: האמצעי אחסון הנסתר שייווצר גדול מ- {0} TB ({1} GB). \n \n פתרונות אפשריים: \n- צור מיכל / מחיצה קטנים מ- {0} TB. \n</entry>
<entry lang="he" key="LINUX_MAX_SIZE_HINT">- השתמש בכונן עם מגזרים של 4096 בתים כדי להיות מסוגל ליצור אמצעי אחסון מוסתרים של מחיצות / התקנים בגודל של עד 16 TB.</entry>
<entry lang="he" key="LINUX_DOT_LF"> \n.</entry>
<entry lang="he" key="LINUX_NOT_SUPPORTED">(לא נתמך על ידי רכיבים הזמינים בפלטפורמה זו). \n</entry>
<entry lang="he" key="LINUX_KERNEL_OLD">המערכת שלך משתמשת בגרסה ישנה של ליבת לינוקס. \n \n בשל באג בליבת הלינוקס, המערכת שלך עשויה להפסיק להגיב בעת כתיבת נתונים לאמצעי אחסון VeraCrypt.ניתן לפתור בעיה זו על ידי שדרוג הגרעין לגרסה 2.6.24 ואילך.</entry>
<entry lang="he" key="LINUX_VOL_UNMOUNTED">אמצעי האחסון {0} הוסר.</entry>
<entry lang="he" key="LINUX_VOL_MOUNTED">אמצעי האחסון {0} הותקן.</entry>
@@ -1668,8 +1664,9 @@
<entry lang="en" key="PIM_ARGON2_LARGE_WARNING">You have chosen an Argon2 PIM value that is larger than VeraCrypt default value.\nPlease note that this can require more memory and lead to much slower mounting.</entry>
<entry lang="en" key="PIM_ARGON2_SMALL_WARNING">You have chosen an Argon2 PIM value that is smaller than the default VeraCrypt value. Please note that if your password is not strong enough, this could lead to weaker security.\n\nDo you confirm that you are using a strong password?</entry>
<entry lang="en" key="PIM_ARGON2_REQUIRE_LONG_PASSWORD">Password must contain 20 or more characters in order to use the specified Argon2 PIM.\nShorter passwords can only be used if the Argon2 PIM is 12 or greater.</entry>
<entry lang="en" key="LINUX_PREF_MOUNT_NTFS_WITH_NTFS3">Mount NTFS volumes with the Linux kernel ntfs3 driver</entry>
<entry lang="en" key="LINUX_PREF_MOUNT_NTFS_WITH_NTFS3_HELP">Linux only. When enabled, VeraCrypt probes the decrypted virtual device with blkid -p and mounts detected NTFS filesystems with ntfs3 instead of the default NTFS backend. If NTFS detection fails, VeraCrypt uses the normal automatic filesystem selection. If ntfs3 is unavailable or blocked by the distribution, mounting may fail. This opt-in option can avoid suspend or hibernate hangs caused by frozen user-space FUSE filesystems.</entry>
<entry lang="en" key="LINUX_PREF_MOUNT_NTFS_WITH_KERNEL_DRIVER">Mount NTFS volumes with an in-kernel Linux driver</entry>
<entry lang="en" key="LINUX_PREF_MOUNT_NTFS_WITH_KERNEL_DRIVER_HELP">Linux only. When enabled and no explicit filesystem type was supplied, VeraCrypt probes the decrypted virtual device with blkid -p and mounts detected NTFS filesystems with an available in-kernel NTFS driver, bypassing mount helpers such as ntfs-3g. VeraCrypt uses ntfs when it is positively identified as a modern read/write driver or expected on Linux 7.1 or later, and otherwise uses ntfs3. If NTFS detection fails, VeraCrypt uses the normal automatic filesystem selection. If no supported in-kernel NTFS driver is available or loadable, mounting fails. This opt-in option can avoid suspend or hibernate hangs caused by frozen user-space FUSE filesystems.</entry>
<entry lang="en" key="LINUX_KERNEL_NTFS_DRIVER_UNAVAILABLE">No supported in-kernel NTFS driver is available or loadable. To use the system default NTFS backend, disable the NTFS kernel-driver preference or do not request kernel NTFS explicitly.</entry>
<entry lang="en" key="LINUX_EMERGENCY_UNMOUNT_WARNING">Normal unmount of volume {0} failed. This can happen when applications still have files or directories open on the volume, or when the backing device was disconnected and the mount became stale.\n\nIf the device is still connected, choose No, close applications using the volume, and try unmounting again.\n\nIf the device was disconnected or the mount is stale, VeraCrypt can attempt emergency cleanup by lazy-detaching the filesystem and removing or scheduling removal of VeraCrypt kernel objects. Pending writes may have failed, data may be lost, and cleanup may remain pending until applications close open files. Check the filesystem with fsck or the appropriate repair tool before using it again.\n\nContinue?</entry>
<entry lang="en" key="LINUX_EMERGENCY_UNMOUNTED">Emergency cleanup for volume {0} has been initiated. If the volume was disconnected, the mount was stale, or there were pending writes, check the filesystem with fsck or the appropriate repair tool before using it again.</entry>
<entry lang="en" key="FORMAT_STAGE_WRITING_DATA">Creating volume data. Please wait.</entry>
+4 -7
View File
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<VeraCrypt>
<localization prog-version="1.26.28">
<localization prog-version="1.26.29">
<language langid="hu" name="Magyar" en-name="Hungarian" version="1.0.0" translators="Nyul Balazs > Szaki, Zityi's Translator Te@m" />
<font lang="hu" class="normal" size="11" face="default" />
<font lang="hu" class="bold" size="13" face="Arial" />
@@ -1517,10 +1517,6 @@
<entry lang="hu" key="LINUX_MOUNTET_HINT">A kiválasztott eszköz fájlrendszere jelenleg csatolva van. A folytatás előtt válassza le a(z) '{0}' eszközt.</entry>
<entry lang="hu" key="LINUX_HIDDEN_PASS_NO_DIFF">A rejtett kötet nem rendelkezhet ugyanazzal a jelszóval, PIM-mel és kulcsfájlokkal, mint a külső kötet</entry>
<entry lang="hu" key="LINUX_NOT_FAT_HINT">Felhívjuk figyelmét, hogy a kötet nem FAT fájlrendszerrel lesz formázva, ezért előfordulhat, hogy további fájlrendszer-illesztőprogramokat kell telepítenie a(z) {0} kívüli platformokra, amelyek lehetővé teszik a kötet csatolását.</entry>
<entry lang="hu" key="LINUX_ERROR_SIZE_HIDDEN_VOL">Hiba: A létrehozandó rejtett kötet nagyobb, mint {0} TB ({1} GB).\n\nLehetséges megoldások:\n- Hozzon létre egy tárolót/partíciót, amely kisebb, mint {0} TB.\n</entry>
<entry lang="hu" key="LINUX_MAX_SIZE_HINT">- Használjon 4096 bájtos szektorokkal rendelkező meghajtót, akár 16 TB méretű partíció/eszköz által tárolt rejtett kötetek létrehozására</entry>
<entry lang="hu" key="LINUX_DOT_LF">.\n</entry>
<entry lang="hu" key="LINUX_NOT_SUPPORTED"> (az aktuális platformon elérhető összetevők nem támogatják).\n</entry>
<entry lang="hu" key="LINUX_KERNEL_OLD">Rendszere a Linux kernel régi verzióját használja.\n\nA Linux kernel hibája miatt előfordulhat, hogy rendszere nem válaszol, miközben adatokat ír egy VeraCrypt kötetre. Ez a probléma megoldható a kernel 2.6.24-es vagy újabb verziójára történő frissítésével.</entry>
<entry lang="hu" key="LINUX_VOL_UNMOUNTED">A(z) {0} kötet le van választva.</entry>
<entry lang="hu" key="LINUX_VOL_MOUNTED">A(z) {0} kötet csatlakoztatva lett.</entry>
@@ -1668,8 +1664,9 @@
<entry lang="en" key="PIM_ARGON2_LARGE_WARNING">You have chosen an Argon2 PIM value that is larger than VeraCrypt default value.\nPlease note that this can require more memory and lead to much slower mounting.</entry>
<entry lang="en" key="PIM_ARGON2_SMALL_WARNING">You have chosen an Argon2 PIM value that is smaller than the default VeraCrypt value. Please note that if your password is not strong enough, this could lead to weaker security.\n\nDo you confirm that you are using a strong password?</entry>
<entry lang="en" key="PIM_ARGON2_REQUIRE_LONG_PASSWORD">Password must contain 20 or more characters in order to use the specified Argon2 PIM.\nShorter passwords can only be used if the Argon2 PIM is 12 or greater.</entry>
<entry lang="en" key="LINUX_PREF_MOUNT_NTFS_WITH_NTFS3">Mount NTFS volumes with the Linux kernel ntfs3 driver</entry>
<entry lang="en" key="LINUX_PREF_MOUNT_NTFS_WITH_NTFS3_HELP">Linux only. When enabled, VeraCrypt probes the decrypted virtual device with blkid -p and mounts detected NTFS filesystems with ntfs3 instead of the default NTFS backend. If NTFS detection fails, VeraCrypt uses the normal automatic filesystem selection. If ntfs3 is unavailable or blocked by the distribution, mounting may fail. This opt-in option can avoid suspend or hibernate hangs caused by frozen user-space FUSE filesystems.</entry>
<entry lang="en" key="LINUX_PREF_MOUNT_NTFS_WITH_KERNEL_DRIVER">Mount NTFS volumes with an in-kernel Linux driver</entry>
<entry lang="en" key="LINUX_PREF_MOUNT_NTFS_WITH_KERNEL_DRIVER_HELP">Linux only. When enabled and no explicit filesystem type was supplied, VeraCrypt probes the decrypted virtual device with blkid -p and mounts detected NTFS filesystems with an available in-kernel NTFS driver, bypassing mount helpers such as ntfs-3g. VeraCrypt uses ntfs when it is positively identified as a modern read/write driver or expected on Linux 7.1 or later, and otherwise uses ntfs3. If NTFS detection fails, VeraCrypt uses the normal automatic filesystem selection. If no supported in-kernel NTFS driver is available or loadable, mounting fails. This opt-in option can avoid suspend or hibernate hangs caused by frozen user-space FUSE filesystems.</entry>
<entry lang="en" key="LINUX_KERNEL_NTFS_DRIVER_UNAVAILABLE">No supported in-kernel NTFS driver is available or loadable. To use the system default NTFS backend, disable the NTFS kernel-driver preference or do not request kernel NTFS explicitly.</entry>
<entry lang="en" key="LINUX_EMERGENCY_UNMOUNT_WARNING">Normal unmount of volume {0} failed. This can happen when applications still have files or directories open on the volume, or when the backing device was disconnected and the mount became stale.\n\nIf the device is still connected, choose No, close applications using the volume, and try unmounting again.\n\nIf the device was disconnected or the mount is stale, VeraCrypt can attempt emergency cleanup by lazy-detaching the filesystem and removing or scheduling removal of VeraCrypt kernel objects. Pending writes may have failed, data may be lost, and cleanup may remain pending until applications close open files. Check the filesystem with fsck or the appropriate repair tool before using it again.\n\nContinue?</entry>
<entry lang="en" key="LINUX_EMERGENCY_UNMOUNTED">Emergency cleanup for volume {0} has been initiated. If the volume was disconnected, the mount was stale, or there were pending writes, check the filesystem with fsck or the appropriate repair tool before using it again.</entry>
<entry lang="en" key="FORMAT_STAGE_WRITING_DATA">Creating volume data. Please wait.</entry>
+4 -7
View File
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<VeraCrypt>
<localization prog-version="1.26.28">
<localization prog-version="1.26.29">
<language langid="id" name="Bahasa Indonesia" en-name="Indonesian" version="1.0.0" translators="Tajuddin N. F.; Transifex contributors" />
<font lang="id" class="normal" size="11" face="default" />
<font lang="id" class="bold" size="13" face="Arial" />
@@ -1517,10 +1517,6 @@
<entry lang="id" key="LINUX_MOUNTET_HINT">Sistem file dari perangkat yang dipilih saat ini dipasang. Silakan turun '{0}' sebelum melanjutkan.</entry>
<entry lang="id" key="LINUX_HIDDEN_PASS_NO_DIFF">Volume Tersembunyi tidak dapat memiliki kata sandi, PIM, dan keyfile yang sama dengan volume Luar</entry>
<entry lang="id" key="LINUX_NOT_FAT_HINT">Harap dicatat bahwa volume tidak akan diformat dengan sistem file FAT dan, oleh karena itu, Anda mungkin diminta untuk menginstal driver filesystem tambahan pada platform selain {0}, yang akan memungkinkan Anda untuk me-mount volume.</entry>
<entry lang="id" key="LINUX_ERROR_SIZE_HIDDEN_VOL">Kesalahan: Volume tersembunyi yang akan dibuat lebih besar dari {0} TB ({1} GB {0}).</entry>
<entry lang="id" key="LINUX_MAX_SIZE_HINT">- Gunakan drive dengan sektor 4096-byte untuk dapat membuat volume tersembunyi partisi / perangkat-host hingga 16 TB dalam ukuran</entry>
<entry lang="id" key="LINUX_DOT_LF">.\n</entry>
<entry lang="id" key="LINUX_NOT_SUPPORTED"> (tidak didukung oleh komponen yang tersedia di platform ini).</entry>
<entry lang="id" key="LINUX_KERNEL_OLD">Sistem Anda menggunakan versi lama dari kernel Linux. Masalah ini dapat diselesaikan dengan memutakhirkan kernel ke versi 2.6.24 atau yang lebih baru.</entry>
<entry lang="id" key="LINUX_VOL_UNMOUNTED">Volume {0} telah turun.</entry>
<entry lang="id" key="LINUX_VOL_MOUNTED">Volume {0} telah dikaitkan.</entry>
@@ -1668,8 +1664,9 @@
<entry lang="en" key="PIM_ARGON2_LARGE_WARNING">You have chosen an Argon2 PIM value that is larger than VeraCrypt default value.\nPlease note that this can require more memory and lead to much slower mounting.</entry>
<entry lang="en" key="PIM_ARGON2_SMALL_WARNING">You have chosen an Argon2 PIM value that is smaller than the default VeraCrypt value. Please note that if your password is not strong enough, this could lead to weaker security.\n\nDo you confirm that you are using a strong password?</entry>
<entry lang="en" key="PIM_ARGON2_REQUIRE_LONG_PASSWORD">Password must contain 20 or more characters in order to use the specified Argon2 PIM.\nShorter passwords can only be used if the Argon2 PIM is 12 or greater.</entry>
<entry lang="en" key="LINUX_PREF_MOUNT_NTFS_WITH_NTFS3">Mount NTFS volumes with the Linux kernel ntfs3 driver</entry>
<entry lang="en" key="LINUX_PREF_MOUNT_NTFS_WITH_NTFS3_HELP">Linux only. When enabled, VeraCrypt probes the decrypted virtual device with blkid -p and mounts detected NTFS filesystems with ntfs3 instead of the default NTFS backend. If NTFS detection fails, VeraCrypt uses the normal automatic filesystem selection. If ntfs3 is unavailable or blocked by the distribution, mounting may fail. This opt-in option can avoid suspend or hibernate hangs caused by frozen user-space FUSE filesystems.</entry>
<entry lang="en" key="LINUX_PREF_MOUNT_NTFS_WITH_KERNEL_DRIVER">Mount NTFS volumes with an in-kernel Linux driver</entry>
<entry lang="en" key="LINUX_PREF_MOUNT_NTFS_WITH_KERNEL_DRIVER_HELP">Linux only. When enabled and no explicit filesystem type was supplied, VeraCrypt probes the decrypted virtual device with blkid -p and mounts detected NTFS filesystems with an available in-kernel NTFS driver, bypassing mount helpers such as ntfs-3g. VeraCrypt uses ntfs when it is positively identified as a modern read/write driver or expected on Linux 7.1 or later, and otherwise uses ntfs3. If NTFS detection fails, VeraCrypt uses the normal automatic filesystem selection. If no supported in-kernel NTFS driver is available or loadable, mounting fails. This opt-in option can avoid suspend or hibernate hangs caused by frozen user-space FUSE filesystems.</entry>
<entry lang="en" key="LINUX_KERNEL_NTFS_DRIVER_UNAVAILABLE">No supported in-kernel NTFS driver is available or loadable. To use the system default NTFS backend, disable the NTFS kernel-driver preference or do not request kernel NTFS explicitly.</entry>
<entry lang="en" key="LINUX_EMERGENCY_UNMOUNT_WARNING">Normal unmount of volume {0} failed. This can happen when applications still have files or directories open on the volume, or when the backing device was disconnected and the mount became stale.\n\nIf the device is still connected, choose No, close applications using the volume, and try unmounting again.\n\nIf the device was disconnected or the mount is stale, VeraCrypt can attempt emergency cleanup by lazy-detaching the filesystem and removing or scheduling removal of VeraCrypt kernel objects. Pending writes may have failed, data may be lost, and cleanup may remain pending until applications close open files. Check the filesystem with fsck or the appropriate repair tool before using it again.\n\nContinue?</entry>
<entry lang="en" key="LINUX_EMERGENCY_UNMOUNTED">Emergency cleanup for volume {0} has been initiated. If the volume was disconnected, the mount was stale, or there were pending writes, check the filesystem with fsck or the appropriate repair tool before using it again.</entry>
<entry lang="en" key="FORMAT_STAGE_WRITING_DATA">Creating volume data. Please wait.</entry>
+40 -43
View File
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<VeraCrypt>
<localization prog-version="1.26.28">
<localization prog-version="1.26.29">
<language langid="it" name="Italiano" en-name="Italian" version="1.0.1" translators="Maurizio Ballo, Consiglio Gaetano" />
<font lang="it" class="normal" size="11" face="default" />
<font lang="it" class="bold" size="13" face="Arial" />
@@ -295,7 +295,7 @@
<entry lang="it" key="IDT_NEW_KDF">KDF:</entry>
<entry lang="it" key="IDT_PW_CACHE_OPTIONS">Password nascoste</entry>
<entry lang="it" key="IDT_SECURITY_OPTIONS">Opzioni sicurezza</entry>
<entry lang="en" key="IDT_EMV_OPTIONS">EMV Options</entry>
<entry lang="it" key="IDT_EMV_OPTIONS">Opzioni EMV</entry>
<entry lang="it" key="IDT_TASKBAR_ICON">Esecuzione di VeraCrypt in background</entry>
<entry lang="it" key="IDT_TRAVELER_MOUNT">Volume VeraCrypt da montare (relativo alla radice del Traveler Disk):</entry>
<entry lang="it" key="IDT_TRAVEL_INSERTION">Sull'inserimento del Traveler Disk:</entry>
@@ -390,7 +390,7 @@
<entry lang="it" key="ADMINISTRATOR">Amministratore</entry>
<entry lang="it" key="ADMIN_PRIVILEGES_DRIVER">Per caricare il driver VeraCrypt è necessario accedere come utente con privilegi di amministratore.</entry>
<entry lang="it" key="ADMIN_PRIVILEGES_WARN_DEVICES">Per codificare/decodificare/formattare un unità/partizione è necessario accedere come utente con privilegi di amministratore.\n\nQuesta restrizione non si applica ai volumi basati su file.</entry>
<entry lang="en" key="ADMIN_PRIVILEGES_WARN_MANAGE_VOLUME">Unable to activate fast file creation: Administrator privileges required.\nPlease relaunch the program as an Administrator to enable this feature.\n\nWould you like to proceed without fast file creation?</entry>
<entry lang="it" key="ADMIN_PRIVILEGES_WARN_MANAGE_VOLUME">Impossibile attivare la Creazione Veloce: sono richiesti privilegi di amministratore.\nRiavvia il programma come Amministratore per abilitare questa funzione.\n\nVuoi procedere senza Creazione Veloce?</entry>
<entry lang="it" key="ADMIN_PRIVILEGES_WARN_HIDVOL">Per creare un volume nascosto è necessario accedere come utente con privilegi di amministratore.\n\nContinuare?</entry>
<entry lang="it" key="ADMIN_PRIVILEGES_WARN_NTFS">Per formattare il volume come NTFS è necessario accedere come utente con privilegi di amministratore.\n\nSenza i privilegi di amministrazione si può formattare il volume come FAT.</entry>
<entry lang="it" key="AES_HELP">Algoritmo di codifica (Rijndael, pubblicato nel 1998) approvato per la FIPS, che può essere usato dai dipartimenti ed agenzie federali U.S.A. per proteggere le informazioni Top Secret.\nChiave a 256-bit, blocco a 128-bit, 14 passaggi (AES-256).\nModo operativo XTS.</entry>
@@ -940,7 +940,7 @@
<entry lang="it" key="ENTER_HEADER_BACKUP_PASSWORD">Digitare la password per la testa memorizzata nel file di backup</entry>
<entry lang="it" key="KEYFILE_CREATED">Il file chiave è stato creato correttamente.</entry>
<entry lang="it" key="KEYFILE_INCORRECT_NUMBER">Il numero di file chiavi che hai fornito non è valido.</entry>
<entry lang="en" key="KEYFILE_INCORRECT_SIZE">The keyfile size must be at least 64 bytes.</entry>
<entry lang="it" key="KEYFILE_INCORRECT_SIZE">La dimensione del file chiave deve essere almeno 64 byte.</entry>
<entry lang="it" key="KEYFILE_EMPTY_BASE_NAME">Per favore inserisci un nome per il/i file chiave per essere generato/i.</entry>
<entry lang="it" key="KEYFILE_INVALID_BASE_NAME">Il nome del(dei) file chiave di base non è valido</entry>
<entry lang="it" key="KEYFILE_ALREADY_EXISTS">Il file chiave '%s' esiste già.\nVuoi sovrascriverlo? Il processo di generazione sarà interrotto se rispondi No.</entry>
@@ -1517,13 +1517,9 @@
<entry lang="it" key="LINUX_MOUNTET_HINT">Il filesystem del dispositivo selezionato è attualmente montato.\nSmonta '{0}' prima di procedere.</entry>
<entry lang="it" key="LINUX_HIDDEN_PASS_NO_DIFF">Il volume nascosto non può avere la stessa password, PIM e files di chiavi come volume esterno</entry>
<entry lang="it" key="LINUX_NOT_FAT_HINT">Tieni presente che il volume non verrà formattato con un filesystem FAT e, pertanto, potrebbe essere necessario installare un driver del filesystem aggiuntivo in piattaforme diverse da {0}, che ti consentiranno di montare il volume.</entry>
<entry lang="it" key="LINUX_ERROR_SIZE_HIDDEN_VOL">Errore: il volume nascosto da creare è maggiore di {0} TB ({1} GB).\n\nSoluzioni possibili:\n- Crea un contenitore/partizione più piccolo di {0} TB.\n</entry>
<entry lang="it" key="LINUX_MAX_SIZE_HINT">- Per poter creare volumi nascosti ospitati su partizioni/dispositivi fino ad una dimensione di 16 TB usa un'unità con settori da 4096 byte </entry>
<entry lang="it" key="LINUX_DOT_LF">.\n</entry>
<entry lang="it" key="LINUX_NOT_SUPPORTED">(non supportato dai componenti disponibili su questa piattaforma).\n</entry>
<entry lang="it" key="LINUX_KERNEL_OLD">Il sistema usa una vecchia versione del kernel Linux.\n\nA causa di un bug nel kernel Linux, il sistema potrebbe smettere di rispondere quando scrivi dati su un volume VeraCrypt.\nQuesto problema può essere risolto aggiornando il kernel alla versione 2.6.24 o successiva.</entry>
<entry lang="it" key="LINUX_VOL_UNMOUNTED">Il volume {0} è stato smontato.</entry>
<entry lang="en" key="LINUX_VOL_MOUNTED">Volume {0} has been mounted.</entry>
<entry lang="it" key="LINUX_VOL_MOUNTED">Il volume {0} è stato montato.</entry>
<entry lang="it" key="LINUX_OOM">Memoria esaurita.</entry>
<entry lang="it" key="LINUX_CANT_GET_ADMIN_PRIV">Impossibile ottenere i privilegi di amministratore</entry>
<entry lang="it" key="LINUX_COMMAND_GET_ERROR">Il comando {0} ha restituito un errore {1}.</entry>
@@ -1653,40 +1649,41 @@
<entry lang="it" key="IDD_PREFERENCES_TAB_PASSWORD">Password</entry>
<entry lang="it" key="IDC_SECURE_DESKTOP_ENABLE_IME">Abilita l'editor del metodo di input (IME) nel Desktop sicuro</entry>
<entry lang="it" key="ENABLE_IME_IN_SECURE_DESKTOP_WARNING">ATTENZIONE: Abilita questa opzione SOLO se riscontri problemi durante la selezione di file chiave o token nel Desktop sicuro.</entry>
<entry lang="en" key="ERR_KEY_DERIVATION_FAILED">Key derivation failed. This may be caused by insufficient memory or an interrupted operation.</entry>
<entry lang="en" key="EFI_MS_BOOT_LOADER_RESTORE_FAILED">The system partition/drive is already decrypted, but the EFI Microsoft boot loader path was not restored to the Windows Boot Manager. Only the EFI boot files need repair. Use the VeraCrypt Rescue Disk repair option, or boot Windows recovery media and run 'bcdboot W:\\Windows /s S: /f UEFI' after replacing W: with the Windows volume drive letter and S: with the EFI System Partition drive letter. Path:</entry>
<entry lang="en" key="EFI_FALLBACK_BOOT_LOADER_STILL_VERACRYPT">The system partition/drive is already decrypted, but the EFI fallback boot loader path still contains the VeraCrypt Boot Loader. Only the EFI boot files need repair. Use the VeraCrypt Rescue Disk repair option, or boot Windows recovery media and run 'bcdboot W:\\Windows /s S: /f UEFI' after replacing W: with the Windows volume drive letter and S: with the EFI System Partition drive letter. Path:</entry>
<entry lang="en" key="IDM_REPAIR_EFI_BOOT_LOADER">Repair EFI Boot Loader...</entry>
<entry lang="en" key="CONFIRM_REPAIR_EFI_BOOT_LOADER">VeraCrypt will restore the Windows EFI boot loader paths and remove VeraCrypt EFI boot entries and files.\n\nUse this only after the system partition/drive is fully decrypted and Windows can boot without system encryption.\n\nDo you want to continue?</entry>
<entry lang="en" key="EFI_BOOT_LOADER_FILE_READ_FAILED">The EFI boot loader file could not be read completely:</entry>
<entry lang="en" key="EFI_BOOT_LOADER_FILE_TOO_LARGE">The EFI boot loader file is unexpectedly large and was not inspected:</entry>
<entry lang="en" key="EFI_BOOT_LOADER_NVRAM_CLEANUP_FAILED">The system partition/drive is already decrypted and the EFI boot loader files were restored, but VeraCrypt could not remove one or more VeraCrypt firmware boot entries. The VeraCrypt EFI files were left in place so any remaining firmware entry still points to an existing loader. Retry as Administrator or remove the VeraCrypt boot entry from firmware setup after confirming Windows Boot Manager starts normally.</entry>
<entry lang="en" key="EFI_BOOT_LOADER_REPAIR_BLOCKED">The EFI boot loader cannot be repaired while system encryption or decryption is active or incomplete. Complete or resume the pending system encryption/decryption process before retrying.</entry>
<entry lang="en" key="EFI_BOOT_LOADER_REPAIR_NOT_APPLICABLE">This repair action is available only on systems booting in UEFI mode from a GPT system partition.</entry>
<entry lang="en" key="EFI_BOOT_LOADER_REPAIR_SUCCESS">The EFI boot loader has been repaired successfully.</entry>
<entry lang="en" key="PIM_ARGON2_HELP">PIM (Personal Iterations Multiplier) controls the memory and time costs used by Argon2id header key derivation as follows:\n Memory = min(64 MiB + ((PIM - 1) x 32 MiB), 1024 MiB)\n Iterations = 3 + ((PIM - 1) / 3) for PIM 31 or lower, then 13 + (PIM - 31)\n\nWhen left empty or set to 0, VeraCrypt will use the default Argon2 PIM (12), which uses 416 MiB of memory and 6 iterations.\n\nWhen the password is less than 20 characters, Argon2 PIM can't be smaller than 12 in order to maintain a minimal security level.\nWhen the password is 20 characters or more, Argon2 PIM can be set to any value.\n\nAn Argon2 PIM larger than 12 increases memory usage up to 1024 MiB and then increases iterations. This will lead to slower mounting. A small Argon2 PIM (less than 12) will lead to quicker mounting but it can reduce security if the password is not strong enough.</entry>
<entry lang="en" key="PIM_ARGON2_LARGE_WARNING">You have chosen an Argon2 PIM value that is larger than VeraCrypt default value.\nPlease note that this can require more memory and lead to much slower mounting.</entry>
<entry lang="en" key="PIM_ARGON2_SMALL_WARNING">You have chosen an Argon2 PIM value that is smaller than the default VeraCrypt value. Please note that if your password is not strong enough, this could lead to weaker security.\n\nDo you confirm that you are using a strong password?</entry>
<entry lang="en" key="PIM_ARGON2_REQUIRE_LONG_PASSWORD">Password must contain 20 or more characters in order to use the specified Argon2 PIM.\nShorter passwords can only be used if the Argon2 PIM is 12 or greater.</entry>
<entry lang="en" key="LINUX_PREF_MOUNT_NTFS_WITH_NTFS3">Mount NTFS volumes with the Linux kernel ntfs3 driver</entry>
<entry lang="en" key="LINUX_PREF_MOUNT_NTFS_WITH_NTFS3_HELP">Linux only. When enabled, VeraCrypt probes the decrypted virtual device with blkid -p and mounts detected NTFS filesystems with ntfs3 instead of the default NTFS backend. If NTFS detection fails, VeraCrypt uses the normal automatic filesystem selection. If ntfs3 is unavailable or blocked by the distribution, mounting may fail. This opt-in option can avoid suspend or hibernate hangs caused by frozen user-space FUSE filesystems.</entry>
<entry lang="en" key="LINUX_EMERGENCY_UNMOUNT_WARNING">Normal unmount of volume {0} failed. This can happen when applications still have files or directories open on the volume, or when the backing device was disconnected and the mount became stale.\n\nIf the device is still connected, choose No, close applications using the volume, and try unmounting again.\n\nIf the device was disconnected or the mount is stale, VeraCrypt can attempt emergency cleanup by lazy-detaching the filesystem and removing or scheduling removal of VeraCrypt kernel objects. Pending writes may have failed, data may be lost, and cleanup may remain pending until applications close open files. Check the filesystem with fsck or the appropriate repair tool before using it again.\n\nContinue?</entry>
<entry lang="en" key="LINUX_EMERGENCY_UNMOUNTED">Emergency cleanup for volume {0} has been initiated. If the volume was disconnected, the mount was stale, or there were pending writes, check the filesystem with fsck or the appropriate repair tool before using it again.</entry>
<entry lang="en" key="FORMAT_STAGE_WRITING_DATA">Creating volume data. Please wait.</entry>
<entry lang="en" key="FORMAT_STAGE_WRITING_BACKUP_HEADER">Finalizing volume creation: writing backup header.</entry>
<entry lang="en" key="FORMAT_STAGE_FLUSHING_DATA">Finalizing volume creation: flushing data to disk. This can take several minutes on large volumes or slow/USB storage.</entry>
<entry lang="en" key="FORMAT_STAGE_FINISHED">Finalizing volume creation.</entry>
<entry lang="en" key="FORMAT_STAGE_ABORTED">Volume creation has been aborted.</entry>
<entry lang="en" key="FORMAT_STAGE_ERROR">Volume creation failed.</entry>
<entry lang="en" key="FORMAT_STAGE_PREPARING_TEMP_VOLUME">Finalizing volume creation: mounting temporary volume.</entry>
<entry lang="en" key="FORMAT_STAGE_PREPARING_TEMP_DEVICE">Finalizing volume creation: preparing temporary device.</entry>
<entry lang="en" key="FORMAT_STAGE_CREATING_FILESYSTEM">Finalizing volume creation: creating filesystem using {0}.</entry>
<entry lang="en" key="FORMAT_STAGE_DISMOUNTING_TEMP_VOLUME">Finalizing volume creation: dismounting temporary volume.</entry>
<entry lang="en" key="MACOSX_APFS_SYNTHESIZED_DEVICE">The selected device '{0}' is an APFS synthesized container or volume and cannot be used as a raw VeraCrypt volume host.\n\nSelect the physical APFS store partition{1} instead.</entry>
<entry lang="en" key="MACOSX_DEVICE_SYSTEM_PARTITION">The selected device '{0}' is a macOS system/support partition and cannot be used as a VeraCrypt volume host.</entry>
<entry lang="en" key="MACOSX_APFS_SYSTEM_STORE">The selected APFS physical store '{0}' contains the currently mounted macOS system volume and cannot be used as a VeraCrypt volume host.</entry>
<entry lang="en" key="MACOSX_DEVICE_NOT_WRITABLE">macOS reports the selected device '{0}' as read-only. Select a writable physical partition or disk.</entry>
<entry lang="en" key="MACOSX_APFS_EROFS_HINT">macOS reported the selected device as read-only. If this is an APFS disk, make sure you selected the physical APFS store partition, not an APFS synthesized volume. Use Disk Utility or 'diskutil list' to identify the physical partition, then retry.</entry>
<entry lang="it" key="ERR_KEY_DERIVATION_FAILED">Derivazione della chiave non riuscita. La causa potrebbe essere memoria insufficiente o un'operazione interrotta.</entry>
<entry lang="it" key="EFI_MS_BOOT_LOADER_RESTORE_FAILED">La partizione/unità di sistema è già stata decrittografata, ma il percorso del boot loader EFI Microsoft non è stato ripristinato nel Windows Boot Manager. Solo i file di avvio EFI devono essere riparati. Usa l'opzione di riparazione del VeraCrypt Rescue Disk, oppure avvia un supporto di ripristino di Windows ed esegui 'bcdboot W:\\Windows /s S: /f UEFI' dopo aver sostituito W: con la lettera dell'unità del volume Windows e S: con la lettera dell'unità della partizione di sistema EFI. Percorso:</entry>
<entry lang="it" key="EFI_FALLBACK_BOOT_LOADER_STILL_VERACRYPT">La partizione/unità di sistema è già stata decrittografata, ma il percorso del boot loader EFI di fallback contiene ancora il VeraCrypt Boot Loader. Solo i file di avvio EFI devono essere riparati. Usa l'opzione di riparazione del VeraCrypt Rescue Disk, oppure avvia un supporto di ripristino di Windows ed esegui 'bcdboot W:\\Windows /s S: /f UEFI' dopo aver sostituito W: con la lettera dell'unità del volume Windows e S: con la lettera dell'unità della partizione di sistema EFI. Percorso:</entry>
<entry lang="it" key="IDM_REPAIR_EFI_BOOT_LOADER">Ripara boot loader EFI...</entry>
<entry lang="it" key="CONFIRM_REPAIR_EFI_BOOT_LOADER">VeraCrypt ripristinerà i percorsi del boot loader EFI di Windows e rimuoverà le voci e i file di avvio EFI di VeraCrypt.\n\nUsa questa opzione solo dopo che la partizione/unità di sistema è stata completamente decrittografata e Windows può avviarsi senza crittografia di sistema.\n\nVuoi continuare?</entry>
<entry lang="it" key="EFI_BOOT_LOADER_FILE_READ_FAILED">Il file del boot loader EFI non può essere letto completamente:</entry>
<entry lang="it" key="EFI_BOOT_LOADER_FILE_TOO_LARGE">Il file del boot loader EFI è insolitamente grande e non è stato ispezionato:</entry>
<entry lang="it" key="EFI_BOOT_LOADER_NVRAM_CLEANUP_FAILED">La partizione/unità di sistema è già stata decrittografata e i file del boot loader EFI sono stati ripristinati, ma VeraCrypt non è riuscito a rimuovere una o più voci di avvio VeraCrypt dal firmware. I file EFI di VeraCrypt sono stati lasciati al loro posto in modo che eventuali voci firmware rimanenti puntino ancora a un loader esistente. Riprova come Amministratore oppure rimuovi la voce di avvio VeraCrypt dalle impostazioni del firmware dopo aver confermato che Windows Boot Manager si avvia normalmente.</entry>
<entry lang="it" key="EFI_BOOT_LOADER_REPAIR_BLOCKED">Il boot loader EFI non può essere riparato mentre la crittografia o decrittografia di sistema è attiva o incompleta. Completa o riprendi il processo di crittografia/decrittografia di sistema in sospeso prima di riprovare.</entry>
<entry lang="it" key="EFI_BOOT_LOADER_REPAIR_NOT_APPLICABLE">Questa azione di riparazione è disponibile solo su sistemi avviati in modalità UEFI da una partizione di sistema GPT.</entry>
<entry lang="it" key="EFI_BOOT_LOADER_REPAIR_SUCCESS">Il boot loader EFI è stato riparato correttamente.</entry>
<entry lang="it" key="PIM_ARGON2_HELP">Il PIM (Moltiplicatore delle Iterazioni Personali) controlla i costi di memoria e di tempo usati dalla derivazione Argon2id della chiave di intestazione come segue:\n Memoria = min(64 MiB + ((PIM - 1) x 32 MiB), 1024 MiB)\n Iterazioni = 3 + ((PIM - 1) / 3) per PIM 31 o inferiore, quindi 13 + (PIM - 31)\n\nQuando viene lasciato vuoto o impostato a 0, VeraCrypt userà il PIM Argon2 predefinito (12), che usa 416 MiB di memoria e 6 iterazioni.\n\nQuando la password contiene meno di 20 caratteri, il PIM Argon2 non può essere inferiore a 12 per mantenere un livello minimo di sicurezza.\nQuando la password contiene 20 o più caratteri, il PIM Argon2 può essere impostato a qualsiasi valore.\n\nUn PIM Argon2 maggiore di 12 aumenta l'uso della memoria fino a 1024 MiB e poi aumenta le iterazioni. Questo porterà a un montaggio più lento. Un PIM Argon2 basso (inferiore a 12) porterà a un montaggio più rapido ma può ridurre la sicurezza se la password non è abbastanza forte.</entry>
<entry lang="it" key="PIM_ARGON2_LARGE_WARNING">Hai scelto un valore PIM Argon2 maggiore del valore predefinito di VeraCrypt.\nNota che questo può richiedere più memoria e portare a un montaggio molto più lento.</entry>
<entry lang="it" key="PIM_ARGON2_SMALL_WARNING">Hai scelto un valore PIM Argon2 inferiore al valore predefinito di VeraCrypt. Nota che se la password non è abbastanza forte, questo potrebbe portare a una sicurezza più debole.\n\nConfermi di usare una password forte?</entry>
<entry lang="it" key="PIM_ARGON2_REQUIRE_LONG_PASSWORD">La password deve contenere 20 o più caratteri per usare il PIM Argon2 specificato.\nPassword più brevi possono essere usate solo se il PIM Argon2 è 12 o maggiore.</entry>
<entry lang="it" key="LINUX_PREF_MOUNT_NTFS_WITH_KERNEL_DRIVER">Monta volumi NTFS con un driver Linux interno al kernel</entry>
<entry lang="it" key="LINUX_PREF_MOUNT_NTFS_WITH_KERNEL_DRIVER_HELP">Solo Linux. Quando questa opzione è abilitata e non è stato fornito alcun tipo di filesystem esplicito, VeraCrypt esamina il dispositivo virtuale decrittografato con 'blkid -p' e monta i filesystem NTFS rilevati con un driver NTFS disponibile nel kernel, evitando helper di montaggio come 'ntfs-3g'. VeraCrypt usa 'ntfs' quando viene identificato positivamente come driver moderno in lettura/scrittura o previsto sul kernel Linux 7.1 o successivo, altrimenti usa 'ntfs3'. Se il rilevamento NTFS fallisce, VeraCrypt usa la normale selezione automatica del filesystem. Se nessun driver NTFS nel kernel supportato è disponibile o caricabile, il montaggio fallisce. Questa opzione facoltativa può evitare blocchi durante sospensione o ibernazione causati da filesystem FUSE in spazio utente bloccati.</entry>
<entry lang="it" key="LINUX_KERNEL_NTFS_DRIVER_UNAVAILABLE">Nessun driver NTFS supportato nel kernel è disponibile o caricabile. Per usare il backend NTFS predefinito del sistema, disabilita la preferenza del driver NTFS del kernel o non richiedere esplicitamente NTFS del kernel.</entry>
<entry lang="it" key="LINUX_EMERGENCY_UNMOUNT_WARNING">Lo smontaggio normale del volume {0} è fallito. Questo può accadere quando applicazioni hanno ancora file o directory aperti sul volume, oppure quando il dispositivo sottostante è stato scollegato e il montaggio è diventato non valido.\n\nSe il dispositivo è ancora connesso, scegli No, chiudi le applicazioni che usano il volume e prova di nuovo a smontarlo.\n\nSe il dispositivo è stato scollegato o il montaggio non è più valido, VeraCrypt può tentare una pulizia di emergenza distaccando il filesystem in modalità lazy e rimuovendo, o pianificando la rimozione, degli oggetti kernel di VeraCrypt. Le scritture in sospeso potrebbero essere fallite, i dati potrebbero essere persi e la pulizia potrebbe restare in sospeso finché le applicazioni non chiudono i file aperti. Controlla il filesystem con 'fsck' o con lo strumento di riparazione appropriato prima di usarlo di nuovo.\n\nContinuare?</entry>
<entry lang="it" key="LINUX_EMERGENCY_UNMOUNTED">La pulizia di emergenza per il volume {0} è stata avviata. Se il volume è stato scollegato, il montaggio non era più valido o c'erano scritture in sospeso, controlla il filesystem con 'fsck' o con lo strumento di riparazione appropriato prima di usarlo di nuovo.</entry>
<entry lang="it" key="FORMAT_STAGE_WRITING_DATA">Creazione dei dati del volume. Attendere.</entry>
<entry lang="it" key="FORMAT_STAGE_WRITING_BACKUP_HEADER">Finalizzazione della creazione del volume: scrittura dell'header di backup.</entry>
<entry lang="it" key="FORMAT_STAGE_FLUSHING_DATA">Finalizzazione della creazione del volume: sincronizzazione dei dati su disco. Questa operazione può richiedere diversi minuti su volumi grandi o supporti lenti/USB.</entry>
<entry lang="it" key="FORMAT_STAGE_FINISHED">Finalizzazione della creazione del volume.</entry>
<entry lang="it" key="FORMAT_STAGE_ABORTED">La creazione del volume è stata interrotta.</entry>
<entry lang="it" key="FORMAT_STAGE_ERROR">Creazione del volume fallita.</entry>
<entry lang="it" key="FORMAT_STAGE_PREPARING_TEMP_VOLUME">Finalizzazione della creazione del volume: montaggio del volume temporaneo.</entry>
<entry lang="it" key="FORMAT_STAGE_PREPARING_TEMP_DEVICE">Finalizzazione della creazione del volume: preparazione del dispositivo temporaneo.</entry>
<entry lang="it" key="FORMAT_STAGE_CREATING_FILESYSTEM">Finalizzazione della creazione del volume: creazione del filesystem usando {0}.</entry>
<entry lang="it" key="FORMAT_STAGE_DISMOUNTING_TEMP_VOLUME">Finalizzazione della creazione del volume: smontaggio del volume temporaneo.</entry>
<entry lang="it" key="MACOSX_APFS_SYNTHESIZED_DEVICE">Il dispositivo selezionato '{0}' è un contenitore o volume APFS sintetizzato e non può essere usato come host di un volume VeraCrypt raw.\n\nSeleziona invece la partizione{1} dello store fisico APFS.</entry>
<entry lang="it" key="MACOSX_DEVICE_SYSTEM_PARTITION">Il dispositivo selezionato '{0}' è una partizione di sistema/supporto macOS e non può essere usato come host di un volume VeraCrypt.</entry>
<entry lang="it" key="MACOSX_APFS_SYSTEM_STORE">Lo store fisico APFS selezionato '{0}' contiene il volume di sistema macOS attualmente montato e non può essere usato come host di un volume VeraCrypt.</entry>
<entry lang="it" key="MACOSX_DEVICE_NOT_WRITABLE">macOS segnala il dispositivo selezionato '{0}' come di sola lettura. Seleziona una partizione fisica o un disco scrivibile.</entry>
<entry lang="it" key="MACOSX_APFS_EROFS_HINT">macOS ha segnalato il dispositivo selezionato come di sola lettura. Se questo è un disco APFS, assicurati di aver selezionato la partizione dello store fisico APFS, non un volume APFS sintetizzato. Usa Utility Disco o 'diskutil list' per identificare la partizione fisica, quindi riprova.</entry>
</localization>
<xs:schema attributeFormDefault="unqualified" elementFormDefault="qualified" xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:element name="VeraCrypt">
+36 -39
View File
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<VeraCrypt>
<localization prog-version="1.26.28">
<localization prog-version="1.26.29">
<language langid="ja" name="日本語" en-name="Japanese" version="1.1.0" translators="OGOSHI Masayuki, Transifex contributors" />
<font lang="ja" class="normal" size="12" face="MS UI Gothic" />
<font lang="ja" class="bold" size="16" face="MS UI Gothic" />
@@ -1517,10 +1517,6 @@
<entry lang="ja" key="LINUX_MOUNTET_HINT">選択したデバイスのファイルシステムは現在マウントされています。続行する前に '{0}' をマウント解除してください。</entry>
<entry lang="ja" key="LINUX_HIDDEN_PASS_NO_DIFF">隠しボリュームは、外部ボリュームと同じパスワード、PIM、およびキーファイルを持つことはできません。</entry>
<entry lang="ja" key="LINUX_NOT_FAT_HINT">ボリュームは FAT ファイルシステムでフォーマットされないため、{0} 以外のプラットフォームにボリュームをマウントできるようにする追加のファイルシステムドライバーをインストールする必要がある場合があります。</entry>
<entry lang="ja" key="LINUX_ERROR_SIZE_HIDDEN_VOL">エラー: 作成される隠しボリュームが {0} TB ({1} GB) より大きくなっています。\n\n考えられる解決策:\n- {0} TB より小さいコンテナ/パーティションを作成します。\n</entry>
<entry lang="ja" key="LINUX_MAX_SIZE_HINT">- 最大 16 TB のサイズのパーティション/デバイスホスト型隠しボリュームを作成できるように、4096 バイトセクターのドライブを使用します</entry>
<entry lang="ja" key="LINUX_DOT_LF">.\n</entry>
<entry lang="ja" key="LINUX_NOT_SUPPORTED"> (このプラットフォームで利用可能なコンポーネントではサポートされていません)。\n</entry>
<entry lang="ja" key="LINUX_KERNEL_OLD">システムは古いバージョンの Linux カーネルを使用しています。\n\nLinux カーネルのバグにより、VeraCrypt ボリュームにデータを書き込むときにシステムが応答を停止することがあります。この問題は、カーネルをバージョン 2.6.24 以降にアップグレードすることで解決できます。</entry>
<entry lang="ja" key="LINUX_VOL_UNMOUNTED">ボリューム {0} がマウント解除されました。</entry>
<entry lang="ja" key="LINUX_VOL_MOUNTED">ボリューム {0} がマウントされました。</entry>
@@ -1653,40 +1649,41 @@
<entry lang="ja" key="IDD_PREFERENCES_TAB_PASSWORD">パスワード</entry>
<entry lang="ja" key="IDC_SECURE_DESKTOP_ENABLE_IME">セキュアデスクトップでIMEを有効にする</entry>
<entry lang="ja" key="ENABLE_IME_IN_SECURE_DESKTOP_WARNING">警告: セキュアデスクトップでキーファイルやトークンを選択する際に問題が発生する場合にのみ、このオプションを有効にしてください。</entry>
<entry lang="en" key="ERR_KEY_DERIVATION_FAILED">Key derivation failed. This may be caused by insufficient memory or an interrupted operation.</entry>
<entry lang="en" key="EFI_MS_BOOT_LOADER_RESTORE_FAILED">The system partition/drive is already decrypted, but the EFI Microsoft boot loader path was not restored to the Windows Boot Manager. Only the EFI boot files need repair. Use the VeraCrypt Rescue Disk repair option, or boot Windows recovery media and run 'bcdboot W:\\Windows /s S: /f UEFI' after replacing W: with the Windows volume drive letter and S: with the EFI System Partition drive letter. Path:</entry>
<entry lang="en" key="EFI_FALLBACK_BOOT_LOADER_STILL_VERACRYPT">The system partition/drive is already decrypted, but the EFI fallback boot loader path still contains the VeraCrypt Boot Loader. Only the EFI boot files need repair. Use the VeraCrypt Rescue Disk repair option, or boot Windows recovery media and run 'bcdboot W:\\Windows /s S: /f UEFI' after replacing W: with the Windows volume drive letter and S: with the EFI System Partition drive letter. Path:</entry>
<entry lang="en" key="IDM_REPAIR_EFI_BOOT_LOADER">Repair EFI Boot Loader...</entry>
<entry lang="en" key="CONFIRM_REPAIR_EFI_BOOT_LOADER">VeraCrypt will restore the Windows EFI boot loader paths and remove VeraCrypt EFI boot entries and files.\n\nUse this only after the system partition/drive is fully decrypted and Windows can boot without system encryption.\n\nDo you want to continue?</entry>
<entry lang="en" key="EFI_BOOT_LOADER_FILE_READ_FAILED">The EFI boot loader file could not be read completely:</entry>
<entry lang="en" key="EFI_BOOT_LOADER_FILE_TOO_LARGE">The EFI boot loader file is unexpectedly large and was not inspected:</entry>
<entry lang="en" key="EFI_BOOT_LOADER_NVRAM_CLEANUP_FAILED">The system partition/drive is already decrypted and the EFI boot loader files were restored, but VeraCrypt could not remove one or more VeraCrypt firmware boot entries. The VeraCrypt EFI files were left in place so any remaining firmware entry still points to an existing loader. Retry as Administrator or remove the VeraCrypt boot entry from firmware setup after confirming Windows Boot Manager starts normally.</entry>
<entry lang="en" key="EFI_BOOT_LOADER_REPAIR_BLOCKED">The EFI boot loader cannot be repaired while system encryption or decryption is active or incomplete. Complete or resume the pending system encryption/decryption process before retrying.</entry>
<entry lang="en" key="EFI_BOOT_LOADER_REPAIR_NOT_APPLICABLE">This repair action is available only on systems booting in UEFI mode from a GPT system partition.</entry>
<entry lang="en" key="EFI_BOOT_LOADER_REPAIR_SUCCESS">The EFI boot loader has been repaired successfully.</entry>
<entry lang="en" key="PIM_ARGON2_HELP">PIM (Personal Iterations Multiplier) controls the memory and time costs used by Argon2id header key derivation as follows:\n Memory = min(64 MiB + ((PIM - 1) x 32 MiB), 1024 MiB)\n Iterations = 3 + ((PIM - 1) / 3) for PIM 31 or lower, then 13 + (PIM - 31)\n\nWhen left empty or set to 0, VeraCrypt will use the default Argon2 PIM (12), which uses 416 MiB of memory and 6 iterations.\n\nWhen the password is less than 20 characters, Argon2 PIM can't be smaller than 12 in order to maintain a minimal security level.\nWhen the password is 20 characters or more, Argon2 PIM can be set to any value.\n\nAn Argon2 PIM larger than 12 increases memory usage up to 1024 MiB and then increases iterations. This will lead to slower mounting. A small Argon2 PIM (less than 12) will lead to quicker mounting but it can reduce security if the password is not strong enough.</entry>
<entry lang="en" key="PIM_ARGON2_LARGE_WARNING">You have chosen an Argon2 PIM value that is larger than VeraCrypt default value.\nPlease note that this can require more memory and lead to much slower mounting.</entry>
<entry lang="en" key="PIM_ARGON2_SMALL_WARNING">You have chosen an Argon2 PIM value that is smaller than the default VeraCrypt value. Please note that if your password is not strong enough, this could lead to weaker security.\n\nDo you confirm that you are using a strong password?</entry>
<entry lang="en" key="PIM_ARGON2_REQUIRE_LONG_PASSWORD">Password must contain 20 or more characters in order to use the specified Argon2 PIM.\nShorter passwords can only be used if the Argon2 PIM is 12 or greater.</entry>
<entry lang="en" key="LINUX_PREF_MOUNT_NTFS_WITH_NTFS3">Mount NTFS volumes with the Linux kernel ntfs3 driver</entry>
<entry lang="en" key="LINUX_PREF_MOUNT_NTFS_WITH_NTFS3_HELP">Linux only. When enabled, VeraCrypt probes the decrypted virtual device with blkid -p and mounts detected NTFS filesystems with ntfs3 instead of the default NTFS backend. If NTFS detection fails, VeraCrypt uses the normal automatic filesystem selection. If ntfs3 is unavailable or blocked by the distribution, mounting may fail. This opt-in option can avoid suspend or hibernate hangs caused by frozen user-space FUSE filesystems.</entry>
<entry lang="en" key="LINUX_EMERGENCY_UNMOUNT_WARNING">Normal unmount of volume {0} failed. This can happen when applications still have files or directories open on the volume, or when the backing device was disconnected and the mount became stale.\n\nIf the device is still connected, choose No, close applications using the volume, and try unmounting again.\n\nIf the device was disconnected or the mount is stale, VeraCrypt can attempt emergency cleanup by lazy-detaching the filesystem and removing or scheduling removal of VeraCrypt kernel objects. Pending writes may have failed, data may be lost, and cleanup may remain pending until applications close open files. Check the filesystem with fsck or the appropriate repair tool before using it again.\n\nContinue?</entry>
<entry lang="en" key="LINUX_EMERGENCY_UNMOUNTED">Emergency cleanup for volume {0} has been initiated. If the volume was disconnected, the mount was stale, or there were pending writes, check the filesystem with fsck or the appropriate repair tool before using it again.</entry>
<entry lang="en" key="FORMAT_STAGE_WRITING_DATA">Creating volume data. Please wait.</entry>
<entry lang="en" key="FORMAT_STAGE_WRITING_BACKUP_HEADER">Finalizing volume creation: writing backup header.</entry>
<entry lang="en" key="FORMAT_STAGE_FLUSHING_DATA">Finalizing volume creation: flushing data to disk. This can take several minutes on large volumes or slow/USB storage.</entry>
<entry lang="en" key="FORMAT_STAGE_FINISHED">Finalizing volume creation.</entry>
<entry lang="en" key="FORMAT_STAGE_ABORTED">Volume creation has been aborted.</entry>
<entry lang="en" key="FORMAT_STAGE_ERROR">Volume creation failed.</entry>
<entry lang="en" key="FORMAT_STAGE_PREPARING_TEMP_VOLUME">Finalizing volume creation: mounting temporary volume.</entry>
<entry lang="en" key="FORMAT_STAGE_PREPARING_TEMP_DEVICE">Finalizing volume creation: preparing temporary device.</entry>
<entry lang="en" key="FORMAT_STAGE_CREATING_FILESYSTEM">Finalizing volume creation: creating filesystem using {0}.</entry>
<entry lang="en" key="FORMAT_STAGE_DISMOUNTING_TEMP_VOLUME">Finalizing volume creation: dismounting temporary volume.</entry>
<entry lang="en" key="MACOSX_APFS_SYNTHESIZED_DEVICE">The selected device '{0}' is an APFS synthesized container or volume and cannot be used as a raw VeraCrypt volume host.\n\nSelect the physical APFS store partition{1} instead.</entry>
<entry lang="en" key="MACOSX_DEVICE_SYSTEM_PARTITION">The selected device '{0}' is a macOS system/support partition and cannot be used as a VeraCrypt volume host.</entry>
<entry lang="en" key="MACOSX_APFS_SYSTEM_STORE">The selected APFS physical store '{0}' contains the currently mounted macOS system volume and cannot be used as a VeraCrypt volume host.</entry>
<entry lang="en" key="MACOSX_DEVICE_NOT_WRITABLE">macOS reports the selected device '{0}' as read-only. Select a writable physical partition or disk.</entry>
<entry lang="en" key="MACOSX_APFS_EROFS_HINT">macOS reported the selected device as read-only. If this is an APFS disk, make sure you selected the physical APFS store partition, not an APFS synthesized volume. Use Disk Utility or 'diskutil list' to identify the physical partition, then retry.</entry>
<entry lang="ja" key="ERR_KEY_DERIVATION_FAILED">キー導出に失敗しました。メモリ不足または操作の中断が原因である可能性があります。</entry>
<entry lang="ja" key="EFI_MS_BOOT_LOADER_RESTORE_FAILED">システムパーティション/ドライブはすでに復号されていますが、EFI Microsoft ブートローダーのパスが Windows Boot Manager に復元されていません。修復が必要なのは EFI ブートファイルのみです。VeraCrypt レスキューディスクの修復オプションを使用するか、Windows 回復メディアから起動し、W: を Windows ボリュームのドライブレターに、S: を EFI システムパーティションのドライブレターに置き換えてから 'bcdboot W:\\Windows /s S: /f UEFI' を実行してください。パス:</entry>
<entry lang="ja" key="EFI_FALLBACK_BOOT_LOADER_STILL_VERACRYPT">システムパーティション/ドライブはすでに復号されていますが、EFI フォールバックブートローダーのパスに VeraCrypt ブートローダーがまだ含まれています。修復が必要なのは EFI ブートファイルのみです。VeraCrypt レスキューディスクの修復オプションを使用するか、Windows 回復メディアから起動し、W: を Windows ボリュームのドライブレターに、S: を EFI システムパーティションのドライブレターに置き換えてから 'bcdboot W:\\Windows /s S: /f UEFI' を実行してください。パス:</entry>
<entry lang="ja" key="IDM_REPAIR_EFI_BOOT_LOADER">EFI ブートローダーを修復...</entry>
<entry lang="ja" key="CONFIRM_REPAIR_EFI_BOOT_LOADER">VeraCrypt は Windows EFI ブートローダーのパスを復元し、VeraCrypt EFI ブートエントリおよびファイルを削除します。\n\nこの操作は、システムパーティション/ドライブが完全に復号され、Windows がシステム暗号化なしで起動できる場合にのみ使用してください。\n\n続行しますか?</entry>
<entry lang="ja" key="EFI_BOOT_LOADER_FILE_READ_FAILED">EFI ブートローダーファイルを完全に読み取ることができませんでした:</entry>
<entry lang="ja" key="EFI_BOOT_LOADER_FILE_TOO_LARGE">EFI ブートローダーファイルが予期せず大きいため、検査されませんでした:</entry>
<entry lang="ja" key="EFI_BOOT_LOADER_NVRAM_CLEANUP_FAILED">システムパーティション/ドライブはすでに復号され、EFI ブートローダーファイルは復元されましたが、VeraCrypt は 1 つ以上の VeraCrypt ファームウェアブートエントリを削除できませんでした。残っているファームウェアエントリが既存のローダーを指し続けるよう、VeraCrypt EFI ファイルはそのまま残されました。管理者として再試行するか、Windows Boot Manager が正常に起動することを確認した後、ファームウェア設定から VeraCrypt ブートエントリを削除してください。</entry>
<entry lang="ja" key="EFI_BOOT_LOADER_REPAIR_BLOCKED">システム暗号化または復号が実行中、あるいは未完了の場合、EFI ブートローダーは修復できません。再試行する前に、保留中のシステム暗号化/復号処理を完了または再開してください。</entry>
<entry lang="ja" key="EFI_BOOT_LOADER_REPAIR_NOT_APPLICABLE">この修復操作は、GPT システムパーティションから UEFI モードで起動しているシステムでのみ利用できます。</entry>
<entry lang="ja" key="EFI_BOOT_LOADER_REPAIR_SUCCESS">EFI ブートローダーは正常に修復されました。</entry>
<entry lang="ja" key="PIM_ARGON2_HELP">PIM (Personal Iterations Multiplier) は、Argon2id ヘッダーキーの導出で使用されるメモリコストと時間コストを次のように制御します:\n メモリ = min(64 MiB + ((PIM - 1) x 32 MiB), 1024 MiB)\n 反復回数 = PIM が 31 以下の場合は 3 + ((PIM - 1) / 3)、それを超える場合は 13 + (PIM - 31)\n\n空欄のままにするか 0 に設定すると、VeraCrypt はデフォルトの Argon2 PIM (12) を使用します。この設定では 416 MiB のメモリと 6 回の反復を使用します。\n\nパスワードが 20 文字未満の場合、最小限のセキュリティレベルを維持するために Argon2 PIM を 12 未満にすることはできません。\nパスワードが 20 文字以上の場合、Argon2 PIM は任意の値に設定できます。\n\n12 より大きい Argon2 PIM は、メモリ使用量を最大 1024 MiB まで増やし、その後は反復回数を増やします。これによりマウントは遅くなります。小さい Argon2 PIM (12 未満) はマウントを速くしますが、パスワードが十分に強力でない場合、セキュリティが低下する可能性があります。</entry>
<entry lang="ja" key="PIM_ARGON2_LARGE_WARNING">VeraCrypt のデフォルト値より大きい Argon2 PIM 値が選択されています。\nこれにより、より多くのメモリが必要になり、マウントが大幅に遅くなる可能性があることに注意してください。</entry>
<entry lang="ja" key="PIM_ARGON2_SMALL_WARNING">VeraCrypt のデフォルト値より小さい Argon2 PIM 値が選択されています。パスワードが十分に強力でない場合、セキュリティが低下する可能性があることに注意してください。\n\n強力なパスワードを使用していることを確認しますか?</entry>
<entry lang="ja" key="PIM_ARGON2_REQUIRE_LONG_PASSWORD">指定した Argon2 PIM を使用するには、パスワードは 20 文字以上である必要があります。\nそれより短いパスワードは、Argon2 PIM 12 以上の場合にのみ使用できます。</entry>
<entry lang="ja" key="LINUX_PREF_MOUNT_NTFS_WITH_KERNEL_DRIVER">Linux カーネル内ドライバで NTFS ボリュームをマウントする</entry>
<entry lang="ja" key="LINUX_PREF_MOUNT_NTFS_WITH_KERNEL_DRIVER_HELP">Linux のみ。これを有効にし、明示的なファイルシステムタイプが指定されていない場合、VeraCrypt は復号済みの仮想デバイスを blkid -p で検査し、検出された NTFS ファイルシステムを利用可能なカーネル内 NTFS ドライバでマウントします。これにより ntfs-3g などのマウントヘルパーは迂回されます。VeraCrypt は、ntfs が現行の読み書き対応ドライバであると明確に識別された場合、または Linux 7.1 以降で期待される場合には ntfs を使用し、それ以外の場合は ntfs3 を使用します。NTFS の検出に失敗した場合、VeraCrypt は通常の自動ファイルシステム選択を使用します。サポートされているカーネル内 NTFS ドライバが利用できない、または読み込めない場合、マウントは失敗します。このオプトインオプションにより、ユーザースペース FUSE ファイルシステムのフリーズが原因でサスペンドまたは休止状態への移行時にハングする問題を回避できる場合があります。</entry>
<entry lang="ja" key="LINUX_KERNEL_NTFS_DRIVER_UNAVAILABLE">サポートされているカーネル内 NTFS ドライバが利用できないか、読み込めません。システムのデフォルト NTFS バックエンドを使用するには、NTFS カーネルドライバ設定を無効にするか、カーネル NTFS を明示的に要求しないでください。</entry>
<entry lang="ja" key="LINUX_EMERGENCY_UNMOUNT_WARNING">ボリューム {0} の通常のマウント解除に失敗しました。これは、アプリケーションがまだボリューム上のファイルまたはディレクトリを開いている場合や、背後のデバイスが切断されてマウント状態が無効になった場合に発生することがあります。\n\nデバイスがまだ接続されている場合は、「いいえ」を選択し、そのボリュームを使用しているアプリケーションを閉じてから、もう一度マウント解除を試してください。\n\nデバイスが切断された、またはマウント状態が無効になっている場合、VeraCrypt はファイルシステムを遅延デタッチし、VeraCrypt カーネルオブジェクトを削除または削除予約することで、緊急クリーンアップを試行できます。保留中の書き込みが失敗している可能性があり、データが失われることがあります。また、開いているファイルをアプリケーションが閉じるまで、クリーンアップが保留のままになることがあります。再度使用する前に、fsck または適切な修復ツールでファイルシステムを確認してください。\n\n続行しますか?</entry>
<entry lang="ja" key="LINUX_EMERGENCY_UNMOUNTED">ボリューム {0} の緊急クリーンアップを開始しました。ボリュームが切断されていた場合、マウント状態が無効になっていた場合、または保留中の書き込みがあった場合は、再度使用する前に fsck または適切な修復ツールでファイルシステムを確認してください。</entry>
<entry lang="ja" key="FORMAT_STAGE_WRITING_DATA">ボリュームデータを作成しています。お待ちください。</entry>
<entry lang="ja" key="FORMAT_STAGE_WRITING_BACKUP_HEADER">ボリューム作成を完了しています: バックアップヘッダを書き込んでいます。</entry>
<entry lang="ja" key="FORMAT_STAGE_FLUSHING_DATA">ボリューム作成を完了しています: データをディスクにフラッシュしています。大きなボリュームや低速/USB ストレージでは数分かかることがあります。</entry>
<entry lang="ja" key="FORMAT_STAGE_FINISHED">ボリューム作成を完了しています。</entry>
<entry lang="ja" key="FORMAT_STAGE_ABORTED">ボリュームの作成は中止されました。</entry>
<entry lang="ja" key="FORMAT_STAGE_ERROR">ボリュームの作成に失敗しました。</entry>
<entry lang="ja" key="FORMAT_STAGE_PREPARING_TEMP_VOLUME">ボリューム作成を完了しています: 一時ボリュームをマウントしています。</entry>
<entry lang="ja" key="FORMAT_STAGE_PREPARING_TEMP_DEVICE">ボリューム作成を完了しています: 一時デバイスを準備しています。</entry>
<entry lang="ja" key="FORMAT_STAGE_CREATING_FILESYSTEM">ボリューム作成を完了しています: {0} を使用してファイルシステムを作成しています。</entry>
<entry lang="ja" key="FORMAT_STAGE_DISMOUNTING_TEMP_VOLUME">ボリューム作成を完了しています: 一時ボリュームをマウント解除しています。</entry>
<entry lang="ja" key="MACOSX_APFS_SYNTHESIZED_DEVICE">選択されたデバイス '{0}' は APFS 合成コンテナまたはボリュームであり、raw デバイス型 VeraCrypt ボリュームのホストとして使用できません。\n\n代わりに物理 APFS ストアパーティション{1}を選択してください。</entry>
<entry lang="ja" key="MACOSX_DEVICE_SYSTEM_PARTITION">選択されたデバイス '{0}' は macOS システム/サポートパーティションであり、VeraCrypt ボリュームホストとして使用できません。</entry>
<entry lang="ja" key="MACOSX_APFS_SYSTEM_STORE">選択された APFS 物理ストア '{0}' には現在マウントされている macOS システムボリュームが含まれているため、VeraCrypt ボリュームホストとして使用できません。</entry>
<entry lang="ja" key="MACOSX_DEVICE_NOT_WRITABLE">macOS は、選択されたデバイス '{0}' を読み取り専用として報告しています。書き込み可能な物理パーティションまたはディスクを選択してください。</entry>
<entry lang="ja" key="MACOSX_APFS_EROFS_HINT">macOS は、選択されたデバイスを読み取り専用として報告しました。これが APFS ディスクの場合は、APFS 合成ボリュームではなく物理 APFS ストアパーティションを選択していることを確認してください。ディスクユーティリティまたは 'diskutil list' を使用して物理パーティションを確認してから、再試行してください。</entry>
</localization>
<xs:schema attributeFormDefault="unqualified" elementFormDefault="qualified" xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:element name="VeraCrypt">
+4 -7
View File
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<VeraCrypt>
<localization prog-version="1.26.28">
<localization prog-version="1.26.29">
<language langid="ka" name="ქართული" en-name="Georgian" version="0.1.0" translators="Kakha Lomiashvili" />
<font lang="ka" class="normal" size="12" face="Arial" />
<font lang="ka" class="bold" size="12" face="Arial" />
@@ -1517,10 +1517,6 @@
<entry lang="en" key="LINUX_MOUNTET_HINT">The filesystem of the selected device is currently mounted. Please unmount '{0}' before proceeding.</entry>
<entry lang="en" key="LINUX_HIDDEN_PASS_NO_DIFF">The Hidden volume can't have the same password, PIM and keyfiles as the Outer volume</entry>
<entry lang="en" key="LINUX_NOT_FAT_HINT">Please note that the volume will not be formatted with a FAT filesystem and, therefore, you may be required to install additional filesystem drivers on platforms other than {0}, which will enable you to mount the volume.</entry>
<entry lang="en" key="LINUX_ERROR_SIZE_HIDDEN_VOL">Error: The hidden volume to be created is larger than {0} TB ({1} GB).\n\nPossible solutions:\n- Create a container/partition smaller than {0} TB.\n</entry>
<entry lang="en" key="LINUX_MAX_SIZE_HINT">- Use a drive with 4096-byte sectors to be able to create partition/device-hosted hidden volumes up to 16 TB in size</entry>
<entry lang="en" key="LINUX_DOT_LF">.\n</entry>
<entry lang="en" key="LINUX_NOT_SUPPORTED"> (not supported by components available on this platform).\n</entry>
<entry lang="en" key="LINUX_KERNEL_OLD">Your system uses an old version of the Linux kernel.\n\nDue to a bug in the Linux kernel, your system may stop responding when writing data to a VeraCrypt volume. This problem can be solved by upgrading the kernel to version 2.6.24 or later.</entry>
<entry lang="en" key="LINUX_VOL_UNMOUNTED">Volume {0} has been unmounted.</entry>
<entry lang="en" key="LINUX_VOL_MOUNTED">Volume {0} has been mounted.</entry>
@@ -1668,8 +1664,9 @@
<entry lang="en" key="PIM_ARGON2_LARGE_WARNING">You have chosen an Argon2 PIM value that is larger than VeraCrypt default value.\nPlease note that this can require more memory and lead to much slower mounting.</entry>
<entry lang="en" key="PIM_ARGON2_SMALL_WARNING">You have chosen an Argon2 PIM value that is smaller than the default VeraCrypt value. Please note that if your password is not strong enough, this could lead to weaker security.\n\nDo you confirm that you are using a strong password?</entry>
<entry lang="en" key="PIM_ARGON2_REQUIRE_LONG_PASSWORD">Password must contain 20 or more characters in order to use the specified Argon2 PIM.\nShorter passwords can only be used if the Argon2 PIM is 12 or greater.</entry>
<entry lang="en" key="LINUX_PREF_MOUNT_NTFS_WITH_NTFS3">Mount NTFS volumes with the Linux kernel ntfs3 driver</entry>
<entry lang="en" key="LINUX_PREF_MOUNT_NTFS_WITH_NTFS3_HELP">Linux only. When enabled, VeraCrypt probes the decrypted virtual device with blkid -p and mounts detected NTFS filesystems with ntfs3 instead of the default NTFS backend. If NTFS detection fails, VeraCrypt uses the normal automatic filesystem selection. If ntfs3 is unavailable or blocked by the distribution, mounting may fail. This opt-in option can avoid suspend or hibernate hangs caused by frozen user-space FUSE filesystems.</entry>
<entry lang="en" key="LINUX_PREF_MOUNT_NTFS_WITH_KERNEL_DRIVER">Mount NTFS volumes with an in-kernel Linux driver</entry>
<entry lang="en" key="LINUX_PREF_MOUNT_NTFS_WITH_KERNEL_DRIVER_HELP">Linux only. When enabled and no explicit filesystem type was supplied, VeraCrypt probes the decrypted virtual device with blkid -p and mounts detected NTFS filesystems with an available in-kernel NTFS driver, bypassing mount helpers such as ntfs-3g. VeraCrypt uses ntfs when it is positively identified as a modern read/write driver or expected on Linux 7.1 or later, and otherwise uses ntfs3. If NTFS detection fails, VeraCrypt uses the normal automatic filesystem selection. If no supported in-kernel NTFS driver is available or loadable, mounting fails. This opt-in option can avoid suspend or hibernate hangs caused by frozen user-space FUSE filesystems.</entry>
<entry lang="en" key="LINUX_KERNEL_NTFS_DRIVER_UNAVAILABLE">No supported in-kernel NTFS driver is available or loadable. To use the system default NTFS backend, disable the NTFS kernel-driver preference or do not request kernel NTFS explicitly.</entry>
<entry lang="en" key="LINUX_EMERGENCY_UNMOUNT_WARNING">Normal unmount of volume {0} failed. This can happen when applications still have files or directories open on the volume, or when the backing device was disconnected and the mount became stale.\n\nIf the device is still connected, choose No, close applications using the volume, and try unmounting again.\n\nIf the device was disconnected or the mount is stale, VeraCrypt can attempt emergency cleanup by lazy-detaching the filesystem and removing or scheduling removal of VeraCrypt kernel objects. Pending writes may have failed, data may be lost, and cleanup may remain pending until applications close open files. Check the filesystem with fsck or the appropriate repair tool before using it again.\n\nContinue?</entry>
<entry lang="en" key="LINUX_EMERGENCY_UNMOUNTED">Emergency cleanup for volume {0} has been initiated. If the volume was disconnected, the mount was stale, or there were pending writes, check the filesystem with fsck or the appropriate repair tool before using it again.</entry>
<entry lang="en" key="FORMAT_STAGE_WRITING_DATA">Creating volume data. Please wait.</entry>
+58 -61
View File
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<VeraCrypt>
<localization prog-version="1.26.28">
<localization prog-version="1.26.29">
<language langid="ko" name="한국어" en-name="Korean" version="0.2.0" translators="Kieaer, Herbert Shin, BaekMu" />
<font lang="ko" class="normal" size="11" face="돋움" />
<font lang="ko" class="bold" size="13" face="맑은 고딕" />
@@ -137,10 +137,10 @@
<entry lang="ko" key="IDC_FAV_VOL_OPTIONS_GLOBAL_SETTINGS_BOX">전역 설정</entry>
<entry lang="ko" key="IDC_HK_UNMOUNT_BALLOON_TOOLTIP">단축키 분리 성공 후 말풍선 툴팁 표시</entry>
<entry lang="ko" key="IDC_HK_UNMOUNT_PLAY_SOUND">단축키 분리 성공 후 시스템 알림 소리 재생</entry>
<entry lang="en" key="IDC_HK_MOD_ALT">ALT</entry>
<entry lang="en" key="IDC_HK_MOD_CTRL">Ctrl</entry>
<entry lang="en" key="IDC_HK_MOD_SHIFT">SHIFT</entry>
<entry lang="en" key="IDC_HK_MOD_WIN">Win</entry>
<entry lang="ko" key="IDC_HK_MOD_ALT">Alt</entry>
<entry lang="ko" key="IDC_HK_MOD_CTRL">Ctrl</entry>
<entry lang="ko" key="IDC_HK_MOD_SHIFT">Shift</entry>
<entry lang="ko" key="IDC_HK_MOD_WIN">Win</entry>
<entry lang="ko" key="IDC_HOTKEY_ASSIGN">할당</entry>
<entry lang="ko" key="IDC_HOTKEY_REMOVE">제거</entry>
<entry lang="ko" key="IDC_KEYFILES">키 파일...</entry>
@@ -470,10 +470,10 @@
<entry lang="ko" key="PERMANENTLY_DECRYPT">영구 복호화</entry>
<entry lang="ko" key="EXIT">종료</entry>
<entry lang="ko" key="EXT_PARTITION">이 확장 파티션에 대한 논리 드라이브를 생성한 다음 다시 시도하세요.</entry>
<entry lang="ko" key="FILE_HELP">VeraCrypt 볼륨은 파일(VeraCrypt 컨테이너라고 함)에 있을 수 있으며, 이 컨테이너는 하드 디스크, USB 플래시 드라이브 등에 있을 수 있습니다. VeraCrypt 컨테이너는 일반 파일과 동일합니다(예: 일반 파일로 이동하거나 삭제할 수 있음). '파일 선택'을 클릭하여 컨테이너의 파일 이름을 선택하고 컨테이너를 만들 위치를 선택합니다.\n\nWARNING: 기존 파일을 선택하면 VeraCrypt가 파일을 암호화하지 않습니다. 파일이 삭제되고 새로 생성된 VeraCrypt 컨테이너로 대체됩니다. 지금 생성하려는 VeraCrypt 컨테이너로 파일을 이동하여 기존 파일을 암호화할 수 있습니다.</entry>
<entry lang="ko" key="FILE_HELP">VeraCrypt 볼륨은 파일(VeraCrypt 컨테이너라고 함)에 있을 수 있으며, 이 컨테이너는 하드 디스크, USB 플래시 드라이브 등에 있을 수 있습니다. VeraCrypt 컨테이너는 일반 파일과 동일합니다(예: 일반 파일로 이동하거나 삭제할 수 있음). '파일 선택'을 클릭하여 컨테이너의 파일 이름을 선택하고 컨테이너를 만들 위치를 선택합니다.\n\n경고: 기존 파일을 선택하면 VeraCrypt가 파일을 암호화하지 않습니다. 파일이 삭제되고 새로 생성된 VeraCrypt 컨테이너로 대체됩니다. 지금 생성하려는 VeraCrypt 컨테이너로 파일을 이동하여 기존 파일을 암호화할 수 있습니다.</entry>
<entry lang="ko" key="FILE_HELP_HIDDEN_HOST_VOL">생성할 외부 볼륨의 위치를 선택합니다(이 볼륨 내에서 숨겨진 볼륨은 나중에 생성됩니다).\n\nVeraCrypt 볼륨은 파일(VeraCrypt 컨테이너)에 있을 수 있으며, 파일(VeraCrypt 컨테이너)은 하드 디스크, USB 플래시 드라이브 등에 있을 수 있습니다. VeraCrypt 컨테이너는 일반 파일로 이동하거나 삭제할 수 있습니다. '파일 선택'을 클릭하여 컨테이너의 파일 이름을 선택하고 컨테이너를 만들 위치를 선택합니다. 기존 파일을 선택하면 VeraCrypt가 파일을 암호화하지 않고 삭제되어 새로 생성된 컨테이너로 대체됩니다. 지금 생성하려는 VeraCrypt 컨테이너로 파일을 이동하여 기존 파일을 암호화할 수 있습니다.</entry>
<entry lang="ko" key="DEVICE_HELP">암호화된 디바이스 호스팅된 VeraCrypt 볼륨은 하드 디스크, 솔리드 스테이트 드라이브, USB 메모리 스틱 및 지원되는 다른 저장 장치의 파티션 내에 생성할 수 있습니다. 파티션은 제자리에 암호화될 수도 있습니다.\n\n또한 암호화된 디바이스 호스팅된 VeraCrypt 볼륨을 파티션이 포함되지 않은 장치(HDD 및 SSD 포함) 내에서 생성할 수 있습니다.\n\n참고: 파티션이 포함된 장치는 Windows가 설치되어 있고 부팅되는 드라이브인 경우에만 단일 키를 사용하여 완전히 암호화될 수 있습니다.</entry>
<entry lang="ko" key="DEVICE_HELP_NO_INPLACE">디바이스 호스팅된 VeraCrypt 볼륨은 HDD, SSD, USB 메모리 스틱 및 기타 저장 장치 내에 생성할 수 있습니다.\n\nWARNING: 파티션/디바이스가 포맷되고 파티션에 현재 저장된 모든 데이터가 손실됩니다.</entry>
<entry lang="ko" key="DEVICE_HELP_NO_INPLACE">디바이스 호스팅된 VeraCrypt 볼륨은 HDD, SSD, USB 메모리 스틱 및 기타 저장 장치 내에 생성할 수 있습니다.\n\n경고: 파티션/디바이스가 포맷되고 파티션에 현재 저장된 모든 데이터가 손실됩니다.</entry>
<entry lang="ko" key="DEVICE_HELP_HIDDEN_HOST_VOL">\n생성될 “외부 볼륨”의 위치를 선택합니다. 나중에 외부 볼륨 안에 “숨긴 볼륨”이 만들어집니다.\n\n외부 볼륨은 하드 디스크 파티션, SSD, USB 메모리 스틱 및 기타 지원되는 저장 장치 안에 만들어질 수 있습니다. 외부 볼륨은 파티션을 포함하고 있지 않은 장치(* 하드 디스크 및 SSD 포함) 내에도 만들어질 수 있습니다.\n\n주의: 파티션/장치가 포맷되고 현재 이곳에 저장된 모든 데이터를 잃게 됩니다.</entry>
<entry lang="ko" key="FILE_HELP_HIDDEN_HOST_VOL_DIRECT">\n숨겨진 볼륨을 만들 VeraCrypt 볼륨의 위치를 선택합니다.</entry>
<entry lang="ko" key="FILE_IN_USE">경고: 호스트 파일/장치가 이미 사용 중입니다!\n\n이(가) 이러한 결과를 예상하지 못할 경우 시스템이 불안정해질 수 있습니다. 볼륨을 마운트하기 전에 호스트 파일/장치(예: 바이러스 백신 또는 백업 프로그램)를 사용할 수 있는 모든 프로그램을 닫아야 합니다.\n\n계속 진행하시겠습니까?</entry>
@@ -525,18 +525,18 @@
<entry lang="ko" key="HIDVOL_FORMAT_FINISHED_TITLE">숨겨진 볼륨이 생성되었습니다.</entry>
<entry lang="ko" key="HIDVOL_FORMAT_FINISHED_HELP">숨겨진 VeraCrypt 볼륨이 생성되었으며 사용할 준비가 되었습니다. 모든 지침을 따르고 VeraCrypt 사용자 설명서의 "숨겨진 볼륨에 대한 보안 요구 사항 및 주의 사항" 섹션에 나열된 주의 사항과 요구 사항을 준수하는 경우, 외부 볼륨이 장착되어 있더라도 숨겨진 볼륨이 존재한다는 것을 증명할 수 없습니다.\n\n경고: 숨겨진 볼륨을 보호하지 않으면 (VERACRYPT 사용 설명서의 "숨겨진 볼륨 보호"절을 참조하십시오), 볼륨을 쓰지 마세요. 그렇지 않으면 숨겨진 볼륨을 초과하여 손상시킬 수 있습니다!</entry>
<entry lang="ko" key="FIRST_HIDDEN_OS_BOOT_INFO">숨겨진 운영 체제를 시작했습니다. 숨겨진 운영 체제가 원래 운영 체제와 동일한 파티션에 설치된 것으로 나타납니다. 그러나 실제로는 숨겨진 볼륨에 있는 파티션 내에 설치됩니다. 모든 읽기 및 쓰기 작업은 원래 시스템 파티션에서 숨겨진 볼륨으로 투명하게 리디렉션됩니다.\n운영 체제나 애플리케이션 중 어느 것도 시스템 파티션에서 읽고 쓴 데이터가 실제로 뒤의 파티션(숨겨진 볼륨에서/로)에 쓰여지는 것을 알지 못합니다. 이러한 데이터는 평상시와 같이 즉시 암호화 및 암호 해독됩니다(디코이 운영 체제에 사용될 암호화 키와 다른 암호화 키 사용).계속하려면 다음을 클릭합니다.</entry>
<entry lang="ko" key="HIDVOL_HOST_FILLING_HELP_SYSENC">외부 볼륨이 생성되어 %hc: 드라이브로 마운트되었습니다. 이제 실제로 숨기려 하지 않는 중요해 보이는 파일을 이 외부 볼륨에 복사해야 합니다. 시스템 파티션 뒤에 있는 첫 번째 파티션의 암호를 강제로 공개해야 하는 모든 사용자가 외부 볼륨과 숨겨진 볼륨(숨겨진 운영 체제 포함)이 모두 있을 수 있습니다. 이 외부 볼륨의 암호를 표시할 수 있으며 숨겨진 볼륨(및 숨겨진 운영 체제)의 존재는 비밀로 유지됩니다.\n\nIMPORTANT: 외부 볼륨에 복사하는 파일은 %s 이상 차지하면 안 됩니다. 그렇지 않으면 숨겨진 볼륨을 위한 외부 볼륨의 사용 가능한 공간이 부족할 수 있습니다(계속하지 못할 수도 있습니다). 복사를 마친 후 다음을 클릭합니다(볼륨을 마운트 해제하지 않음).</entry>
<entry lang="ko" key="HIDVOL_HOST_FILLING_HELP_SYSENC">외부 볼륨이 생성되어 %hc: 드라이브로 마운트되었습니다. 이제 실제로 숨기려 하지 않는 중요해 보이는 파일을 이 외부 볼륨에 복사해야 합니다. 시스템 파티션 뒤에 있는 첫 번째 파티션의 암호를 강제로 공개해야 하는 모든 사용자가 외부 볼륨과 숨겨진 볼륨(숨겨진 운영 체제 포함)이 모두 있을 수 있습니다. 이 외부 볼륨의 암호를 표시할 수 있으며 숨겨진 볼륨(및 숨겨진 운영 체제)의 존재는 비밀로 유지됩니다.\n\n중요: 외부 볼륨에 복사하는 파일은 %s 이상 차지하면 안 됩니다. 그렇지 않으면 숨겨진 볼륨을 위한 외부 볼륨의 사용 가능한 공간이 부족할 수 있습니다(계속하지 못할 수도 있습니다). 복사를 마친 후 다음을 클릭합니다(볼륨을 마운트 해제하지 않음).</entry>
<entry lang="ko" key="HIDVOL_HOST_FILLING_HELP">외부 볼륨이 생성되어 %hc: 드라이브로 마운트되었습니다. 이제 실제로 숨기지 않을 중요해 보이는 파일을 이 볼륨에 복사해야 합니다. 이 파일은 암호를 공개하도록 강요하는 모든 사용자를 위해 제공됩니다. 숨겨진 볼륨이 아닌 이 외부 볼륨의 암호만 표시됩니다. 사용자가 정말 신경 쓰는 파일은 나중에 생성되는 숨겨진 볼륨에 저장됩니다. 복사를 마치면 다음을 클릭합니다. 볼륨을 마운트 해제하지 않습니다.\n\n참고: 다음을 클릭하면 외부 볼륨의 클러스터 비트맵이 스캔되어 끝단이 볼륨의 끝과 정렬된 사용 가능한 공간의 중단 없는 영역 크기를 결정합니다. 이 영역은 숨겨진 볼륨을 수용하므로 가능한 최대 크기를 제한합니다. 클러스터 비트맵 검색은 숨겨진 볼륨에 의해 외부 볼륨의 데이터를 덮어쓰지 않도록 합니다.</entry>
<entry lang="ko" key="HIDVOL_HOST_FILLING_TITLE">외부 볼륨 내용</entry>
<entry lang="ko" key="HIDVOL_HOST_PRE_CIPHER_HELP">\n\n다음 단계에서는 숨겨진 볼륨이 나중에 생성될 외부 볼륨에 대한 옵션을 설정합니다.</entry>
<entry lang="ko" key="HIDVOL_HOST_PRE_CIPHER_HELP_SYSENC">\n\n다음 단계에서는 시스템 파티션 뒤의 첫 번째 파티션에 이른바 외부 VeraCrypt 볼륨을 생성합니다(이전 단계 중 하나에서 설명됨).</entry>
<entry lang="ko" key="HIDVOL_HOST_PRE_CIPHER_TITLE">외부 볼륨</entry>
<entry lang="ko" key="HIDDEN_OS_PRE_CIPHER_HELP">다음 단계에서는 숨겨진 운영 체제를 포함하는 숨겨진 볼륨의 옵션과 암호를 설정합니다.\n\nRemark: 외부 볼륨의 클러스터 비트맵을 검색하여 끝단이 외부 볼륨의 끝과 정렬된 사용 가능한 공간의 크기를 결정합니다. 이 영역은 숨겨진 볼륨을 수용하므로 가능한 최대 크기를 제한합니다. 숨겨진 볼륨의 가능한 최대 크기가 시스템 파티션 크기보다 큰 것으로 확인되었습니다(시스템 파티션의 전체 내용을 숨겨진 볼륨에 복사해야 하기 때문에 필요). 이렇게 하면 현재 외부 볼륨에 저장된 데이터가 숨겨진 볼륨 영역에 기록된 데이터로 덮어쓰지 않습니다.</entry>
<entry lang="ko" key="HIDDEN_OS_PRE_CIPHER_HELP">다음 단계에서는 숨겨진 운영 체제를 포함하는 숨겨진 볼륨의 옵션과 암호를 설정합니다.\n\n참고: 외부 볼륨의 클러스터 비트맵을 검색하여 끝단이 외부 볼륨의 끝과 정렬된 사용 가능한 공간의 크기를 결정합니다. 이 영역은 숨겨진 볼륨을 수용하므로 가능한 최대 크기를 제한합니다. 숨겨진 볼륨의 가능한 최대 크기가 시스템 파티션 크기보다 큰 것으로 확인되었습니다(시스템 파티션의 전체 내용을 숨겨진 볼륨에 복사해야 하기 때문에 필요). 이렇게 하면 현재 외부 볼륨에 저장된 데이터가 숨겨진 볼륨 영역에 기록된 데이터로 덮어쓰지 않습니다.</entry>
<entry lang="ko" key="HIDDEN_OS_PRE_CIPHER_WARNING">중요: 이 단계에서 선택한 알고리즘을 기억하시기 바랍니다. 디코이 시스템에 대해 동일한 알고리즘을 선택해야 합니다. 그렇지 않으면 숨겨진 시스템에 액세스할 수 없게 됩니다. (암호화 시스템은 숨겨진 시스템과 동일한 암호화 알고리즘으로 암호화되어야 합니다.)\n\n참고: 그 이유는 디코이 시스템과 은닉 시스템이 사용자가 선택한 단일 알고리즘만 지원하는 단일 부트 로더를 공유하기 때문입니다(각 알고리즘에 대해 VeraCrypt Boot Loader의 특수 버전이 있음).</entry>
<entry lang="ko" key="HIDVOL_PRE_CIPHER_HELP">\n\n볼륨 클러스터 비트맵이 검색되었으며 숨겨진 볼륨의 최대 크기가 확인되었습니다. 다음 단계에서는 숨겨진 볼륨의 옵션, 크기 및 암호를 설정합니다.</entry>
<entry lang="ko" key="HIDVOL_PRE_CIPHER_TITLE">숨겨진 볼륨</entry>
<entry lang="ko" key="HIDVOL_PROT_WARN_AFTER_MOUNT">이제 외부 볼륨이 분리될 때까지 숨겨진 볼륨이 손상되지 않도록 보호됩니다.\n\nWARNING: 숨겨진 볼륨 영역에 데이터를 저장하려고 하면 VeraCrypt는 전체 볼륨(외부 및 숨겨진 부분 모두)이 마운트 해제될 때까지 쓰기 보호 기능을 시작합니다. 이로 인해 외부 볼륨의 파일 시스템이 손상될 수 있으며, 이 경우 숨겨진 볼륨의 신뢰할 수 있는 부인성에 부정적인 영향을 미칠 수 있습니다. 따라서 숨겨진 볼륨 영역에 쓰지 않도록 모든 노력을 기울여야 합니다. 숨겨진 볼륨 영역에 저장되는 데이터는 저장되지 않고 손실됩니다. Windows에서 이 오류를 쓰기 오류("쓰기 지연 실패" 또는 "파라미터가 올바르지 않습니다")로 보고할 수 있습니다.</entry>
<entry lang="ko" key="HIDVOL_PROT_WARN_AFTER_MOUNT_PLURAL">이제 새로 마운트된 볼륨 내의 숨겨진 각 볼륨이 마운트 해제될 때까지 손상으로부터 보호됩니다.\n\nWARNING: 이러한 볼륨의 보호되는 숨겨진 볼륨 영역에 데이터를 저장하려고 하면 VeraCrypt는 전체 볼륨(외부 및 숨겨진 부분 모두)이 마운트 해제될 때까지 쓰기 보호를 시작합니다. 이로 인해 외부 볼륨의 파일 시스템이 손상될 수 있으며, 이 경우 숨겨진 볼륨의 신뢰할 수 있는 부인성에 부정적인 영향을 미칠 수 있습니다. 따라서 숨겨진 볼륨 영역에 쓰지 않도록 모든 노력을 기울여야 합니다. 보호되는 숨겨진 볼륨 영역에 저장되는 데이터는 저장되지 않고 손실됩니다. Windows에서 이 오류를 쓰기 오류("쓰기 지연 실패" 또는 "파라미터가 올바르지 않습니다")로 보고할 수 있습니다.</entry>
<entry lang="ko" key="HIDVOL_PROT_WARN_AFTER_MOUNT">이제 외부 볼륨이 분리될 때까지 숨겨진 볼륨이 손상되지 않도록 보호됩니다.\n\n경고: 숨겨진 볼륨 영역에 데이터를 저장하려고 하면 VeraCrypt는 전체 볼륨(외부 및 숨겨진 부분 모두)이 마운트 해제될 때까지 쓰기 보호 기능을 시작합니다. 이로 인해 외부 볼륨의 파일 시스템이 손상될 수 있으며, 이 경우 숨겨진 볼륨의 신뢰할 수 있는 부인성에 부정적인 영향을 미칠 수 있습니다. 따라서 숨겨진 볼륨 영역에 쓰지 않도록 모든 노력을 기울여야 합니다. 숨겨진 볼륨 영역에 저장되는 데이터는 저장되지 않고 손실됩니다. Windows에서 이 오류를 쓰기 오류("쓰기 지연 실패" 또는 "파라미터가 올바르지 않습니다")로 보고할 수 있습니다.</entry>
<entry lang="ko" key="HIDVOL_PROT_WARN_AFTER_MOUNT_PLURAL">이제 새로 마운트된 볼륨 내의 숨겨진 각 볼륨이 마운트 해제될 때까지 손상으로부터 보호됩니다.\n\n경고: 이러한 볼륨의 보호되는 숨겨진 볼륨 영역에 데이터를 저장하려고 하면 VeraCrypt는 전체 볼륨(외부 및 숨겨진 부분 모두)이 마운트 해제될 때까지 쓰기 보호를 시작합니다. 이로 인해 외부 볼륨의 파일 시스템이 손상될 수 있으며, 이 경우 숨겨진 볼륨의 신뢰할 수 있는 부인성에 부정적인 영향을 미칠 수 있습니다. 따라서 숨겨진 볼륨 영역에 쓰지 않도록 모든 노력을 기울여야 합니다. 보호되는 숨겨진 볼륨 영역에 저장되는 데이터는 저장되지 않고 손실됩니다. Windows에서 이 오류를 쓰기 오류("쓰기 지연 실패" 또는 "파라미터가 올바르지 않습니다")로 보고할 수 있습니다.</entry>
<entry lang="ko" key="DAMAGE_TO_HIDDEN_VOLUME_PREVENTED">경고: %c:로 마운트된 볼륨의 숨겨진 볼륨 영역에 데이터를 저장하려고 했습니다. VeraCrypt는 숨겨진 볼륨을 보호하기 위해 이러한 데이터를 저장하지 못하도록 했습니다. 이로 인해 외부 볼륨에서 파일 시스템이 손상되었을 수 있으며 Windows(윈도우)에서 쓰기 오류("쓰기 지연 실패" 또는 "파라미터가 올바르지 않습니다")를 보고했을 수 있습니다. 전체 볼륨(외부 및 숨겨진 부분 모두)이 마운트 해제될 때까지 쓰기 보호됩니다. VeraCrypt가 이 볼륨의 숨겨진 볼륨 영역에 데이터를 저장하지 못하게 한 것이 이번이 처음이 아닌 경우, 이 숨겨진 볼륨의 그럴듯한 부인성에 부정적인 영향을 미칠 수 있습니다(외부 볼륨 파일 시스템 내에서 비정상적인 상관 불일치가 발생할 수 있음). 따라서 빠른 포맷을 사용하지 않도록 설정한 상태에서 새 VeraCrypt 볼륨을 생성하고 이 볼륨에서 새 볼륨으로 파일을 이동하는 것이 좋습니다. 이 볼륨은 외부 및 숨겨진 부분 모두 안전하게 삭제해야 합니다. 지금 운영 체제를 다시 시작하는 것이 좋습니다.</entry>
<entry lang="ko" key="CANNOT_SATISFY_OVER_4G_FILE_SIZE_REQ">4GB보다 큰 파일을 볼륨에 저장할 의도를 표시했습니다. 이렇게 하려면 볼륨을 NTFS/exFAT/ReFS로 포맷해야 합니다. 그러나 이 포맷 형식은 지원하지 않습니다.</entry>
<entry lang="ko" key="CANNOT_CREATE_NON_HIDDEN_NTFS_VOLUMES_UNDER_HIDDEN_OS">숨겨진 운영 체제가 실행 중일 때는 숨김이 없는 VeraCrypt 볼륨을 NTFS/exFAT/ReFS로 포맷할 수 없습니다. 그 이유는 운영 체제가 NTFS로 포맷할 수 있도록 하려면 볼륨을 쓰기 보호 없이 일시적으로 마운트해야 하기 때문입니다(여기서 FAT로 포맷하는 것은 운영 체제가 아니라 VeraCrypt에서 수행되며 볼륨을 마운트하지 않습니다). 자세한 기술 정보는 아래를 참조하세요. 디코이 운영 체제 내에서 숨겨진 NTFS/exFAT/ReFS 볼륨을 생성할 수 있습니다.</entry>
@@ -617,7 +617,7 @@
<entry lang="ko" key="KEYFILE_CHANGED">키 파일이 성공적으로 추가/제거되었습니다.</entry>
<entry lang="ko" key="KEYFILE_EXPORTED">키 파일을 내보냄.</entry>
<entry lang="ko" key="PKCS5_PRF_CHANGED">헤더 키 유도 알고리즘이 성공적으로 설정되었습니다.</entry>
<entry lang="ko" key="NONSYS_INPLACE_ENC_RESUME_PASSWORD_PAGE_HELP">내부 암호화/암호 해독 프로세스를 다시 시작할 비시스템 볼륨의 암호 및/또는 키 파일을 입력해 주십시오.\n\nRemark: 다음을 클릭하면 VeraCrypt가 암호화/암호 해독 프로세스가 중단되고 제공된 암호 및/또는 키 파일을 사용하여 VeraCrypt 볼륨 헤더를 해독할 수 있는 모든 비시스템 볼륨을 찾으려고 시도합니다. 이러한 볼륨이 두 개 이상 있는 경우 다음 단계에서 해당 볼륨 중 하나를 선택해야 합니다.</entry>
<entry lang="ko" key="NONSYS_INPLACE_ENC_RESUME_PASSWORD_PAGE_HELP">내부 암호화/암호 해독 프로세스를 다시 시작할 비시스템 볼륨의 암호 및/또는 키 파일을 입력해 주십시오.\n\n참고: 다음을 클릭하면 VeraCrypt가 암호화/암호 해독 프로세스가 중단되고 제공된 암호 및/또는 키 파일을 사용하여 VeraCrypt 볼륨 헤더를 해독할 수 있는 모든 비시스템 볼륨을 찾으려고 시도합니다. 이러한 볼륨이 두 개 이상 있는 경우 다음 단계에서 해당 볼륨 중 하나를 선택해야 합니다.</entry>
<entry lang="ko" key="NONSYS_INPLACE_ENC_RESUME_VOL_SELECT_HELP">나열된 볼륨 중 하나를 선택하세요. 목록에는 암호화/암호 해독 프로세스가 중단되고 제공된 암호 및/또는 키 파일을 사용하여 볼륨 헤더의 암호 해독이 성공한 액세스 가능한 각 비시스템 볼륨 볼륨이 포함됩니다</entry>
<entry lang="ko" key="NONSYS_INPLACE_DEC_PASSWORD_PAGE_HELP">암호를 해독할 비시스템 VeraCrypt 볼륨의 암호 및/또는 키 파일을 입력해 주십시오.</entry>
<entry lang="ko" key="PASSWORD_HELP">올바른 암호를 선택하는 것이 매우 중요합니다. 사전에서 찾을 수 있는 단어의 하나(또는 그러한 단어의 2, 3 또는 4의 조합)만 포함하는 단어의 선택을 피해야 합니다. 이름이나 생년월일을 포함해서는 안 됩니다. 추측하기가 쉽지 않을 거예요. 좋은 암호는 대문자, 소문자, 숫자 및 특수 문자의 임의 조합(예: @^ = $ * + 등)입니다. 20자 이상으로 구성된 암호를 선택하는 것이 좋습니다(길수록 좋습니다). 가능한 최대 길이는 128자입니다.</entry>
@@ -658,7 +658,7 @@
<entry lang="ko" key="SYSENC_MOUNT_WITHOUT_PBA_NOTE">\n\n참고: 부팅 전 인증없이 암호화 된 시스템 드라이브에있는 파티션을 마운트하거나 실행되고 있지 않은 운영 체제의 암호화 된 시스템 파티션을 마운트하려는 경우 '시스템'> '사전 부팅 인증없이 마운트'.</entry>
<entry lang="ko" key="MOUNT_WITHOUT_PBA_VOL_ON_ACTIVE_SYSENC_DRIVE">이 모드에서는 활성 시스템 암호화의 주요 범위 내에있는 드라이브에있는 파티션을 마운트 할 수 없습니다.\n\n이 모드로이 파티션을 마운트하기 전에 다른 파티션에 설치된 운영 체제를 부팅하거나 드라이브 (암호화 또는 비 암호화) 또는 암호화되지 않은 운영 체제 부팅.</entry>
<entry lang="ko" key="CANT_DECRYPT_PARTITION_ON_ENTIRELY_ENCRYPTED_SYS_DRIVE">VeraCrypt는 완전히 암호화 된 시스템 드라이브의 개별 파티션을 해독 할 수 없습니다(전체 시스템 드라이브 만 해독 할 수 있음).</entry>
<entry lang="ko" key="CANT_DECRYPT_PARTITION_ON_ENTIRELY_ENCRYPTED_SYS_DRIVE_UNSURE">경고: 드라이브에 VeraCrypt 부트 로더가 포함되어 있기 때문에 완전히 암호화 된 시스템 드라이브 일 수 있습니다. 그렇다면 VeraCrypt는 완전히 암호화 된 시스템 드라이브의 개별 파티션을 해독 할 수 없습니다(전체 시스템 드라이브 만 해독 할 수 있음). 이 경우 나중에 계속 진행할 수 있지만 나중에 'Incorrect password'오류 메시지가 나타납니다.</entry>
<entry lang="ko" key="CANT_DECRYPT_PARTITION_ON_ENTIRELY_ENCRYPTED_SYS_DRIVE_UNSURE">경고: 드라이브에 VeraCrypt 부트 로더가 포함되어 있기 때문에 완전히 암호화 된 시스템 드라이브 일 수 있습니다. 그렇다면 VeraCrypt는 완전히 암호화 된 시스템 드라이브의 개별 파티션을 해독 할 수 없습니다(전체 시스템 드라이브 만 해독 할 수 있음). 이 경우 지금은 계속 진행할 수 있지만 나중에 '잘못된 암호' 오류 메시지가 나타납니다.</entry>
<entry lang="ko" key="PREV">&lt;뒤로</entry>
<entry lang="ko" key="RAWDEVICES">시스템에 설치된 원시 장치를 나열 할 수 없습니다!</entry>
<entry lang="ko" key="READONLYPROMPT">볼륨 '%s'이 (가) 있으며 읽기 전용입니다. 대체 하시겠습니까?</entry>
@@ -944,12 +944,12 @@
<entry lang="ko" key="KEYFILE_EMPTY_BASE_NAME">생성 할 키 파일의 이름을 입력하세요.</entry>
<entry lang="ko" key="KEYFILE_INVALID_BASE_NAME">키 파일의 기본 이름이 유효하지 않습니다.</entry>
<entry lang="ko" key="KEYFILE_ALREADY_EXISTS">키 파일 '%s'이 (가) 이미 존재합니다.\n덮어 쓰시겠습니까? 대답을하지 않으면 생성 프로세스가 중지됩니다.</entry>
<entry lang="ko" key="HEADER_DAMAGED_AUTO_USED_HEADER_BAK">경고 :이 볼륨의 헤더가 손상되었습니다! VeraCrypt는 볼륨에 포함 된 볼륨 헤더의 백업을 자동으로 사용했습니다.\n\n'Tools'> 'Restore Volume Header'를 선택하여 볼륨 헤더를 복구해야합니다.</entry>
<entry lang="ko" key="HEADER_DAMAGED_AUTO_USED_HEADER_BAK">경고 :이 볼륨의 헤더가 손상되었습니다! VeraCrypt는 볼륨에 포함 된 볼륨 헤더의 백업을 자동으로 사용했습니다.\n\n'도구' > '볼륨 헤더 복원'을 선택하여 볼륨 헤더를 복구해야합니다.</entry>
<entry lang="ko" key="VOL_HEADER_BACKED_UP">볼륨 헤더 백업이 성공적으로 완료되었습니다.\n\n중요 :이 백업을 사용하여 볼륨 헤더를 복원하면 현재 볼륨 비밀번호도 복원됩니다. 또한 키 파일이 볼륨을 마운트하는 데 필요하다면 볼륨 헤더가 복원 될 때 볼륨을 다시 마운트하는 데 동일한 키 파일이 필요합니다.\n\n주의 :이 볼륨 헤더 백업은 이 특정 볼륨의 헤더 만 복원하세요. 이 헤더 백업을 사용하여 다른 볼륨의 헤더를 복원하는 경우 볼륨을 마운트 할 수는 있지만 볼륨에 저장된 데이터는 해독 할 수 없습니다(마스터 키를 변경하기 때문에).</entry>
<entry lang="ko" key="VOL_HEADER_RESTORED">볼륨 헤더가 성공적으로 복원되었습니다.\n\n중요: 이전 암호도 복원되었을 수 있습니다. 또한 백업을 만들 때 키 파일을 마운트해야하는 경우 볼륨을 다시 마운트하려면 동일한 키 파일이 필요합니다.</entry>
<entry lang="ko" key="EXTERNAL_VOL_HEADER_BAK_FIRST_INFO">보안상의 이유로 볼륨에 올바른 비밀번호를 입력하거나 올바른 키 파일을 제공해야합니다.\n\n참고: 볼륨에 숨겨진 볼륨이 포함되어 있으면 올바른 비밀번호를 입력해야합니다(및/또는 올바른 볼륨의 키 파일을 제공하세요. 나중에 숨긴 볼륨의 헤더를 백업하도록 선택하면 숨겨진 볼륨에 대해 올바른 암호를 입력하거나 올바른 키 파일을 제공해야합니다.</entry>
<entry lang="ko" key="CONFIRM_VOL_HEADER_BAK">%s의 볼륨 헤더 백업을 만드시겠습니까?\n\n예를 클릭하면 헤더 백업의 파일 이름을 묻는 메시지가 나타납니다.\n\n참고: 표준 볼륨과 숨겨진 볼륨 헤더는 모두 다시 새로운 소금으로 암호화되어 백업 파일에 저장됩니다. 이 볼륨에 숨긴 볼륨이 없으면 백업 파일의 숨겨진 볼륨 헤더 용으로 예약 된 영역이 임의의 데이터로 채워집니다(그럴듯한 거부 가능성을 유지하기 위해). 백업 파일에서 볼륨 헤더를 복원 할 때 볼륨 헤더 백업을 만들 때 유효했던/올바른 암호를 입력해야합니다(그리고/또는 올바른 키 파일을 제공해야합니다). 암호 (및/또는 키 파일)는 복원 할 볼륨 헤더 유형 (예: 표준 또는 숨김)을 자동으로 결정합니다(VeraCrypt는 시행 착오를 거쳐 유형을 결정합니다).</entry>
<entry lang="ko" key="CONFIRM_VOL_HEADER_RESTORE">%s의 볼륨 헤더를 복원 하시겠습니까?\n\nWARNING: 볼륨 헤더를 복원하면 백업을 만들 때 유효한 볼륨 암호도 복원됩니다. 또한 백업을 만들 때 키 파일을 마운트해야하는 경우 볼륨 헤더를 복원 한 후에 동일한 키 파일을 다시 마운트해야합니다.\n\n예를 클릭 한 후, 헤더 백업 파일을 선택합니다.</entry>
<entry lang="ko" key="CONFIRM_VOL_HEADER_RESTORE">%s의 볼륨 헤더를 복원 하시겠습니까?\n\n경고: 볼륨 헤더를 복원하면 백업을 만들 때 유효한 볼륨 암호도 복원됩니다. 또한 백업을 만들 때 키 파일을 마운트해야하는 경우 볼륨 헤더를 복원 한 후에 동일한 키 파일을 다시 마운트해야합니다.\n\n예를 클릭 한 후, 헤더 백업 파일을 선택합니다.</entry>
<entry lang="ko" key="DOES_VOLUME_CONTAIN_HIDDEN">볼륨에 숨겨진 볼륨이 있습니까?</entry>
<entry lang="ko" key="VOLUME_CONTAINS_HIDDEN">볼륨에 숨겨진 볼륨이 있습니다.</entry>
<entry lang="ko" key="VOLUME_DOES_NOT_CONTAIN_HIDDEN">볼륨에 숨긴 볼륨이 없습니다.</entry>
@@ -994,8 +994,8 @@
<entry lang="ko" key="SIZE_ITEM">크기:</entry>
<entry lang="ko" key="PATH_ITEM">통로:</entry>
<entry lang="ko" key="DRIVE_LETTER_ITEM">드라이브 문자 :</entry>
<entry lang="ko" key="UNSUPPORTED_CHARS_IN_PWD">오류: 암호에는 ASCII 문자 만 포함되어야합니다.\n\n암호에 ASCII가 아닌 문자로 인해 시스템 구성이 변경 될 때 볼륨을 마운트 할 수 없게 될 수 있습니다.\n\n다음 문자는 허용됩니다.\n\n! 1 2 3 4 5 6 7 8 9 :; () () * +, -./0 1 2 3 4 5 6 7 8 9: ;;;; ~ ~</entry>
<entry lang="ko" key="UNSUPPORTED_CHARS_IN_PWD_RECOM">경고: 암호에 비 ASCII 문자가 포함되어 있습니다. 이로 인해 시스템 구성이 변경 될 때 볼륨을 마운트 할 수 없게 될 수 있습니다.\n\n비밀번호의 비 ASCII 문자를 모두 ASCII 문자로 바꿔야합니다. 그렇게하려면 'Volumes'- &gt;'Change Volume Password'.\n\n다음은 ASCII 문자입니다 :\n\n! 1 2 3 4 5 6 7 8 9 :; () () * +, -./0 1 2 3 4 5 6 7 8 9: ;;;; ~ ~</entry>
<entry lang="ko" key="UNSUPPORTED_CHARS_IN_PWD">오류: 암호에는 ASCII 문자만 포함되어야합니다.\n\n암호에 ASCII가 아닌 문자가 포함되면 시스템 구성이 변경될 때 볼륨을 마운트할 수 없게 될 수 있습니다.\n\n다음 문자는 허용됩니다:\n\n ! " # $ % &amp; ' ( ) * + , - . / 0 1 2 3 4 5 6 7 8 9 : ; &lt; = &gt; ? @ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z [ \\ ] ^ _ ` a b c d e f g h i j k l m n o p q r s t u v w x y z { | } ~</entry>
<entry lang="ko" key="UNSUPPORTED_CHARS_IN_PWD_RECOM">경고: 암호에 비 ASCII 문자가 포함되어 있습니다. 이로 인해 시스템 구성이 변경될 때 볼륨을 마운트할 수 없게 될 수 있습니다.\n\n호의 비 ASCII 문자를 모두 ASCII 문자로 바꿔야합니다. 그렇게 하려면 '볼륨' > '볼륨 비밀번호 변경'을 선택하세요.\n\n다음은 ASCII 문자입니다:\n\n ! " # $ % &amp; ' ( ) * + , - . / 0 1 2 3 4 5 6 7 8 9 : ; &lt; = &gt; ? @ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z [ \\ ] ^ _ ` a b c d e f g h i j k l m n o p q r s t u v w x y z { | } ~</entry>
<entry lang="ko" key="EXE_FILE_EXTENSION_CONFIRM">경고: 실행 파일 (예 :.exe,.sys 또는.dll) 및 기타 유사한 문제가되는 파일 확장명에 사용되는 파일 확장명은 사용하지 않는 것이 좋습니다. 이러한 파일 확장명을 사용하면 Windows 및 바이러스 백신 소프트웨어가 컨테이너를 방해하여 볼륨 성능에 부정적인 영향을 미치고 다른 심각한 문제가 발생할 수 있습니다.\n\n파일 확장명을 제거하거나 변경하는 것이 좋습니다(예: '.hc').\n\n문제가되는 파일 확장자를 사용 하시겠습니까?</entry>
<entry lang="ko" key="EXE_FILE_EXTENSION_MOUNT_WARNING">경고 :이 컨테이너에는 실행 파일 (예 :.exe,.sys 또는.dll) 또는 비슷한 문제가있는 다른 파일 확장명에 사용되는 파일 확장명이 있습니다. Windows 및 바이러스 백신 소프트웨어가 컨테이너를 방해하게되어 볼륨 성능에 좋지 않은 영향을 미치고 다른 심각한 문제가 발생할 수 있습니다.\n\n컨테이너의 파일 확장자를 제거하거나 변경하는 것이 좋습니다(예: '.hc'로) 볼륨을 마운트 해제하세요.</entry>
<entry lang="ko" key="HOMEPAGE">홈페이지</entry>
@@ -1103,8 +1103,8 @@
<entry lang="ko" key="ALGO_NOT_SUPPORTED_FOR_SYS_ENCRYPTION">이 알고리즘은 현재 시스템 암호화에 지원되지 않습니다.</entry>
<entry lang="ko" key="ALGO_NOT_SUPPORTED_FOR_TRUECRYPT_MODE">이 알고리즘은 TrueCrypt 모드에서는 지원되지 않습니다.</entry>
<entry lang="ko" key="PIM_NOT_SUPPORTED_FOR_TRUECRYPT_MODE">TrueCrypt 모드에서는 PIM(개인 반복 다중 경로)이 지원되지 않습니다.</entry>
<entry lang="ko" key="PIM_REQUIRE_LONG_PASSWORD">지정된 PIM을 사용하려면 암호가 20자 이상이어야 합니다.\nSorter 암호는 PIM이 485 이상인 경우에만 사용할 수 있습니다.</entry>
<entry lang="ko" key="BOOT_PIM_REQUIRE_LONG_PASSWORD">지정된 PIM을 사용하려면 사전 부트 인증 암호가 20자 이상이어야 합니다.\nSorter 암호는 PIM이 98 이상인 경우에만 사용할 수 있습니다.</entry>
<entry lang="ko" key="PIM_REQUIRE_LONG_PASSWORD">지정된 PIM을 사용하려면 암호가 20자 이상이어야 합니다.\n더 짧은 암호는 PIM이 485 이상인 경우에만 사용할 수 있습니다.</entry>
<entry lang="ko" key="BOOT_PIM_REQUIRE_LONG_PASSWORD">지정된 PIM을 사용하려면 사전 부트 인증 암호가 20자 이상이어야 합니다.\n더 짧은 암호는 PIM이 98 이상인 경우에만 사용할 수 있습니다.</entry>
<entry lang="ko" key="KEYFILES_NOT_SUPPORTED_FOR_SYS_ENCRYPTION">키 파일은 현재 시스템 암호화에 지원되지 않습니다.</entry>
<entry lang="ko" key="CANNOT_RESTORE_KEYBOARD_LAYOUT">경고: VeraCrypt가 원래 키보드 레이아웃을 복원할 수 없습니다. 이로 인해 암호를 잘못 입력할 수 있습니다.</entry>
<entry lang="ko" key="CANT_CHANGE_KEYB_LAYOUT_FOR_SYS_ENCRYPTION">오류: VeraCrypt에 대한 키보드 레이아웃을 표준 미국 키보드 레이아웃으로 설정할 수 없습니다.\n\n참고 미국 이외의 Windows 키보드 레이아웃을 사용할 수 없는 사전 부트 환경(Windows가 시작되기 전)에 암호를 입력해야 합니다. 따라서 항상 표준 미국 키보드 레이아웃을 사용하여 암호를 입력해야 합니다.</entry>
@@ -1405,10 +1405,10 @@
<entry lang="ko" key="RESCUE_DISK_EFI_INFO">파티션을 암호화하려면 먼저 VRD(VeraCrypt 복구 디스크)를 생성해야 합니다. VRD(VeraCrypt 부트로더, 마스터 키 또는 기타 중요 데이터가 손상된 경우 VRD에서 복원할 수 있습니다(그러나 올바른 암호를 입력해야 함).\n\n- Windows가 손상되어 시작할 수 없는 경우 VRD를 사용하여 Windows가 시작되기 전에 영구적으로 파티션을 해독할 수 있습니다.\n\n- VRD에는 현재 EFI 부트 로더의 백업이 포함되어 있으며 필요한 경우 복원할 수 있습니다.\n\nVeraCrypt 복구 디스크 ZIP 이미지가 아래에 지정된 위치에 생성됩니다.</entry>
<entry lang="ko" key="RESCUE_DISK_EFI_EXTRACT_INFO">복구 디스크 ZIP 이미지가 생성되어 이 파일에 저장되었습니다.\n%s\n이제 FAT/FAT32로 포맷된 USB 스틱으로 추출해야 합니다.\n\n%ls 복구 디스크를 생성한 후 다음을 클릭하여 디스크가 올바르게 생성되었는지 확인합니다.</entry>
<entry lang="ko" key="RESCUE_DISK_EFI_EXTRACT_INFO_NO_CHECK">s\n\n응급 복구 디스크 ZIP 이미지가 생성되어 이 파일에 저장되었습니다 :\n%s\n\n이제 FAT/FAT32로 포맷 된 USB 스틱에 이미지를 추출하거나 나중에 사용할 수 있도록 안전한 위치로 옮겨야합니다.\n\n계속하려면 다음을 클릭하세요.</entry>
<entry lang="ko" key="RESCUE_DISK_EFI_EXTRACT_INFO_NOTE">중요: zip 파일 USB 스틱의 루트에 직접 추출해야 합니다. 예를 들어 USB 스틱의 드라이브 문자가 E:인 경우 zip 파일을 추출하면 E:\\ 폴더가 생성됩니다.USB 스틱에 EFI가 있습니다.\n\n</entry>
<entry lang="ko" key="RESCUE_DISK_EFI_EXTRACT_INFO_NOTE">중요: zip 파일 USB 스틱의 루트에 직접 추출해야 합니다. 예를 들어 USB 스틱의 드라이브 문자가 E:인 경우 zip 파일을 추출하면 USB 스틱에 E:\\EFI 폴더가 생성되어야 합니다.\n\n</entry>
<entry lang="ko" key="RESCUE_DISK_EFI_CHECK_FAILED">복구 디스크가 올바르게 추출되었는지 확인할 수 없습니다.\n\n복구 디스크를 추출한 경우 USB 스틱을 꺼내고 다시 삽입한 후 다음을 클릭하여 다시 시도합니다. 도움이 되지 않는 경우 다른 USB 스틱 및/또는 다른 ZIP 소프트웨어를 사용해 주십시오.아직 복구 디스크를 추출하지 않은 경우 압축을 풀고 다음을 클릭합니다.\n\n이 마법사를 시작하기 전에 생성된 VeraCrypt 복구 디스크를 확인하려고 하면 다른 마스터 키에 대해 생성되었기 때문에 해당 복구 디스크를 사용할 수 없습니다. 새로 생성된 복구 디스크 ZIP 이미지를 추출해야 합니다.</entry>
<entry lang="ko" key="RESCUE_DISK_EFI_NON_WIZARD_CHECK_FAILED">복구 디스크가 올바르게 추출되었는지 확인할 수 없습니다.\n\nUSB 스틱에 복구 디스크 이미지를 추출한 경우 꺼내고 다시 삽입한 다음 다시 시도합니다. 도움이 되지 않는 경우 다른 ZIP 소프트웨어 및/또는 매체를 사용해 주십시오.\n\n다른 마스터 키, 암호, 소금 등에 대해 생성된 VeraCrypt 복구 디스크를 확인하려고 하면 해당 복구 디스크가 항상 이 확인에 실패합니다. 현재 구성과 완전히 호환되는 새 복구 디스크를 생성하려면 '시스템' > '복구 디스크 생성'를 선택합니다.</entry>
<entry lang="ko" key="RESCUE_DISK_EFI_NON_WIZARD_CREATION">복구 디스크 이미지가 생성되어 파일에 저장되었습니다.\n%s\n이제 FAT/FAT32로 포맷된 USB 스틱에 복구 디스크 이미지를 추출해야 합니다.\n\nIMPORTANT: zip 파일 USB 스틱의 루트 직접 추출해야 합니다. 예를 들어 USB 스틱의 드라이브 문자가 E:인 경우 zip 파일을 추출하면 E:\\ 폴더가 생성됩니다.USB 스틱에 EFI가 있습니다.\n\n복구 디스크를 생성한 후 '시스템' > 'Verify 복구 디스크'를 선택하여 올바르게 생성되었는지 확인합니다.</entry>
<entry lang="ko" key="RESCUE_DISK_EFI_NON_WIZARD_CREATION">복구 디스크 이미지가 생성되어 다음 파일에 저장되었습니다:\n%s\n\n이제 FAT/FAT32로 포맷된 USB 스틱에 복구 디스크 이미지를 추출해야 합니다.\n\n중요: zip 파일 USB 스틱의 루트 직접 추출해야 합니다. 예를 들어 USB 스틱의 드라이브 문자가 E:인 경우 zip 파일을 추출하면 USB 스틱에 E:\\EFI 폴더가 생성되어야 합니다.\n\n복구 디스크를 만든 후 '시스템' > '복구 디스크 검증'을 선택하여 올바르게 생성되었는지 확인하세요.</entry>
<entry lang="ko" key="IDC_SECURE_DESKTOP_PASSWORD_ENTRY">암호 입력에 보안 데스크톱을 사용합니다.</entry>
<entry lang="ko" key="ERR_REFS_INVALID_VOLUME_SIZE">명령줄에 지정된 볼륨 파일 크기가 선택한 ReFS 파일 시스템과 호환되지 않습니다.</entry>
<entry lang="ko" key="IDC_EDIT_DCSPROP">부트 로더 구성을 편집</entry>
@@ -1498,7 +1498,7 @@
<entry lang="ko" key="LINUX_KERNEL_CRYPT_OPTION_CHANGE_MOUNTED_HINT">이 설정을 비활성화해도 커널 암호화 서비스를 통해 마운트된 볼륨에는 효과가 없을 수 있습니다.</entry>
<entry lang="ko" key="LINUX_REMOUNT_BECAUSEOF_SETTING">현재 설정을 적용하려면 현재 마운트된 볼륨들을 다시 마운트해야 합니다.</entry>
<entry lang="ko" key="LINUX_UNKNOWN_EXC_OCCURRED">알 수 없는 오류가 발생했습니다.</entry>
<entry lang="ko" key="LINUX_FIRST_AID">"'확인'을 누르면 디스크 유틸리티가 실행될 것입니다\n\n디스크 유틸리티 창에서 당신의 볼륨을 선택하고 'First Aid' 페이지에서 '디스크 확인' 혹은 '디스크 수리' 버튼을 누르십시오.</entry>
<entry lang="ko" key="LINUX_FIRST_AID">"'확인'을 누르면 디스크 유틸리티가 실행될 것입니다\n\n디스크 유틸리티 창에서 볼륨을 선택하고 '응급 처치' 페이지에서 '디스크 확인' 또는 '디스크 수리' 버튼을 누르십시오.</entry>
<entry lang="ko" key="LINUX_MOUNT_ALL_DEV">모든 장치 마운트</entry>
<entry lang="ko" key="LINUX_ERROR_LOADING_CONFIG">특정 위치의 설정 파일 불러오기 실패: </entry>
<entry lang="ko" key="LINUX_SELECT_FREE_SLOT">리스트에서 빈 드라이브 자리를 선택하세요.</entry>
@@ -1515,12 +1515,8 @@
<entry lang="ko" key="LINUX_ERROR_TRY_ENCRYPT_SYSTEM_PARTITION">오류: 지금 시스템 파티션을 암호화하려고 시도하고 있습니다.\n\nVeraCrypt는 Windows에서만 시스템 파티션을 암호화할 수 있습니다.</entry>
<entry lang="ko" key="LINUX_WARNING_FORMAT_DESTROY_FS">경고: 장치를 포맷하면 '{0}'에 있는 모든 데이터가 지워집니다.\n\n계속하시겠습니까?</entry>
<entry lang="ko" key="LINUX_MOUNTET_HINT">선택된 장치의 파일 시스템이 현재 마운트되어 있습니다. 계속하기 전에 '{0}'을 마운트 해제하십시오.</entry>
<entry lang="ko" key="LINUX_HIDDEN_PASS_NO_DIFF">숨겨진 볼륨은 외부 볼륨과 같은 비밀번호 혹은 PIM, 키 파일 가질 수 없습니다.The Hidden volume can't have the same password, PIM and keyfiles as the Outer volume</entry>
<entry lang="ko" key="LINUX_HIDDEN_PASS_NO_DIFF">숨겨진 볼륨은 외부 볼륨과 같은 비밀번호, PIM 또는 키 파일을 사용할 수 없습니다.</entry>
<entry lang="ko" key="LINUX_NOT_FAT_HINT">모든 볼륨이 FAT 파일시스템으로 포맷되지 않고 마운트하려는 볼륨에 대해 {0}가 아닌 다른 플랫폼에서 추가로 파일 시스템 드라이브를 설치해야 할 수도 있습니다.</entry>
<entry lang="ko" key="LINUX_ERROR_SIZE_HIDDEN_VOL">오류: 숨겨진 볼륨은 {0} TB ({1} GB)보다 크게 만들 수 없습니다.\n\n사용가능한 해결책:\n- 컨테이너 혹은 파티션을 {0} TB보다 작게 생성하세요.\n</entry>
<entry lang="ko" key="LINUX_MAX_SIZE_HINT">- 4096 바이트 섹터를 사용하는 드라이브는 장치에 호스트되는 숨겨진 볼륨 혹은 파티션의 크기를 최대 16 TB까지 생성할 수 있습니다.</entry>
<entry lang="ko" key="LINUX_DOT_LF">.\n</entry>
<entry lang="ko" key="LINUX_NOT_SUPPORTED"> (이 플랫폼의 구성요소로는 지원되지 않습니다).\n</entry>
<entry lang="ko" key="LINUX_KERNEL_OLD">시스템이 오래된 Linux 커널을 사용하고 있습니다.\n\nLinux 커널의 버그로 인해, VeraCrypt 볼륨으로 데이터 작성 중에 시스템이 응답을 중단할 수도 있습니다. 이 문제는 커널을 2.6.24 혹은 더 높은 버전으로 업그레이드하면 해결됩니다.</entry>
<entry lang="ko" key="LINUX_VOL_UNMOUNTED">{0} 볼륨이 마운트 해제되었습니다.</entry>
<entry lang="ko" key="LINUX_VOL_MOUNTED">{0} 볼륨이 마운트되었습니다.</entry>
@@ -1653,40 +1649,41 @@
<entry lang="ko" key="IDD_PREFERENCES_TAB_PASSWORD">암호</entry>
<entry lang="ko" key="IDC_SECURE_DESKTOP_ENABLE_IME">보안 데스크톱에서 입력기(IME) 활성화하기</entry>
<entry lang="ko" key="ENABLE_IME_IN_SECURE_DESKTOP_WARNING">경고: 보안 데스크톱에서 키 파일/토큰 선택 시 문제가 발생하는 경우에만 이 옵션을 활성화하세요.</entry>
<entry lang="en" key="ERR_KEY_DERIVATION_FAILED">Key derivation failed. This may be caused by insufficient memory or an interrupted operation.</entry>
<entry lang="en" key="EFI_MS_BOOT_LOADER_RESTORE_FAILED">The system partition/drive is already decrypted, but the EFI Microsoft boot loader path was not restored to the Windows Boot Manager. Only the EFI boot files need repair. Use the VeraCrypt Rescue Disk repair option, or boot Windows recovery media and run 'bcdboot W:\\Windows /s S: /f UEFI' after replacing W: with the Windows volume drive letter and S: with the EFI System Partition drive letter. Path:</entry>
<entry lang="en" key="EFI_FALLBACK_BOOT_LOADER_STILL_VERACRYPT">The system partition/drive is already decrypted, but the EFI fallback boot loader path still contains the VeraCrypt Boot Loader. Only the EFI boot files need repair. Use the VeraCrypt Rescue Disk repair option, or boot Windows recovery media and run 'bcdboot W:\\Windows /s S: /f UEFI' after replacing W: with the Windows volume drive letter and S: with the EFI System Partition drive letter. Path:</entry>
<entry lang="en" key="IDM_REPAIR_EFI_BOOT_LOADER">Repair EFI Boot Loader...</entry>
<entry lang="en" key="CONFIRM_REPAIR_EFI_BOOT_LOADER">VeraCrypt will restore the Windows EFI boot loader paths and remove VeraCrypt EFI boot entries and files.\n\nUse this only after the system partition/drive is fully decrypted and Windows can boot without system encryption.\n\nDo you want to continue?</entry>
<entry lang="en" key="EFI_BOOT_LOADER_FILE_READ_FAILED">The EFI boot loader file could not be read completely:</entry>
<entry lang="en" key="EFI_BOOT_LOADER_FILE_TOO_LARGE">The EFI boot loader file is unexpectedly large and was not inspected:</entry>
<entry lang="en" key="EFI_BOOT_LOADER_NVRAM_CLEANUP_FAILED">The system partition/drive is already decrypted and the EFI boot loader files were restored, but VeraCrypt could not remove one or more VeraCrypt firmware boot entries. The VeraCrypt EFI files were left in place so any remaining firmware entry still points to an existing loader. Retry as Administrator or remove the VeraCrypt boot entry from firmware setup after confirming Windows Boot Manager starts normally.</entry>
<entry lang="en" key="EFI_BOOT_LOADER_REPAIR_BLOCKED">The EFI boot loader cannot be repaired while system encryption or decryption is active or incomplete. Complete or resume the pending system encryption/decryption process before retrying.</entry>
<entry lang="en" key="EFI_BOOT_LOADER_REPAIR_NOT_APPLICABLE">This repair action is available only on systems booting in UEFI mode from a GPT system partition.</entry>
<entry lang="en" key="EFI_BOOT_LOADER_REPAIR_SUCCESS">The EFI boot loader has been repaired successfully.</entry>
<entry lang="en" key="PIM_ARGON2_HELP">PIM (Personal Iterations Multiplier) controls the memory and time costs used by Argon2id header key derivation as follows:\n Memory = min(64 MiB + ((PIM - 1) x 32 MiB), 1024 MiB)\n Iterations = 3 + ((PIM - 1) / 3) for PIM 31 or lower, then 13 + (PIM - 31)\n\nWhen left empty or set to 0, VeraCrypt will use the default Argon2 PIM (12), which uses 416 MiB of memory and 6 iterations.\n\nWhen the password is less than 20 characters, Argon2 PIM can't be smaller than 12 in order to maintain a minimal security level.\nWhen the password is 20 characters or more, Argon2 PIM can be set to any value.\n\nAn Argon2 PIM larger than 12 increases memory usage up to 1024 MiB and then increases iterations. This will lead to slower mounting. A small Argon2 PIM (less than 12) will lead to quicker mounting but it can reduce security if the password is not strong enough.</entry>
<entry lang="en" key="PIM_ARGON2_LARGE_WARNING">You have chosen an Argon2 PIM value that is larger than VeraCrypt default value.\nPlease note that this can require more memory and lead to much slower mounting.</entry>
<entry lang="en" key="PIM_ARGON2_SMALL_WARNING">You have chosen an Argon2 PIM value that is smaller than the default VeraCrypt value. Please note that if your password is not strong enough, this could lead to weaker security.\n\nDo you confirm that you are using a strong password?</entry>
<entry lang="en" key="PIM_ARGON2_REQUIRE_LONG_PASSWORD">Password must contain 20 or more characters in order to use the specified Argon2 PIM.\nShorter passwords can only be used if the Argon2 PIM is 12 or greater.</entry>
<entry lang="en" key="LINUX_PREF_MOUNT_NTFS_WITH_NTFS3">Mount NTFS volumes with the Linux kernel ntfs3 driver</entry>
<entry lang="en" key="LINUX_PREF_MOUNT_NTFS_WITH_NTFS3_HELP">Linux only. When enabled, VeraCrypt probes the decrypted virtual device with blkid -p and mounts detected NTFS filesystems with ntfs3 instead of the default NTFS backend. If NTFS detection fails, VeraCrypt uses the normal automatic filesystem selection. If ntfs3 is unavailable or blocked by the distribution, mounting may fail. This opt-in option can avoid suspend or hibernate hangs caused by frozen user-space FUSE filesystems.</entry>
<entry lang="en" key="LINUX_EMERGENCY_UNMOUNT_WARNING">Normal unmount of volume {0} failed. This can happen when applications still have files or directories open on the volume, or when the backing device was disconnected and the mount became stale.\n\nIf the device is still connected, choose No, close applications using the volume, and try unmounting again.\n\nIf the device was disconnected or the mount is stale, VeraCrypt can attempt emergency cleanup by lazy-detaching the filesystem and removing or scheduling removal of VeraCrypt kernel objects. Pending writes may have failed, data may be lost, and cleanup may remain pending until applications close open files. Check the filesystem with fsck or the appropriate repair tool before using it again.\n\nContinue?</entry>
<entry lang="en" key="LINUX_EMERGENCY_UNMOUNTED">Emergency cleanup for volume {0} has been initiated. If the volume was disconnected, the mount was stale, or there were pending writes, check the filesystem with fsck or the appropriate repair tool before using it again.</entry>
<entry lang="en" key="FORMAT_STAGE_WRITING_DATA">Creating volume data. Please wait.</entry>
<entry lang="en" key="FORMAT_STAGE_WRITING_BACKUP_HEADER">Finalizing volume creation: writing backup header.</entry>
<entry lang="en" key="FORMAT_STAGE_FLUSHING_DATA">Finalizing volume creation: flushing data to disk. This can take several minutes on large volumes or slow/USB storage.</entry>
<entry lang="en" key="FORMAT_STAGE_FINISHED">Finalizing volume creation.</entry>
<entry lang="en" key="FORMAT_STAGE_ABORTED">Volume creation has been aborted.</entry>
<entry lang="en" key="FORMAT_STAGE_ERROR">Volume creation failed.</entry>
<entry lang="en" key="FORMAT_STAGE_PREPARING_TEMP_VOLUME">Finalizing volume creation: mounting temporary volume.</entry>
<entry lang="en" key="FORMAT_STAGE_PREPARING_TEMP_DEVICE">Finalizing volume creation: preparing temporary device.</entry>
<entry lang="en" key="FORMAT_STAGE_CREATING_FILESYSTEM">Finalizing volume creation: creating filesystem using {0}.</entry>
<entry lang="en" key="FORMAT_STAGE_DISMOUNTING_TEMP_VOLUME">Finalizing volume creation: dismounting temporary volume.</entry>
<entry lang="en" key="MACOSX_APFS_SYNTHESIZED_DEVICE">The selected device '{0}' is an APFS synthesized container or volume and cannot be used as a raw VeraCrypt volume host.\n\nSelect the physical APFS store partition{1} instead.</entry>
<entry lang="en" key="MACOSX_DEVICE_SYSTEM_PARTITION">The selected device '{0}' is a macOS system/support partition and cannot be used as a VeraCrypt volume host.</entry>
<entry lang="en" key="MACOSX_APFS_SYSTEM_STORE">The selected APFS physical store '{0}' contains the currently mounted macOS system volume and cannot be used as a VeraCrypt volume host.</entry>
<entry lang="en" key="MACOSX_DEVICE_NOT_WRITABLE">macOS reports the selected device '{0}' as read-only. Select a writable physical partition or disk.</entry>
<entry lang="en" key="MACOSX_APFS_EROFS_HINT">macOS reported the selected device as read-only. If this is an APFS disk, make sure you selected the physical APFS store partition, not an APFS synthesized volume. Use Disk Utility or 'diskutil list' to identify the physical partition, then retry.</entry>
<entry lang="ko" key="ERR_KEY_DERIVATION_FAILED">키 파생에 실패했습니다. 메모리 부족 또는 중단된 작업으로 인해 발생했을 수 있습니다.</entry>
<entry lang="ko" key="EFI_MS_BOOT_LOADER_RESTORE_FAILED">시스템 파티션/드라이브는 이미 복호화되었지만 EFI Microsoft 부트 로더 경로가 Windows 부팅 관리자에 복원되지 않았습니다. EFI 부트 파일만 복구하면 됩니다. VeraCrypt 복구 디스크의 복구 옵션을 사용하거나, Windows 복구 미디어로 부팅한 뒤 W:Windows 볼륨의 드라이브 문자로, S:를 EFI 시스템 파티션의 드라이브 문자로 바꾸어 'bcdboot W:\\Windows /s S: /f UEFI'를 실행하세요. 경로:</entry>
<entry lang="ko" key="EFI_FALLBACK_BOOT_LOADER_STILL_VERACRYPT">시스템 파티션/드라이브는 이미 복호화되었지만 EFI 대체 부트 로더 경로에 여전히 VeraCrypt 부트 로더가 포함되어 있습니다. EFI 부트 파일만 복구하면 됩니다. VeraCrypt 복구 디스크의 복구 옵션을 사용하거나, Windows 복구 미디어로 부팅한 뒤 W:Windows 볼륨의 드라이브 문자로, S:를 EFI 시스템 파티션의 드라이브 문자로 바꾸어 'bcdboot W:\\Windows /s S: /f UEFI'를 실행하세요. 경로:</entry>
<entry lang="ko" key="IDM_REPAIR_EFI_BOOT_LOADER">EFI 부트 로더 복구...</entry>
<entry lang="ko" key="CONFIRM_REPAIR_EFI_BOOT_LOADER">VeraCrypt는 Windows EFI 부트 로더 경로를 복원하고 VeraCrypt EFI 부트 항목과 파일을 제거합니다.\n\n시스템 파티션/드라이브가 완전히 복호화되었고 Windows가 시스템 암호화 없이 부팅될 수 있는 경우에만 사용하세요.\n\n계속하시겠습니까?</entry>
<entry lang="ko" key="EFI_BOOT_LOADER_FILE_READ_FAILED">EFI 부트 로더 파일을 완전히 읽을 수 없습니다:</entry>
<entry lang="ko" key="EFI_BOOT_LOADER_FILE_TOO_LARGE">EFI 부트 로더 파일이 예상보다 커서 검사하지 않았습니다:</entry>
<entry lang="ko" key="EFI_BOOT_LOADER_NVRAM_CLEANUP_FAILED">시스템 파티션/드라이브는 이미 복호화되었고 EFI 부트 로더 파일도 복원되었지만, VeraCrypt가 하나 이상의 VeraCrypt 펌웨어 부트 항목을 제거하지 못했습니다. 남아 있는 펌웨어 항목이 여전히 존재하는 로더를 가리키도록 VeraCrypt EFI 파일은 그대로 두었습니다. 관리자 권한으로 다시 시도하거나 Windows 부팅 관리자가 정상적으로 시작되는지 확인한 후 펌웨어 설정에서 VeraCrypt 부트 항목을 제거하세요.</entry>
<entry lang="ko" key="EFI_BOOT_LOADER_REPAIR_BLOCKED">시스템 암호화 또는 복호화가 진행 중이거나 완료되지 않은 동안에는 EFI 부트 로더를 복구할 수 없습니다. 다시 시도하기 전에 보류 중인 시스템 암호화/복호화 프로세스를 완료하거나 재개하세요.</entry>
<entry lang="ko" key="EFI_BOOT_LOADER_REPAIR_NOT_APPLICABLE">이 복구 작업은 GPT 시스템 파티션에서 UEFI 모드로 부팅하는 시스템에서만 사용할 수 있습니다.</entry>
<entry lang="ko" key="EFI_BOOT_LOADER_REPAIR_SUCCESS">EFI 부트 로더가 성공적으로 복구되었습니다.</entry>
<entry lang="ko" key="PIM_ARGON2_HELP">PIM(Personal Iterations Multiplier)은 Argon2id 헤더 키 파생에 사용되는 메모리 및 시간 비용을 다음과 같이 제어합니다:\n 메모리 = min(64 MiB + ((PIM - 1) x 32 MiB), 1024 MiB)\n 반복 = PIM이 31 이하인 경우 3 + ((PIM - 1) / 3), 31보다 큰 경우 13 + (PIM - 31)\n\n비어 두거나 0으로 설정한 경우 VeraCrypt는 416 MiB의 메모리와 6회 반복을 사용하는 기본 Argon2 PIM(12)을 사용합니다.\n\n암호가 20자 미만인 경우 최소 보안 수준을 유지하기 위해 Argon2 PIM은 12보다 작으면 안 됩니다.\n암호가 20자 이상인 경우 Argon2 PIM을 임의의 값으로 설정할 수 있습니다.\n\nArgon2 PIM 값이 12보다 크면 메모리 사용량이 최대 1024 MiB까지 증가한 다음 반복 횟수가 증가합니다. 이로 인해 마운트 속도가 느려집니다. Argon2 PIM 값이 작으면(12 미만) 마운트 속도가 빨라지지만 암호의 강도가 충분하지 않으면 보안을 줄일 수 있습니다.</entry>
<entry lang="ko" key="PIM_ARGON2_LARGE_WARNING">VeraCrypt 기본값보다 큰 Argon2 PIM 값을 선택했습니다.\n이 설정은 더 많은 메모리를 필요로 하고 마운트 속도를 훨씬 느리게 할 수 있습니다.</entry>
<entry lang="ko" key="PIM_ARGON2_SMALL_WARNING">VeraCrypt 기본값보다 작은 Argon2 PIM 값을 선택했습니다. 암호의 강도가 충분하지 않으면 보안이 약해질 수 있습니다.\n\n강력한 암호를 사용하고 있는지 확인하시겠습니까?</entry>
<entry lang="ko" key="PIM_ARGON2_REQUIRE_LONG_PASSWORD">지정한 Argon2 PIM을 사용하려면 암호가 20자 이상이어야 합니다.\n더 짧은 암호는 Argon2 PIM 12 이상인 경우에만 사용할 수 있습니다.</entry>
<entry lang="ko" key="LINUX_PREF_MOUNT_NTFS_WITH_KERNEL_DRIVER">Linux 커널 내 드라이버로 NTFS 볼륨 마운트</entry>
<entry lang="ko" key="LINUX_PREF_MOUNT_NTFS_WITH_KERNEL_DRIVER_HELP">Linux 전용. 활성화되어 있고 명시적인 파일 시스템 유형이 제공되지 않은 경우, VeraCrypt는 blkid -p로 복호화된 가상 장치를 검사하고 사용 가능한 커널 내 NTFS 드라이버로 감지된 NTFS 파일 시스템을 마운트하여 ntfs-3g 같은 마운트 도우미를 우회합니다. VeraCrypt는 최신 읽기/쓰기 드라이버로 확실히 식별되거나 Linux 커널 7.1 이상에서 예상되는 경우 ntfs를 사용하고, 그 외에는 ntfs3를 사용합니다. NTFS 감지에 실패하면 VeraCrypt는 일반 자동 파일 시스템 선택을 사용합니다. 지원되는 커널 내 NTFS 드라이버가 없거나 로드할 수 없으면 마운트가 실패합니다. 이 선택 옵션은 동결된 사용자 공간 FUSE 파일 시스템으로 인한 절전 또는 최대 절전 모드 멈춤 현상을 피할 수 있습니다.</entry>
<entry lang="ko" key="LINUX_KERNEL_NTFS_DRIVER_UNAVAILABLE">지원되는 커널 내 NTFS 드라이버가 없거나 로드할 수 없습니다. 시스템 기본 NTFS 백엔드를 사용하려면 NTFS 커널 드라이버 설정을 비활성화하거나 커널 NTFS를 명시적으로 요청하지 마세요.</entry>
<entry lang="ko" key="LINUX_EMERGENCY_UNMOUNT_WARNING">볼륨 {0}의 일반 마운트 해제에 실패했습니다. 애플리케이션이 아직 볼륨의 파일 또는 디렉터리를 열어 두었거나, 기반 장치가 연결 해제되어 마운트 상태가 유효하지 않게 된 경우에 발생할 수 있습니다.\n\n장치가 아직 연결되어 있으면 '아니요'를 선택하고, 볼륨을 사용하는 애플리케이션을 닫은 다음 다시 마운트 해제를 시도하세요.\n\n장치가 연결 해제되었거나 마운트 상태가 유효하지 않으면 VeraCrypt가 파일 시스템을 지연 분리하고 VeraCrypt 커널 객체를 제거하거나 제거 예약하여 긴급 정리를 시도할 수 있습니다. 보류 중인 쓰기가 실패했을 수 있고, 데이터가 손실될 수 있으며, 애플리케이션이 열린 파일을 닫을 때까지 정리가 보류 상태로 남을 수 있습니다. 다시 사용하기 전에 fsck 또는 적절한 복구 도구로 파일 시스템을 확인하세요.\n\n계속하시겠습니까?</entry>
<entry lang="ko" key="LINUX_EMERGENCY_UNMOUNTED">볼륨 {0}에 대한 긴급 정리가 시작되었습니다. 장치가 연결 해제되었거나 마운트 상태가 유효하지 않았거나 보류 중인 쓰기가 있었다면, 다시 사용하기 전에 fsck 또는 적절한 복구 도구로 파일 시스템을 확인하세요.</entry>
<entry lang="ko" key="FORMAT_STAGE_WRITING_DATA">볼륨 데이터를 생성 중입니다. 기다려 주세요.</entry>
<entry lang="ko" key="FORMAT_STAGE_WRITING_BACKUP_HEADER">볼륨 생성 마무리 중: 백업 헤더를 쓰는 중입니다.</entry>
<entry lang="ko" key="FORMAT_STAGE_FLUSHING_DATA">볼륨 생성 마무리 중: 데이터를 디스크로 플러시하는 중입니다. 대용량 볼륨 또는 느린/USB 저장소에서는 몇 분이 걸릴 수 있습니다.</entry>
<entry lang="ko" key="FORMAT_STAGE_FINISHED">볼륨 생성을 마무리하는 중입니다.</entry>
<entry lang="ko" key="FORMAT_STAGE_ABORTED">볼륨 생성이 중단되었습니다.</entry>
<entry lang="ko" key="FORMAT_STAGE_ERROR">볼륨 생성에 실패했습니다.</entry>
<entry lang="ko" key="FORMAT_STAGE_PREPARING_TEMP_VOLUME">볼륨 생성 마무리 중: 임시 볼륨을 마운트하는 중입니다.</entry>
<entry lang="ko" key="FORMAT_STAGE_PREPARING_TEMP_DEVICE">볼륨 생성 마무리 중: 임시 장치를 준비하는 중입니다.</entry>
<entry lang="ko" key="FORMAT_STAGE_CREATING_FILESYSTEM">볼륨 생성 마무리 중: {0}을(를) 사용하여 파일 시스템을 생성하는 중입니다.</entry>
<entry lang="ko" key="FORMAT_STAGE_DISMOUNTING_TEMP_VOLUME">볼륨 생성 마무리 중: 임시 볼륨을 마운트 해제하는 중입니다.</entry>
<entry lang="ko" key="MACOSX_APFS_SYNTHESIZED_DEVICE">선택한 장치 '{0}'은 APFS 합성 컨테이너 또는 볼륨이므로 원시 VeraCrypt 볼륨 호스트로 사용할 수 없습니다.\n\n대신 물리적 APFS 저장소 파티션{1}을 선택하세요.</entry>
<entry lang="ko" key="MACOSX_DEVICE_SYSTEM_PARTITION">선택한 장치 '{0}'은 macOS 시스템/지원 파티션이므로 VeraCrypt 볼륨 호스트로 사용할 수 없습니다.</entry>
<entry lang="ko" key="MACOSX_APFS_SYSTEM_STORE">선택한 APFS 물리적 저장소 '{0}'에는 현재 마운트된 macOS 시스템 볼륨이 포함되어 있으므로 VeraCrypt 볼륨 호스트로 사용할 수 없습니다.</entry>
<entry lang="ko" key="MACOSX_DEVICE_NOT_WRITABLE">macOS에서 선택한 장치 '{0}'을 읽기 전용으로 보고했습니다. 쓰기 가능한 물리적 파티션 또는 디스크를 선택하세요.</entry>
<entry lang="ko" key="MACOSX_APFS_EROFS_HINT">macOS에서 선택한 장치를 읽기 전용으로 보고했습니다. APFS 디스크인 경우 APFS 합성 볼륨이 아니라 물리적 APFS 저장소 파티션을 선택했는지 확인하세요. 디스크 유틸리티 또는 'diskutil list'를 사용하여 물리적 파티션을 식별한 다음 다시 시도하세요.</entry>
</localization>
<xs:schema attributeFormDefault="unqualified" elementFormDefault="qualified" xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:element name="VeraCrypt">
+4 -7
View File
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<VeraCrypt>
<localization prog-version="1.26.28">
<localization prog-version="1.26.29">
<language langid="lv" name="Latviešu" en-name="Latvian" version="0.1.0" translators="Edmunds Melkers" />
<font lang="lv" class="normal" size="11" face="default" />
<font lang="lv" class="bold" size="13" face="Arial" />
@@ -1517,10 +1517,6 @@
<entry lang="en" key="LINUX_MOUNTET_HINT">The filesystem of the selected device is currently mounted. Please unmount '{0}' before proceeding.</entry>
<entry lang="en" key="LINUX_HIDDEN_PASS_NO_DIFF">The Hidden volume can't have the same password, PIM and keyfiles as the Outer volume</entry>
<entry lang="en" key="LINUX_NOT_FAT_HINT">Please note that the volume will not be formatted with a FAT filesystem and, therefore, you may be required to install additional filesystem drivers on platforms other than {0}, which will enable you to mount the volume.</entry>
<entry lang="en" key="LINUX_ERROR_SIZE_HIDDEN_VOL">Error: The hidden volume to be created is larger than {0} TB ({1} GB).\n\nPossible solutions:\n- Create a container/partition smaller than {0} TB.\n</entry>
<entry lang="en" key="LINUX_MAX_SIZE_HINT">- Use a drive with 4096-byte sectors to be able to create partition/device-hosted hidden volumes up to 16 TB in size</entry>
<entry lang="en" key="LINUX_DOT_LF">.\n</entry>
<entry lang="en" key="LINUX_NOT_SUPPORTED"> (not supported by components available on this platform).\n</entry>
<entry lang="en" key="LINUX_KERNEL_OLD">Your system uses an old version of the Linux kernel.\n\nDue to a bug in the Linux kernel, your system may stop responding when writing data to a VeraCrypt volume. This problem can be solved by upgrading the kernel to version 2.6.24 or later.</entry>
<entry lang="en" key="LINUX_VOL_UNMOUNTED">Volume {0} has been unmounted.</entry>
<entry lang="en" key="LINUX_VOL_MOUNTED">Volume {0} has been mounted.</entry>
@@ -1668,8 +1664,9 @@
<entry lang="en" key="PIM_ARGON2_LARGE_WARNING">You have chosen an Argon2 PIM value that is larger than VeraCrypt default value.\nPlease note that this can require more memory and lead to much slower mounting.</entry>
<entry lang="en" key="PIM_ARGON2_SMALL_WARNING">You have chosen an Argon2 PIM value that is smaller than the default VeraCrypt value. Please note that if your password is not strong enough, this could lead to weaker security.\n\nDo you confirm that you are using a strong password?</entry>
<entry lang="en" key="PIM_ARGON2_REQUIRE_LONG_PASSWORD">Password must contain 20 or more characters in order to use the specified Argon2 PIM.\nShorter passwords can only be used if the Argon2 PIM is 12 or greater.</entry>
<entry lang="en" key="LINUX_PREF_MOUNT_NTFS_WITH_NTFS3">Mount NTFS volumes with the Linux kernel ntfs3 driver</entry>
<entry lang="en" key="LINUX_PREF_MOUNT_NTFS_WITH_NTFS3_HELP">Linux only. When enabled, VeraCrypt probes the decrypted virtual device with blkid -p and mounts detected NTFS filesystems with ntfs3 instead of the default NTFS backend. If NTFS detection fails, VeraCrypt uses the normal automatic filesystem selection. If ntfs3 is unavailable or blocked by the distribution, mounting may fail. This opt-in option can avoid suspend or hibernate hangs caused by frozen user-space FUSE filesystems.</entry>
<entry lang="en" key="LINUX_PREF_MOUNT_NTFS_WITH_KERNEL_DRIVER">Mount NTFS volumes with an in-kernel Linux driver</entry>
<entry lang="en" key="LINUX_PREF_MOUNT_NTFS_WITH_KERNEL_DRIVER_HELP">Linux only. When enabled and no explicit filesystem type was supplied, VeraCrypt probes the decrypted virtual device with blkid -p and mounts detected NTFS filesystems with an available in-kernel NTFS driver, bypassing mount helpers such as ntfs-3g. VeraCrypt uses ntfs when it is positively identified as a modern read/write driver or expected on Linux 7.1 or later, and otherwise uses ntfs3. If NTFS detection fails, VeraCrypt uses the normal automatic filesystem selection. If no supported in-kernel NTFS driver is available or loadable, mounting fails. This opt-in option can avoid suspend or hibernate hangs caused by frozen user-space FUSE filesystems.</entry>
<entry lang="en" key="LINUX_KERNEL_NTFS_DRIVER_UNAVAILABLE">No supported in-kernel NTFS driver is available or loadable. To use the system default NTFS backend, disable the NTFS kernel-driver preference or do not request kernel NTFS explicitly.</entry>
<entry lang="en" key="LINUX_EMERGENCY_UNMOUNT_WARNING">Normal unmount of volume {0} failed. This can happen when applications still have files or directories open on the volume, or when the backing device was disconnected and the mount became stale.\n\nIf the device is still connected, choose No, close applications using the volume, and try unmounting again.\n\nIf the device was disconnected or the mount is stale, VeraCrypt can attempt emergency cleanup by lazy-detaching the filesystem and removing or scheduling removal of VeraCrypt kernel objects. Pending writes may have failed, data may be lost, and cleanup may remain pending until applications close open files. Check the filesystem with fsck or the appropriate repair tool before using it again.\n\nContinue?</entry>
<entry lang="en" key="LINUX_EMERGENCY_UNMOUNTED">Emergency cleanup for volume {0} has been initiated. If the volume was disconnected, the mount was stale, or there were pending writes, check the filesystem with fsck or the appropriate repair tool before using it again.</entry>
<entry lang="en" key="FORMAT_STAGE_WRITING_DATA">Creating volume data. Please wait.</entry>
+4 -7
View File
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<VeraCrypt>
<localization prog-version="1.26.28">
<localization prog-version="1.26.29">
<language langid="my" name="မြန်မာ" en-name="Burmese" version="2.0.0" translators="Zaw Myo Htet; Transifex contributors" />
<font lang="my" class="normal" size="11" face="Myanmar3" />
<font lang="my" class="bold" size="13" face="Myanmar3" />
@@ -1519,10 +1519,6 @@
<entry lang="my" key="LINUX_MOUNTET_HINT">ရွေးချယ်ထားသော စက်၏ ဖိုင်စနစ်ကို လတ်တလော အစပျိုးထားသည်။ ကျေးဇူးပြု၍ ရှေ့မဆက်မီ '{0}' ကို အဆုံးသတ်ပါ။</entry>
<entry lang="my" key="LINUX_HIDDEN_PASS_NO_DIFF">လျှို့ဝှက် volume သည် ပြင်ပ volume နှင့် တူညီသော စကားဝှက်၊ PIM နှင့် စကားဝှက်သော့ဖိုင်များ မရှိရပါ</entry>
<entry lang="my" key="LINUX_NOT_FAT_HINT">volume ကို FAT ဖိုင်စနစ်နှင့် ဖောမက်ချမည်မဟုတ်သောကြောင့် သင်သည် ပလက်ဖောင်းများပေါ်တွင် {0} အပြင် ထပ်ဆောင်း ဖိုင်စနစ် ဒရိုက်ဗာများကို တပ်ဆင်ရန် လိုအပ်ပါမည်။ ယင်းက volume ကို အစပျိုးနိုင်အောင် သင့်အား ကူညီပါမည်။</entry>
<entry lang="my" key="LINUX_ERROR_SIZE_HIDDEN_VOL">ပြဿနာ - ဖန်တီးမည့် လျှို့ဝှက် volume သည် {0} TB ({1} GB) ထက် ကြီးနေသည်။\n\nဖြေရှင်းနိုင်သော နည်းလမ်းများ -\n- {0} TB အောက်ငယ်သော ကုဒ်ထည့်သည့်ဆော့ဝဲ/အခန်းကန့်ကို ဖန်တီးပါ။\n</entry>
<entry lang="my" key="LINUX_MAX_SIZE_HINT">- ၁၆ TB အရွယ်အစားအထိရှိသော အခန်းကန့်/စက်ပစ္စည်းတွင် လက်ခံထားရှိသည့် လျှို့ဝှက် volume များကို ဖန်တီးနိုင်ရန် ၄၀၉၆-ဘိုက် အပိုင်းများရှိသော ဒရိုက်(ဗ်)တစ်ခုကို အသုံးပြုပါ</entry>
<entry lang="my" key="LINUX_DOT_LF">။\n</entry>
<entry lang="my" key="LINUX_NOT_SUPPORTED">(ဤပလက်ဖောင်းတွင် ရရှိနိုင်သော အစိတ်အပိုင်းများက မပံ့ပိုးပါ)။\n</entry>
<entry lang="my" key="LINUX_KERNEL_OLD">သင့်စနစ်သည် Linux kernel ၏ ဗားရှင်းဟောင်းကို အသုံးပြုသည်။\n\nLinux kernel ရှိ ပြဿနာတစ်ခုကြောင့် VeraCrypt volume တစ်ခုသို့ ဒေတာရေးစဉ် သင့်စနစ် ရပ်သွားနိုင်သည်။ ဤပြဿနာကို ဖြေရှင်းရန် kernel ကို ဗားရှင်း ၂.၆.၂၄ သို့မဟုတ် နောက်ပိုင်းဗားရှင်းသို့ အဆင့်မြှင့်နိုင်သည်။</entry>
<entry lang="my" key="LINUX_VOL_UNMOUNTED">Volume {0} ကို အဆုံးသတ်လိုက်ပါပြီ။</entry>
<entry lang="my" key="LINUX_VOL_MOUNTED">Volume {0} ကို အစပျိုးလိုက်ပါပြီ။</entry>
@@ -1670,8 +1666,9 @@
<entry lang="en" key="PIM_ARGON2_LARGE_WARNING">You have chosen an Argon2 PIM value that is larger than VeraCrypt default value.\nPlease note that this can require more memory and lead to much slower mounting.</entry>
<entry lang="en" key="PIM_ARGON2_SMALL_WARNING">You have chosen an Argon2 PIM value that is smaller than the default VeraCrypt value. Please note that if your password is not strong enough, this could lead to weaker security.\n\nDo you confirm that you are using a strong password?</entry>
<entry lang="en" key="PIM_ARGON2_REQUIRE_LONG_PASSWORD">Password must contain 20 or more characters in order to use the specified Argon2 PIM.\nShorter passwords can only be used if the Argon2 PIM is 12 or greater.</entry>
<entry lang="en" key="LINUX_PREF_MOUNT_NTFS_WITH_NTFS3">Mount NTFS volumes with the Linux kernel ntfs3 driver</entry>
<entry lang="en" key="LINUX_PREF_MOUNT_NTFS_WITH_NTFS3_HELP">Linux only. When enabled, VeraCrypt probes the decrypted virtual device with blkid -p and mounts detected NTFS filesystems with ntfs3 instead of the default NTFS backend. If NTFS detection fails, VeraCrypt uses the normal automatic filesystem selection. If ntfs3 is unavailable or blocked by the distribution, mounting may fail. This opt-in option can avoid suspend or hibernate hangs caused by frozen user-space FUSE filesystems.</entry>
<entry lang="en" key="LINUX_PREF_MOUNT_NTFS_WITH_KERNEL_DRIVER">Mount NTFS volumes with an in-kernel Linux driver</entry>
<entry lang="en" key="LINUX_PREF_MOUNT_NTFS_WITH_KERNEL_DRIVER_HELP">Linux only. When enabled and no explicit filesystem type was supplied, VeraCrypt probes the decrypted virtual device with blkid -p and mounts detected NTFS filesystems with an available in-kernel NTFS driver, bypassing mount helpers such as ntfs-3g. VeraCrypt uses ntfs when it is positively identified as a modern read/write driver or expected on Linux 7.1 or later, and otherwise uses ntfs3. If NTFS detection fails, VeraCrypt uses the normal automatic filesystem selection. If no supported in-kernel NTFS driver is available or loadable, mounting fails. This opt-in option can avoid suspend or hibernate hangs caused by frozen user-space FUSE filesystems.</entry>
<entry lang="en" key="LINUX_KERNEL_NTFS_DRIVER_UNAVAILABLE">No supported in-kernel NTFS driver is available or loadable. To use the system default NTFS backend, disable the NTFS kernel-driver preference or do not request kernel NTFS explicitly.</entry>
<entry lang="en" key="LINUX_EMERGENCY_UNMOUNT_WARNING">Normal unmount of volume {0} failed. This can happen when applications still have files or directories open on the volume, or when the backing device was disconnected and the mount became stale.\n\nIf the device is still connected, choose No, close applications using the volume, and try unmounting again.\n\nIf the device was disconnected or the mount is stale, VeraCrypt can attempt emergency cleanup by lazy-detaching the filesystem and removing or scheduling removal of VeraCrypt kernel objects. Pending writes may have failed, data may be lost, and cleanup may remain pending until applications close open files. Check the filesystem with fsck or the appropriate repair tool before using it again.\n\nContinue?</entry>
<entry lang="en" key="LINUX_EMERGENCY_UNMOUNTED">Emergency cleanup for volume {0} has been initiated. If the volume was disconnected, the mount was stale, or there were pending writes, check the filesystem with fsck or the appropriate repair tool before using it again.</entry>
<entry lang="en" key="FORMAT_STAGE_WRITING_DATA">Creating volume data. Please wait.</entry>
File diff suppressed because it is too large Load Diff
+13 -16
View File
@@ -1,7 +1,7 @@
<?xml version='1.0' encoding='UTF-8' standalone='no'?>
<VeraCrypt>
<localization prog-version="1.26.28">
<language langid="nl" name="Nederlands" en-name="Dutch" version="2026-05-08" translators="Jan van der Wal, Peter Tak, Thomas De Rocker"/>
<localization prog-version="1.26.29">
<language langid="nl" name="Nederlands" en-name="Dutch" version="2026-05-19" translators="Jan van der Wal, Peter Tak, Thomas De Rocker"/>
<font lang="nl" class="normal" size="11" face="default"/>
<font lang="nl" class="bold" size="13" face="Arial"/>
<font lang="nl" class="fixed" size="12" face="Lucida Console"/>
@@ -1517,10 +1517,6 @@
<entry lang="nl" key="LINUX_MOUNTET_HINT">Het bestandssysteem van het geselecteerde apparaat is momenteel gekoppeld. Ontkoppel '{0}' voordat u verder gaat.</entry>
<entry lang="nl" key="LINUX_HIDDEN_PASS_NO_DIFF">Het verborgen volume kan niet hetzelfde wachtwoord, PIM en sleutelbestanden hebben als het buitenste volume.</entry>
<entry lang="nl" key="LINUX_NOT_FAT_HINT">Merk op dat het volume niet geformatteerd zal worden met een FAT-bestandssysteem. Daarom kan het zijn dat u bijkomende bestandssysteem-stuurprogramma's moet installeren op andere platformen dan {0}, wat u zal toelaten om het volume te koppelen.</entry>
<entry lang="nl" key="LINUX_ERROR_SIZE_HIDDEN_VOL">Fout: het aan te maken verborgen volume is groter dan {0} TB ({1} GB).\n\nMogelijke oplossingen:\n- Een container/partitie kleiner dan {0} TB aanmaken.\n</entry>
<entry lang="nl" key="LINUX_MAX_SIZE_HINT">- Een schijf met sectoren van 4096 bytes gebruiken om partitie/apparaat-gehoste verborgen volumes tot 16 TB te kunnen aanmaken.</entry>
<entry lang="nl" key="LINUX_DOT_LF">.\n</entry>
<entry lang="nl" key="LINUX_NOT_SUPPORTED"> (niet ondersteund door onderdelen beschikbaar op dit platform).\n</entry>
<entry lang="nl" key="LINUX_KERNEL_OLD">Uw systeem gebruikt een oude versie van de Linux-kernel.\n\nDoor een bug in de Linux-kernel kan uw systeem stoppen met reageren bij het schrijven van gegevens naar een VeraCrypt-volume. Dit probleem kan worden opgelost door de kernel te upgraden naar versie 2.6.24 of later.</entry>
<entry lang="nl" key="LINUX_VOL_UNMOUNTED">Volume {0} is ontkoppeld.</entry>
<entry lang="nl" key="LINUX_VOL_MOUNTED">Volume {0} is gekoppeld.</entry>
@@ -1654,8 +1650,8 @@
<entry lang="nl" key="IDC_SECURE_DESKTOP_ENABLE_IME">De invoermethode-editor (IME) inschakelen in Secure Desktop</entry>
<entry lang="nl" key="ENABLE_IME_IN_SECURE_DESKTOP_WARNING">WAARSCHUWING: schakel deze optie alleen in als u problemen ondervindt bij het selecteren van sleutelbestanden/tokens onder Secure Desktop.</entry>
<entry lang="nl" key="ERR_KEY_DERIVATION_FAILED">Het afleiden van de sleutel is mislukt. Dit kan worden veroorzaakt door onvoldoende geheugen of een onderbroken bewerking.</entry>
<entry lang="nl" key="EFI_MS_BOOT_LOADER_RESTORE_FAILED">De systeempartitie/schijf is al ontsleuteld, maar het pad naar de EFI-bootloader van Microsoft is niet hersteld in de Windows Boot Manager. Alleen de EFI-opstartbestanden moeten worden gerepareerd. Gebruik de reparatieoptie van de VeraCrypt Rescue Disk, of start op vanaf het Windows-herstelmedium en voer bcdboot W:\\Windows /s S: /f UEFI uit, waarbij u W: vervangt door de stationsletter van het Windows-volume en S: door de stationsletter van de EFI-systeempartitie. Pad:</entry>
<entry lang="nl" key="EFI_FALLBACK_BOOT_LOADER_STILL_VERACRYPT">De systeempartitie/schijf is al ontsleuteld, maar het pad naar de fallback-EFI-bootloader bevat nog steeds de VeraCrypt-bootloader. Alleen de EFI-opstartbestanden moeten worden gerepareerd. Gebruik de reparatieoptie van de VeraCrypt Rescue Disk, of start op vanaf het Windows-herstelmedium en voer bcdboot W:\\Windows /s S: /f UEFI uit, waarbij u W: vervangt door de stationsletter van het Windows-volume en S: door de stationsletter van de EFI-systeempartitie. Pad:</entry>
<entry lang="nl" key="EFI_MS_BOOT_LOADER_RESTORE_FAILED">De systeempartitie/schijf is al ontsleuteld, maar het pad naar de EFI-bootloader van Microsoft is niet hersteld in de Windows Boot Manager. Alleen de EFI-opstartbestanden moeten worden gerepareerd. Gebruik de reparatieoptie van de VeraCrypt Rescue Disk, of start op vanaf het Windows-herstelmedium en voer 'bcdboot W:\\Windows /s S: /f UEFI' uit, waarbij u W: vervangt door de stationsletter van het Windows-volume en S: door de stationsletter van de EFI-systeempartitie. Pad:</entry>
<entry lang="nl" key="EFI_FALLBACK_BOOT_LOADER_STILL_VERACRYPT">De systeempartitie/schijf is al ontsleuteld, maar het pad naar de fallback-EFI-bootloader bevat nog steeds de VeraCrypt-bootloader. Alleen de EFI-opstartbestanden moeten worden gerepareerd. Gebruik de reparatieoptie van de VeraCrypt Rescue Disk, of start op vanaf het Windows-herstelmedium en voer 'bcdboot W:\\Windows /s S: /f UEFI' uit, waarbij u W: vervangt door de stationsletter van het Windows-volume en S: door de stationsletter van de EFI-systeempartitie. Pad:</entry>
<entry lang="nl" key="IDM_REPAIR_EFI_BOOT_LOADER">EFI-bootloader repareren...</entry>
<entry lang="nl" key="CONFIRM_REPAIR_EFI_BOOT_LOADER">VeraCrypt herstelt de paden van de Windows EFI-bootloader en verwijdert de EFI-opstartvermeldingen en -bestanden van VeraCrypt.\n\nGebruik deze optie alleen nadat de systeempartitie/het systeemstation volledig is ontsleuteld en Windows kan opstarten zonder systeemversleuteling.\n\nWilt u doorgaan?</entry>
<entry lang="nl" key="EFI_BOOT_LOADER_FILE_READ_FAILED">Het EFI-bootloaderbestand kon niet volledig worden gelezen:</entry>
@@ -1668,9 +1664,10 @@
<entry lang="nl" key="PIM_ARGON2_LARGE_WARNING">U hebt een Argon2 PIM-waarde gekozen die hoger is dan de standaardwaarde van VeraCrypt.\nHoud er rekening mee dat dit meer geheugen kan vergen en kan leiden tot een aanzienlijk tragere koppeling.</entry>
<entry lang="nl" key="PIM_ARGON2_SMALL_WARNING">U hebt een Argon2-PIM-waarde gekozen die lager is dan de standaardwaarde van VeraCrypt. Houd er rekening mee dat als uw wachtwoord niet sterk genoeg is, dit kan leiden tot een lagere beveiliging.\n\nBevestigt u dat u een sterk wachtwoord gebruikt?</entry>
<entry lang="nl" key="PIM_ARGON2_REQUIRE_LONG_PASSWORD">Het wachtwoord moet uit minimaal 20 tekens bestaan om de opgegeven Argon2-PIM te kunnen gebruiken.\nKortere wachtwoorden kunnen alleen worden gebruikt als de Argon2-PIM 12 of hoger is.</entry>
<entry lang="nl" key="LINUX_PREF_MOUNT_NTFS_WITH_NTFS3">NTFS-volumes koppelen met het ntfs3-stuurprogramma van de Linux-kernel</entry>
<entry lang="nl" key="LINUX_PREF_MOUNT_NTFS_WITH_NTFS3_HELP">Alleen voor Linux. Wanneer deze optie is ingeschakeld, controleert VeraCrypt het ontsleutelde virtuele apparaat met `blkid -p` en koppelt het gedetecteerde NTFS-bestandssystemen met ntfs3 in plaats van de standaard NTFS-backend. Als de NTFS-detectie mislukt, gebruikt VeraCrypt de normale automatische bestandssysteemselectie. Als ntfs3 niet beschikbaar is of door de distributie wordt geblokkeerd, kan het koppelen mislukken. Deze opt-in-optie kan vastlopen tijdens slaapstand of sluimerstand voorkomen dat wordt veroorzaakt door bevroren FUSE-bestandssystemen in de gebruikersruimte.</entry>
<entry lang="nl" key="LINUX_EMERGENCY_UNMOUNT_WARNING">Het normaal ontkoppelen van volume {0} is mislukt. Dit kan gebeuren wanneer applicaties nog bestanden of mappen op het volume open hebben staan, of wanneer het onderliggende apparaat is losgekoppeld en de koppeling verouderd is geraakt.\n\nAls het apparaat nog is aangesloten, kies dan Nee, sluit de applicaties die het volume gebruiken en probeer het ontkoppelen opnieuw.\n\nAls het apparaat is losgekoppeld of de koppeling verouderd is, kan VeraCrypt een noodopruiming uitvoeren door het bestandssysteem lui los te koppelen en VeraCrypt-kernelobjecten te verwijderen of de verwijdering ervan in te plannen. Lopende schrijfbewerkingen zijn mogelijk mislukt, er kan gegevensverlies optreden en de opruiming kan in behandeling blijven totdat applicaties geopende bestanden sluiten. Controleer het bestandssysteem met fsck of het juiste reparatieprogramma voordat u het opnieuw gebruikt.\n\nDoorgaan?</entry>
<entry lang="nl" key="LINUX_PREF_MOUNT_NTFS_WITH_KERNEL_DRIVER">NTFS-volumes koppelen met een Linux-stuurprogramma in de kernel</entry>
<entry lang="nl" key="LINUX_PREF_MOUNT_NTFS_WITH_KERNEL_DRIVER_HELP">Alleen voor Linux. Wanneer deze optie is ingeschakeld en er geen specifiek bestandssysteemtype is opgegeven, onderzoekt VeraCrypt het ontsleutelde virtuele apparaat met 'blkid -p' en koppelt het gedetecteerde NTFS-bestandssystemen met een beschikbare NTFS-driver in de kernel, waarbij koppelhulpprogramma's zoals 'ntfs-3g' worden omzeild. VeraCrypt gebruikt ntfs wanneer dit duidelijk wordt geïdentificeerd als een modern lees-/schrijfstuurprogramma of wordt verwacht op Linux 7.1 of later, en gebruikt anders ntfs3. Als de NTFS-detectie mislukt, gebruikt VeraCrypt de normale automatische bestandssysteemselectie. Als er geen ondersteund NTFS-stuurprogramma in de kernel beschikbaar of laadbaar is, mislukt het koppelen. Deze opt-in-optie kan vastlopers bij slaapstand of sluimerstand voorkomen die worden veroorzaakt door bevroren FUSE-bestandssystemen in de gebruikersruimte.</entry>
<entry lang="nl" key="LINUX_KERNEL_NTFS_DRIVER_UNAVAILABLE">Er is geen ondersteunde NTFS-kerneldriver beschikbaar of laadbaar. Om de standaard NTFS-backend van het systeem te gebruiken, moet u de voorkeur voor de NTFS-kerneldriver uitschakelen of niet expliciet om de NTFS-kerneldriver vragen.</entry>
<entry lang="nl" key="LINUX_EMERGENCY_UNMOUNT_WARNING">Het normaal ontkoppelen van volume {0} is mislukt. Dit kan gebeuren wanneer applicaties nog bestanden of mappen op het volume open hebben staan, of wanneer het onderliggende apparaat is losgekoppeld en de koppeling verouderd is geraakt.\n\nAls het apparaat nog is aangesloten, kies dan 'Nee', sluit de applicaties die het volume gebruiken en probeer het ontkoppelen opnieuw.\n\nAls het apparaat is losgekoppeld of de koppeling verouderd is, kan VeraCrypt een noodopruiming uitvoeren door het bestandssysteem lui los te koppelen en VeraCrypt-kernelobjecten te verwijderen of de verwijdering ervan in te plannen. Lopende schrijfbewerkingen zijn mogelijk mislukt, er kan gegevensverlies optreden en de opruiming kan in behandeling blijven totdat applicaties geopende bestanden sluiten. Controleer het bestandssysteem met fsck of het juiste reparatieprogramma voordat u het opnieuw gebruikt.\n\nDoorgaan?</entry>
<entry lang="nl" key="LINUX_EMERGENCY_UNMOUNTED">De noodopruiming voor volume {0} is gestart. Als het volume was losgekoppeld, de koppeling verouderd was of er nog schrijfbewerkingen in de wachtrij stonden, controleer dan het bestandssysteem met fsck of het juiste reparatieprogramma voordat u het weer gebruikt.</entry>
<entry lang="nl" key="FORMAT_STAGE_WRITING_DATA">Volumegegevens aanmaken. Even geduld.</entry>
<entry lang="nl" key="FORMAT_STAGE_WRITING_BACKUP_HEADER">Aanmaken van volume voltooien: backup-header schrijven.</entry>
@@ -1682,11 +1679,11 @@
<entry lang="nl" key="FORMAT_STAGE_PREPARING_TEMP_DEVICE">Aanmaken van volume voltooien: tijdelijk apparaat voorbereiden.</entry>
<entry lang="nl" key="FORMAT_STAGE_CREATING_FILESYSTEM">Aanmaken van volume voltooien: bestandssysteem aanmaken met {0}.</entry>
<entry lang="nl" key="FORMAT_STAGE_DISMOUNTING_TEMP_VOLUME">Aanmaken van volume voltooien: tijdelijk volume ontkoppelen.</entry>
<entry lang="en" key="MACOSX_APFS_SYNTHESIZED_DEVICE">The selected device '{0}' is an APFS synthesized container or volume and cannot be used as a raw VeraCrypt volume host.\n\nSelect the physical APFS store partition{1} instead.</entry>
<entry lang="en" key="MACOSX_DEVICE_SYSTEM_PARTITION">The selected device '{0}' is a macOS system/support partition and cannot be used as a VeraCrypt volume host.</entry>
<entry lang="en" key="MACOSX_APFS_SYSTEM_STORE">The selected APFS physical store '{0}' contains the currently mounted macOS system volume and cannot be used as a VeraCrypt volume host.</entry>
<entry lang="en" key="MACOSX_DEVICE_NOT_WRITABLE">macOS reports the selected device '{0}' as read-only. Select a writable physical partition or disk.</entry>
<entry lang="en" key="MACOSX_APFS_EROFS_HINT">macOS reported the selected device as read-only. If this is an APFS disk, make sure you selected the physical APFS store partition, not an APFS synthesized volume. Use Disk Utility or 'diskutil list' to identify the physical partition, then retry.</entry>
<entry lang="nl" key="MACOSX_APFS_SYNTHESIZED_DEVICE">Het geselecteerde apparaat '{0}' is een door APFS gesynthetiseerde container of een APFS-volume en kan niet worden gebruikt als host voor een onbewerkt VeraCrypt-volume.\n\nSelecteer in plaats daarvan de fysieke APFS-opslagpartitie{1}.</entry>
<entry lang="nl" key="MACOSX_DEVICE_SYSTEM_PARTITION">Het geselecteerde apparaat '{0}' is een systeem-/ondersteuningspartitie van macOS en kan niet worden gebruikt als host voor een VeraCrypt-volume.</entry>
<entry lang="nl" key="MACOSX_APFS_SYSTEM_STORE">De geselecteerde fysieke APFS-opslag '{0}' bevat het momenteel gekoppelde macOS-systeemvolume en kan niet worden gebruikt als host voor een VeraCrypt-volume.</entry>
<entry lang="nl" key="MACOSX_DEVICE_NOT_WRITABLE">macOS meldt dat het geselecteerde apparaat '{0}' alleen-lezen is. Selecteer een fysieke partitie of schijf waarop geschreven kan worden.</entry>
<entry lang="nl" key="MACOSX_APFS_EROFS_HINT">macOS geeft aan dat het geselecteerde apparaat alleen-lezen is. Als dit een APFS-schijf is, controleer dan of u de fysieke APFS-opslagpartitie hebt geselecteerd en niet een gesynthetiseerd APFS-volume. Gebruik Schijfhulpprogramma of 'diskutil list' om de fysieke partitie te identificeren en probeer het vervolgens opnieuw.</entry>
</localization>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" attributeFormDefault="unqualified" elementFormDefault="qualified">
<xs:element name="VeraCrypt">
+4 -7
View File
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<VeraCrypt>
<localization prog-version="1.26.28">
<localization prog-version="1.26.29">
<language langid="nn" name="Norsk Nynorsk" en-name="Norwegian (Nynorsk)" version="0.1.0" translators="Kjell Rune Helland" />
<font lang="nn" class="normal" size="11" face="default" />
<font lang="nn" class="bold" size="13" face="Arial" />
@@ -1517,10 +1517,6 @@
<entry lang="en" key="LINUX_MOUNTET_HINT">The filesystem of the selected device is currently mounted. Please unmount '{0}' before proceeding.</entry>
<entry lang="en" key="LINUX_HIDDEN_PASS_NO_DIFF">The Hidden volume can't have the same password, PIM and keyfiles as the Outer volume</entry>
<entry lang="en" key="LINUX_NOT_FAT_HINT">Please note that the volume will not be formatted with a FAT filesystem and, therefore, you may be required to install additional filesystem drivers on platforms other than {0}, which will enable you to mount the volume.</entry>
<entry lang="en" key="LINUX_ERROR_SIZE_HIDDEN_VOL">Error: The hidden volume to be created is larger than {0} TB ({1} GB).\n\nPossible solutions:\n- Create a container/partition smaller than {0} TB.\n</entry>
<entry lang="en" key="LINUX_MAX_SIZE_HINT">- Use a drive with 4096-byte sectors to be able to create partition/device-hosted hidden volumes up to 16 TB in size</entry>
<entry lang="en" key="LINUX_DOT_LF">.\n</entry>
<entry lang="en" key="LINUX_NOT_SUPPORTED"> (not supported by components available on this platform).\n</entry>
<entry lang="en" key="LINUX_KERNEL_OLD">Your system uses an old version of the Linux kernel.\n\nDue to a bug in the Linux kernel, your system may stop responding when writing data to a VeraCrypt volume. This problem can be solved by upgrading the kernel to version 2.6.24 or later.</entry>
<entry lang="en" key="LINUX_VOL_UNMOUNTED">Volume {0} has been unmounted.</entry>
<entry lang="en" key="LINUX_VOL_MOUNTED">Volume {0} has been mounted.</entry>
@@ -1668,8 +1664,9 @@
<entry lang="en" key="PIM_ARGON2_LARGE_WARNING">You have chosen an Argon2 PIM value that is larger than VeraCrypt default value.\nPlease note that this can require more memory and lead to much slower mounting.</entry>
<entry lang="en" key="PIM_ARGON2_SMALL_WARNING">You have chosen an Argon2 PIM value that is smaller than the default VeraCrypt value. Please note that if your password is not strong enough, this could lead to weaker security.\n\nDo you confirm that you are using a strong password?</entry>
<entry lang="en" key="PIM_ARGON2_REQUIRE_LONG_PASSWORD">Password must contain 20 or more characters in order to use the specified Argon2 PIM.\nShorter passwords can only be used if the Argon2 PIM is 12 or greater.</entry>
<entry lang="en" key="LINUX_PREF_MOUNT_NTFS_WITH_NTFS3">Mount NTFS volumes with the Linux kernel ntfs3 driver</entry>
<entry lang="en" key="LINUX_PREF_MOUNT_NTFS_WITH_NTFS3_HELP">Linux only. When enabled, VeraCrypt probes the decrypted virtual device with blkid -p and mounts detected NTFS filesystems with ntfs3 instead of the default NTFS backend. If NTFS detection fails, VeraCrypt uses the normal automatic filesystem selection. If ntfs3 is unavailable or blocked by the distribution, mounting may fail. This opt-in option can avoid suspend or hibernate hangs caused by frozen user-space FUSE filesystems.</entry>
<entry lang="en" key="LINUX_PREF_MOUNT_NTFS_WITH_KERNEL_DRIVER">Mount NTFS volumes with an in-kernel Linux driver</entry>
<entry lang="en" key="LINUX_PREF_MOUNT_NTFS_WITH_KERNEL_DRIVER_HELP">Linux only. When enabled and no explicit filesystem type was supplied, VeraCrypt probes the decrypted virtual device with blkid -p and mounts detected NTFS filesystems with an available in-kernel NTFS driver, bypassing mount helpers such as ntfs-3g. VeraCrypt uses ntfs when it is positively identified as a modern read/write driver or expected on Linux 7.1 or later, and otherwise uses ntfs3. If NTFS detection fails, VeraCrypt uses the normal automatic filesystem selection. If no supported in-kernel NTFS driver is available or loadable, mounting fails. This opt-in option can avoid suspend or hibernate hangs caused by frozen user-space FUSE filesystems.</entry>
<entry lang="en" key="LINUX_KERNEL_NTFS_DRIVER_UNAVAILABLE">No supported in-kernel NTFS driver is available or loadable. To use the system default NTFS backend, disable the NTFS kernel-driver preference or do not request kernel NTFS explicitly.</entry>
<entry lang="en" key="LINUX_EMERGENCY_UNMOUNT_WARNING">Normal unmount of volume {0} failed. This can happen when applications still have files or directories open on the volume, or when the backing device was disconnected and the mount became stale.\n\nIf the device is still connected, choose No, close applications using the volume, and try unmounting again.\n\nIf the device was disconnected or the mount is stale, VeraCrypt can attempt emergency cleanup by lazy-detaching the filesystem and removing or scheduling removal of VeraCrypt kernel objects. Pending writes may have failed, data may be lost, and cleanup may remain pending until applications close open files. Check the filesystem with fsck or the appropriate repair tool before using it again.\n\nContinue?</entry>
<entry lang="en" key="LINUX_EMERGENCY_UNMOUNTED">Emergency cleanup for volume {0} has been initiated. If the volume was disconnected, the mount was stale, or there were pending writes, check the filesystem with fsck or the appropriate repair tool before using it again.</entry>
<entry lang="en" key="FORMAT_STAGE_WRITING_DATA">Creating volume data. Please wait.</entry>
+99 -102
View File
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<VeraCrypt>
<localization prog-version="1.26.28">
<localization prog-version="1.26.29">
<language langid="pl" name="Polski" en-name="Polish" version="1.0.0" translators="Mirek Druchowicz, Janusz Zamecki, Sobiesław Antolak, Begina Felicysym" />
<font lang="pl" class="normal" size="11" face="default" />
<font lang="pl" class="bold" size="13" face="Arial" />
@@ -98,7 +98,7 @@
<entry lang="pl" key="IDT_STATUS">Status</entry>
<entry lang="pl" key="IDT_SYSENC_KEYS_GEN_INFO">Klucze, ciągi zaburzające (salt) i inne dane zostały pomyślnie wygenerowane. Jeśli chcesz generować nowe klucze, kliknij przycisk Wstecz, a następnie Dalej. W przeciwnym razie kliknij przycisk Dalej, aby kontynuować.</entry>
<entry lang="pl" key="IDT_SYS_DEVICE">Zaszyfruj partycję lub dysk, na którym zainstalowany jest Windows. Każdy, kto będzie chciał uzyskać dostęp do systemu, czytać i zapisywać pliki itp., będzie musiał wpisać poprawne hasło za każdym razem, gdy będzie uruchamiany Windows.</entry>
<entry lang="pl" key="IDT_SYS_PARTITION">Wybierz tą opcję, aby zaszyfrować partycję, gdzie obecnie jest zainstalowany i uruchomiony Windows.</entry>
<entry lang="pl" key="IDT_SYS_PARTITION">Wybierz tę opcję, aby zaszyfrować partycję, gdzie obecnie jest zainstalowany i uruchomiony Windows.</entry>
<entry lang="pl" key="IDT_VOLUME_LABEL">Etykieta wolumenu w Windows:</entry>
<entry lang="pl" key="IDT_WIPE_MODE">Wymaż</entry>
<entry lang="pl" key="IDCLOSE">Zamknij</entry>
@@ -330,7 +330,7 @@
<entry lang="pl" key="IDC_RESET">&amp;Zresetuj</entry>
<entry lang="pl" key="IDC_SHOW_PASSWORD_MO">&amp;Wyświetl hasło</entry>
<entry lang="pl" key="IDC_TOKEN_FILES_ADD">Dodaj &amp;token...</entry>
<entry lang="pl" key="IDC_USE_EMBEDDED_HEADER_BAK">Użyj wbudowa. systemu kopii bezpiecz. nagłówka wolumenu, jeżeli możliwe</entry>
<entry lang="pl" key="IDC_USE_EMBEDDED_HEADER_BAK">Użyj wbudowanego systemu kopii bezpieczeństwa nagłówka wolumenu, jeżeli możliwe</entry>
<entry lang="pl" key="IDC_XTS_MODE_ENABLED">Tryb XTS</entry>
<entry lang="pl" key="IDD_ABOUT_DLG">O VeraCrypt...</entry>
<entry lang="pl" key="IDD_BENCHMARK_DLG">VeraCrypt - Testowanie szybkości algorytmów</entry>
@@ -357,7 +357,7 @@
<entry lang="pl" key="IDT_KEYFILE_WARNING">Uwaga: Jeśli zgubisz plik-klucz lub zostanie zmieniony choć jeden bit z pierwszych 1024 kB, podłączenie wolumenów nie będzie możliwe!</entry>
<entry lang="pl" key="IDT_KEY_UNIT">bity</entry>
<entry lang="pl" key="IDT_NUMBER_KEYFILES">Liczba plików-kluczy:</entry>
<entry lang="pl" key="IDT_KEYFILES_SIZE">Rozmiar plków-kluczy:</entry>
<entry lang="pl" key="IDT_KEYFILES_SIZE">Rozmiar plików-kluczy:</entry>
<entry lang="pl" key="IDT_KEYFILES_BASE_NAME">Nazwa bazowa plików-kluczy:</entry>
<entry lang="pl" key="IDT_LANGPACK_AUTHORS">Przetłumaczony przez:</entry>
<entry lang="pl" key="IDT_PLAINTEXT">Długość:</entry>
@@ -393,11 +393,11 @@
<entry lang="pl" key="ADMIN_PRIVILEGES_WARN_MANAGE_VOLUME">Nie można aktywować szybkiego tworzenia plików: wymagane są uprawnienia administratora.\nAby włączyć tę funkcję, uruchom ponownie program jako administrator.\n\nCzy chcesz kontynuować bez szybkiego tworzenia plików?</entry>
<entry lang="pl" key="ADMIN_PRIVILEGES_WARN_HIDVOL">W przypadku tworzenia wolumenu ukrytego należy użyć konta z uprawnieniami administratora.\n\nCzy kontynuować?</entry>
<entry lang="pl" key="ADMIN_PRIVILEGES_WARN_NTFS">Do formatowania wolumenu w formacie NTFS/exFAT/ReFS należy użyć konta z uprawnieniami administratora.\n\nBez uprawnień administratora można formatować wolumen w formacie FAT.</entry>
<entry lang="pl" key="AES_HELP">Zaakceptowany przez FIPS szyfr (Rijndael, opublikowany w 1998) może być używany przez agencje rządowe USA Do ochrony informacji zaklasyfikowanych jako ściśle tajne. Klucz 256-bitowy, z blokiem 128-bitowym, 14 przebiegów (AES-256). Tryb szyfrowania: XTS.</entry>
<entry lang="pl" key="AES_HELP">Zaakceptowany przez FIPS szyfr (Rijndael, opublikowany w 1998) może być używany przez agencje rządowe USA do ochrony informacji zaklasyfikowanych jako ściśle tajne. Klucz 256-bitowy, z blokiem 128-bitowym, 14 przebiegów (AES-256). Tryb szyfrowania: XTS.</entry>
<entry lang="pl" key="ALREADY_MOUNTED">Wolumen jest już podłączony.</entry>
<entry lang="pl" key="ERR_SELF_TESTS_FAILED">UWAGA: Co najmniej jeden algorytm szyfrowania lub mieszający nie przeszedł wbudowanej automatycznej procedury testowej!\n\nInstalacja VeraCrypt może być uszkodzona!</entry>
<entry lang="pl" key="ERR_NOT_ENOUGH_RANDOM_DATA">UWAGA: Nie ma wystarczających danych w puli generatora losowego dla zapewnienia wymaganej ilości danych losowych.\n\nNie zaleca się kontynuowania. Wybierz w menu Pomoc opcję 'Zgłoszenie błędu' i zgłoś ten błąd.</entry>
<entry lang="pl" key="ERR_HARDWARE_ERROR">Uszkodzony dysk (występują fizyczne uszkodzenia dysku), uszkodzony kabel lub uszkodzona pamięć.\n\nProszę rozwiąż problem ze sprzętem, nie z VeraCrypt. Zatem proszę NIE wysyłać tego błędu/problemu jako błędu VeraCrypt i proszę NIE pytać o pomoc na forum VeraCrypt. Proszę skontaktować się ze swoim serwisem sprzętu. Dziękuje.\n\nUwaga: Jeżeli błąd pojawia się cały czas w tym samym miejscu, jest prawdopodobne, że masz błędny blok na dysku, który może być naprawiony przy użyciu innego oprogramowania (zauważ, że polecenie 'chkdsk /r' może nie naprawić tego, ponieważ działa tylko na poziomie systemu plików; w niektórych przypadkach, polecenie 'chkdsk' nie wykryje błędu).</entry>
<entry lang="pl" key="ERR_HARDWARE_ERROR">Uszkodzony dysk (występują fizyczne uszkodzenia dysku), uszkodzony kabel lub uszkodzona pamięć.\n\nProszę rozwiąż problem ze sprzętem, nie z VeraCrypt. Zatem proszę NIE wysyłać tego błędu/problemu jako błędu VeraCrypt i proszę NIE pytać o pomoc na forum VeraCrypt. Proszę skontaktować się ze swoim serwisem sprzętu. Dziękuję.\n\nUwaga: Jeżeli błąd pojawia się cały czas w tym samym miejscu, jest prawdopodobne, że masz błędny blok na dysku, który może być naprawiony przy użyciu innego oprogramowania (zauważ, że polecenie 'chkdsk /r' może nie naprawić tego, ponieważ działa tylko na poziomie systemu plików; w niektórych przypadkach, polecenie 'chkdsk' nie wykryje błędu).</entry>
<entry lang="pl" key="DEVICE_NOT_READY_ERROR">Jeśli uzyskujesz dostęp do dysku na nośniku wymiennym, upewnij się, że nośnik został umieszczony w czytniku. Dysk/nośnik może też być uszkodzony (występuje na nim błąd fizyczny) lub przewód został odłączony/uszkodzony.</entry>
<entry lang="pl" key="WHOLE_DRIVE_ENCRYPTION_PREVENTED_BY_DRIVERS">Twój system używa dysku, który ma zostać zaszyfrowany, co powoduje błąd.\n\nProszę spróbować uaktualnić/odinstalować dodatkowe sterowniki do chipsetu przed uruchomieniem procesu. Jeżeli to nie pomoże, spróbuj zaszyfrować tylko partycję systemową.</entry>
<entry lang="pl" key="BAD_DRIVE_LETTER">Niepoprawna litera dysku.</entry>
@@ -408,7 +408,7 @@
<entry lang="pl" key="VOLUME_TYPE_TITLE">Typ wolumenu</entry>
<entry lang="pl" key="HIDDEN_VOLUME_TYPE_HELP">Czasem może wystąpić sytuacja, w której ktoś zmusza do ujawnienia hasła do zaszyfrowanego wolumenu. Istnieje wiele sytuacji, gdy nie można odmówić ujawnienia hasła (np. w sytuacji zagrożenia życia lub zdrowia). Użycie tzw. wolumenów ukrytych pozwala na wyjście z opresji bez ujawnienia właściwego hasła.</entry>
<entry lang="pl" key="NORMAL_VOLUME_TYPE_HELP">Wybierz tę opcję, aby utworzyć zwykły wolumen VeraCrypt.</entry>
<entry lang="pl" key="HIDDEN_OS_PRECLUDES_SINGLE_KEY_WDE">Proszę zapisz to, jeżeli chcesz zainstalować system system operacyjny na ukrytej partycji/wolumenie - dysk systemowy nie może zostać zaszyfrowany używając pojedynczego klucza.</entry>
<entry lang="pl" key="HIDDEN_OS_PRECLUDES_SINGLE_KEY_WDE">Proszę zapisz to, jeżeli chcesz zainstalować system operacyjny na ukrytej partycji/wolumenie - dysk systemowy nie może zostać zaszyfrowany używając pojedynczego klucza.</entry>
<entry lang="pl" key="CIPHER_HIDVOL_HOST_TITLE">Opcje szyfrowania wolumenu zewnętrznego</entry>
<entry lang="pl" key="CIPHER_HIDVOL_TITLE">Opcje szyfrowania wolumenu ukrytego</entry>
<entry lang="pl" key="CIPHER_TITLE">Opcje szyfrowania</entry>
@@ -424,20 +424,20 @@
<entry lang="pl" key="DEVICE_IN_USE_FORMAT">Ostrzeżenie: Urządzenie/partycja jest już w użyciu przez system operacyjny lub aplikację. Formatowanie urządzenia/partycji może spowodować uszkodzenie danych i niestabilność systemu.\n\nCzy kontynuować?</entry>
<entry lang="pl" key="DEVICE_IN_USE_INPLACE_ENC">Uwaga: Partycja jest w użyciu przez system operacyjny lub aplikacje. Zamknij wszystkie aplikacje, które mogą używać partycji (włączając w to system antywirusowy).\n\nKontynuować?</entry>
<entry lang="pl" key="FORMAT_CANT_UNMOUNT_FILESYS">Błąd: Urządzenie/partycja zawiera system plików, który nie może zostać odłączony. System plików może być używany przez system operacyjny. Formatowanie urządzenia/partycji z dużym prawdopodobieństwem spowoduje uszkodzenie danych i niestabilność systemu.\n\nAby rozwiązać ten problem, zaleca się wcześniejsze usunięcie partycji i ponowne jej utworzenie bez formatowania. W tym celu: 1) Kliknij prawym przyciskiem myszy ikonę 'Komputer' (lub 'Mój Komputer') w 'Menu Start' i wybierz opcję 'Zarządzaj'. Zostanie wyświetlone okno 'Zarządzanie komputerem'. 2) W oknie 'Zarządzanie komputerem' wybierz 'Magazyn' &gt; 'Zarządzanie dyskami'. 3) Kliknij prawym przyciskiem myszy partycję, którą chcesz zaszyfrować, następnie wybierz opcję 'Usuń partycję' lub 'Usuń dysk logiczny'. 4) Kliknij przycisk 'Tak'. Jeśli system poprosi o zrestartowanie komputera, zrób to. Następnie powtórz krok 1 i 2 i kontynuuj od kroku 5. 5) Kliknij nieprzydzielone/wolne miejsce i wybierz opcję 'Nowa partycja', 'Nowy prosty wolumen' lub 'Nowy dysk logiczny'. 6) Zostanie uruchomione okno 'Kreatora partycji' lub 'Kreatora prostych wolumenów'. Postępuj zgodnie z instrukcjami. Na stronie zatytułowanej 'Formatowanie partycji', wybierz 'Nie formatuj tej partycji' lub 'Nie formatuj tego wolumenu'. W tym samym kreatorze, kliknij 'Dalej' a następnie 'Zakończ'. 7) Ścieżka urządzenia wybranego w programie VeraCrypt może być teraz nieprawidłowa. Dlatego wyjdź z kreatora tworzenia wolumenów VeraCrypt (jeśli jest nadal uruchomiony) i uruchom go ponownie. 8) Ponownie spróbuj zaszyfrować urządzenie.\n\nJeśli program VeraCrypt ponownie nie będzie mógł zaszyfrować urządzenia/partycji, należy rozważyć utworzenie pliku kontenera.</entry>
<entry lang="pl" key="INPLACE_ENC_CANT_LOCK_OR_UNMOUNT_FILESYS">Błąd: System plików nie może być zablokowany i/lub odłączony. Może jest używany system operacyjny lub aplikacje (np. system antywirusowy). Szyfrowanie partycji może spowodować uszkodzenie danych i niedostępność systemu.\n\nProszę zamknąć wszystkie aplikacje, które mogą używać systemu plików (włączając w to system antywirusowy) i proszę spróbować ponownie. Jeżeli to nie pomoże, prosze postępować zgodnie z poniższymi krokami.</entry>
<entry lang="pl" key="INPLACE_ENC_CANT_LOCK_OR_UNMOUNT_FILESYS">Błąd: System plików nie może być zablokowany i/lub odłączony. Może jest używany system operacyjny lub aplikacje (np. system antywirusowy). Szyfrowanie partycji może spowodować uszkodzenie danych i niedostępność systemu.\n\nProszę zamknąć wszystkie aplikacje, które mogą używać systemu plików (włączając w to system antywirusowy) i proszę spróbować ponownie. Jeżeli to nie pomoże, proszę postępować zgodnie z poniższymi krokami.</entry>
<entry lang="pl" key="DEVICE_IN_USE_INFO">ostrzeżenie: Niektóre podłączone urządzenia/partycje były w użyciu!\n\nZignorowanie tego faktu może spowodować niepożądane skutki z niestabilnością systemu włącznie!\n\nNależy koniecznie zamknąć wszystkie aplikacje, które mogą używać tych urządzeń/partycji.</entry>
<entry lang="pl" key="DEVICE_PARTITIONS_ERR">Wybrane urządzenie zawiera partycje.\n\nFormatowanie urządzenia może spowodować niestabilność i/lub uszkodzenie danych. Wybierz partycję na tym urządzeniu lub usuń z niego wszystkie partycje, aby umożliwić programowi VeraCrypt bezpieczne jej sformatowanie.</entry>
<entry lang="pl" key="DEVICE_PARTITIONS_ERR_W_INPLACE_ENC_NOTE">Wybrane nie-systemowe urządzenie zawiera partycje.\n\nZaszyfrowane urządzenia w wolumenie VeraCrypt mogą być stworzone wewnątrz urządzenia, które nie zawiera żadnych partycji (włączając dyski twarde i pamięci dyskowe). Urządzenia zawierające partycje mogą być zaszyfrowane "w locie" (używając pojedynczego głównego klucza) tylko jeżeli dysk jest uruchomiony i jest na nim zainstalowany Windows.\n\nJeżeli chcesz zaszyfrować wybrany nie systemowy dysk używając pojedynczego głównego klucza, musisz najpierw usunąć wszystkie partycje na urządzeniu, aby bezpiecznie go sformatować w VeraCrypt (formatowanie urządzenia z istniejącymi partycjami może powodować niestabilność systemu i/lub uszkodzeniem danych). Opcjonalnie, możesz zaszyfrować osobno każdą partycję na dysku (każda partycja będzie zaszyfrowana używając innego głównego klucza).\n\nUwaga: Jeżeli chcesz usunąć wszystkie partycje z dysku GPT, możesz potrzebować wykonać konwersję do dysku MBR (używając np. narzędzi w Zarządzaj komputerem), aby usunąć ukryte partycje na dysku.</entry>
<entry lang="pl" key="WHOLE_NONSYS_DEVICE_ENC_CONFIRM">Uwaga: Jeśli zaszyfrujesz człe urządzenie (w przeciwieństwie do szyfrowania tylko jego partycji), system operacyjny będzie uważał urządzenie za nowe, puste i niesformatowane (jako że nie zawiera tablicy partycji) i może spontanicznie zainicjować urządzenia (lub spytać, czy ma to uczynić), co może uszkodzić wolumen. W konsekwencji po takim zdarzeniu może być niemożliwe podłączenie wolumenu jako ulubionego (np. przy zmianie numeru dysku) lub przydzielenie mu etykiety ulubionego wolumenu.\n\nAby tego uniknąć, prosimy rozważyć utworzenie partycji na urządzeniu i zaszyfrowanie partycji.\n\nCzy na pewno zaszyfrować urządzenie w całości?</entry>
<entry lang="pl" key="DEVICE_PARTITIONS_ERR_W_INPLACE_ENC_NOTE">Wybrane nie-systemowe urządzenie zawiera partycje.\n\nZaszyfrowane urządzenia w wolumenie VeraCrypt mogą być stworzone wewnątrz urządzenia, które nie zawiera żadnych partycji (włączając dyski twarde i pamięci dyskowe). Urządzenia zawierające partycje mogą być zaszyfrowane "w locie" (używając pojedynczego głównego klucza) tylko jeżeli dysk jest uruchomiony i jest na nim zainstalowany Windows.\n\nJeżeli chcesz zaszyfrować wybrany nie systemowy dysk używając pojedynczego głównego klucza, musisz najpierw usunąć wszystkie partycje na urządzeniu, aby bezpiecznie go sformatować w VeraCrypt (formatowanie urządzenia z istniejącymi partycjami może powodować niestabilność systemu i/lub uszkodzenie danych). Opcjonalnie, możesz zaszyfrować osobno każdą partycję na dysku (każda partycja będzie zaszyfrowana używając innego głównego klucza).\n\nUwaga: Jeżeli chcesz usunąć wszystkie partycje z dysku GPT, możesz potrzebować wykonać konwersję do dysku MBR (używając np. narzędzi w Zarządzaj komputerem), aby usunąć ukryte partycje na dysku.</entry>
<entry lang="pl" key="WHOLE_NONSYS_DEVICE_ENC_CONFIRM">Uwaga: Jeśli zaszyfrujesz całe urządzenie (w przeciwieństwie do szyfrowania tylko jego partycji), system operacyjny będzie uważał urządzenie za nowe, puste i niesformatowane (jako że nie zawiera tablicy partycji) i może spontanicznie zainicjować urządzenia (lub spytać, czy ma to uczynić), co może uszkodzić wolumen. W konsekwencji po takim zdarzeniu może być niemożliwe podłączenie wolumenu jako ulubionego (np. przy zmianie numeru dysku) lub przydzielenie mu etykiety ulubionego wolumenu.\n\nAby tego uniknąć, prosimy rozważyć utworzenie partycji na urządzeniu i zaszyfrowanie partycji.\n\nCzy na pewno zaszyfrować urządzenie w całości?</entry>
<entry lang="pl" key="AFTER_FORMAT_DRIVE_LETTER_WARN">Uwaga: Proszę zapamiętać, że ten wolumen nie może być podłączony/dostępny przy użyciu litery %c:, która jest obecnie przypisana do niej!\n\nAby podłączyć ten wolumen, kliknij 'Podłącz automatycznie...' w głównym oknie VeraCrypt. Wolumen zostanie podłączony pod inną literą dysku, którą wybierzesz z listy w głównym oknie VeraCrypt.\n\nOryginalna litera dysku %c: powinna być użyta tylko w przypadku, gdy chcesz usunąć szyfrowanie z partycji/dysku (np. jeżeli nie potrzebujesz więcej szyfrowania). W takim przypadku, kliknij prawy przycisk myszy na literze dysku %c: w 'Komputer' (lub 'Mój komputer') i wybierz 'Formatuj'. Inaczej litera dysku %c: nie będzie możliwa nigdy do użycia (chyba że ją usuniesz lub przypiszesz do innej partycji/dysku).</entry>
<entry lang="pl" key="OS_NOT_SUPPORTED_FOR_NONSYS_INPLACE_ENC">Szyfrowanie w miejscu nie jest obsługiwane w tej wersji systemu operacyjnego, który aktualnie używasz (obsługiwane są tylko Windows Vista i późniejsze wersje Windows).\n\nPowodem jest to, że ta wersja Windows nie obsługuje "przecinania" systemu plików (system plików musi być przycięty, aby zrobić miejsce na nagłówek wolumenu i na kopię nagłówka).</entry>
<entry lang="pl" key="ONLY_NTFS_SUPPORTED_FOR_NONSYS_INPLACE_ENC">Wybrana partycja wygląda tak jakby nie zawierała systemu NTFS. Tylko partycje zawierające NTFS mogą być zaszyfrowane w miejscu (w czasie działania systemu).\n\nUwaga: Powód jest taki, że Windows nie obsługuje przycinania systemu plików innego typu poza NTFS (system plików musi być przycięty, aby zrobić miejsce na nagłówek wolumenu i na kopię nagłówka).</entry>
<entry lang="pl" key="ONLY_MOUNTED_VOL_SUPPORTED_FOR_NONSYS_INPLACE_ENC">Wybrana partycja wygląda tak jakby nie zawierała systemu NTFS. Tylko partycje zawierające NTFS mogą być zaszyfrowane w miejscu (w czasie działania systemu).\n\nJeżeli chcesz stworzyć zaszyfrowany wolumen VeraCrypt w wolumenie wewnątrz niej, wybierz opcję "Stwórz zaszyfrowany wolumen i sformatuj go" (w opcji "Szyfruj partycję").</entry>
<entry lang="pl" key="PARTITION_TOO_SMALL_FOR_NONSYS_INPLACE_ENC">Błąd: Partycja jest za mała. VeraCrypt nie może szyfrować jej "w locie".</entry>
<entry lang="pl" key="INPLACE_ENC_ALTERNATIVE_STEPS">Aby zaszyfrować dane na tej partycji, proszę postępować według następujących kroków:\n\n1) Stwórz wolumen w VeraCrypt na pustej partycji/urządzeniu i podłącz go.\n\n2) Skopiuj wszystkie plik i foldery z partycji, którą chcesz zaszyfrować do podłączonego wolumenu VeraCrypt (który została stworzony i podłączony w kroku 1). Tym sposobem, będziesz mógł stworzyć zaszyfrowaną kopię danych i umieścić ją w VeraCrypt.\n\n3) Stwórz wolumen VeraCrypt na partycji, którą chcesz zaszyfrować i upewnij się, że masz zaznaczoną opcję (w Wizardzie VeraCrypt) "Stwórz zaszyfrowany wolumen i sformatuj go" (wewnątrz opcji "Szyfruj partycję"). Uwaga, wszystkie dane zapisane na partycji zostaną skasowane. Po stworzeniu wolumenu, podłącz go.\n\n4) Skopij wszystkie pliki i foldery z wolumenu VeraCrypt (stworzonego i podłączonego w kroku 1) do podłączonego wolumenu VeraCrypt, który został stworzony (i podłączony) w kroku 3.\n\nPo wykonaniu powyższych kroków, wszystkie dane będą zaszyfrowane, i dodatkowo, będzie zaszyfrowana kopia tych danych.</entry>
<entry lang="pl" key="INPLACE_ENC_ALTERNATIVE_STEPS">Aby zaszyfrować dane na tej partycji, proszę postępować według następujących kroków:\n\n1) Stwórz wolumen w VeraCrypt na pustej partycji/urządzeniu i podłącz go.\n\n2) Skopiuj wszystkie pliki i foldery z partycji, którą chcesz zaszyfrować do podłączonego wolumenu VeraCrypt (który został stworzony i podłączony w kroku 1). Tym sposobem, będziesz mógł stworzyć zaszyfrowaną kopię danych i umieścić ją w VeraCrypt.\n\n3) Stwórz wolumen VeraCrypt na partycji, którą chcesz zaszyfrować i upewnij się, że masz zaznaczoną opcję (w Wizardzie VeraCrypt) "Stwórz zaszyfrowany wolumen i sformatuj go" (wewnątrz opcji "Szyfruj partycję"). Uwaga, wszystkie dane zapisane na partycji zostaną skasowane. Po stworzeniu wolumenu, podłącz go.\n\n4) Skopiuj wszystkie pliki i foldery z wolumenu VeraCrypt (stworzonego i podłączonego w kroku 1) do podłączonego wolumenu VeraCrypt, który został stworzony (i podłączony) w kroku 3.\n\nPo wykonaniu powyższych kroków, wszystkie dane będą zaszyfrowane, i dodatkowo, będzie zaszyfrowana kopia tych danych.</entry>
<entry lang="pl" key="RAW_DEV_NOT_SUPPORTED_FOR_INPLACE_ENC">VeraCrypt może szyfrować "w locie" tylko partycje, dynamiczne wolumeny, lub całe dyski systemowe.\n\nJeżeli chcesz stworzyć zaszyfrowany wolumen VeraCrypt wewnątrz zaznaczonego nie systemowego dysku, wybierz opcje "Stwórz zaszyfrowany wolumen i sformatuj go" (wewnątrz opcji "Szyfruj partycje").</entry>
<entry lang="pl" key="INPLACE_ENC_INVALID_PATH">Błąd: VeraCrypt może szyfrować "w locie" tylko partycje, dynamiczne wolumeny, lub całe dyski systemowe. Proszę się upewnić, że wskazana ścieżka jest poprawna.</entry>
<entry lang="pl" key="CANNOT_RESIZE_FILESYS">Błąd: Nie można przyciąć systemu plików (system plików do przycięcia wymaga zrobienia wolnego miejsca na nagłówek wolumenu i kopie bezpieczeństwa).\n\nMożliwe przyczyny i rozwiązania:\n\n- Mało wolnego miejsca na wolumenie. Spróbuj zrobić defragmentacje (prawy przycisk myszy na odpowiednim dysku w 'Mój komputer', wybierz Właściwości &gt; Narzędzia &gt; Defragmentuj teraz &gt; Defragmentuj teraz). Jeżeli to nie pomoże, usuń powtarzające się pliki i opróżnij Kosz.\n\n- Uszkodzony system plików. Spróbuj sprawdzić i naprawić błędy (prawy przycisk myszy na odpowiednim dysku w 'Mój komputer', wybierz Właściwości &gt; Narzędzia &gt; 'Sprawdź teraz', upewnij się że opcja 'Automatycznie napraw błędy' jest włączona i włącz Rozpocznij).\n\nJeżeli powyższe kroki nie pomogły, postępuj następująco.</entry>
<entry lang="pl" key="CANNOT_RESIZE_FILESYS">Błąd: Nie można przyciąć systemu plików (system plików do przycięcia wymaga zrobienia wolnego miejsca na nagłówek wolumenu i kopie bezpieczeństwa).\n\nMożliwe przyczyny i rozwiązania:\n\n- Mało wolnego miejsca na wolumenie. Spróbuj zrobić defragmentację (prawy przycisk myszy na odpowiednim dysku w 'Mój komputer', wybierz Właściwości &gt; Narzędzia &gt; Defragmentuj teraz &gt; Defragmentuj teraz). Jeżeli to nie pomoże, usuń powtarzające się pliki i opróżnij Kosz.\n\n- Uszkodzony system plików. Spróbuj sprawdzić i naprawić błędy (prawy przycisk myszy na odpowiednim dysku w 'Mój komputer', wybierz Właściwości &gt; Narzędzia &gt; 'Sprawdź teraz', upewnij się że opcja 'Automatycznie napraw błędy' jest włączona i włącz Rozpocznij).\n\nJeżeli powyższe kroki nie pomogły, postępuj następująco.</entry>
<entry lang="pl" key="NOT_ENOUGH_FREE_FILESYS_SPACE_FOR_SHRINK">Błąd: Nie ma miejsca na wolumenie więc system plików nie może być przycięty (system plików do przycięcia wymaga zrobienia wolnego miejsca na nagłówek wolumenu i kopie bezpieczeństwa).\n\nProszę skasować powtarzające się pliki i opróżnić Kosz to może zwolnić miejsce i proszę spróbować jeszcze raz. Jeżeli nie możesz tego zrobić, postępuj następująco.</entry>
<entry lang="pl" key="DISK_FREE_BYTES">Wolne miejsce na dysku %s wynosi %.2f B.</entry>
<entry lang="pl" key="DISK_FREE_KB">Wolne miejsce na dysku %s wynosi %.2f KB</entry>
@@ -447,18 +447,18 @@
<entry lang="pl" key="DISK_FREE_PB">Wolne miejsce na dysku %s wynosi %.2f PB</entry>
<entry lang="pl" key="DRIVELETTERS">Nie można uzyskać dostępnej litery dysku.</entry>
<entry lang="pl" key="DRIVER_NOT_FOUND">Błąd: Nie znaleziono sterownika programu VeraCrypt.\n\nSkopiuj pliki 'veracrypt.sys' i 'veracrypt-x64.sys' do katalogu, w którym znajduje się główna aplikacja VeraCrypt (VeraCrypt.exe).</entry>
<entry lang="pl" key="DRIVER_VERSION">Błąd: Uruchomiona jest niezgodna wersja sterownika VeraCrypt.\n\nJeśli próbujesz uruchomić VeraCrypt w trybie przenośnym (tj bez jego instalacji) a zainstalowana jest juz inna wersja VeraCrypt, musisz ja odinstalować (lub zaktualizować przy użyciu instalatora VeraCrypt). Aby go odinstalować, wykonaj następujące kroki: W Windows Vista lub późniejszych, wybierz 'Menu Start' &gt; Komputer &gt; 'Odinstaluj lub zmień program' &gt; VeraCrypt &gt; Odinstaluj; na Windows XP, wybierz 'Menu Start' &gt; Ustawienia &gt; 'Panel sterowania' &gt; 'Dodaj lub usuń programy' &gt; VeraCrypt &gt; Usuń.\n\nPodobnie, jeśli próbujesz uruchomić VeraCrypt w trybie przenośnym (tj bez jego instalacji) a działa już inna wersja VeraCrypt w trybie przenośnym, musisz najpierw zrestartować system a następnie uruchomić tylko tą nową wersję.</entry>
<entry lang="pl" key="DRIVER_VERSION">Błąd: Uruchomiona jest niezgodna wersja sterownika VeraCrypt.\n\nJeśli próbujesz uruchomić VeraCrypt w trybie przenośnym (tj. bez jego instalacji), a zainstalowana jest już inna wersja VeraCrypt, musisz ją odinstalować (lub zaktualizować przy użyciu instalatora VeraCrypt). Aby go odinstalować, wykonaj następujące kroki: W Windows Vista lub późniejszych, wybierz 'Menu Start' &gt; Komputer &gt; 'Odinstaluj lub zmień program' &gt; VeraCrypt &gt; Odinstaluj; na Windows XP, wybierz 'Menu Start' &gt; Ustawienia &gt; 'Panel sterowania' &gt; 'Dodaj lub usuń programy' &gt; VeraCrypt &gt; Usuń.\n\nPodobnie, jeśli próbujesz uruchomić VeraCrypt w trybie przenośnym (tj. bez jego instalacji) a działa już inna wersja VeraCrypt w trybie przenośnym, musisz najpierw zrestartować system a następnie uruchomić tylko tę nową wersję.</entry>
<entry lang="pl" key="ERR_CIPHER_INIT_FAILURE">Błąd: Zainicjowanie szyfru nie powiodło się.</entry>
<entry lang="pl" key="ERR_CIPHER_INIT_WEAK_KEY">Błąd: Wykryto słaby lub potencjalnie słaby klucz. Klucz zostanie odrzucony. Ponów próbę.</entry>
<entry lang="pl" key="EXCEPTION_REPORT">Nastąpił błąd krytyczny i VeraCrypt musi zostać przerwany. Jeżeli jest to błąd VeraCrypt, spróbujemy go naprawić. Aby nam pomóc, możesz wysłać do nas automatycznie wygenerowany raport błędu zawierający:\n\n- Wersję programu\n- Wersję systemu operacyjnego\n- Nazwę komponentu VeraCrypt\n- Sumę kontrolną pliku wykonywalnego VeraCrypt\n- Symboliczną nazwę okienka dialogowego\n- Kategorię błędu\n- Adres błędu\n- Rodzaj CPU\n- Wywołanie stosu VeraCrypt\n\nJeżeli naciśniesz 'Tak', otworzy się strona WWW (z zawartością błędu) w twojej domyślnej przeglądarce Internetowej (może to trwać ok. 30 sekund).\n\n%hs\n\nCzy chcesz wysłać do nas raport o błędzie?</entry>
<entry lang="pl" key="EXCEPTION_REPORT_EXT">Wystąpił błąd krytyczy w Twoim systemie, co spowodowało zamknięcie VeraCrypt.\n\nBłąd nie wynika z działania VeraCrypt (więc development VeraCrypt nie naprawi go). Proszę, sprawdzić swój system pod kątem występowania problemów (np. konfiguracja systemu, połączenie sieciowe, uszkodzenia elementów sprzętowych).</entry>
<entry lang="pl" key="EXCEPTION_REPORT_EXT">Wystąpił błąd krytyczny w Twoim systemie, co spowodowało zamknięcie VeraCrypt.\n\nBłąd nie wynika z działania VeraCrypt (więc development VeraCrypt nie naprawi go). Proszę, sprawdzić swój system pod kątem występowania problemów (np. konfiguracja systemu, połączenie sieciowe, uszkodzenia elementów sprzętowych).</entry>
<entry lang="pl" key="EXCEPTION_REPORT_EXT_FILESEL">Wystąpił krytyczny błąd systemu wymagający zamknięcia VeraCrypt.\n\nJeśli problem będzie się powtarzał, wymagane będzie zablokowanie lub odinstalowanie aplikacji, które potencjalnie mogły spowodować problem, jak programy antywirusowe lub zabezpieczające internet, "polepszające", "optymizujące" lub "tweakujące" system itp. Jeśli to nie pomoże, być może należy przeinstalować system operacyjny (problem może być spowodowany przez malware).</entry>
<entry lang="pl" key="EXCEPTION_REPORT_TITLE">Błąd krytyczny VeraCrypt</entry>
<entry lang="pl" key="SYSTEM_CRASHED_ASK_REPORT">VeraCrypt wykrył, że padł ostatnio system operacyjny. Jest wiele potencjalnych przyczyn awarii systemu (na przykład wadliwy komponent sprzętowy, błąd w sterowniku urządzenia itp.)\n\nCzy VeraCrypt ma sprawdzić cy to z jego powodu mógł nastąpić awaria systemu?</entry>
<entry lang="pl" key="SYSTEM_CRASHED_ASK_REPORT">VeraCrypt wykrył, że system operacyjny niedawno uległ awarii. Istnieje wiele potencjalnych przyczyn awarii systemu (na przykład wadliwy komponent sprzętowy, błąd w sterowniku urządzenia itp.).\n\nCzy VeraCrypt ma sprawdzić, czy błąd w VeraCrypt mógł spowodować awarię systemu?</entry>
<entry lang="pl" key="ASK_KEEP_DETECTING_SYSTEM_CRASH">Czy VeraCrypt ma dalej wykrywać awarie systemu?</entry>
<entry lang="pl" key="NO_MINIDUMP_FOUND">VeraCrypt nie odnalazł pliku mini-zrzutu po awarii systemu.</entry>
<entry lang="pl" key="ASK_DELETE_KERNEL_CRASH_DUMP">Czy chcesz usunąć plik zrzutu awaryjnego Windows, by zwolnić przestrzeń na dysku?</entry>
<entry lang="pl" key="ASK_DEBUGGER_INSTALL">W celu wykonania analizy awarii systemu, VeraCrypt wymaga uprzedniej instalacji Microsoft Debugging Tools for Windows.\n\nPo wciśnięciu OK, Instalator Windows pobierze pakiet instalacyjny Microsoft Debugging Tools (16 MB) z serwera Microsoftu i zainstaluje go. (Instalator Windows zostanie przekierowany do na adres serwera Microsoft z serwera veracrypt.org server, co zapewni wykonanie procedury nawet jeśli Microsoft zmieni położenie pakietu instalacyjnego).</entry>
<entry lang="pl" key="ASK_DEBUGGER_INSTALL">W celu wykonania analizy awarii systemu, VeraCrypt wymaga uprzedniej instalacji Microsoft Debugging Tools for Windows.\n\nPo wciśnięciu OK Instalator Windows pobierze pakiet instalacyjny Microsoft Debugging Tools (16 MB) z serwera Microsoftu i zainstaluje go. (Instalator Windows zostanie przekierowany na adres serwera Microsoft z serwera veracrypt.org, co zapewni wykonanie procedury nawet jeśli Microsoft zmieni położenie pakietu instalacyjnego).</entry>
<entry lang="pl" key="SYSTEM_CRASH_ANALYSIS_INFO">Po wciśnięciu OK, VeraCrypt wykona analizę awarii systemu. Może to potrwać kilka(naście) minut.</entry>
<entry lang="pl" key="DEBUGGER_NOT_FOUND">Sprawdź, czy zmienna systemowa 'PATH' zawiera ścieżkę do 'kd.exe' (Kernel Debugger).</entry>
<entry lang="pl" key="SYSTEM_CRASH_NO_VERACRYPT">Wydaje się, że VeraCrypt najprawdopodobniej nie spowodował awarii systemu. Istnieje wiele potencjalnych przyczyn awarii (na przykład wadliwy komponent sprzętowy, błąd w sterowniku urządzenia itp.)</entry>
@@ -470,10 +470,10 @@
<entry lang="pl" key="PERMANENTLY_DECRYPT">&amp;Trwale odszyfruj</entry>
<entry lang="pl" key="EXIT">Wyjście</entry>
<entry lang="pl" key="EXT_PARTITION">Utwórz dysk logiczny na tej partycji rozszerzonej, następnie ponów próbę.</entry>
<entry lang="pl" key="FILE_HELP">Wolumen VeraCrypt jest umieszczony w pliku (zwanym kontenerem/magazynem VeraCrypt), który może być umieszczony na dysku twardym lub USB itp. Magazyn VeraCrypt jest jak normalny plik (może on być, np. przeniesiony lun skasowany jak każdy normalny plik). Kliknij 'Wybierz plik' i wybierz nazwę pliku dla magazynu i wybierz lokalizację, gdzie chcesz, aby został stworzony.\n\nUwaga: Jeżeli wybierzesz istniejący plik, VeraCrypt NIE zaszyfruje go; plik zostanie skasowany i zastąpiony nowo tworzonym magazynem VeraCrypt. Jeżeli chcesz zaszyfrować istniejący plik (lub później) przesuń go do magazynu VeraCrypt, który teraz tworzysz.</entry>
<entry lang="pl" key="FILE_HELP_HIDDEN_HOST_VOL">Wybierz miejsce, gdzie będzie stworzony zewnętrzny wolumen (bez tego wolumenu ukryty wolumen będzie stworzony później).\n\nWolumen VeraCrypt będzie umieszczony w pliku (zwanym kontenerem/magazynem VeraCrypt), który będzie umieszczony na dysku twardym, na USB itp.. Magazyn VeraCrypt może być przesunięty lub skasowany jak normalny plik. Kliknij 'Wybierz plik' aby wybrać nazwę pliku dla magazynu i wybierz lokalizację w której ma on być stworzony. Jeżeli wybierzesz istniejący plik, VeraCrypt NIE zaszyfruje go; będzie ona skasowany i zastąpiony nową zawartością magazynu. Możesz zaszyfrować plik teraz (lub później) przesuwając go do kontenera/magazynu VeraCrypt, który teraz tworzysz.</entry>
<entry lang="pl" key="DEVICE_HELP">Zaszyfrowane urządzenie - wolumen VeraCrypt może być stworzone wewnątrz partycji na dysku twardym, pamięci przenośnej, pamięciach USB, i innych obsługiwanych urządzeniach. Partycje mogą być zaszyfrowanie "w locie".\n\nW dodatku, zaszyfrowane urządzenia - wolumeny VeraCrypt mogą być tworzone wewnątrz urządzeń, które nie zawierają partycji (włącznie z dyskami twardymi i pamięciami przenośnymi).\n\nUwaga: Urządzenie, które zawiera partycje może być całkowicie zaszyfrowane w "locie" (używając pojedynczego klucza) tylko jeżeli jest uruchomione i zainstalowany jest Windows.</entry>
<entry lang="pl" key="DEVICE_HELP_NO_INPLACE">Urządzenie - wolumen VeraCrypt może być stworzone wewnątrz partycji na dysku twardym, pamięci przenośnej, pamięciach USB, i innych obsługiwanych urządzeniach.\n\nUwaga: Pamiętaj że partycja/urządzenie będzie sformatowane i wszystkie dane zawarte na nim będą utracone.</entry>
<entry lang="pl" key="FILE_HELP">Wolumen VeraCrypt jest umieszczony w pliku (zwanym kontenerem/magazynem VeraCrypt), który może być umieszczony na dysku twardym lub USB itp. Magazyn VeraCrypt jest jak normalny plik (może on być, np. przeniesiony lub skasowany jak każdy normalny plik). Kliknij 'Wybierz plik' i wybierz nazwę pliku dla magazynu i wybierz lokalizację, gdzie chcesz, aby został stworzony.\n\nUwaga: Jeżeli wybierzesz istniejący plik, VeraCrypt NIE zaszyfruje go; plik zostanie skasowany i zastąpiony nowo tworzonym magazynem VeraCrypt. Jeżeli chcesz zaszyfrować istniejący plik (lub później) przesuń go do magazynu VeraCrypt, który teraz tworzysz.</entry>
<entry lang="pl" key="FILE_HELP_HIDDEN_HOST_VOL">Wybierz miejsce, gdzie będzie stworzony zewnętrzny wolumen (bez tego wolumenu ukryty wolumen będzie stworzony później).\n\nWolumen VeraCrypt będzie umieszczony w pliku (zwanym kontenerem/magazynem VeraCrypt), który będzie umieszczony na dysku twardym, na USB itp. Magazyn VeraCrypt może być przesunięty lub skasowany jak normalny plik. Kliknij 'Wybierz plik' aby wybrać nazwę pliku dla magazynu i wybierz lokalizację w której ma on być stworzony. Jeżeli wybierzesz istniejący plik, VeraCrypt NIE zaszyfruje go; będzie on skasowany i zastąpiony nową zawartością magazynu. Możesz zaszyfrować plik teraz (lub później) przesuwając go do kontenera/magazynu VeraCrypt, który teraz tworzysz.</entry>
<entry lang="pl" key="DEVICE_HELP">Zaszyfrowane urządzenie - wolumen VeraCrypt może być stworzony wewnątrz partycji na dysku twardym, pamięci przenośnej, pamięciach USB, i innych obsługiwanych urządzeniach. Partycje mogą być zaszyfrowane "w locie".\n\nW dodatku, zaszyfrowane urządzenia - wolumeny VeraCrypt mogą być tworzone wewnątrz urządzeń, które nie zawierają partycji (włącznie z dyskami twardymi i pamięciami przenośnymi).\n\nUwaga: Urządzenie, które zawiera partycje może być całkowicie zaszyfrowane w "locie" (używając pojedynczego klucza) tylko jeżeli jest uruchomione i zainstalowany jest Windows.</entry>
<entry lang="pl" key="DEVICE_HELP_NO_INPLACE">Urządzenie - wolumen VeraCrypt może być stworzony wewnątrz partycji na dysku twardym, pamięci przenośnej, pamięciach USB, i innych obsługiwanych urządzeniach.\n\nUwaga: Pamiętaj że partycja/urządzenie będzie sformatowane i wszystkie dane zawarte na nim będą utracone.</entry>
<entry lang="pl" key="DEVICE_HELP_HIDDEN_HOST_VOL">\nWybierz lokalizację poza tworzonym wolumenem (wewnątrz którego będzie stworzony ukryty wolumen).\n\nZewnętrzny wolumen może być stworzony wewnątrz partycji na dysku twardym, pamięci zewnętrznej, pamięci USB, i innych obsługiwanych urządzeniach. Zewnętrzne wolumeny mogą być więc tworzone wewnątrz urządzeń, które nie zawierają partycji (włącznie z dyskami twardymi i pamięciami przenośnymi).\n\nOstrzeżenie: Pamiętaj że partycja/urządzenie będzie sformatowane i wszystkie dane zawarte na nim będą utracone.</entry>
<entry lang="pl" key="FILE_HELP_HIDDEN_HOST_VOL_DIRECT">Wybierz lokalizację wolumenu VeraCrypt, w którym chcesz utworzyć wolumen ukryty.</entry>
<entry lang="pl" key="FILE_IN_USE">Ostrzeżenie: Plik/urządzenie jest aktualnie w użyciu!\n\nZignorowanie tego ostrzeżenia może spowodować nieoczekiwane rezultaty, z niestabilnością systemu włącznie. Przed podłączeniem tego wolumenu należy zamknąć wszystkie aplikacje, które mogą używać tego pliku/urządzenia.\n\nCzy kontynuować podłączanie wolumenu?</entry>
@@ -498,8 +498,8 @@
<entry lang="pl" key="FORMAT_ABORT">Przerwać formatowanie?</entry>
<entry lang="pl" key="SHOW_MORE_INFORMATION">Pokaż więcej informacji</entry>
<entry lang="pl" key="DO_NOT_SHOW_THIS_AGAIN">Nie pokazuj tego ponownie</entry>
<entry lang="pl" key="WIPE_FINISHED">Zawartość partycji/dysku została pomyślnie usunięta..</entry>
<entry lang="pl" key="WIPE_FINISHED_DECOY_SYSTEM_PARTITION">Zawartość partycji, gdzie znajdował się oryginalny system operacyjny (jego klon jest w ukrytym systemie) został poprawnie skasowany.</entry>
<entry lang="pl" key="WIPE_FINISHED">Zawartość partycji/dysku została pomyślnie usunięta.</entry>
<entry lang="pl" key="WIPE_FINISHED_DECOY_SYSTEM_PARTITION">Zawartość partycji, gdzie znajdował się oryginalny system operacyjny (jego klon jest w ukrytym systemie) została poprawnie skasowana.</entry>
<entry lang="pl" key="DECOY_OS_VERSION_WARNING">Proszę upewnić się że wersja Windows, którą instalujesz jest tą samą wersją, którą masz obecnie uruchomioną. To jest wymagane ponieważ oba systemy współdzielą boot partycje.</entry>
<entry lang="pl" key="SYSTEM_ENCRYPTION_FINISHED">Partycja/dysk systemowy został skutecznie zaszyfrowany.\n\nUwaga: Jeśli występują bezsystemowe wolumeny VeraCrypt, które wymagają automatycznego podłączania przy starcie Windows, można to ustawić przez podłączanie ich i wybranie 'Ulubione' &gt; 'Dodaj podłączony wolumen do ulubionych systemu').</entry>
<entry lang="pl" key="SYSTEM_DECRYPTION_FINISHED">Pomyślnie odszyfrowano partycję lub dysk systemowy.</entry>
@@ -510,7 +510,7 @@
<entry lang="pl" key="NONSYS_INPLACE_ENC_FINISHED_INFO">WAŻNE: ABY DOSTAĆ SIĘ DO DANYCH W NOWYM WOLUMENIE VERACRYPT PODŁĄCZ GO, KLIKNIJ 'Podłącz automatycznie' W GŁÓWNYM OKNIE VERACRYPT. Po wprowadzeniu poprawnego hasła (i/lub wskazania poprawnego pliku-klucza), wolumen zostanie podłączony pod literę dysku wybraną z listy w oknie VeraCrypt (i będziesz miał dostęp do zaszyfrowanych danych poprzez ten dysk).\n\nPROSZĘ ZAPAMIĘTAĆ LUB ZAPISAĆ SOBIE POWYŻSZE KROKI. MUSISZ TAK POSTĘPOWAĆ JEŻELI KIEDYKOLWIEK CHCESZ PODŁĄCZYĆ WOLUMEN I MIEĆ DOSTĘP DO DANYCH ZAWARTYCH W NIM. Opcjonalnie, w głównym oknie VeraCrypt, kliknij 'Wybierz urządzenie', wybierz partycję lub wolumen, kliknij 'Podłącz'.\n\nPartycja/wolumen zostanie poprawnie odszyfrowana (zawartość wolumenu jest zaszyfrowana przez VeraCrypt) i jest gotowa do użycia.</entry>
<entry lang="pl" key="NONSYS_INPLACE_DEC_FINISHED_INFO">Wolumen VeraCrypt został pomyślnie odszyfrowany.</entry>
<entry lang="pl" key="NONSYS_INPLACE_DEC_FINISHED_DRIVE_LETTER_SEL_INFO">Wolumen VeraCrypt został pomyślnie odszyfrowany.\n\nProszę wybrać literę napędu, którą chcesz przypisać odszyfrowanemu wolumenowi oraz kliknąć Zakończ.\n\nWAŻNE: Dopóki litera napędu nie jest przypisana do odszyfrowanego napędu, dopóty nie będziesz mieć dostępu do danych zgromadzonych na wolumenie.</entry>
<entry lang="pl" key="NONSYS_INPLACE_DEC_FINISHED_NO_DRIVE_LETTER_AVAILABLE">Ostrzeżenie: Aby mieć dostęp do odszyfrowanych danych, litera napędu musi być przypisana do odszyfrowanego wolumenu. Jednak obecnie nie jest dostępna żadna litera napędu.\n\nProszę zwolnić literę napędu (na przykład poprzez odłącznie napędu flash USB albo zewnętrznego dysku twardego itp.) oraz kliknąć OK.</entry>
<entry lang="pl" key="NONSYS_INPLACE_DEC_FINISHED_NO_DRIVE_LETTER_AVAILABLE">Ostrzeżenie: Aby mieć dostęp do odszyfrowanych danych, litera napędu musi być przypisana do odszyfrowanego wolumenu. Jednak obecnie nie jest dostępna żadna litera napędu.\n\nProszę zwolnić literę napędu (na przykład poprzez odłączenie napędu flash USB albo zewnętrznego dysku twardego itp.) oraz kliknąć OK.</entry>
<entry lang="pl" key="FORMAT_FINISHED_INFO">Wolumen VeraCrypt został pomyślnie utworzony.</entry>
<entry lang="pl" key="FORMAT_FINISHED_TITLE">Utworzono wolumen</entry>
<entry lang="pl" key="FORMAT_HELP">Ważne: Wykonuj w tym oknie losowe ruchy myszą. Im dłużej to robisz, tym lepiej. Poprawia to znacząco kryptograficzną jakość kluczy. Następnie kliknij przycisk Sformatuj, aby utworzyć wolumen.</entry>
@@ -523,8 +523,8 @@
<entry lang="pl" key="HIDDEN_VOL_WIZARD_MODE_DIRECT_HELP">Zamierzasz utworzyć wolumen ukryty w istniejącym wolumenie VeraCrypt. Zostało przyjęte założenie, że właśnie utworzono wolumen VeraCrypt odpowiedni do przechowywania wolumenu ukrytego.</entry>
<entry lang="pl" key="HIDDEN_VOL_WIZARD_MODE_TITLE">Tryb tworzenia wolumenu</entry>
<entry lang="pl" key="HIDVOL_FORMAT_FINISHED_TITLE">Wolumen ukryty został utworzony</entry>
<entry lang="pl" key="HIDVOL_FORMAT_FINISHED_HELP">Ukryty wolumen VeraCrypt został pomyślnie utworzony i jest gotowy do użycia. Jeśli wykonano wszystkie instrukcje a ostrzeżenia wymagania wymienione w sekcji "Security Requirements and Precautions Pertaining to Hidden Volumes" w Instrukcji użytkownika VeraCrypt, powinno być niemożliwe udowodnienie że ukryty wolumen istnieje, nawet, gdy wolumen zewnętrzny jest podłączony.\n\nUWAGA: JEŚLI NIE CHRONISZ UKRYTEGO WOLUMENU (BY DOWIEDZIEĆ SIĘ JAK, CZYTAJ W SEKCJI "PROTECTION OF HIDDEN VOLUMES AGAINST DAMAGE" W INSTRUKCJI UŻYTKOWNIKA VERACRYPT), NIE ZAPISUJ NA WOLUMENIE ZEWNĘTRZNYM. INACZEJ MOŻESZ NADPISAĆ I USZKODZIĆ WOLUMEN UKRYTY!</entry>
<entry lang="pl" key="FIRST_HIDDEN_OS_BOOT_INFO">Wystartowałeś ukryty system operacyjny. Jak zostałeś poinformowany, ukryty system operacyjny zostanie zainstalowany na tej samej partycji co oryginalny system operacyjny. Jednakże, w rzeczywistości, jest on zainstalowany na zewnątrz partycji - za nią (w ukrytym wolumenie). Wszystkie odczyty i zapisy będą transparentnie przekazywane z oryginalnej partycji systemowej do ukrytego wolumenu.\n\nŻaden system operacyjny lub aplikacja nie wie że zapis danych i odczyt z partycji systemowej są realizowane spoza partycji (od/do ukrytego wolumenu). Wszystkie szukane dane są szyfrowanie i deszyfrowane w locie.\n\n\nProszę kliknąć Dalej, aby kontynuować.</entry>
<entry lang="pl" key="HIDVOL_FORMAT_FINISHED_HELP">Ukryty wolumen VeraCrypt został pomyślnie utworzony i jest gotowy do użycia. Jeśli wykonano wszystkie instrukcje a ostrzeżenia wymagania wymienione w sekcji "Security Requirements and Precautions Pertaining to Hidden Volumes" w Instrukcji użytkownika VeraCrypt, powinno być niemożliwe udowodnienie że ukryty wolumen istnieje, nawet gdy wolumen zewnętrzny jest podłączony.\n\nUWAGA: JEŚLI NIE CHRONISZ UKRYTEGO WOLUMENU (BY DOWIEDZIEĆ SIĘ JAK, CZYTAJ W SEKCJI "PROTECTION OF HIDDEN VOLUMES AGAINST DAMAGE" W INSTRUKCJI UŻYTKOWNIKA VERACRYPT), NIE ZAPISUJ NA WOLUMENIE ZEWNĘTRZNYM. INACZEJ MOŻESZ NADPISAĆ I USZKODZIĆ WOLUMEN UKRYTY!</entry>
<entry lang="pl" key="FIRST_HIDDEN_OS_BOOT_INFO">Wystartowałeś ukryty system operacyjny. Jak zostałeś poinformowany, ukryty system operacyjny zostanie zainstalowany na tej samej partycji co oryginalny system operacyjny. Jednakże, w rzeczywistości, jest on zainstalowany na zewnątrz partycji - za nią (w ukrytym wolumenie). Wszystkie odczyty i zapisy będą transparentnie przekazywane z oryginalnej partycji systemowej do ukrytego wolumenu.\n\nŻaden system operacyjny lub aplikacja nie wie że zapis danych i odczyt z partycji systemowej są realizowane spoza partycji (od/do ukrytego wolumenu). Wszystkie szukane dane są szyfrowane i deszyfrowane w locie.\n\n\nProszę kliknąć Dalej, aby kontynuować.</entry>
<entry lang="pl" key="HIDVOL_HOST_FILLING_HELP_SYSENC">Zewnętrzny wolumen został stworzony i podłączony jako %hc:. Do tego wolumenu możesz skopiować jakieś pliki, które aktualnie nie były ukryte.\n\nWażne: Pliki kopiowane na zewnętrzny wolumen nie powinny być większe niż %s. Inaczej, może nie być wystarczającej ilości wolnego miejsca na zewnętrznym wolumenie dla ukrytego wolumenu (i nie da się przejść dalej). Po zakończeniu kopiowania, kliknij Dalej (nie odłączaj wolumenu).</entry>
<entry lang="pl" key="HIDVOL_HOST_FILLING_HELP">Wolumen zewnętrzny został pomyślnie utworzony i podłączony jako dysk %hc:. Należy teraz skopiować do niego dane sprawiające wrażenie cennych, a których w rzeczywistości NIE chcesz chronić. Dane te będą udostępnione osobie zmuszającej Cię do wyjawienia hasła. Możesz zdradzić tylko hasło do wolumenu zewnętrznego, a nie do ukrytego. Dane, które NAPRAWDĘ chcesz chronić, będą zapisywane w wolumenie ukrytym, który zostanie utworzony później. Kiedy skończysz kopiowanie, kliknij przycisk Dalej. Nie odłączaj tego wolumenu.\n\nPamiętaj: Po kliknięciu przycisku Dalej, mapa bitowa klastrów wolumenu zewnętrznego zostanie przeskanowana w celu określenia wielkości ciągłego obszaru wolnego, którego koniec pokrywa się z końcem wolumenu. Ten obszar może być wykorzystany przez wolumen ukryty i ogranicza jego maksymalną wielkość. Skanowanie mapy bitowej klastrów zapewnia, że żadne dane wolumenu zewnętrznego nie zostaną nadpisane przez wolumen ukryty.</entry>
<entry lang="pl" key="HIDVOL_HOST_FILLING_TITLE">Zawartość wolumenu zewnętrznego</entry>
@@ -539,24 +539,24 @@
<entry lang="pl" key="HIDVOL_PROT_WARN_AFTER_MOUNT_PLURAL">Każdy z wolumenów ukrytych wewnątrz nowo podłączanych wolumenów jest teraz zabezpieczony przed uszkodzeniem do momentu odłączenia.\n\nOSTRZEŻENIE: W przypadku próby zapisania danych w wolumenie zewnętrznym program VeraCrypt włączy blokadę zapisu dla całego wolumenu (zarówno dla części zewnętrznej jak i wewnętrznej) aż do momentu odłączenia. To może spowodować uszkodzenie systemu plików wolumenu zewnętrznego, oraz (jeśli się powtarza) zagrożenie zapewnienia możliwości wiarygodnego zaprzeczenia istnienia wolumenu ukrytego. Dlatego nie należy zapisywać danych w obszarze zajmowanym przez wolumen ukryty. Wszystkie dane zapisywane w obszarze zajmowanym przez wolumen ukryty nie zostaną zapisane i będą utracone. System Windows może to zgłaszać jako błąd zapisu ("Opóźniony zapis nie powiódł się" lub "Parametr jest niepoprawny").</entry>
<entry lang="pl" key="DAMAGE_TO_HIDDEN_VOLUME_PREVENTED">OSTRZEŻENIE: Próba zapisu danych w obszarze zarezerwowanym dla wolumenu ukrytego w wolumenie podłączonym jako %c:! Program VeraCrypt zapobiegł zapisowi tych danych z powodu ochrony wolumenu ukrytego. Mogło to spowodować uszkodzenie systemu plików wolumenu zewnętrznego. System Windows może to zgłaszać jako błąd zapisu ("Opóźniony zapis nie powiódł się" lub "Parametr jest niepoprawny"). Program VeraCrypt włączy blokadę zapisu dla całego wolumenu (zarówno dla części zewnętrznej jak i wewnętrznej) aż do momentu odłączenia. Jeśli to nie jest pierwszy przypadek uniemożliwienia przez program VeraCrypt zapisu w obszarze wolumenu ukrytego, wiarygodne zaprzeczenie istnienia wolumenu ukrytego może być zagrożone (przez możliwe wystąpienie nienormalnie skorelowanych niespójności w systemie plików wolumenu zewnętrznego). Dlatego należy rozważyć utworzenie nowego wolumenu VeraCrypt (z wyłączoną opcją szybkiego formatowania) i przenieść pliki z tego wolumenu do nowego. Po przeniesieniu danych nieużywany już wolumen powinien zostać wymazany w sposób bezpieczny (zarówno część zewnętrzna jak i ukryta). Należy teraz koniecznie ponownie uruchomić system.</entry>
<entry lang="pl" key="CANNOT_SATISFY_OVER_4G_FILE_SIZE_REQ">Wskazujesz chęć przechowywania plików większych niż 4 GB w wolumenie. Wymaga to, by wolumen był sformatowany jako NTFS/exFAT/ReFS, co jednak nie będzie możliwe.</entry>
<entry lang="pl" key="CANNOT_CREATE_NON_HIDDEN_NTFS_VOLUMES_UNDER_HIDDEN_OS">Zauważ, że gdy uruchomiony jest ukryty system operacyjny, nieukryte wolumeny VeraCrypt nie moga byc sformatowane jako NTFS/exFAT/ReFS. Powodem jest, że wolumen wymagać będzie tymczasowego podłączenia bez zabezpieczenia przed zapisem, aby system operacyjny mógł sformatować go jako NTFS (formatowanie jako FAT natomiast jest wykonywane przez VeraCrypt, nie system operacyjny, i bez podłączania wolumenu). Patrz niżej, by poznać szczegóły techniczne. Możesz utworzyć nieukryty wolumen NTFS/exFAT/ReFS ze zwodzącego systemu operacyjnego.</entry>
<entry lang="pl" key="CANNOT_CREATE_NON_HIDDEN_NTFS_VOLUMES_UNDER_HIDDEN_OS">Zauważ, że gdy uruchomiony jest ukryty system operacyjny, nieukryte wolumeny VeraCrypt nie mogą być sformatowane jako NTFS/exFAT/ReFS. Powodem jest, że wolumen wymagać będzie tymczasowego podłączenia bez zabezpieczenia przed zapisem, aby system operacyjny mógł sformatować go jako NTFS (formatowanie jako FAT natomiast jest wykonywane przez VeraCrypt, nie system operacyjny, i bez podłączania wolumenu). Patrz niżej, by poznać szczegóły techniczne. Możesz utworzyć nieukryty wolumen NTFS/exFAT/ReFS ze zwodzącego systemu operacyjnego.</entry>
<entry lang="pl" key="HIDDEN_VOL_CREATION_UNDER_HIDDEN_OS_HOWTO">Z powodów bezpieczeństwa, kiedy jest uruchomiony ukryty system operacyjny, możesz tworzyć tylko wolumeny w trybie 'direct (bezpośrednio)' (ponieważ zewnętrzny wolumen musi być zawsze podłączony w trybie tylko do odczytu zewnętrznego). Aby stworzyć bezpieczny ukryty wolumen, postępuj zgodnie z wskazówkami:\n\n1) Uruchom pierwszy system.\n\n2) Stwórz normalny wolumen VeraCrypt i do tego wolumenu skopuj jakieś pliki, które nie będą aktualnie chronione i ukryte (wolumen będzie zewnętrznym wolumenem).\n\n3) Uruchom ukryty system operacyjny i uruchom kreatora wolumenów VeraCrypt. Jeżeli wolumen jest w pliku, przesuń go do partycji systemowej lub do innego ukrytego wolumenu (inaczej nowo stworzony ukryty wolumen może być podłączony tylko do odczytu i nie może być sformatowany). Postępuj zgodnie z instrukcjami w kreatorze i wybierz tryb 'direct (bezpośredni)' tworzenia ukrytego wolumenu.\n\n4) W kreatorze, wybierz wolumen, który stworzyłeś w kroku 2 i postępuj zgodnie z instrukcjami tworzenia ukrytego wolumenu.</entry>
<entry lang="pl" key="HIDDEN_OS_WRITE_PROTECTION_BRIEF_INFO">Z powodów bezpieczeństwa, kiedy jest uruchomiony ukryty system operacyjny, lokalne niezaszyfrowane systemy plików i nie ukryte wolumeny VeraCrypt są podłączane tylko od odczytu (nie można na nich zapisać żadnych danych).\n\nDane są dostępne do zapisu na każdym systemie plików, który rezyduje w ukrytym wolumenie VeraCrypt (dostarczony ukryty wolumen nie jest umieszczony na niezaszyfrowanym systemie plików lub na żadnym systemie plików tylko do odczytu).</entry>
<entry lang="pl" key="HIDDEN_OS_WRITE_PROTECTION_BRIEF_INFO">Z powodów bezpieczeństwa, kiedy jest uruchomiony ukryty system operacyjny, lokalne niezaszyfrowane systemy plików i nieukryte wolumeny VeraCrypt są podłączane tylko do odczytu (nie można na nich zapisać żadnych danych).\n\nDane są dostępne do zapisu na każdym systemie plików, który rezyduje w ukrytym wolumenie VeraCrypt (pod warunkiem, że ukryty wolumen nie jest umieszczony na niezaszyfrowanym systemie plików lub na żadnym systemie plików tylko do odczytu).</entry>
<entry lang="pl" key="HIDDEN_OS_WRITE_PROTECTION_EXPLANATION">Są trzy główne powody, dla których podjęte zostały środki zaradcze:\n\n- Umożliwia tworzenie bezpiecznej platformy dla bezpiecznego podłączania ukrytych wolumenów VeraCrypt. Zauważ, że oficjalnie zalecamy, by ukrytw wolumeny były podłączane tylko wtedy, gdy uruchomiony jest ukryty system operacyjny. (By uzyskać więcej informacji przeczytaj podrozdział dokumentacji 'Security Requirements and Precautions Pertaining to Hidden Volumes'.)\n\n- W pewnych przypadkach możliwe jest ustalenie tego, że dany system plików nie został podłączony pod (lub że dany plik w systemie plików nie został zapisany lub udostępniony z poziomu) określonej instancji systemu operacyjnego (np przez analizę i porównanie dzienników systemu plików, stempli czasowych pliku, logów aplikacji, logów błędów itp.). To może wskazywać, że ukryty system operacyjny został zainstalowany na komputerze. Środki zaradcze zapobiegają takim przypadkom.\n\n- Zapobiegają uszkodzeniu danych i pozwalają na bezpieczne usypianie. Kiedy Windows wznawia pracę po uśpieniu, zakłada, że wszystkie podłączone systemy plików są w tym samym stanie w jakim system został uśpiony. VeraCrypt zapewnia to przez zabezpieczenie przed zapisem dowolnego systemu plików dostępnego zarówno z systemu zwodzącego jak i ukrytego. Bez takiego zabezpieczenia system plików mógłby zostać uszkodzony podczas podłączania przez jeden z systemów podczas, gdy drugi jest uśpiony.</entry>
<entry lang="pl" key="DECOY_TO_HIDDEN_OS_DATA_TRANSFER_HOWTO">Uwaga: Jeżeli potrzebujesz szyfrowanej transmisji plików pomiędzy pierwszym systemem a ukrytym systemem, postępuj wg kroków: 1) Uruchom pierwszy system (decoy system). 2) Zapisz pliki na niezaszyfrowanym wolumenie lub na zewnętrznym/normalnym wolumenie VeraCrypt. 3) Uruchom ukryty sytsem operacyjny. 4) Jeżeli zapisałeś pliki na wolumenie VeraCrypt, podłącz go (zostanie on automatycznie podłączony jako tylko do odczytu). 5) Skopiuj pliki do ukrytego systemu operacyjnego lub do innego ukrytego wolumenu.</entry>
<entry lang="pl" key="DECOY_TO_HIDDEN_OS_DATA_TRANSFER_HOWTO">Uwaga: Jeżeli potrzebujesz bezpiecznie przenieść pliki pomiędzy pierwszym systemem a ukrytym systemem, postępuj wg kroków:\n1) Uruchom pierwszy system (decoy system).\n2) Zapisz pliki na niezaszyfrowanym wolumenie lub na zewnętrznym/normalnym wolumenie VeraCrypt.\n3) Uruchom ukryty system operacyjny.\n4) Jeżeli zapisałeś pliki na wolumenie VeraCrypt, podłącz go (zostanie on automatycznie podłączony jako tylko do odczytu).\n5) Skopiuj pliki do ukrytej partycji systemowej lub innego ukrytego wolumenu</entry>
<entry lang="pl" key="CONFIRM_RESTART">Komputer musi być ponownie uruchomiony.\n\nCzy wykonać to teraz?</entry>
<entry lang="pl" key="ERR_GETTING_SYSTEM_ENCRYPTION_STATUS">Wystąpił błąd podczas pobierania statusu szyfrowania systemu.</entry>
<entry lang="pl" key="ERR_PASSWORD_MISSING">Nie określono hasła w linii poleceń. Wolumen nie może zostać stworzony.</entry>
<entry lang="pl" key="ERR_SIZE_MISSING">Nie określono rozmiaru w linii poleceń. Wolumen nie może zostać stworzony.</entry>
<entry lang="pl" key="ERR_NTFS_INVALID_VOLUME_SIZE">Rozmiar plku wolumenu określonego w linii poleceń jest niekompatybilny z wybranym systemem plików NTFS.</entry>
<entry lang="pl" key="ERR_FAT_INVALID_VOLUME_SIZE">Rozmiar plku wolumenu określonego w linii poleceń jest niekompatybilny z wybranym systemem plików FAT32.</entry>
<entry lang="pl" key="ERR_DYNAMIC_NOT_SUPPORTED">System plików napędu docelowego nie obsługuje tworzenia plików rozrzedzonych, które wymagają wolumeny dynamiczne.</entry>
<entry lang="pl" key="ERR_NTFS_INVALID_VOLUME_SIZE">Rozmiar pliku wolumenu określonego w linii poleceń jest niekompatybilny z wybranym systemem plików NTFS.</entry>
<entry lang="pl" key="ERR_FAT_INVALID_VOLUME_SIZE">Rozmiar pliku wolumenu określonego w linii poleceń jest niekompatybilny z wybranym systemem plików FAT32.</entry>
<entry lang="pl" key="ERR_DYNAMIC_NOT_SUPPORTED">System plików napędu docelowego nie obsługuje tworzenia plików rozrzedzonych, które wymagają wolumenów dynamicznych.</entry>
<entry lang="pl" key="ERR_DEVICE_CLI_CREATE_NOT_SUPPORTED">Tylko pliki kontenera mogą być tworzone poprzez linię poleceń.</entry>
<entry lang="pl" key="ERR_CONTAINER_SIZE_TOO_BIG">Rozmiar pliku kontenera określony w linii poleceń jest większy niż dostępna ilość wolnego miejsca na dysku. Wolumen nie może zostać stworzony.</entry>
<entry lang="pl" key="ERR_VOLUME_SIZE_TOO_SMALL">Rozmiar wolumenu określony w linii poleceń jest zbyt mały. Wolumen nie może zostać stworzony.</entry>
<entry lang="pl" key="ERR_VOLUME_SIZE_TOO_BIG">Rozmiar wolumenu określony w linii poleceń jest zbyt mały. Wolumen nie może zostać stworzony.</entry>
<entry lang="pl" key="ERR_VOLUME_SIZE_TOO_BIG">Rozmiar wolumenu określony w linii poleceń jest zbyt duży. Wolumen nie może zostać stworzony.</entry>
<entry lang="pl" key="INIT_SYS_ENC">Nie można zainicjować komponentów aplikacji dla szyfrowania systemu.</entry>
<entry lang="pl" key="INIT_RAND">Błąd inicjowania generatora liczb losowych!</entry>
<entry lang="pl" key="INIT_RAND">Nie udało się zainicjalizować generatora liczb losowych!\n\n\n(Jeżeli zgłaszasz błąd związany z tym problemem, dołącz proszę następujące informacje techniczne w raporcie:\n%hs, Ostatni błąd = 0x%.8X)</entry>
<entry lang="pl" key="CAPI_RAND">Błąd API Windows Crypto!\n\n\n(Jeżeli zgłosisz powiązany z tym błąd, proszę dołączyć następujące informacje techniczne w raporcie błędu:\n%hs, Last Error = 0x%.8X)</entry>
<entry lang="pl" key="INIT_REGISTER">Nie można zainicjować aplikacji. Błąd rejestracji klasy okna dialogowego.</entry>
<entry lang="pl" key="INIT_RICHEDIT">BŁĄD: Nie można załadować systemowej biblioteki edytora Rich Edit.</entry>
@@ -590,7 +590,7 @@
<entry lang="pl" key="HIDDEN_VOLUME_TOO_SMALL_FOR_OS_CLONE">BŁĄD: Pliki kopiowane do zewnętrznego wolumenu wymagają więcej miejsca. Brak jest wolnego miejsca na zewnętrznym wolumenie dla ukrytego wolumenu.\n\nPamiętaj, że wielkość ukrytego wolumenu musi być większa od systemowej partycji (od partycji, gdzie aktualnie uruchomiony jest system operacyjny). Powód jest taki, że ukryty system operacyjny musi być stworzony przez skopiowanie zawartości partycji systemowej do ukrytego wolumenu.\n\n\nProces tworzenia ukrytego systemu operacyjnego nie może być kontynuowany.</entry>
<entry lang="pl" key="OPENFILES_DRIVER">Sterownik nie może odłączyć wolumenu. Prawdopodobnie niektóre z umieszczonych w nim plików wciąż są otwarte.</entry>
<entry lang="pl" key="OPENFILES_LOCK">Nie można zablokować wolumenu. Niektóre z umieszczonych w nim plików wciąż są otwarte. Dlatego nie można odłączyć wolumenu.</entry>
<entry lang="pl" key="VOL_LOCK_FAILED_OFFER_FORCED_UNMOUNT">VeraCrypt mie może zablokować wolumenu ponieważ jest on używany przez system lub aplikacje (mogą być otwarte pliki na wolumenie).\n\nCzy chcesz wymusić odłączenie wolumenu?</entry>
<entry lang="pl" key="VOL_LOCK_FAILED_OFFER_FORCED_UNMOUNT">VeraCrypt nie może zablokować wolumenu ponieważ jest on używany przez system lub aplikacje (mogą być otwarte pliki na wolumenie).\n\nCzy chcesz wymusić odłączenie wolumenu?</entry>
<entry lang="pl" key="OPEN_VOL_TITLE">Wybierz wolumen VeraCrypt</entry>
<entry lang="pl" key="OPEN_TITLE">Podaj ścieżkę i nazwę pliku</entry>
<entry lang="pl" key="SELECT_PKCS11_MODULE">Wybierz bibliotekę PKCS #11</entry>
@@ -617,15 +617,15 @@
<entry lang="pl" key="KEYFILE_CHANGED">Pliki-klucze zostały pomyślnie dodane/usunięte.</entry>
<entry lang="pl" key="KEYFILE_EXPORTED">Plik-klucz wyeksportowano.</entry>
<entry lang="pl" key="PKCS5_PRF_CHANGED">Algorytm klucza nagłówka został pomyślnie ustawiony.</entry>
<entry lang="pl" key="NONSYS_INPLACE_ENC_RESUME_PASSWORD_PAGE_HELP">Proszę wprowadzić hasło i/lub plik/i-klucz/e dla bezsystemowego wolumenu, gdzie chcesz wznowić proces szyfrowania "w locie".\n\n\nZapamiętaj: Po kliknięciu Dalej, VeraCrypt przystąpi do wyszukania wszystkich nie systemowych wolumenów, gdzie proces szyfrowania został przerwany, i gdzie nagłówek wolumenu VeraCrypt moż być odszyfrowany używając podanego hasła i/lub pliku/ów-klucza/y. Jeżeli jest znaleziony więcej niż jeden wolumen, będziesz musiał wybrać jeden z nich w następnym kroku.</entry>
<entry lang="pl" key="NONSYS_INPLACE_ENC_RESUME_PASSWORD_PAGE_HELP">Proszę wprowadzić hasło i/lub plik/i-klucz/e dla bezsystemowego wolumenu, gdzie chcesz wznowić proces szyfrowania "w locie".\n\n\nZapamiętaj: Po kliknięciu Dalej, VeraCrypt przystąpi do wyszukania wszystkich niesystemowych wolumenów, gdzie proces szyfrowania został przerwany, i gdzie nagłówek wolumenu VeraCrypt może być odszyfrowany używając podanego hasła i/lub pliku/ów-klucza/y. Jeżeli jest znaleziony więcej niż jeden wolumen, będziesz musiał wybrać jeden z nich w następnym kroku.</entry>
<entry lang="pl" key="NONSYS_INPLACE_ENC_RESUME_VOL_SELECT_HELP">Proszę wybrać jeden z wyszczególnionych wolumenów. Lista zawiera każdy dostępny nie systemowy wolumen, gdzie proces szyfrowania został przerwany, i gdzie nagłówek mógł być odszyfrowany używając podanego hasła i/lub pliku/ów-klucza/y.</entry>
<entry lang="pl" key="NONSYS_INPLACE_DEC_PASSWORD_PAGE_HELP">Proszę wprowadzić hasło i/lub plik/i-klucz/e dla bezsystemowego wolumenu VeraCrypt, który chcesz odszyfrować.</entry>
<entry lang="pl" key="PASSWORD_HELP">Bardzo ważne jest wybranie dobrego hasła. Powinieneś unikać wybrania pojedynczych słów, które mogą być znalezione w słowniku (lub kombinacji 2, 3, lub 4 znalezionych słów). Nie powinno zawierać, żadnych nazw, imion lub dat urodzin. Nie powinno być łatwe do wymyślenia. Dobrym hasłem jest przypadkowa kombinacja dużych i małych liter, cyfr, i znaków specjalnych, takich jak @ ^ = $ * + itp. Zalecamy wybranie hasła zawierającego więcej niż 20 znaków (dłuższe, lepsze). Maksymalna długość - 128 znaki.</entry>
<entry lang="pl" key="PASSWORD_HELP">Bardzo ważne jest wybranie dobrego hasła. Powinieneś unikać wybrania pojedynczych słów, które mogą być znalezione w słowniku (lub kombinacji 2, 3, lub 4 znalezionych słów). Nie powinno zawierać, żadnych nazw, imion lub dat urodzin. Nie powinno być łatwe do wymyślenia. Dobrym hasłem jest przypadkowa kombinacja dużych i małych liter, cyfr, i znaków specjalnych, takich jak @ ^ = $ * + itp. Zalecamy wybranie hasła zawierającego więcej niż 20 znaków (dłuższe, lepsze). Maksymalna długość - 128 znaków.</entry>
<entry lang="pl" key="PASSWORD_HIDDENVOL_HELP">Wybierz hasło dla wolumenu ukrytego. </entry>
<entry lang="pl" key="PASSWORD_HIDDEN_OS_HELP">Proszę wybrać hasło dla ukrytego systemu operacyjnego (np. dla ukrytej partycji). </entry>
<entry lang="pl" key="PASSWORD_HIDDEN_OS_NOTE">WAŻNE: Hasło, które wybrałeś dla ukrytego systemu operacyjnego w tym kroku, musi być zasadniczo inne od pozostałych dwóch haseł (np. od hasła do zewnętrznego wolumenu i od hasła do zwodzącego systemu operacyjnego).</entry>
<entry lang="pl" key="PASSWORD_HIDDENVOL_HOST_DIRECT_HELP">Wprowadź hasło dla wolumenu, w którym chcesz utworzyć wolumen ukryty.\n\nPo kliknięciu przycisku Dalej program VeraCrypt spróbuje podłączyć ten wolumen. Natychmiast po podłączeniu nastąpi skanowanie mapy bitowej klastrów w celu określenia wielkości ciągłego, wolnego obszaru (jeśli jest) wyrównanego do końca wolumenu. Ten obszar będzie wykorzystany przez wolumen ukryty i dlatego ogranicza maksymalną możliwą wielkość. Skanowanie mapy klastrów jest niezbędne dla zapewnienia, że żadne dane z wolumenu zewnętrznego nie zostaną nadpisane przez wolumen ukryty.</entry>
<entry lang="pl" key="PASSWORD_HIDDENVOL_HOST_HELP">\nProszę wybrać hasło do zewnętrznego wolumenu. To będzie hasło, które może być ujawnione, gdy będziesz tego chciał lub zostaniesz zmuszony.\n\nWAŻNE: Hasło musi być zasadniczo inne od innych, których używasz do ukrytego wolumenu.\n\nPamiętaj: Maksymalna możliwa długość hasła to 128 znaki.</entry>
<entry lang="pl" key="PASSWORD_HIDDENVOL_HOST_HELP">\nProszę wybrać hasło do zewnętrznego wolumenu. To będzie hasło, które może być ujawnione, gdy będziesz tego chciał lub zostaniesz zmuszony.\n\nWAŻNE: Hasło musi być zasadniczo inne od innych, których używasz do ukrytego wolumenu.\n\nPamiętaj: Maksymalna możliwa długość hasła to 128 znaków.</entry>
<entry lang="pl" key="PASSWORD_SYSENC_OUTERVOL_HELP">Proszę wybrać hasło do zewnętrznego wolumenu. To będzie hasło, które może być ujawnione, gdy będziesz tego chciał do pierwszej partycji za partycją systemową, gdzie umieszczone są oba: zewnętrzny wolumen i ukryty wolumen (zawierający ukryty system operacyjny). Istnienie ukrytego wolumenu (i ukrytego systemu operacyjnego) pozostanie dalej w tajemnicy. Pamiętaj hasło nie jest do zwodzącego systemu operacyjnego.\n\nWAŻNE: Hasło musi być zasadniczo inne od pozostałych, które wybrałeś do ukrytego wolumenu (np. do ukrytego systemu operacyjnego).</entry>
<entry lang="pl" key="PASSWORD_HIDVOL_HOST_TITLE">Hasło wolumenu zewnętrznego</entry>
<entry lang="pl" key="PASSWORD_HIDVOL_TITLE">Hasło wolumenu ukrytego</entry>
@@ -650,7 +650,7 @@
<entry lang="pl" key="PIM_SMALL_WARNING">Wybrano wartość PIM mniejszą niż domyślna wartość VeraCrypt. Należy pamiętać, że jeśli hasło nie jest wystarczająco silne, może to prowadzić do osłabienia zabezpieczeń.\n\nCzy potwierdzasz użycie silnego hasła?</entry>
<entry lang="pl" key="PIM_SYSENC_TOO_BIG">Maksymalna wartość PIM dla szyfrowania systemu wynosi 65535.</entry>
<entry lang="pl" key="PIM_TITLE">PIM wolumenu</entry>
<entry lang="pl" key="HIDDEN_FILES_PRESENT_IN_KEYFILE_PATH">\n\nOSTRZEŻENIE: Odnaleziono pliki ukryte na ścieżce wyszukiwaniu plików-kluczy. Takie pliki nie moga zostać użyte jako pliki-klucze. Jeśli potrzebujesz ich jako plików-kluczy, usuń atrybut 'ukryty' (kliknij prawym przyciskiem myszki na każdym z nich, wybierz 'Właściwości', odznacz 'Ukryty' i wciśnij OK). Sugestia: Pliki ukryte widoczne są tylko jeśli włączona jest odpowiednia opcja (Komputer &gt; Organizuj &gt; 'Opcje folderów i wyszukiwania' &gt; Widok).</entry>
<entry lang="pl" key="HIDDEN_FILES_PRESENT_IN_KEYFILE_PATH">\n\nOSTRZEŻENIE: Odnaleziono pliki ukryte na ścieżce wyszukiwania plików-kluczy. Takie pliki nie mogą zostać użyte jako pliki-klucze. Jeśli potrzebujesz ich jako plików-kluczy, usuń atrybut 'ukryty' (kliknij prawym przyciskiem myszy na każdym z nich, wybierz 'Właściwości', odznacz 'Ukryty' i wciśnij OK). Sugestia: Pliki ukryte widoczne są tylko jeśli włączona jest odpowiednia opcja (Komputer &gt; Organizuj &gt; 'Opcje folderów i wyszukiwania' &gt; Widok).</entry>
<entry lang="pl" key="HIDDEN_VOL_PROT_PASSWORD_US_KEYB_LAYOUT">Jeżeli przystąpiłeś do zabezpieczania ukrytego wolumenu zawierającego ukryty system operacyjny, proszę się upewnić że używasz standardowego układu klawiatury US kiedy piszesz hasło do ukrytego wolumenu. Jest to wymagane, aby wpisać hasło potrzebne do rozruchu wstępnego, gdzie układ klawiatury w Windows jest inny niż standard US.</entry>
<entry lang="pl" key="FOUND_NO_PARTITION_W_DEFERRED_INPLACE_ENC">VeraCrypt nie znalazł żadnego wolumenu, gdzie nie systemowe szyfrowanie zostało przerwane, i gdzie nagłówek wolumenu może być odszyfrowany używając podanego hasła i/lub plikiem/ami-kluczem/ami.\n\nProszę upewnić się, że hasło i/lub plik/i-klucz/e są poprawne i że partycja/wolumen nie jest używana przez system lub aplikacje (włączając w to system antywirusowy).</entry>
<entry lang="pl" key="SELECTED_PARTITION_ALREADY_INPLACE_ENC">Wybrana partycja/urządzenie jest już w pełni zaszyfrowana.\nFlagi nagłówka = 0x%.8X</entry>
@@ -687,7 +687,7 @@
<entry lang="pl" key="TEST_PLAINTEXT_SIZE">Podany tekst jawny jest za długi lub za krótki.</entry>
<entry lang="pl" key="TWO_LAYER_CASCADE_HELP">Dwa szyfry używane kaskadowo w trybie XTS. Każdy blok jest najpierw szyfrowany przez %s (klucz %d-bitowy), a potem przez %s (klucz %d-bitowy). Każdy szyfr używa własnego klucza. Klucze są całkowicie niezależne.</entry>
<entry lang="pl" key="THREE_LAYER_CASCADE_HELP">Trzy szyfry używane kaskadowo w trybie XTS. Każdy blok jest najpierw szyfrowany przez %s (klucz %d-bitowy), potem przez %s (klucz %d-bitowy), a na końcu przez %s (klucz %d-bitowy). Każdy szyfr używa własnego klucza. Klucze są całkowicie niezależne.</entry>
<entry lang="pl" key="AUTORUN_MAY_NOT_ALWAYS_WORK">Pamiętaj że, konfiguracja zależna jest od systemu operacyjnego, gdzie autoodtwarzanie i autopodłączanie może działać tylko kiedy przenośne pliki są stworzone na urządzeniach z zablokowanym zapisem np. CD/DVD. Więc pamiętaj, że to nie jest błąd w VeraCrypt (jest to ograniczenie Windows).</entry>
<entry lang="pl" key="AUTORUN_MAY_NOT_ALWAYS_WORK">Pamiętaj, że konfiguracja zależna jest od systemu operacyjnego, gdzie autoodtwarzanie i autopodłączanie mo działać tylko kiedy przenośne pliki są stworzone na urządzeniach z zablokowanym zapisem np. CD/DVD. Więc pamiętaj, że to nie jest błąd w VeraCrypt (jest to ograniczenie Windows).</entry>
<entry lang="pl" key="TRAVELER_DISK_CREATED">VeraCrypt przenośny dysk został stworzony poprawnie.\n\nPamiętaj, że musisz posiadać uprawnienia administracyjne, aby uruchomić VeraCrypt w trybie przenośnym.</entry>
<entry lang="pl" key="TC_TRAVELER_DISK">Dysk podróżny VeraCrypt</entry>
<entry lang="pl" key="TWOFISH_HELP">Zaprojektowany przez Bruce'a Schneiera, Johna Kelseya, Douga Whitinga, Davida Wagnera, Chrisa Halla i Nielsa Fergusona. Opublikowany w 1998. Klucz 256-bitowy, blok 128-bitowy. Tryb szyfrowania: XTS. Algorytm Twofish był jednym z finalistów konkursu na algorytm AES.</entry>
@@ -704,10 +704,10 @@
<entry lang="pl" key="VOL_SEEKING">Błąd ustawienia pozycji zapisu/odczytu wewnątrz wolumenu.</entry>
<entry lang="pl" key="VOL_SIZE_WRONG">Błąd: Niepoprawna wielkość wolumenu.</entry>
<entry lang="pl" key="WARN_QUICK_FORMAT">OSTRZEŻENIE: Opcja szybkiego formatowania powinna być używana tylko w następujących wypadkach:\n\n1) Urządzenie zawiera losowe dane (np. jest już bezpiecznie i w pełni zaszyfrowane).\n2) Cała dostępna wielkość będzie natychmiast wykorzystana.\n3) Bezpieczeństwo nie jest istotne (testowanie).\n\nCzy na pewno użyć szybkiego formatowania?</entry>
<entry lang="pl" key="CONFIRM_SPARSE_FILE">Kontener dynamiczny jest plikiem rzadkim NTFS, którego fizyczna wielkość (bieżące użycie miejsca na dysku) rośnie wraz z dodawaniem danych.\n\nOstrzeżenie: Wydajność wolumenu wykorzystującego plik rzadki jest znacząco gorsza o wydajności zwykłego wolumenu. Wolumeny wykorzystujące plik rzadki są także mniej bezpieczne, gdyż jest możliwe określenie, które sektory nie są używane. Dodatkowo, jeśli dane są zapisywane do pliku rzadkiego i zabraknie wolnego miejsca w systemie plików, zaszyfrowany system plików może zostać uszkodzony.\n\nCzy na pewno utworzyć wolumen w pliku rzadkim?</entry>
<entry lang="pl" key="SPARSE_FILE_SIZE_NOTE">Zauważ, że wielkość dynamicznego kontenera pokazywana przez Windows i VeraCrypt będzie zawsze równa jego maksymalnemu rozmiarowi. Aby określić aktualną fizyczną wielkość kontenera (aktualną używaną przez niego przestrzeń dyskową), kliknij prawym przyciskiem myszy na pliku kontenera (w oknie Eksploratora Windows, nie w VeraCrypt), następnie wybierz 'Właściwości' i sprawdź wartość 'Rozmiar na dysku'.\n\nZauważ również, że jeśli przeniesiesz kontener na inny wolumen lub dysk, wielkość fizyczna kontenera zostanie zwiększona do maksimum. (Możesz temu zapobiec tworząc nowy kontener dynamiczny w miejscu docelowym, podłączając go a następnie przenosząc pliki ze starego kontenera do nowego.)</entry>
<entry lang="pl" key="CONFIRM_SPARSE_FILE">Kontener dynamiczny jest plikiem rzadkim NTFS, którego rozmiar fizyczny (bieżące zajęcie miejsca na dysku) rośnie wraz z dodawaniem danych.\n\nOstrzeżenie: Wydajność wolumenu używającego pliku rzadkiego jest znacząco gorsza od wydajności zwykłego wolumenu. Wolumeny wykorzystujące plik rzadki są także mniej bezpieczne, gdyż jest możliwe określenie, które sektory nie są używane. Dodatkowo, jeśli dane są zapisywane do pliku rzadkiego i zabraknie wolnego miejsca w systemie plików, zaszyfrowany system plików może zostać uszkodzony.\n\nCzy na pewno utworzyć wolumen w pliku rzadkim?</entry>
<entry lang="pl" key="SPARSE_FILE_SIZE_NOTE">Zauważ, że wielkość dynamicznego kontenera pokazywana przez Windows i VeraCrypt będzie zawsze równa jego maksymalnemu rozmiarowi. Aby określić aktualną fizyczną wielkość kontenera (aktualną używaną przez niego przestrzeń dyskową), kliknij prawym przyciskiem myszy na pliku kontenera (w oknie Eksploratora Windows, nie w VeraCrypt), następnie wybierz 'Właściwości' i sprawdź wartość 'Rozmiar na dysku'.\n\nZauważ również, że jeśli przeniesiesz kontener na inny wolumen lub dysk, wielkość fizyczna kontenera zostanie zwiększona do maksimum. (Możesz temu zapobiec tworząc nowy kontener dynamiczny w miejscu docelowym, podłączając go a następnie przenosząc pliki ze starego kontenera do nowego.)</entry>
<entry lang="pl" key="PASSWORD_CACHE_WIPED_SHORT">Bufor hasła wyczyszczony</entry>
<entry lang="pl" key="PASSWORD_CACHE_WIPED">Hasła (oraz zawartość przetwarzanego pliku-klucza) przechowywane w buforze sterownika VeraCrypt zostały wyczyszczone.</entry>
<entry lang="pl" key="PASSWORD_CACHE_WIPED">Hasła (oraz zawartość przetwarzanego pliku-klucza) przechowywane w buforze sterownika VeraCrypt zostały wyczyszczone.</entry>
<entry lang="pl" key="WRONG_VOL_TYPE">VeraCrypt nie może zmienić hasła dla wolumenu obcego.</entry>
<entry lang="pl" key="SELECT_FREE_DRIVE">Wybierz z listy wolną literę dysku.</entry>
<entry lang="pl" key="SELECT_A_MOUNTED_VOLUME">Wybierz z listy podłączony wolumen.</entry>
@@ -745,17 +745,17 @@
<entry lang="pl" key="CLUSTER_TOO_SMALL">Wybrana wielkość klastra jest zbyt mała dla wolumenu o tej wielkości. Należy użyć klastra o większej wielkości.</entry>
<entry lang="pl" key="CANT_GET_VOLSIZE">Błąd: Nie można uzyskać wielkości wolumenu!\n\nUpewnij się, że wybrany wolumen nie jest używany przez system lub aplikację.</entry>
<entry lang="pl" key="HIDDEN_VOL_HOST_SPARSE">Wolumeny ukryte nie mogą być tworzone w kontenerach dynamicznych (sparse file). Aby osiągnąć wiarygodne możliwości kontroli, wolumen ukryty musi być utworzony w kontenerze o stałym rozmiarze.</entry>
<entry lang="pl" key="HIDDEN_VOL_HOST_UNSUPPORTED_FILESYS">Kreator wolumenu VeraCrypt może utworzyć wolumen ukryty tylko w wolumenie z system plików FAT lub NTFS.</entry>
<entry lang="pl" key="HIDDEN_VOL_HOST_UNSUPPORTED_FILESYS">Kreator wolumenu VeraCrypt może utworzyć wolumen ukryty tylko w wolumenie z systemem plików FAT lub NTFS.</entry>
<entry lang="pl" key="HIDDEN_VOL_HOST_UNSUPPORTED_FILESYS_WIN2000">W systemie Windows 2000 kreator wolumenów VeraCrypt może utworzyć wolumen ukryty tylko w wolumenie z systemem plików FAT.</entry>
<entry lang="pl" key="HIDDEN_VOL_HOST_NTFS">Uwaga: System plików FAT jest bardziej odpowiedni dla zewnętrznego wolumenu niż NTFS (np. maksymalna możliwa wielkość ukrytego wolumenu będzie prawdopodobnie większa jeżeli zewnętrzny wolumen jest sformatowany jako FAT).</entry>
<entry lang="pl" key="HIDDEN_VOL_HOST_NTFS_ASK">System plików FAT jest bardziej odpowiedni dla zewnętrznych wolumenów niż system NTFS. Np. maksymalna możliwa wielkość ukrytego wolumenu będzie prawdopodobnie większa jeżeli zewnętrzny wolumen jest sformatowany jako FAT (Powód jest taki, że NTFS zawsze utrzymuje wewnętrzne dane dokładnie w środku wolumenu i dlatego ukryty wolumen może być umieszczony tylko w drugiej połówce partycji).\n\nCzy jesteś pewien, że chcesz sformatować zewnętrzny wolumen jako NTFS?</entry>
<entry lang="pl" key="OFFER_FAT_FORMAT_ALTERNATIVE">Czy chcesz sformatować wolumen jako FAT?</entry>
<entry lang="pl" key="FAT_NOT_AVAILABLE_FOR_SO_LARGE_VOLUME">Uwaga: Ten wolumen nie może być sformatowany jako FAT, ponieważ przekracza maksymalną wielkość wolumenu obsługiwaną przez system plików FAT32 dla odpowiedniego rozmiaru sektora (2 TB dla sektorów 512-bajtowych oraz 16 TB dla sektorów 4096-bajtowych).</entry>
<entry lang="pl" key="PARTITION_TOO_SMALL_FOR_HIDDEN_OS">Błąd: Partycja dla ukrytego systemu operacyjnego (tzn. pierwsza partycja za partycją systemową) musi być przynajmniej 5% większa od partycji systemowej (partycja systemowa to taka, gdzie obecnie jest zainstalowany i uruchomiony system operacyjny).</entry>
<entry lang="pl" key="PARTITION_TOO_SMALL_FOR_HIDDEN_OS_NTFS">Błąd: Partycja dla ukrytego systemu operacyjnego (np. pierwsza partycja za partycją systemową) musi być przynajmniej 110% (2.1 razy) większa od partycji systemowej (partycja systemowa to ta, gdzie obecnie zainstalowany i uruchomiony jest system the system operacyjny). Powód jest taki, że NTFS zawsze utrzymuje wewnętrzne dane dokładnie w środku wolumenu i dlatego ukryty wolumen (który zawiera klon partycji systemowej) może być umieszczony tylko w drugiej połówce partycji.</entry>
<entry lang="pl" key="PARTITION_TOO_SMALL_FOR_HIDDEN_OS_NTFS">Błąd: Partycja dla ukrytego systemu operacyjnego (np. pierwsza partycja za partycją systemową) musi być przynajmniej 110% (2.1 raza) większa od partycji systemowej (partycja systemowa to ta, gdzie obecnie zainstalowany i uruchomiony jest system operacyjny). Powód jest taki, że NTFS zawsze utrzymuje wewnętrzne dane dokładnie w środku wolumenu i dlatego ukryty wolumen (który zawiera klon partycji systemowej) może być umieszczony tylko w drugiej połówce partycji.</entry>
<entry lang="pl" key="OUTER_VOLUME_TOO_SMALL_FOR_HIDDEN_OS_NTFS">Błąd: Jeżeli zewnętrzny wolumen jest NTFS, musi być przynajmniej 110% (2.1 raza) większy niż partycja systemowa. Powód jest taki, że NTFS zawsze zapisuje wewnętrzne dane dokładnie w środku wolumenu i dlatego ukryty wolumen (który zawiera klon partycji systemowej) może być umieszczony tylko w drugiej połówce zewnętrznego wolumenu.\n\nUwaga: Zewnętrzny wolumen wymaga, aby był umieszczony wewnątrz tej samej partycji co ukryty system operacyjny (np. wewnątrz pierwszej partycja za partycją systemową).</entry>
<entry lang="pl" key="NO_PARTITION_FOLLOWS_BOOT_PARTITION">Błąd: Nie ma partycji za partycją systemową.\n\nUwaga, przed stworzeniem ukrytego systemu operacyjnego wymagane jest stworzenie partycji dla tego systemu na systemowym dysku. Ona musi być pierwszą partycją za partycją systemową i musi być przynajmniej 5% większa od systemowej partycji (systemowa partycja to ta, gdzie aktualnie jest zainstalowany i uruchomiony system operacyjny). Jednakże, jeżeli zewnętrzny wolumen (nie mylić z partycją systemową) jest sformatowany jako NTFS, partycja na ukryty system operacyjny musi być przynajmniej 110% (2.1 raza) większa od systemowej partycji (powodem jest to, że NTFS zawsze zapisuje wewnętrzne dane dokładnie w środku wolumenu i dlatego ukryty wolumen, który jest klonem zawartości partycji systemowej, może być umieszczony w drugiej połówce partycji).</entry>
<entry lang="pl" key="TWO_SYSTEMS_IN_ONE_PARTITION_REMARK">Zapamiętaj: Nie jest praktykowane (i dlatego nie jest wspierane) zainstalowanie dwóch systemów operacyjnych w dwóch wolumenach VeraCrypt zawartych wewnątrz jednej partycji, ponieważ używanie zewnętrznego systemu operacyjnego często wymaga zapisania danych na obszarze ukrytego systemu operacyjnego.</entry>
<entry lang="pl" key="TWO_SYSTEMS_IN_ONE_PARTITION_REMARK">Zapamiętaj: Nie jest praktykowane (i dlatego nie jest wspierane) zainstalowanie dwóch systemów operacyjnych w dwóch wolumenach VeraCrypt zawartych wewnątrz jednej partycji, ponieważ używanie zewnętrznego systemu operacyjnego często wymaga zapisania danych na obszarze ukrytego systemu operacyjnego.</entry>
<entry lang="pl" key="FOR_MORE_INFO_ON_PARTITIONS">Aby uzyskać informacje jak stworzyć i zarządzać partycjami, proszę przeczytać dokumentację zawartą w systemie operacyjnym lub skontaktować się ze swoim serwisem sprzętu.</entry>
<entry lang="pl" key="SYSTEM_PARTITION_NOT_ACTIVE">BŁĄD: Obecnie uruchomiony system operacyjny nie jest zainstalowany na partycji bootującej (pierwszej aktywnej partycji). To nie jest obsługiwane.</entry>
<entry lang="pl" key="CONFIRM_FAT_FOR_FILES_OVER_4GB">Stwierdziłeś, że będziesz przechowywał na tym wolumenie pliki większe niż 4 GB. Jednocześnie wybrałeś system plików FAT, na którym nie można umieścić plików większych niż 4 GB.\n\nCzy jesteś pewien że chcesz sformatować zewnętrzny wolumen jako FAT?</entry>
@@ -828,9 +828,9 @@
<entry lang="pl" key="AUTODETECTION">Autodetekcja</entry>
<entry lang="pl" key="SETUP_MODE_TITLE">Tryb kreatora</entry>
<entry lang="pl" key="SETUP_MODE_INFO">Wybierz jedną z metod. Jeżeli nie jesteś pewny co wybrać, wybierz wartość domyślną.</entry>
<entry lang="pl" key="SETUP_MODE_HELP_INSTALL">Wybierz tą opcję jeżeli chcesz zainstalować VeraCrypt w tym systemie.</entry>
<entry lang="pl" key="SETUP_MODE_HELP_INSTALL">Wybierz tę opcję, jeżeli chcesz zainstalować VeraCrypt w tym systemie.</entry>
<entry lang="pl" key="SETUP_MODE_HELP_UPGRADE">Wskazówka: Możesz uaktualnić bez rozszyfrowywania nawet jeśli zaszyfrowana jest partycja/dysk systemowy lub używasz ukrytego systemu operacyjnego.</entry>
<entry lang="pl" key="SETUP_MODE_HELP_EXTRACT">Jeżeli wybierzesz tą opcję, wszystkie pliki będą wypakowane z tego archiwum, ale nic nie zostanie zainstalowane w systemie. Nie zaznaczaj, jeżeli rzeczywiście chcesz zaszyfrować systemową partycję lub systemowy dysk. Zaznaczenie tej opcji może być używane np. jeżeli chcesz uruchomić VeraCrypt np. w trybie przenośnym. VeraCrypt nie zostanie zainstalowany w systemie operacyjnym. Po wypakowaniu wszystkich plików, możesz bezpośrednio uruchomić rozpakowany 'VeraCrypt.exe' (VeraCrypt uruchomi się w trybie przenośnym).</entry>
<entry lang="pl" key="SETUP_MODE_HELP_EXTRACT">Jeżeli wybierzesz tę opcję, wszystkie pliki będą wypakowane z tego archiwum, ale nic nie zostanie zainstalowane w systemie. Nie zaznaczaj, jeżeli rzeczywiście chcesz zaszyfrować systemową partycję lub systemowy dysk. Zaznaczenie tej opcji może być używane np. jeżeli chcesz uruchomić VeraCrypt np. w trybie przenośnym. VeraCrypt nie zostanie zainstalowany w systemie operacyjnym. Po wypakowaniu wszystkich plików, możesz bezpośrednio uruchomić rozpakowany 'VeraCrypt.exe' (VeraCrypt uruchomi się w trybie przenośnym).</entry>
<entry lang="pl" key="SETUP_OPTIONS_TITLE">Opcje instalowania</entry>
<entry lang="pl" key="SETUP_OPTIONS_INFO">W tym oknie można ustawić opcje kontrolujące proces instalacji.</entry>
<entry lang="pl" key="SETUP_PROGRESS_TITLE">Instalowanie</entry>
@@ -855,7 +855,7 @@
<entry lang="pl" key="TC_INSTALLER_IS_RUNNING">VeraCrypt Installer jest uruchomiony w twoim systemie i przygotowuje lub dokonuje instalacji lub uaktualnienia VeraCrypt. Przed dalszym kontynuowaniem instalacji, proszę poczekać na zakończenie aktualnego działania lub zamknij aplikacje. Jeżeli nie możesz zamknąć, proszę zrestartuj komputer przed uruchomieniem procesu instalacji.</entry>
<entry lang="pl" key="INSTALL_FAILED">Niepowodzenie instalacji.</entry>
<entry lang="pl" key="UNINSTALL_FAILED">Niepowodzenie dezinstalacji.</entry>
<entry lang="pl" key="DIST_PACKAGE_CORRUPTED">Pakiet dystrybucyjny jest uszkodzony. Pobierz go ponownie (najlepiej z oficjalnej strony programu VeraCrypt po adresem https://veracrypt.jp).</entry>
<entry lang="pl" key="DIST_PACKAGE_CORRUPTED">Pakiet dystrybucyjny jest uszkodzony. Pobierz go ponownie (najlepiej z oficjalnej strony programu VeraCrypt pod adresem https://veracrypt.jp).</entry>
<entry lang="pl" key="CANNOT_WRITE_FILE_X">Nie można zapisać pliku %s</entry>
<entry lang="pl" key="EXTRACTING_VERB">Wyodrębnianie</entry>
<entry lang="pl" key="CANNOT_READ_FROM_PACKAGE">Nie można odczytać danych z tego pakietu.</entry>
@@ -877,7 +877,7 @@
<entry lang="pl" key="CREATING_SYS_RESTORE">Tworzenie punktu przywracania systemu</entry>
<entry lang="pl" key="FAILED_SYS_RESTORE">Niepowodzenie tworzenia punktu przywracania systemu!</entry>
<entry lang="pl" key="INSTALLER_UPDATING_BOOT_LOADER">Uaktualnienie programu startowego</entry>
<entry lang="pl" key="INSTALL_OF_FAILED">Zainstalowanie '%s' nie powiodło się. %s Czy chcesz kontynuowań instalowanie?</entry>
<entry lang="pl" key="INSTALL_OF_FAILED">Zainstalowanie '%s' nie powiodło się. %s Czy chcesz kontynuować instalowanie?</entry>
<entry lang="pl" key="UNINSTALL_OF_FAILED">Odinstalowanie '%s' nie powiodło się. %s Czy chcesz kontynuować odinstalowanie?</entry>
<entry lang="pl" key="INSTALL_COMPLETED">Instalacja została zakończona.</entry>
<entry lang="pl" key="CANT_CREATE_FOLDER">Nie można utworzyć folderu '%s'</entry>
@@ -894,7 +894,7 @@
<entry lang="pl" key="COM_REG_FAILED">Rejestracja biblioteki obsługującej zarządzanie kontami użytkowników nie powiodła się.</entry>
<entry lang="pl" key="COM_DEREG_FAILED">Wyrejestrowanie biblioteki obsługującej zarządzanie kontami użytkowników nie powiodło się.</entry>
<entry lang="pl" key="TRAVELER_LIMITATIONS_NOTE">Uwaga o trybie przenośnym:\n\nProszę zauważyć, że system operacyjny wymaga zarejestrowania w nim sterowników, zanim będą mogły być uruchomione. Dlatego sterownik VeraCrypt nie jest (i nie może być) w pełni przenośny (chociaż aplikacja VeraCrypt jest w pełni przenośna, tzn. nie musi być zainstalowana ani zarejestrowana w systemie operacyjnym). Należy również pamiętać, że VeraCrypt potrzebuje sterownika, aby zapewnić przejrzyste szyfrowanie/deszyfrowanie w locie.</entry>
<entry lang="pl" key="TRAVELER_UAC_NOTE">Pamiętaj, że jeżeli zdecydujesz się uruchomić VeraCrypt w trybie przenośnym (w przeciwieństwie do uruchomienia zainstalowanej wersji VeraCrypt), system zapyta cię o uprawnienia do uruchomienia VeraCrypt (UAC prompt) za każdym razem, gdy będziesz go uruchamiał.\n\nPowodem jest to, że VeraCrypt w trybie przenośnym wymaga załadowania i uruchomienia sterownika urządzeń VeraCrypt. VeraCrypt potrzebuje sterownika, aby zapewnić przeźroczysty dostęp do szyfrowania/odszyfrowania i użytkownicy bez uprawnień administracyjnych nie mogą uruchomić sterownika urządzeń w Windows. Dlatego, system zapyta cię o uprawnienia administracyjne przy uruchomieniu VeraCrypt (UAC prompt).\n\nPamiętaj, że jeżeli zainstalujesz VeraCrypt w systemie, system NIE będzie pytał o uprawnienia do uruchomienia VeraCrypt (UAC prompt).\n\nCzy jesteś pewien, że chcesz wypakować pliki?</entry>
<entry lang="pl" key="TRAVELER_UAC_NOTE">Pamiętaj, że jeżeli zdecydujesz się uruchomić VeraCrypt w trybie przenośnym (w przeciwieństwie do uruchomienia zainstalowanej wersji VeraCrypt), system zapyta cię o uprawnienia do uruchomienia VeraCrypt (UAC prompt) za każdym razem, gdy będziesz go uruchamiał.\n\nPowodem jest to, że VeraCrypt w trybie przenośnym wymaga załadowania i uruchomienia sterownika urządzeń VeraCrypt. VeraCrypt potrzebuje sterownika, aby zapewnić przezroczysty dostęp do szyfrowania/odszyfrowania i użytkownicy bez uprawnień administracyjnych nie mogą uruchomić sterownika urządzeń w Windows. Dlatego, system zapyta cię o uprawnienia administracyjne przy uruchomieniu VeraCrypt (UAC prompt).\n\nPamiętaj, że jeżeli zainstalujesz VeraCrypt w systemie, system NIE będzie pytał o uprawnienia do uruchomienia VeraCrypt (UAC prompt).\n\nCzy jesteś pewien, że chcesz wypakować pliki?</entry>
<entry lang="pl" key="CONTAINER_ADMIN_WARNING">UWAGA: Obecne wystąpienie kreatora wolumenów ma uprawnienia administratora.\n\nTwój nowy wolumen może być stworzony z uprawnieniami, które nie pozwolą ci na zapisanie do wolumenu, gdy jest on podłączony. Jeżeli chcesz to ominąć, zamknij to wystąpienie kreatora i uruchom nową kopię bez uprawnień administratora.\n\nCzy chcesz zamknąć to okno kreatora?</entry>
<entry lang="pl" key="CANNOT_DISPLAY_LICENSE">Błąd: Nie można wyświetlić licencji.</entry>
<entry lang="pl" key="OUTER_VOL_WRITE_PREVENTED">Zewnętrzny(!)</entry>
@@ -926,7 +926,7 @@
<entry lang="pl" key="SYS_FAVORITE_VOLUMES_SAVED">Ulubione wolumeny systemu zapisane.\n\nAby włączyć podłączanie ulubionych wolumenów systemu, kiedy system startuje, proszę wybrać 'Ustawienia' &gt; 'Ulubione wolumeny systemu' &gt; 'Podłącz ulubione wolumeny systemu podczas startu Windows'.</entry>
<entry lang="pl" key="FAVORITE_ADD_DRIVE_DEV_WARNING">Wolumen, który właśnie dodajesz do ulubionych nie jest ani partycją ani wolumenem dynamicznym. Dlatego VeraCrypt nie będzie mógł podłączyć tego ulubionego wolumenu jeśli zmieni się numer urządzenia.</entry>
<entry lang="pl" key="FAVORITE_ADD_PARTITION_TYPE_WARNING">Wolumen, który właśnie dodajesz do ulubionych jest partycją nierozpoznawalną dla Windows.\n\nVeraCrypt nie będzie w stanie podłączyć tego ulubionego wolumenu jeśli zmieni się numer urządzenia. Wymagane jest ustawienie typu partycji tak, by był rozpoznawalny przez Windows (użyj polecenia SETID z windowsowego narzędzia 'diskpart'). Następnie dodaj ponownie partycję do ulubionych.</entry>
<entry lang="pl" key="FAVORITE_ARRIVAL_MOUNT_BACKGROUND_TASK_ERR">Wykonywane zadanie VeraCrypt w tle zostało zablokowane lub skonfigurowane, by zakończyć się, gdy wystąpi brak podłączonych wolumenów (lub VeraCrypt jest uruchomiony w trybie przenośnym). Może to blokować automatyczne podłączanie ulubionych wolumenów po podłączeniu ich nośników.\n\nUwaga: Aby odblokować zadanie VeraCrypt w tle, należy wybrać Ustawienia &gt; Preferencje i zaznacz pole wyboru 'Aktywne' w sekcji 'Zadanie VeraCrypt w tle'.</entry>
<entry lang="pl" key="FAVORITE_ARRIVAL_MOUNT_BACKGROUND_TASK_ERR">Wykonywane zadanie VeraCrypt w tle zostało zablokowane lub skonfigurowane, by zakończyć się, gdy wystąpi brak podłączonych wolumenów (lub VeraCrypt jest uruchomiony w trybie przenośnym). Może to blokować automatyczne podłączanie ulubionych wolumenów po podłączeniu ich nośników.\n\nUwaga: Aby odblokować zadanie VeraCrypt w tle, należy wybrać Ustawienia &gt; Preferencje i zaznacz pole wyboru 'Aktywne' w sekcji 'Zadanie VeraCrypt w tle'.</entry>
<entry lang="pl" key="FAVORITE_ARRIVAL_MOUNT_NETWORK_PATH_ERR">Nośnik przechowywany na zdalnym systemie plików współdzielonym w sieci nie może być automatycznie dołączany, gdy podłączane jest jego urządzenie.</entry>
<entry lang="pl" key="FAVORITE_ARRIVAL_MOUNT_DEVICE_PATH_ERR">Urządzenie wyświetlane poniżej nie jest ani partycją ani wolumenem dynamicznym. Stąd wolumen zawarty w urządzeniu nie może być automatycznie podłączony, gdy urządzenie jest podłączane.</entry>
<entry lang="pl" key="FAVORITE_ARRIVAL_MOUNT_PARTITION_TYPE_ERR">Należy ustawić typ partycji wyświetlany poniżej na typ rozpoznawany przez Windows (użyj polecenia SETID narzędzia Windows 'diskpart'). Następnie usuń partycję z ulubionych i dodaj ją ponownie. Pozwoli to wolumenowi mieszczącemu sie na urządzeniu zostać automatycznie podłączonym po podpięciu urządzenia.</entry>
@@ -957,7 +957,7 @@
<entry lang="pl" key="HEADER_RESTORE_INTERNAL">Odtwórz nagłówek wolumenu z wbudowanej w wolumen kopii bezpieczeństwa</entry>
<entry lang="pl" key="HEADER_RESTORE_EXTERNAL">Odtwórz nagłówek wolumenu z zewnętrznego pliku kopii bezpieczeństwa</entry>
<entry lang="pl" key="HEADER_BACKUP_SIZE_INCORRECT">Wielkość kopii nagłówka wolumenu z pliku kopii jest niepoprawna.</entry>
<entry lang="pl" key="VOLUME_HAS_NO_BACKUP_HEADER">Nie ma kopii nagłowna we wbudowanej kopii bezpieczeństwa tego wolumenu (uwaga tylko dla wolumenów stworzonych przez TrueCrypt 6.0 lub późniejszych).</entry>
<entry lang="pl" key="VOLUME_HAS_NO_BACKUP_HEADER">Nie ma kopii nagłówka we wbudowanej kopii bezpieczeństwa tego wolumenu (uwaga tylko dla wolumenów stworzonych przez TrueCrypt 6.0 lub późniejszych).</entry>
<entry lang="pl" key="BACKUP_HEADER_NOT_FOR_SYS_DEVICE">Zamierzasz utworzyć kopię zapasową nagłówka dla partycji/dysku systemowego. To nie jest dozwolone. Zabezpieczanie/odtwarzanie dla partycji/dysku systemowego może być przeprowadzane wyłącznie przy użyciu płyty ratunkowej programu VeraCrypt.\n\nCzy utworzyć płytę ratunkową programu VeraCrypt?</entry>
<entry lang="pl" key="RESTORE_HEADER_NOT_FOR_SYS_DEVICE">Zamierzasz odtworzyć nagłówek wolumenu wirtualnego VeraCrypt, ale wybrano partycję lub dysk systemowy. To nie jest dozwolone. Zabezpieczanie/odtwarzanie dla partycji/dysku systemowego może być przeprowadzane wyłącznie przy użyciu płyty ratunkowej programu VeraCrypt.\n\nCzy utworzyć płytę ratunkową programu VeraCrypt?</entry>
<entry lang="pl" key="RESCUE_DISK_NON_WIZARD_CREATION_SELECT_PATH">Po kliknięciu przycisku OK należy wybrać nazwę pliku dla nowego obrazu ISO płyty ratunkowej programu VeraCrypt i miejsce, w którym zostanie zapisany.</entry>
@@ -970,7 +970,7 @@
<entry lang="pl" key="RESCUE_DISK_ISO_IMAGE_CHECK_FAILED">Nieudane sprawdzenie obrazu płyty ratunkowej.\n\nJeżeli próbujesz sprawdzić obraz płyty ratunkowej VeraCrypt stworzony dla innego klucza głównego, hasła, soli itp., proszę zauważyć, że taki obraz płyty ratunkowej zawsze nie przejdzie weryfikacji. Aby stworzyć nowy obraz płyty ratunkowej VeraCrypt w pełni kompatybilny z twoją obecną konfiguracją, wybierz 'System' > 'Utwórz płytę ratunkową'.</entry>
<entry lang="pl" key="ERROR_CREATING_RESCUE_DISK">Błąd tworzenia płyty ratunkowej</entry>
<entry lang="pl" key="CANNOT_CREATE_RESCUE_DISK_ON_HIDDEN_OS">Płyta ratunkowa VeraCrypt nie może zostać stworzona podczas uruchomionego ukrytego systemu operacyjnego.\n\nAby stworzyć płytę ratunkową VeraCrypt, zrestartuj system operacyjny i wybierz 'System' &gt; 'Tworzenie płyty ratunkowej'.</entry>
<entry lang="pl" key="RESCUE_DISK_CHECK_FAILED">Nie można zweryfikować poprawności zapisu płyty ratunkowej.\n\nJeżeli masz nagraną płytę ratunkową, proszę wyjąć ją i włożyć ponownie do CD/DVD; kliknij Dalej, aby spróbować jeszcze raz. Jeżeli to nie pomoże, proszę spróbować z innym nośnikiem %s.\n\nJeżeli nie nagrałeś jeszcze płyty ratunkowej, zrób to, i kliknij Dalej.\n\nJeżeli przystąpisz do sprawdzenia płyty ratunkowej VeraCrypt przed uruchomieniem tego kreatora, proszę pamiętać że płyta ratunkowa nie może byc użyta, ponieważ została stworzona z innym kluczem głównym. Powinieneś nagrać nowo wygenerowaną płytę ratunkową.</entry>
<entry lang="pl" key="RESCUE_DISK_CHECK_FAILED">Nie można zweryfikować poprawności zapisu płyty ratunkowej.\n\nJeżeli masz nagraną płytę ratunkową, proszę wyjąć ją i włożyć ponownie do CD/DVD; kliknij Dalej, aby spróbować jeszcze raz. Jeżeli to nie pomoże, proszę spróbować z innym nośnikiem %s.\n\nJeżeli nie nagrałeś jeszcze płyty ratunkowej, zrób to, i kliknij Dalej.\n\nJeżeli przystąpisz do sprawdzenia płyty ratunkowej VeraCrypt przed uruchomieniem tego kreatora, proszę pamiętać że płyta ratunkowa nie może być użyta, ponieważ została stworzona z innym kluczem głównym. Powinieneś nagrać nowo wygenerowaną płytę ratunkową.</entry>
<entry lang="pl" key="RESCUE_DISK_CHECK_FAILED_SENTENCE_APPENDIX"> i/lub inne oprogramowanie nagrywające CD/DVD</entry>
<entry lang="pl" key="SYSTEM_FAVORITES_DLG_TITLE">VeraCrypt - Ulubione wolumeny systemowe</entry>
<entry lang="pl" key="SYS_FAVORITES_HELP_LINK">Co to są ulubione wolumeny systemowe?</entry>
@@ -1008,7 +1008,7 @@
<entry lang="pl" key="NO_VOLUME_SELECTED">Nie wybrano wolumenu.\n\nKliknij przycisk 'Wybierz urządzenie' lub 'Wybierz plik, aby wybrać wolumen VeraCrypt.</entry>
<entry lang="pl" key="NO_SYSENC_PARTITION_SELECTED">Nie wybrano partycji.\n\nKliknij przycisk 'Wybierz urządzenie', aby wybrać niepodłączoną partycję, która normalnie wymaga wstępnego uwierzytelniania (np. partycja umieszczona na zaszyfrowanym dysku systemowym innego systemu operacyjnego, który nie jest uruchomiony lub zaszyfrowana partycja systemowa innego systemu operacyjnego).\n\nUwaga: Wybrana partycja zostanie podłączona tak jak zwykły wolumen VeraCrypt bez wstępnego uwierzytelniania. To jest przydatne np. do wykonania kopii zapasowej lub naprawy systemu.</entry>
<entry lang="pl" key="CONFIRM_SAVE_DEFAULT_KEYFILES">OSTRZEŻENIE: Jeśli zostaną zdefiniowane i włączone domyślne pliki-klucze, wolumeny nie używające tych kluczy nie będą mogły być podłączone. Dlatego po włączeniu domyślnych plików-kluczy należy pamiętać o anulowaniu zaznaczenia pola wyboru 'Użyj plików-kluczy' (poniżej pola wprowadzania hasła) zawsze, gdy podłączane są takie wolumeny.\n\nCzy na pewno chcesz zapisać wybrane pliki-klucze lub ich ścieżki jako domyślne?</entry>
<entry lang="pl" key="HK_AUTOMOUNT_DEVICES">Automatycznie podłączanie urządzeń</entry>
<entry lang="pl" key="HK_AUTOMOUNT_DEVICES">Automatyczne podłączanie urządzeń</entry>
<entry lang="pl" key="HK_UNMOUNT_ALL">Odłącz wszystko</entry>
<entry lang="pl" key="HK_WIPE_CACHE">Wyczyść pamięć podręczną</entry>
<entry lang="pl" key="HK_UNMOUNT_ALL_AND_WIPE">Odmontuj wszystko i wyczyść pamięć podręczną</entry>
@@ -1029,22 +1029,22 @@
<entry lang="pl" key="MOUNTED_VOLUMES_UNMOUNTED">Wolumeny VeraCrypt zostały odłączone.</entry>
<entry lang="pl" key="VOLUMES_UNMOUNTED_CACHE_WIPED">Wolumeny VeraCrypt zostały odłączone a bufor haseł wyczyszczony.</entry>
<entry lang="pl" key="SUCCESSFULLY_UNMOUNTED">Pomyślnie odłączone</entry>
<entry lang="pl" key="CONFIRM_BACKGROUND_TASK_DISABLED">UWAGA: Jeśli zadanie VeraCrypt w tle jest zablokowane, wyłączone są następujące funkcje:\n\n1) Klawisze skrótu\n2) Automatyczne odłączanie (tj., podczas wylogowywania, niezapowiedzianego odłączenia nośnika, timeoutu itp.)\n3) Automatyczne podłączanie ulubionych wolumenów\n4) Powiadomienia (np. przy zapobieganiu uszkodzenia ukrytego wolumenu)\n5) Ikony powiadomień\n\nZauważ: Można w każdej chwili zakończyć zadanie w tle prawym przyciskiem myszki na ikonie powiadomień przez wybór 'Wyjście'.\n\nCzy na pewno trwale zablokować zadanie VeraCrypt w tle?</entry>
<entry lang="pl" key="CONFIRM_BACKGROUND_TASK_DISABLED">UWAGA: Jeśli zadanie VeraCrypt w tle jest zablokowane, wyłączone są następujące funkcje:\n\n1) Klawisze skrótu\n2) Automatyczne odłączanie (tj., podczas wylogowywania, niezapowiedzianego odłączenia nośnika, timeoutu itp.)\n3) Automatyczne podłączanie ulubionych wolumenów\n4) Powiadomienia (np. przy zapobieganiu uszkodzenia ukrytego wolumenu)\n5) Ikony powiadomień\n\nZauważ: Można w każdej chwili zakończyć zadanie w tle prawym przyciskiem myszy na ikonie powiadomień przez wybór 'Wyjście'.\n\nCzy na pewno trwale zablokować zadanie VeraCrypt w tle?</entry>
<entry lang="pl" key="CONFIRM_NO_FORCED_AUTOUNMOUNT">OSTRZEŻENIE: Jeśli opcja ta zostanie wyłączona, wolumeny zawierające otwarte pliki/katalogi nie będą mogły być automatycznie odłączane.\n\nCzy na pewno wyłączyć tę opcję?</entry>
<entry lang="pl" key="WARN_PREF_AUTO_UNMOUNT">OSTRZEŻENIE: Wolumeny zawierające otwarte pliki/katalogi nie będą automatycznie odłączane.\n\nAby to zmienić, włącz następującą opcję w tym oknie dialogowym: 'Wymuś odłączanie, nawet gdy są otwarte pliki lub katalogi'.</entry>
<entry lang="pl" key="WARN_PREF_AUTO_UNMOUNT_ON_POWER">OSTRZEŻENIE: Kiedy w laptopie bateria jest słaba, Windows może wysłać informacje do uruchomionych aplikacji, że wchodzi w stan oszczędzania energii. Dlatego, VeraCrypt w tych przypadkach może błędnie automatycznie odłączać wolumeny.</entry>
<entry lang="pl" key="WARN_PREF_AUTO_UNMOUNT_ON_POWER">OSTRZEŻENIE: Kiedy w laptopie bateria jest słaba, Windows może wysłać informacje do uruchomionych aplikacji, że wchodzi w stan oszczędzania energii. Dlatego, VeraCrypt w tych przypadkach może błędnie automatycznie odłączać wolumeny.</entry>
<entry lang="pl" key="NONSYS_INPLACE_ENC_RESUME_PROMPT">Zaplanowano proces szyfrowania partycji/wolumenu. Proces jeszcze nie został zakończony.\n\nCzy chcesz teraz wznowić proces?</entry>
<entry lang="pl" key="SYSTEM_ENCRYPTION_RESUME_PROMPT">Zaplanowano proces szyfrowania lub deszyfrowania partycji lub dysku systemowego. Proces ten nie został jeszcze zakończony.\n\nCzy chcesz go teraz uruchomić (wznowić)?</entry>
<entry lang="pl" key="ASK_NONSYS_INPLACE_ENC_NOTIFICATION_REMOVAL">Czy chcesz być zapytany o dokończenie obecnego procesu szyfrowania nie systemowej partycji/wolumenu?</entry>
<entry lang="pl" key="KEEP_PROMPTING_ME">Tak, pytaj mnie ciągle</entry>
<entry lang="pl" key="DO_NOT_PROMPT_ME">Nie, nie pytaj mnie</entry>
<entry lang="pl" key="NONSYS_INPLACE_ENC_NOTIFICATION_REMOVAL_NOTE">WAŻNE: Pamiętaj, że możesz wznowić proces szyfrowania każdego nie systemowej partycji/wolumenu wybierając 'Wolumeny' &gt; 'Wznów Przerwany Proces' z menu okna VeraCrypt.</entry>
<entry lang="pl" key="NONSYS_INPLACE_ENC_NOTIFICATION_REMOVAL_NOTE">WAŻNE: Pamiętaj, że możesz wznowić proces szyfrowania każdej nie systemowej partycji/wolumenu wybierając 'Wolumeny' &gt; 'Wznów Przerwany Proces' z menu okna VeraCrypt.</entry>
<entry lang="pl" key="SYSTEM_ENCRYPTION_SCHEDULED_BUT_PBA_FAILED">Zaplanowano proces szyfrowania lub deszyfrowania partycji lub dysku systemowego. Wstępne uwierzytelnianie zakończyło się jednak niepowodzeniem (lub zostało pominięte).\n\nJeśli partycja lub dysk systemowy jest deszyfrowany w środowisku z wstępnym uwierzytelnianiem, należy zakończyć ten proces, wybierając w menu głównym programu VeraCrypt opcję 'System' &gt; 'Trwale odszyfruj partycję lub dysk systemowy'.</entry>
<entry lang="pl" key="CONFIRM_EXIT">UWAGA: Jeśli VeraCrypt zostanie teraz zakończony, następujące funkcje zostaną zablokowane:\n\n1) Klawisze skrótu\n2) Automatyczne odłączanie (np. podczas wylogowania, niezapowiedzialnego odłączenia nośnika, timeoutu itp.)\n3) Automatyczne podłączanie ulubionych wolumenów\n4) Powiadomienia (np. podczas zapobiegania uszkodzenia ukrytego wolumenu)\n\nZauważ: Jeśli nie chcesz, by VeraCrypt pracował w tle, zablokuj zadanie VeraCrypt w tle w Preferencjach (i, o ile konieczne, zablokować automatyczny start VeraCrypt w Preferencjach).\n\nCzy na pewno wyjść z VeraCrypt?</entry>
<entry lang="pl" key="CONFIRM_EXIT">UWAGA: Jeśli VeraCrypt zostanie teraz zakończony, następujące funkcje zostaną zablokowane:\n\n1) Klawisze skrótu\n2) Automatyczne odłączanie (np. podczas wylogowania, nieoczekiwanego odłączenia nośnika, timeoutu itp.)\n3) Automatyczne podłączanie ulubionych wolumenów\n4) Powiadomienia (np. podczas zapobiegania uszkodzenia ukrytego wolumenu)\n\nZauważ: Jeśli nie chcesz, by VeraCrypt pracował w tle, zablokuj zadanie VeraCrypt w tle w Preferencjach (i, o ile konieczne, zablokuj automatyczny start VeraCrypt w Preferencjach).\n\nCzy na pewno wyjść z VeraCrypt?</entry>
<entry lang="pl" key="CONFIRM_EXIT_UNIVERSAL">Wyjść?</entry>
<entry lang="pl" key="CHOOSE_ENCRYPT_OR_DECRYPT">Program VeraCrypt nie ma wystarczających informacji, aby zdecydować, czy należy szyfrować czy deszyfrować.</entry>
<entry lang="pl" key="CHOOSE_ENCRYPT_OR_DECRYPT_FINALIZE_DECRYPT_NOTE">Program VeraCrypt nie ma wystarczających informacji, aby zdecydować, czy szyfrować, czy deszyfrować.\n\nUwaga: Jeśli partycja/dysk systemowy została odszyfrowana w środowisku z wstępnym uwierzytelnieniem, może być konieczne dokończenie procesu przez kliknięcie przycisku Odszyfruj.</entry>
<entry lang="pl" key="NONSYS_INPLACE_ENC_REVERSE_INFO">Uwaga: Gdy szyfrujesz bezsystemową partycję lub wolumen "w locie", a błąd trwale uniemożliwia skończenie procesu, nie będziesz mógł podłączyć wolumenu (i uzyskać dostępu do zgromadzonych na nim danych), ąz do czasu pełnego ODSZYFROWANIA wolumenu (tj. odwrócenia procesu).\n\nJeżeli musisz to zrobić, podążaj tymi krokamni:\n1) Wyłącz ten kreator.\n2) W głównym oknie VeraCrypt, wybierz 'Wolumeny' &gt; 'Kontynuuj przerwany proces'.\n3) Wybierz 'Odszyfruj'.</entry>
<entry lang="pl" key="NONSYS_INPLACE_ENC_REVERSE_INFO">Uwaga: Gdy szyfrujesz bezsystemową partycję lub wolumen "w locie", a błąd trwale uniemożliwia skończenie procesu, nie będziesz mógł podłączyć wolumenu (i uzyskać dostępu do zgromadzonych na nim danych), do czasu pełnego ODSZYFROWANIA wolumenu (tj. odwrócenia procesu).\n\nJeżeli musisz to zrobić, podążaj tymi krokami:\n1) Wyłącz ten kreator.\n2) W głównym oknie VeraCrypt, wybierz 'Wolumeny' &gt; 'Kontynuuj przerwany proces'.\n3) Wybierz 'Odszyfruj'.</entry>
<entry lang="pl" key="NONSYS_INPLACE_ENC_DEFER_CONFIRM">Czy chcesz przerwać i odłożyć proces szyfrowania partycji/wolumenu?\n\nUwaga: Pamiętaj, że wolumen nie może być podłączony do czasu całkowitego zaszyfrowania. Możesz wznowić proces szyfrowania i będzie on kontynuowany od miejsca, gdzie został zatrzymany. Możesz to zrobić, np. wybierając 'Wolumeny' &gt; 'Kontynuuj przerwany proces' z menu głównego okna VeraCrypt.</entry>
<entry lang="pl" key="SYSTEM_ENCRYPTION_DEFER_CONFIRM">Czy chcesz przerwać i odłożyć proces szyfrowania partycji/dysku systemowego?\n\nUwaga: Proces ten będzie można później wznowić od miejsca, w którym został zatrzymany. W tym celu należy wybrać w głównym oknie programu VeraCrypt opcję 'System' &gt; 'Wznów przerwany proces'. Aby ostatecznie przerwać lub odwrócić proces szyfrowania, wybierz opcję 'System' &gt; 'Trwale odszyfruj partycję lub dysk systemowy'.</entry>
<entry lang="pl" key="SYSTEM_DECRYPTION_DEFER_CONFIRM">Czy chcesz wstrzymać i odłożyć proces deszyfrowania partycji/dysku systemowego?\n\nUwaga: Proces ten będzie można później wznowić od miejsca, w którym został zatrzymany. W tym celu należy wybrać w głównym oknie programu VeraCrypt opcję 'System' &gt; 'Wznów przerwany proces'. Aby odwrócić proces deszyfrowania (i rozpocząć szyfrowanie), wybierz opcję 'System' &gt; 'Szyfruj partycję lub dysk systemowy'.</entry>
@@ -1054,7 +1054,7 @@
<entry lang="pl" key="FAILED_TO_START_WIPING">BŁĄD: Błąd uruchomienia procesu czyszczenia/wymazywania.</entry>
<entry lang="pl" key="INCONSISTENCY_RESOLVED">Wykryto i usunięto niespójność.\n\n\n(Jeśli będziesz zgłaszać związany z tym błąd, umieść w raporcie błędu następujące informacje techniczne: %hs)</entry>
<entry lang="pl" key="UNEXPECTED_STATE">BŁĄD: Stan nieoznaczony.\n\n\n(Jeżeli będziesz wykonywał raport z błędem, proszę dołącz te techniczne informacje: %hs)</entry>
<entry lang="pl" key="NO_SYS_ENC_PROCESS_TO_RESUME">Nie ma przerwanego procesu szyfrowania lub deszyfrowania partycji systemowej lub napędu do wznowienia.\n\nZawuaż: Jeżeli chcesz wznowić przerwany proces szyfrowania lub deszyfrowania partycji lub wolumenu bezsystemowego, wybierz 'Wolumeny' &gt; 'Kontynuuj przerwany proces'.</entry>
<entry lang="pl" key="NO_SYS_ENC_PROCESS_TO_RESUME">Nie ma przerwanego procesu szyfrowania lub deszyfrowania partycji systemowej lub napędu do wznowienia.\n\nZauważ: Jeżeli chcesz wznowić przerwany proces szyfrowania lub deszyfrowania partycji lub wolumenu bezsystemowego, wybierz 'Wolumeny' &gt; 'Kontynuuj przerwany proces'.</entry>
<entry lang="pl" key="HIDVOL_PROT_BKG_TASK_WARNING">OSTRZEŻENIE: Zadanie VeraCrypt w tle jest wyłączone. Po zakończeniu pracy programu VeraCrypt nie będą generowane ostrzeżenia o podjęciu działań zabezpieczających przed uszkodzeniem wolumenów ukrytych.\n\nZadanie uruchomione w tle można zamknąć w dowolnym momencie, klikając prawym przyciskiem myszy ikonę VeraCrypt w zasobniku i wybierając opcję 'Wyjście'.\n\nUruchomić zadanie VeraCrypt w tle?</entry>
<entry lang="pl" key="LANG_PACK_VERSION">Wersja pakietu językowego: %s</entry>
<entry lang="pl" key="CHECKING_FS">Sprawdzanie systemu plików w wolumenie VeraCrypt podłączonym jako %s...</entry>
@@ -1082,23 +1082,23 @@
<entry lang="pl" key="BOOT_LOADER_FINGERPRINT_CHECK_FAILED">OSTRZEŻENIE: Nieudana weryfikacja odcisku palca programu rozruchowego!\nTwój dysk mógł zostać zmodyfikowany przez atakującego (atak "Zła pokojówka").\n\nTo ostrzeżenie również może zostać wywołane, jeżeli przywróciłeś program rozruchowy VeraCrypt przy użyciu płyty ratunkowej, która została wygenerowana przez inną wersję VeraCrypt.\n\nZaleca się natychmiastową zmianę hasła, które ponadto przywróci poprawny program rozruchowy VeraCrypt. Zalecane jest ponowne zainstalowanie VeraCrypt oraz podjęcie środków w celu uniknięcia dostępu do tej maszyny przez niezaufane jednostki.</entry>
<entry lang="pl" key="BOOT_LOADER_VERSION_INCORRECT_PREFERENCES">Wymagana wersja programu startowego VeraCrypt obecnie nie jest zainstalowana. To może uniemożliwić obsługę dodatkowych opcji w sytuacji odtworzenia.</entry>
<entry lang="pl" key="CUSTOM_BOOT_LOADER_MESSAGE_HELP">Uwaga: W niektórych wypadkach, możesz nie życzyć sobie, by osoby postronne wiedziały, że startujesz komputer przy użyciu VeraCrypt. Aby to zrobić, musisz dokonać dostosowania programu startowego VeraCrypt. Jeżeli włączysz pierwszą opcję, program startowy nie będzie się wyświetlał żadnego tekstu (nawet jeśli wprowadzisz błędne hasło). Komputer będzie wyglądał jakby "zawiesił" się na czas wprowadzenia hasła. Dodatkowo, możesz wprowadzić własną informację do wyświetlenia, by zwieść napastnika. Np. niepoprawne informacje o błędzie takie jak "Missing operating system" (która jest zwykle wyświetlana, gdy starter nie znajdzie się systemu operacyjnego). Należy jednak zauważyć, że jeżeli przeciwnik będzie miał możliwość analizy zawartości dysku twardego, wciąż będzie mógł stwierdzić obecność programu startowego VeraCrypt.</entry>
<entry lang="pl" key="CUSTOM_BOOT_LOADER_MESSAGE_PROMPT">UWAGA: Pamiętaj że włączyłeś tą opcję, program startowy VeraCrypt nie będzie wyświetlał żadnego tekstu (nawet jeśli wprowadzisz złe hasło). Komputer będzie wyglądał "jak zawieszony", nawet gdy będziesz wprowadzał hasło.\n\nCzy jesteś pewien, że chcesz włączyć tą opcję?</entry>
<entry lang="pl" key="CUSTOM_BOOT_LOADER_MESSAGE_PROMPT">UWAGA: Pamiętaj że włączyłeś tę opcję, program startowy VeraCrypt nie będzie wyświetlał żadnego tekstu (nawet jeśli wprowadzisz złe hasło). Komputer będzie wyglądał "jak zawieszony", nawet gdy będziesz wprowadzał hasło.\n\nCzy jesteś pewien, że chcesz włączyć tę opcję?</entry>
<entry lang="pl" key="SYS_PARTITION_OR_DRIVE_APPEARS_FULLY_ENCRYPTED">Partycja/dysk systemowy jest całkowicie zaszyfrowana.</entry>
<entry lang="pl" key="SYSENC_UNSUPPORTED_FOR_DYNAMIC_DISK">Program VeraCrypt nie obsługuje szyfrowania dysku systemowego, który został przekształcony w dysk dynamiczny.</entry>
<entry lang="pl" key="WDE_UNSUPPORTED_FOR_EXTENDED_PARTITIONS">Dysk systemowy zawiera rozszerzone (logiczne) partycje.\n\nMożesz zaszyfrować cały dysk systemowy zawierający rozszerzone (logiczne) partycje tylko pod Windows Vista lub późniejsze wersje Windows. Na Windows XP możesz zaszyfrować cały dysk systemowy pod warunkiem że zawiera on tylko partycje podstawowe.\n\nUwaga: Możesz wciąż zaszyfrować partycję systemową zamiast całego dysku systemowego (a ponadto możesz utworzyć możesz utworzyć partycyjne wolumeny VeraCrypt na wszystkich partycjach bezsystemowych dysku).</entry>
<entry lang="pl" key="WDE_EXTENDED_PARTITIONS_WARNING">OSTRZEŻENIE: Ponieważ pracujesz na Windows XP/2003, po uruchomieniu szyfrowania dysku NIE wolno ci utworzyć rozszerzonych (logicznych) partycji na nim (możesz tworzyć tylko partycje podstawowe). Dowolna rozszerzona (logiczna) partycja na dysku stanie się niedostępna po rozpoczęciu szyfrowania (dysk nie zawiera teraz takich partycji).\n\nUwaga: Jeśli to ograniczenie jest nie do przyjęcia, możesz się wycofać i wybrać szyfrowanie tylko partycji systemowej zamiast całego dysku (ponadto możesz utworzyć partycyjne wolumeny VeraCrypt na wszystkich bezsystemowych partycjach dysku).\n\nZ drugiej strony, jeśli to ograniczenie jest nie do przyjęcia, możesz rozważyć aktualizację do Windows Vista lub najnowszej wersji Windows (Możesz szyfrować cały dysk zawierający rozszerzone/logiczne partycje tylko pod Windows Vista lub późniejszymi).</entry>
<entry lang="pl" key="SYSDRIVE_NON_STANDARD_PARTITIONS">Twój dysk systemowy zawiera niestandardową partycję.\n\nJeśli używasz laptopa, napęd systemowy zawiera specjalną partycję przywracania. Gdy cały napęd systemowy zostanie zaszyfrowany (włączając partycję przywracania), system może stać się nierozruchowy, jeśli komputer używa niewłaściwie zaprojektowanego BIOS-u. Będzie równiez niemożliwe użycie jakiejkolwiek partycji przywracania do czasu aż aystem zostanie odszyfrowany. Zaleczmy w takim przypadku zaszyfrować tylko partycję systemową.</entry>
<entry lang="pl" key="WDE_UNSUPPORTED_FOR_EXTENDED_PARTITIONS">Dysk systemowy zawiera rozszerzone (logiczne) partycje.\n\nMożesz zaszyfrować cały dysk systemowy zawierający rozszerzone (logiczne) partycje tylko pod Windows Vista lub późniejsze wersje Windows. Na Windows XP możesz zaszyfrować cały dysk systemowy pod warunkiem że zawiera on tylko partycje podstawowe.\n\nUwaga: Możesz wciąż zaszyfrować partycję systemową zamiast całego dysku systemowego (a ponadto możesz utworzyć partycyjne wolumeny VeraCrypt na wszystkich partycjach bezsystemowych dysku).</entry>
<entry lang="pl" key="WDE_EXTENDED_PARTITIONS_WARNING">OSTRZEŻENIE: Ponieważ pracujesz na Windows XP/2003, po uruchomieniu szyfrowania dysku NIE wolno ci utworzyć rozszerzonych (logicznych) partycji na nim (możesz tworzyć tylko partycje podstawowe). Dowolna rozszerzona (logiczna) partycja na dysku stanie się niedostępna po rozpoczęciu szyfrowania (dysk nie zawiera teraz takich partycji).\n\nUwaga: Jeśli to ograniczenie jest nie do przyjęcia, możesz się wycofać i wybrać szyfrowanie tylko partycji systemowej zamiast całego dysku (ponadto możesz utworzyć partycyjne wolumeny VeraCrypt na wszystkich bezsystemowych partycjach dysku).\n\nZ drugiej strony, jeśli to ograniczenie jest nie do przyjęcia, możesz rozważyć aktualizację do Windows Vista lub najnowszej wersji Windows (Możesz szyfrować cały dysk zawierający rozszerzone/logiczne partycje tylko pod Windows Vista lub późniejszymi).</entry>
<entry lang="pl" key="SYSDRIVE_NON_STANDARD_PARTITIONS">Twój dysk systemowy zawiera niestandardową partycję.\n\nJeśli używasz laptopa, napęd systemowy zawiera specjalną partycję przywracania. Gdy cały napęd systemowy zostanie zaszyfrowany (włączając partycję przywracania), system może stać się nierozruchowy, jeśli komputer używa niewłaściwie zaprojektowanego BIOS-u. Będzie również niemożliwe użycie jakiejkolwiek partycji przywracania do czasu aż system zostanie odszyfrowany. Zalecamy w takim przypadku zaszyfrować tylko partycję systemową.</entry>
<entry lang="pl" key="ASK_ENCRYPT_PARTITION_INSTEAD_OF_DRIVE">Czy chcesz zaszyfrować partycję systemową zamiast całego dysku?\n\nMożna utworzyć wolumen VeraCrypt w partycji w każdej nie systemowej partycji tego dysku (oprócz zaszyfrowania partycji systemowej).</entry>
<entry lang="pl" key="WHOLE_SYC_DEVICE_RECOM">Jeśli dysk systemowy zawiera tylko jedną partycję zajmującą cały dysk, bardziej bezpieczne jest zaszyfrowanie całego dysku, włączając w to wolne miejsce, które zwykle otacza taką partycję.\n\nCzy chcesz zaszyfrować cały dysk?</entry>
<entry lang="pl" key="TEMP_NOT_ON_SYS_PARTITION">Twój system jest ustawiony, tak aby przechowywać pliki tymczasowe na nie systemowej partycji.\n\nPliki tymczasowe mogą być przechowywane tylko na partycji systemowej.</entry>
<entry lang="pl" key="USER_PROFILE_NOT_ON_SYS_PARTITION">Twój pliki profilu nie są przechowywane na partycji systemowej.\n\nPliki profilu użytkownika mogą być przechowywane tylko na partycji systemowej.</entry>
<entry lang="pl" key="PAGING_FILE_NOT_ON_SYS_PARTITION">Jest/są plik/pliki stronicowania na nie systemowej partycji.\n\nPliki stronicowania mogą być przechowywane tylko na partycji systemowej.</entry>
<entry lang="pl" key="RESTRICT_PAGING_FILES_TO_SYS_PARTITION">Czy chcesz teraz ustawić Windows, aby tworzył pliki stronicowania tylko na partycji Windows?\n\nPamiętaj, że jeżeli naciśniesz 'Tak', komputer będzie zrestartowany. Później uruchom VeraCrypt i spróbuj ponownie stworzyć ukryty OS.</entry>
<entry lang="pl" key="LEAKS_OUTSIDE_SYSPART_UNIVERSAL_EXPLANATION"> Inaczej, przeciwnik może wykryć istnienie ukrytego systemu operacyjnego.\n\nUwaga: Jeżeli przeciwnik będzie analizował zawartość plików (umieszczonych na nie systemowej partycji, może odkryć, że użyłeś kreatora w trybie tworzenia ukrytego systemu (co może świadczyć, że na dysku znajduje się ukryty system operacyjny). Ważne jest zatem, aby wszystkie pliki umieszczone na partycji systemowej zostały bezpiecznie skasowane przez VeraCrypt podczas procesu tworzenia ukrytego systemu operacyjnego.</entry>
<entry lang="pl" key="LEAKS_OUTSIDE_SYSPART_UNIVERSAL_EXPLANATION"> Inaczej, przeciwnik może wykryć istnienie ukrytego systemu operacyjnego.\n\nUwaga: Jeżeli przeciwnik będzie analizował zawartość plików (umieszczonych na nie systemowej partycji, może odkryć, że użyłeś kreatora w trybie tworzenia ukrytego systemu (co może świadczyć, że na dysku znajduje się ukryty system operacyjny). Ważne jest zatem, aby wszystkie pliki umieszczone na partycji systemowej zostały bezpiecznie skasowane przez VeraCrypt podczas procesu tworzenia ukrytego systemu operacyjnego.</entry>
<entry lang="pl" key="DECOY_OS_REINSTALL_WARNING">UWAGA: Podczas procesu tworzenia ukrytego systemu operacyjnego, jest wymagane pełne przeinstalowanie obecnie uruchomionego systemu operacyjnego (aby bezpiecznie utworzyć system zwodzący).\n\nUwaga: Obecnie uruchomiony system operacyjny i cała zawartość partycji systemowej będzie skopiowana do ukrytego wolumenu (aby stworzyć ukryty system operacyjny).\n\n\nCzy jesteś pewien, że będziesz mógł zainstalować Windows używając mediów instalatora Windows (lub partycji serwisowej)?</entry>
<entry lang="pl" key="DECOY_OS_REQUIREMENTS">Z powodu bezpieczeństwa, jeżeli obecnie uruchomiony system wymaga aktywacji, musi ona być wykonana przed przejściem dalej. Pamiętaj, że ukryty system operacyjny zostanie stworzony przez skopiowanie zawartości systemowej partycji do ukrytego wolumenu (więc, jeżeli system nie jest zaktywowany, ukryty system operacyjny też nie będzie zaktywowany). Więcej informacji, zobacz w "Security Requirements and Precautions Pertaining to Hidden Volumes" w dokumentacji do VeraCrypt.\n\nWażne: Przed wykonaniem następnego kroku, proszę się upewnić, że przeczytałeś sekcje "Security Requirements and Precautions Pertaining to Hidden Volumes" w dokumentacji VeraCrypt.\n\n\nCzy obecnie uruchomiony system operacyjny spełnia ten warunek?</entry>
<entry lang="pl" key="CONFIRM_HIDDEN_OS_EXTRA_BOOT_PARTITION">Twój system używa osobnej boot partycji. VeraCrypt nie wspiera hibernacji w ukrytym systemie operacyjnym, który używa osobna boot partycja (pierwszy system może być hibernowany bez problemu).\n\nProszę pamiętać, że boot partycja jest współdzielona przez oba systemy - pierwszy i ukryty. Dlatego, aby zapobiegać wyciekom pamięci i problemom z przywróceniem z hibernacji, VeraCrypt zabezpiecza współdzieloną boot partycję przed zapisem z ukrytego systemu operacyjnego.\n\n\nCzy chcesz kontynuować? Jeżeli wybierzesz 'Nie', instrukcje do usunięcia extra boot partition zostaną wyświetlone.</entry>
<entry lang="pl" key="EXTRA_BOOT_PARTITION_REMOVAL_INSTRUCTIONS">\nOsobna boot partycja może zostać usunięta przed instalacją Windows. Aby to zrobić wykonaj następujące kroki:\n\n1) Uruchom dysk instalacyjny Windows.\n\n2) Na ekranie instalatora Windows, wciśnij 'Instaluj teraz' &gt; 'Użytkownika (zaawansowane)'.\n\n3) Wciśnij 'Opcje Dysku'.\n\n4) Wybierz podstawową partycję systemową i usuń ją wciskając 'Delete' i 'OK'.\n\n5) Wybierz partycję 'System Reserved', wciśnij 'Rozszerz' i zwiększ jej rozmiar, tak by można było zainstalować na niej.\n\n6) Wciśnij 'Zastosuj' i 'OK'.\n\n7) Zainstaluj Windows na partycji 'System Reserved'.\n\n\nNapastnik może cię spytać, dlaczego usunąłeś the osobną boot partycję, możesz odpowiedzieć, że chciałeś zapobiec możliwym wyciekom danych przez niezaszyfrowaną partycję uruchomieniową.\n\nUwaga: Możesz wydrukować ten tekst wciskając przycisk 'Drukuj' poniżej. Jeśli zachowasz ten tekst lub go wydrukujesz (gorąco sugerowane, chyba że drukarka zapisuje kopie drukowanych dokumentów na wewnętrznym dysku twardym), powinieneś zniszczyć wszystkie jego kopie po usunięciu osobnej boot partycji (w przeciwnym razie, jeśli taka kopia zostanie znaleziona, może wskazywać że zainstalowano ukryty system operacyjny na komputerze).</entry>
<entry lang="pl" key="CONFIRM_HIDDEN_OS_EXTRA_BOOT_PARTITION">Twój system używa osobnej boot partycji. VeraCrypt nie wspiera hibernacji w ukrytym systemie operacyjnym, który używa osobnej boot partycji (pierwszy system może być hibernowany bez problemu).\n\nProszę pamiętać, że boot partycja jest współdzielona przez oba systemy - pierwszy i ukryty. Dlatego, aby zapobiegać wyciekom danych i problemom podczas przywracenia z hibernacji, VeraCrypt zabezpiecza współdzieloną boot partycję przed zapisem z ukrytego systemu operacyjnego oraz uniemożliwia jego hibernację.\n\n\nCzy chcesz kontynuować? Jeżeli wybierzesz 'Nie', instrukcje do usunięcia extra boot partition zostaną wyświetlone.</entry>
<entry lang="pl" key="EXTRA_BOOT_PARTITION_REMOVAL_INSTRUCTIONS">\nOsobna boot partycja może zostać usunięta przed instalacją Windows. Aby to zrobić wykonaj następujące kroki:\n\n1) Uruchom dysk instalacyjny Windows.\n\n2) Na ekranie instalatora Windows, wciśnij 'Instaluj teraz' &gt; 'Użytkownika (zaawansowane)'.\n\n3) Wciśnij 'Opcje Dysku'.\n\n4) Wybierz podstawową partycję systemową i usuń ją wciskając 'Delete' i 'OK'.\n\n5) Wybierz partycję 'System Reserved', wciśnij 'Rozszerz' i zwiększ jej rozmiar, tak by można było zainstalować na niej.\n\n6) Wciśnij 'Zastosuj' i 'OK'.\n\n7) Zainstaluj Windows na partycji 'System Reserved'.\n\n\nNapastnik może cię spytać, dlaczego usunąłeś osobną boot partycję, możesz odpowiedzieć, że chciałeś zapobiec możliwym wyciekom danych przez niezaszyfrowaną partycję uruchomieniową.\n\nUwaga: Możesz wydrukować ten tekst wciskając przycisk 'Drukuj' poniżej. Jeśli zachowasz ten tekst lub go wydrukujesz (gorąco sugerowane, chyba że drukarka zapisuje kopie drukowanych dokumentów na wewnętrznym dysku twardym), powinieneś zniszczyć wszystkie jego kopie po usunięciu osobnej boot partycji (w przeciwnym razie, jeśli taka kopia zostanie znaleziona, może wskazywać że zainstalowano ukryty system operacyjny na komputerze).</entry>
<entry lang="pl" key="GAP_BETWEEN_SYS_AND_HIDDEN_OS_PARTITION">UWAGA: Istnieje niezalokowane miejsce pomiędzy partycją systemową i pierwszą partycją za partycją systemową. Po stworzeniu ukrytego systemu operacyjnego nie możesz tworzyć nowych partycji w niezaalokowanym miejscu. Inaczej uruchomienie ukrytego systemu operacyjnego może być niemożliwe (dopóki nie skasujesz nowo stworzonej partycji).</entry>
<entry lang="pl" key="ALGO_NOT_SUPPORTED_FOR_SYS_ENCRYPTION">Ten algorytm nie jest obecnie obsługiwany do szyfrowania systemu.</entry>
<entry lang="pl" key="ALGO_NOT_SUPPORTED_FOR_TRUECRYPT_MODE">Ten algorytm nie jest obsługiwany w trybie TrueCrypt.</entry>
@@ -1130,7 +1130,7 @@
<entry lang="pl" key="CONFIRM_WIPE_ABORT">Czy chcesz przerwać proces wymazywania?</entry>
<entry lang="pl" key="CONFIRM_WIPE_START">UWAGA: Cała zawartość zaznaczonej partycji/urządzenia zostanie skasowana i utracona.</entry>
<entry lang="pl" key="CONFIRM_WIPE_START_DECOY_SYS_PARTITION">Cała zawartość partycji, gdzie jest oryginalny system operacyjny zostanie skasowana.\n\nUwaga: Cała zawartość partycji, która ma być skasowana została skopiowana do ukrytej partycji systemowej.</entry>
<entry lang="pl" key="WIPE_MODE_WARN">OSTRZEŻENIE: Pamiętaj, że jeżeli wybrałeś tryb 3-przebiegowego czyszczenia, czas niezbędny do zaszyfrowania partycji/dysku wydłuży się 4-ro krotnie. Podobnie, jeżeli wybierzesz tryb 35-przebiegowego czyszczenia, czas wydłuży 36-cio krotnie (może potrwać kilka tygodni).\n\nJednakże, proszę pamiętać, że czyszczenie NIE musi być wykonane po pełnym zaszyfrowaniu partycji/dysku. Jeżeli partycja/dysk jest w pełni zaszyfrowana, niezaszyfrowane dane są zapisane jako zaszyfrowane. Wiele danych zapisanych jest najpierw do pamięci, szyfrowanych "w locie" i zapisywanych zaszyfrowanych na dysku (tak aby nie obniżyć wydajności).\n\nCzy jesteś pewien, że chcesz użyć trybu czyszczenia/wymazywania?</entry>
<entry lang="pl" key="WIPE_MODE_WARN">OSTRZEŻENIE: Pamiętaj, że jeżeli wybrałeś tryb 3-przebiegowego czyszczenia, czas niezbędny do zaszyfrowania partycji/dysku wydłuży się 4-ro krotnie. Podobnie, jeżeli wybierzesz tryb 35-przebiegowego czyszczenia, czas wydłuży 36-cio krotnie (może potrwać kilka tygodni).\n\nJednakże, proszę pamiętać, że czyszczenie NIE musi być wykonane po pełnym zaszyfrowaniu partycji/dysku. Jeżeli partycja/dysk jest w pełni zaszyfrowana, niezaszyfrowane dane są zapisane jako zaszyfrowane. Wiele danych zapisanych jest najpierw do pamięci, szyfrowanych "w locie" i zapisywanych zaszyfrowanych na dysku (tak aby nie obniżyć wydajności).\n\nCzy jesteś pewien, że chcesz użyć trybu czyszczenia/wymazywania?</entry>
<entry lang="pl" key="WIPE_MODE_NONE">Brak (najszybszy)</entry>
<entry lang="pl" key="WIPE_MODE_1_RAND">1-przebieg (dane losowe)</entry>
<entry lang="pl" key="WIPE_MODE_3_DOD_5220">3-przebiegowy (US DoD 5220.22-M)</entry>
@@ -1157,22 +1157,22 @@
<entry lang="pl" key="SYSENC_PRE_DRIVE_ANALYSIS_TITLE">Szyfrowanie obszaru HPA (Host Protected Area)</entry>
<entry lang="pl" key="SYSENC_PRE_DRIVE_ANALYSIS_HELP">Na końcu wielu dysków są ukryte miejsca, gdzie nie ma dostępu system operacyjny (są to zwykle Host Protected Areas). Jednakże niektóre programy potrafią czytać i pisać dane z/do tych sektorów.\n\nUWAGA: Niektórzy producenci sprzętu używają tych miejsc do przechowywania narzędzi np. do RAID, odtwarzania systemu, konfiguracji systemu, diagnostyki lub innych narzędzi. Jeżeli te narzędzia lub dane muszą być dostępne przed bootowaniem, obszar ten NIE powinien być zaszyfrowany (wybierz 'Nie' powyżej).\n\nCzy chcesz, aby VeraCrypt wykrył i zaszyfrował te ukryte obszary na końcu dysku?</entry>
<entry lang="pl" key="SYSENC_TYPE_PAGE_TITLE">Typ systemu szyfrowania</entry>
<entry lang="pl" key="SYSENC_NORMAL_TYPE_HELP">Wybierz tą opcję jeżeli chcesz zaszyfrować jedynie partycję systemową lub cały dysk systemowy.</entry>
<entry lang="pl" key="SYSENC_NORMAL_TYPE_HELP">Wybierz tę opcję, jeżeli chcesz zaszyfrować jedynie partycję systemową lub cały dysk systemowy.</entry>
<entry lang="pl" key="SYSENC_HIDDEN_TYPE_HELP">Może się zdarzyć, że będziesz zmuszony przez kogoś do odszyfrowania systemu operacyjnego. Jest wiele sytuacji, gdy nie możesz tego odmówić (na przykład w wyniku wymuszenia). Jeżeli wybierzesz tę opcję, utworzysz ukryty system operacyjny, którego istnienie będzie niemożliwe do odkrycia (o ile zastosujesz się do pewnych wytycznych). Stąd nie będziesz zmuszony odszyfrowywać ani zdradzać hasła do ukrytego systemu operacyjnego. By uzyskać dokładniejsze wyjaśnienia, wybierz link poniżej.</entry>
<entry lang="pl" key="HIDDEN_OS_PREINFO">Może się zdarzyć, że zostaniesz zmuszony przez kogoś do odszyfrowania systemu operacyjnego. Jest wiele sytuacji, gdy nie możesz tego odmówić (na przykład w wyniku wymuszenia).\n\nUżywając tego kreatora możesz utworzyć ukryty system operacyjny, którego istnienie powinno być niemożliwe do udowodnienia (o ile zastosujesz się do pewnych wytycznych). Stąd nie będziesz zmuszony odszyfrowywać ani zdradzać hasła do ukrytego systemu operacyjnego.</entry>
<entry lang="pl" key="SYSENC_HIDDEN_OS_REQ_CHECK_PAGE_TITLE">Ukryty system operacyjny</entry>
<entry lang="pl" key="SYSENC_HIDDEN_OS_REQ_CHECK_PAGE_HELP">Wykonując kolejne kroki, stworzysz dwa wolumeny VeraCrypt (zewnętrzny i ukryty), które będą za pierwszą partycją systemową. Ukryty wolumen będzie zawierał ukryty system operacyjny (OS). VeraCrypt będzie tworzył ukryty OS poprzez skopiowanie partycji systemowej (gdzie obecnie jest zainstalowany i uruchomiony OS) do ukrytego wolumenu. Do zewnętrznego wolumenu skopiuj jakieś pliki, które NIE będą ukryte. One będą dostępne dla każdego po to, aby utajnić hasło ukrytej partycji OS. Możesz ujawnić hasło do zewnętrznego wolumenu, który zawiera system operacyjny OS.\n\nNa koniec, na partycji, gdzie aktualnie masz uruchomiony OS, możesz zainstalować nowy OS, zwany dalej zwodzącym OS, i zaszyfrować go. On nie może zawierać wrażliwych danych. W sumie, będą trzy hasła. Dwa z nich można ujawnić (do zwodzącego OS i zewnętrznego wolumenu). Jeżeli użyjesz trzeciego hasła, zostanie uruchomiony ukryty system operacyjny.</entry>
<entry lang="pl" key="SYSENC_DRIVE_ANALYSIS_TITLE">Wykrywanie ukrytych sektorów</entry>
<entry lang="pl" key="SYSENC_DRIVE_ANALYSIS_INFO">Proszę poczekać dopóki VeraCrypt wykrywa możliwe ukryte sektory na końcu dysku systemowego. Może to potrwać dłuższą chwile.\n\nUwaga: W bardzo rzadkich przypadkach, na niektórych komputerach, system wykrywania może zawiesić komputer. Jeżeli to się zdarzy, uruchom ponownie komputer, uruchom VeraCrypt, powtórz poprzednie kroki, ale pomiń ten proces wyszukiwania. Informacja: To nie jest błąd VeraCrypt.</entry>
<entry lang="pl" key="SYSENC_DRIVE_ANALYSIS_INFO">Proszę poczekać, aż VeraCrypt wykryje możliwe ukryte sektory na końcu dysku systemowego. Może to potrwać dłuższą chwile.\n\nUwaga: W bardzo rzadkich przypadkach, na niektórych komputerach, system wykrywania może zawiesić komputer. Jeżeli to się zdarzy, uruchom ponownie komputer, uruchom VeraCrypt, powtórz poprzednie kroki, ale pomiń ten proces wyszukiwania. Informacja: To nie jest błąd VeraCrypt.</entry>
<entry lang="pl" key="SYS_ENCRYPTION_SPAN_TITLE">Obszar do zaszyfrowania</entry>
<entry lang="pl" key="SYS_ENCRYPTION_SPAN_WHOLE_SYS_DRIVE_HELP">Wybierz tą opcję jeżeli chcesz zaszyfrować cały dysk, na którym aktualnie jest uruchomiony system Windows. Powierzchnia dysku, zawierająca wszystkie partycje, zostanie zaszyfrowana z wyjątkiem pierwszej ścieżki, gdzie program startowy VeraCrypt jest umieszczony. Każdy kto chce mieć dostęp do systemu zainstalowanego na dysku lub plików umieszczonych na dysku będzie musiał wprowadzić poprawne hasło za każdym razem przed uruchomieniem systemu. Ta opcja nie może być użyta do zaszyfrowania drugiego lub zewnętrznego dysku jeżeli nie jest na nim zainstalowany Windows i nie jest z niego bootowany.</entry>
<entry lang="pl" key="SYS_ENCRYPTION_SPAN_WHOLE_SYS_DRIVE_HELP">Wybierz tę opcję, jeżeli chcesz zaszyfrować cały dysk, na którym aktualnie jest uruchomiony system Windows. Powierzchnia dysku, zawierająca wszystkie partycje, zostanie zaszyfrowana z wyjątkiem pierwszej ścieżki, gdzie program startowy VeraCrypt jest umieszczony. Każdy kto chce mieć dostęp do systemu zainstalowanego na dysku lub plików umieszczonych na dysku będzie musiał wprowadzić poprawne hasło za każdym razem przed uruchomieniem systemu. Ta opcja nie może być użyta do zaszyfrowania drugiego lub zewnętrznego dysku jeżeli nie jest na nim zainstalowany Windows i nie jest z niego bootowany.</entry>
<entry lang="pl" key="COLLECTING_RANDOM_DATA_TITLE">Zbieranie danych losowych</entry>
<entry lang="pl" key="KEYS_GEN_TITLE">Wygenerowano klucze</entry>
<entry lang="pl" key="CD_BURNER_NOT_PRESENT">VeraCrypt nie odnalazł nagrywarki CD/DVD podłączonej do komputera. VeraCrypt wymaga nagrywarki CD/DVD, aby wypalić bootowalną płytę ratunkową VeraCrypt zawierający kopię kluczy szyfrowania, program startowy VeraCrypt, oryginalny program startowy systemu itd.\n\nSugerujemy gorąco wypalenie płyty ratunkowej VeraCrypt.</entry>
<entry lang="pl" key="CD_BURNER_NOT_PRESENT_WILL_STORE_ISO">Nie mam nagrywarki CD/DVD, ale zapiszę obraz ISO płyty ratunkowej na urządzeniu przenośnym (np. pendrive).</entry>
<entry lang="pl" key="CD_BURNER_NOT_PRESENT_WILL_CONNECT_LATER">Podłączę później nagrywarkę CD/DVD do komputera. Zakończ proces.</entry>
<entry lang="pl" key="CD_BURNER_NOT_PRESENT_CONNECTED_NOW">Nagrywarka CD/DVD jest teraz podłączona do komputera. Kontynuuj i zapisz płytę ratunkową.</entry>
<entry lang="pl" key="CD_BURNER_NOT_PRESENT_WILL_STORE_ISO_INFO">Wykonaj następujące czynności:\n\n1) Podłącz teraz urządzenie przenośne, np. pendrive, do komputera.\n\n2) Skopiuj plik obrazu płyty ratunkowej VeraCrypt (%s) na urządzenie przenośne.\n\nW przypadku konieczności użycia w przyszłości, będziesz mógł podłączyć dysk przenośny (zawierający obraz płyty ratunkowej VeraCrypt) do komputera z nagrywarką CD/DVD i utworzyć bootowalną płytę ratunkową VeraCrypt wypalając obraz na płycie CD lub DVD. WAŻNE: Pamiętaj, że płyta ratunkowa VeraCrypt musi zostać zapisana na CD/DVD jako obraz ISO płyty (nie jako plik).</entry>
<entry lang="pl" key="CD_BURNER_NOT_PRESENT_WILL_STORE_ISO_INFO">Wykonaj następujące czynności:\n\n1) Podłącz teraz urządzenie przenośne, np. pendrive, do komputera.\n\n2) Skopiuj plik obrazu płyty ratunkowej VeraCrypt (%s) na urządzenie przenośne.\n\nW przypadku konieczności użycia w przyszłości, będziesz mógł podłączyć dysk przenośny (zawierający obraz płyty ratunkowej VeraCrypt) do komputera z nagrywarką CD/DVD i utworzyć bootowalną płytę ratunkową VeraCrypt wypalając obraz na płycie CD lub DVD. WAŻNE: Pamiętaj, że płyta ratunkowa VeraCrypt musi zostać zapisana na CD/DVD jako obraz ISO płyty (nie jako plik).</entry>
<entry lang="pl" key="RESCUE_DISK_RECORDING_TITLE">Zapisywanie płyty ratunkowej</entry>
<entry lang="pl" key="RESCUE_DISK_CREATED_TITLE">Utworzono płytę ratunkową</entry>
<entry lang="pl" key="SYS_ENCRYPTION_PRETEST_TITLE">Test szyfrowania</entry>
@@ -1181,9 +1181,9 @@
<entry lang="pl" key="REMOVE_RESCUE_DISK_FROM_DRIVE">UWAGA: Podczas następnych kroków nie może być płyty ratunkowej VeraCrypt w czytniku. Inaczej nie będzie możliwe poprawne dokończenie kolejnych kroków.\n\nProszę usunąć ją z czytnika i schować w bezpiecznym miejscu. Później kliknąć OK.</entry>
<entry lang="pl" key="PREBOOT_NOT_LOCALIZED">Ostrzeżenie: Ze względu na techniczne ograniczenia środowiska przed ładowaniem systemu, tekst wyświetlany przez program VeraCrypt w tym środowisku (zanim zostanie uruchomiony system Windows) nie może być przetłumaczony. Interfejs użytkownika programu startowego VeraCrypt jest całkowicie w języku angielskim.\n\nCzy kontynuować?</entry>
<entry lang="pl" key="SYS_ENCRYPTION_PRETEST_INFO">Przed zaszyfrowaniem partycji lub dysku systemowego program VeraCrypt musi zweryfikować, czy wszystko działa poprawnie.\n\nPo kliknięciu przycisku Test wszystkie niezbędne komponenty (komponent odpowiedzialny za uwierzytelnianie przed załadowaniem systemu, program startowy VeraCrypt itp.) zostaną zainstalowane i komputer zostanie ponownie uruchomiony. Następnie zostanie wyświetlone okno programu VeraCrypt, w którym należy podać hasło. Po uruchomieniu systemu Windows zostanie automatycznie wyświetlony wynik tego testu.\n\nZostaną zmodyfikowane następujące urządzenia: Dysk %d\n\n\nAby przerwać instalację i testowanie, kliknij przycisk Anuluj.</entry>
<entry lang="pl" key="SYS_ENCRYPTION_PRETEST_INFO2_PORTION_1">WAŻNA INFORMACJA -- PROSZĘ PRZECZYTAĆ LUB WYDRUKOWAĆ (kliknij 'Drukuj'):\n\nZauważ, że żaden z plików nie zostanie zaszyfrowany zanim zrestartujesz komputer i uruchomisz Windows. Wtedy, jeśli coś zawiedzie, twoje dane NIE zostaną utracone. Jednakże, jeśli coś pójdzie nie tak, możesz napotkać trudności w uruchomieniu Windows. Dlatego przeczytaj (i wydrukuj, jeśli możesz) następujące the following wytyczne odnośnie tego co zrobić jeśli Windows nie będzie mógł się uruchomić po restarcie komputera.\n\n</entry>
<entry lang="pl" key="SYS_ENCRYPTION_PRETEST_INFO2_PORTION_1">WAŻNA INFORMACJA -- PROSZĘ PRZECZYTAĆ LUB WYDRUKOWAĆ (kliknij 'Drukuj'):\n\nZauważ, że żaden z plików nie zostanie zaszyfrowany zanim zrestartujesz komputer i uruchomisz Windows. Wtedy, jeśli coś zawiedzie, twoje dane NIE zostaną utracone. Jednakże, jeśli coś pójdzie nie tak, możesz napotkać trudności w uruchomieniu Windows. Dlatego przeczytaj (i wydrukuj, jeśli możesz) następujące wytyczne odnośnie tego, co zrobić, jeśli Windows nie będzie mógł się uruchomić po restarcie komputera.\n\n</entry>
<entry lang="pl" key="SYS_ENCRYPTION_PRETEST_INFO2_PORTION_2">Co zrobić, jeżeli Windows nie może wystartować ------------------------------------------------\n\nZauważ: Instrukcje są poprawne tylko jeśli nie zacząłeś szyfrowania.\n\n- Jeśli Windows nie startuje po podaniu poprawnego hasła (lub jeśli wielokrotnie wprowadziłeś właściwe hasło, ale VeraCrypt informuje, że hasło jest niepoprawne), nie panikuj. Restart (wyłączenie i włączenie zasilania) komputera, a na ekranie programu startowego VeraCrypt, wciśnij klawisz Esc (a jeśli masz wiele systemów, wybierz, który uruchomić). Wtedy Windows powinien się uruchomić (przy założeniu że nie został zaszyfrowany) a VeraCrypt zapyta automatycznie, czy chcesz odinstalować komponentu autentykującego preinicjacyjnego. Zauważ, że poprzednie kroki NIE powiodą się jeśli partycja/dysk systemowy został zaszyfrowany (nikt nie może uruchomić Windows ani uzyskać dostępu do danych na dysku bez poprawnego hasła nawet jeśli poprawnie wykonano poprzednie kroki).\n\n</entry>
<entry lang="pl" key="SYS_ENCRYPTION_PRETEST_INFO2_PORTION_3">- Jeśli poprzednie kroki nie pomogły lub jeśli ekran programu startowego VeraCrypt nie pojawił się (przed uruchomieniem Windows), włóż płytę ratunkową VeraCrypt do napędu CD/DVD i uruchom ponownie komputer. Jeśli ekran płyty ratunkowej VeraCrypt nie pojawił się (lub jeśli nie widzisz elementu 'Repair Options' na sekcji 'Keyboard Controls' ekranu płyty ratunkowej VeraCrypt), jest możliwe, że BIOS jest skonfigurowany do wykonania startu z dysku twardego przed próbami z płyt CD/DVD. O ile to ten przypadek, restart komputer, wciśnij F2 lub Delete (jak tylko widać ekran uruchamiania BIOS), i poczekać na pojawienie ekranu konfiguracji BIOS. Jeśli nie pojawi się ekran konfiguracji BIOS, zrestartuj (reset) komputer raz jeszcze i wciskaj F2 lub Delete wielokrotnie od samego restartu (resetu) komputera. Gdy pojawi się ekran konfiguracji BIOS, ustaw BIOS tak, by uruchamiał się najpierw z dysku CD/DVD (aby uzyskać informację jak to zrobić, sprawdź dokumentację BIOSu/płyty głównej lub skontaktuj się ze sprzedawcą lub serwisem komputera, aby uzyskać pomoc). Następnie uruchom ponownie komputer. Ekran płyty ratunkowej VeraCrypt powinien się teraz pokazać. Na ekranie płyty ratunkowej VeraCrypt wybierz 'Repair Options' wciskając klawisz F8. Z menu 'Repair Options', wybierz 'Restore original system loader'. Następnie usuń płytę ratunkową z napędu CD/DVD po czym zrestartuj komputer. Windows powinien uruchomić się normalnie (o ile nie został zaszyfrowany).\n\n</entry>
<entry lang="pl" key="SYS_ENCRYPTION_PRETEST_INFO2_PORTION_3">- Jeśli poprzednie kroki nie pomogły lub jeśli ekran programu startowego VeraCrypt nie pojawił się (przed uruchomieniem Windows), włóż płytę ratunkową VeraCrypt do napędu CD/DVD i uruchom ponownie komputer. Jeśli ekran płyty ratunkowej VeraCrypt nie pojawił się (lub jeśli nie widzisz elementu 'Repair Options' na sekcji 'Keyboard Controls' ekranu płyty ratunkowej VeraCrypt), jest możliwe, że BIOS jest skonfigurowany do wykonania startu z dysku twardego przed próbami z płyt CD/DVD. O ile to ten przypadek, restart komputer, wciśnij F2 lub Delete (jak tylko widać ekran uruchamiania BIOS) i poczekaj na pojawienie ekranu konfiguracji BIOS. Jeśli nie pojawi się ekran konfiguracji BIOS, zrestartuj (reset) komputer raz jeszcze i wciskaj F2 lub Delete wielokrotnie od samego restartu (resetu) komputera. Gdy pojawi się ekran konfiguracji BIOS, ustaw BIOS tak, by uruchamiał się najpierw z dysku CD/DVD (aby uzyskać informację jak to zrobić, sprawdź dokumentację BIOSu/płyty głównej lub skontaktuj się ze sprzedawcą lub serwisem komputera, aby uzyskać pomoc). Następnie uruchom ponownie komputer. Ekran płyty ratunkowej VeraCrypt powinien się teraz pokazać. Na ekranie płyty ratunkowej VeraCrypt wybierz 'Repair Options' wciskając klawisz F8. Z menu 'Repair Options', wybierz 'Restore original system loader'. Następnie usuń płytę ratunkową z napędu CD/DVD po czym zrestartuj komputer. Windows powinien uruchomić się normalnie (o ile nie został zaszyfrowany).\n\n</entry>
<entry lang="pl" key="SYS_ENCRYPTION_PRETEST_INFO2_PORTION_4">Zauważ, że poprzednie kroki nie działają jeśli partycja/dysk systemowy jest zaszyfrowany (nikt nie może uruchomić Windows ani uzyskać dostępu do danych zaszyfrowanych na dysku bez poprawnego hasła nawet jeśli poprawnie wykonał poprzednie kroki).\n\n\nZauważ, że nawet jeśli w przypadku utraty płyty ratunkowej VeraCrypt i jej pozyskania przez napastnika, NIE będzie on w stanie odszyfrować systemowej partycji lub dysku bez poprawnego hasła.</entry>
<entry lang="pl" key="SYS_ENCRYPTION_PRETEST_RESULT_TITLE">Test zakończony</entry>
<entry lang="pl" key="SYS_ENCRYPTION_PRETEST_RESULT_INFO">Test wstępny został przeprowadzony poprawnie.\n\nUWAGA: Proszę pamiętać, że jeżeli nastąpi brak zasilania podczas szyfrowania "w locie" lub nastąpi błąd systemu operacyjnego poprzez błąd sprzętowy lub oprogramowanie w czasie szyfrowania "w locie" część danych może ulec uszkodzeniu lub utracie. Dlatego, przed rozpoczęciem szyfrowania, proszę upewnić się, że masz kopię zapasową danych, które chcesz zaszyfrować. Jeżeli nie, proszę zrób teraz kopię plików (możesz kliknąć Odłóż, zrobić kopię plików i później ponownie uruchomić VeraCrypt wybrać 'System' &gt; 'Wznów przerwany proces' w celu kontynuowania szyfrowania).\n\nJeżeli jesteś gotów, kliknij Szyfruj, aby uruchomić szyfrowanie.</entry>
@@ -1201,32 +1201,32 @@
<entry lang="pl" key="RESCUE_DISK_HELP_PORTION_1">\nJEŻELI MOŻLIWE, WYDRUKUJ TEN TEKST (kliknij 'Drukuj').\n\n\nJak i kiedy używać Plyty ratunkowej VeraCrypt (po zaszyfrowaniu) -----------------------------------------------------------------------------------\n\n</entry>
<entry lang="pl" key="RESCUE_DISK_HELP_PORTION_2">I. Jak Zainicjować komputer z płyty ratunkowej VeraCrypt\n\nAby uruchomić komputer z płyty ratunkowej VeraCrypt, włóż ją do napędu CD/DVD i uruchom ponownie komputer. Jeśli ekran płyty ratunkowej VeraCrypt nie pojawia się (lub nie widać elementu 'Repair Options' w sekcji 'Keyboard Controls' na ekranie), prawdopodobnie BIOS został ustawiony tak, by próbować uruchamiać system z dysków twardych przed dyskami CD/DVD. Jeśli tak jest, uruchom ponownie komputer, wciśnij klawisz F2 lub Delete (natychmiast po pojawieniu ekranu uruchomieniowego BIOS) i poczekaj na wyświetlenie ekranu konfiguracji BIOS. Jeśli ekran konfiguracji BIOS nie pojawi się, zrestartuj (zresetuj) komputer raz jeszcze i powtarzaj wciśnięcia klawiszy F2 lub Delete od momentu restartu (resetu) komputera. Gdy pojawi się ekran konfiguracji BIOS, ustaw w BIOS-ie kolejność uruchamiania tak, by napęd CD/DVD był na pierwszym miejscu (Aby dowiedzieć się jak to zrobić, sprawdź w dokumentacji BIOS-u/płyty głównej lub skontaktuj się ze sprzedawcą lub wsparciem technicznym, by uzyskać pomoc). Następnie zrestartuj komputer. Ekran płyty ratunkowej VeraCrypt powinien się teraz pokazać. Uwaga: Na ekranie płyty ratunkowej VeraCrypt wybierz 'Repair Options' wciskając klawisz F8.\n\n\n</entry>
<entry lang="pl" key="RESCUE_DISK_HELP_PORTION_3">II. Kiedy i jak użyć płyty ratunkowej VeraCrypt (po Zaszyfrowaniu)\n\n</entry>
<entry lang="pl" key="RESCUE_DISK_HELP_PORTION_4">1) Jeśli ekran programu startowego VeraCrypt nie pojawia się po uruchomieniu komputera (lub jeśli nie startuje Windows), program startowy VeraCrypt może być uszkodzony. Płyta ratunkowa VeraCrypt pozwala odtworzyć go a przez to odzyskać dostęp do zaszyfrowanego systemu i danych (jednak pamiętaj, że wciąż należy podać poprawne hasło). Na ekranie płyty ratunkowej wybierz 'Repair Options' &gt; 'Restore VeraCrypt Boot Loader'. Następnie wciśnij 'Y', by potwierdzić akcję, usuń płytę ratunkową z napędu CD/DVD i uruchom ponownie komputer.\n\n</entry>
<entry lang="pl" key="RESCUE_DISK_HELP_PORTION_4">1) Jeśli ekran programu startowego VeraCrypt nie pojawia się po uruchomieniu komputera (lub jeśli nie startuje Windows), program startowy VeraCrypt może być uszkodzony. Płyta ratunkowa VeraCrypt pozwala odtworzyć go a przez to odzyskać dostęp do zaszyfrowanego systemu i danych (jednak pamiętaj, że wciąż należy podać poprawne hasło). Na ekranie płyty ratunkowej wybierz 'Repair Options' &gt; 'Restore VeraCrypt Boot Loader'. Następnie wciśnij 'Y', by potwierdzić akcję, usuń płytę ratunkową z napędu CD/DVD i uruchom ponownie komputer.\n\n</entry>
<entry lang="pl" key="RESCUE_DISK_HELP_PORTION_5">2) Jeśli wielokrotnie wpisujesz poprawne hasło, ale VeraCrypt informuje, że hasło jest niepoprawne, prawdopodobnie został uszkodzony klucz główny lub inne dane krytyczne. Płyta ratunkowa VeraCrypt pozwala odtworzyć je i odzyskać dostęp do zaszyfrowanego systemu i danych (jednak pamiętaj, że wciąż należy podać poprawne hasło). Na ekranie płyty ratunkowej wybierz 'Repair Options' &gt; 'Restore key data'. Następnie wpisz hasło i wciśnij 'Y', by potwierdzić akcję, usuń płytę ratunkową z napędu CD/DVD i uruchom ponownie komputer.\n\n</entry>
<entry lang="pl" key="RESCUE_DISK_HELP_PORTION_6">3) Jeśli program startowy VeraCrypt jest uszkodzony, możesz uniknąć wykonania go inicjując komputer bezpośrednio z płyty ratunkowej VeraCrypt. Włóż płytę ratunkową do napędu CD/DVD i wprowadź hasło na ekranie płyty ratunkowej.\n\n</entry>
<entry lang="pl" key="RESCUE_DISK_HELP_PORTION_7">4) Jeśli Windows jest uszkodzony i nie może się uruchomić, płyta ratunkowa VeraCrypt pozwala na trwale odszyfrować partycję lub dysk przed uruchomieniem Windows. Na ekranie płyty ratunkowej wybierz 'Repair Options' &gt; 'Permanently decrypt system partition/drive'. Wprowadź poprawne hasło i poczekaj aż odszyfrowywanie się zakończy. Można wtedy np. uruchomić dysk instalacyjny w celu naprawy instalacji Windows.\n\n</entry>
<entry lang="pl" key="RESCUE_DISK_HELP_PORTION_8">Uwaga: Innym wyjściem, jeśli Windows jest uszkodzony (nie może się uruchomić) i chcesz go naprawić (lub uzyskać dostęp do jego plików), można uniknąć odszyfrowywania partycji lub dysku systemowego wykonując następujące kroki: Jeśli zainstalowano wiele systemów operacyjnych na komputerze, uruchom ten, który nie wymaga autentykacji przeduruchomieniowej. Jeśli jest tylko jeden system zainstalowany na komputerze, można uruchomić system z CD/DVD WinPE lub BartPE lub można podłączyć dysk systemowy jako dysk drugorzędny lub zewnętrzny do innego komputera i uruchomić system operacyjny zainstalowany na komputerze. Po uruchomieniu systemu uruchom VeraCrypt, wciśnij 'Wybierz Urządzenie', wskaż tą dołączoną partycję systemową, wciśnij 'OK', po czym wybierz 'System' &gt; 'Mount Without Pre-Boot Authentication', wprowadź przeduruchomieniowe hasło autentykacyjnei wciśnij 'OK'. Partycja zostanie podłączona jako zwykły wolumen VeraCrypt (dane będą szyfrowane/rozszyfrowywane w locie w RAM podczas dostępu, jak zwykle).\n\n\n</entry>
<entry lang="pl" key="RESCUE_DISK_HELP_PORTION_8">Uwaga: Innym wyjściem, jeśli Windows jest uszkodzony (nie może się uruchomić) i chcesz go naprawić (lub uzyskać dostęp do jego plików), można uniknąć odszyfrowywania partycji lub dysku systemowego wykonując następujące kroki: Jeśli zainstalowano wiele systemów operacyjnych na komputerze, uruchom ten, który nie wymaga autentykacji przeduruchomieniowej. Jeśli jest tylko jeden system zainstalowany na komputerze, można uruchomić system z CD/DVD WinPE lub BartPE lub można podłączyć dysk systemowy jako dysk drugorzędny lub zewnętrzny do innego komputera i uruchomić system operacyjny zainstalowany na komputerze. Po uruchomieniu systemu uruchom VeraCrypt, wciśnij 'Wybierz Urządzenie', wskaż tę dołączoną partycję systemową, wciśnij 'OK', po czym wybierz 'System' &gt; 'Mount Without Pre-Boot Authentication', wprowadź przeduruchomieniowe hasło autentykacyjne i wciśnij 'OK'. Partycja zostanie podłączona jako zwykły wolumen VeraCrypt (dane będą szyfrowane/rozszyfrowywane w locie w RAM podczas dostępu, jak zwykle).\n\n\n</entry>
<entry lang="pl" key="RESCUE_DISK_HELP_PORTION_9">Zauważ, że nawet jeśli stracisz swoją płytę ratunkową VeraCrypt i napastnik ją odnajdzie, NIE będzie w stanie odszyfrować partycji systemowej czy dysku bez poprawnego hasła.</entry>
<entry lang="pl" key="DECOY_OS_INSTRUCTIONS_PORTION_1">\n\nW A Ż N E -- WYDRUKUJ TO JEŻELI TO MOŻLIWE (kliknij 'Drukuj').\n\n\nUwaga: Ten tekst będzie automatycznie wyświetlany za każdym razem, gdy uruchomisz ukryty system operacyjny dopóki nie zaczniesz tworzyć zwodzącego systemu operacyjnego.\n\n\n</entry>
<entry lang="pl" key="DECOY_OS_INSTRUCTIONS_PORTION_2">Jak utworzyć system zwodzący spokojnie i bezpiecznie ----------------------------------------------------------------------------\n\nAby osiągnąć wiarygodne możliwości kontroli, musisz teraz utworzyć system zwodzący. By to osiągnąć, wykonaj następujące kroki:\n\n</entry>
<entry lang="pl" key="DECOY_OS_INSTRUCTIONS_PORTION_3">1) Ze względów bezpieczeństwa wyłącz komputer i pozostaw wyłączony co najmniej kilka minut (im dłużej tym lepiej). Jest to konieczne, aby wyczyścić pamięć, która zawiera wrażliwe dane. Następnie włącz komputer, ale nie ładuj ukrytego systemu.\n\n</entry>
<entry lang="pl" key="DECOY_OS_INSTRUCTIONS_PORTION_4">2) Zainstaluj Windows na partycji, której zawartość ma być usunięta (tj. na partycji, której ukryty system jest klonem, został zainstalowany).\n\nWAŻNE: GDY ROZPOCZNIESZ INSTALACJĘ SYSTEMU ZWODZĄCEGO, SYSTEM UKRYTY *NIE* BĘDZIE MIAŁ MOŻLIWOŚCI URUCHOMIENIA (ponieważ program startowy VeraCrypt zostanie wymazany przez instalator systemu Windows). JEST TO NORMALNE I OCZEKIWANE. NIE PANIKOWAĆ. DOSTĘP DO URUCHOMIENIA UKRYTEGO SYSTEMU ZOSTANIE PRZYWRÓCONY PO ZASZYFROWANIU SYSTEMU ZWODZĄCEGO (ponieważ VeraCrypt zainstaluje wtedy automatycznie program startowy VeraCrypt na dysku systemowym).\n\nWażne: Wielkość partycji wydawać się taka sama jak wielkość ukrytego wolumenu (ten warunek będzie teraz spełniony). Ponadto, musisz nie możesz tworzyć żadnych partycji pomiędzy partycją systemu zwodzącego i partycją, na której umieszczono system ukryty.\n\n</entry>
<entry lang="pl" key="DECOY_OS_INSTRUCTIONS_PORTION_4">2) Zainstaluj Windows na partycji, której zawartość została usunięta (tj. na partycji, na której był zainstalowany oryginalny system, którego klonem jest system ukryty).\n\nWAŻNE: GDY ROZPOCZNIESZ INSTALACJĘ SYSTEMU ZWODZĄCEGO, SYSTEM UKRYTY *NIE* BĘDZIE MIAŁ MOŻLIWOŚCI URUCHOMIENIA (ponieważ program startowy VeraCrypt zostanie wymazany przez instalator systemu Windows). JEST TO NORMALNE I OCZEKIWANE. NIE PANIKOWAĆ. DOSTĘP DO URUCHOMIENIA UKRYTEGO SYSTEMU ZOSTANIE PRZYWRÓCONY PO ZASZYFROWANIU SYSTEMU ZWODZĄCEGO (ponieważ VeraCrypt zainstaluje wtedy automatycznie program startowy VeraCrypt na dysku systemowym).\n\nWażne: Rozmiar partycji systemu zwodzącego musi pozostać taki sam jak rozmiar ukrytego wolumenu (ten warunek będzie teraz spełniony). Ponadto, nie wolno tworzyć żadnych partycji pomiędzy partycją systemu zwodzącego i partycją, na której umieszczono system ukryty.\n\n</entry>
<entry lang="pl" key="DECOY_OS_INSTRUCTIONS_PORTION_5">3) Uruchom system zwodzący (zainstalowany w kroku 2 i zainstaluj na nim VeraCrypt).\n\nZapamiętaj, że system zwodzący nie może zawierać żadnych wrażliwych danych.\n\n</entry>
<entry lang="pl" key="DECOY_OS_INSTRUCTIONS_PORTION_6">4) W systemie zwodzącym uruchom VeraCrypt i wybierz 'System' &gt; 'Szyfruj partycję lub dysk systemowy'. Powinno pojawić się okno Kreatora Tworzenia Wolumenu VeraCrypt.\n\nWykonaj następujące kroki w Kreatorze Tworzenia Wolumenu VeraCrypt.\n\n</entry>
<entry lang="pl" key="DECOY_OS_INSTRUCTIONS_PORTION_7">5) W Kreatorze tworzenia wolumenu VeraCrypt, NIE wybieraj opcji 'Ukryty'. Pozostaw zaznaczoną opcję 'Normalny' i wciśnij 'Dalej'.\n\n</entry>
<entry lang="pl" key="DECOY_OS_INSTRUCTIONS_PORTION_8">6) Wybierz opcję 'Koduj partycję systemową Windows' a następnie wciśnij 'Dalej'.\n\n</entry>
<entry lang="pl" key="DECOY_OS_INSTRUCTIONS_PORTION_9">7) Jeśli na komputerze zainstalowano tylko systemy ukryty i zwodzący, wybierz opcję 'Jeden system' (jeśli jest więcej niż te dwa systemy na komputerze, wybierz 'Wiele systemów'). Następnie wciśnij 'Dalej'.\n\n</entry>
<entry lang="pl" key="DECOY_OS_INSTRUCTIONS_PORTION_10">8) WAŻNE: W TYM KROKU, DLA SYSTEMU ZWODZĄCEGO MUSISZ WYBRAĆ TEN SAM ALGORYTM SZYFROWANIA I ALGORYTM HASZOWANIA, KTÓRY WYBRAŁEŚ DLA SYSTEMU UKRYTEGO! W PRZECIWNYM RAZIE UKRYTY SYSTEM POZOSTANIE NIEDOSTĘPNY! Innymi słowy, system zwodzący musi być zaszyfrowany tym samym algorytmem szyfrującym jak system ukryty. Uwaga: Powodem tego jest fakt, że system zwodzący i ukryty dzielą ten sam program startowy, który wspiera tylko jeden algorytm, wybrany przez użytkownika (dla każdego algorytmu jest dedykowana wersja programu startowego VeraCrypt).\n\n</entry>
<entry lang="pl" key="DECOY_OS_INSTRUCTIONS_PORTION_11">9) W tym kroku wybierz hasło dla zwodzącego systemu operacyjnego. Będzie to hasło, które możesz wyjawić przeciwnikowi jeśli będziesz proszony lub zmuszony wyjawić przeduruchomieniowe hasło autentykacyjne (innym hasłem, które możesz podać jest hasło do modułu zewnętrznego). Istnienie trzeciego hasła (tj przeduruchomieniowego hasła autentykacyjnego do ukrytego systemu operacyjnego) powinno pozostać tajemnicą.\n\nWażne: Hasło wybrane do systemu zwodzącego musi znacznie różnić się od tego do wolumenu ukrytego (tj do ukrytego systemu operacyjnego).\n\n</entry>
<entry lang="pl" key="DECOY_OS_INSTRUCTIONS_PORTION_11">9) W tym kroku wybierz hasło dla zwodzącego systemu operacyjnego. Będzie to hasło, które możesz wyjawić przeciwnikowi jeśli będziesz proszony lub zmuszony wyjawić przeduruchomieniowe hasło autentykacyjne (innym hasłem, które możesz podać jest hasło do modułu zewnętrznego). Istnienie trzeciego hasła (tj. przeduruchomieniowego hasła autentykacyjnego do ukrytego systemu operacyjnego) powinno pozostać tajemnicą.\n\nWażne: Hasło wybrane do systemu zwodzącego musi znacznie różnić się od tego do wolumenu ukrytego (tj. do ukrytego systemu operacyjnego).\n\n</entry>
<entry lang="pl" key="DECOY_OS_INSTRUCTIONS_PORTION_12">10) Wykonuj następne instrukcje kreatora aż do zaszyfrowania zwodzącego systemu operacyjnego.\n\n\n\n</entry>
<entry lang="pl" key="DECOY_OS_INSTRUCTIONS_PORTION_13">Po utworzeniu zwodzącego systemu operacyjnego ------------------------------------------------\n\nPo zaszyfrowaniu systemu zwodzącego cały proces tworzenia ukrytego systemu operacyjnego zostanie zakończony i będziesz mógł używać trzech haseł:\n\n1) Przeduruchomieniowe hasło autentykacyjne do ukrytego systemu operacyjnego.\n\n2) Przeduruchomieniowe hasło autentykacyjne dla zwodzącego systemu operacyjnego.\n\n3) Hasło do zewnętrznego wolumenu.\n\n</entry>
<entry lang="pl" key="DECOY_OS_INSTRUCTIONS_PORTION_14">Jeśli chcesz uruchomić ukryty system operacyjny, wystarczy tylko wpisać hasło do ukrytego systemu operacyjnego na ekranie programu startowego VeraCrypt (który pojawia się po włączeniu lub restarcie komputera).\n\nJeśli chcesz uruchomić zwodzący system operacyjny, wystarczy wpisać hasło dla zwodzącego systemu operacyjnego na ekranie programu startowego VeraCrypt.\n\nHasło do zwodzącego systemu operacyjnego może zostać ujawnione każdemu zmuszającemu Cię do zdradzenia przeduruchomieniowego hasła autentykacyjnego. Istnienie ukrytego wolumenu (i ukrytego systemu operacyjnego) pozostanie tajemnicą.\n\n</entry>
<entry lang="pl" key="DECOY_OS_INSTRUCTIONS_PORTION_15">Trzecie hasło (do wolumenu zewnętrznego) może zostać wyjawiony każdemu zmuszającemu do zdradzenia hasła do pierwszej partycji za partycją systemową, gdzie mieszczą się wolumen zewnętrzny i ukryty (zawierający ukryty system operacyjny). Istnienie ukrytego wolumenu (i ukrytego systemu operacyjnego) pozostanie tajemnicą.\n\n\n</entry>
<entry lang="pl" key="DECOY_OS_INSTRUCTIONS_PORTION_16">Jeśli zdradziłeś hasło do zwodzącego systemu operacyjnego przeciwnikowi a ten spyta, czemu wolna przestrzeń (zwodzącej) partycji systemowej zawiera dane losowe, możesz odpowiedzieć na przykład: "Partycja zawierała przedtem system zaszyfrowany przez VeraCrypt, ale zapomniałem przeduruchomieniowego hasła autentykacyjnego (albo system został uszkodzony i przestał się uruchamiać), więc musiałem ponownie zainstalować partycję windows i zaszyfrować ją."\n\n\n</entry>
<entry lang="pl" key="DECOY_OS_INSTRUCTIONS_PORTION_17">Jeśli wykonano wszystkie instrukcje i zapewniono wszystkie środki ostrożności i i wymagania wymienione w sekcji "Security Requirements and Precautions Pertaining to Hidden Volumes" w instrukcji użytkownika VeraCrypt, powinno być niemożliwe udowodnienie, że ukryty wolumen i ukryty system operacyjny istnieje, nawet gdy zewnętrzny wolumen został podłączony lub gdy zwodzący system operacyjny jest odcyfrowany i uruchomiony.\n\nJeśli zapiszesz kopię tego tekstu lub wydrukujesz go (gorąco polecane, chyba, że drukarka przechowuje kopie drukowanych dokumentów na wewnętrznym dysku), musisz zniszczyć wszystkie jego kopie po utworzeniu systemu zwodzącego i zrozumieniu wszystkich informacji zawartych w tekście (w przeciwnym przypadku, jeśli taka kopia zostanie znaleziona, mogłaby wskazywać, że na tym komputerze zainstalowano ukryty system operacyjny).\n\n</entry>
<entry lang="pl" key="DECOY_OS_INSTRUCTIONS_PORTION_16">Jeśli zdradziłeś hasło do zwodzącego systemu operacyjnego przeciwnikowi, a ten spyta, czemu wolna przestrzeń (zwodzącej) partycji systemowej zawiera dane losowe, możesz odpowiedzieć na przykład: "Partycja zawierała przedtem system zaszyfrowany przez VeraCrypt, ale zapomniałem przeduruchomieniowego hasła autentykacyjnego (albo system został uszkodzony i przestał się uruchamiać), więc musiałem ponownie zainstalować partycję windows i zaszyfrować ją."\n\n\n</entry>
<entry lang="pl" key="DECOY_OS_INSTRUCTIONS_PORTION_17">Jeśli wykonano wszystkie instrukcje i zapewniono wszystkie środki ostrożności i wymagania wymienione w sekcji "Security Requirements and Precautions Pertaining to Hidden Volumes" w instrukcji użytkownika VeraCrypt, powinno być niemożliwe udowodnienie, że ukryty wolumen i ukryty system operacyjny istnieje, nawet gdy zewnętrzny wolumen został podłączony lub gdy zwodzący system operacyjny jest odszyfrowany i uruchomiony.\n\nJeśli zapiszesz kopię tego tekstu lub wydrukujesz go (gorąco polecane, chyba że drukarka przechowuje kopie drukowanych dokumentów na wewnętrznym dysku), musisz zniszczyć wszystkie jego kopie po utworzeniu systemu zwodzącego i zrozumieniu wszystkich informacji zawartych w tekście (w przeciwnym przypadku, jeśli taka kopia zostanie znaleziona, mogłaby wskazywać, że na tym komputerze zainstalowano ukryty system operacyjny).\n\n</entry>
<entry lang="pl" key="DECOY_OS_INSTRUCTIONS_PORTION_18">UWAGA: JEŚLI NIE CHRONISZ UKRYTEGO WOLUMENU (by uzyskać informację jak to zrobić, sprawdź sekcję "Protection of Hidden Volumes Against Damage" w Instrukcji Użytkownika VeraCrypt), NIE ZAPISYWAĆ DANYCH NA WOLUMENIE ZEWNĘTRZNYM (zauważ że zwodzący system operacyjny NIE jest zainstalowany na wolumenie zewnętrznym). W PRZECIWNYM PRZYPADKU MOŻESZ NADPISAĆ I USZKODZIĆ UKRYTY WOLUMEN (I UKRYTY SYSTEM OPERACYJNY NA NIM)!</entry>
<entry lang="pl" key="HIDDEN_OS_CREATION_PREINFO_TITLE">Klonowanie systemu operacyjnego</entry>
<entry lang="pl" key="HIDDEN_OS_CREATION_PREINFO_HELP">W następnym kroku, VeraCrypt będzie tworzył ukryty system operacyjny przez skopiowanie zawartości partycji systemowej do ukrytego wolumenu (kopiowane dane zostaną zaszyfrowane "w locie" z innym kluczem niż został użyty w zwodzącym systemie operacyjnym).\n\nProszę pamiętać, że proces zacznie się od rozruchu wstępnego i może zabrać dość dużo czasu aż skończy; od kilu godzin lub nieraz kliku dni (w zależności od wielkości partycji systemowej i wydajności twojego komputera).\n\nMożesz przerwać proces, wyłączając komputer, a proces wznowi się, gdy włączysz go ponownie. Jednakże, jeżeli przerwiesz proces, cały proces kopiowania zacznie się od początku (ponieważ zawartość systemowej partycji nie może ulec zmianie podczas klonowania).</entry>
<entry lang="pl" key="HIDDEN_OS_CREATION_PREINFO_HELP">W następnym kroku, VeraCrypt będzie tworzył ukryty system operacyjny przez skopiowanie zawartości partycji systemowej do ukrytego wolumenu (kopiowane dane zostaną zaszyfrowane "w locie" z innym kluczem niż został użyty w zwodzącym systemie operacyjnym).\n\nProszę pamiętać, że proces zacznie się od rozruchu wstępnego i może zabrać dość dużo czasu aż skończy; od kilku godzin lub nieraz kilku dni (w zależności od wielkości partycji systemowej i wydajności twojego komputera).\n\nMożesz przerwać proces, wyłączając komputer, a proces wznowi się, gdy włączysz go ponownie. Jednakże, jeżeli przerwiesz proces, cały proces kopiowania zacznie się od początku (ponieważ zawartość systemowej partycji nie może ulec zmianie podczas klonowania).</entry>
<entry lang="pl" key="CONFIRM_CANCEL_HIDDEN_OS_CREATION">Czy chcesz anulować cały proces tworzenia ukrytego systemu operacyjnego?\n\nInfo: Nie będziesz mógł wznowić procesu jeżeli go anulujesz teraz.</entry>
<entry lang="pl" key="CONFIRM_CANCEL_SYS_ENC_PRETEST">Chcesz anulować test szyfrowania systemu?</entry>
<entry lang="pl" key="BOOT_PRETEST_FAILED_RETRY">Test szyfrowania systemu przez program VeraCrypt nie powiódł się. Czy chcesz spróbować jeszcze raz?\n\nJeśli wybierzesz 'Nie', komponent odpowiedzialny za uwierzytelnienie przed uruchomieniem zostanie odinstalowany.\n\nUwagi: \n\n- Jeśli program startowy VeraCrypt nie pytał o hasło przed uruchomieniem systemu Windows, jest możliwe, że system operacyjny nie startuje z dysku, na którym jest zainstalowany. \n\n- Jeśli używasz algorytmu szyfrującego innego niż AES i test się nie powiódł (po wpisaniu hasła), mogło to być spowodowane przez niepoprawnie przydzielony sterownik. Wybierz 'Nie' i spróbuj zaszyfrować ponownie partycję lub dysk systemowy, jednak przy użyciu algorytmu szyfrowania AES (który ma najmniejsze wymagania co do pamięci).\n\n- Więcej możliwych powodów i rozwiązań na stronie https://veracrypt.jp/en/Troubleshooting.html (w języku angielskim).</entry>
@@ -1248,7 +1248,7 @@
<entry lang="pl" key="CONFIRM_DECRYPT_SYS_DEVICE_CAUTION">OSTRZEŻENIE: W wyniku trwałego odszyfrowania partycji/dysku systemowego zostaną na nim zapisane niezaszyfrowane dane.\n\nCzy na pewno trwale zdeszyfrować partycję lub dysk systemowy?</entry>
<entry lang="pl" key="CONFIRM_DECRYPT_NON_SYS_DEVICE">Czy na pewno chcesz trwale odszyfrować następujący wolumen?</entry>
<entry lang="pl" key="CONFIRM_DECRYPT_NON_SYS_DEVICE_CAUTION">OSTRZEŻENIE: Jeżeli trwale odszyfrujesz wolumen VeraCrypt, niezaszyfrowane dane zostaną zapisane na dysku.\n\nCzy na pewno chcesz trwale odszyfrować wybrany wolumen?</entry>
<entry lang="pl" key="CONFIRM_CASCADE_FOR_SYS_ENCRYPTION">OSTRZEŻENIE: Jeżeli używasz kaskadowego szyfrowania w systemie, możesz spotkać się z:\n\n1) Program startowym VeraCrypt jest większy niż normalny ponieważ, nie ma miejsca w pierwszej ścieżce dysku na kopię programu startowego VeraCrypt. Stąd, ilekroć zostanie uszkodzony (co zdarza się często, np. podczas uruchamiania pirackiego oprogramowania modyfikującego sektory startowe), możesz wymagać użycia płyty ratunkowej VeraCrypt do uruchomienia lub do naprawy programu startowego VeraCrypt.\n\n2) Z powodu podniesienia wymagań ilości pamięci, możne być niemożliwe zaszyfrowanie partycji/dysku.\n\n3) Na niektórych komputerach, po włączeniu po długim czasie hibernacji.\n\nTych potencjalnych problemów unikamy stosując nie kaskadowych algorytmów szyfrowania (np. AES).\n\nCzy jesteś pewien, że chcesz użyć kaskadowych algorytmów szyfrowania?</entry>
<entry lang="pl" key="CONFIRM_CASCADE_FOR_SYS_ENCRYPTION">OSTRZEŻENIE: Jeśli użyjesz kaskady algorytmów szyfrowania do szyfrowania systemu, możesz napotkać następujące problemy:\n\n1) Program startowy VeraCrypt jest większy niż zwykle, dlatego w pierwszej ścieżce dysku nie ma wystarczająco dużo miejsca na kopię zapasową programu startowego VeraCrypt. Stąd, ilekroć zostanie uszkodzony (co często zdarza się np. przez źle zaprojektowane mechanizmy aktywacji antypirackiej w niektórych programach), będziesz musiał użyć dysku ratunkowego VeraCrypt, aby uruchomić system lub napraw program startowy VeraCrypt.\n\n2) Na niektórych komputerach wznowienie pracy po hibernacji trwa dłużej.\n\nTych potencjalnych problemów można uniknąć, wybierając niekaskadowe algorytmy szyfrowania (np. AES).\n\nCzy jesteś pewien, że chcesz użyć kaskadowych algorytmów szyfrowania?</entry>
<entry lang="pl" key="NOTE_CASCADE_FOR_SYS_ENCRYPTION">W przypadku wystąpienia jednego z poprzednio opisanych problemów, odszyfruj partycję lub dysk systemowy (jeśli jest zaszyfrowany), następnie zaszyfruj go, używając niekaskadowego algorytmu szyfrowania (np. AES).</entry>
<entry lang="pl" key="UPDATE_TC_IN_DECOY_OS_FIRST">OSTRZEŻENIE: Dla bezpieczeństwa, powinieneś uaktualnić VeraCrypt na pierwszym systemie operacyjnym przed aktualizacją na ukrytym systemie operacyjnym.\n\nAby to zrobić, wystartuj system zwodzący i zainstaluj na nim VeraCrypt. Później uruchom ukryty system i uruchom instalacje.\n\nUwaga: System zwodzący i ukryty współdzielą ten sam program startowy. Jeżeli uaktualnisz VeraCrypt tylko w ukrytym systemie (a nie w systemie zwodzącym), system zwodzący może zawierać sterownik i aplikację VeraCrypt, której wersja jest różna od wersji programu startowego VeraCrypt. Taka rozbieżność może wskazywać, że na tym komputerze jest ukryty system.\n\n\nCzy chcesz kontynuować? (Nie polecane.)</entry>
<entry lang="pl" key="UPDATE_TC_IN_HIDDEN_OS_TOO">Wersja programu startowego VeraCrypt wystartowanego na tym systemie operacyjnym jest różna z wersją VeraCrypt zainstalowanego w tym systemie.\n\nPowinieneś uruchomić instalację VeraCrypt (gdzie wersja VeraCrypt jest taka sama jak użyta w programie startowym), aby zaktualizować VeraCrypt w systemie operacyjnym.</entry>
@@ -1260,16 +1260,16 @@
<entry lang="pl" key="HIDDEN_SECTOR_DETECTION_FAILED_PREVIOUSLY">OSTRZEŻENIE: Wygląda na to, że program VeraCrypt już próbował wykryć ukryte sektory na tym dysku systemowym. Jeśli w poprzednim procesie wykrywania wystąpiły jakieś problemy, można je ominąć, pomijając wykrywanie ukrytych sektorów. W takim wypadku program VeraCrypt użyje wielkości zgłaszanej przez system operacyjny (która może być mniejsza od wielkości rzeczywistej). Ten problem nie jest spowodowany przez błąd w programie VeraCrypt.</entry>
<entry lang="pl" key="SKIP_HIDDEN_SECTOR_DETECTION">Pomiń wykrywanie ukrytych sektorów (użyj wielkości zgłaszanej przez system operacyjny)</entry>
<entry lang="pl" key="RETRY_HIDDEN_SECTOR_DETECTION">Ponownie spróbuj wykryć ukryte sektory</entry>
<entry lang="pl" key="ENABLE_BAD_SECTOR_ZEROING">BŁĄD: Zawartość jednego lub więcej sektorów dysku nie może być odczytana.\n\nProces szyfrowania może zostać kontynuowany tylko gdy sektory będą ponownie możliwe do odczytu. VeraCrypt spróbuje uczynić te sektory dostępne poprzez zapisanie w nich wartości zerowych (następnie wszystkie zerowe bloki zostaną zaszyfrowane). Jednakże, wszystkie dane zapisane w nieodczytywalnych sektorach zostaną zniszczone. Jeżeli chcesz tego uniknąć, możesz przystąpić do odratowania części uszkodzonych danych (ignorując wszystkie błędy sum kontrolnych) używając oprogramowania firm trzecich.\n\nUwaga: W przypadku fizycznego uszkodzenia sektorów (w przeciwieństwie do zwykłego naruszenia integralności danych i błędów sumy kontrolnej) większość urządzeń wewnętrznie przesuwa sektory kiedy dane mają zostać zapisane do nich (więc istniejące dane w uszkodzonych sektorach mogą być niezaszyfrowane na urządzeniu).\n\nCzy chcesz, aby VeraCrypt zapisał zerami nieodczytywalne sektory?</entry>
<entry lang="pl" key="DISCARD_UNREADABLE_ENCRYPTED_SECTORS">BŁĄD: Zawartość jednego bądź więcej sektorów dysku nie może być odczytany (prawdopodobnie jest problem sprzętowy).\n\nAby dokonać odszyfrowania, VeraCrypt będzie odrzucać zawartość nieodczytywalnych sektorów (zawartość będzie wypełniona losowymi danymi). Proszę pamiętać że, przed uruchomieniem procesu, możesz odzyskać częsi uszkodzonych danych narzędziami trzecich firm.\n\nCzy chcesz, aby VeraCrypt odrzucił dane z nieodczytywalnych sektorów?</entry>
<entry lang="pl" key="ZEROED_BAD_SECTOR_COUNT">Uwaga: VeraCrypt zastąpił zawartość %I64d nieodczytywalego sektora (%s) zaszyfrowaną zerową, tekstową informacją w bloku.</entry>
<entry lang="pl" key="SKIPPED_BAD_SECTOR_COUNT">Uwaga: VeraCrypt zastąpił zawartość %I64d nieodczytywalego sektora (%s) pseudolosowymi danymi.</entry>
<entry lang="pl" key="ENABLE_BAD_SECTOR_ZEROING">BŁĄD: Zawartość jednego lub więcej sektorów dysku nie może być odczytana.\n\nProces szyfrowania może zostać kontynuowany tylko gdy sektory będą ponownie możliwe do odczytu. VeraCrypt spróbuje uczynić te sektory dostępne poprzez zapisanie w nich wartości zerowych (następnie wszystkie zerowe bloki zostaną zaszyfrowane). Jednakże, wszystkie dane zapisane w nieodczytywalnych sektorach zostaną zniszczone. Jeżeli chcesz tego uniknąć, możesz przystąpić do odzyskania części uszkodzonych danych (ignorując wszystkie błędy sum kontrolnych) używając oprogramowania firm trzecich.\n\nUwaga: W przypadku fizycznego uszkodzenia sektorów (w przeciwieństwie do zwykłego naruszenia integralności danych i błędów sumy kontrolnej) większość urządzeń wewnętrznie przesuwa sektory kiedy dane mają zostać zapisane do nich (więc istniejące dane w uszkodzonych sektorach mogą być niezaszyfrowane na urządzeniu).\n\nCzy chcesz, aby VeraCrypt zapisał zerami nieodczytywalne sektory?</entry>
<entry lang="pl" key="DISCARD_UNREADABLE_ENCRYPTED_SECTORS">BŁĄD: Zawartość jednego bądź więcej sektorów dysku nie może być odczytany (prawdopodobnie jest problem sprzętowy).\n\nAby dokonać odszyfrowania, VeraCrypt będzie odrzucać zawartość nieodczytywalnych sektorów (zawartość będzie wypełniona losowymi danymi). Proszę pamiętać że, przed uruchomieniem procesu, możesz odzyskać części uszkodzonych danych narzędziami trzecich firm.\n\nCzy chcesz, aby VeraCrypt odrzucił dane z nieodczytywalnych sektorów?</entry>
<entry lang="pl" key="ZEROED_BAD_SECTOR_COUNT">Uwaga: VeraCrypt zastąpił zawartość %I64d nieodczytywalnego sektora (%s) zaszyfrowaną zerową, tekstową informacją w bloku.</entry>
<entry lang="pl" key="SKIPPED_BAD_SECTOR_COUNT">Uwaga: VeraCrypt zastąpił zawartość %I64d nieodczytywalnego sektora (%s) pseudolosowymi danymi.</entry>
<entry lang="pl" key="ENTER_TOKEN_PASSWORD">Wprowadź hasło/PIN dla tokena '%s':</entry>
<entry lang="pl" key="PKCS11_LIB_LOCATION_HELP">Aby pozwolić VeraCrypt na dostęp do tokena bezpieczeństwa lub karty pamięci, musisz najpierw zainstalować oprogramowanie biblioteki PKCS #11 dla tego tokena lub karty pamięci. Poszukiwana biblioteka może być na urządzeniu lub może być dostępna na stronach internetowych producenta lub firm trzecich.\n\nPo instalacji biblioteki, możesz dopiero ją ręcznie wybrać przez kliknięcie 'Wybierz bibliotekę' lub możesz pozwolić VeraCrypt znaleźć i wybrać automatycznie klikając 'Autowkrywanie biblioteki' (tylko katalog systemowy Windows będzie przeszukany).</entry>
<entry lang="pl" key="SELECT_PKCS11_MODULE_HELP">Uwaga: Dla zainstalowania biblioteki PKCS #11 (lokalizacja i nazwa pliku) twojego tokena lub twojej karty pamięci, proszę sprawdź tą informację w dokumentacji użytego tokena, karty lub innego oprogramowania.\n\nNaciśnij 'OK' aby wybrać ścieżkę i plik.</entry>
<entry lang="pl" key="PKCS11_LIB_LOCATION_HELP">Aby pozwolić VeraCrypt na dostęp do tokena bezpieczeństwa lub karty pamięci, musisz najpierw zainstalować oprogramowanie biblioteki PKCS #11 dla tego tokena lub karty pamięci. Poszukiwana biblioteka może być na urządzeniu lub może być dostępna na stronach internetowych producenta lub firm trzecich.\n\nPo instalacji biblioteki, możesz dopiero ją ręcznie wybrać przez kliknięcie 'Wybierz bibliotekę' lub możesz pozwolić VeraCrypt znaleźć i wybrać automatycznie klikając 'Autowykrywanie biblioteki' (tylko katalog systemowy Windows będzie przeszukany).</entry>
<entry lang="pl" key="SELECT_PKCS11_MODULE_HELP">Uwaga: Dla zainstalowania biblioteki PKCS #11 (lokalizacja i nazwa pliku) twojego tokena lub twojej karty pamięci, proszę sprawdź tę informację w dokumentacji użytego tokena, karty lub innego oprogramowania.\n\nNaciśnij 'OK' aby wybrać ścieżkę i plik.</entry>
<entry lang="pl" key="NO_PKCS11_MODULE_SPECIFIED">W przypadku zezwolenia VeraCrypt do dostępu do tokenu bezpieczeństwa lub karty pamięci, musisz najpierw wskazać oprogramowanie biblioteki PKCS #11 do token/karty. Aby to zrobić, wybierz 'Ustawienia' &gt; 'Tokeny bezpieczeństwa'.</entry>
<entry lang="pl" key="PKCS11_MODULE_INIT_FAILED">Błąd przy zainicjowaniu biblioteki PKCS #11.\n\nProszę się upewnić, że wskazana ścieżka i nazwa pliku to poprawny plik biblioteki PKCS #11. Aby wskazać ścieżkę i plik biblioteki PKCS #11, wybierz 'Ustawienia' &gt; 'Tokeny bezpieczeństwa'.</entry>
<entry lang="pl" key="PKCS11_MODULE_AUTO_DETECTION_FAILED">Nie znaleziono bibliotek PKCS #11 w katalogu Windows.\n\nProszę upewnić się, że biblioteki PKCS #11 do twojego tokena (lub twojej karty pamięci) są zainstalowane (poszukaj bibliotek, które współpracują z tokenem/kartą - mogą być one dostępne na stronach producentów lub partnerów). Jeżeli są zainstalowane w innym katalogu niż katalog systemowy Windows, kliknij 'Wybierz bibliotekę' i wskaż tą bibliotekę (np. w katalogu, gdzie jest zainstalowane oprogramowanie tokena/karty).</entry>
<entry lang="pl" key="PKCS11_MODULE_AUTO_DETECTION_FAILED">Nie znaleziono bibliotek PKCS #11 w katalogu Windows.\n\nProszę upewnić się, że biblioteki PKCS #11 do twojego tokena (lub twojej karty pamięci) są zainstalowane (poszukaj bibliotek, które współpracują z tokenem/kartą - mogą być one dostępne na stronach producentów lub partnerów). Jeżeli są zainstalowane w innym katalogu niż katalog systemowy Windows, kliknij 'Wybierz bibliotekę' i wskaż tę bibliotekę (np. w katalogu, gdzie jest zainstalowane oprogramowanie tokena/karty).</entry>
<entry lang="pl" key="NO_TOKENS_FOUND">Nie znaleziono tokena zabezpieczenia.\n\nProszę się upewnić, że token jest podłączony do twojego komputera i że jest poprawnie zainstalowane urządzenie z tokenem.</entry>
<entry lang="pl" key="TOKEN_KEYFILE_NOT_FOUND">Plik-klucz nie został znaleziony.</entry>
<entry lang="pl" key="TOKEN_KEYFILE_ALREADY_EXISTS">Istnieje plik-klucz tokena o tej samej nazwie.</entry>
@@ -1295,11 +1295,11 @@
<entry lang="pl" key="DISABLE_NONADMIN_SYS_FAVORITES_ACCESS">Zezwalaj tylko administratorom przeglądać i odłączać ulubione wolumeny systemowe VeraCrypt</entry>
<entry lang="pl" key="MOUNT_SYSTEM_FAVORITES_ON_BOOT">Podłącz ulubione wolumeny systemowe podczas startu Windows (w początkowej fazie procedury startup)</entry>
<entry lang="pl" key="MOUNTED_VOLUME_DIRTY">OSTRZEŻENIE: System plików na wolumenie podłączonym jako '%s' nie został poprawnie odłączony i może to spowodować błędy. Używanie uszkodzonego systemu plików może spowodować utratę danych lub ich uszkodzenie.\n\nInformacja: Przed fizycznym usunięciem lub wyłączeniem urządzenia (np. dysków USB flash lub zewnętrznych dysków twardych), które są podłączone VeraCryptem, powinieneś zawsze najpierw odłączyć wolumen w VeraCrypt.\n\n\nCzy chcesz pozwolić Windows wykryć i naprawić (jeżeli umie) błędy na systemie plików?</entry>
<entry lang="pl" key="SYS_FAVORITE_VOLUME_DIRTY">OSTRZEŻENIE: Jeden lub więcej ulubionych systemowych wolumenów nie został poprawnie odłączony i stąd system plików może zawierać błędy. Proszę zobaczyć do dziennika zdarzeń po więcej informacji.\n\nUżywając uszkodzonego systemu plików możesz utracić lub uszkodzić dane. Powinieneś sprawdzić dotknięty błędem wolumen/y na błędy (kliknij prawym przyciskiem na każdym z wolumenów VeraCrypt i wybierz 'Napraw System Plików').</entry>
<entry lang="pl" key="SYS_FAVORITE_VOLUME_DIRTY">OSTRZEŻENIE: Jeden lub więcej ulubionych systemowych wolumenów nie został poprawnie odłączony i stąd system plików może zawierać błędy. Proszę zobaczyć do dziennika zdarzeń po więcej informacji.\n\nUżywając uszkodzonego systemu plików możesz utracić lub uszkodzić dane. Powinieneś sprawdzić dotknięty błędem wolumen/y na błędy (kliknij prawym przyciskiem myszy na każdym z wolumenów VeraCrypt i wybierz 'Napraw System Plików').</entry>
<entry lang="pl" key="FILESYS_REPAIR_CONFIRM_BACKUP">OSTRZEŻENIE: Naprawianie uszkodzonego systemu plików używając narzędzia Microsoft 'chkdsk' może spowodować utratę plików w uszkodzonym zakresie. Dlatego, zalecane jest najpierw skopiowanie plików umieszczonych w wolumenie VeraCrypt do innego dobrego wolumenu VeraCrypt.\n\nCzy chcesz teraz naprawiać system plików?</entry>
<entry lang="pl" key="MOUNTED_CONTAINER_FORCED_READ_ONLY">Wolumen '%s' został podłączony w trybie tylko do odczytu ponieważ nie ma prawa do zapisu.\n\nProszę upewnić się, że uprawnienia pliku kontenera zezwalają na jego zapis (kliknij prawy przycisk kontenera i wybierz Właściwości &gt; Uprawnienia).\n\nPamiętaj o tym, używając Windows, możesz zobaczyć to ostrzeżenie za każdym razem jak zmienisz uprawnienia. To nie jest błąd VeraCrypt. Możliwym rozwiązaniem jest przesunięcie kontenera np. do twoich 'Moje dokumenty'.\n\nJeżeli rzeczywiście chcesz utrzymywać twój wolumen w trybie tylko do odczytu, to ustaw atrybut tylko do odczytu (prawy przycisk myszy na kontenerze - Właściwości &gt; Tylko-do-odczytu), to wyłączy to ostrzeżenie.</entry>
<entry lang="pl" key="MOUNTED_CONTAINER_FORCED_READ_ONLY">Wolumen '%s' został podłączony w trybie tylko do odczytu ponieważ nie ma uprawnień do zapisu.\n\nProszę upewnić się, że uprawnienia pliku kontenera zezwalają na jego zapis (kliknij prawym przyciskiem myszy kontener i wybierz Właściwości &gt; Uprawnienia).\n\nPamiętaj o tym, używając Windows, możesz zobaczyć to ostrzeżenie za każdym razem jak zmienisz uprawnienia. To nie jest błąd VeraCrypt. Możliwym rozwiązaniem jest przesunięcie kontenera np. do folderu 'Moje dokumenty'.\n\nJeżeli rzeczywiście chcesz utrzymywać twój wolumen w trybie tylko do odczytu, to ustaw atrybut tylko do odczytu (prawy przycisk myszy na kontenerze - Właściwości &gt; Tylko-do-odczytu), to wyłączy to ostrzeżenie.</entry>
<entry lang="pl" key="MOUNTED_DEVICE_FORCED_READ_ONLY">Wolumen '%s' został podłączony w trybie tylko do odczyty ponieważ nie ma prawa zapisu.\n\nProszę się upewnić, że aplikacje (np. system antywirusowy) są dostępne na partycji/urządzeniu, które znajduje się na wolumenie.</entry>
<entry lang="pl" key="MOUNTED_DEVICE_FORCED_READ_ONLY_WRITE_PROTECTION">Wolumen '%s' został podłączony w trybie tylko do odczytu ponieważ system operacyjny raportuje że urządzenie jest zabezpieczone przed zapisem.\n\nProszę mieć na uwadze, że niektóre sterowniki do chipset-ów błędnie raportują zabezpieczenie przed zapisem urządzeń. To nie jest problem z VeraCrypt. Można ten problem rozwiązać przez uaktualnienie lub odinstalowanie sterowników (nie Microsoft) do chipsetu, które są obecnie zainstalowane w systemie.</entry>
<entry lang="pl" key="MOUNTED_DEVICE_FORCED_READ_ONLY_WRITE_PROTECTION">Wolumen '%s' został podłączony w trybie tylko do odczytu ponieważ system operacyjny raportuje że urządzenie jest zabezpieczone przed zapisem.\n\nProszę mieć na uwadze, że niektóre sterowniki do chipsetów błędnie raportują zabezpieczenie przed zapisem urządzeń. To nie jest problem z VeraCrypt. Można ten problem rozwiązać przez uaktualnienie lub odinstalowanie sterowników (nie Microsoft) do chipsetu, które są obecnie zainstalowane w systemie.</entry>
<entry lang="pl" key="LIMIT_ENC_THREAD_POOL_NOTE">Zauważ, że technika Hyper-Threading oferuje wiele rdzeni logicznych na pojedynczy rdzeń fizyczny. Gdy Hyper Threading jest włączony, liczba wybrana powyżej reprezentuje liczbę procesorów/rdzeni logicznych.</entry>
<entry lang="pl" key="NUMBER_OF_THREADS">%d wątek(ki)</entry>
<entry lang="pl" key="DISABLED_HW_AES_AFFECTS_PERFORMANCE">Zauważ, że przyspieszenie sprzętowe AES jest zablokowane, co wpływa na wyniki testów (gorsza wydajność).\n\nAby aktywować przyspieszenie sprzętowe, wybierz 'Ustawienia' &gt; 'Wydajność' i zaznaczyć odpowiednią opcję.</entry>
@@ -1384,7 +1384,7 @@
<entry lang="pl" key="PASSWORD_UTF8_INVALID">Wpisane hasło zawiera znaki Unicode, które nie mogą zostać przekonwertowane do reprezentacji UTF-8.</entry>
<entry lang="pl" key="INIT_DLL">Błąd: Nie można załadować biblioteki systemowej.</entry>
<entry lang="pl" key="ERR_EXFAT_INVALID_VOLUME_SIZE">Rozmiar pliku wolumenu, który określono w wierszu poleceń, jest niekompatybilny z wybranym systemem plików exFAT.</entry>
<entry lang="pl" key="IDT_ENTROPY_BAR">Losowość zebrana z ruchów mysz</entry>
<entry lang="pl" key="IDT_ENTROPY_BAR">Losowość zebrana z ruchów myszy</entry>
<entry lang="pl" key="IDT_VOLUME_ID">Identyfikator wolumenu:</entry>
<entry lang="pl" key="VOLUME_ID">Identyfikator wolumenu</entry>
<entry lang="pl" key="IDC_FAVORITE_USE_VOLUME_ID">Użyj identyfikatora wolumenu do podłączania ulubionego</entry>
@@ -1423,7 +1423,7 @@
<entry lang="pl" key="IDC_BLOCK_SYSENC_TRIM">Blokuj komendę TRIM na systemowej partycji/napędzie</entry>
<entry lang="pl" key="WINDOWS_EFI_BOOT_LOADER_MISSING">BŁĄD: Nie można zlokalizować programu rozruchowego EFI systemu Windows na dysku. Operacja zostanie przerwana.</entry>
<entry lang="pl" key="SYSENC_EFI_UNSUPPORTED_SECUREBOOT">Obecnie nie jest możliwe szyfrowanie systemu, gdy włączona jest funkcja SecureBoot, a niestandardowe klucze VeraCrypt nie zostały załadowane do oprogramowania sprzętowego urządzenia. Funkcja SecureBoot musi być wyłączona w konfiguracji BIOS-u, aby umożliwić kontynuowanie szyfrowania systemu.</entry>
<entry lang="pl" key="PASSWORD_PASTED_TRUNCATED">Wklejony tekst został obcięty, ponieważ maksymalna długość hasła wynosi %d znaki</entry>
<entry lang="pl" key="PASSWORD_PASTED_TRUNCATED">Wklejony tekst został obcięty, ponieważ maksymalna długość hasła wynosi %d znaków</entry>
<entry lang="pl" key="PASSWORD_MAXLENGTH_REACHED">Hasło osiągnęło już maksymalną długość %d znaków.\nDodatkowy znak nie jest dozwolony.</entry>
<entry lang="pl" key="IDC_SELECT_LANGUAGE_LABEL">Wybierz używany język podczas instalacji:</entry>
<entry lang="pl" key="VOLUME_TOO_LARGE_FOR_HOST">BŁĄD: Rozmiar kontenera pliku jest większy niż dostępne wolne miejsce na dysku.</entry>
@@ -1517,10 +1517,6 @@
<entry lang="pl" key="LINUX_MOUNTET_HINT">System plików wybranego urządzenia jest aktualnie podłączony. Odłącz '{0}' przed kontynuowaniem.</entry>
<entry lang="pl" key="LINUX_HIDDEN_PASS_NO_DIFF">Wolumen ukryty nie może mieć tego samego hasła, pliku PIM i plików-kluczy, co wolumen zewnętrzny</entry>
<entry lang="pl" key="LINUX_NOT_FAT_HINT">Zwróć uwagę, że wolumen nie zostanie sformatowany w systemie plików FAT i dlatego może być konieczne zainstalowanie dodatkowych sterowników systemu plików na platformach innych niż '{0}', co umożliwi podłączenie wolumenu.</entry>
<entry lang="pl" key="LINUX_ERROR_SIZE_HIDDEN_VOL">Błąd: Ukryty wolumen do utworzenia jest większy niż {0} TB ({1} GB).\n\nMożliwe rozwiązania:\n- Utwórz kontener/partycję mniejszą niż {0} TB.\n</entry>
<entry lang="pl" key="LINUX_MAX_SIZE_HINT">- Użyj dysku z sektorami o rozmiarze 4096 bajtów, aby móc tworzyć ukryte wolumeny oparte na partycji/urządzeniu o rozmiarze do 16 TB</entry>
<entry lang="pl" key="LINUX_DOT_LF">.\n</entry>
<entry lang="pl" key="LINUX_NOT_SUPPORTED"> (nieobsługiwane przez komponenty dostępne na tej platformie).\n</entry>
<entry lang="pl" key="LINUX_KERNEL_OLD">Twój system używa starej wersji jądra Linuksa.\n\nZ powodu błędu w jądrze Linuksa Twój system może przestać odpowiadać podczas zapisywania danych do wolumenu VeraCrypt. Ten problem można rozwiązać, aktualizując jądro do wersji 2.6.24 lub nowszej.</entry>
<entry lang="pl" key="LINUX_VOL_UNMOUNTED">Wolumen {0} został odłączony.</entry>
<entry lang="pl" key="LINUX_VOL_MOUNTED">Wolumen {0} został podłączony.</entry>
@@ -1586,8 +1582,8 @@
<entry lang="pl" key="EXPANDER_FREE_SPACE">%s wolnego miejsca na dysku hosta</entry>
<entry lang="pl" key="EXPANDER_HELP_DEVICE">To jest wolumen VeraCrypt oparty na urządzeniu.\n\nNowy rozmiar wolumenu zostanie wybrany automatycznie jako rozmiar urządzenia hosta.</entry>
<entry lang="pl" key="EXPANDER_HELP_FILE">Określ nowy rozmiar wolumenu VeraCrypt (musi być co najmniej %I64u KB większy niż aktualny rozmiar).</entry>
<entry lang="pl" key="QUICK_EXPAND_WARNING">OSTRZEŻENIE: Szybkiego rozszerzania należy używać tylko w następujących przypadkach:\n\n1) Urządzenie, na którym znajduje się kontener plików, nie zawiera poufnych danych i nie jest wymagane wiarygodne zaprzeczenie.\n2) Urządzenie, na którym znajduje się kontener plików, zostało już bezpiecznie i w pełni zaszyfrowane.\n\nCzy na pewno chcesz użyć S zybkiego rozszerzania?</entry>
<entry lang="pl" key="EXPANDER_STATUS_TEXT">WAŻNE: Poruszaj myszą tak losowo, jak to możliwe w tym oknie. Im dłużej ją przesuwasz tym lepiej. To znacznie zwiększa siłę kryptograficzną kluczy szyfrujących. Następnie kliknij 'Kontynuuj', aby rozszerzyć wolumen.</entry>
<entry lang="pl" key="QUICK_EXPAND_WARNING">OSTRZEŻENIE: Szybkiego rozszerzania należy używać tylko w następujących przypadkach:\n\n1) Urządzenie, na którym znajduje się kontener plików, nie zawiera poufnych danych i nie jest wymagane wiarygodne zaprzeczenie.\n2) Urządzenie, na którym znajduje się kontener plików, zostało już bezpiecznie i w pełni zaszyfrowane.\n\nCzy na pewno chcesz użyć Szybkiego rozszerzania?</entry>
<entry lang="pl" key="EXPANDER_STATUS_TEXT">WAŻNE: Poruszaj myszą tak losowo, jak to możliwe w tym oknie. Im dłużej ją przesuwasz, tym lepiej. To znacznie zwiększa siłę kryptograficzną kluczy szyfrujących. Następnie kliknij 'Kontynuuj', aby rozszerzyć wolumen.</entry>
<entry lang="pl" key="EXPANDER_STATUS_TEXT_LEGACY">Kliknij 'Kontynuuj', aby rozszerzyć wolumen.</entry>
<entry lang="pl" key="EXPANDER_FINISH_ERROR">Błąd: Rozszerzenie wolumenu nie powiodło się.</entry>
<entry lang="pl" key="EXPANDER_FINISH_ABORT">Błąd: Operacja przerwana przez użytkownika.</entry>
@@ -1668,8 +1664,9 @@
<entry lang="pl" key="PIM_ARGON2_LARGE_WARNING">Wybrano wartość PIM Argon2 większą niż domyślna wartość VeraCrypt.\nNależy pamiętać, że może to wymagać więcej pamięci i prowadzić do znacznie wolniejszego podłączania.</entry>
<entry lang="pl" key="PIM_ARGON2_SMALL_WARNING">Wybrano wartość PIM Argon2 mniejszą niż domyślna wartość VeraCrypt. Należy pamiętać, że jeśli hasło nie jest wystarczająco silne, może to prowadzić do osłabienia zabezpieczeń.\n\nCzy potwierdzasz użycie silnego hasła?</entry>
<entry lang="pl" key="PIM_ARGON2_REQUIRE_LONG_PASSWORD">Hasło musi zawierać przynajmniej 20 albo więcej znaków do używania określonego PIM Argon2.\nKrótszych haseł można używać tylko wtedy, gdy PIM Argon2 ma wartość 12 lub większą.</entry>
<entry lang="pl" key="LINUX_PREF_MOUNT_NTFS_WITH_NTFS3">Podłączaj wolumeny NTFS za pomocą sterownika ntfs3 jądra systemu Linux</entry>
<entry lang="pl" key="LINUX_PREF_MOUNT_NTFS_WITH_NTFS3_HELP">Tylko system Linux. Po włączeniu tej opcji VeraCrypt skanuje odszyfrowane urządzenie wirtualne za pomocą blkid -p i podłącza wykryte systemy plików NTFS za pomocą sterownika NTFS3 zamiast domyślnego NTFS. Jeśli wykrycie NTFS się nie powiedzie, VeraCrypt użyje standardowego automatycznego wyboru systemu plików. Jeśli NTFS3 jest niedostępny lub zablokowany przez dystrybucję, podłączenie może się nie powieść. To opcjonalne ustawienie pozwala uniknąć zawieszeń w trybie uśpienia lub hibernacji spowodowanych przez zamrożone systemy plików FUSE w przestrzeni użytkownika.</entry>
<entry lang="pl" key="LINUX_PREF_MOUNT_NTFS_WITH_KERNEL_DRIVER">Podłącz wolumeny NTFS za pomocą sterownika systemu Linux w jądrze</entry>
<entry lang="pl" key="LINUX_PREF_MOUNT_NTFS_WITH_KERNEL_DRIVER_HELP">Tylko system Linux. Po włączeniu i braku jawnego typu systemu plików, VeraCrypt skanuje odszyfrowane urządzenie wirtualne za pomocą blkid -p i podłącza wykryte systemy plików NTFS za pomocą dostępnego sterownika NTFS w jądrze, pomijając programy pomocnicze podłączania, takie jak ntfs-3g. VeraCrypt używa ntfs, gdy zostanie on jednoznacznie rozpoznany jako nowoczesny sterownik odczytu/zapisu albo jest oczekiwany w jądrze Linuksa 7.1 lub nowszym, a w przeciwnym razie używa ntfs3. Jeśli wykrycie NTFS się nie powiedzie, VeraCrypt użyje standardowego wyboru automatycznego systemu plików. Jeśli żaden obsługiwany sterownik NTFS w jądrze nie jest dostępny lub możliwy do załadowania, podłączenie kończy się niepowodzeniem. To ustawienie opcjonalne pozwala uniknąć zawieszeń w trybie uśpienia lub hibernacji spowodowanych przez zamrożone systemy plików FUSE w przestrzeni użytkownika.</entry>
<entry lang="pl" key="LINUX_KERNEL_NTFS_DRIVER_UNAVAILABLE">Brak obsługiwanego sterownika NTFS w jądrze lub możliwości załadowania go. Aby użyć domyślnego backendu NTFS w systemie, wyłącz preferencję sterownika NTFS jądra lub jawnie nie żądaj NTFS z jądra.</entry>
<entry lang="pl" key="LINUX_EMERGENCY_UNMOUNT_WARNING">Nie udało się wykonać normalnego odłączenia wolumenu {0}. Może się to zdarzyć, gdy programy nadal mają otwarte pliki lub katalogi na wolumenie lub gdy urządzenie bazowe zostało rozłączone, a podłączenie stało się nieaktualne.\n\nJeśli urządzenie jest nadal podłączone, wybierz opcję „Nie”, zamknij programy korzystające z wolumenu i spróbuj ponownie odłączyć.\n\nJeśli urządzenie zostało rozłączone lub podłączenie jest nieaktualne, VeraCrypt może podjąć próbę awaryjnego czyszczenia poprzez leniwe odłączenie systemu plików i usunięcie lub zaplanowanie usunięcia obiektów jądra VeraCrypt. Oczekujące zapisy mogły się nie powieść, dane mogły zostać utracone, a czyszczenie może pozostać w toku do momentu zamknięcia otwartych plików przez programy. Sprawdź system plików za pomocą fsck lub odpowiedniego narzędzia naprawczego przed ponownym użyciem.\n\nKontynuować?</entry>
<entry lang="pl" key="LINUX_EMERGENCY_UNMOUNTED">Rozpoczęto awaryjne czyszczenie wolumenu {0}. Jeśli wolumen był rozłączony, podłączenie było nieaktualne lub występowały oczekujące operacje zapisu, sprawdź system plików za pomocą fsck lub odpowiedniego narzędzia naprawczego przed ponownym użyciem.</entry>
<entry lang="pl" key="FORMAT_STAGE_WRITING_DATA">Tworzenie danych wolumenu. Proszę czekać.</entry>
+42 -45
View File
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<VeraCrypt>
<localization prog-version="1.26.28">
<localization prog-version="1.26.29">
<language langid="pt-br" name="Português-Brasil" en-name="Portuguese (Brazil)" version="0.2.0" translators="Thiago C. L. Mendes, Lecidio S. Alencar , Lucas C. Ferreira, Daniel Dias Rodrigues, Transifex contributors" />
<font lang="pt-br" class="normal" size="11" face="padrão" />
<font lang="pt-br" class="bold" size="13" face="Arial" />
@@ -1517,10 +1517,6 @@
<entry lang="pt-br" key="LINUX_MOUNTET_HINT">O sistema de arquivos do dispositivo selecionado está atualmente montado. Por favor, desmonte '{0}' antes de continuar.</entry>
<entry lang="pt-br" key="LINUX_HIDDEN_PASS_NO_DIFF">O volume oculto não pode ter a mesma senha, PIM e arquivos-chave que o volume externo.</entry>
<entry lang="pt-br" key="LINUX_NOT_FAT_HINT">Por favor, observe que o volume não será formatado com um sistema de arquivos FAT e, portanto, pode ser necessário instalar drivers adicionais do sistema de arquivos em plataformas diferentes de {0}, os quais permitirão montar o volume.</entry>
<entry lang="pt-br" key="LINUX_ERROR_SIZE_HIDDEN_VOL">Erro: O volume oculto a ser criado é maior que {0} TB ({1} GB).\n\nSoluções possíveis:\n- Crie um contêiner/partição menor que {0} TB.\n</entry>
<entry lang="pt-br" key="LINUX_MAX_SIZE_HINT">- Use uma unidade com setores de 4096 bytes para poder criar volumes ocultos baseados em partição/dispositivo de até 16 TB.</entry>
<entry lang="pt-br" key="LINUX_DOT_LF">.\n</entry>
<entry lang="pt-br" key="LINUX_NOT_SUPPORTED"> (não suportado pelos componentes disponíveis nesta plataforma).\n</entry>
<entry lang="pt-br" key="LINUX_KERNEL_OLD">Seu sistema usa uma versão antiga do kernel Linux.\n\nDevido a um erro no kernel Linux, seu sistema pode parar de responder ao gravar dados em um volume VeraCrypt. Esse problema pode ser resolvido atualizando o kernel para a versão 2.6.24 ou posterior.</entry>
<entry lang="pt-br" key="LINUX_VOL_UNMOUNTED">O volume {0} foi desmontado.</entry>
<entry lang="pt-br" key="LINUX_VOL_MOUNTED">O volume {0} foi montado.</entry>
@@ -1647,46 +1643,47 @@
<entry lang="pt-br" key="IDC_DISABLE_SCREEN_PROTECTION">Desativar proteção contra capturas de tela e gravação de tela</entry>
<entry lang="pt-br" key="DISABLE_SCREEN_PROTECTION_WARNING">AVISO: Desativar a proteção de tela reduz significativamente a segurança. Ative esta opção SOMENTE se você tiver uma necessidade específica de capturar a interface do VeraCrypt. Isso pode expor dados sensíveis a ferramentas de captura de tela e recursos de gravação, como o Windows 11 Recall.</entry>
<entry lang="pt-br" key="MEMORY_COST">Custo de Memória</entry>
<entry lang="en" key="IDT_KDF_ALGO">KDF Algorithm</entry>
<entry lang="en" key="IDD_PREFERENCES_TAB_GENERAL">General</entry>
<entry lang="en" key="IDD_PREFERENCES_TAB_ACTIONS">Actions</entry>
<entry lang="en" key="IDD_PREFERENCES_TAB_PASSWORD">Password</entry>
<entry lang="en" key="IDC_SECURE_DESKTOP_ENABLE_IME">Enable Input Method Editor (IME) in Secure Desktop</entry>
<entry lang="en" key="ENABLE_IME_IN_SECURE_DESKTOP_WARNING">WARNING: Enable this option only if you are encountering issues when selecting Keyfiles/Tokens under Secure Desktop.</entry>
<entry lang="en" key="ERR_KEY_DERIVATION_FAILED">Key derivation failed. This may be caused by insufficient memory or an interrupted operation.</entry>
<entry lang="en" key="EFI_MS_BOOT_LOADER_RESTORE_FAILED">The system partition/drive is already decrypted, but the EFI Microsoft boot loader path was not restored to the Windows Boot Manager. Only the EFI boot files need repair. Use the VeraCrypt Rescue Disk repair option, or boot Windows recovery media and run 'bcdboot W:\\Windows /s S: /f UEFI' after replacing W: with the Windows volume drive letter and S: with the EFI System Partition drive letter. Path:</entry>
<entry lang="en" key="EFI_FALLBACK_BOOT_LOADER_STILL_VERACRYPT">The system partition/drive is already decrypted, but the EFI fallback boot loader path still contains the VeraCrypt Boot Loader. Only the EFI boot files need repair. Use the VeraCrypt Rescue Disk repair option, or boot Windows recovery media and run 'bcdboot W:\\Windows /s S: /f UEFI' after replacing W: with the Windows volume drive letter and S: with the EFI System Partition drive letter. Path:</entry>
<entry lang="en" key="IDM_REPAIR_EFI_BOOT_LOADER">Repair EFI Boot Loader...</entry>
<entry lang="en" key="CONFIRM_REPAIR_EFI_BOOT_LOADER">VeraCrypt will restore the Windows EFI boot loader paths and remove VeraCrypt EFI boot entries and files.\n\nUse this only after the system partition/drive is fully decrypted and Windows can boot without system encryption.\n\nDo you want to continue?</entry>
<entry lang="en" key="EFI_BOOT_LOADER_FILE_READ_FAILED">The EFI boot loader file could not be read completely:</entry>
<entry lang="en" key="EFI_BOOT_LOADER_FILE_TOO_LARGE">The EFI boot loader file is unexpectedly large and was not inspected:</entry>
<entry lang="en" key="EFI_BOOT_LOADER_NVRAM_CLEANUP_FAILED">The system partition/drive is already decrypted and the EFI boot loader files were restored, but VeraCrypt could not remove one or more VeraCrypt firmware boot entries. The VeraCrypt EFI files were left in place so any remaining firmware entry still points to an existing loader. Retry as Administrator or remove the VeraCrypt boot entry from firmware setup after confirming Windows Boot Manager starts normally.</entry>
<entry lang="en" key="EFI_BOOT_LOADER_REPAIR_BLOCKED">The EFI boot loader cannot be repaired while system encryption or decryption is active or incomplete. Complete or resume the pending system encryption/decryption process before retrying.</entry>
<entry lang="en" key="EFI_BOOT_LOADER_REPAIR_NOT_APPLICABLE">This repair action is available only on systems booting in UEFI mode from a GPT system partition.</entry>
<entry lang="en" key="EFI_BOOT_LOADER_REPAIR_SUCCESS">The EFI boot loader has been repaired successfully.</entry>
<entry lang="en" key="PIM_ARGON2_HELP">PIM (Personal Iterations Multiplier) controls the memory and time costs used by Argon2id header key derivation as follows:\n Memory = min(64 MiB + ((PIM - 1) x 32 MiB), 1024 MiB)\n Iterations = 3 + ((PIM - 1) / 3) for PIM 31 or lower, then 13 + (PIM - 31)\n\nWhen left empty or set to 0, VeraCrypt will use the default Argon2 PIM (12), which uses 416 MiB of memory and 6 iterations.\n\nWhen the password is less than 20 characters, Argon2 PIM can't be smaller than 12 in order to maintain a minimal security level.\nWhen the password is 20 characters or more, Argon2 PIM can be set to any value.\n\nAn Argon2 PIM larger than 12 increases memory usage up to 1024 MiB and then increases iterations. This will lead to slower mounting. A small Argon2 PIM (less than 12) will lead to quicker mounting but it can reduce security if the password is not strong enough.</entry>
<entry lang="en" key="PIM_ARGON2_LARGE_WARNING">You have chosen an Argon2 PIM value that is larger than VeraCrypt default value.\nPlease note that this can require more memory and lead to much slower mounting.</entry>
<entry lang="en" key="PIM_ARGON2_SMALL_WARNING">You have chosen an Argon2 PIM value that is smaller than the default VeraCrypt value. Please note that if your password is not strong enough, this could lead to weaker security.\n\nDo you confirm that you are using a strong password?</entry>
<entry lang="en" key="PIM_ARGON2_REQUIRE_LONG_PASSWORD">Password must contain 20 or more characters in order to use the specified Argon2 PIM.\nShorter passwords can only be used if the Argon2 PIM is 12 or greater.</entry>
<entry lang="en" key="LINUX_PREF_MOUNT_NTFS_WITH_NTFS3">Mount NTFS volumes with the Linux kernel ntfs3 driver</entry>
<entry lang="en" key="LINUX_PREF_MOUNT_NTFS_WITH_NTFS3_HELP">Linux only. When enabled, VeraCrypt probes the decrypted virtual device with blkid -p and mounts detected NTFS filesystems with ntfs3 instead of the default NTFS backend. If NTFS detection fails, VeraCrypt uses the normal automatic filesystem selection. If ntfs3 is unavailable or blocked by the distribution, mounting may fail. This opt-in option can avoid suspend or hibernate hangs caused by frozen user-space FUSE filesystems.</entry>
<entry lang="en" key="LINUX_EMERGENCY_UNMOUNT_WARNING">Normal unmount of volume {0} failed. This can happen when applications still have files or directories open on the volume, or when the backing device was disconnected and the mount became stale.\n\nIf the device is still connected, choose No, close applications using the volume, and try unmounting again.\n\nIf the device was disconnected or the mount is stale, VeraCrypt can attempt emergency cleanup by lazy-detaching the filesystem and removing or scheduling removal of VeraCrypt kernel objects. Pending writes may have failed, data may be lost, and cleanup may remain pending until applications close open files. Check the filesystem with fsck or the appropriate repair tool before using it again.\n\nContinue?</entry>
<entry lang="en" key="LINUX_EMERGENCY_UNMOUNTED">Emergency cleanup for volume {0} has been initiated. If the volume was disconnected, the mount was stale, or there were pending writes, check the filesystem with fsck or the appropriate repair tool before using it again.</entry>
<entry lang="en" key="FORMAT_STAGE_WRITING_DATA">Creating volume data. Please wait.</entry>
<entry lang="en" key="FORMAT_STAGE_WRITING_BACKUP_HEADER">Finalizing volume creation: writing backup header.</entry>
<entry lang="en" key="FORMAT_STAGE_FLUSHING_DATA">Finalizing volume creation: flushing data to disk. This can take several minutes on large volumes or slow/USB storage.</entry>
<entry lang="en" key="FORMAT_STAGE_FINISHED">Finalizing volume creation.</entry>
<entry lang="en" key="FORMAT_STAGE_ABORTED">Volume creation has been aborted.</entry>
<entry lang="en" key="FORMAT_STAGE_ERROR">Volume creation failed.</entry>
<entry lang="en" key="FORMAT_STAGE_PREPARING_TEMP_VOLUME">Finalizing volume creation: mounting temporary volume.</entry>
<entry lang="en" key="FORMAT_STAGE_PREPARING_TEMP_DEVICE">Finalizing volume creation: preparing temporary device.</entry>
<entry lang="en" key="FORMAT_STAGE_CREATING_FILESYSTEM">Finalizing volume creation: creating filesystem using {0}.</entry>
<entry lang="en" key="FORMAT_STAGE_DISMOUNTING_TEMP_VOLUME">Finalizing volume creation: dismounting temporary volume.</entry>
<entry lang="en" key="MACOSX_APFS_SYNTHESIZED_DEVICE">The selected device '{0}' is an APFS synthesized container or volume and cannot be used as a raw VeraCrypt volume host.\n\nSelect the physical APFS store partition{1} instead.</entry>
<entry lang="en" key="MACOSX_DEVICE_SYSTEM_PARTITION">The selected device '{0}' is a macOS system/support partition and cannot be used as a VeraCrypt volume host.</entry>
<entry lang="en" key="MACOSX_APFS_SYSTEM_STORE">The selected APFS physical store '{0}' contains the currently mounted macOS system volume and cannot be used as a VeraCrypt volume host.</entry>
<entry lang="en" key="MACOSX_DEVICE_NOT_WRITABLE">macOS reports the selected device '{0}' as read-only. Select a writable physical partition or disk.</entry>
<entry lang="en" key="MACOSX_APFS_EROFS_HINT">macOS reported the selected device as read-only. If this is an APFS disk, make sure you selected the physical APFS store partition, not an APFS synthesized volume. Use Disk Utility or 'diskutil list' to identify the physical partition, then retry.</entry>
<entry lang="pt-br" key="IDT_KDF_ALGO">Algoritmo KDF</entry>
<entry lang="pt-br" key="IDD_PREFERENCES_TAB_GENERAL">Geral</entry>
<entry lang="pt-br" key="IDD_PREFERENCES_TAB_ACTIONS">Ações</entry>
<entry lang="pt-br" key="IDD_PREFERENCES_TAB_PASSWORD">Senha</entry>
<entry lang="pt-br" key="IDC_SECURE_DESKTOP_ENABLE_IME">Ativar Editor de Método de Entrada (IME) na Área de Trabalho Segura</entry>
<entry lang="pt-br" key="ENABLE_IME_IN_SECURE_DESKTOP_WARNING">AVISO: Ative esta opção somente se você estiver encontrando problemas ao selecionar Arquivos-chave/Tokens na Área de Trabalho Segura.</entry>
<entry lang="pt-br" key="ERR_KEY_DERIVATION_FAILED">Falha na derivação da chave. Isso pode ser causado por memória insuficiente ou por uma operação interrompida.</entry>
<entry lang="pt-br" key="EFI_MS_BOOT_LOADER_RESTORE_FAILED">A partição/unidade do sistema já está descriptografada, mas o caminho do carregador de inicialização EFI da Microsoft não foi restaurado para o Gerenciador de Inicialização do Windows. Apenas os arquivos de inicialização EFI precisam ser reparados. Use a opção de reparo do Disco de Resgate VeraCrypt ou inicialize uma mídia de recuperação do Windows e execute 'bcdboot W:\\Windows /s S: /f UEFI' depois de substituir W: pela letra da unidade do volume do Windows e S: pela letra da unidade da Partição do Sistema EFI. Caminho:</entry>
<entry lang="pt-br" key="EFI_FALLBACK_BOOT_LOADER_STILL_VERACRYPT">A partição/unidade do sistema já está descriptografada, mas o caminho do carregador de inicialização EFI de fallback ainda contém o Carregador de Inicialização do VeraCrypt. Apenas os arquivos de inicialização EFI precisam ser reparados. Use a opção de reparo do Disco de Resgate VeraCrypt ou inicialize uma mídia de recuperação do Windows e execute 'bcdboot W:\\Windows /s S: /f UEFI' depois de substituir W: pela letra da unidade do volume do Windows e S: pela letra da unidade da Partição do Sistema EFI. Caminho:</entry>
<entry lang="pt-br" key="IDM_REPAIR_EFI_BOOT_LOADER">Reparar Carregador de Inicialização EFI...</entry>
<entry lang="pt-br" key="CONFIRM_REPAIR_EFI_BOOT_LOADER">O VeraCrypt restaurará os caminhos do carregador de inicialização EFI do Windows e removerá as entradas e arquivos de inicialização EFI do VeraCrypt.\n\nUse isto somente depois que a partição/unidade do sistema estiver totalmente descriptografada e o Windows puder inicializar sem criptografia do sistema.\n\nDeseja continuar?</entry>
<entry lang="pt-br" key="EFI_BOOT_LOADER_FILE_READ_FAILED">O arquivo do carregador de inicialização EFI não pôde ser lido completamente:</entry>
<entry lang="pt-br" key="EFI_BOOT_LOADER_FILE_TOO_LARGE">O arquivo do carregador de inicialização EFI é inesperadamente grande e não foi inspecionado:</entry>
<entry lang="pt-br" key="EFI_BOOT_LOADER_NVRAM_CLEANUP_FAILED">A partição/unidade do sistema já está descriptografada e os arquivos do carregador de inicialização EFI foram restaurados, mas o VeraCrypt não pôde remover uma ou mais entradas de inicialização do firmware do VeraCrypt. Os arquivos EFI do VeraCrypt foram deixados no lugar para que qualquer entrada de firmware restante ainda aponte para um carregador existente. Tente novamente como Administrador ou remova a entrada de inicialização do VeraCrypt na configuração do firmware depois de confirmar que o Gerenciador de Inicialização do Windows inicia normalmente.</entry>
<entry lang="pt-br" key="EFI_BOOT_LOADER_REPAIR_BLOCKED">O carregador de inicialização EFI não pode ser reparado enquanto a criptografia ou descriptografia do sistema estiver ativa ou incompleta. Conclua ou retome o processo pendente de criptografia/descriptografia do sistema antes de tentar novamente.</entry>
<entry lang="pt-br" key="EFI_BOOT_LOADER_REPAIR_NOT_APPLICABLE">Esta ação de reparo está disponível apenas em sistemas que inicializam em modo UEFI a partir de uma partição de sistema GPT.</entry>
<entry lang="pt-br" key="EFI_BOOT_LOADER_REPAIR_SUCCESS">O carregador de inicialização EFI foi reparado com sucesso.</entry>
<entry lang="pt-br" key="PIM_ARGON2_HELP">PIM (Multiplicador de Iterações Pessoais) controla os custos de memória e tempo usados pela derivação da chave de cabeçalho Argon2id da seguinte forma:\n Memória = min(64 MiB + ((PIM - 1) x 32 MiB), 1024 MiB)\n Iterações = 3 + ((PIM - 1) / 3) para PIM 31 ou menor; depois, 13 + (PIM - 31)\n\nQuando deixado vazio ou definido como 0, o VeraCrypt usará o PIM Argon2 padrão (12), que usa 416 MiB de memória e 6 iterações.\n\nQuando a senha tiver menos de 20 caracteres, o PIM Argon2 não pode ser menor que 12 para manter um nível mínimo de segurança.\nQuando a senha tiver 20 caracteres ou mais, o PIM Argon2 pode ser definido como qualquer valor.\n\nUm PIM Argon2 maior que 12 aumenta o uso de memória até 1024 MiB e depois aumenta as iterações. Isso resultará em uma montagem mais lenta. Um PIM Argon2 pequeno (menor que 12) resultará em uma montagem mais rápida, mas poderá reduzir a segurança caso a senha não seja suficientemente forte.</entry>
<entry lang="pt-br" key="PIM_ARGON2_LARGE_WARNING">Você escolheu um valor de PIM Argon2 maior que o valor padrão do VeraCrypt.\nObserve que isso pode exigir mais memória e resultar em montagem muito mais lenta.</entry>
<entry lang="pt-br" key="PIM_ARGON2_SMALL_WARNING">Você escolheu um valor de PIM Argon2 menor que o valor padrão do VeraCrypt. Observe que, se sua senha não for suficientemente forte, isso poderá reduzir a segurança.\n\nVocê confirma que está usando uma senha forte?</entry>
<entry lang="pt-br" key="PIM_ARGON2_REQUIRE_LONG_PASSWORD">A senha deve conter 20 caracteres ou mais para usar o PIM Argon2 especificado.\nSenhas mais curtas só podem ser usadas se o PIM Argon2 for 12 ou maior.</entry>
<entry lang="pt-br" key="LINUX_PREF_MOUNT_NTFS_WITH_KERNEL_DRIVER">Montar volumes NTFS com um driver Linux integrado ao kernel</entry>
<entry lang="pt-br" key="LINUX_PREF_MOUNT_NTFS_WITH_KERNEL_DRIVER_HELP">Somente Linux. Quando ativada e nenhum tipo explícito de sistema de arquivos tiver sido fornecido, o VeraCrypt examina o dispositivo virtual descriptografado com blkid -p e monta sistemas de arquivos NTFS detectados com um driver NTFS disponível integrado ao kernel, contornando auxiliares de montagem como ntfs-3g. O VeraCrypt usa ntfs quando ele é identificado positivamente como um driver moderno de leitura/gravação ou esperado no Linux 7.1 ou posterior; caso contrário, usa ntfs3. Se a detecção de NTFS falhar, o VeraCrypt usa a seleção automática normal do sistema de arquivos. Se nenhum driver NTFS integrado ao kernel suportado estiver disponível ou puder ser carregado, a montagem falhará. Esta opção, que deve ser ativada explicitamente, pode evitar travamentos ao suspender ou hibernar causados por sistemas de arquivos FUSE congelados em espaço de usuário.</entry>
<entry lang="pt-br" key="LINUX_KERNEL_NTFS_DRIVER_UNAVAILABLE">Nenhum driver NTFS integrado ao kernel suportado está disponível ou pode ser carregado. Para usar o mecanismo NTFS padrão do sistema, desative a preferência de driver NTFS do kernel ou não solicite explicitamente o uso de NTFS pelo kernel.</entry>
<entry lang="pt-br" key="LINUX_EMERGENCY_UNMOUNT_WARNING">Falha na desmontagem normal do volume {0}. Isso pode acontecer quando aplicativos ainda têm arquivos ou diretórios abertos no volume, ou quando o dispositivo subjacente foi desconectado e a montagem ficou inválida.\n\nSe o dispositivo ainda estiver conectado, escolha Não, feche os aplicativos que estejam usando o volume e tente desmontá-lo novamente.\n\nSe o dispositivo foi desconectado ou a montagem está inválida, o VeraCrypt pode tentar uma limpeza de emergência por meio da desmontagem diferida do sistema de arquivos e da remoção ou agendamento de remoção de objetos do kernel do VeraCrypt. Gravações pendentes podem ter falhado, dados podem ser perdidos, e a limpeza pode permanecer pendente até que os aplicativos fechem os arquivos abertos. Verifique o sistema de arquivos com fsck ou a ferramenta de reparo apropriada antes de usá-lo novamente.\n\nContinuar?</entry>
<entry lang="pt-br" key="LINUX_EMERGENCY_UNMOUNTED">A limpeza de emergência do volume {0} foi iniciada. Se o volume foi desconectado, a montagem ficou inválida ou havia gravações pendentes, verifique o sistema de arquivos com fsck ou a ferramenta de reparo apropriada antes de usá-lo novamente.</entry>
<entry lang="pt-br" key="FORMAT_STAGE_WRITING_DATA">Criando dados do volume. Por favor, aguarde.</entry>
<entry lang="pt-br" key="FORMAT_STAGE_WRITING_BACKUP_HEADER">Finalizando a criação do volume: gravando cabeçalho de backup.</entry>
<entry lang="pt-br" key="FORMAT_STAGE_FLUSHING_DATA">Finalizando a criação do volume: sincronizando dados no disco. Isso pode levar vários minutos em volumes grandes ou em armazenamento lento ou USB.</entry>
<entry lang="pt-br" key="FORMAT_STAGE_FINISHED">Finalizando a criação do volume.</entry>
<entry lang="pt-br" key="FORMAT_STAGE_ABORTED">A criação do volume foi abortada.</entry>
<entry lang="pt-br" key="FORMAT_STAGE_ERROR">Falha na criação do volume.</entry>
<entry lang="pt-br" key="FORMAT_STAGE_PREPARING_TEMP_VOLUME">Finalizando a criação do volume: montando volume temporário.</entry>
<entry lang="pt-br" key="FORMAT_STAGE_PREPARING_TEMP_DEVICE">Finalizando a criação do volume: preparando dispositivo temporário.</entry>
<entry lang="pt-br" key="FORMAT_STAGE_CREATING_FILESYSTEM">Finalizando a criação do volume: criando sistema de arquivos usando {0}.</entry>
<entry lang="pt-br" key="FORMAT_STAGE_DISMOUNTING_TEMP_VOLUME">Finalizando a criação do volume: desmontando volume temporário.</entry>
<entry lang="pt-br" key="MACOSX_APFS_SYNTHESIZED_DEVICE">O dispositivo selecionado '{0}' é um contêiner ou volume APFS sintetizado e não pode ser usado como host de volume VeraCrypt em modo bruto.\n\nSelecione a partição física de armazenamento APFS{1} em vez disso.</entry>
<entry lang="pt-br" key="MACOSX_DEVICE_SYSTEM_PARTITION">O dispositivo selecionado '{0}' é uma partição de sistema/suporte do macOS e não pode ser usado como host de volume VeraCrypt.</entry>
<entry lang="pt-br" key="MACOSX_APFS_SYSTEM_STORE">O armazenamento físico APFS selecionado '{0}' contém o volume de sistema macOS atualmente montado e não pode ser usado como host de volume VeraCrypt.</entry>
<entry lang="pt-br" key="MACOSX_DEVICE_NOT_WRITABLE">O macOS informa que o dispositivo selecionado '{0}' é somente leitura. Selecione uma partição física ou disco gravável.</entry>
<entry lang="pt-br" key="MACOSX_APFS_EROFS_HINT">O macOS informou que o dispositivo selecionado é somente leitura. Se for um disco APFS, certifique-se de ter selecionado a partição física de armazenamento APFS, não um volume APFS sintetizado. Use o Utilitário de Disco ou 'diskutil list' para identificar a partição física e tente novamente.</entry>
</localization>
<xs:schema attributeFormDefault="unqualified" elementFormDefault="qualified" xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:element name="VeraCrypt">
+5 -8
View File
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<VeraCrypt>
<localization prog-version="1.26.28">
<localization prog-version="1.26.29">
<language langid="ro" name="Română" en-name="Romanian" version="2.0.0" translators="Barna Cosmin Marian" />
<font lang="ro" class="normal" size="11" face="default" />
<font lang="ro" class="bold" size="13" face="Arial" />
@@ -181,7 +181,7 @@
<entry lang="ro" key="IDC_TRAVEL_OPEN_EXPLORER">Deschidere fereastră &amp;Explorer la volumul montat</entry>
<entry lang="ro" key="IDC_TRAV_CACHE_PASSWORDS">&amp;Păstrare parolă în memorie</entry>
<entry lang="ro" key="IDC_TRUECRYPT_MODE">Mod TrueCrypt</entry>
<entry lang="ro" key="IDC_UNMOUNTALL">&amp;Demontare toate</entry>
<entry lang="ro" key="IDC_UNMOUNTALL">Demontare &amp;toate</entry>
<entry lang="ro" key="IDC_VOLUME_PROPERTIES">Proprietăți &amp;volum</entry>
<entry lang="ro" key="IDC_VOLUME_TOOLS">U&amp;nelte volum</entry>
<entry lang="ro" key="IDC_WIPE_CACHE">&amp;Uitare parole</entry>
@@ -1517,10 +1517,6 @@
<entry lang="ro" key="LINUX_MOUNTET_HINT">Sistemul de fișiere al dispozitivului selectat este montat acum. Demontați „{0}” înainte de a continua.</entry>
<entry lang="ro" key="LINUX_HIDDEN_PASS_NO_DIFF">Volumul ascuns nu poate avea aceeași parolă, MIP și fișiere-cheie ca și volumul exterior.</entry>
<entry lang="ro" key="LINUX_NOT_FAT_HINT">Volumul nu va fi formatat cu un sistem de fișiere FAT și, prin urmare, vi se poate solicita să instalați drivere suplimentare pe alte platforme decât {0}, care vă vor permite să montați volumul.</entry>
<entry lang="ro" key="LINUX_ERROR_SIZE_HIDDEN_VOL">Eroare: volumul ascuns care trebuie creat este mai mare de {0} TiB ({1} GiB).\n\nSoluții posibile:\n- Creați un container/partiție mai mică de {0} TiB.\n</entry>
<entry lang="ro" key="LINUX_MAX_SIZE_HINT">- Utilizați o unitate cu sectoare de 4096 de baiți pentru a putea crea volume ascunse de partiții/dispozitive găzduite de până la 16 TiB.</entry>
<entry lang="ro" key="LINUX_DOT_LF">.\n</entry>
<entry lang="ro" key="LINUX_NOT_SUPPORTED"> (nesuportat de componentele disponibile pe această platformă).\n</entry>
<entry lang="ro" key="LINUX_KERNEL_OLD">Sistemul folosește o versiune veche a nucleului Linux.\n\nDin cauza unei erori în nucleul Linux, este posibil ca sistemul să nu mai răspundă atunci când scrieți date pe un volum VeraCrypt. Această problemă poate fi rezolvată prin actualizarea nucleului la versiunea 2.6.24 sau o versiune ulterioară.</entry>
<entry lang="ro" key="LINUX_VOL_UNMOUNTED">Volumul {0} a fost demontat.</entry>
<entry lang="ro" key="LINUX_VOL_MOUNTED">Volumul {0} a fost montat.</entry>
@@ -1668,8 +1664,9 @@
<entry lang="ro" key="PIM_ARGON2_LARGE_WARNING">Ați ales o valoare MIP Argon2 mai mare decât valoarea implicită din VeraCrypt.\nAcest lucru poate necesita mai multă memorie și poate duce la o montare mult mai lentă.</entry>
<entry lang="ro" key="PIM_ARGON2_SMALL_WARNING">Ați ales o valoare MIP Argon2 mai mică decât valoarea implicită din VeraCrypt. Dacă parola nu este suficient de puternică, acest lucru ar putea duce la o securitate mai slabă.\n\nConfirmați că utilizați o parolă puternică?</entry>
<entry lang="ro" key="PIM_ARGON2_REQUIRE_LONG_PASSWORD">Parola trebuie să conțină 20 sau mai multe caractere pentru a utiliza valoarea MIP Argon2 specificată. Parolele mai scurte pot fi utilizate numai dacă valoarea MIP Argon2 este 12 sau mai mare.</entry>
<entry lang="ro" key="LINUX_PREF_MOUNT_NTFS_WITH_NTFS3">Montare volume NTFS cu driverul ntfs3 din kernelul Linux</entry>
<entry lang="ro" key="LINUX_PREF_MOUNT_NTFS_WITH_NTFS3_HELP">Doar în Linux. Când este activat, VeraCrypt verifică dispozitivul virtual decriptat cu blkid -p și montează sistemele de fișiere NTFS detectate cu ntfs3 în loc de implementarea NTFS implicită. Dacă detectarea NTFS eșuează, VeraCrypt utilizează selecția automată normală a sistemului de fișiere. Dacă ntfs3 nu este disponibil sau este blocat de distribuție, montarea poate eșua. Această posibilitate de alegere poate evita blocările în suspendare sau hibernare cauzate de sistemele de fișiere FUSE înghețate în spațiul utilizatorului.</entry>
<entry lang="en" key="LINUX_PREF_MOUNT_NTFS_WITH_KERNEL_DRIVER">Mount NTFS volumes with an in-kernel Linux driver</entry>
<entry lang="en" key="LINUX_PREF_MOUNT_NTFS_WITH_KERNEL_DRIVER_HELP">Linux only. When enabled and no explicit filesystem type was supplied, VeraCrypt probes the decrypted virtual device with blkid -p and mounts detected NTFS filesystems with an available in-kernel NTFS driver, bypassing mount helpers such as ntfs-3g. VeraCrypt uses ntfs when it is positively identified as a modern read/write driver or expected on Linux 7.1 or later, and otherwise uses ntfs3. If NTFS detection fails, VeraCrypt uses the normal automatic filesystem selection. If no supported in-kernel NTFS driver is available or loadable, mounting fails. This opt-in option can avoid suspend or hibernate hangs caused by frozen user-space FUSE filesystems.</entry>
<entry lang="en" key="LINUX_KERNEL_NTFS_DRIVER_UNAVAILABLE">No supported in-kernel NTFS driver is available or loadable. To use the system default NTFS backend, disable the NTFS kernel-driver preference or do not request kernel NTFS explicitly.</entry>
<entry lang="ro" key="LINUX_EMERGENCY_UNMOUNT_WARNING">Demontarea normală a volumului {0} a eșuat. Aceasta poate apărea când aplicațiile au încă fișiere sau foldere deschise pe volum sau când dispozitivul respectiv a fost deconectat și montarea a devenit învechită.\n\nDacă dispozitivul este încă conectat, alegeți Nu, închideți aplicațiile care folosesc volumul și reîncercați demontarea.\n\nDacă dispozitivul a fost deconectat sau montarea este învechită, VeraCrypt poate încerca curățarea de urgență prin detașarea întârziată a sistemului de fișiere și eliminarea sau programarea eliminării obiectelor nucleului VeraCrypt. Scrierile în așteptare ar putea eșua, datele s-ar putea pierde, iar curățarea ar putea rămâne în așteptare până când aplicațiile închid fișierele deschise. Verificați sistemul de fișiere cu fsck sau cu instrumentul de reparare corespunzător înainte de a-l utiliza din nou.\n\nContinuați?</entry>
<entry lang="ro" key="LINUX_EMERGENCY_UNMOUNTED">Curățarea de urgență pentru volumul {0} a fost inițiată. Dacă volumul a fost deconectat, montarea era învechită sau existau scrieri în așteptare, verificați sistemul de fișiere cu fsck sau cu instrumentul de reparare corespunzător înainte de a-l reutiliza.</entry>
<entry lang="ro" key="FORMAT_STAGE_WRITING_DATA">Se creează datele volumului. Așteptați.</entry>
+44 -47
View File
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<VeraCrypt>
<localization prog-version="1.26.28">
<language langid="ru" name="Русский" en-name="Russian" version="1.26.24" translators="Dmitry Yerokhin [erodim@mail.ru] (250601)" />
<localization prog-version="1.26.29">
<language langid="ru" name="Русский" en-name="Russian" version="1.26.29" translators="Dmitry Yerokhin [erodim@mail.ru] (260529)" />
<font lang="ru" class="normal" size="11" face="default" />
<font lang="ru" class="bold" size="13" face="Arial" />
<font lang="ru" class="fixed" size="12" face="Lucida Console" />
@@ -158,7 +158,7 @@
<entry lang="ru" key="IDC_PREF_CACHE_PASSWORDS">Кэшировать пароли в памяти драйвера</entry>
<entry lang="ru" key="IDC_PREF_UNMOUNT_INACTIVE">Автоматически размонтировать тома при неактивности в течение</entry>
<entry lang="ru" key="IDC_PREF_UNMOUNT_LOGOFF">завершении сеансов</entry>
<entry lang="ru" key="IDC_PREF_UNMOUNT_SESSION_LOCKED">блокировке сеанса пользователя</entry>
<entry lang="ru" key="IDC_PREF_UNMOUNT_SESSION_LOCKED">блокировке сеанса</entry>
<entry lang="ru" key="IDC_PREF_UNMOUNT_POWERSAVING">входе в энергосбережение</entry>
<entry lang="ru" key="IDC_PREF_UNMOUNT_SCREENSAVER">старте экранной заставки</entry>
<entry lang="ru" key="IDC_PREF_FORCE_AUTO_UNMOUNT">Принудительное авторазмонтирование даже при открытых файлах или папках</entry>
@@ -1517,10 +1517,6 @@
<entry lang="ru" key="LINUX_MOUNTET_HINT">Файловая система выбранного устройства сейчас смонтирована. Прежде чем продолжить, размонтируйте '{0}'.</entry>
<entry lang="ru" key="LINUX_HIDDEN_PASS_NO_DIFF">У скрытого тома не может быть тех же пароля, PIM и ключевых файлов, как у внешнего тома</entry>
<entry lang="ru" key="LINUX_NOT_FAT_HINT">Учтите, что том не будет отформатирован с файловой системой FAT, поэтому для монтирования этого тома на платформах, отличных от {0}, может потребоваться установить дополнительные драйверы файловой системы.</entry>
<entry lang="ru" key="LINUX_ERROR_SIZE_HIDDEN_VOL">ОШИБКА: Создаваемый скрытый том больше {0} ТиБ ({1} ГиБ).\n\nВозможные решения:\n- Создайте контейнер/раздел размером менее {0} ТиБ.\n</entry>
<entry lang="ru" key="LINUX_MAX_SIZE_HINT">- Используйте диск с 4096-байтовыми секторами, чтобы можно было создавать на разделах/ устройствах скрытые тома размером до 16 ТиБ</entry>
<entry lang="ru" key="LINUX_DOT_LF">.\n</entry>
<entry lang="ru" key="LINUX_NOT_SUPPORTED"> (не поддерживается компонентами, доступными на этой платформе).\n</entry>
<entry lang="ru" key="LINUX_KERNEL_OLD">Ваша система использует старую версию ядра Linux.\n\nИз-за ошибки в ядре Linux система может перестать отвечать на запросы при записи данных на том VeraCrypt. Эта проблема решается обновлением ядра до версии 2.6.24 или более новой.</entry>
<entry lang="ru" key="LINUX_VOL_UNMOUNTED">Том {0} размонтирован.</entry>
<entry lang="ru" key="LINUX_VOL_MOUNTED">Том {0} смонтирован.</entry>
@@ -1647,46 +1643,47 @@
<entry lang="ru" key="IDC_DISABLE_SCREEN_PROTECTION">Отключить защиту от создания скриншотов и записи экрана</entry>
<entry lang="ru" key="DISABLE_SCREEN_PROTECTION_WARNING">ВНИМАНИЕ: Отключение защиты экрана значительно снижает уровень безопасности. Включайте эту опцию ТОЛЬКО при реальной необходимости сделать снимок экрана с интерфейсом VeraCrypt. Это может привести к утечке конфиденциальных данных через средства создания скриншотов и записи экрана, такие как Recall в Windows 11.</entry>
<entry lang="ru" key="MEMORY_COST">Затраты памяти</entry>
<entry lang="en" key="IDT_KDF_ALGO">KDF Algorithm</entry>
<entry lang="en" key="IDD_PREFERENCES_TAB_GENERAL">General</entry>
<entry lang="en" key="IDD_PREFERENCES_TAB_ACTIONS">Actions</entry>
<entry lang="en" key="IDD_PREFERENCES_TAB_PASSWORD">Password</entry>
<entry lang="en" key="IDC_SECURE_DESKTOP_ENABLE_IME">Enable Input Method Editor (IME) in Secure Desktop</entry>
<entry lang="en" key="ENABLE_IME_IN_SECURE_DESKTOP_WARNING">WARNING: Enable this option only if you are encountering issues when selecting Keyfiles/Tokens under Secure Desktop.</entry>
<entry lang="en" key="ERR_KEY_DERIVATION_FAILED">Key derivation failed. This may be caused by insufficient memory or an interrupted operation.</entry>
<entry lang="en" key="EFI_MS_BOOT_LOADER_RESTORE_FAILED">The system partition/drive is already decrypted, but the EFI Microsoft boot loader path was not restored to the Windows Boot Manager. Only the EFI boot files need repair. Use the VeraCrypt Rescue Disk repair option, or boot Windows recovery media and run 'bcdboot W:\\Windows /s S: /f UEFI' after replacing W: with the Windows volume drive letter and S: with the EFI System Partition drive letter. Path:</entry>
<entry lang="en" key="EFI_FALLBACK_BOOT_LOADER_STILL_VERACRYPT">The system partition/drive is already decrypted, but the EFI fallback boot loader path still contains the VeraCrypt Boot Loader. Only the EFI boot files need repair. Use the VeraCrypt Rescue Disk repair option, or boot Windows recovery media and run 'bcdboot W:\\Windows /s S: /f UEFI' after replacing W: with the Windows volume drive letter and S: with the EFI System Partition drive letter. Path:</entry>
<entry lang="en" key="IDM_REPAIR_EFI_BOOT_LOADER">Repair EFI Boot Loader...</entry>
<entry lang="en" key="CONFIRM_REPAIR_EFI_BOOT_LOADER">VeraCrypt will restore the Windows EFI boot loader paths and remove VeraCrypt EFI boot entries and files.\n\nUse this only after the system partition/drive is fully decrypted and Windows can boot without system encryption.\n\nDo you want to continue?</entry>
<entry lang="en" key="EFI_BOOT_LOADER_FILE_READ_FAILED">The EFI boot loader file could not be read completely:</entry>
<entry lang="en" key="EFI_BOOT_LOADER_FILE_TOO_LARGE">The EFI boot loader file is unexpectedly large and was not inspected:</entry>
<entry lang="en" key="EFI_BOOT_LOADER_NVRAM_CLEANUP_FAILED">The system partition/drive is already decrypted and the EFI boot loader files were restored, but VeraCrypt could not remove one or more VeraCrypt firmware boot entries. The VeraCrypt EFI files were left in place so any remaining firmware entry still points to an existing loader. Retry as Administrator or remove the VeraCrypt boot entry from firmware setup after confirming Windows Boot Manager starts normally.</entry>
<entry lang="en" key="EFI_BOOT_LOADER_REPAIR_BLOCKED">The EFI boot loader cannot be repaired while system encryption or decryption is active or incomplete. Complete or resume the pending system encryption/decryption process before retrying.</entry>
<entry lang="en" key="EFI_BOOT_LOADER_REPAIR_NOT_APPLICABLE">This repair action is available only on systems booting in UEFI mode from a GPT system partition.</entry>
<entry lang="en" key="EFI_BOOT_LOADER_REPAIR_SUCCESS">The EFI boot loader has been repaired successfully.</entry>
<entry lang="en" key="PIM_ARGON2_HELP">PIM (Personal Iterations Multiplier) controls the memory and time costs used by Argon2id header key derivation as follows:\n Memory = min(64 MiB + ((PIM - 1) x 32 MiB), 1024 MiB)\n Iterations = 3 + ((PIM - 1) / 3) for PIM 31 or lower, then 13 + (PIM - 31)\n\nWhen left empty or set to 0, VeraCrypt will use the default Argon2 PIM (12), which uses 416 MiB of memory and 6 iterations.\n\nWhen the password is less than 20 characters, Argon2 PIM can't be smaller than 12 in order to maintain a minimal security level.\nWhen the password is 20 characters or more, Argon2 PIM can be set to any value.\n\nAn Argon2 PIM larger than 12 increases memory usage up to 1024 MiB and then increases iterations. This will lead to slower mounting. A small Argon2 PIM (less than 12) will lead to quicker mounting but it can reduce security if the password is not strong enough.</entry>
<entry lang="en" key="PIM_ARGON2_LARGE_WARNING">You have chosen an Argon2 PIM value that is larger than VeraCrypt default value.\nPlease note that this can require more memory and lead to much slower mounting.</entry>
<entry lang="en" key="PIM_ARGON2_SMALL_WARNING">You have chosen an Argon2 PIM value that is smaller than the default VeraCrypt value. Please note that if your password is not strong enough, this could lead to weaker security.\n\nDo you confirm that you are using a strong password?</entry>
<entry lang="en" key="PIM_ARGON2_REQUIRE_LONG_PASSWORD">Password must contain 20 or more characters in order to use the specified Argon2 PIM.\nShorter passwords can only be used if the Argon2 PIM is 12 or greater.</entry>
<entry lang="ru" key="LINUX_PREF_MOUNT_NTFS_WITH_NTFS3">Монтировать тома NTFS с помощью драйвера ntfs3 ядра Linux</entry>
<entry lang="ru" key="LINUX_PREF_MOUNT_NTFS_WITH_NTFS3_HELP">Только Linux. Если включено, VeraCrypt проверяет расшифрованное виртуальное устройство с помощью blkid -p и монтирует обнаруженные файловые системы NTFS с помощью драйвера ntfs3 вместо стандартного NTFS-бэкенда. Если NTFS не удалось определить, VeraCrypt использует обычный автоматический выбор файловой системы. Если ntfs3 недоступен или заблокирован дистрибутивом, монтирование может завершиться ошибкой. Эта необязательная настройка может предотвратить зависания при ждущем режиме или гибернации из-за замороженных файловых систем FUSE, работающих в пользовательском пространстве.</entry>
<entry lang="en" key="LINUX_EMERGENCY_UNMOUNT_WARNING">Normal unmount of volume {0} failed. This can happen when applications still have files or directories open on the volume, or when the backing device was disconnected and the mount became stale.\n\nIf the device is still connected, choose No, close applications using the volume, and try unmounting again.\n\nIf the device was disconnected or the mount is stale, VeraCrypt can attempt emergency cleanup by lazy-detaching the filesystem and removing or scheduling removal of VeraCrypt kernel objects. Pending writes may have failed, data may be lost, and cleanup may remain pending until applications close open files. Check the filesystem with fsck or the appropriate repair tool before using it again.\n\nContinue?</entry>
<entry lang="en" key="LINUX_EMERGENCY_UNMOUNTED">Emergency cleanup for volume {0} has been initiated. If the volume was disconnected, the mount was stale, or there were pending writes, check the filesystem with fsck or the appropriate repair tool before using it again.</entry>
<entry lang="en" key="FORMAT_STAGE_WRITING_DATA">Creating volume data. Please wait.</entry>
<entry lang="en" key="FORMAT_STAGE_WRITING_BACKUP_HEADER">Finalizing volume creation: writing backup header.</entry>
<entry lang="en" key="FORMAT_STAGE_FLUSHING_DATA">Finalizing volume creation: flushing data to disk. This can take several minutes on large volumes or slow/USB storage.</entry>
<entry lang="en" key="FORMAT_STAGE_FINISHED">Finalizing volume creation.</entry>
<entry lang="en" key="FORMAT_STAGE_ABORTED">Volume creation has been aborted.</entry>
<entry lang="en" key="FORMAT_STAGE_ERROR">Volume creation failed.</entry>
<entry lang="en" key="FORMAT_STAGE_PREPARING_TEMP_VOLUME">Finalizing volume creation: mounting temporary volume.</entry>
<entry lang="en" key="FORMAT_STAGE_PREPARING_TEMP_DEVICE">Finalizing volume creation: preparing temporary device.</entry>
<entry lang="en" key="FORMAT_STAGE_CREATING_FILESYSTEM">Finalizing volume creation: creating filesystem using {0}.</entry>
<entry lang="en" key="FORMAT_STAGE_DISMOUNTING_TEMP_VOLUME">Finalizing volume creation: dismounting temporary volume.</entry>
<entry lang="en" key="MACOSX_APFS_SYNTHESIZED_DEVICE">The selected device '{0}' is an APFS synthesized container or volume and cannot be used as a raw VeraCrypt volume host.\n\nSelect the physical APFS store partition{1} instead.</entry>
<entry lang="en" key="MACOSX_DEVICE_SYSTEM_PARTITION">The selected device '{0}' is a macOS system/support partition and cannot be used as a VeraCrypt volume host.</entry>
<entry lang="en" key="MACOSX_APFS_SYSTEM_STORE">The selected APFS physical store '{0}' contains the currently mounted macOS system volume and cannot be used as a VeraCrypt volume host.</entry>
<entry lang="en" key="MACOSX_DEVICE_NOT_WRITABLE">macOS reports the selected device '{0}' as read-only. Select a writable physical partition or disk.</entry>
<entry lang="en" key="MACOSX_APFS_EROFS_HINT">macOS reported the selected device as read-only. If this is an APFS disk, make sure you selected the physical APFS store partition, not an APFS synthesized volume. Use Disk Utility or 'diskutil list' to identify the physical partition, then retry.</entry>
<entry lang="ru" key="IDT_KDF_ALGO">Алгоритм формирования ключа</entry>
<entry lang="ru" key="IDD_PREFERENCES_TAB_GENERAL">Общие</entry>
<entry lang="ru" key="IDD_PREFERENCES_TAB_ACTIONS">Действия</entry>
<entry lang="ru" key="IDD_PREFERENCES_TAB_PASSWORD">Пароль</entry>
<entry lang="ru" key="IDC_SECURE_DESKTOP_ENABLE_IME">Разрешить редактор методов ввода (IME) на безопасном рабочем столе</entry>
<entry lang="ru" key="ENABLE_IME_IN_SECURE_DESKTOP_WARNING">ВНИМАНИЕ: Включайте эту опцию только в случае проблем при выборе ключевых файлов/токенов на безопасном рабочем столе.</entry>
<entry lang="ru" key="ERR_KEY_DERIVATION_FAILED">Ошибка формирования ключа. Это может быть вызвано нехваткой памяти или прерыванием операции.</entry>
<entry lang="ru" key="EFI_MS_BOOT_LOADER_RESTORE_FAILED">Системный раздел/диск уже расшифрован, но путь к загрузчику Microsoft EFI не был восстановлен в диспетчере загрузки Windows. Нужно восстановить только загрузочные файлы EFI. Воспользуйтесь диском восстановления VeraCrypt (Rescue Disk) или загрузите носитель для восстановления Windows и выполните 'bcdboot W:\\Windows /s S: /f UEFI' после замены W: на букву диска тома Windows, а S: на букву диска системного раздела EFI. Путь:</entry>
<entry lang="ru" key="EFI_FALLBACK_BOOT_LOADER_STILL_VERACRYPT">Системный раздел/диск уже расшифрован, но путь к резервному загрузчику EFI по-прежнему содержит загрузчик VeraCrypt. Нужно восстановить только загрузочные файлы EFI. Воспользуйтесь диском восстановления VeraCrypt (Rescue Disk) или загрузите носитель для восстановления Windows и выполните 'bcdboot W:\\Windows /s S: /f UEFI' после замены W: на букву диска тома Windows, а S: на букву диска системного раздела EFI. Путь:</entry>
<entry lang="ru" key="IDM_REPAIR_EFI_BOOT_LOADER">Восстановление загрузчика EFI...</entry>
<entry lang="ru" key="CONFIRM_REPAIR_EFI_BOOT_LOADER">VeraCrypt восстановит пути к загрузчику Windows EFI и удалит загрузочные записи и файлы VeraCrypt EFI.\n\nИспользуйте это только после того, как системный раздел/диск будет полностью расшифрован и Windows сможет загружаться без шифрования системы.\n\nПродолжить?</entry>
<entry lang="ru" key="EFI_BOOT_LOADER_FILE_READ_FAILED">Не удалось полностью прочитать файл загрузчика EFI:</entry>
<entry lang="ru" key="EFI_BOOT_LOADER_FILE_TOO_LARGE">Файл загрузчика EFI оказался неожиданно большим и не был проверен:</entry>
<entry lang="ru" key="EFI_BOOT_LOADER_NVRAM_CLEANUP_FAILED">Системный раздел/диск уже расшифрован и файлы загрузчика EFI восстановлены, но не удалось удалить одну или несколько загрузочных записей VeraCrypt. Файлы VeraCrypt EFI остались на месте, поэтому любая оставшаяся запись в прошивке по-прежнему указывает на существующий загрузчик. Повторите попытку от имени администратора или удалите загрузочную запись VeraCrypt из программы установки, убедившись, что диспетчер загрузки Windows запускается нормально.</entry>
<entry lang="ru" key="EFI_BOOT_LOADER_REPAIR_BLOCKED">Загрузчик EFI не может быть восстановлен, пока активно или не завершено шифрование или дешифрование системы. Перед повторной попыткой завершите или возобновите ожидающий выполнения процесс шифрования/дешифрования системы.</entry>
<entry lang="ru" key="EFI_BOOT_LOADER_REPAIR_NOT_APPLICABLE">Это восстанавливающее действие доступно только в системах, загружающихся в режиме UEFI с системного раздела GPT.</entry>
<entry lang="ru" key="EFI_BOOT_LOADER_REPAIR_SUCCESS">Загрузчик EFI успешно восстановлен.</entry>
<entry lang="ru" key="PIM_ARGON2_HELP">PIM (множитель персональных итераций) управляет затратами памяти и времени при формировании ключа заголовка Argon2id следующим образом:\n Память = min(64 МиБ + ((PIM - 1) x 32 МиБ), 1024 МиБ)\n Итерации = 3 + ((PIM - 1) / 3) для PIM 31 или меньше, затем 13 + (PIM - 31)\n\nЕсли пусто или 0, VeraCrypt будет применять стандартный для PIM Argon2 (12), использующий 416 МиБ памяти и 6 итераций.\n\nЕсли пароль короче 20 символов, PIM в Argon2 не может быть меньше 12, чтобы поддерживать минимальный уровень безопасности.\nЕсли в пароле не менее 20 символов, PIM Argon2 может быть установлен в любое значение.\n\nРазмер PIM Argon2, превышающий 12, увеличивает использование памяти до 1024 МиБ, а затем увеличивает количество итераций, что ведёт к замедлению монтирования. Небольшой PIM Argon2 (менее 12) ускоряет монтирование, но может снизить безопасность, если пароль недостаточно надёжен.</entry>
<entry lang="ru" key="PIM_ARGON2_LARGE_WARNING">Выбрано значение PIM Argon2, превышающее стандартное.\nЭто может потребовать больше памяти и значительно замедлить монтирование.</entry>
<entry lang="ru" key="PIM_ARGON2_SMALL_WARNING">Выбрано значение PIM Argon2 меньше стандартного. Если пароль недостаточно надёжен, это может привести к ослаблению безопасности.\n\nПодтверждаете, что используете надёжный пароль?</entry>
<entry lang="ru" key="PIM_ARGON2_REQUIRE_LONG_PASSWORD">Чтобы использовать указанный PIM Argon2, пароль должен быть не короче 20 символов.\nБолее короткие пароли можно использовать, только если PIM Argon2 равен 12 или больше.</entry>
<entry lang="ru" key="LINUX_PREF_MOUNT_NTFS_WITH_KERNEL_DRIVER">Монтировать тома NTFS с помощью встроенного драйвера Linux</entry>
<entry lang="ru" key="LINUX_PREF_MOUNT_NTFS_WITH_KERNEL_DRIVER_HELP">Только для Linux. Если включён этот параметр и явно не указан тип файловой системы, VeraCrypt проверяет расшифрованное виртуальное устройство с помощью blkid -p и монтирует обнаруженные файловые системы NTFS с помощью доступного встроенного драйвера NTFS, минуя помощников по монтированию, например ntfs-3g. VeraCrypt использует ntfs, когда он идентифицирован как современный драйвер чтения/записи или ожидается в Linux 7.1 и новее, в противном случае используется ntfs3. Если обнаружение NTFS невозможно, используется обычный автоматический выбор файловой системы. Если нет поддерживаемого встроенного драйвера NTFS или его нельзя загрузить, монтирование невозможно. Эта опция позволяет избежать зависания при сне или гибернации из-за заморозки файловых систем FUSE в пользовательском пространстве.</entry>
<entry lang="ru" key="LINUX_KERNEL_NTFS_DRIVER_UNAVAILABLE">Встроенный драйвер NTFS недоступен или не загружается. Чтобы использовать системный бэкенд NTFS по умолчанию, отключите настройки драйвера ядра NTFS или не запрашивайте NTFS ядра явно.</entry>
<entry lang="ru" key="LINUX_EMERGENCY_UNMOUNT_WARNING">Не удалось выполнить обычное размонтирование тома {0}. Это может происходить, когда в приложениях всё ещё открыты находящиеся на томе файлы или папки, или когда устройство резервного копирования было отключено, а процесс монтирования стал устаревшим.\n\nЕсли устройство всё ещё подключено, выберите 'Нет', закройте использующие том приложения и повторите попытку размонтирования.\n\nЕсли устройство отключено или монтирование устарело, VeraCrypt может попытаться выполнить экстренную очистку, отложив отсоединение файловой системы и удалив или запланировав удаление объектов ядра VeraCrypt. Пока в приложениях не будут закрыты открытые файлы, ожидающая запись может завершиться неудачей, данные могут быть потеряны, а очистка может оставаться незавершённой. Перед повторным использованием проверьте файловую систему с помощью fsck или соответствующего средства восстановления.\n\nПродолжить?</entry>
<entry lang="ru" key="LINUX_EMERGENCY_UNMOUNTED">Начата экстренная очистка тома {0}. Если том был отключён, процесс монтирования устарел или есть ожидающие операции записи, проверьте файловую систему с помощью fsck или соответствующего средства восстановления, прежде чем использовать его снова.</entry>
<entry lang="ru" key="FORMAT_STAGE_WRITING_DATA">Создание данных тома, подождите.</entry>
<entry lang="ru" key="FORMAT_STAGE_WRITING_BACKUP_HEADER">Завершение создания тома: запись резервного заголовка.</entry>
<entry lang="ru" key="FORMAT_STAGE_FLUSHING_DATA">Завершение создания тома: сброс данных на диск. При работе с большими томами или медленным/USB-накопителем это может занять несколько минут.</entry>
<entry lang="ru" key="FORMAT_STAGE_FINISHED">Завершение создания тома.</entry>
<entry lang="ru" key="FORMAT_STAGE_ABORTED">Создание тома было прервано.</entry>
<entry lang="ru" key="FORMAT_STAGE_ERROR">Не удалось создать том.</entry>
<entry lang="ru" key="FORMAT_STAGE_PREPARING_TEMP_VOLUME">Завершение создания тома: монтирование временного тома.</entry>
<entry lang="ru" key="FORMAT_STAGE_PREPARING_TEMP_DEVICE">Завершение создания тома: подготовка временного устройства.</entry>
<entry lang="ru" key="FORMAT_STAGE_CREATING_FILESYSTEM">Завершение создания тома: создание файловой системы с помощью {0}.</entry>
<entry lang="ru" key="FORMAT_STAGE_DISMOUNTING_TEMP_VOLUME">Завершение создания тома: размонтирование временного тома.</entry>
<entry lang="ru" key="MACOSX_APFS_SYNTHESIZED_DEVICE">Выбранное устройство '{0}' - это синтезированный контейнер или том APFS, его нельзя использовать в качестве хоста томов VeraCrypt.\n\nВместо этого выберите физический раздел {1} хранилища APFS.</entry>
<entry lang="ru" key="MACOSX_DEVICE_SYSTEM_PARTITION">Выбранное устройство '{0}' - это a системный/вспомогательный раздел macOS, его нельзя использовать в качестве хоста томов VeraCrypt.</entry>
<entry lang="ru" key="MACOSX_APFS_SYSTEM_STORE">Выбранное физическое хранилище APFS '{0}' содержит смонтированный сейчас системный том macOS, его нельзя использовать в качестве хоста томов VeraCrypt.</entry>
<entry lang="ru" key="MACOSX_DEVICE_NOT_WRITABLE">macOS сообщает, что выбранное устройство '{0}' доступно только для чтения. Выберите физический раздел или диск, доступный для записи.</entry>
<entry lang="ru" key="MACOSX_APFS_EROFS_HINT">macOS сообщает, что выбранное устройство доступно только для чтения. Если это диск с файловой системой APFS, убедитесь, что вы выбрали физический раздел хранилища APFS, а не синтезированный том APFS. Используйте дисковую утилиту или 'diskutil list', чтобы определить физический раздел, затем повторите попытку.</entry>
</localization>
<xs:schema attributeFormDefault="unqualified" elementFormDefault="qualified" xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:element name="VeraCrypt">
+4 -7
View File
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<VeraCrypt>
<localization prog-version="1.26.28">
<localization prog-version="1.26.29">
<language langid="sk" name="Slovenčina" en-name="Slovak" version="0.1.0" translators="Kamil David" />
<font lang="sk" class="normal" size="11" face="default" />
<font lang="sk" class="bold" size="13" face="Arial" />
@@ -1517,10 +1517,6 @@
<entry lang="en" key="LINUX_MOUNTET_HINT">The filesystem of the selected device is currently mounted. Please unmount '{0}' before proceeding.</entry>
<entry lang="en" key="LINUX_HIDDEN_PASS_NO_DIFF">The Hidden volume can't have the same password, PIM and keyfiles as the Outer volume</entry>
<entry lang="en" key="LINUX_NOT_FAT_HINT">Please note that the volume will not be formatted with a FAT filesystem and, therefore, you may be required to install additional filesystem drivers on platforms other than {0}, which will enable you to mount the volume.</entry>
<entry lang="en" key="LINUX_ERROR_SIZE_HIDDEN_VOL">Error: The hidden volume to be created is larger than {0} TB ({1} GB).\n\nPossible solutions:\n- Create a container/partition smaller than {0} TB.\n</entry>
<entry lang="en" key="LINUX_MAX_SIZE_HINT">- Use a drive with 4096-byte sectors to be able to create partition/device-hosted hidden volumes up to 16 TB in size</entry>
<entry lang="en" key="LINUX_DOT_LF">.\n</entry>
<entry lang="en" key="LINUX_NOT_SUPPORTED"> (not supported by components available on this platform).\n</entry>
<entry lang="en" key="LINUX_KERNEL_OLD">Your system uses an old version of the Linux kernel.\n\nDue to a bug in the Linux kernel, your system may stop responding when writing data to a VeraCrypt volume. This problem can be solved by upgrading the kernel to version 2.6.24 or later.</entry>
<entry lang="en" key="LINUX_VOL_UNMOUNTED">Volume {0} has been unmounted.</entry>
<entry lang="en" key="LINUX_VOL_MOUNTED">Volume {0} has been mounted.</entry>
@@ -1668,8 +1664,9 @@
<entry lang="en" key="PIM_ARGON2_LARGE_WARNING">You have chosen an Argon2 PIM value that is larger than VeraCrypt default value.\nPlease note that this can require more memory and lead to much slower mounting.</entry>
<entry lang="en" key="PIM_ARGON2_SMALL_WARNING">You have chosen an Argon2 PIM value that is smaller than the default VeraCrypt value. Please note that if your password is not strong enough, this could lead to weaker security.\n\nDo you confirm that you are using a strong password?</entry>
<entry lang="en" key="PIM_ARGON2_REQUIRE_LONG_PASSWORD">Password must contain 20 or more characters in order to use the specified Argon2 PIM.\nShorter passwords can only be used if the Argon2 PIM is 12 or greater.</entry>
<entry lang="en" key="LINUX_PREF_MOUNT_NTFS_WITH_NTFS3">Mount NTFS volumes with the Linux kernel ntfs3 driver</entry>
<entry lang="en" key="LINUX_PREF_MOUNT_NTFS_WITH_NTFS3_HELP">Linux only. When enabled, VeraCrypt probes the decrypted virtual device with blkid -p and mounts detected NTFS filesystems with ntfs3 instead of the default NTFS backend. If NTFS detection fails, VeraCrypt uses the normal automatic filesystem selection. If ntfs3 is unavailable or blocked by the distribution, mounting may fail. This opt-in option can avoid suspend or hibernate hangs caused by frozen user-space FUSE filesystems.</entry>
<entry lang="en" key="LINUX_PREF_MOUNT_NTFS_WITH_KERNEL_DRIVER">Mount NTFS volumes with an in-kernel Linux driver</entry>
<entry lang="en" key="LINUX_PREF_MOUNT_NTFS_WITH_KERNEL_DRIVER_HELP">Linux only. When enabled and no explicit filesystem type was supplied, VeraCrypt probes the decrypted virtual device with blkid -p and mounts detected NTFS filesystems with an available in-kernel NTFS driver, bypassing mount helpers such as ntfs-3g. VeraCrypt uses ntfs when it is positively identified as a modern read/write driver or expected on Linux 7.1 or later, and otherwise uses ntfs3. If NTFS detection fails, VeraCrypt uses the normal automatic filesystem selection. If no supported in-kernel NTFS driver is available or loadable, mounting fails. This opt-in option can avoid suspend or hibernate hangs caused by frozen user-space FUSE filesystems.</entry>
<entry lang="en" key="LINUX_KERNEL_NTFS_DRIVER_UNAVAILABLE">No supported in-kernel NTFS driver is available or loadable. To use the system default NTFS backend, disable the NTFS kernel-driver preference or do not request kernel NTFS explicitly.</entry>
<entry lang="en" key="LINUX_EMERGENCY_UNMOUNT_WARNING">Normal unmount of volume {0} failed. This can happen when applications still have files or directories open on the volume, or when the backing device was disconnected and the mount became stale.\n\nIf the device is still connected, choose No, close applications using the volume, and try unmounting again.\n\nIf the device was disconnected or the mount is stale, VeraCrypt can attempt emergency cleanup by lazy-detaching the filesystem and removing or scheduling removal of VeraCrypt kernel objects. Pending writes may have failed, data may be lost, and cleanup may remain pending until applications close open files. Check the filesystem with fsck or the appropriate repair tool before using it again.\n\nContinue?</entry>
<entry lang="en" key="LINUX_EMERGENCY_UNMOUNTED">Emergency cleanup for volume {0} has been initiated. If the volume was disconnected, the mount was stale, or there were pending writes, check the filesystem with fsck or the appropriate repair tool before using it again.</entry>
<entry lang="en" key="FORMAT_STAGE_WRITING_DATA">Creating volume data. Please wait.</entry>
+63 -66
View File
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<VeraCrypt>
<localization prog-version="1.26.28">
<localization prog-version="1.26.29">
<language langid="sl" name="Slovenščina" en-name="Slovenian" version="0.1.0" translators="Erik David Salam, Sasa Divjak" />
<font lang="sl" class="normal" size="11" face="default" />
<font lang="sl" class="bold" size="13" face="Arial" />
@@ -181,7 +181,7 @@
<entry lang="sl" key="IDC_TRAVEL_OPEN_EXPLORER">&amp;Odpri okno Raziskovalca za priklopljeni nosilec</entry>
<entry lang="sl" key="IDC_TRAV_CACHE_PASSWORDS">&amp;Shrani geslo v pomnilnik gonilnika</entry>
<entry lang="sl" key="IDC_TRUECRYPT_MODE">Način &amp;TrueCrypt</entry>
<entry lang="sl" key="IDC_UNMOUNTALL">&amp;Odklopi vse</entry>
<entry lang="sl" key="IDC_UNMOUNTALL">Odklopi &amp;vse</entry>
<entry lang="sl" key="IDC_VOLUME_PROPERTIES">&amp;Lastnosti nosilca...</entry>
<entry lang="sl" key="IDC_VOLUME_TOOLS">&amp;Orodja za nosilce...</entry>
<entry lang="sl" key="IDC_WIPE_CACHE">&amp;Izbriši predpomnilnik</entry>
@@ -703,7 +703,7 @@
<entry lang="sl" key="VOL_MOUNT_FAILED">Prišlo je do napake pri poskusu priklopa nosilca.</entry>
<entry lang="sl" key="VOL_SEEKING">Napaka pri iskanju lokacije v nosilcu.</entry>
<entry lang="sl" key="VOL_SIZE_WRONG">Napaka: Napačna velikost nosilca.</entry>
<entry lang="sl" key="WARN_QUICK_FORMAT">OPOZORILO: Hitro formatiranje uporabljaj le v naslednjih primerih:\n\n1) The device contains no sensitive data and you do not need plausible deniability.\n2) The device has already been securely and fully encrypted.\n\nAre you sure you want to use Quick Format?</entry>
<entry lang="sl" key="WARN_QUICK_FORMAT">OPOZORILO: Hitro formatiranje uporabljaj le v naslednjih primerih:\n\n1) Naprava ne vsebuje občutljivih podatkov in ne potrebuješ verjetnega zanikanja.\n2) Naprava je že varno in v celoti šifrirana.\n\nAli si prepričan, da želiš uporabiti hitro formatiranje?</entry>
<entry lang="sl" key="CONFIRM_SPARSE_FILE">Dinamični vsebnik je vnaprej dodeljena redka datoteka NTFS, katere fizična velikost (dejanski uporabljen prostor na disku) raste z dodajanjem novih podatkov.\n\nOPOZORILO: Zmogljivost nosilcev, ki gostujejo v redkih datotekah, je znatno slabša od zmogljivosti običajnih nosilcev. Nosilci, ki gostujejo v redkih datotekah, so tudi manj varni, saj je mogoče ugotoviti, kateri sektorji nosilcev so neuporabljeni. Poleg tega nosilci, ki gostujejo v redkih datotekah, ne morejo zagotoviti verjetnega zanikanja (gostujejo skriti nosilec). Upoštevaj tudi, da če se podatki zapišejo v vsebnik redke datoteke, ko v gostiteljskem datotečnem sistemu ni dovolj prostega prostora, se lahko šifrirani datotečni sistem poškoduje.\n\nAli si prepričan, da želiš ustvariti nosilec, ki gostuje v redki datoteki ?</entry>
<entry lang="sl" key="SPARSE_FILE_SIZE_NOTE">Upoštevaj, da bo velikost dinamičnega vsebnika, ki jo poročata Windows in VeraCrypt, vedno enaka njegovi največji velikosti. Če želiš izvedeti trenutno fizično velikost vsebnika (dejanski prostor na disku, ki ga uporablja), z desno miškino tipko klikni datoteko vsebnika (v oknu Windows Raziskovalca, ne v VeraCryptu), nato izberi 'Lastnosti' in si oglej vrednost 'Velikost na disku'. \n\nUpoštevaj tudi, da če premakneš dinamični vsebnik na drug nosilec ali pogon, bo fizična velikost vsebnika povečana do maksimuma. (To lahko preprečiš tako, da ustvariš nov dinamični vsebnik na ciljni lokaciji, ga namestiš in nato premakneš datoteke iz starega vsebnika v novega.)</entry>
<entry lang="sl" key="PASSWORD_CACHE_WIPED_SHORT">Predpomnilnik gesla je zbrisan</entry>
@@ -1076,7 +1076,7 @@
<entry lang="sl" key="FEATURE_REQUIRES_INSTALLATION">Napaka: Ta funkcija zahteva, da je VeraCrypt nameščen v sistemu (VeraCrypt uporabljaš v prenosnem načinu).\n\nProsimo, namesti VeraCrypt in poskusi znova.</entry>
<entry lang="sl" key="WINDOWS_NOT_ON_BOOT_DRIVE_ERROR">OPOZORILO: Zdi se, da Windows ni nameščen na pogonu, s katerega se zažene. To ni podprto.\n\nNadaljuj samo, če si prepričan, da je Windows nameščen na pogonu, s katerega se zaganja.\n\nAli želiš nadaljevati?</entry>
<entry lang="sl" key="TC_BOOT_LOADER_ALREADY_INSTALLED">POZOR: Zagonski nalagalnik VeraCrypt je že nameščen na tvojem sistemskem pogonu!\n\nMožno je, da je drug sistem v vašem računalniku že šifriran.\n\nOPOZORILO: NADALJEVANJE ŠIFRIRANJA TRENUTNO TEKOČEGA SISTEMA LAHKO ONEMOGOČI ZAGON DRUGIH SISTEMOV IN POVEZANI PODATKI SO LAHKO NEDOSTOPNI.\n\nSi prepričan, da želiš nadaljevati?</entry>
<entry lang="sl" key="SYS_LOADER_RESTORE_FAILED">Obnovitev izvirnega sistemskega nalagalnika ni uspela.\n\nUporabi svoj reševalni disk VeraCrypt ('Možnosti popravila' &gt; 'Obnovi izvirni sistemski nalagalnik') ali namestitveni medij Windows, da zamenjaš zagonski nalagalnik VeraCrypt s sistemskim nalagalnikom Windows.</entry>
<entry lang="sl" key="SYS_LOADER_RESTORE_FAILED">Obnovitev izvirnega sistemskega nalagalnika ni uspela.\n\nUporabi svoj reševalni disk VeraCrypt ('Repair Options' &gt; 'Restore original system loader') ali namestitveni medij Windows, da zamenjaš zagonski nalagalnik VeraCrypt s sistemskim nalagalnikom Windows.</entry>
<entry lang="sl" key="SYS_LOADER_UNAVAILABLE_FOR_RESCUE_DISK">Izvirni nalagalnik sistema ne bo shranjen na reševalni disk (verjeten vzrok: manjkajoča varnostna kopija).</entry>
<entry lang="sl" key="ERROR_MBR_PROTECTED">Zapis v sektor MBR ni uspel.\n\nTvoj BIOS je morda konfiguriran za zaščito sektorja MBR. Preveri nastavitve BIOSa za MBR/protivirusno zaščito (pritisni F2, Delete ali Esc po vklopu računalnika).</entry>
<entry lang="sl" key="BOOT_LOADER_FINGERPRINT_CHECK_FAILED">OPOZORILO: Preverjanje prstnega odtisa zagonskega nalagalnika VeraCrypt ni uspelo!\nV tvoj disk je morda posegel napadalec (napad »Evil Maid«).\n\nTo opozorilo se lahko sproži tudi, če si obnovil zagonski nalagalnik VeraCrypt z uporabo reševalnega diska, ustvarjenega z drugo različico VeraCrypt.\n\nSvetujemo ti, da takoj spremeniš svoje geslo, s čimer boš obnovil tudi pravilen zagonski nalagalnik VeraCrypt. Priporočljivo je, da znova namestiš VeraCrypt in sprejmeš ukrepe za preprečitev dostopa do tega računalnika s strani subjektov, ki jim ne zaupaš.</entry>
@@ -1153,7 +1153,7 @@
<entry lang="sl" key="SYSENC_MULTI_BOOT_NONWIN_BOOT_LOADER_HELP">Ali je v glavnem zagonskem zapisu (MBR) nameščen zagonski nalagalnik (ali upravnik zagona), ki ni Windows?\n\nOpomba: Če na primer prva steza zagonskega pogona vsebuje GRUB, LILO, XOSL ali kakšen drug upravnik zagona (zagonski nalagalnik) ki ni od Windows, izberi »Da«.</entry>
<entry lang="sl" key="SYSENC_MULTI_BOOT_OUTCOME_TITLE">Zagon po izboru</entry>
<entry lang="sl" key="CUSTOM_BOOT_MANAGERS_IN_MBR_UNSUPPORTED">VeraCrypt trenutno ne podpira konfiguracij z več zagoni, kjer je v glavnem zagonskem zapisu nameščen zagonski nalagalnik, ki ni sistem Windows.\n\nMožne rešitve:\n\n- Če za zagon Windows in Linux uporabljaš upravnik zagona, premakni zagon upravnika (običajno GRUB) iz glavnega zagonskega zapisa v particijo. Nato znova zaženi ta čarovnik in šifriraj sistemsko particijo/pogon. Upoštevaj, da bo zagonski nalagalnik VeraCrypt postal tvoj primarni zagonski upravnik in ti bo omogočil zagon prvotnega zagonskega upravnika (npr. GRUB) kot sekundarnega zagonskega upravnika (s pritiskom Esc na zaslonu zagonskega nalagalnika VeraCrypt) in tako boš lahko zagnal Linux.</entry>
<entry lang="sl" key="WINDOWS_BOOT_LOADER_HINTS">Če je operacijski sistem, ki se trenutno izvaja, nameščen na zagonski particiji, boš moral vnesti pravilno geslo, potem ko ga šifriraš, tudi če želiš zagnati kateri koli drugi nešifrirani sistem(-e) Windows (saj si bodo delili en šifriran Zagonski nalagalnik/upravljalnik Windows).\n\nV nasprotju s tem, če trenutno delujoči operacijski sistem ni nameščen na zagonski particiji (ali če zagonskega nalagalnika/upravljalnika Windows ne uporablja noben drug sistem), potem, ko šifriraš ta sistem, ti ne bo treba vnesti pravilnega gesla za zagon drugih nešifriranih sistemov -- za zagon nešifriranega sistema boš moral samo pritisniti tipko Esc (če obstaja več nešifriranih sistemov, boš moral tudi izbrati v meniju VeraCrypt Boot Manager, kateri sistem želiš zagnati).\n\nOpomba: Običajno je na zagonsko particijo nameščen prvi nameščen sistem Windows.</entry>
<entry lang="sl" key="WINDOWS_BOOT_LOADER_HINTS">Če je operacijski sistem, ki se trenutno izvaja, nameščen na zagonski particiji, boš moral vnesti pravilno geslo, potem ko ga šifriraš, tudi če želiš zagnati kateri koli drugi nešifrirani sistem(-e) Windows (saj si bodo delili en šifriran zagonski nalagalnik/upravljalnik Windows).\n\nV nasprotju s tem, če trenutno delujoči operacijski sistem ni nameščen na zagonski particiji (ali če zagonskega nalagalnika/upravljalnika Windows ne uporablja noben drug sistem), potem, ko šifriraš ta sistem, ti ne bo treba vnesti pravilnega gesla za zagon drugih nešifriranih sistemov -- za zagon nešifriranega sistema boš moral samo pritisniti tipko Esc (če obstaja več nešifriranih sistemov, boš moral tudi izbrati v meniju upravitelja zagona VeraCrypt, kateri sistem želiš zagnati).\n\nOpomba: Običajno je na zagonsko particijo nameščen prvi nameščen sistem Windows.</entry>
<entry lang="sl" key="SYSENC_PRE_DRIVE_ANALYSIS_TITLE">Šifriranje zaščitenega področja na gostitelju</entry>
<entry lang="sl" key="SYSENC_PRE_DRIVE_ANALYSIS_HELP">Na koncu mnogih pogonov je območje, ki je običajno skrito pred operacijskim sistemom (takšna območja se običajno imenujejo zaščitena območja gostitelja). Nekateri programi pa lahko berejo in zapisujejo podatke iz/na taka področja.\n\nOPOZORILO: Nekateri proizvajalci računalnikov lahko uporabljajo taka področja za shranjevanje orodij in podatkov za RAID, obnovitev sistema, nastavitev sistema, diagnostiko ali druge namene. Če morajo biti takšna orodja ali podatki dostopni pred zagonom, skrito območje NE sme biti šifrirano (zgoraj izberi »Ne«).\n\nAli želiš, da VeraCrypt zazna in šifrira tako skrito območje (če obstaja) na koncu sistemski pogon?</entry>
<entry lang="sl" key="SYSENC_TYPE_PAGE_TITLE">Tip sistemskega šifriranja</entry>
@@ -1165,7 +1165,7 @@
<entry lang="sl" key="SYSENC_DRIVE_ANALYSIS_TITLE">Odkrivanje skritih sektorjev</entry>
<entry lang="sl" key="SYSENC_DRIVE_ANALYSIS_INFO">Počakaj, da VeraCrypt zazna morebitne skrite sektorje na koncu sistemskega pogona. Upoštevaj, da lahko traja dolgo časa, da se dokonča.\n\nOpomba: V zelo redkih primerih se lahko na nekaterih računalnikih sistem med tem postopkom zaznavanja neha odzivati. Če se to zgodi, znova zaženi računalnik, zaženi VeraCrypt, ponovi prejšnje korake, vendar preskoči ta postopek zaznavanja. Upoštevaj, da te težave ne povzroča napaka v VeraCryptu.</entry>
<entry lang="sl" key="SYS_ENCRYPTION_SPAN_TITLE">Področje za šifriranje</entry>
<entry lang="sl" key="SYS_ENCRYPTION_SPAN_WHOLE_SYS_DRIVE_HELP">Izberi to možnost, če želiš šifrirati celoten pogon, na katerem je nameščen trenutno delujoč sistem Windows. Celoten pogon, vključno z vsemi njegovimi particijami, bo šifriran, razen prve steze, kjer bo VeraCrypt Boot Loader. Vsakdo, ki želi dostopati do sistema, nameščenega na disku, ali datotek, shranjenih na disku, bo moral vsakič pred zagonom sistema vnesti pravilno geslo. Te možnosti ni mogoče uporabiti za šifriranje sekundarnega ali zunanjega pogona, če Windows ni nameščen na njem in se ne zažene z njega.</entry>
<entry lang="sl" key="SYS_ENCRYPTION_SPAN_WHOLE_SYS_DRIVE_HELP">Izberi to možnost, če želiš šifrirati celoten pogon, na katerem je nameščen trenutno delujoč sistem Windows. Celoten pogon, vključno z vsemi njegovimi particijami, bo šifriran, razen prve steze, kjer bo zagonski nalagalnik VeraCrypt. Vsakdo, ki želi dostopati do sistema, nameščenega na disku, ali datotek, shranjenih na disku, bo moral vsakič pred zagonom sistema vnesti pravilno geslo. Te možnosti ni mogoče uporabiti za šifriranje sekundarnega ali zunanjega pogona, če Windows ni nameščen na njem in se ne zažene z njega.</entry>
<entry lang="sl" key="COLLECTING_RANDOM_DATA_TITLE">Zbiranje naključnih podatkov</entry>
<entry lang="sl" key="KEYS_GEN_TITLE">Ključi proizvedeni</entry>
<entry lang="sl" key="CD_BURNER_NOT_PRESENT">VeraCrypt ni našel zapisovalnika CD-jev/DVD-jev, priključenega na tvoj računalnik. VeraCrypt potrebuje zapisovalnik CD/DVD za zapisovanje zagonskega reševalnega diska VeraCrypt, ki vsebuje varnostno kopijo šifrirnih ključev, zagonskega nalagalnika VeraCrypt, izvirnega sistemskega nalagalnika itd.\n\nMočno priporočamo, da zapišeš reševalni disk VeraCrypt.</entry>
@@ -1183,7 +1183,7 @@
<entry lang="sl" key="SYS_ENCRYPTION_PRETEST_INFO">Preden šifrira vašo sistemsko particijo ali pogon, mora VeraCrypt preveriti, ali vse deluje pravilno.\n\nKo klikneš "Preizkus", bodo vse potrebne komponente (na primer komponenta za preverjanje pristnosti pred zagonom, tj. zagonski nalagalnik VeraCrypt) nameščene in tvoj računalnik se bo znova zagnal. Nato boš moral vnesti svoje geslo na zaslon zagonskega nalagalnika VeraCrypt, ki se prikaže pred zagonom sistema Windows. Ko se Windows zažene, boš samodejno obveščen o rezultatu tega predtestiranja.\n\nNaslednja naprava bo spremenjena: pogon #%d\n\n\nČe zdaj klikneš 'Prekliči', se nič ne namesti in predtest ne bo izveden.</entry>
<entry lang="sl" key="SYS_ENCRYPTION_PRETEST_INFO2_PORTION_1">POMEMBNE OPOMBE -- PROSIMO, PREBERI ALI NATISNI (klikni 'Natisni'):\n\nUpoštevaj, da nobena od tvojih datotek ne bo šifrirana, preden uspešno znova zaženeš računalnik in zaženeš Windows. Torej, če karkoli ne uspe, tvoji podatki NE bodo izgubljeni. Če pa gre kaj narobe, lahko naletiš na težave pri zagonu sistema Windows. Zato preberi (in, če je možno, natisni) naslednje smernice o tem, kaj storiti, če se Windows ne more zagnati po ponovnem zagonu računalnika.\n\n</entry>
<entry lang="sl" key="SYS_ENCRYPTION_PRETEST_INFO2_PORTION_2">Kaj storiti, če se Windows ne more zagnati\n---------------------------------------- -------\n\nOpomba: Ta navodila so veljavna samo, če še nisi začel šifrirati.\n\n- Če se Windows ne zažene, ko vneseš pravilno geslo (ali če večkrat vneseš pravilno geslo, vendar VeraCrypt pravi, da geslo ni pravilno), brez panike. Znova zaženi (izklopi in vklopi) računalnik in na zaslonu Zagonskega nalagalnika VeraCrypt pritisni tipko Esc na tipkovnici (in če imaš več sistemov, izberi, katerega želiš zagnati). Nato bi se moral zagnati Windows (pod pogojem, da ni šifriran) in VeraCrypt te bo samodejno vprašal, ali želiš odstraniti komponento za preverjanje pristnosti pred zagonom. Upoštevaj, da prejšnji koraki NE delujejo, če je sistemska particija/pogon šifriran (nihče ne more zagnati sistema Windows ali dostopati do šifriranih podatkov na pogonu brez pravilnega gesla, tudi če sledi prejšnjim korakom).\n\n</entry>
<entry lang="sl" key="SYS_ENCRYPTION_PRETEST_INFO2_PORTION_3">- Če prejšnji koraki ne pomagajo ali če se zaslon zagonskega nalagalnika VeraCrypt ne prikaže (pred zagonom sistema Windows), vstavi reševalni disk VeraCrypt v pogon CD/DVD in znova zaženi računalnik. Če se zaslon reševalnega diska VeraCrypt ne prikaže (ali če ne vidiš elementa 'Repair Options' v razdelku 'Keyboard Controls' na zaslonu reševalnega diska VeraCrypt), je možno, da je tvoj BIOS konfiguriran za poskus zagona iz trdega diska pred pogoni CD/DVD. V tem primeru znova zaženi računalnik, pritisni F2 ali Delete (takoj, ko vidiš zaslon za zagon BIOS-a) in počakaj, da se prikaže zaslon za konfiguracijo BIOS-a. Če se ne prikaže zaslon za konfiguracijo BIOS-a, znova zaženi (ponastavi) računalnik in začni večkrat pritiskati F2 ali Delete, takoj ko znova zaženeš (ponastaviš) računalnik. Ko se prikaže zaslon za konfiguracijo BIOS-a, najprej konfiguriraj svoj BIOS za zagon s pogona CD/DVD (za informacije o tem, kako to storiš, glej dokumentacijo za tvoj BIOS/matično ploščo ali se za pomoč obrni na ekipo za tehnično podporo prodajalca tvojega računalnika). Nato znova zaženi računalnik. Zdaj bi se moral prikazati zaslon reševalnega diska VeraCrypt. Na zaslonu izberite 'Repair Options' s pritiskom na F8 na tipkovnici. V meniju »Možnosti popravila« izberi »Obnovi izvirni nalagalnik sistem. Nato odstrani reševalni disk iz pogona CD/DVD in znova zaženi računalnik. Windows bi se moral zagnati normalno (pod pogojem, da ni šifriran).\n\n</entry>
<entry lang="sl" key="SYS_ENCRYPTION_PRETEST_INFO2_PORTION_3">- Če prejšnji koraki ne pomagajo ali če se zaslon zagonskega nalagalnika VeraCrypt ne prikaže (pred zagonom sistema Windows), vstavi reševalni disk VeraCrypt v pogon CD/DVD in znova zaženi računalnik. Če se zaslon reševalnega diska VeraCrypt ne prikaže (ali če ne vidiš elementa 'Repair Options' v razdelku 'Keyboard Controls' na zaslonu reševalnega diska VeraCrypt), je možno, da je tvoj BIOS konfiguriran za poskus zagona iz trdega diska pred pogoni CD/DVD. V tem primeru znova zaženi računalnik, pritisni F2 ali Delete (takoj, ko vidiš zaslon za zagon BIOS-a) in počakaj, da se prikaže zaslon za konfiguracijo BIOS-a. Če se ne prikaže zaslon za konfiguracijo BIOS-a, znova zaženi (ponastavi) računalnik in začni večkrat pritiskati F2 ali Delete, takoj ko znova zaženeš (ponastaviš) računalnik. Ko se prikaže zaslon za konfiguracijo BIOS-a, najprej konfiguriraj svoj BIOS za zagon s pogona CD/DVD (za informacije o tem, kako to storiš, glej dokumentacijo za tvoj BIOS/matično ploščo ali se za pomoč obrni na ekipo za tehnično podporo prodajalca tvojega računalnika). Nato znova zaženi računalnik. Zdaj bi se moral prikazati zaslon reševalnega diska VeraCrypt. Na zaslonu izberi 'Repair Options' s pritiskom na F8 na tipkovnici. V meniju 'Repair Options' izberi 'Restore original system loader'. Nato odstrani reševalni disk iz pogona CD/DVD in znova zaženi računalnik. Windows bi se moral zagnati normalno (pod pogojem, da ni šifriran).\n\n</entry>
<entry lang="sl" key="SYS_ENCRYPTION_PRETEST_INFO2_PORTION_4">Prejšnji koraki NE delujejo, če je sistemska particija/pogon šifriran (nihče ne more zagnati sistema Windows ali dostopati do šifriranih podatkov na pogonu brez pravilnega gesla, tudi če sledi prejšnjim korakom).\n\n\nTudi če izgubiš svoj rešilni disk VeraCrypt in ga napadalec najde, NE bo mogel dešifrirati sistemske particije ali pogona brez pravilnega gesla.</entry>
<entry lang="sl" key="SYS_ENCRYPTION_PRETEST_RESULT_TITLE">Preverjanjew končano</entry>
<entry lang="sl" key="SYS_ENCRYPTION_PRETEST_RESULT_INFO">Predhodni preizkus je bil uspešno zaključen.\n\nOPOZORILO: Če med šifriranjem obstoječih podatkov na mestu pride do nenadne prekinitve napajanja ali ko se operacijski sistem zruši zaradi programske napake ali okvare strojne opreme, medtem ko VeraCrypt šifrira obstoječe podatke na mestu , bodo deli podatkov poškodovani ali izgubljeni. Zato se pred začetkom šifriranja prepričaj, da imaš varnostne kopije datotek, ki jih želiš šifrirati. Če tega ne storiš, varnostno kopiraj datoteke zdaj (lahko klikneš 'Odloži', varnostno kopiraš datoteke, nato kadar koli znova zaženeš VeraCrypt in izbereš 'Sistem' &gt; 'Nadaljuj prekinjen proces', da začneš šifriranje).\n\nKo si pripravljen , klikni 'Šifriraj', da začneš šifrirati.</entry>
@@ -1199,12 +1199,12 @@
<entry lang="sl" key="HIDDEN_OS_CREATION_NOT_FINISHED_CHOICE_TERMINATE">Trajno prekini postopek ustvarjanja skritega operacijskega sistema</entry>
<entry lang="sl" key="HIDDEN_OS_CREATION_NOT_FINISHED_CHOICE_ASK_LATER">Zdaj ne stori ničesar in vprašaj znova pozneje</entry>
<entry lang="sl" key="RESCUE_DISK_HELP_PORTION_1">\nČE JE MOŽNO, NATISNI TO BESEDILO (spodaj klikni 'Natisni').\n\n\nKako in kdaj uporabiti reševalni disk VeraCrypt (po šifriranju)\n--------------- -------------------------------------------------- ------------------\n\n</entry>
<entry lang="sl" key="RESCUE_DISK_HELP_PORTION_2">I. Kako zagnati reševalni disk VeraCrypt\n\nČe želiš zagnati reševalni disk VeraCrypt, ga vstavi v pogon CD/DVD in znova zaženi računalnik. Če se zaslon VeraCrypt Rescue Disk ne prikaže (ali če ne vidiš elementa 'Repair Options' v razdelku 'Keyboard Controls' na zaslonu), je možno, da je tvoj BIOS konfiguriran za poskus zagona s trdih diskov, pred CD/DVD pogoni. V tem primeru znova zaženi računalnik, pritisni F2 ali Delete (takoj, ko vidiš zaslon za zagon BIOS-a) in počakaj, da se prikaže zaslon za konfiguracijo BIOS-a. Če se ne prikaže zaslon za konfiguracijo BIOS-a, znova zaženi (ponastavi) računalnik in začni večkrat pritiskati F2 ali Delete, takoj ko znova zaženeš (ponastaviš) računalnik. Ko se prikaže zaslon za konfiguracijo BIOS-a, najprej konfiguriraj svoj BIOS za zagon s pogona CD/DVD (za informacije o tem, kako to storiš, glej dokumentacijo za tvoj BIOS/matično ploščo ali se za pomoč obrni na ekipo za tehnično podporo prodajalca tvojega računalnika). Nato znova zaženi računalnik. Zdaj bi se moral prikazati zaslon VeraCrypt Rescue Disk. Opomba: Na zaslonu reševalnega diska VeraCrypt lahko izbereš 'Možnosti popravila' s pritiskom na F8 na tipkovnici.\n\n\n</entry>
<entry lang="sl" key="RESCUE_DISK_HELP_PORTION_2">I. Kako zagnati reševalni disk VeraCrypt\n\nČe želiš zagnati reševalni disk VeraCrypt, ga vstavi v pogon CD/DVD in znova zaženi računalnik. Če se zaslon reševalnega diska VeraCrypt ne prikaže (ali če ne vidiš elementa 'Repair Options' v razdelku 'Keyboard Controls' na zaslonu), je možno, da je tvoj BIOS konfiguriran za poskus zagona s trdih diskov, pred CD/DVD pogoni. V tem primeru znova zaženi računalnik, pritisni F2 ali Delete (takoj, ko vidiš zaslon za zagon BIOS-a) in počakaj, da se prikaže zaslon za konfiguracijo BIOS-a. Če se ne prikaže zaslon za konfiguracijo BIOS-a, znova zaženi (ponastavi) računalnik in začni večkrat pritiskati F2 ali Delete, takoj ko znova zaženeš (ponastaviš) računalnik. Ko se prikaže zaslon za konfiguracijo BIOS-a, najprej konfiguriraj svoj BIOS za zagon s pogona CD/DVD (za informacije o tem, kako to storiš, glej dokumentacijo za tvoj BIOS/matično ploščo ali se za pomoč obrni na ekipo za tehnično podporo prodajalca tvojega računalnika). Nato znova zaženi računalnik. Zdaj bi se moral prikazati zaslon reševalnega diska VeraCrypt. Opomba: Na zaslonu reševalnega diska VeraCrypt lahko izbereš 'Repair Options' s pritiskom na F8 na tipkovnici.\n\n\n</entry>
<entry lang="sl" key="RESCUE_DISK_HELP_PORTION_3">II. Kdaj in kako uporabiti reševalni disk VeraCrypt (po šifriranju)\n\n</entry>
<entry lang="sl" key="RESCUE_DISK_HELP_PORTION_4">1) Če se zaslon zagonskega nalagalnika VeraCrypt ne prikaže, ko zaženeš računalnik (ali če se Windows ne zažene), je zagonski nalagalnik VeraCrypt morda poškodovan. Reševalni disk VeraCrypt omogoča, da ga obnoviš in s tem ponovno pridobiš dostop do šifriranega sistema in podatkov (vendar upoštevaj, da boš takrat še vedno moral vnesti pravilno geslo). Na zaslonu reševalnega diska izberit 'Repair Options' &gt; 'Obnovi zagonski nalagalnik VeraCrypt'. Nato pritisni 'Y', da potrdiš dejanje, odstrani reševalni disk iz pogona CD/DVD in znova zaženi računalnik.\n\n</entry>
<entry lang="sl" key="RESCUE_DISK_HELP_PORTION_5">2) Če večkrat vneseš pravilno geslo, vendar VeraCrypt sporoči, da je geslo napačno, so lahko glavni ključ ali drugi kritični podatki poškodovani. Reševalni disk VeraCrypt omogoča, da jih obnoviš in s tem ponovno pridobiš dostop do šifriranega sistema in podatkov (vendar upoštevaj, da boš takrat še vedno moral vnesti pravilno geslo). Na zaslonu reševalnega diska izberi 'Repair Options' &gt; 'Obnovi ključne podatke'. Nato vnesi svoje geslo, pritisni 'Y' za potrditev dejanja, odstrani reševalni disk iz pogona CD/DVD in znova zaženi računalnik.\n\n</entry>
<entry lang="sl" key="RESCUE_DISK_HELP_PORTION_4">1) Če se zaslon zagonskega nalagalnika VeraCrypt ne prikaže, ko zaženeš računalnik (ali če se Windows ne zažene), je zagonski nalagalnik VeraCrypt morda poškodovan. Reševalni disk VeraCrypt omogoča, da ga obnoviš in s tem ponovno pridobiš dostop do šifriranega sistema in podatkov (vendar upoštevaj, da boš takrat še vedno moral vnesti pravilno geslo). Na zaslonu reševalnega diska izberi 'Repair Options' &gt; 'Restore VeraCrypt Boot Loader'. Nato pritisni 'Y', da potrdiš dejanje, odstrani reševalni disk iz pogona CD/DVD in znova zaženi računalnik.\n\n</entry>
<entry lang="sl" key="RESCUE_DISK_HELP_PORTION_5">2) Če večkrat vneseš pravilno geslo, vendar VeraCrypt sporoči, da je geslo napačno, so lahko glavni ključ ali drugi kritični podatki poškodovani. Reševalni disk VeraCrypt omogoča, da jih obnoviš in s tem ponovno pridobiš dostop do šifriranega sistema in podatkov (vendar upoštevaj, da boš takrat še vedno moral vnesti pravilno geslo). Na zaslonu reševalnega diska izberi 'Repair Options' &gt; 'Restore key data'. Nato vnesi svoje geslo, pritisni 'Y' za potrditev dejanja, odstrani reševalni disk iz pogona CD/DVD in znova zaženi računalnik.\n\n</entry>
<entry lang="sl" key="RESCUE_DISK_HELP_PORTION_6">3) Če je zagonski nalagalnik VeraCrypt poškodovan, se mu lahko izogneš tako, da se zaženeš neposredno z reševalnega diska VeraCrypt. Vstavi svoj reševalni disk v pogon CD/DVD in nato vnesi svoje geslo na zaslonu reševalnega diska.\n\n</entry>
<entry lang="sl" key="RESCUE_DISK_HELP_PORTION_7">4) Če je Windows poškodovan in se ne more zagnati, omogoča reševalni disk VeraCrypt trajno dešifriranje particije/pogona, preden se Windows zažene. Na zaslonu reševalnega diska izberi 'Repair Options' &gt; 'Trajno dešifriraj sistemsko particijo/pogon'. Vnesi pravilno geslo in počakaj, da se dešifriranje konča. Potem lahko npr. zaženeš namestitveni CD/DVD MS Windows, da popraviš namestitev sistema Windows.\n\n</entry>
<entry lang="sl" key="RESCUE_DISK_HELP_PORTION_7">4) Če je Windows poškodovan in se ne more zagnati, omogoča reševalni disk VeraCrypt trajno dešifriranje particije/pogona, preden se Windows zažene. Na zaslonu reševalnega diska izberi 'Repair Options' &gt; 'Permanently decrypt system partition/drive'. Vnesi pravilno geslo in počakaj, da se dešifriranje konča. Potem lahko npr. zaženeš namestitveni CD/DVD MS Windows, da popraviš namestitev sistema Windows.\n\n</entry>
<entry lang="sl" key="RESCUE_DISK_HELP_PORTION_8">Opomba: Če je sistem Windows poškodovan (se ne more zagnati) in ga moraš popraviti (ali dostopati do datotek v njem), se lahko izogneš dešifriranju sistemske particije/pogona tako, da slediš tem korakom: Če imaš v računalniku nameščenih več operacijskih sistemov , zaženi tistega, ki ne zahteva preverjanja pristnosti pred zagonom. Če v računalniku nimaš nameščenih več operacijskih sistemov, lahko zaženeš CD/DVD WinPE ali BartPE ali pa povežeš sistemski pogon kot sekundarni ali zunanji pogon z drugim računalnikom in nato zaženeteš operacijski sistem, nameščen v računalniku. Ko zaženeš sistem, zaženi VeraCrypt, klikni »Izberi napravo«, izberi prizadeto sistemsko particijo, klikni »V redu«, izberi »Sistem« &gt; »Namesti brez preverjanja pristnosti pred zagonom«, vnesi geslo za preverjanje pristnosti pred zagonom in klikni »V redu«. Particija bo nameščena kot običajni nosilec VeraCrypt (podatki bodo ob dostopu sproti dešifrirani/šifrirani v RAM-u, kot običajno).\n\n\n</entry>
<entry lang="sl" key="RESCUE_DISK_HELP_PORTION_9">Tudi če izgubiš svoj reševalni disk VeraCrypt in ga napadalec najde, NE bo mogel dešifrirati sistemske particije ali pogona brez pravilnega gesla.</entry>
<entry lang="sl" key="DECOY_OS_INSTRUCTIONS_PORTION_1">\n\nPOMEMBNO -- ČE JE MOŽNO, NATISNI TO BESEDILO (spodaj klikni 'Natisni').\n\n\nOpomba: To besedilo bo samodejno prikazano vsakič, ko zaženeš skriti sistem, dokler ne začneš ustvarjati sistema za vabo.\n\n\n</entry>
@@ -1312,18 +1312,18 @@
<entry lang="sl" key="TEST">Test</entry>
<entry lang="sl" key="KEYFILE">Ključna datoteka</entry>
<entry lang="sl" key="VKEY_08">Brisalka</entry>
<entry lang="en" key="VKEY_09">Tab</entry>
<entry lang="en" key="VKEY_0C">Clear</entry>
<entry lang="en" key="VKEY_0D">Enter</entry>
<entry lang="en" key="VKEY_13">Pause</entry>
<entry lang="sl" key="VKEY_09">Tabulator</entry>
<entry lang="sl" key="VKEY_0C">Počisti</entry>
<entry lang="sl" key="VKEY_0D">Vnašalka</entry>
<entry lang="sl" key="VKEY_13">Pavza</entry>
<entry lang="sl" key="VKEY_14">Caps Lock</entry>
<entry lang="sl" key="VKEY_20">Preslednica</entry>
<entry lang="sl" key="VKEY_21">Stran gor</entry>
<entry lang="sl" key="VKEY_22">Stran dol</entry>
<entry lang="en" key="VKEY_23">End</entry>
<entry lang="sl" key="VKEY_23">Konec</entry>
<entry lang="sl" key="VKEY_24">Domov</entry>
<entry lang="sl" key="VKEY_25">Puščica levo</entry>
<entry lang="en" key="VKEY_26">Puščica gor</entry>
<entry lang="sl" key="VKEY_26">Puščica gor</entry>
<entry lang="sl" key="VKEY_27">Puščica desno</entry>
<entry lang="sl" key="VKEY_28">Puščica dol</entry>
<entry lang="sl" key="VKEY_29">Tipka izberi</entry>
@@ -1354,11 +1354,11 @@
<entry lang="sl" key="VKEY_B5">Tipka Izberi Medij</entry>
<entry lang="sl" key="VKEY_B6">Applikacija 1</entry>
<entry lang="sl" key="VKEY_B7">Applikacija 2</entry>
<entry lang="en" key="VKEY_F6">Attn</entry>
<entry lang="en" key="VKEY_F7">CrSel</entry>
<entry lang="en" key="VKEY_F8">ExSel</entry>
<entry lang="sl" key="VKEY_F6">Attn</entry>
<entry lang="sl" key="VKEY_F7">CrSel</entry>
<entry lang="sl" key="VKEY_F8">ExSel</entry>
<entry lang="sl" key="VKEY_FA">Izvajaj</entry>
<entry lang="en" key="VKEY_FB">Zoom</entry>
<entry lang="sl" key="VKEY_FB">Povečava</entry>
<entry lang="sl" key="VK_NUMPAD">NumPad</entry>
<entry lang="sl" key="VK_SHIFT">Shift</entry>
<entry lang="sl" key="VK_CONTROL">Control</entry>
@@ -1517,10 +1517,6 @@
<entry lang="sl" key="LINUX_MOUNTET_HINT">Datotečni sistem izbrane naprave je trenutno nameščen. Preden nadaljuješ, odklopi '{0}'.</entry>
<entry lang="sl" key="LINUX_HIDDEN_PASS_NO_DIFF">Skriti nosilec ne more imeti enakega gesla, PIM-a in ključnih datotek kot zunanji nosilec</entry>
<entry lang="sl" key="LINUX_NOT_FAT_HINT">Upoštevaj, da nosilec ne bo formatiran z datotečnim sistemom FAT, zato boš morda moral namestiti dodatne gonilnike datotečnega sistema na platformah, ki niso {0}, kar ti bo omogočilo namestitev nosilca.</entry>
<entry lang="sl" key="LINUX_ERROR_SIZE_HIDDEN_VOL">Napaka: skriti nosilec, ki ga želiš ustvariti, je večji od {0} TB ({1} GB).\n\nMožne rešitve:\n- Ustvari vsebnik/particijo, manjšo od {0} TB.\n</entry>
<entry lang="sl" key="LINUX_MAX_SIZE_HINT">- Uporabi pogon s 4096-bajtnimi sektorji, da lahko ustvariš skrite nosilce, ki gostujejo na particiji/napravi, do velikosti 16 TB</entry>
<entry lang="sl" key="LINUX_DOT_LF">.\n</entry>
<entry lang="sl" key="LINUX_NOT_SUPPORTED"> (ni podprto s komponentami, ki so na voljo na tej platformi).\n</entry>
<entry lang="sl" key="LINUX_KERNEL_OLD">Tvoj sistem uporablja staro različico jedra Linuxa.\n\nZaradi napake v jedru Linuxa se tvoj sistem morda neha odzivati pri zapisovanju podatkov na nosilec VeraCrypt. To težavo je mogoče rešiti z nadgradnjo jedra na različico 2.6.24 ali novejšo.</entry>
<entry lang="sl" key="LINUX_VOL_UNMOUNTED">Nosilec {0} je odklopljen.</entry>
<entry lang="sl" key="LINUX_VOL_MOUNTED">Nosilec {0} je priklopljen.</entry>
@@ -1586,7 +1582,7 @@
<entry lang="sl" key="EXPANDER_FREE_SPACE">%s prostora na voljo na gostiteljskem pogonu</entry>
<entry lang="sl" key="EXPANDER_HELP_DEVICE">To je nosilec VeraCrypt, ki temelji na napravi.\n\nNova velikost nosilca bo samodejno izbrana kot velikost gostiteljske naprave.</entry>
<entry lang="sl" key="EXPANDER_HELP_FILE">Določi novo velikost nosilca VeraCrypt (mora biti vsaj %I64u KB večja od trenutne velikosti).</entry>
<entry lang="sl" key="QUICK_EXPAND_WARNING">OPOZORILO: Quick Expand uporabi samo v naslednjih primerih:\n\n1) Naprava, v kateri je vsebnik datotek, ne vsebuje občutljivih podatkov in ne potrebuješ možnosti zanikanja.\n2) Naprava, v kateri je vsebnik datotek, je že varno in popolnoma šifrirana.\n\nAli si prepričan, da želiš uporabiti hitro razširitev?</entry>
<entry lang="sl" key="QUICK_EXPAND_WARNING">OPOZORILO: Hitro razširitev uporabljaj le v naslednjih primerih:\n\n1) Naprava, v kateri je vsebnik datotek, ne vsebuje občutljivih podatkov in ne potrebuješ verjetnega zanikanja.\n2) Naprava, v kateri je vsebnik datotek, je že varno in v celoti šifrirana.\n\nAli si prepričan, da želiš uporabiti hitro razširitev?</entry>
<entry lang="sl" key="EXPANDER_STATUS_TEXT">POMEMBNO: Znotraj tega okna premikaj miško čim bolj naključno. Dlje ko jo premikaš, bolje je. To bistveno poveča kriptografsko moč šifrirnih ključev. Nato klikni »Nadaljuj«, da razširiš nosilec.</entry>
<entry lang="sl" key="EXPANDER_STATUS_TEXT_LEGACY">Za širitev nosilca klikni 'Nadaljuj'.</entry>
<entry lang="sl" key="EXPANDER_FINISH_ERROR">Napaka: širitev nosilca ni uspela.</entry>
@@ -1647,46 +1643,47 @@
<entry lang="sl" key="IDC_DISABLE_SCREEN_PROTECTION">Onemogoči zaščito pred zajemanjem zaslona in snemanjem zaslona</entry>
<entry lang="sl" key="DISABLE_SCREEN_PROTECTION_WARNING">OPOZORILO: Onemogočanje zaščite zaslona bistveno zmanjša varnost. Omogoči to možnost SAMO, če imaš poseben razlog za zajem uporabniškega vmesnika VeraCrypt. S tem lahko občutljivi podatki postanejo dostopni orodjem za zajem zaslona in funkcijam snemanja zaslona, kot je Windows 11 Recall.</entry>
<entry lang="sl" key="MEMORY_COST">Poraba pomnilnika</entry>
<entry lang="en" key="IDT_KDF_ALGO">KDF Algorithm</entry>
<entry lang="en" key="IDD_PREFERENCES_TAB_GENERAL">General</entry>
<entry lang="en" key="IDD_PREFERENCES_TAB_ACTIONS">Actions</entry>
<entry lang="en" key="IDD_PREFERENCES_TAB_PASSWORD">Password</entry>
<entry lang="en" key="IDC_SECURE_DESKTOP_ENABLE_IME">Enable Input Method Editor (IME) in Secure Desktop</entry>
<entry lang="en" key="ENABLE_IME_IN_SECURE_DESKTOP_WARNING">WARNING: Enable this option only if you are encountering issues when selecting Keyfiles/Tokens under Secure Desktop.</entry>
<entry lang="en" key="ERR_KEY_DERIVATION_FAILED">Key derivation failed. This may be caused by insufficient memory or an interrupted operation.</entry>
<entry lang="en" key="EFI_MS_BOOT_LOADER_RESTORE_FAILED">The system partition/drive is already decrypted, but the EFI Microsoft boot loader path was not restored to the Windows Boot Manager. Only the EFI boot files need repair. Use the VeraCrypt Rescue Disk repair option, or boot Windows recovery media and run 'bcdboot W:\\Windows /s S: /f UEFI' after replacing W: with the Windows volume drive letter and S: with the EFI System Partition drive letter. Path:</entry>
<entry lang="en" key="EFI_FALLBACK_BOOT_LOADER_STILL_VERACRYPT">The system partition/drive is already decrypted, but the EFI fallback boot loader path still contains the VeraCrypt Boot Loader. Only the EFI boot files need repair. Use the VeraCrypt Rescue Disk repair option, or boot Windows recovery media and run 'bcdboot W:\\Windows /s S: /f UEFI' after replacing W: with the Windows volume drive letter and S: with the EFI System Partition drive letter. Path:</entry>
<entry lang="en" key="IDM_REPAIR_EFI_BOOT_LOADER">Repair EFI Boot Loader...</entry>
<entry lang="en" key="CONFIRM_REPAIR_EFI_BOOT_LOADER">VeraCrypt will restore the Windows EFI boot loader paths and remove VeraCrypt EFI boot entries and files.\n\nUse this only after the system partition/drive is fully decrypted and Windows can boot without system encryption.\n\nDo you want to continue?</entry>
<entry lang="en" key="EFI_BOOT_LOADER_FILE_READ_FAILED">The EFI boot loader file could not be read completely:</entry>
<entry lang="en" key="EFI_BOOT_LOADER_FILE_TOO_LARGE">The EFI boot loader file is unexpectedly large and was not inspected:</entry>
<entry lang="en" key="EFI_BOOT_LOADER_NVRAM_CLEANUP_FAILED">The system partition/drive is already decrypted and the EFI boot loader files were restored, but VeraCrypt could not remove one or more VeraCrypt firmware boot entries. The VeraCrypt EFI files were left in place so any remaining firmware entry still points to an existing loader. Retry as Administrator or remove the VeraCrypt boot entry from firmware setup after confirming Windows Boot Manager starts normally.</entry>
<entry lang="en" key="EFI_BOOT_LOADER_REPAIR_BLOCKED">The EFI boot loader cannot be repaired while system encryption or decryption is active or incomplete. Complete or resume the pending system encryption/decryption process before retrying.</entry>
<entry lang="en" key="EFI_BOOT_LOADER_REPAIR_NOT_APPLICABLE">This repair action is available only on systems booting in UEFI mode from a GPT system partition.</entry>
<entry lang="en" key="EFI_BOOT_LOADER_REPAIR_SUCCESS">The EFI boot loader has been repaired successfully.</entry>
<entry lang="en" key="PIM_ARGON2_HELP">PIM (Personal Iterations Multiplier) controls the memory and time costs used by Argon2id header key derivation as follows:\n Memory = min(64 MiB + ((PIM - 1) x 32 MiB), 1024 MiB)\n Iterations = 3 + ((PIM - 1) / 3) for PIM 31 or lower, then 13 + (PIM - 31)\n\nWhen left empty or set to 0, VeraCrypt will use the default Argon2 PIM (12), which uses 416 MiB of memory and 6 iterations.\n\nWhen the password is less than 20 characters, Argon2 PIM can't be smaller than 12 in order to maintain a minimal security level.\nWhen the password is 20 characters or more, Argon2 PIM can be set to any value.\n\nAn Argon2 PIM larger than 12 increases memory usage up to 1024 MiB and then increases iterations. This will lead to slower mounting. A small Argon2 PIM (less than 12) will lead to quicker mounting but it can reduce security if the password is not strong enough.</entry>
<entry lang="en" key="PIM_ARGON2_LARGE_WARNING">You have chosen an Argon2 PIM value that is larger than VeraCrypt default value.\nPlease note that this can require more memory and lead to much slower mounting.</entry>
<entry lang="en" key="PIM_ARGON2_SMALL_WARNING">You have chosen an Argon2 PIM value that is smaller than the default VeraCrypt value. Please note that if your password is not strong enough, this could lead to weaker security.\n\nDo you confirm that you are using a strong password?</entry>
<entry lang="en" key="PIM_ARGON2_REQUIRE_LONG_PASSWORD">Password must contain 20 or more characters in order to use the specified Argon2 PIM.\nShorter passwords can only be used if the Argon2 PIM is 12 or greater.</entry>
<entry lang="en" key="LINUX_PREF_MOUNT_NTFS_WITH_NTFS3">Mount NTFS volumes with the Linux kernel ntfs3 driver</entry>
<entry lang="en" key="LINUX_PREF_MOUNT_NTFS_WITH_NTFS3_HELP">Linux only. When enabled, VeraCrypt probes the decrypted virtual device with blkid -p and mounts detected NTFS filesystems with ntfs3 instead of the default NTFS backend. If NTFS detection fails, VeraCrypt uses the normal automatic filesystem selection. If ntfs3 is unavailable or blocked by the distribution, mounting may fail. This opt-in option can avoid suspend or hibernate hangs caused by frozen user-space FUSE filesystems.</entry>
<entry lang="en" key="LINUX_EMERGENCY_UNMOUNT_WARNING">Normal unmount of volume {0} failed. This can happen when applications still have files or directories open on the volume, or when the backing device was disconnected and the mount became stale.\n\nIf the device is still connected, choose No, close applications using the volume, and try unmounting again.\n\nIf the device was disconnected or the mount is stale, VeraCrypt can attempt emergency cleanup by lazy-detaching the filesystem and removing or scheduling removal of VeraCrypt kernel objects. Pending writes may have failed, data may be lost, and cleanup may remain pending until applications close open files. Check the filesystem with fsck or the appropriate repair tool before using it again.\n\nContinue?</entry>
<entry lang="en" key="LINUX_EMERGENCY_UNMOUNTED">Emergency cleanup for volume {0} has been initiated. If the volume was disconnected, the mount was stale, or there were pending writes, check the filesystem with fsck or the appropriate repair tool before using it again.</entry>
<entry lang="en" key="FORMAT_STAGE_WRITING_DATA">Creating volume data. Please wait.</entry>
<entry lang="en" key="FORMAT_STAGE_WRITING_BACKUP_HEADER">Finalizing volume creation: writing backup header.</entry>
<entry lang="en" key="FORMAT_STAGE_FLUSHING_DATA">Finalizing volume creation: flushing data to disk. This can take several minutes on large volumes or slow/USB storage.</entry>
<entry lang="en" key="FORMAT_STAGE_FINISHED">Finalizing volume creation.</entry>
<entry lang="en" key="FORMAT_STAGE_ABORTED">Volume creation has been aborted.</entry>
<entry lang="en" key="FORMAT_STAGE_ERROR">Volume creation failed.</entry>
<entry lang="en" key="FORMAT_STAGE_PREPARING_TEMP_VOLUME">Finalizing volume creation: mounting temporary volume.</entry>
<entry lang="en" key="FORMAT_STAGE_PREPARING_TEMP_DEVICE">Finalizing volume creation: preparing temporary device.</entry>
<entry lang="en" key="FORMAT_STAGE_CREATING_FILESYSTEM">Finalizing volume creation: creating filesystem using {0}.</entry>
<entry lang="en" key="FORMAT_STAGE_DISMOUNTING_TEMP_VOLUME">Finalizing volume creation: dismounting temporary volume.</entry>
<entry lang="en" key="MACOSX_APFS_SYNTHESIZED_DEVICE">The selected device '{0}' is an APFS synthesized container or volume and cannot be used as a raw VeraCrypt volume host.\n\nSelect the physical APFS store partition{1} instead.</entry>
<entry lang="en" key="MACOSX_DEVICE_SYSTEM_PARTITION">The selected device '{0}' is a macOS system/support partition and cannot be used as a VeraCrypt volume host.</entry>
<entry lang="en" key="MACOSX_APFS_SYSTEM_STORE">The selected APFS physical store '{0}' contains the currently mounted macOS system volume and cannot be used as a VeraCrypt volume host.</entry>
<entry lang="en" key="MACOSX_DEVICE_NOT_WRITABLE">macOS reports the selected device '{0}' as read-only. Select a writable physical partition or disk.</entry>
<entry lang="en" key="MACOSX_APFS_EROFS_HINT">macOS reported the selected device as read-only. If this is an APFS disk, make sure you selected the physical APFS store partition, not an APFS synthesized volume. Use Disk Utility or 'diskutil list' to identify the physical partition, then retry.</entry>
<entry lang="sl" key="IDT_KDF_ALGO">Algoritem KDF</entry>
<entry lang="sl" key="IDD_PREFERENCES_TAB_GENERAL">Splošno</entry>
<entry lang="sl" key="IDD_PREFERENCES_TAB_ACTIONS">Dejanja</entry>
<entry lang="sl" key="IDD_PREFERENCES_TAB_PASSWORD">Geslo</entry>
<entry lang="sl" key="IDC_SECURE_DESKTOP_ENABLE_IME">Omogoči urejevalnik vnosnih metod (IME) v Secure Desktop</entry>
<entry lang="sl" key="ENABLE_IME_IN_SECURE_DESKTOP_WARNING">OPOZORILO: To možnost omogoči samo, če naletiš na težave pri izbiri ključnih datotek/žetonov v Secure Desktop.</entry>
<entry lang="sl" key="ERR_KEY_DERIVATION_FAILED">Izpeljava ključa ni uspela. Vzrok je lahko premalo pomnilnika ali prekinjeno opravilo.</entry>
<entry lang="sl" key="EFI_MS_BOOT_LOADER_RESTORE_FAILED">Sistemska particija oziroma pogon je že dešifriran, vendar pot Microsoftovega zagonskega nalagalnika EFI ni bila obnovljena v Upravitelju zagona Windows. Popraviti je treba samo zagonske datoteke EFI. Uporabi možnost popravila na reševalnem disku VeraCrypt ali zaženi obnovitveni medij Windows in izvedi 'bcdboot W:\\Windows /s S: /f UEFI', potem ko W: zamenjaš s črko pogona nosilca Windows, S: pa s črko pogona sistemske particije EFI. Pot:</entry>
<entry lang="sl" key="EFI_FALLBACK_BOOT_LOADER_STILL_VERACRYPT">Sistemska particija oziroma pogon je že dešifriran, vendar rezervna pot zagonskega nalagalnika EFI še vedno vsebuje zagonski nalagalnik VeraCrypt. Popraviti je treba samo zagonske datoteke EFI. Uporabi možnost popravila na reševalnem disku VeraCrypt ali zaženi obnovitveni medij Windows in izvedi 'bcdboot W:\\Windows /s S: /f UEFI', potem ko W: zamenjaš s črko pogona nosilca Windows, S: pa s črko pogona sistemske particije EFI. Pot:</entry>
<entry lang="sl" key="IDM_REPAIR_EFI_BOOT_LOADER">Popravi zagonski nalagalnik EFI...</entry>
<entry lang="sl" key="CONFIRM_REPAIR_EFI_BOOT_LOADER">VeraCrypt bo obnovil poti zagonskega nalagalnika EFI za Windows ter odstranil zagonske vnose in datoteke VeraCrypt EFI.\n\nTo uporabi samo po tem, ko je sistemska particija oziroma pogon v celoti dešifriran in se Windows lahko zažene brez sistemskega šifriranja.\n\nAli želiš nadaljevati?</entry>
<entry lang="sl" key="EFI_BOOT_LOADER_FILE_READ_FAILED">Datoteke zagonskega nalagalnika EFI ni bilo mogoče prebrati v celoti:</entry>
<entry lang="sl" key="EFI_BOOT_LOADER_FILE_TOO_LARGE">Datoteka zagonskega nalagalnika EFI je nepričakovano velika in ni bila pregledana:</entry>
<entry lang="sl" key="EFI_BOOT_LOADER_NVRAM_CLEANUP_FAILED">Sistemska particija oziroma pogon je že dešifriran in datoteke zagonskega nalagalnika EFI so bile obnovljene, vendar VeraCrypt ni mogel odstraniti enega ali več zagonskih vnosov VeraCrypt iz vdelane programske opreme. Datoteke VeraCrypt EFI so ostale na mestu, da vsak preostali vnos vdelane programske opreme še vedno kaže na obstoječi nalagalnik. Poskusi znova kot skrbnik ali odstrani zagonski vnos VeraCrypt iz nastavitev vdelane programske opreme, potem ko potrdiš, da se Upravitelj zagona Windows zažene normalno.</entry>
<entry lang="sl" key="EFI_BOOT_LOADER_REPAIR_BLOCKED">Zagonskega nalagalnika EFI ni mogoče popraviti, dokler je sistemsko šifriranje ali dešifriranje aktivno ali nedokončano. Dokončaj ali nadaljuj čakajoči postopek sistemskega šifriranja/dešifriranja in nato poskusi znova.</entry>
<entry lang="sl" key="EFI_BOOT_LOADER_REPAIR_NOT_APPLICABLE">To popravilo je na voljo samo v sistemih, ki se zaganjajo v načinu UEFI s sistemske particije GPT.</entry>
<entry lang="sl" key="EFI_BOOT_LOADER_REPAIR_SUCCESS">Zagonski nalagalnik EFI je bil uspešno popravljen.</entry>
<entry lang="sl" key="PIM_ARGON2_HELP">PIM (Personal Iterations Multiplier) nadzira stroške pomnilnika in časa, ki jih uporablja izpeljava ključa glave z Argon2id, kot sledi:\n Pomnilnik = min(64 MiB + ((PIM - 1) x 32 MiB), 1024 MiB)\n Iteracije = 3 + ((PIM - 1) / 3) za PIM 31 ali manj, nato 13 + (PIM - 31)\n\nČe ostane prazno ali nastavljeno na 0, bo VeraCrypt uporabil privzeti PIM Argon2 (12), ki uporablja 416 MiB pomnilnika in 6 iteracij.\n\nČe ima geslo manj kot 20 znakov, PIM Argon2 ne sme biti manjši od 12, da se ohrani minimalna raven varnosti.\nČe ima geslo 20 ali več znakov, lahko PIM Argon2 nastaviš na poljubno vrednost.\n\nPIM Argon2, večji od 12, poveča uporabo pomnilnika do 1024 MiB in nato poveča število iteracij. To povzroči počasnejši priklop. Majhen PIM Argon2 (manj kot 12) povzroči hitrejši priklop, vendar lahko zmanjša varnost, če geslo ni dovolj močno.</entry>
<entry lang="sl" key="PIM_ARGON2_LARGE_WARNING">Izbral si vrednost PIM Argon2, ki je večja od privzete vrednosti VeraCrypt.\nUpoštevaj, da lahko to zahteva več pomnilnika in povzroči precej počasnejši priklop.</entry>
<entry lang="sl" key="PIM_ARGON2_SMALL_WARNING">Izbral si vrednost PIM Argon2, ki je manjša od privzete vrednosti VeraCrypt. Upoštevaj, da lahko to pri premalo močnem geslu povzroči šibkejšo varnost.\n\nAli potrjuješ, da uporabljaš močno geslo?</entry>
<entry lang="sl" key="PIM_ARGON2_REQUIRE_LONG_PASSWORD">Geslo mora vsebovati 20 ali več znakov, če želiš uporabiti navedeni PIM Argon2.\nKrajša gesla je mogoče uporabiti samo, če je PIM Argon2 12 ali večji.</entry>
<entry lang="sl" key="LINUX_PREF_MOUNT_NTFS_WITH_KERNEL_DRIVER">Priklapljaj nosilce NTFS z gonilnikom v jedru Linuxa</entry>
<entry lang="sl" key="LINUX_PREF_MOUNT_NTFS_WITH_KERNEL_DRIVER_HELP">Samo Linux. Ko je omogočeno in ni izrecno navedena vrsta datotečnega sistema, VeraCrypt z blkid -p pregleda dešifrirano navidezno napravo in zaznane datotečne sisteme NTFS priklopi z razpoložljivim gonilnikom NTFS v jedru, pri čemer obide pomočnike za priklop, kot je ntfs-3g. VeraCrypt uporabi ntfs, ko je zanesljivo prepoznan kot sodoben gonilnik za branje/pisanje ali pričakovan v Linuxu 7.1 ali novejšem, sicer pa uporabi ntfs3. Če zaznavanje NTFS ne uspe, VeraCrypt uporabi običajno samodejno izbiro datotečnega sistema. Če podprt gonilnik NTFS v jedru ni na voljo ali ga ni mogoče naložiti, priklop ne uspe. Ta izbirna možnost lahko prepreči zastoje ob prehodu v spanje ali mirovanje, ki jih povzročijo zamrznjeni datotečni sistemi FUSE v uporabniškem prostoru.</entry>
<entry lang="sl" key="LINUX_KERNEL_NTFS_DRIVER_UNAVAILABLE">Ni na voljo ali ni mogoče naložiti nobenega podprtega gonilnika NTFS v jedru. Če želiš uporabiti privzeti sistemski mehanizem NTFS, onemogoči nastavitev jedrnega gonilnika NTFS ali ne zahtevaj izrecno jedrnega NTFS.</entry>
<entry lang="sl" key="LINUX_EMERGENCY_UNMOUNT_WARNING">Običajen odklop nosilca {0} ni uspel. To se lahko zgodi, ko imajo aplikacije še vedno odprte datoteke ali imenike na nosilcu ali ko je bila gostiteljska naprava odklopljena in je priklop postal zastarel.\n\nČe je naprava še vedno povezana, izberi Ne, zapri aplikacije, ki uporabljajo nosilec, in znova poskusi odklopiti.\n\nČe je bila naprava odklopljena ali je priklop zastarel, lahko VeraCrypt poskusi izvesti nujno čiščenje z lenim odklopom datotečnega sistema in odstranitvijo ali načrtovanjem odstranitve objektov jedra VeraCrypt. Čakajoči zapisi morda niso uspeli, podatki so lahko izgubljeni in čiščenje lahko ostane nedokončano, dokler aplikacije ne zaprejo odprtih datotek. Pred ponovno uporabo preveri datotečni sistem z fsck ali ustreznim orodjem za popravilo.\n\nNadaljujem?</entry>
<entry lang="sl" key="LINUX_EMERGENCY_UNMOUNTED">Začelo se je nujno čiščenje nosilca {0}. Če je bila naprava odklopljena, je priklop zastarel ali so obstajali čakajoči zapisi, pred ponovno uporabo preveri datotečni sistem z fsck ali ustreznim orodjem za popravilo.</entry>
<entry lang="sl" key="FORMAT_STAGE_WRITING_DATA">Ustvarjanje podatkov nosilca. Počakaj.</entry>
<entry lang="sl" key="FORMAT_STAGE_WRITING_BACKUP_HEADER">Zaključevanje ustvarjanja nosilca: zapisovanje pomožne glave nosilca.</entry>
<entry lang="sl" key="FORMAT_STAGE_FLUSHING_DATA">Zaključevanje ustvarjanja nosilca: zapisovanje podatkov na disk. To lahko pri velikih nosilcih ali počasnih/USB napravah za shranjevanje traja več minut.</entry>
<entry lang="sl" key="FORMAT_STAGE_FINISHED">Zaključevanje ustvarjanja nosilca.</entry>
<entry lang="sl" key="FORMAT_STAGE_ABORTED">Ustvarjanje nosilca je bilo prekinjeno.</entry>
<entry lang="sl" key="FORMAT_STAGE_ERROR">Ustvarjanje nosilca ni uspelo.</entry>
<entry lang="sl" key="FORMAT_STAGE_PREPARING_TEMP_VOLUME">Zaključevanje ustvarjanja nosilca: priklapljanje začasnega nosilca.</entry>
<entry lang="sl" key="FORMAT_STAGE_PREPARING_TEMP_DEVICE">Zaključevanje ustvarjanja nosilca: pripravljanje začasne naprave.</entry>
<entry lang="sl" key="FORMAT_STAGE_CREATING_FILESYSTEM">Zaključevanje ustvarjanja nosilca: ustvarjanje datotečnega sistema z uporabo {0}.</entry>
<entry lang="sl" key="FORMAT_STAGE_DISMOUNTING_TEMP_VOLUME">Zaključevanje ustvarjanja nosilca: odklapljanje začasnega nosilca.</entry>
<entry lang="sl" key="MACOSX_APFS_SYNTHESIZED_DEVICE">Izbrana naprava '{0}' je sintetiziran vsebnik ali nosilec APFS in je ni mogoče uporabiti kot neobdelanega gostitelja nosilca VeraCrypt.\n\nNamesto tega izberi fizično particijo shrambe APFS{1}.</entry>
<entry lang="sl" key="MACOSX_DEVICE_SYSTEM_PARTITION">Izbrana naprava '{0}' je sistemska/podporna particija macOS in je ni mogoče uporabiti kot gostitelja nosilca VeraCrypt.</entry>
<entry lang="sl" key="MACOSX_APFS_SYSTEM_STORE">Izbrana fizična shramba APFS '{0}' vsebuje trenutno priklopljen sistemski nosilec macOS in je ni mogoče uporabiti kot gostitelja nosilca VeraCrypt.</entry>
<entry lang="sl" key="MACOSX_DEVICE_NOT_WRITABLE">macOS poroča, da je izbrana naprava '{0}' samo za branje. Izberi zapisljivo fizično particijo ali disk.</entry>
<entry lang="sl" key="MACOSX_APFS_EROFS_HINT">macOS je poročal, da je izbrana naprava samo za branje. Če je to disk APFS, se prepričaj, da si izbral fizično particijo shrambe APFS, ne sintetiziranega nosilca APFS. S programom Disk Utility ali ukazom 'diskutil list' poišči fizično particijo in poskusi znova.</entry>
</localization>
<xs:schema attributeFormDefault="unqualified" elementFormDefault="qualified" xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:element name="VeraCrypt">
+4 -7
View File
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<VeraCrypt>
<localization prog-version="1.26.28">
<localization prog-version="1.26.29">
<language langid="sv" name="Svenska" en-name="Swedish" version="1.0.0" translators="Peter Runesson" />
<font lang="sv" class="normal" size="11" face="default" />
<font lang="sv" class="bold" size="13" face="Arial" />
@@ -1517,10 +1517,6 @@
<entry lang="sv" key="LINUX_MOUNTET_HINT">Filsystemet för den valda enheten är för närvarande monterat. Demontera "{0}" innan du fortsätter.</entry>
<entry lang="sv" key="LINUX_HIDDEN_PASS_NO_DIFF">Den dolda volymen kan inte ha samma lösenord, PIM och nyckelfiler som den yttre volymen</entry>
<entry lang="sv" key="LINUX_NOT_FAT_HINT">Observera att volymen inte kommer att formateras med ett FAT-filsystem och därför kan du behöva installera ytterligare filsystemdrivrutiner på andra plattformar än {0}, vilket gör att du kan montera volymen.</entry>
<entry lang="sv" key="LINUX_ERROR_SIZE_HIDDEN_VOL">Fel: Den dolda volymen som ska skapas är större än {0} TB ({1} GB).\n\nMöjliga lösningar:\n- Skapa en behållare/partition som är mindre än {0} TB.\n</entry>
<entry lang="sv" key="LINUX_MAX_SIZE_HINT">- Använd en enhet med 4096-byte sektorer för att kunna skapa partitions-/enhetsvärdade dolda volymer upp till 16 TB i storlek</entry>
<entry lang="sv" key="LINUX_DOT_LF">.\n</entry>
<entry lang="sv" key="LINUX_NOT_SUPPORTED"> (stöds inte av komponenter tillgängliga på den här plattformen).\n</entry>
<entry lang="sv" key="LINUX_KERNEL_OLD">Ditt system använder en gammal version av Linux-kärnan.\n\nPå grund av ett fel i Linux-kärnan kan ditt system sluta svara när du skriver data till en VeraCrypt-volym. Detta problem kan lösas genom att uppgradera kärnan till version 2.6.24 eller senare.</entry>
<entry lang="sv" key="LINUX_VOL_UNMOUNTED">Volymen {0} har demonterats.</entry>
<entry lang="sv" key="LINUX_VOL_MOUNTED">Volymen {0} har monterats.</entry>
@@ -1668,8 +1664,9 @@
<entry lang="en" key="PIM_ARGON2_LARGE_WARNING">You have chosen an Argon2 PIM value that is larger than VeraCrypt default value.\nPlease note that this can require more memory and lead to much slower mounting.</entry>
<entry lang="en" key="PIM_ARGON2_SMALL_WARNING">You have chosen an Argon2 PIM value that is smaller than the default VeraCrypt value. Please note that if your password is not strong enough, this could lead to weaker security.\n\nDo you confirm that you are using a strong password?</entry>
<entry lang="en" key="PIM_ARGON2_REQUIRE_LONG_PASSWORD">Password must contain 20 or more characters in order to use the specified Argon2 PIM.\nShorter passwords can only be used if the Argon2 PIM is 12 or greater.</entry>
<entry lang="en" key="LINUX_PREF_MOUNT_NTFS_WITH_NTFS3">Mount NTFS volumes with the Linux kernel ntfs3 driver</entry>
<entry lang="en" key="LINUX_PREF_MOUNT_NTFS_WITH_NTFS3_HELP">Linux only. When enabled, VeraCrypt probes the decrypted virtual device with blkid -p and mounts detected NTFS filesystems with ntfs3 instead of the default NTFS backend. If NTFS detection fails, VeraCrypt uses the normal automatic filesystem selection. If ntfs3 is unavailable or blocked by the distribution, mounting may fail. This opt-in option can avoid suspend or hibernate hangs caused by frozen user-space FUSE filesystems.</entry>
<entry lang="en" key="LINUX_PREF_MOUNT_NTFS_WITH_KERNEL_DRIVER">Mount NTFS volumes with an in-kernel Linux driver</entry>
<entry lang="en" key="LINUX_PREF_MOUNT_NTFS_WITH_KERNEL_DRIVER_HELP">Linux only. When enabled and no explicit filesystem type was supplied, VeraCrypt probes the decrypted virtual device with blkid -p and mounts detected NTFS filesystems with an available in-kernel NTFS driver, bypassing mount helpers such as ntfs-3g. VeraCrypt uses ntfs when it is positively identified as a modern read/write driver or expected on Linux 7.1 or later, and otherwise uses ntfs3. If NTFS detection fails, VeraCrypt uses the normal automatic filesystem selection. If no supported in-kernel NTFS driver is available or loadable, mounting fails. This opt-in option can avoid suspend or hibernate hangs caused by frozen user-space FUSE filesystems.</entry>
<entry lang="en" key="LINUX_KERNEL_NTFS_DRIVER_UNAVAILABLE">No supported in-kernel NTFS driver is available or loadable. To use the system default NTFS backend, disable the NTFS kernel-driver preference or do not request kernel NTFS explicitly.</entry>
<entry lang="en" key="LINUX_EMERGENCY_UNMOUNT_WARNING">Normal unmount of volume {0} failed. This can happen when applications still have files or directories open on the volume, or when the backing device was disconnected and the mount became stale.\n\nIf the device is still connected, choose No, close applications using the volume, and try unmounting again.\n\nIf the device was disconnected or the mount is stale, VeraCrypt can attempt emergency cleanup by lazy-detaching the filesystem and removing or scheduling removal of VeraCrypt kernel objects. Pending writes may have failed, data may be lost, and cleanup may remain pending until applications close open files. Check the filesystem with fsck or the appropriate repair tool before using it again.\n\nContinue?</entry>
<entry lang="en" key="LINUX_EMERGENCY_UNMOUNTED">Emergency cleanup for volume {0} has been initiated. If the volume was disconnected, the mount was stale, or there were pending writes, check the filesystem with fsck or the appropriate repair tool before using it again.</entry>
<entry lang="en" key="FORMAT_STAGE_WRITING_DATA">Creating volume data. Please wait.</entry>
+4 -7
View File
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<VeraCrypt>
<localization prog-version="1.26.28">
<localization prog-version="1.26.29">
<language langid="th" name="ภาษาไทย" en-name="Thai" version="0.0.0" translators=""/>
<font lang="th" class="normal" size="11" face="default" />
<font lang="th" class="bold" size="13" face="Arial" />
@@ -1517,10 +1517,6 @@
<entry lang="th" key="LINUX_MOUNTET_HINT">ระบบไฟล์ของอุปกรณ์ที่เลือกถูกติดตั้งอยู่ในปัจจุบัน กรุณาถอดติดตั้ง '{0}' ก่อนดำเนินการต่อ.</entry>
<entry lang="th" key="LINUX_HIDDEN_PASS_NO_DIFF">ปริมาณที่ซ่อนไม่สามารถมีรหัสผ่าน, PIM และคีย์ไฟล์เดียวกันกับปริมาณภายนอก</entry>
<entry lang="th" key="LINUX_NOT_FAT_HINT">โปรดทราบว่าปริมาณจะไม่ได้ถูกฟอร์แมทด้วยระบบไฟล์ FAT และ, ดังนั้น, คุณอาจจะต้องติดตั้งไดรเวอร์ระบบไฟล์เพิ่มเติมบนแพลตฟอร์มอื่นเพื่อให้สามารถติดตั้งปริมาณได้.</entry>
<entry lang="th" key="LINUX_ERROR_SIZE_HIDDEN_VOL">ข้อผิดพลาด: ปริมาณที่ซ่อนที่กำลังจะถูกสร้างมีขนาดใหญ่กว่า {0} TB ({1} GB).\n\nวิธีแก้ปัญหาที่เป็นไปได้:\n- สร้างตัวเก็บ/พาร์ติชันที่มีขนาดเล็กกว่า {0} TB.\n</entry>
<entry lang="th" key="LINUX_MAX_SIZE_HINT">- ใช้ไดรฟ์ที่มีเซ็กเตอร์ขนาด 4096-ไบต์เพื่อให้สามารถสร้างพาร์ติชัน/อุปกรณ์ที่มีปริมาณที่ซ่อนได้ถึง 16 TB</entry>
<entry lang="th" key="LINUX_DOT_LF">.\n</entry>
<entry lang="th" key="LINUX_NOT_SUPPORTED"> (ไม่รองรับโดยส่วนประกอบที่มีอยู่ในแพลตฟอร์มนี้).\n</entry>
<entry lang="th" key="LINUX_KERNEL_OLD">ระบบของคุณใช้เวอร์ชันเก่าของเคอร์เนล Linux.\n\nเนื่องจากบั๊กในเคอร์เนล Linux, ระบบของคุณอาจหยุดตอบสนองเมื่อเขียนข้อมูลไปยังปริมาณ VeraCrypt. ปัญหานี้สามารถแก้ได้โดยการอัปเกรดเคอร์เนลเป็นเวอร์ชัน 2.6.24 หรือใหม่กว่า.</entry>
<entry lang="th" key="LINUX_VOL_UNMOUNTED">ปริมาณ {0} ถูกถอดติดตั้งแล้ว.</entry>
<entry lang="th" key="LINUX_VOL_MOUNTED">ปริมาณ {0} ถูกติดตั้งแล้ว.</entry>
@@ -1668,8 +1664,9 @@
<entry lang="en" key="PIM_ARGON2_LARGE_WARNING">You have chosen an Argon2 PIM value that is larger than VeraCrypt default value.\nPlease note that this can require more memory and lead to much slower mounting.</entry>
<entry lang="en" key="PIM_ARGON2_SMALL_WARNING">You have chosen an Argon2 PIM value that is smaller than the default VeraCrypt value. Please note that if your password is not strong enough, this could lead to weaker security.\n\nDo you confirm that you are using a strong password?</entry>
<entry lang="en" key="PIM_ARGON2_REQUIRE_LONG_PASSWORD">Password must contain 20 or more characters in order to use the specified Argon2 PIM.\nShorter passwords can only be used if the Argon2 PIM is 12 or greater.</entry>
<entry lang="en" key="LINUX_PREF_MOUNT_NTFS_WITH_NTFS3">Mount NTFS volumes with the Linux kernel ntfs3 driver</entry>
<entry lang="en" key="LINUX_PREF_MOUNT_NTFS_WITH_NTFS3_HELP">Linux only. When enabled, VeraCrypt probes the decrypted virtual device with blkid -p and mounts detected NTFS filesystems with ntfs3 instead of the default NTFS backend. If NTFS detection fails, VeraCrypt uses the normal automatic filesystem selection. If ntfs3 is unavailable or blocked by the distribution, mounting may fail. This opt-in option can avoid suspend or hibernate hangs caused by frozen user-space FUSE filesystems.</entry>
<entry lang="en" key="LINUX_PREF_MOUNT_NTFS_WITH_KERNEL_DRIVER">Mount NTFS volumes with an in-kernel Linux driver</entry>
<entry lang="en" key="LINUX_PREF_MOUNT_NTFS_WITH_KERNEL_DRIVER_HELP">Linux only. When enabled and no explicit filesystem type was supplied, VeraCrypt probes the decrypted virtual device with blkid -p and mounts detected NTFS filesystems with an available in-kernel NTFS driver, bypassing mount helpers such as ntfs-3g. VeraCrypt uses ntfs when it is positively identified as a modern read/write driver or expected on Linux 7.1 or later, and otherwise uses ntfs3. If NTFS detection fails, VeraCrypt uses the normal automatic filesystem selection. If no supported in-kernel NTFS driver is available or loadable, mounting fails. This opt-in option can avoid suspend or hibernate hangs caused by frozen user-space FUSE filesystems.</entry>
<entry lang="en" key="LINUX_KERNEL_NTFS_DRIVER_UNAVAILABLE">No supported in-kernel NTFS driver is available or loadable. To use the system default NTFS backend, disable the NTFS kernel-driver preference or do not request kernel NTFS explicitly.</entry>
<entry lang="en" key="LINUX_EMERGENCY_UNMOUNT_WARNING">Normal unmount of volume {0} failed. This can happen when applications still have files or directories open on the volume, or when the backing device was disconnected and the mount became stale.\n\nIf the device is still connected, choose No, close applications using the volume, and try unmounting again.\n\nIf the device was disconnected or the mount is stale, VeraCrypt can attempt emergency cleanup by lazy-detaching the filesystem and removing or scheduling removal of VeraCrypt kernel objects. Pending writes may have failed, data may be lost, and cleanup may remain pending until applications close open files. Check the filesystem with fsck or the appropriate repair tool before using it again.\n\nContinue?</entry>
<entry lang="en" key="LINUX_EMERGENCY_UNMOUNTED">Emergency cleanup for volume {0} has been initiated. If the volume was disconnected, the mount was stale, or there were pending writes, check the filesystem with fsck or the appropriate repair tool before using it again.</entry>
<entry lang="en" key="FORMAT_STAGE_WRITING_DATA">Creating volume data. Please wait.</entry>
+42 -45
View File
@@ -1,6 +1,6 @@
<?xml version='1.0' encoding='UTF-8' standalone='no'?>
<VeraCrypt>
<localization prog-version="1.26.28">
<localization prog-version="1.26.29">
<language langid="tr" name="Türkçe" en-name="Turkish" version="1.26.20" translators="FabSec; By Fabriel, Ali İskender Turan, Zeynel Abidin Öztürk, Mehmet Keçeci, Kaya Zeren" />
<font lang="tr" class="normal" size="11" face="default" />
<font lang="tr" class="bold" size="13" face="Arial" />
@@ -1517,10 +1517,6 @@
<entry lang="tr" key="LINUX_MOUNTET_HINT">Seçilmiş aygıtın dosya sistemi şu anda bağlı. İlerlemeden önce lütfen '{0}' bağlantısını kesin.</entry>
<entry lang="tr" key="LINUX_HIDDEN_PASS_NO_DIFF">Gizli birim, dış birim ile aynı parolaya KÇÇ değerine ve anahtar dosyalarına sahip olamaz</entry>
<entry lang="tr" key="LINUX_NOT_FAT_HINT">Birimin bir FAT dosya sistemiyle biçimlendirilmeyeceğini ve bu nedenle, {0} dışındaki platformlara birimi bağlayabilmeniz için ek dosya sistemi sürücüleri kurmanız gerekebileceğini lütfen unutmayın.</entry>
<entry lang="tr" key="LINUX_ERROR_SIZE_HIDDEN_VOL">Hata: Oluşturulacak gizli birim {0} TB değerinden büyük ({1} GB).\n\nOlası çözümler:\n- {0} TB boyutundan küçük bir kapsayıcı ya da bölüm oluşturun.\n</entry>
<entry lang="tr" key="LINUX_MAX_SIZE_HINT">- 16 TB boyutuna kadar bölüm ya da aygıt üzerinde barındırılan gizli birimler oluşturabilmek için 4096 baytlık kesimleri olan bir sürücü kullanın</entry>
<entry lang="tr" key="LINUX_DOT_LF">.\n</entry>
<entry lang="tr" key="LINUX_NOT_SUPPORTED">(bu platformda bulunan bileşenler tarafından desteklenmiyor).\n</entry>
<entry lang="tr" key="LINUX_KERNEL_OLD">Sisteminiz Linux çekirdeğinin eski bir sürümünü kullanıyor.\n\nLinux çekirdeğindeki bir sorun nedeniyle sisteminiz VeraCrypt birimine veri yazarken yanıt vermeyebilir. Bu sorun, çekirdeği 2.6.24 ya da üzerindeki bir sürüme yükselterek çözülebilir.</entry>
<entry lang="tr" key="LINUX_VOL_UNMOUNTED">{0} biriminin bağlantısı kesildi.</entry>
<entry lang="tr" key="LINUX_VOL_MOUNTED">{0} birimi bağlandı.</entry>
@@ -1647,46 +1643,47 @@
<entry lang="tr" key="IDC_DISABLE_SCREEN_PROTECTION">Ekran görüntüsü ve ekran kaydına karşı korumayı devre dışı bırak</entry>
<entry lang="tr" key="DISABLE_SCREEN_PROTECTION_WARNING">UYARI: Ekran korumasını devre dışı bırakmak güvenliği önemli ölçüde azaltır. Bu seçeneği YALNIZCA VeraCrypt arayüzünü yakalamak için özel bir ihtiyacınız varsa etkinleştirin. Bu işlem, hassas verilerin ekran görüntüsü araçları ve Windows 11 Recall gibi ekran kaydı özelliklerine maruz kalmasına neden olabilir.</entry>
<entry lang="tr" key="MEMORY_COST">Bellek Maliyeti</entry>
<entry lang="en" key="IDT_KDF_ALGO">KDF Algorithm</entry>
<entry lang="en" key="IDD_PREFERENCES_TAB_GENERAL">General</entry>
<entry lang="en" key="IDD_PREFERENCES_TAB_ACTIONS">Actions</entry>
<entry lang="en" key="IDD_PREFERENCES_TAB_PASSWORD">Password</entry>
<entry lang="en" key="IDC_SECURE_DESKTOP_ENABLE_IME">Enable Input Method Editor (IME) in Secure Desktop</entry>
<entry lang="en" key="ENABLE_IME_IN_SECURE_DESKTOP_WARNING">WARNING: Enable this option only if you are encountering issues when selecting Keyfiles/Tokens under Secure Desktop.</entry>
<entry lang="en" key="ERR_KEY_DERIVATION_FAILED">Key derivation failed. This may be caused by insufficient memory or an interrupted operation.</entry>
<entry lang="en" key="EFI_MS_BOOT_LOADER_RESTORE_FAILED">The system partition/drive is already decrypted, but the EFI Microsoft boot loader path was not restored to the Windows Boot Manager. Only the EFI boot files need repair. Use the VeraCrypt Rescue Disk repair option, or boot Windows recovery media and run 'bcdboot W:\\Windows /s S: /f UEFI' after replacing W: with the Windows volume drive letter and S: with the EFI System Partition drive letter. Path:</entry>
<entry lang="en" key="EFI_FALLBACK_BOOT_LOADER_STILL_VERACRYPT">The system partition/drive is already decrypted, but the EFI fallback boot loader path still contains the VeraCrypt Boot Loader. Only the EFI boot files need repair. Use the VeraCrypt Rescue Disk repair option, or boot Windows recovery media and run 'bcdboot W:\\Windows /s S: /f UEFI' after replacing W: with the Windows volume drive letter and S: with the EFI System Partition drive letter. Path:</entry>
<entry lang="en" key="IDM_REPAIR_EFI_BOOT_LOADER">Repair EFI Boot Loader...</entry>
<entry lang="en" key="CONFIRM_REPAIR_EFI_BOOT_LOADER">VeraCrypt will restore the Windows EFI boot loader paths and remove VeraCrypt EFI boot entries and files.\n\nUse this only after the system partition/drive is fully decrypted and Windows can boot without system encryption.\n\nDo you want to continue?</entry>
<entry lang="en" key="EFI_BOOT_LOADER_FILE_READ_FAILED">The EFI boot loader file could not be read completely:</entry>
<entry lang="en" key="EFI_BOOT_LOADER_FILE_TOO_LARGE">The EFI boot loader file is unexpectedly large and was not inspected:</entry>
<entry lang="en" key="EFI_BOOT_LOADER_NVRAM_CLEANUP_FAILED">The system partition/drive is already decrypted and the EFI boot loader files were restored, but VeraCrypt could not remove one or more VeraCrypt firmware boot entries. The VeraCrypt EFI files were left in place so any remaining firmware entry still points to an existing loader. Retry as Administrator or remove the VeraCrypt boot entry from firmware setup after confirming Windows Boot Manager starts normally.</entry>
<entry lang="en" key="EFI_BOOT_LOADER_REPAIR_BLOCKED">The EFI boot loader cannot be repaired while system encryption or decryption is active or incomplete. Complete or resume the pending system encryption/decryption process before retrying.</entry>
<entry lang="en" key="EFI_BOOT_LOADER_REPAIR_NOT_APPLICABLE">This repair action is available only on systems booting in UEFI mode from a GPT system partition.</entry>
<entry lang="en" key="EFI_BOOT_LOADER_REPAIR_SUCCESS">The EFI boot loader has been repaired successfully.</entry>
<entry lang="en" key="PIM_ARGON2_HELP">PIM (Personal Iterations Multiplier) controls the memory and time costs used by Argon2id header key derivation as follows:\n Memory = min(64 MiB + ((PIM - 1) x 32 MiB), 1024 MiB)\n Iterations = 3 + ((PIM - 1) / 3) for PIM 31 or lower, then 13 + (PIM - 31)\n\nWhen left empty or set to 0, VeraCrypt will use the default Argon2 PIM (12), which uses 416 MiB of memory and 6 iterations.\n\nWhen the password is less than 20 characters, Argon2 PIM can't be smaller than 12 in order to maintain a minimal security level.\nWhen the password is 20 characters or more, Argon2 PIM can be set to any value.\n\nAn Argon2 PIM larger than 12 increases memory usage up to 1024 MiB and then increases iterations. This will lead to slower mounting. A small Argon2 PIM (less than 12) will lead to quicker mounting but it can reduce security if the password is not strong enough.</entry>
<entry lang="en" key="PIM_ARGON2_LARGE_WARNING">You have chosen an Argon2 PIM value that is larger than VeraCrypt default value.\nPlease note that this can require more memory and lead to much slower mounting.</entry>
<entry lang="en" key="PIM_ARGON2_SMALL_WARNING">You have chosen an Argon2 PIM value that is smaller than the default VeraCrypt value. Please note that if your password is not strong enough, this could lead to weaker security.\n\nDo you confirm that you are using a strong password?</entry>
<entry lang="en" key="PIM_ARGON2_REQUIRE_LONG_PASSWORD">Password must contain 20 or more characters in order to use the specified Argon2 PIM.\nShorter passwords can only be used if the Argon2 PIM is 12 or greater.</entry>
<entry lang="en" key="LINUX_PREF_MOUNT_NTFS_WITH_NTFS3">Mount NTFS volumes with the Linux kernel ntfs3 driver</entry>
<entry lang="en" key="LINUX_PREF_MOUNT_NTFS_WITH_NTFS3_HELP">Linux only. When enabled, VeraCrypt probes the decrypted virtual device with blkid -p and mounts detected NTFS filesystems with ntfs3 instead of the default NTFS backend. If NTFS detection fails, VeraCrypt uses the normal automatic filesystem selection. If ntfs3 is unavailable or blocked by the distribution, mounting may fail. This opt-in option can avoid suspend or hibernate hangs caused by frozen user-space FUSE filesystems.</entry>
<entry lang="en" key="LINUX_EMERGENCY_UNMOUNT_WARNING">Normal unmount of volume {0} failed. This can happen when applications still have files or directories open on the volume, or when the backing device was disconnected and the mount became stale.\n\nIf the device is still connected, choose No, close applications using the volume, and try unmounting again.\n\nIf the device was disconnected or the mount is stale, VeraCrypt can attempt emergency cleanup by lazy-detaching the filesystem and removing or scheduling removal of VeraCrypt kernel objects. Pending writes may have failed, data may be lost, and cleanup may remain pending until applications close open files. Check the filesystem with fsck or the appropriate repair tool before using it again.\n\nContinue?</entry>
<entry lang="en" key="LINUX_EMERGENCY_UNMOUNTED">Emergency cleanup for volume {0} has been initiated. If the volume was disconnected, the mount was stale, or there were pending writes, check the filesystem with fsck or the appropriate repair tool before using it again.</entry>
<entry lang="en" key="FORMAT_STAGE_WRITING_DATA">Creating volume data. Please wait.</entry>
<entry lang="en" key="FORMAT_STAGE_WRITING_BACKUP_HEADER">Finalizing volume creation: writing backup header.</entry>
<entry lang="en" key="FORMAT_STAGE_FLUSHING_DATA">Finalizing volume creation: flushing data to disk. This can take several minutes on large volumes or slow/USB storage.</entry>
<entry lang="en" key="FORMAT_STAGE_FINISHED">Finalizing volume creation.</entry>
<entry lang="en" key="FORMAT_STAGE_ABORTED">Volume creation has been aborted.</entry>
<entry lang="en" key="FORMAT_STAGE_ERROR">Volume creation failed.</entry>
<entry lang="en" key="FORMAT_STAGE_PREPARING_TEMP_VOLUME">Finalizing volume creation: mounting temporary volume.</entry>
<entry lang="en" key="FORMAT_STAGE_PREPARING_TEMP_DEVICE">Finalizing volume creation: preparing temporary device.</entry>
<entry lang="en" key="FORMAT_STAGE_CREATING_FILESYSTEM">Finalizing volume creation: creating filesystem using {0}.</entry>
<entry lang="en" key="FORMAT_STAGE_DISMOUNTING_TEMP_VOLUME">Finalizing volume creation: dismounting temporary volume.</entry>
<entry lang="en" key="MACOSX_APFS_SYNTHESIZED_DEVICE">The selected device '{0}' is an APFS synthesized container or volume and cannot be used as a raw VeraCrypt volume host.\n\nSelect the physical APFS store partition{1} instead.</entry>
<entry lang="en" key="MACOSX_DEVICE_SYSTEM_PARTITION">The selected device '{0}' is a macOS system/support partition and cannot be used as a VeraCrypt volume host.</entry>
<entry lang="en" key="MACOSX_APFS_SYSTEM_STORE">The selected APFS physical store '{0}' contains the currently mounted macOS system volume and cannot be used as a VeraCrypt volume host.</entry>
<entry lang="en" key="MACOSX_DEVICE_NOT_WRITABLE">macOS reports the selected device '{0}' as read-only. Select a writable physical partition or disk.</entry>
<entry lang="en" key="MACOSX_APFS_EROFS_HINT">macOS reported the selected device as read-only. If this is an APFS disk, make sure you selected the physical APFS store partition, not an APFS synthesized volume. Use Disk Utility or 'diskutil list' to identify the physical partition, then retry.</entry>
<entry lang="tr" key="IDT_KDF_ALGO">KDF algoritması</entry>
<entry lang="tr" key="IDD_PREFERENCES_TAB_GENERAL">Genel</entry>
<entry lang="tr" key="IDD_PREFERENCES_TAB_ACTIONS">İşlemler</entry>
<entry lang="tr" key="IDD_PREFERENCES_TAB_PASSWORD">Parola</entry>
<entry lang="tr" key="IDC_SECURE_DESKTOP_ENABLE_IME">Güvenli masaüstünde giriş yöntemi düzenleyicisi (IME) kullanılsın</entry>
<entry lang="tr" key="ENABLE_IME_IN_SECURE_DESKTOP_WARNING">UYARI: Bu seçeneği YALNIZCA güvenli masaüstünde anahtar dosyalarını/güvenlik kodlarını seçerken sorun yaşıyorsanız etkinleştirin.</entry>
<entry lang="tr" key="ERR_KEY_DERIVATION_FAILED">Anahtar türetilemedi. Bunun nedeni yetersiz bellek ya da yarıda kesilmiş bir işlem olabilir.</entry>
<entry lang="tr" key="EFI_MS_BOOT_LOADER_RESTORE_FAILED">Sistem bölümünün/sürücüsünün şifresi zaten çözülmüş, ancak Microsoft EFI başlatma yükleyicisi yolu Windows Başlatma Yöneticisine geri yüklenemedi. Yalnızca EFI başlatma dosyalarının onarılması gerekir. VeraCrypt kurtarma diski onarım seçeneğini kullanın ya da Windows kurtarma ortamından başlatıp W: yerine Windows biriminin sürücü harfini, S: yerine EFI Sistem Bölümünün sürücü harfini yazarak 'bcdboot W:\\Windows /s S: /f UEFI' komutunu çalıştırın. Yol:</entry>
<entry lang="tr" key="EFI_FALLBACK_BOOT_LOADER_STILL_VERACRYPT">Sistem bölümünün/sürücüsünün şifresi zaten çözülmüş, ancak EFI geri dönüş başlatma yükleyicisi yolu hala VeraCrypt başlatma yükleyicisini içeriyor. Yalnızca EFI başlatma dosyalarının onarılması gerekir. VeraCrypt kurtarma diski onarım seçeneğini kullanın ya da Windows kurtarma ortamından başlatıp W: yerine Windows biriminin sürücü harfini, S: yerine EFI Sistem Bölümünün sürücü harfini yazarak 'bcdboot W:\\Windows /s S: /f UEFI' komutunu çalıştırın. Yol:</entry>
<entry lang="tr" key="IDM_REPAIR_EFI_BOOT_LOADER">EFI başlatma yükleyicisini onar...</entry>
<entry lang="tr" key="CONFIRM_REPAIR_EFI_BOOT_LOADER">VeraCrypt, Windows EFI başlatma yükleyicisi yollarını geri yükleyecek ve VeraCrypt EFI başlatma kayıtlarını ve dosyalarını kaldıracak.\n\nBunu yalnızca sistem bölümünün/sürücüsünün şifresi tümüyle çözüldükten ve Windows sistem şifrelemesi olmadan başlatılabildikten sonra kullanın.\n\nİlerlemek istiyor musunuz?</entry>
<entry lang="tr" key="EFI_BOOT_LOADER_FILE_READ_FAILED">EFI başlatma yükleyicisi dosyası tümüyle okunamadı:</entry>
<entry lang="tr" key="EFI_BOOT_LOADER_FILE_TOO_LARGE">EFI başlatma yükleyicisi dosyası beklenmedik şekilde büyük ve incelenmedi:</entry>
<entry lang="tr" key="EFI_BOOT_LOADER_NVRAM_CLEANUP_FAILED">Sistem bölümünün/sürücüsünün şifresi zaten çözülmüş ve EFI başlatma yükleyicisi dosyaları geri yüklenmiş, ancak VeraCrypt bir ya da daha fazla VeraCrypt makine yazılımı başlatma kaydını kaldıramadı. Kalan makine yazılımı kayıtlarının var olan bir yükleyiciyi göstermeyi sürdürmesi için VeraCrypt EFI dosyaları yerinde bırakıldı. Yönetici olarak yeniden deneyin ya da Windows Başlatma Yöneticisinin normal şekilde başladığını doğruladıktan sonra VeraCrypt başlatma kaydını makine yazılımı ayarlarından kaldırın.</entry>
<entry lang="tr" key="EFI_BOOT_LOADER_REPAIR_BLOCKED">Sistem şifrelemesi ya da şifre çözme işlemi etkin veya tamamlanmamışken EFI başlatma yükleyicisi onarılamaz. Yeniden denemeden önce bekleyen sistem şifreleme/şifre çözme işlemini tamamlayın ya da sürdürün.</entry>
<entry lang="tr" key="EFI_BOOT_LOADER_REPAIR_NOT_APPLICABLE">Bu onarım işlemi yalnızca GPT sistem bölümünden UEFI kipinde başlatılan sistemlerde kullanılabilir.</entry>
<entry lang="tr" key="EFI_BOOT_LOADER_REPAIR_SUCCESS">EFI başlatma yükleyicisi başarıyla onarıldı.</entry>
<entry lang="tr" key="PIM_ARGON2_HELP">Kişisel çevrim çarpanı (PIM) değeri, Argon2id üst bilgi anahtar türetmesi tarafından kullanılan bellek ve süre maliyetlerini şu şekilde kontrol eder:\n Bellek = min(64 MiB + ((PIM - 1) x 32 MiB), 1024 MiB)\n Çevrim = PIM 31 ya da daha düşükse 3 + ((PIM - 1) / 3), daha yüksekse 13 + (PIM - 31)\n\nBoş bırakıldığında ya da 0 olarak ayarlandığında, VeraCrypt varsayılan Argon2 PIM değerini (12) kullanır. Bu değer 416 MiB bellek ve 6 çevrim kullanır.\n\nParola 20 karakterden kısaysa, en düşük güvenlik düzeyini korumak için Argon2 PIM 12 değerinden küçük olamaz.\nParola 20 karakter ya da daha uzunsa, Argon2 PIM herhangi bir değere ayarlanabilir.\n\n12 değerinden büyük bir Argon2 PIM bellek kullanımını 1024 MiB değerine kadar artırır ve ardından çevrimleri artırır. Bu, bağlanmanın yavaşlamasına neden olur. Küçük bir Argon2 PIM (12 değerinden küçük) daha hızlı bağlanma sağlar ancak parola yeterince güçlü değilse güvenliği azaltabilir.</entry>
<entry lang="tr" key="PIM_ARGON2_LARGE_WARNING">Varsayılan VeraCrypt değerinden daha büyük bir Argon2 PIM değeri seçtiniz.\nLütfen bunun daha fazla bellek gerektirebileceğini ve bağlanmanın çok daha yavaş olmasına yol açabileceğini unutmayın.</entry>
<entry lang="tr" key="PIM_ARGON2_SMALL_WARNING">Varsayılan VeraCrypt değerinden daha küçük bir Argon2 PIM değeri seçtiniz. Lütfen parolanız yeterince güçlü değilse bunun güvenliği zayıflatabileceğini unutmayın.\n\nGüçlü bir parola kullandığınızı onaylıyor musunuz?</entry>
<entry lang="tr" key="PIM_ARGON2_REQUIRE_LONG_PASSWORD">Belirtilen Argon2 PIM değerinin kullanılabilmesi için parola 20 ya da daha fazla karakterden oluşmalıdır.\nDaha kısa parolalar için Argon2 PIM değeri 12 ya da daha büyük olmalıdır.</entry>
<entry lang="tr" key="LINUX_PREF_MOUNT_NTFS_WITH_KERNEL_DRIVER">NTFS birimleri çekirdek içi Linux sürücüsüyle bağlansın</entry>
<entry lang="tr" key="LINUX_PREF_MOUNT_NTFS_WITH_KERNEL_DRIVER_HELP">Yalnızca Linux. Etkinleştirildiğinde ve dosya sistemi türü açıkça belirtilmediğinde, VeraCrypt şifresi çözülmüş sanal aygıtı blkid -p ile inceler ve algılanan NTFS dosya sistemlerini, ntfs-3g gibi bağlama yardımcılarını atlayarak kullanılabilir bir çekirdek içi NTFS sürücüsüyle bağlar. VeraCrypt, ntfs sürücüsü modern bir okuma/yazma sürücüsü olarak kesin şekilde tanımlandığında ya da Linux 7.1 veya üzerindeki sürümlerde bekleniyorsa ntfs kullanır; diğer durumlarda ntfs3 kullanır. NTFS algılaması başarısız olursa, VeraCrypt normal otomatik dosya sistemi seçimini kullanır. Desteklenen bir çekirdek içi NTFS sürücüsü yoksa ya da yüklenemiyorsa bağlama başarısız olur. Bu isteğe bağlı seçenek, donmuş kullanıcı alanı FUSE dosya sistemlerinin neden olduğu askıya alma veya hazırda bekletme takılmalarını önleyebilir.</entry>
<entry lang="tr" key="LINUX_KERNEL_NTFS_DRIVER_UNAVAILABLE">Desteklenen bir çekirdek içi NTFS sürücüsü yok ya da yüklenemiyor. Sistemin varsayılan NTFS altyapısını kullanmak için NTFS çekirdek sürücüsü tercihini kapatın ya da çekirdek NTFS kullanımını açıkça istemeyin.</entry>
<entry lang="tr" key="LINUX_EMERGENCY_UNMOUNT_WARNING">{0} biriminin normal bağlantı kesme işlemi başarısız oldu. Bu durum, uygulamaların birimde hala açık dosya ya da klasörleri olduğunda veya barındırma aygıtının bağlantısı kesilip bağlantı geçersiz kaldığında olabilir.\n\nAygıt hala bağlıysa, 'Hayır' seçeneğini seçin, birimi kullanan uygulamaları kapatın ve bağlantıyı kesmeyi yeniden deneyin.\n\nAygıtın bağlantısı kesildiyse ya da bağlantı geçersiz kaldıysa, VeraCrypt dosya sistemini gecikmeli olarak ayırıp VeraCrypt çekirdek nesnelerini kaldırarak veya kaldırılmak üzere zamanlayarak acil temizleme yapmayı deneyebilir. Bekleyen yazma işlemleri başarısız olmuş, veriler kaybolmuş olabilir ve uygulamalar açık dosyaları kapatana kadar temizleme beklemede kalabilir. Yeniden kullanmadan önce dosya sistemini fsck ya da uygun onarım aracıyla denetleyin.\n\nİlerlemek istiyor musunuz?</entry>
<entry lang="tr" key="LINUX_EMERGENCY_UNMOUNTED">{0} birimi için acil temizleme başlatıldı. Birimin bağlantısı kesildiyse, bağlantı geçersiz kaldıysa ya da bekleyen yazma işlemleri varsa, yeniden kullanmadan önce dosya sistemini fsck ya da uygun onarım aracıyla denetleyin.</entry>
<entry lang="tr" key="FORMAT_STAGE_WRITING_DATA">Birim verileri oluşturuluyor. Lütfen bekleyin.</entry>
<entry lang="tr" key="FORMAT_STAGE_WRITING_BACKUP_HEADER">Birim oluşturma tamamlanıyor: yedek üst bilgi yazılıyor.</entry>
<entry lang="tr" key="FORMAT_STAGE_FLUSHING_DATA">Birim oluşturma tamamlanıyor: veriler diske aktarılıyor. Bu işlem büyük birimlerde veya yavaş/USB depolamada birkaç dakika sürebilir.</entry>
<entry lang="tr" key="FORMAT_STAGE_FINISHED">Birim oluşturma tamamlanıyor.</entry>
<entry lang="tr" key="FORMAT_STAGE_ABORTED">Birim oluşturma iptal edildi.</entry>
<entry lang="tr" key="FORMAT_STAGE_ERROR">Birim oluşturma başarısız oldu.</entry>
<entry lang="tr" key="FORMAT_STAGE_PREPARING_TEMP_VOLUME">Birim oluşturma tamamlanıyor: geçici birim bağlanıyor.</entry>
<entry lang="tr" key="FORMAT_STAGE_PREPARING_TEMP_DEVICE">Birim oluşturma tamamlanıyor: geçici aygıt hazırlanıyor.</entry>
<entry lang="tr" key="FORMAT_STAGE_CREATING_FILESYSTEM">Birim oluşturma tamamlanıyor: {0} kullanılarak dosya sistemi oluşturuluyor.</entry>
<entry lang="tr" key="FORMAT_STAGE_DISMOUNTING_TEMP_VOLUME">Birim oluşturma tamamlanıyor: geçici birimin bağlantısı kesiliyor.</entry>
<entry lang="tr" key="MACOSX_APFS_SYNTHESIZED_DEVICE">Seçilmiş aygıt '{0}' sentezlenmiş bir APFS kapsayıcısı ya da birimidir ve ham VeraCrypt birimi barındırmak için kullanılamaz.\n\nBunun yerine fiziksel APFS depolama bölümünü{1} seçin.</entry>
<entry lang="tr" key="MACOSX_DEVICE_SYSTEM_PARTITION">Seçilmiş aygıt '{0}' bir macOS sistem/destek bölümüdür ve VeraCrypt birimi barındırmak için kullanılamaz.</entry>
<entry lang="tr" key="MACOSX_APFS_SYSTEM_STORE">Seçilmiş fiziksel APFS deposu '{0}', şu anda bağlı olan macOS sistem birimini içeriyor ve VeraCrypt birimi barındırmak için kullanılamaz.</entry>
<entry lang="tr" key="MACOSX_DEVICE_NOT_WRITABLE">macOS, seçilmiş aygıtı '{0}' salt okunur olarak bildiriyor. Yazılabilir bir fiziksel bölüm ya da disk seçin.</entry>
<entry lang="tr" key="MACOSX_APFS_EROFS_HINT">macOS, seçilmiş aygıtı salt okunur olarak bildirdi. Bu bir APFS diskiyse, APFS sentezlenmiş birimi değil fiziksel APFS depolama bölümünü seçtiğinizden emin olun. Fiziksel bölümü belirlemek için Disk İzlencesi ya da 'diskutil list' komutunu kullanıp yeniden deneyin.</entry>
</localization>
<xs:schema attributeFormDefault="unqualified" elementFormDefault="qualified" xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:element name="VeraCrypt">
+4 -7
View File
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<VeraCrypt>
<localization prog-version="1.26.28">
<localization prog-version="1.26.29">
<language langid="uk" name="Українська" en-name="Ukrainian" version="1.1.0" translators="Kravchuk Olexandr, Babchuk Volodymyr" />
<font lang="uk" class="normal" size="11" face="default" />
<font lang="uk" class="bold" size="13" face="Arial" />
@@ -1517,10 +1517,6 @@
<entry lang="uk" key="LINUX_MOUNTET_HINT">Файлова система вибраного пристрою наразі змонтована. Будь ласка, відмонтируйте '{0}' перед продовженням.</entry>
<entry lang="uk" key="LINUX_HIDDEN_PASS_NO_DIFF">Прихований том не може мати однаковий пароль, PIM і ключові файли, як зовнішній том</entry>
<entry lang="uk" key="LINUX_NOT_FAT_HINT">Будь ласка, зверніть увагу, що том не буде відформатовано файловою системою FAT, і тому вам може знадобитися встановити додаткові драйвери файлової системи на інших платформах, окрім {0}, що дозволить вам монтувати том.</entry>
<entry lang="uk" key="LINUX_ERROR_SIZE_HIDDEN_VOL">Помилка: прихований том, який буде створено, більший за {0} ТБ ({1} ГБ).\n\nМожливі рішення:\n- Створити контейнер/розділ, менший за {0} ТБ.\n</entry>
<entry lang="uk" key="LINUX_MAX_SIZE_HINT">- Використовуйте накопичувач із 4096-байтовими секторами, щоб створити розділи/пристрої, що розміщують приховані томи, розміром до 16 ТБ </entry>
<entry lang="uk" key="LINUX_DOT_LF">.\n</entry>
<entry lang="uk" key="LINUX_NOT_SUPPORTED"> (не підтримується компонентами, доступними на цій платформі).\n</entry>
<entry lang="uk" key="LINUX_KERNEL_OLD">Ваша система використовує стару версію ядра Linux.\n\nЧерез помилку в ядрі Linux ваша система може перестати відповідати під час запису даних на томи VeraCrypt. Цю проблему можна вирішити, оновивши ядро до версії 2.6.24 або новішої.</entry>
<entry lang="uk" key="LINUX_VOL_UNMOUNTED">Том {0} було відмонтовано.</entry>
<entry lang="uk" key="LINUX_VOL_MOUNTED">Том {0} було змонтовано.</entry>
@@ -1668,8 +1664,9 @@
<entry lang="en" key="PIM_ARGON2_LARGE_WARNING">You have chosen an Argon2 PIM value that is larger than VeraCrypt default value.\nPlease note that this can require more memory and lead to much slower mounting.</entry>
<entry lang="en" key="PIM_ARGON2_SMALL_WARNING">You have chosen an Argon2 PIM value that is smaller than the default VeraCrypt value. Please note that if your password is not strong enough, this could lead to weaker security.\n\nDo you confirm that you are using a strong password?</entry>
<entry lang="en" key="PIM_ARGON2_REQUIRE_LONG_PASSWORD">Password must contain 20 or more characters in order to use the specified Argon2 PIM.\nShorter passwords can only be used if the Argon2 PIM is 12 or greater.</entry>
<entry lang="en" key="LINUX_PREF_MOUNT_NTFS_WITH_NTFS3">Mount NTFS volumes with the Linux kernel ntfs3 driver</entry>
<entry lang="en" key="LINUX_PREF_MOUNT_NTFS_WITH_NTFS3_HELP">Linux only. When enabled, VeraCrypt probes the decrypted virtual device with blkid -p and mounts detected NTFS filesystems with ntfs3 instead of the default NTFS backend. If NTFS detection fails, VeraCrypt uses the normal automatic filesystem selection. If ntfs3 is unavailable or blocked by the distribution, mounting may fail. This opt-in option can avoid suspend or hibernate hangs caused by frozen user-space FUSE filesystems.</entry>
<entry lang="en" key="LINUX_PREF_MOUNT_NTFS_WITH_KERNEL_DRIVER">Mount NTFS volumes with an in-kernel Linux driver</entry>
<entry lang="en" key="LINUX_PREF_MOUNT_NTFS_WITH_KERNEL_DRIVER_HELP">Linux only. When enabled and no explicit filesystem type was supplied, VeraCrypt probes the decrypted virtual device with blkid -p and mounts detected NTFS filesystems with an available in-kernel NTFS driver, bypassing mount helpers such as ntfs-3g. VeraCrypt uses ntfs when it is positively identified as a modern read/write driver or expected on Linux 7.1 or later, and otherwise uses ntfs3. If NTFS detection fails, VeraCrypt uses the normal automatic filesystem selection. If no supported in-kernel NTFS driver is available or loadable, mounting fails. This opt-in option can avoid suspend or hibernate hangs caused by frozen user-space FUSE filesystems.</entry>
<entry lang="en" key="LINUX_KERNEL_NTFS_DRIVER_UNAVAILABLE">No supported in-kernel NTFS driver is available or loadable. To use the system default NTFS backend, disable the NTFS kernel-driver preference or do not request kernel NTFS explicitly.</entry>
<entry lang="en" key="LINUX_EMERGENCY_UNMOUNT_WARNING">Normal unmount of volume {0} failed. This can happen when applications still have files or directories open on the volume, or when the backing device was disconnected and the mount became stale.\n\nIf the device is still connected, choose No, close applications using the volume, and try unmounting again.\n\nIf the device was disconnected or the mount is stale, VeraCrypt can attempt emergency cleanup by lazy-detaching the filesystem and removing or scheduling removal of VeraCrypt kernel objects. Pending writes may have failed, data may be lost, and cleanup may remain pending until applications close open files. Check the filesystem with fsck or the appropriate repair tool before using it again.\n\nContinue?</entry>
<entry lang="en" key="LINUX_EMERGENCY_UNMOUNTED">Emergency cleanup for volume {0} has been initiated. If the volume was disconnected, the mount was stale, or there were pending writes, check the filesystem with fsck or the appropriate repair tool before using it again.</entry>
<entry lang="en" key="FORMAT_STAGE_WRITING_DATA">Creating volume data. Please wait.</entry>
+4 -7
View File
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<VeraCrypt>
<localization prog-version="1.26.28">
<localization prog-version="1.26.29">
<language langid="uz" name="Ўзбекча" en-name="Uzbek (Cyrillic)" version="0.1.0" translators="Abdurauf Azizov, Dmitry Yerokhin" />
<font lang="uz" class="normal" size="11" face="default" />
<font lang="uz" class="bold" size="13" face="Arial" />
@@ -1517,10 +1517,6 @@
<entry lang="en" key="LINUX_MOUNTET_HINT">The filesystem of the selected device is currently mounted. Please unmount '{0}' before proceeding.</entry>
<entry lang="en" key="LINUX_HIDDEN_PASS_NO_DIFF">The Hidden volume can't have the same password, PIM and keyfiles as the Outer volume</entry>
<entry lang="en" key="LINUX_NOT_FAT_HINT">Please note that the volume will not be formatted with a FAT filesystem and, therefore, you may be required to install additional filesystem drivers on platforms other than {0}, which will enable you to mount the volume.</entry>
<entry lang="en" key="LINUX_ERROR_SIZE_HIDDEN_VOL">Error: The hidden volume to be created is larger than {0} TB ({1} GB).\n\nPossible solutions:\n- Create a container/partition smaller than {0} TB.\n</entry>
<entry lang="en" key="LINUX_MAX_SIZE_HINT">- Use a drive with 4096-byte sectors to be able to create partition/device-hosted hidden volumes up to 16 TB in size</entry>
<entry lang="en" key="LINUX_DOT_LF">.\n</entry>
<entry lang="en" key="LINUX_NOT_SUPPORTED"> (not supported by components available on this platform).\n</entry>
<entry lang="en" key="LINUX_KERNEL_OLD">Your system uses an old version of the Linux kernel.\n\nDue to a bug in the Linux kernel, your system may stop responding when writing data to a VeraCrypt volume. This problem can be solved by upgrading the kernel to version 2.6.24 or later.</entry>
<entry lang="en" key="LINUX_VOL_UNMOUNTED">Volume {0} has been unmounted.</entry>
<entry lang="en" key="LINUX_VOL_MOUNTED">Volume {0} has been mounted.</entry>
@@ -1668,8 +1664,9 @@
<entry lang="en" key="PIM_ARGON2_LARGE_WARNING">You have chosen an Argon2 PIM value that is larger than VeraCrypt default value.\nPlease note that this can require more memory and lead to much slower mounting.</entry>
<entry lang="en" key="PIM_ARGON2_SMALL_WARNING">You have chosen an Argon2 PIM value that is smaller than the default VeraCrypt value. Please note that if your password is not strong enough, this could lead to weaker security.\n\nDo you confirm that you are using a strong password?</entry>
<entry lang="en" key="PIM_ARGON2_REQUIRE_LONG_PASSWORD">Password must contain 20 or more characters in order to use the specified Argon2 PIM.\nShorter passwords can only be used if the Argon2 PIM is 12 or greater.</entry>
<entry lang="en" key="LINUX_PREF_MOUNT_NTFS_WITH_NTFS3">Mount NTFS volumes with the Linux kernel ntfs3 driver</entry>
<entry lang="en" key="LINUX_PREF_MOUNT_NTFS_WITH_NTFS3_HELP">Linux only. When enabled, VeraCrypt probes the decrypted virtual device with blkid -p and mounts detected NTFS filesystems with ntfs3 instead of the default NTFS backend. If NTFS detection fails, VeraCrypt uses the normal automatic filesystem selection. If ntfs3 is unavailable or blocked by the distribution, mounting may fail. This opt-in option can avoid suspend or hibernate hangs caused by frozen user-space FUSE filesystems.</entry>
<entry lang="en" key="LINUX_PREF_MOUNT_NTFS_WITH_KERNEL_DRIVER">Mount NTFS volumes with an in-kernel Linux driver</entry>
<entry lang="en" key="LINUX_PREF_MOUNT_NTFS_WITH_KERNEL_DRIVER_HELP">Linux only. When enabled and no explicit filesystem type was supplied, VeraCrypt probes the decrypted virtual device with blkid -p and mounts detected NTFS filesystems with an available in-kernel NTFS driver, bypassing mount helpers such as ntfs-3g. VeraCrypt uses ntfs when it is positively identified as a modern read/write driver or expected on Linux 7.1 or later, and otherwise uses ntfs3. If NTFS detection fails, VeraCrypt uses the normal automatic filesystem selection. If no supported in-kernel NTFS driver is available or loadable, mounting fails. This opt-in option can avoid suspend or hibernate hangs caused by frozen user-space FUSE filesystems.</entry>
<entry lang="en" key="LINUX_KERNEL_NTFS_DRIVER_UNAVAILABLE">No supported in-kernel NTFS driver is available or loadable. To use the system default NTFS backend, disable the NTFS kernel-driver preference or do not request kernel NTFS explicitly.</entry>
<entry lang="en" key="LINUX_EMERGENCY_UNMOUNT_WARNING">Normal unmount of volume {0} failed. This can happen when applications still have files or directories open on the volume, or when the backing device was disconnected and the mount became stale.\n\nIf the device is still connected, choose No, close applications using the volume, and try unmounting again.\n\nIf the device was disconnected or the mount is stale, VeraCrypt can attempt emergency cleanup by lazy-detaching the filesystem and removing or scheduling removal of VeraCrypt kernel objects. Pending writes may have failed, data may be lost, and cleanup may remain pending until applications close open files. Check the filesystem with fsck or the appropriate repair tool before using it again.\n\nContinue?</entry>
<entry lang="en" key="LINUX_EMERGENCY_UNMOUNTED">Emergency cleanup for volume {0} has been initiated. If the volume was disconnected, the mount was stale, or there were pending writes, check the filesystem with fsck or the appropriate repair tool before using it again.</entry>
<entry lang="en" key="FORMAT_STAGE_WRITING_DATA">Creating volume data. Please wait.</entry>
+4 -7
View File
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<VeraCrypt>
<localization prog-version="1.26.28">
<localization prog-version="1.26.29">
<language langid="vi" name="Tiếng Việt" en-name="Vietnamese" version="0.1.0" translators="Nguyễn Kim Huy" />
<font lang="vi" class="normal" size="11" face="default" />
<font lang="vi" class="bold" size="13" face="Arial" />
@@ -1517,10 +1517,6 @@
<entry lang="en" key="LINUX_MOUNTET_HINT">The filesystem of the selected device is currently mounted. Please unmount '{0}' before proceeding.</entry>
<entry lang="en" key="LINUX_HIDDEN_PASS_NO_DIFF">The Hidden volume can't have the same password, PIM and keyfiles as the Outer volume</entry>
<entry lang="en" key="LINUX_NOT_FAT_HINT">Please note that the volume will not be formatted with a FAT filesystem and, therefore, you may be required to install additional filesystem drivers on platforms other than {0}, which will enable you to mount the volume.</entry>
<entry lang="en" key="LINUX_ERROR_SIZE_HIDDEN_VOL">Error: The hidden volume to be created is larger than {0} TB ({1} GB).\n\nPossible solutions:\n- Create a container/partition smaller than {0} TB.\n</entry>
<entry lang="en" key="LINUX_MAX_SIZE_HINT">- Use a drive with 4096-byte sectors to be able to create partition/device-hosted hidden volumes up to 16 TB in size</entry>
<entry lang="en" key="LINUX_DOT_LF">.\n</entry>
<entry lang="en" key="LINUX_NOT_SUPPORTED"> (not supported by components available on this platform).\n</entry>
<entry lang="en" key="LINUX_KERNEL_OLD">Your system uses an old version of the Linux kernel.\n\nDue to a bug in the Linux kernel, your system may stop responding when writing data to a VeraCrypt volume. This problem can be solved by upgrading the kernel to version 2.6.24 or later.</entry>
<entry lang="en" key="LINUX_VOL_UNMOUNTED">Volume {0} has been unmounted.</entry>
<entry lang="en" key="LINUX_VOL_MOUNTED">Volume {0} has been mounted.</entry>
@@ -1668,8 +1664,9 @@
<entry lang="en" key="PIM_ARGON2_LARGE_WARNING">You have chosen an Argon2 PIM value that is larger than VeraCrypt default value.\nPlease note that this can require more memory and lead to much slower mounting.</entry>
<entry lang="en" key="PIM_ARGON2_SMALL_WARNING">You have chosen an Argon2 PIM value that is smaller than the default VeraCrypt value. Please note that if your password is not strong enough, this could lead to weaker security.\n\nDo you confirm that you are using a strong password?</entry>
<entry lang="en" key="PIM_ARGON2_REQUIRE_LONG_PASSWORD">Password must contain 20 or more characters in order to use the specified Argon2 PIM.\nShorter passwords can only be used if the Argon2 PIM is 12 or greater.</entry>
<entry lang="en" key="LINUX_PREF_MOUNT_NTFS_WITH_NTFS3">Mount NTFS volumes with the Linux kernel ntfs3 driver</entry>
<entry lang="en" key="LINUX_PREF_MOUNT_NTFS_WITH_NTFS3_HELP">Linux only. When enabled, VeraCrypt probes the decrypted virtual device with blkid -p and mounts detected NTFS filesystems with ntfs3 instead of the default NTFS backend. If NTFS detection fails, VeraCrypt uses the normal automatic filesystem selection. If ntfs3 is unavailable or blocked by the distribution, mounting may fail. This opt-in option can avoid suspend or hibernate hangs caused by frozen user-space FUSE filesystems.</entry>
<entry lang="en" key="LINUX_PREF_MOUNT_NTFS_WITH_KERNEL_DRIVER">Mount NTFS volumes with an in-kernel Linux driver</entry>
<entry lang="en" key="LINUX_PREF_MOUNT_NTFS_WITH_KERNEL_DRIVER_HELP">Linux only. When enabled and no explicit filesystem type was supplied, VeraCrypt probes the decrypted virtual device with blkid -p and mounts detected NTFS filesystems with an available in-kernel NTFS driver, bypassing mount helpers such as ntfs-3g. VeraCrypt uses ntfs when it is positively identified as a modern read/write driver or expected on Linux 7.1 or later, and otherwise uses ntfs3. If NTFS detection fails, VeraCrypt uses the normal automatic filesystem selection. If no supported in-kernel NTFS driver is available or loadable, mounting fails. This opt-in option can avoid suspend or hibernate hangs caused by frozen user-space FUSE filesystems.</entry>
<entry lang="en" key="LINUX_KERNEL_NTFS_DRIVER_UNAVAILABLE">No supported in-kernel NTFS driver is available or loadable. To use the system default NTFS backend, disable the NTFS kernel-driver preference or do not request kernel NTFS explicitly.</entry>
<entry lang="en" key="LINUX_EMERGENCY_UNMOUNT_WARNING">Normal unmount of volume {0} failed. This can happen when applications still have files or directories open on the volume, or when the backing device was disconnected and the mount became stale.\n\nIf the device is still connected, choose No, close applications using the volume, and try unmounting again.\n\nIf the device was disconnected or the mount is stale, VeraCrypt can attempt emergency cleanup by lazy-detaching the filesystem and removing or scheduling removal of VeraCrypt kernel objects. Pending writes may have failed, data may be lost, and cleanup may remain pending until applications close open files. Check the filesystem with fsck or the appropriate repair tool before using it again.\n\nContinue?</entry>
<entry lang="en" key="LINUX_EMERGENCY_UNMOUNTED">Emergency cleanup for volume {0} has been initiated. If the volume was disconnected, the mount was stale, or there were pending writes, check the filesystem with fsck or the appropriate repair tool before using it again.</entry>
<entry lang="en" key="FORMAT_STAGE_WRITING_DATA">Creating volume data. Please wait.</entry>
+9 -12
View File
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<VeraCrypt>
<localization prog-version="1.26.28">
<localization prog-version="1.26.29">
<language langid="zh-cn" name="简体中文" en-name="Chinese (Simplified)" version="1.0.3" translators="Barney Li, Zhangjintao, Nkh0472, 风之暇想" />
<font lang="zh-cn" class="normal" size="12" face="Microsoft YaHei" />
<font lang="zh-cn" class="bold" size="14" face="Microsoft YaHei" />
@@ -1518,10 +1518,6 @@
<entry lang="zh-cn" key="LINUX_MOUNTET_HINT">所选设备的文件系统当前已挂载。在继续之前请卸载'{0}'。</entry>
<entry lang="zh-cn" key="LINUX_HIDDEN_PASS_NO_DIFF">隐藏卷不能与外部卷有相同的密码、PIM和密钥文件</entry>
<entry lang="zh-cn" key="LINUX_NOT_FAT_HINT">请注意,该卷将不会被格式化为FAT文件系统,因此,您可能需要在{0}以外的平台上安装额外的文件系统驱动程序,这将使您能够挂载该卷。</entry>
<entry lang="zh-cn" key="LINUX_ERROR_SIZE_HIDDEN_VOL">错误:要创建的隐藏卷大于 {0} TB ({1} GB)。\n\n可能的解决方式:\n- 创建一个小于 {0} TB的容器/分区。\n</entry>
<entry lang="zh-cn" key="LINUX_MAX_SIZE_HINT">- 使用具有4096字节扇区的驱动器,能够创建分区/设备托管的隐藏卷尺寸可达 16 TB</entry>
<entry lang="zh-cn" key="LINUX_DOT_LF">.\n</entry>
<entry lang="zh-cn" key="LINUX_NOT_SUPPORTED"> (此平台上可用的组件不支持)。\n</entry>
<entry lang="zh-cn" key="LINUX_KERNEL_OLD">您的系统使用的是旧版本Linux内核。\n\n由于Linux内核中的错误,在将数据写入VeraCrypt卷时,系统可能会停止响应。这个问题可以通过将内核升级到2.6.24或更高版本来解决。</entry>
<entry lang="zh-cn" key="LINUX_VOL_UNMOUNTED">卷{0}已卸载。</entry>
<entry lang="zh-cn" key="LINUX_VOL_MOUNTED">卷{0}已装载。</entry>
@@ -1669,8 +1665,9 @@
<entry lang="zh-cn" key="PIM_ARGON2_LARGE_WARNING">您选择的 Argon2 PIM 值大于 VeraCrypt 的默认值。\n请注意,这可能需要更多内存,并导致挂载速度显著变慢。</entry>
<entry lang="zh-cn" key="PIM_ARGON2_SMALL_WARNING">您选择的 Argon2 PIM 值小于 VeraCrypt 的默认值。请注意,如果您的密码强度不够,这可能导致安全性降低。\n\n您确认正在使用强密码吗?</entry>
<entry lang="zh-cn" key="PIM_ARGON2_REQUIRE_LONG_PASSWORD">密码必须包含 20 个或更多字符,才能使用指定的 Argon2 PIM。\n较短的密码只有在 Argon2 PIM 大于或等于 12 时才能使用。</entry>
<entry lang="zh-cn" key="LINUX_PREF_MOUNT_NTFS_WITH_NTFS3">使用 Linux 内核 ntfs3 驱动程序挂载 NTFS 卷</entry>
<entry lang="zh-cn" key="LINUX_PREF_MOUNT_NTFS_WITH_NTFS3_HELP">仅限 Linux。启用后,VeraCrypt 会使用 blkid -p 探测解密的虚拟设备,并使用 ntfs3 挂载检测到的 NTFS 文件系统,而不是默认的 NTFS 后端。如果 NTFS 检测失败,VeraCrypt 将使用正常的自动文件系统选择。如果 ntfs3 不可用或被发行版阻止,挂载可能会失败。此手动启用选项可以避免因冻结的用户空间 FUSE 文件系统导致的挂起或休眠卡顿</entry>
<entry lang="zh-cn" key="LINUX_PREF_MOUNT_NTFS_WITH_KERNEL_DRIVER">使用 Linux 内核驱动程序挂载 NTFS 卷</entry>
<entry lang="zh-cn" key="LINUX_PREF_MOUNT_NTFS_WITH_KERNEL_DRIVER_HELP">仅限 Linux。启用后,如果未提供明确的文件系统类型,VeraCrypt 会使用 blkid -p 探测解密的虚拟设备,并使用可用的 Linux 内核 NTFS 驱动程序挂载检测到的 NTFS 文件系统,从而绕过 ntfs-3g 等挂载辅助程序。当 ntfs 明确对应现代读写驱动程序,或预计在 Linux 内核 7.1 或更高版本中可用时,VeraCrypt 使用 ntfs;否则使用 ntfs3。如果 NTFS 检测失败,VeraCrypt 将使用正常的自动文件系统选择。如果没有可用的或可加载的支持 Linux 内核 NTFS 驱动程序,则挂载失败。启用选项可以避免因冻结的用户空间 FUSE 文件系统导致的挂起或休眠无响应</entry>
<entry lang="zh-cn" key="LINUX_KERNEL_NTFS_DRIVER_UNAVAILABLE">没有可用的或可加载的支持 Linux 内核 NTFS 驱动程序。要使用系统默认的 NTFS 后端,请禁用 NTFS 内核驱动程序首选项,或者不要显式请求内核 NTFS。</entry>
<entry lang="zh-cn" key="LINUX_EMERGENCY_UNMOUNT_WARNING">卷 {0} 的正常卸载失败。当应用程序仍在卷上打开文件或目录,或者后端设备已断开连接导致挂载状态失效时,可能会发生这种情况。\n\n如果设备仍处于连接状态,请选择“否”,关闭使用该卷的应用程序,然后再次尝试卸载。\n\n如果设备已断开连接或挂载状态已失效,VeraCrypt 可以尝试执行紧急清理:惰性脱离文件系统,并移除或安排移除 VeraCrypt 内核对象。待处理的写入可能已失败,数据可能丢失,并且清理操作可能保持挂起状态,直到应用程序关闭打开的文件。再次使用前,请使用 fsck 或相应的修复工具检查文件系统。\n\n继续?</entry>
<entry lang="zh-cn" key="LINUX_EMERGENCY_UNMOUNTED">已对卷 {0} 启动紧急清理。如果卷已断开连接、挂载状态失效或存在待处理的写入操作,请在再次使用前使用 fsck 或相应的修复工具检查文件系统。</entry>
<entry lang="zh-cn" key="FORMAT_STAGE_WRITING_DATA">正在创建卷数据。请稍候。</entry>
@@ -1683,11 +1680,11 @@
<entry lang="zh-cn" key="FORMAT_STAGE_PREPARING_TEMP_DEVICE">正在完成卷创建:准备临时设备。</entry>
<entry lang="zh-cn" key="FORMAT_STAGE_CREATING_FILESYSTEM">正在完成卷创建:使用 {0} 创建文件系统。</entry>
<entry lang="zh-cn" key="FORMAT_STAGE_DISMOUNTING_TEMP_VOLUME">正在完成卷创建:卸载临时卷。</entry>
<entry lang="en" key="MACOSX_APFS_SYNTHESIZED_DEVICE">The selected device '{0}' is an APFS synthesized container or volume and cannot be used as a raw VeraCrypt volume host.\n\nSelect the physical APFS store partition{1} instead.</entry>
<entry lang="en" key="MACOSX_DEVICE_SYSTEM_PARTITION">The selected device '{0}' is a macOS system/support partition and cannot be used as a VeraCrypt volume host.</entry>
<entry lang="en" key="MACOSX_APFS_SYSTEM_STORE">The selected APFS physical store '{0}' contains the currently mounted macOS system volume and cannot be used as a VeraCrypt volume host.</entry>
<entry lang="en" key="MACOSX_DEVICE_NOT_WRITABLE">macOS reports the selected device '{0}' as read-only. Select a writable physical partition or disk.</entry>
<entry lang="en" key="MACOSX_APFS_EROFS_HINT">macOS reported the selected device as read-only. If this is an APFS disk, make sure you selected the physical APFS store partition, not an APFS synthesized volume. Use Disk Utility or 'diskutil list' to identify the physical partition, then retry.</entry>
<entry lang="zh-cn" key="MACOSX_APFS_SYNTHESIZED_DEVICE">所选设备 '{0}' APFS 合成容器或卷,不能作为原始 VeraCrypt 卷的承载设备使用。\n\n请改选物理 APFS 存储分区{1}。</entry>
<entry lang="zh-cn" key="MACOSX_DEVICE_SYSTEM_PARTITION">所选设备 '{0}' macOS 系统/支持分区,无法作为 VeraCrypt 卷主机使用。</entry>
<entry lang="zh-cn" key="MACOSX_APFS_SYSTEM_STORE">所选 APFS 物理存储 '{0}' 包含当前挂载的 macOS 系统卷,无法作为 VeraCrypt 卷主机使用。</entry>
<entry lang="zh-cn" key="MACOSX_DEVICE_NOT_WRITABLE">macOS 报告所选设备 '{0}' 为只读。请选择可写的物理分区或磁盘。</entry>
<entry lang="zh-cn" key="MACOSX_APFS_EROFS_HINT">macOS 报告所选设备为只读。如果这是 APFS 磁盘,请确保您选择的是物理 APFS 存储分区,而不是 APFS 合成卷。请使用“磁盘工具”或 'diskutil list' 来识别物理分区,然后重试。</entry>
</localization>
<xs:schema attributeFormDefault="unqualified" elementFormDefault="qualified" xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:element name="VeraCrypt">
+4 -7
View File
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<VeraCrypt>
<localization prog-version="1.26.28">
<localization prog-version="1.26.29">
<language langid="zh-hk" name="正體中文(香港)" en-name="Traditional Chinese (Hong Kong)" version="0.1.0" translators="PUN Chi Ho, Yeung Tim Ming" />
<font lang="zh-hk" class="normal" size="12" face="Microsoft JhengHei UI" />
<font lang="zh-hk" class="bold" size="13" face="Microsoft JhengHei UI Bold" />
@@ -1517,10 +1517,6 @@
<entry lang="zh-hk" key="LINUX_MOUNTET_HINT">所選擇的裝置上的檔案系統已經掛載。在繼續前請先解除掛載 '{0}' 。</entry>
<entry lang="zh-hk" key="LINUX_HIDDEN_PASS_NO_DIFF">隱藏加密區與外層加密區不可以使用相同的密碼,PIM 及加密鑰檔案</entry>
<entry lang="zh-hk" key="LINUX_NOT_FAT_HINT">請注意這個加密區將不會格式化為 FAT 檔案系統以及因此,你可能需要在平台上安裝除 {0} 以外的額外檔案系統驅動程式,使你能夠掛載這個加密區。</entry>
<entry lang="zh-hk" key="LINUX_ERROR_SIZE_HIDDEN_VOL">錯誤:將會建立的隱藏加密區大小超過 {0} TB ({1} GB)。可行的解決方案:\n- 建立一個大小少於 {0} TB 的加密容器檔案或分割區。\n</entry>
<entry lang="zh-hk" key="LINUX_MAX_SIZE_HINT">- 使用一個磁碟區大小為 4096 位元組的磁碟機能夠建立最大為 16 TB 寄存在分割區或檔案的隱藏加密區</entry>
<entry lang="zh-hk" key="LINUX_DOT_LF">.\n</entry>
<entry lang="zh-hk" key="LINUX_NOT_SUPPORTED"> (這個平台上可用的元件未能支援)。\n</entry>
<entry lang="zh-hk" key="LINUX_KERNEL_OLD">你的系統正在使用一個舊版本的 Linux 核心。\n\n由於 Linux 核心的一個錯誤,你的系統可能會在寫入數據到 VeraCrypt 加密區時停止回應。這個問題可以透過將核心升級到 2.6.24 或更新的版本來解決。</entry>
<entry lang="zh-hk" key="LINUX_VOL_UNMOUNTED">加密區 {0} 已經解除掛載。</entry>
<entry lang="zh-hk" key="LINUX_VOL_MOUNTED">加密區 {0} 已經掛載。</entry>
@@ -1668,8 +1664,9 @@
<entry lang="en" key="PIM_ARGON2_LARGE_WARNING">You have chosen an Argon2 PIM value that is larger than VeraCrypt default value.\nPlease note that this can require more memory and lead to much slower mounting.</entry>
<entry lang="en" key="PIM_ARGON2_SMALL_WARNING">You have chosen an Argon2 PIM value that is smaller than the default VeraCrypt value. Please note that if your password is not strong enough, this could lead to weaker security.\n\nDo you confirm that you are using a strong password?</entry>
<entry lang="en" key="PIM_ARGON2_REQUIRE_LONG_PASSWORD">Password must contain 20 or more characters in order to use the specified Argon2 PIM.\nShorter passwords can only be used if the Argon2 PIM is 12 or greater.</entry>
<entry lang="en" key="LINUX_PREF_MOUNT_NTFS_WITH_NTFS3">Mount NTFS volumes with the Linux kernel ntfs3 driver</entry>
<entry lang="en" key="LINUX_PREF_MOUNT_NTFS_WITH_NTFS3_HELP">Linux only. When enabled, VeraCrypt probes the decrypted virtual device with blkid -p and mounts detected NTFS filesystems with ntfs3 instead of the default NTFS backend. If NTFS detection fails, VeraCrypt uses the normal automatic filesystem selection. If ntfs3 is unavailable or blocked by the distribution, mounting may fail. This opt-in option can avoid suspend or hibernate hangs caused by frozen user-space FUSE filesystems.</entry>
<entry lang="en" key="LINUX_PREF_MOUNT_NTFS_WITH_KERNEL_DRIVER">Mount NTFS volumes with an in-kernel Linux driver</entry>
<entry lang="en" key="LINUX_PREF_MOUNT_NTFS_WITH_KERNEL_DRIVER_HELP">Linux only. When enabled and no explicit filesystem type was supplied, VeraCrypt probes the decrypted virtual device with blkid -p and mounts detected NTFS filesystems with an available in-kernel NTFS driver, bypassing mount helpers such as ntfs-3g. VeraCrypt uses ntfs when it is positively identified as a modern read/write driver or expected on Linux 7.1 or later, and otherwise uses ntfs3. If NTFS detection fails, VeraCrypt uses the normal automatic filesystem selection. If no supported in-kernel NTFS driver is available or loadable, mounting fails. This opt-in option can avoid suspend or hibernate hangs caused by frozen user-space FUSE filesystems.</entry>
<entry lang="en" key="LINUX_KERNEL_NTFS_DRIVER_UNAVAILABLE">No supported in-kernel NTFS driver is available or loadable. To use the system default NTFS backend, disable the NTFS kernel-driver preference or do not request kernel NTFS explicitly.</entry>
<entry lang="en" key="LINUX_EMERGENCY_UNMOUNT_WARNING">Normal unmount of volume {0} failed. This can happen when applications still have files or directories open on the volume, or when the backing device was disconnected and the mount became stale.\n\nIf the device is still connected, choose No, close applications using the volume, and try unmounting again.\n\nIf the device was disconnected or the mount is stale, VeraCrypt can attempt emergency cleanup by lazy-detaching the filesystem and removing or scheduling removal of VeraCrypt kernel objects. Pending writes may have failed, data may be lost, and cleanup may remain pending until applications close open files. Check the filesystem with fsck or the appropriate repair tool before using it again.\n\nContinue?</entry>
<entry lang="en" key="LINUX_EMERGENCY_UNMOUNTED">Emergency cleanup for volume {0} has been initiated. If the volume was disconnected, the mount was stale, or there were pending writes, check the filesystem with fsck or the appropriate repair tool before using it again.</entry>
<entry lang="en" key="FORMAT_STAGE_WRITING_DATA">Creating volume data. Please wait.</entry>
+4 -7
View File
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<VeraCrypt>
<localization prog-version="1.26.28">
<localization prog-version="1.26.29">
<language langid="zh-tw" name="繁體中文" en-name="Chinese (Taiwan)" version="0.1.0" translators="Barney Li, Simon Ma, ChangMing Hsu" />
<font lang="zh-tw" class="normal" size="12" face="MingLiU" />
<font lang="zh-tw" class="bold" size="15" face="MingLiU" />
@@ -1517,10 +1517,6 @@
<entry lang="en" key="LINUX_MOUNTET_HINT">The filesystem of the selected device is currently mounted. Please unmount '{0}' before proceeding.</entry>
<entry lang="en" key="LINUX_HIDDEN_PASS_NO_DIFF">The Hidden volume can't have the same password, PIM and keyfiles as the Outer volume</entry>
<entry lang="en" key="LINUX_NOT_FAT_HINT">Please note that the volume will not be formatted with a FAT filesystem and, therefore, you may be required to install additional filesystem drivers on platforms other than {0}, which will enable you to mount the volume.</entry>
<entry lang="en" key="LINUX_ERROR_SIZE_HIDDEN_VOL">Error: The hidden volume to be created is larger than {0} TB ({1} GB).\n\nPossible solutions:\n- Create a container/partition smaller than {0} TB.\n</entry>
<entry lang="en" key="LINUX_MAX_SIZE_HINT">- Use a drive with 4096-byte sectors to be able to create partition/device-hosted hidden volumes up to 16 TB in size</entry>
<entry lang="en" key="LINUX_DOT_LF">.\n</entry>
<entry lang="en" key="LINUX_NOT_SUPPORTED"> (not supported by components available on this platform).\n</entry>
<entry lang="en" key="LINUX_KERNEL_OLD">Your system uses an old version of the Linux kernel.\n\nDue to a bug in the Linux kernel, your system may stop responding when writing data to a VeraCrypt volume. This problem can be solved by upgrading the kernel to version 2.6.24 or later.</entry>
<entry lang="en" key="LINUX_VOL_UNMOUNTED">Volume {0} has been unmounted.</entry>
<entry lang="en" key="LINUX_VOL_MOUNTED">Volume {0} has been mounted.</entry>
@@ -1668,8 +1664,9 @@
<entry lang="en" key="PIM_ARGON2_LARGE_WARNING">You have chosen an Argon2 PIM value that is larger than VeraCrypt default value.\nPlease note that this can require more memory and lead to much slower mounting.</entry>
<entry lang="en" key="PIM_ARGON2_SMALL_WARNING">You have chosen an Argon2 PIM value that is smaller than the default VeraCrypt value. Please note that if your password is not strong enough, this could lead to weaker security.\n\nDo you confirm that you are using a strong password?</entry>
<entry lang="en" key="PIM_ARGON2_REQUIRE_LONG_PASSWORD">Password must contain 20 or more characters in order to use the specified Argon2 PIM.\nShorter passwords can only be used if the Argon2 PIM is 12 or greater.</entry>
<entry lang="en" key="LINUX_PREF_MOUNT_NTFS_WITH_NTFS3">Mount NTFS volumes with the Linux kernel ntfs3 driver</entry>
<entry lang="en" key="LINUX_PREF_MOUNT_NTFS_WITH_NTFS3_HELP">Linux only. When enabled, VeraCrypt probes the decrypted virtual device with blkid -p and mounts detected NTFS filesystems with ntfs3 instead of the default NTFS backend. If NTFS detection fails, VeraCrypt uses the normal automatic filesystem selection. If ntfs3 is unavailable or blocked by the distribution, mounting may fail. This opt-in option can avoid suspend or hibernate hangs caused by frozen user-space FUSE filesystems.</entry>
<entry lang="en" key="LINUX_PREF_MOUNT_NTFS_WITH_KERNEL_DRIVER">Mount NTFS volumes with an in-kernel Linux driver</entry>
<entry lang="en" key="LINUX_PREF_MOUNT_NTFS_WITH_KERNEL_DRIVER_HELP">Linux only. When enabled and no explicit filesystem type was supplied, VeraCrypt probes the decrypted virtual device with blkid -p and mounts detected NTFS filesystems with an available in-kernel NTFS driver, bypassing mount helpers such as ntfs-3g. VeraCrypt uses ntfs when it is positively identified as a modern read/write driver or expected on Linux 7.1 or later, and otherwise uses ntfs3. If NTFS detection fails, VeraCrypt uses the normal automatic filesystem selection. If no supported in-kernel NTFS driver is available or loadable, mounting fails. This opt-in option can avoid suspend or hibernate hangs caused by frozen user-space FUSE filesystems.</entry>
<entry lang="en" key="LINUX_KERNEL_NTFS_DRIVER_UNAVAILABLE">No supported in-kernel NTFS driver is available or loadable. To use the system default NTFS backend, disable the NTFS kernel-driver preference or do not request kernel NTFS explicitly.</entry>
<entry lang="en" key="LINUX_EMERGENCY_UNMOUNT_WARNING">Normal unmount of volume {0} failed. This can happen when applications still have files or directories open on the volume, or when the backing device was disconnected and the mount became stale.\n\nIf the device is still connected, choose No, close applications using the volume, and try unmounting again.\n\nIf the device was disconnected or the mount is stale, VeraCrypt can attempt emergency cleanup by lazy-detaching the filesystem and removing or scheduling removal of VeraCrypt kernel objects. Pending writes may have failed, data may be lost, and cleanup may remain pending until applications close open files. Check the filesystem with fsck or the appropriate repair tool before using it again.\n\nContinue?</entry>
<entry lang="en" key="LINUX_EMERGENCY_UNMOUNTED">Emergency cleanup for volume {0} has been initiated. If the volume was disconnected, the mount was stale, or there were pending writes, check the filesystem with fsck or the appropriate repair tool before using it again.</entry>
<entry lang="en" key="FORMAT_STAGE_WRITING_DATA">Creating volume data. Please wait.</entry>
Binary file not shown.
Binary file not shown.
Binary file not shown.
-1
View File
@@ -18,7 +18,6 @@ arrow_right.gif
Authenticity and Integrity.html
Authors.html
Avoid Third-Party File Extensions.html
bank_30x30.png
BC_Logo_30x30.png
BCH_Logo_30x30.png
Beginner's Tutorial.html
-1
View File
@@ -18,7 +18,6 @@ arrow_right.gif
Authenticity and Integrity.html
Authors.html
Avoid Third-Party File Extensions.html
bank_30x30.png
BC_Logo_30x30.png
BCH_Logo_30x30.png
Beginner's Tutorial.html
-1
View File
@@ -19,7 +19,6 @@ arrow_right.gif
Authenticity and Integrity.html
Authors.html
Avoid Third-Party File Extensions.html
bank_30x30.png
BC_Logo_30x30.png
BCH_Logo_30x30.png
Beginner's Tutorial.html
+3 -3
View File
@@ -88,7 +88,7 @@ The amount of memory used during the key derivation process, controlled by the P
<strong>Range:</strong> 64 MiB to 1024 MiB (capped at PIM = 31)
</li>
<li style="text-align:left; margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px">
<strong>Default:</strong> 96 MiB (equivalent to PIM = 2)
<strong>Default:</strong> 416 MiB (equivalent to PIM = 12)
</li>
</ul>
@@ -104,7 +104,7 @@ The number of iterations performed during the key derivation process:
<strong>For PIM > 31:</strong> t_cost(pim) = 13 + (pim - 31)
</li>
<li style="text-align:left; margin-top:0px; margin-bottom:0px; padding-top:0px; padding-bottom:0px">
<strong>Default:</strong> 3 iterations (equivalent to PIM = 2)
<strong>Default:</strong> 6 iterations (equivalent to PIM = 12)
</li>
</ul>
@@ -161,7 +161,7 @@ When using Argon2id in VeraCrypt:
<strong>Algorithm:</strong> Argon2id as defined in RFC 9106<br/>
<strong>Internal hash:</strong> BLAKE2b<br/>
<strong>Salt size:</strong> 512 bits (same as PBKDF2-HMAC)<br/>
<strong>Output length:</strong> Variable, depending on the encryption algorithm (e.g., 256 bits for AES-256, 768 bits for AES-Twofish-Serpent cascade)<br/>
<strong>Header KDF output length:</strong> Fixed at 1536 bits (192 bytes) for the current VeraCrypt format. The required prefix is used for the selected encryption algorithm (for example, the first 64 bytes for AES (AES-256-XTS)). Third-party implementations must request 192 bytes from Argon2id before selecting the required prefix; requesting only the selected algorithm's key material length produces a different Argon2id output.<br/>
<strong>Version:</strong> Argon2 version 0x13 (19 decimal)
</div>
+6 -4
View File
@@ -165,7 +165,7 @@
</tr>
<tr>
<td><em>--filesystem=TYPE</em></td>
<td>Filesystem type to mount or create. For mounting, the type is passed to the system mount command. <em>none</em> disables filesystem mounting or creation. Supported creation types depend on the platform: Linux supports <em>FAT</em>, <em>Ext2</em>, <em>Ext3</em>, <em>Ext4</em>, <em>NTFS</em>, <em>exFAT</em>, and <em>Btrfs</em>; macOS supports <em>FAT</em>, <em>HFS</em>/<em>HFS+</em>/<em>MacOsExt</em>, <em>exFAT</em>, and <em>APFS</em>; FreeBSD and Solaris builds support <em>FAT</em> and <em>UFS</em>. Non-FAT creation requires the corresponding system formatter to be available.</td>
<td>Filesystem type to mount or create. For mounting, the type is passed to the system mount command. <em>none</em> disables filesystem mounting or creation. On Linux, <em>ntfs3</em> pins the in-kernel ntfs3 driver and bypasses mount helpers, while <em>kernel-ntfs</em> selects an available in-kernel NTFS driver (<em>ntfs</em> or <em>ntfs3</em>). These Linux driver selectors are mount-only; use <em>NTFS</em> when creating a new NTFS volume. Supported creation types depend on the platform: Linux supports <em>FAT</em>, <em>Ext2</em>, <em>Ext3</em>, <em>Ext4</em>, <em>NTFS</em>, <em>exFAT</em>, and <em>Btrfs</em>; macOS supports <em>FAT</em>, <em>HFS</em>/<em>HFS+</em>/<em>MacOsExt</em>, <em>exFAT</em>, and <em>APFS</em>; FreeBSD and Solaris builds support <em>FAT</em> and <em>UFS</em>. Non-FAT creation requires the corresponding system formatter to be available.</td>
</tr>
<tr>
<td><em>-f</em> or <em>--force</em></td>
@@ -197,7 +197,7 @@
</tr>
<tr>
<td><em>-m OPTION1[,OPTION2,...]</em> or <em>--mount-options=OPTION1[,OPTION2,...]</em></td>
<td>Set VeraCrypt volume mount options. Supported options are <em>headerbak</em>, <em>nokernelcrypto</em>, <em>readonly</em> or <em>ro</em>, <em>system</em>, and <em>timestamp</em> or <em>ts</em>.</td>
<td>Set VeraCrypt volume mount options. Supported options are <em>headerbak</em>, <em>nokernelcrypto</em>, <em>readonly</em> or <em>ro</em>, <em>system</em>, and <em>timestamp</em> or <em>ts</em>. On Linux, <em>kernelntfs</em> enables in-kernel NTFS driver selection for the current mount when NTFS is detected and no filesystem type was supplied.</td>
</tr>
<tr>
<td><em>--new-hash=HASH</em></td>
@@ -253,7 +253,7 @@
</tr>
<tr>
<td><em>--quick</em></td>
<td>Enable quick formatting when creating a volume. This option must not be used when creating an outer volume.</td>
<td>Enable quick formatting when creating a normal file-hosted or device-hosted volume. Do not use this option when creating an outer volume. In text mode, VeraCrypt cannot infer that a normal volume is intended to become an outer volume. For file containers, Quick Format may create sparse or unwritten host regions. Allocation behavior depends on host filesystem sparse-file support, and later writes can fail if the host filesystem runs out of space.</td>
</tr>
<tr>
<td><em>--random-source=FILE</em></td>
@@ -310,6 +310,8 @@
<p><code>veracrypt -m ro -k keyfile1,keyfile2 volume.hc /media/veracrypt1</code></p>
<p>Mount a volume without mounting its filesystem:</p>
<p><code>veracrypt --filesystem=none volume.hc</code></p>
<p>Mount an NTFS volume using a Linux in-kernel NTFS driver:</p>
<p><code>veracrypt -t --filesystem=kernel-ntfs volume.hc /media/veracrypt1</code></p>
<p>Mount a volume prompting only for its password:</p>
<p><code>veracrypt -t -k "" --pim=0 --protect-hidden=no volume.hc /media/veracrypt1</code></p>
<p>Mount a volume non-interactively and read the password from standard input:</p>
@@ -324,7 +326,7 @@
<h4>Hidden Volume Creation in Text Mode</h4>
<p>Inexperienced users should use the graphical user interface to create a hidden volume. When using the text user interface, the following procedure must be followed:</p>
<ol>
<li>Create an outer volume with no filesystem.</li>
<li>Create an outer volume with no filesystem and without <em>--quick</em>.</li>
<li>Create a hidden volume within the outer volume.</li>
<li>Mount the outer volume using hidden volume protection.</li>
<li>Create a filesystem on the virtual device of the outer volume.</li>
@@ -110,6 +110,10 @@ if it is followed by <strong>n </strong>or<strong> no</strong>: don't try to mou
If it is followed by <strong>n</strong> or <strong>no</strong>: force the display waiting dialog is displayed while performing operations.</td>
</tr>
<tr>
<td><em>/cancelmount</em></td>
<td>Cancels any currently running mount operation and exits without displaying a status message. The process returns exit code 0 when the cancel request is accepted by the driver, or 1 otherwise. This switch only has an effect while a mount operation is active; if an auto-mount scan is between mount attempts, the scan is not stopped by this command.</td>
</tr>
<tr>
<td><em>/secureDesktop</em></td>
<td>If it is followed by <strong>y</strong> or <strong>yes</strong> or if no parameter is specified: display password dialog and token PIN dialog in a dedicated secure desktop to protect against certain types of attacks.<br>
If it is followed by <strong>n</strong> or <strong>no</strong>: the password dialog and token PIN dialog are displayed in the normal desktop.</td>
File diff suppressed because it is too large Load Diff
+3 -2
View File
@@ -56,10 +56,11 @@ Note that the output of a hash function is <em>never </em>used directly as an en
<p>This allows you to select the encryption algorithm with which your new volume will be encrypted. Note that the encryption algorithm cannot be changed after the volume is created. For more information, please see the chapter
<a href="Encryption%20Algorithms.html"><em>Encryption Algorithms</em></a>.</p>
<h3 id="QuickFormat">Quick Format</h3>
<p>If you are not sure whether to enable or disable Quick Format, we recommend that you leave this option unchecked.</p>
<p>If unchecked, each sector of the new volume will be formatted. This means that the new volume will be
<em>entirely </em>filled with random data. Quick format is much faster but may be less secure because until the whole volume has been filled with files, it may be possible to tell how much data it contains (if the space was not filled with random data beforehand).
If you are not sure whether to enable or disable Quick Format, we recommend that you leave this option unchecked. Note that Quick Format can only be enabled when encrypting partitions/devices, except on Windows where it is also available when creating file containers.</p>
<p>Important: When encrypting a partition/device within which you intend to create a hidden volume afterwards, leave this option unchecked.</p>
For file containers, the host filesystem may create sparse or unwritten regions, which can reveal unused areas and reduce plausible deniability. Host allocation behavior depends on filesystem sparse-file support. On filesystems without sparse-file support, creating the container may allocate most or all of its space immediately or fail if there is not enough host space. The encrypted filesystem may also report more free space than the host filesystem can actually provide. If host space runs out, later writes may fail or corrupt the encrypted filesystem. Quick Format is available for normal file containers and when encrypting partitions/devices.</p>
<p>Important: When creating an outer volume within which you intend to create a hidden volume afterwards, do not use Quick Format.</p>
<h3 id="dynamic">Dynamic</h3>
<p>Dynamic VeraCrypt container is a pre-allocated NTFS sparse file whose physical size (actual disk space used) grows as new data is added to it. Note that the physical size of the container (actual disk space that the container uses) will not decrease when
files are deleted on the VeraCrypt volume. The physical size of the container can only
+1 -5
View File
@@ -27,7 +27,7 @@
<div class="wikidoc">
<h1>Donation to VeraCrypt</h1>
<p>You can support VeraCrypt development through donations using PayPal, bank transfers and cryptocurrencies (<a href="#Bitcoin">Bitcoin</a> and <a href="#Ethereum">Ethereum</a>). It is also possible to donate using Liberapay.</p>
<p>You can support VeraCrypt development through donations using PayPal, cryptocurrencies (<a href="#Bitcoin">Bitcoin</a> and <a href="#Ethereum">Ethereum</a>) and Liberapay.</p>
<hr>
<h3><img src="paypal_30x30.png" style="vertical-align: middle; margin-right: 5px">PayPal</h3>
@@ -113,10 +113,6 @@
</form>
<hr>
<h3><a href="Donation_Bank.html"><img src="bank_30x30.png" style="margin-right: 5px"></a>Bank Transfer</h3>
<p>You can use <a href="Donation_Bank.html">AM Crypto bank details available here</a> to send your donations using bank transfers.
<hr>
<h3>Donation Platforms:</h3>
<ul>
-116
View File
@@ -1,116 +0,0 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>VeraCrypt - Free Open source disk encryption with strong security for the Paranoid</title>
<meta name="description" content="VeraCrypt is free open-source disk encryption software for Windows, Mac OS X and Linux. In case an attacker forces you to reveal the password, VeraCrypt provides plausible deniability. In contrast to file encryption, data encryption performed by VeraCrypt is real-time (on-the-fly), automatic, transparent, needs very little memory, and does not involve temporary unencrypted files."/>
<meta name="keywords" content="encryption, security"/>
<link href="styles.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div>
<a href="Documentation.html"><img src="VeraCrypt128x128.png" alt="VeraCrypt"/></a>
</div>
<div id="menu">
<ul>
<li><a href="Home.html">Home</a></li>
<li><a href="Code.html">Source Code</a></li>
<li><a href="Downloads.html">Downloads</a></li>
<li><a href="Documentation.html">Documentation</a></li>
<li><a class="active" href="Donation.html">Donate</a></li>
<li><a href="https://sourceforge.net/p/veracrypt/discussion/" target="_blank">Forums</a></li>
</ul>
</div>
<div class="wikidoc">
<h1>Donation to VeraCrypt using bank transfer</h1>
<p>You can support VeraCrypt development through donations using bank transfers to one of AM Crypto bank accounts below, depending on the currency used.<br>
The supported currencies are <a href="#Euro">Euro<img src="flag-eu-small.png" style="vertical-align: top; margin-left: 5px"></a>, <a href="#USD">US Dollar<img src="flag-us-small.png" style="vertical-align: top; margin-left: 5px"></a>, <a href="#GBP">British Pound<img src="flag-gb-small.png" style="vertical-align: top; margin-left: 5px"></a>, <a href="#AUD">Australian Dollar<img src="flag-au-small.png" style="vertical-align: top; margin-left: 5px"></a> and <a href="#NZD">New Zealand Dollar<img src="flag-nz-small.png" style="vertical-align: top; margin-left: 5px"></a>.<br>
Please <a href="Contact.html" target="_blank.html">contact us</a> if you need an official invoice for your donation.</p>
<hr>
<h3 id="Euro"><img src="flag-eu.png" style="vertical-align: middle; margin-right: 5px">Euro SEPA Bank Details</h3>
<p>Accepted payment types are SEPA bank transferts or SWIFT in Euro only.</p>
Account Holder: AM Crypto<br>
IBAN: BE54 9053 4814 2097<br>
Bank code (SWIFT / BIC): TRWIBEB1XXX<br>
Address: Wise, Rue du Trône 100, 3rd floor, Brussels, 1050, Belgium<br>
Reference: Open Source Donation<br>
<hr>
<h3 id="USD"><img src="flag-us.png" style="vertical-align: middle; margin-right: 5px">US Dollar Bank Details</h3>
<p>From within the US, accepted payment types are ACH and Wire.</p>
Account Holder: AM Crypto<br>
Account number: 215667625228<br>
ACH and Wire routing number: 101019628<br>
Account Type: Checking<br>
Address: Wise US Inc, 30 W. 26TH Street, Sixth Floor, New York, NY, 10010, United States<br>
Reference: Open Source Donation<br>
<p>From outside the US, accepted payment in SWIFT.</p>
Account Holder: AM Crypto<br>
Account number: 215667625228<br>
Routing number: 101019628<br>
Bank code (SWIFT/BIC): TRWIUS35XXX<br>
Address: Wise US Inc, 30 W. 26TH Street, Sixth Floor, New York, NY, 10010, United States<br>
Reference: Open Source Donation<br>
<hr>
<h3 id="GBP"><img src="flag-gb.png" style="vertical-align: middle; margin-right: 5px">British Pound Bank Details</h3>
<p>Accepted payment types are Faster Payments (FPS), BACS and CHAPS from withing the UK only.</p>
Account Holder: AM Crypto<br>
Account number: 11930731<br>
UK Sort Code: 23-08-01<br>
IBAN (to receive GBP from UK only): GB35 TRWI 2308 0111 9307 31<br>
Address: Wise Payments Limited, 1st Floor, Worship Square, 65 Clifton Street, London, EC2A 4JE, United Kingdom<br>
Reference: Open Source Donation<br>
<hr>
<h3 id="AUD"><img src="flag-au.png" style="vertical-align: middle; margin-right: 5px">Australian Dollar Bank Details</h3>
<p>Accepted payment types to this account are local AUD bank transfers only.</p>
Account Holder: AM Crypto<br>
Account number: 230232302<br>
BSB Code: 774001<br>
Address: Wise Australia Pty Ltd, Suite 1, Level 11, 66 Goulburn Street, Sydney, NSW, 2000, Australia.<br>
Reference: Open Source Donation<br>
<hr>
<h3 id="NZD"><img src="flag-nz.png" style="vertical-align: middle; margin-right: 5px">New Zealand Dollar Bank Details</h3>
<p>Accepted payment types to this account are local NZD bank transfers only.</p>
Account Holder: AM Crypto<br>
Account number: 04-2021-0294035-03<br>
Address: Wise Payments Ltd. - New Zealand Branch, 1st Floor, Worship Square, 65 Clifton Street, London, EC2A 4JE, United Kingdom<br>
Reference: Open Source Donation<br>
<hr>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
</div><div class="ClearBoth"></div></body></html>
+2
View File
@@ -304,6 +304,8 @@ The System Favorites Organizer window should appear now. In this window, enable
For more information, see the chapter <a href="System%20Favorite%20Volumes.html" target="_blank" style="text-align:left; color:#0080c0; text-decoration:none">
System Favorite Volumes</a>.</div>
<div style="text-align:left; margin-top:19px; margin-bottom:19px; padding-top:0px; padding-bottom:0px">
Note: System favorite volumes are not available during the earlier Windows boot and storage initialization phases. Therefore, Windows-managed startup dependencies such as automatically attached VHD/VHDX files, Dev Drive backing VHDX files, and native-boot VHD/VHDX files must not be stored on system favorite volumes. For VHD/VHDX files that are not required during boot or early startup, use a delayed/retrying task or a service that depends on <em>VeraCryptSystemFavorites</em> to attach them after the system favorite volume has been mounted. This workaround is not suitable for native-boot VHD/VHDX files or any other file that Windows must access before services can run.</div>
<div style="text-align:left; margin-top:19px; margin-bottom:19px; padding-top:0px; padding-bottom:0px">
<br style="text-align:left">
<strong style="text-align:left">Can a volume be automatically mounted whenever I log on to Windows?</strong></div>
<div style="text-align:left; margin-top:19px; margin-bottom:19px; padding-top:0px; padding-bottom:0px">
+1
View File
@@ -87,6 +87,7 @@ PIM </a>value is given by the user, the number of iterations of the PBKDF2 key d
<h4>Argon2id Parameters</h4>
<p>When Argon2id is selected as the key derivation function, the PIM value controls both memory and time costs as described in the <a href="Personal%20Iterations%20Multiplier%20%28PIM%29.html">PIM section</a>. If no PIM is specified, default parameters equivalent to PIM = 12 are used (416 MiB memory, 6 iterations).</p>
<p>For Argon2id, VeraCrypt derives a fixed 192 bytes of header key material for the current volume format, independently of the selected encryption algorithm. The selected encryption algorithm then uses the required prefix of that derived output. For example, AES-XTS uses the first 64 bytes. Implementations must request 192 bytes from Argon2id and then select the required prefix; requesting only the selected algorithm's key material length produces a different Argon2id output because Argon2id includes the requested output length in its computation.</p>
</div>
<div style="text-align:left; margin-top:19px; margin-bottom:19px; padding-top:0px; padding-bottom:0px">
+2 -1
View File
@@ -62,7 +62,8 @@ In such situations, the issue can be solved by disabling VeraCrypt waiting dialo
by selecting <em>System</em> &gt; <em>Mount Without Pre-Boot Authentication,</em> is limited to primary partitions (extended/logical partitions cannot be mounted this way).
</li><li>Due to a Windows 2000 issue, VeraCrypt does not support the Windows Mount Manager under Windows 2000. Therefore, some Windows 2000 built-in tools, such as Disk Defragmenter, do not work on VeraCrypt volumes. Furthermore, it is not possible to use the Mount
Manager services under Windows 2000, e.g., assign a mount point to a VeraCrypt volume (i.e., attach a VeraCrypt volume to a folder).
</li><li>VeraCrypt does not support pre-boot authentication for operating systems installed within VHD files, except when booted using appropriate virtual-machine software such as Microsoft Virtual PC.
</li><li>VeraCrypt does not support pre-boot authentication for operating systems installed within VHD/VHDX files, except when booted using appropriate virtual-machine software such as Microsoft Virtual PC.
</li><li>VHD/VHDX files that Windows must attach automatically during startup, including Dev Drive backing VHDX files, cannot be stored on system favorite volumes because these volumes are mounted only after the earlier Windows boot and storage initialization phases have already started. Store such non-boot VHD/VHDX files on the encrypted system partition/drive or on another partition within the key scope of system encryption. Native-boot VHD/VHDX files also cannot be stored on system favorite volumes; they remain subject to the preceding limitation on pre-boot authentication for operating systems installed within VHD/VHDX files. For VHD/VHDX files that are not required for boot or early Windows startup, disable Windows automatic attachment and attach them later using a delayed/retrying startup task or a service that depends on the <em>VeraCryptSystemFavorites</em> service. This workaround is not suitable for native-boot VHD/VHDX files or any other file that Windows must access before services can run.
</li><li>The Windows Volume Shadow Copy Service is currently supported only for partitions within the key scope of system encryption (e.g. a system partition encrypted by VeraCrypt, or a non- system partition located on a system drive encrypted by VeraCrypt, mounted
when the encrypted operating system is running). Note: For other types of volumes, the Volume Shadow Copy Service is not supported because the documentation for the necessary API is not available.
</li><li>Windows boot settings cannot be changed from within a hidden operating system if the system does not boot from the partition on which it is installed. This is due to the fact that, for security reasons, the boot partition is mounted as read-only when the
+2 -2
View File
@@ -42,10 +42,10 @@ can be found here</a>.</p>
<h3>Copyright Information</h3>
<p>This software as a whole:<br>
<br>
Copyright &copy; 2025 AM Crypto. All rights reserved.<br>
Copyright &copy; 2026 AM Crypto. All rights reserved.<br>
<br>
Portions of this software:</p>
<p>Copyright &copy; 2025 AM Crypto. All rights reserved.<br></p>
<p>Copyright &copy; 2026 AM Crypto. All rights reserved.<br></p>
<p>Copyright &copy; 2013-2025 IDRIX. All rights reserved.<br>
<br>
Copyright &copy; 2003-2012 TrueCrypt Developers Association. All rights reserved.</p>
+1 -1
View File
@@ -53,7 +53,7 @@ Volumes</em> menu.<br>
Default mount options can be configured in the main program preferences (<em>Settings -&gt; Preferences).</em></p>
<h4>Filesystem mount options under Linux</h4>
<p>Under Linux, the <em>Mount Options</em> dialog also contains a <em>Mount options</em> field for filesystem mount options. The value entered there is passed to the system <code>mount</code> command with <code>-o</code> when the filesystem inside the VeraCrypt volume is mounted. For example, entering <code>noatime</code> prevents Linux from updating inode access times on filesystems that support this option, reducing metadata writes caused only by file access. Multiple options can be specified as a comma-separated list, for example <code>noatime,nosuid,nodev</code>. Unsupported options are handled by the operating system and may cause mounting to fail.</p>
<p>The Linux preference <em>Mount NTFS volumes with the Linux kernel ntfs3 driver</em> is disabled by default. When enabled, VeraCrypt probes the decrypted virtual device with <code>blkid -p</code> and mounts detected NTFS filesystems with the in-kernel <code>ntfs3</code> driver instead of the default NTFS backend. If NTFS detection fails, VeraCrypt uses the normal automatic filesystem selection. If <code>ntfs3</code> is unavailable or blocked by the Linux distribution, mounting may fail. This opt-in option can help on systems where suspend or hibernation can hang if user-space FUSE filesystems such as <code>ntfs-3g</code>/<code>fuseblk</code> are frozen while the kernel is syncing filesystems. The actual mounted filesystem type can be checked with <code>findmnt</code>.</p>
<p>The Linux preference <em>Mount NTFS volumes with an in-kernel Linux driver</em> is disabled by default. When enabled and no explicit filesystem type was supplied, VeraCrypt probes the decrypted virtual device with <code>blkid -p</code> and mounts detected NTFS filesystems with an available in-kernel NTFS driver instead of the default NTFS backend. VeraCrypt uses <code>ntfs</code> when it is positively identified as a modern read/write driver or expected on Linux 7.1 or later, and otherwise uses <code>ntfs3</code>. Mount helpers such as <code>mount.ntfs</code> and <code>ntfs-3g</code> are bypassed. If NTFS detection fails, VeraCrypt uses the normal automatic filesystem selection. If no supported in-kernel NTFS driver is available or loadable, mounting fails. On the command line, <code>--filesystem=ntfs3</code> pins the in-kernel ntfs3 driver, <code>--filesystem=kernel-ntfs</code> forces VeraCrypt's kernel-driver selection for an NTFS mount, and <code>-m kernelntfs</code> enables the detected-NTFS selection for the current mount. The <code>ntfs3</code> and <code>kernel-ntfs</code> filesystem selectors are mount-only; use <code>NTFS</code> when creating a new NTFS volume. This opt-in option can help on systems where suspend or hibernation can hang if user-space FUSE filesystems such as <code>ntfs-3g</code>/<code>fuseblk</code> are frozen while the kernel is syncing filesystems. The actual mounted filesystem type can be checked with <code>findmnt</code>.</p>
<p>The command line equivalent is <code>veracrypt --fs-options=noatime &lt;volume&gt; &lt;mountpoint&gt;</code>.</p>
<h4>Mount volume as read-only</h4>
<p>When checked, it will not be possible to write any data to the mounted volume.</p>
+81 -15
View File
@@ -39,38 +39,104 @@
<span style="color:#ff0000;">To avoid hinting whether your volumes contain a hidden volume or not, or if you depend on plausible deniability when using hidden volumes/OS, then you must recreate both the outer and hidden volumes including system encryption and hidden OS, discarding existing volumes created prior to 1.18a version of VeraCrypt.</span></li>
</p>
<p><strong style="text-align:left">1.26.27</strong> (September 20<sup>th</sup>, 2025):</p>
<p><strong style="text-align:left">1.26.29</strong> (June 9<sup>th</sup>, 2026):</p>
<ul>
<li><strong>All OSes:</strong>
<ul>
<li>Update logo icons with a simplified ones without extra label text.</li>
<li>Update documentation.</li>
<li>Add Argon2id as an alternative memory-hard KDF for non-system volumes.</li>
<li>Use "KDF" terminology in the user interface and documentation instead of "PKCS-5 PRF".</li>
<li>Update logo icons with simplified icons without extra label text.</li>
<li>Harden XML and TLV parsers against malformed input.</li>
<li>Security: Fix <a href="https://github.com/veracrypt/VeraCrypt/security/advisories/GHSA-94c6-mgmv-mqc5" target="_blank">GHSA-94c6-mgmv-mqc5</a>: non-default <code>WOLFCRYPT=1</code> builds now use wolfCrypt PBKDF2 instead of HKDF and honor VeraCrypt's PBKDF2 iteration count.
<ul>
<li>Reported by https://github.com/vastblast </li>
</ul>
</li>
<li>Fix CPU feature detection and crypto implementation edge cases, including AVX2/leaf 7 detection, BLAKE2s/Argon2 no-SSE2 x86 fallback paths, Camellia SSSE3 dispatch, Twofish x64 multiblock tail handling and Whirlpool alignment.</li>
<li>Update documentation, including Argon2id/KDF information and split Windows/Unix command line usage pages.</li>
<li>Update translations.</li>
</ul>
</li>
<li><strong>Windows:</strong>
<ul>
<li>Fix rare BSOD (Blue Screen of Death) issue affecting VeraCrypt driver.</li>
<li>Enhancements to the driver crash dump filter (GH PR #1590).</li>
<li>Enhancement to I/O request handling in the driver.</li>
<li>Add support of Argon2id password hashing algorithm.</li>
<li>Speedup mounting when PRF autodetection is selected.</li>
<li>Add CLI switch /protectScreen to allow disabling screen protection in portable mode (cf documentation)</li>
<li>Add argument to CLI switch /protectMemory to allow disabling memory protection in portable mode (cf documentation)</li>
<li>Add setting and CLI switch /enableIME to allow enabling Input Method Editor (IME) in Secure Desktop</li>
<li>Provide VeraCrypt C/C++ SDK for creating volumes (https://github.com/veracrypt/VeraCrypt-SDK)</li>
<li>Fix rare BSOD (Blue Screen of Death) issue affecting the VeraCrypt driver.</li>
<li>Fix hibernation crash on fresh Windows 11 25H2 installations.</li>
<li>Security: Fix <a href="https://github.com/veracrypt/VeraCrypt/security/advisories/GHSA-jjcr-75w7-58jp" target="_blank">GHSA-jjcr-75w7-58jp</a>: hidden volume quick format no longer uses the file-container allocation shortcut that wrote plaintext zero sectors at 128 MiB intervals, preserving plausible deniability.
<ul>
<li>Reported by https://github.com/vastblast </li>
<li>Regression introduced in 1.26.6</li>
</ul>
</li>
<li>Harden Windows driver input validation and crash dump filter handling (GH PR #1590).</li>
<li>Improve driver I/O handling, including safer request completion, ordered volume flush barriers, and better VERIFY/TRIM validation.</li>
<li>Fix PBKDF XSTATE cleanup and add Win64 unwind metadata for AES assembly.</li>
<li>Speed up mounting when KDF autodetection is selected.</li>
<li>Allow selecting which KDF algorithms are included in the benchmark dialog.</li>
<li>Allow canceling long mount operations from the wait dialog and with the new <code>/cancelmount</code> CLI switch, including auto-mount scans.</li>
<li>Add support for new Microsoft UEFI CA 2023 signed EFI bootloaders while preserving Microsoft UEFI CA 2011 support.</li>
<li>Improve EFI system encryption repair and upgrade handling, including stuck decryption finalization, Post-OOBE repair, loader restoration verification, and clearer missing-loader reporting.</li>
<li>Fix EFI <code>DcsProp</code> rewrite handling.</li>
<li>Fix ghost drive letter after command line unmount (GH #337, GH #1426).</li>
<li>Fix favorite volume mount race.</li>
<li>Validate PIM when changing only the KDF.</li>
<li>Fix elevated COM format drive validation and device path normalization (GH #1670).</li>
<li>Fix ReFS formatting during volume creation.</li>
<li>Fix MSI traveler disk creation with WHQL-signed drivers, ARM64 MSI build, Start Menu folder upgrades, and discovery of newer SDK MSI tools.</li>
<li>Add CLI switch <code>/protectScreen</code> to allow disabling screen protection in portable mode (cf documentation).</li>
<li>Add argument to CLI switch <code>/protectMemory</code> to allow disabling memory protection in portable mode (cf documentation).</li>
<li>Add setting and CLI switch <code>/enableIME</code> to allow enabling Input Method Editor (IME) in Secure Desktop.</li>
<li>Use tab control for VeraCrypt preferences to reduce clutter and size of the dialog.</li>
<li>Provide VeraCrypt C/C++ SDK for creating volumes (<a href="https://github.com/veracrypt/VeraCrypt-SDK" target="_blank">https://github.com/veracrypt/VeraCrypt-SDK</a>).</li>
<li>Update LZMA SDK to version 26.01.</li>
</ul>
</li>
<li><strong>Linux:</strong>
<ul>
<li>Update Ubuntu 25.04 dependency to require libwxgtk3.2-1t64 package</li>
<li>Allow AppImage file to start with "veracrypt" in any case</li>
<li>Update Ubuntu 25.04 dependency to require libwxgtk3.2-1t64 package.</li>
<li>Add support for building against FUSE3.</li>
<li>Add in-kernel NTFS driver selection for NTFS mounts, including <code>--filesystem=kernel-ntfs</code> and <code>-m kernelntfs</code>.
<ul>
<li><code>--filesystem=ntfs3</code> now pins the kernel ntfs3 driver and bypasses mount helpers such as <code>mount.ntfs3</code>.</li>
</ul>
</li>
<li>Fix AppImage portability and language loading, bundle a matching FUSE library, and allow AppImage file name to start with "veracrypt" in any case.</li>
<li>Suppress redundant "already running" dialog and store the GUI instance lock under XDG paths.</li>
<li>Add emergency cleanup for stale unmounts.</li>
<li>Parallelize header KDF autodetection.</li>
<li>Honor <code>nokernelcrypto</code> during external formatting.</li>
<li>On WSL, open mounted volumes using Windows Explorer.</li>
<li>Add support for reproducible Linux builds, including SOURCE_DATE_EPOCH handling, DEB/RPM packages, and Arch package builds.</li>
<li>Add OpenWrt package build and QEMU test scripts.</li>
<li>Fix CMake 4 compatibility, CentOS 6 GCC 4.4 builds, and wxWidgets-related build issues.</li>
</ul>
</li>
<li><strong>Linux and macOS:</strong>
<ul>
<li>Fix initial width of columns in main UI.</li>
<li>Enable Quick Format for normal file containers. The container is sized with <code>ftruncate()</code>, so the host filesystem may keep regions unwritten or sparse until data is written to them.</li>
<li>Fix hidden volume size estimation for exFAT outer volumes.</li>
<li>Fix hidden volume FAT size limit handling.</li>
<li>Fix erroneous 2 TiB limit for hidden file containers in GUI wizard.</li>
<li>Show volume creation finalization stages.</li>
<li>Collect mouse entropy from nested controls in the volume creation wizard.</li>
<li>Fix remaining wxWidgets sizer flags.</li>
</ul>
</li>
<li><strong>macOS:</strong>
<ul>
<li>Fix initial width of columns in main UI.</li>
<li>Use SMB backend for FUSE-T auxiliary mounts and improve FUSE-T SMB metadata handling and mount stability.</li>
<li>Recover mounted volume mount points.</li>
<li>Validate format wizard device targets and block partitioned whole-disk alias bypasses.</li>
<li>Run APFS formatter elevated when needed and prepare APFS formatter device aliases.</li>
<li>Force fresh exFAT layout when formatting volumes.</li>
<li>Fix <code>Command-A</code> in password fields.</li>
<li>Link against wxWidgets 3.2.10 and allow overriding the deployment target.</li>
</ul>
</li>
<li><strong>BSD:</strong>
<ul>
<li>FreeBSD: link static wxWidgets builds with iconv.</li>
<li>OpenBSD: fix device-hosted volume sizing, honor doas user for mount ownership and FUSE access, and fix CLI build and PCSC exit handling.</li>
</ul>
</li>
</ul>
+1
View File
@@ -73,6 +73,7 @@ Thus, when setting or entering your password, it's crucial to type it manually u
<p>Note: By default, Windows 7 and later boot from a special small partition. The partition contains files that are required to boot the system. Windows allows only applications that have administrator privileges to write to the partition (when the system is
running). In EFI boot mode, which is the default on modern PCs, VeraCrypt can not encrypt this partition since it must remain unencrypted so that the BIOS can load the EFI bootloader from it. This in turn implies that in EFI boot mode, VeraCrypt offers only to encrypt the system partition where Windows is installed (the user can later manually encrypt other data partitions using VeraCrypt).
In MBR legacy boot mode, VeraCrypt encrypts the partition only if you choose to encrypt the whole system drive (as opposed to choosing to encrypt only the partition where Windows is installed).</p>
<p>In EFI boot mode with Secure Boot enabled, VeraCrypt selects the installed Microsoft UEFI CA-signed bootloader set during install, repair, upgrade, or Windows PostOOBE repair. If you manually change firmware Secure Boot db entries, run VeraCrypt repair or reinstall to refresh the installed bootloader set.</p>
<p>&nbsp;</p>
<p><a href="Hidden%20Operating%20System.html" style="text-align:left; color:#0080c0; text-decoration:none; font-weight:bold">Next Section &gt;&gt;</a></p>
</div>
+2 -2
View File
@@ -74,8 +74,8 @@ System favorite volumes <strong>can be configured to be available within VeraCry
<br>
Warning: When the drive letter assigned to a system favorite volume (saved in the configuration file) is not free, the volume is not mounted and no error message is displayed.<br>
<br>
Note that Windows needs to use some files (e.g. paging files, Active Directory files, etc.) before system favorite volumes are mounted. Therefore, such files cannot be stored on system favorite volumes. Note, however, that they
<em>can </em>be stored on any partition that is within the key scope of system encryption (e.g. on the system partition or on any partition of a system drive that is entirely encrypted by VeraCrypt).<br>
Note that Windows needs to use some files (e.g. paging files, Active Directory files, VHD/VHDX files configured for automatic attachment at startup, Dev Drive backing VHDX files, native-boot VHD/VHDX files, etc.) before system favorite volumes are mounted. Therefore, such files cannot be stored on system favorite volumes. Note, however, that files supported by VeraCrypt system encryption
<em>can </em>be stored on any partition that is within the key scope of system encryption (e.g. on the system partition or on any partition of a system drive that is entirely encrypted by VeraCrypt). Native-boot VHD/VHDX files remain subject to the limitation that VeraCrypt does not support pre-boot authentication for operating systems installed within VHD/VHDX files. For VHD/VHDX files that are not required for boot or early Windows startup, a possible workaround is to disable Windows automatic attachment and attach them only after the corresponding system favorite volume has been mounted, for example by using a delayed/retrying startup task or a service that depends on the <em>VeraCryptSystemFavorites</em> service and runs <code>Mount-DiskImage</code> or <code>diskpart attach vdisk</code>. This workaround is not suitable for paging files, Active Directory files, native-boot VHD/VHDX files, or any other file that Windows must access before services can run.<br>
<br>
<strong>To remove a volume from the list of system favorite volumes</strong>, select
<em>Favorites </em>&gt; <em>Organize System Favorite Volumes</em>, select the volume, click
+2
View File
@@ -93,6 +93,8 @@ To boot a VeraCrypt Rescue Disk, insert it into a USB port or your CD/DVD drive
configuration screen appears, restart (reset) the computer again and start pressing F2 or Delete repeatedly as soon as you restart (reset) the computer. When a BIOS configuration screen appears, configure your BIOS to boot from the USB drive and CD/DVD drive first (for
information on how to do so, please refer to the documentation for your BIOS/motherboard or contact your computer vendor's technical support team for assistance). Then restart your computer. The VeraCrypt Rescue Disk screen should appear now. Note: In the
case of MBR legacy boot mode, you can select 'Repair Options' on the VeraCrypt Rescue Disk screen by pressing F8 on your keyboard.</div>
<p>In EFI boot mode with Secure Boot enabled, the VeraCrypt Rescue Disk uses the Microsoft UEFI CA-signed bootloader set selected from the computer's current Secure Boot db state when the Rescue Disk is created. If firmware or Secure Boot db entries are later changed, create a new VeraCrypt Rescue Disk. A Rescue Disk created on a computer that trusts only one Microsoft UEFI CA generation may not Secure-Boot on a different computer that trusts only the other generation.</p>
<p>Installed EFI bootloader files are refreshed only during VeraCrypt install, repair, upgrade, or Windows PostOOBE repair paths. If you manually change firmware Secure Boot db entries, run VeraCrypt repair or reinstall to refresh the installed bootloader set.</p>
<p>If your VeraCrypt Rescue Disk is damaged, you can create a new one by selecting
<em style="text-align:left">System</em> &gt; <em style="text-align:left">Create Rescue Disk</em>. To find out whether your VeraCrypt Rescue Disk is damaged, insert it into a USB port (or into your CD/DVD drive in case of MBR legacy boot mode) and select
<em style="text-align:left">System</em> &gt; <em style="text-align:left">Verify Rescue Disk</em>.</p>
Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.9 KiB

File diff suppressed because it is too large Load Diff
+1 -5
View File
@@ -27,7 +27,7 @@
<div class="wikidoc">
<h1>Пожертвование на разработку VeraCrypt</h1>
<p>Вы можете поддержать развитие VeraCrypt, отправив пожертвование с помощью PayPal, банковского перевода или криптовалюты (<a href="#Bitcoin">Bitcoin</a> и <a href="#Ethereum">Ethereum</a>). Также возможно отправить пожертвование с использованием платформы Liberapay.</p>
<p>Вы можете поддержать развитие VeraCrypt, отправив пожертвование с помощью PayPal, криптовалюты (<a href="#Bitcoin">Bitcoin</a> и <a href="#Ethereum">Ethereum</a>) или платформы Liberapay.</p>
<hr>
<h3><img src="paypal_30x30.png" style="vertical-align: middle; margin-right: 5px">PayPal</h3>
@@ -112,10 +112,6 @@
<input type="submit" value="Пожертвовать" style="padding: 5px 15px; background-color: #08aad7; color: white; border: none; cursor: pointer;">
</form>
<hr>
<h3><a href="Donation_Bank.html"><img src="bank_30x30.png" style="margin-right: 5px"></a>Банковский перевод</h3>
<p>Чтобы отправить пожертвование через банковский перевод, используйте <a href="Donation_Bank.html">банковские данные AM Crypto</a>.
<hr>
<h3>Платформы для пожертвований:</h3>
<ul>
-116
View File
@@ -1,116 +0,0 @@
<!DOCTYPE html>
<html lang="ru">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>VeraCrypt - Бесплатное надёжное шифрование дисков с открытым исходным кодом</title>
<meta name="description" content="VeraCrypt это бесплатное программное обеспечение для шифрования дисков с открытым исходным кодом для Windows, Mac OS X (macOS) и Linux. В случае, если злоумышленник вынуждает вас раскрыть пароль, VeraCrypt обеспечивает правдоподобное отрицание наличия шифрования. В отличие от пофайлового шифрования, VeraCrypt шифрует данные в реальном времени (на лету), автоматически, прозрачно, требует очень мало памяти и не использует временные незашифрованные файлы."/>
<meta name="keywords" content="encryption, security, шифрование, безопасность"/>
<link href="styles.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div>
<a href="Documentation.html"><img src="VeraCrypt128x128.png" alt="VeraCrypt"/></a>
</div>
<div id="menu">
<ul>
<li><a href="Home.html">Начало</a></li>
<li><a href="Code.html">Исходный код</a></li>
<li><a href="Downloads.html">Загрузить</a></li>
<li><a href="Documentation.html">Документация</a></li>
<li><a class="active" href="Donation.html">Поддержать разработку</a></li>
<li><a href="https://sourceforge.net/p/veracrypt/discussion/" target="_blank">Форум</a></li>
</ul>
</div>
<div class="wikidoc">
<h1>Пожертвование на развитие VeraCrypt с помощью банковского перевода</h1>
<p>Вы можете поддержать развитие VeraCrypt, отправив пожертвование посредством банковского перевода на один из перечисленных ниже банковских счетов AM Crypto, в зависимости от валюты.<br>
Поддерживаемые валюты: <a href="#Euro">евро<img src="flag-eu-small.png" style="vertical-align: top; margin-left: 5px"></a>, <a href="#USD">доллар США<img src="flag-us-small.png" style="vertical-align: top; margin-left: 5px"></a>, <a href="#GBP">британский фунт<img src="flag-gb-small.png" style="vertical-align: top; margin-left: 5px"></a>, <a href="#AUD">австралийский доллар<img src="flag-au-small.png" style="vertical-align: top; margin-left: 5px"></a> и <a href="#NZD">новозеландский доллар<img src="flag-nz-small.png" style="vertical-align: top; margin-left: 5px"></a>.<br>
<a href="Contact.html" target="_blank.html">Свяжитесь с нами</a>, если вам нужен официальный счёт для вашего пожертвования.</p>
<hr>
<h3 id="Euro"><img src="flag-eu.png" style="vertical-align: middle; margin-right: 5px">Евро SEPA – банковские детали</h3>
<p>Принимаемые типы платежей: SEPA bank transferts или SWIFT только в евро.</p>
Владелец счёта: AM Crypto<br>
IBAN: BE54 9053 4814 2097<br>
Банковский код (SWIFT / BIC): TRWIBEB1XXX<br>
Адрес: Wise, Rue du Trône 100, 3rd floor, Brussels, 1050, Belgium<br>
Назначение: Open Source Donation<br>
<hr>
<h3 id="USD"><img src="flag-us.png" style="vertical-align: middle; margin-right: 5px">Доллар США – банковские детали</h3>
<p>Из США, принимаемые типы платежей: ACH и Wire.</p>
Владелец счёта: AM Crypto<br>
Номер счёта: 215667625228<br>
Номер маршрута ACH и Wire: 101019628<br>
Тип счёта: Checking<br>
Адрес: Wise US Inc, 30 W. 26th Street, Sixth Floor, New York NY, 10010, United States<br>
Назначение: Open Source Donation<br>
<p>Не из США, принимаемые типы платежей: SWIFT.</p>
Владелец счёта: AM Crypto<br>
Номер счёта: 215667625228<br>
Номер маршрута: 101019628<br>
Банковский код (SWIFT/BIC): TRWIUS35XXX<br>
Адрес: Wise US Inc, 30 W. 26th Street, Sixth Floor, New York NY, 10010, United States<br>
Назначение: Open Source Donation<br>
<hr>
<h3 id="GBP"><img src="flag-gb.png" style="vertical-align: middle; margin-right: 5px">Британский фунт стерлингов – банковские детали</h3>
<p>Принимаемые типы платежей: Faster Payments (FPS), BACS и CHAPS только из Великобритании.</p>
Владелец счёта: AM Crypto<br>
Номер счёта: 11930731<br>
Код Великобритании: 23-08-01<br>
IBAN (для получения GBP только из Великобритании): GB35 TRWI 2308 0111 9307 31<br>
Адрес: Wise Payments Limited, 1st Floor, Worship Square, 65 Clifton Street, London, EC2A 4JE, United Kingdom<br>
Назначение: Open Source Donation<br>
<hr>
<h3 id="AUD"><img src="flag-au.png" style="vertical-align: middle; margin-right: 5px">Австралийский доллар – банковские детали</h3>
<p>Принимаемые типы платежей: только локальные банковские переводы AUD.</p>
Владелец счёта: AM Crypto<br>
Номер счёта: 230232302<br>
Код BSB: 774001<br>
Адрес: Wise Australia Pty Ltd, Suite 1, Level 11, 66 Goulburn Street, Sydney, NSW, 2000, Australia.<br>
Назначение: Open Source Donation<br>
<hr>
<h3 id="NZD"><img src="flag-nz.png" style="vertical-align: middle; margin-right: 5px">Новозеландский доллар – банковские детали</h3>
<p>Принимаемые типы платежей: только локальные банковские переводы NZD.</p>
Владелец счёта: AM Crypto<br>
Номер счёта: 04-2021-0294035-03<br>
Адрес: Wise Payments Ltd. - New Zealand Branch, 1st Floor, Worship Square, 65 Clifton Street, London, EC2A 4JE, United Kingdom<br>
Назначение: Open Source Donation<br>
<hr>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
</div><div class="ClearBoth"></div></body></html>
+2 -2
View File
@@ -42,10 +42,10 @@
<h3>Авторские права</h3>
<p>На данное ПО в целом:<br>
<br>
Copyright &copy; 2025 AM Crypto. Все права защищены.<br>
Copyright &copy; 2026 AM Crypto. Все права защищены.<br>
<br>
На части данного ПО:</p>
<p>Copyright &copy; 2025 AM Crypto. Все права защищены.<br></p>
<p>Copyright &copy; 2026 AM Crypto. Все права защищены.<br></p>
<p>Copyright &copy; 2013-2025 IDRIX. Все права защищены.<br>
<br>
Copyright &copy; 2003-2012 TrueCrypt Developers Association. Все права защищены.</p>
+16 -6
View File
@@ -62,12 +62,22 @@
параметр, что уменьшает записи метаданных, вызванные только доступом к файлам. Несколько параметров можно
указать через запятую, например <code>noatime,nosuid,nodev</code>. Неподдерживаемые параметры обрабатываются
операционной системой и могут привести к ошибке монтирования.</p>
<p>Настройка Linux <em>Монтировать тома NTFS с помощью драйвера ntfs3 ядра Linux</em> по умолчанию отключена.
Если она включена, VeraCrypt проверяет расшифрованное виртуальное устройство с помощью <code>blkid -p</code> и
монтирует обнаруженные файловые системы NTFS с помощью встроенного в ядро драйвера <code>ntfs3</code> вместо
стандартного NTFS-бэкенда. Если определить NTFS не удалось, VeraCrypt использует обычный автоматический выбор
файловой системы. Если <code>ntfs3</code> недоступен или заблокирован дистрибутивом Linux, монтирование может
завершиться ошибкой. Эта необязательная настройка может помочь на системах, где ждущий режим или гибернация
<p>Настройка Linux <em>Монтировать тома NTFS с помощью встроенного в ядро драйвера Linux</em> по умолчанию отключена.
Если она включена и явный тип файловой системы не указан, VeraCrypt проверяет расшифрованное виртуальное
устройство с помощью <code>blkid -p</code> и
монтирует обнаруженные файловые системы NTFS с помощью доступного встроенного в ядро драйвера вместо
стандартного NTFS-бэкенда. VeraCrypt использует <code>ntfs</code>, когда он положительно определен как
современный драйвер с чтением и записью или ожидается в Linux 7.1 и новее; иначе используется
<code>ntfs3</code>. Вспомогательные программы монтирования,
такие как <code>mount.ntfs</code> и <code>ntfs-3g</code>, обходятся. Если определить NTFS не удалось, VeraCrypt
использует обычный автоматический выбор файловой системы. Если поддерживаемый встроенный в ядро драйвер NTFS
недоступен или не может быть загружен, монтирование завершается ошибкой. В командной строке
<code>--filesystem=ntfs3</code> закрепляет встроенный в ядро драйвер <code>ntfs3</code>,
<code>--filesystem=kernel-ntfs</code> принудительно включает выбор драйвера ядра VeraCrypt для монтирования NTFS, а
<code>-m kernelntfs</code> включает выбор по обнаруженной NTFS для текущего монтирования.
Селекторы файловой системы <code>ntfs3</code> и <code>kernel-ntfs</code> предназначены только для монтирования;
при создании нового тома NTFS используйте <code>NTFS</code>.
Эта необязательная настройка может помочь на системах, где ждущий режим или гибернация
зависают, если файловые системы FUSE, работающие в пользовательском пространстве, такие как
<code>ntfs-3g</code>/<code>fuseblk</code>, заморожены во время синхронизации файловых систем ядром.
Фактический тип смонтированной файловой системы можно
+91 -25
View File
@@ -42,39 +42,105 @@
VeraCrypt старее, чем 1.18a.</span></li>
</p>
<p><strong style="text-align:left">1.26.27</strong> (20 сентября 2025 года):</p>
<p><strong style="text-align:left">1.26.29</strong> (9 июня 2026 года):</p>
<ul>
<li><strong>Все ОС:</strong>
<ul>
<li>Обновлены иконки: теперь используются упрощённые варианты без надписей.</li>
<li>Обновлена документация.</li>
<li>Обновлены переводы.</li>
</ul>
<ul>
<li>Добавлен Argon2id как альтернативная функция формирования ключа (KDF) с повышенными требованиями к памяти для несистемных томов.</li>
<li>В интерфейсе и документации вместо «PKCS-5 PRF» используется термин «KDF».</li>
<li>Обновлены иконки: теперь используются упрощённые варианты без лишних надписей.</li>
<li>Усилена устойчивость парсеров XML и TLV к некорректно сформированным входным данным.</li>
<li>Безопасность: исправлена <a href="https://github.com/veracrypt/VeraCrypt/security/advisories/GHSA-94c6-mgmv-mqc5" target="_blank">GHSA-94c6-mgmv-mqc5</a>: сборки с неиспользуемым по умолчанию параметром <code>WOLFCRYPT=1</code> теперь используют PBKDF2 из wolfCrypt вместо HKDF и учитывают заданное в VeraCrypt число итераций PBKDF2.
<ul>
<li>Сообщил https://github.com/vastblast </li>
</ul>
</li>
<li>Исправлены определение возможностей процессора и граничные случаи криптографических реализаций, включая определение AVX2/leaf 7, резервные пути BLAKE2s/Argon2 для x86 без SSE2, диспетчеризацию Camellia SSSE3, обработку хвоста многоблочных операций Twofish x64 и выравнивание Whirlpool.</li>
<li>Обновлена документация, включая сведения об Argon2id/KDF и разделение страниц использования командной строки для Windows и Unix.</li>
<li>Обновлены переводы.</li>
</ul>
</li>
<li><strong>Windows:</strong>
<ul>
<li>Исправлена редкая ошибка BSOD (Blue Screen of Death), затрагивавшая драйвер VeraCrypt.</li>
<li>Внесены улучшения в фильтр дампов аварийного завершения работы драйвера (GH PR #1590).</li>
<li>В драйвере улучшена обработка I/O-запросов.</li>
<li>Добавлена поддержка алгоритма Argon2id для хеширования паролей.</li>
<li>Ускорено монтирование при выборе автодетекции PRF.</li>
<li>Добавлен параметр командной строки <code>/protectScreen</code> для отключения защиты экрана в портативном режиме (см. документацию).</li>
<li>Добавлен дополнительный аргумент для параметра <code>/protectMemory</code> — теперь можно отключать защиту памяти в портативном режиме (см. документацию).</li>
<li>Добавлена настройка и параметр командной строки <code>/enableIME</code>, позволяющие включать редактор методов ввода (IME) на защищённом рабочем столе.</li>
<li>Предоставлен SDK VeraCrypt на C/C++ для создания томов: <a href="https://github.com/veracrypt/VeraCrypt-SDK">https://github.com/veracrypt/VeraCrypt-SDK</a>.</li>
</ul>
<ul>
<li>Исправлена редкая ошибка BSOD (Blue Screen of Death), затрагивавшая драйвер VeraCrypt.</li>
<li>Исправлен сбой при гибернации на новых установках Windows 11 25H2.</li>
<li>Безопасность: исправлена <a href="https://github.com/veracrypt/VeraCrypt/security/advisories/GHSA-jjcr-75w7-58jp" target="_blank">GHSA-jjcr-75w7-58jp</a>: быстрое форматирование скрытого тома больше не использует ускоренный способ выделения места для файлового контейнера, который записывал незашифрованные нулевые сектора с интервалом 128 МиБ, что сохраняет правдоподобное отрицание наличия шифрования.
<ul>
<li>Сообщил https://github.com/vastblast </li>
<li>Регрессия появилась в версии 1.26.6</li>
</ul>
</li>
<li>Усилены проверка входных данных драйвера Windows и обработка фильтра аварийных дампов (GH PR #1590).</li>
<li>Улучшена обработка ввода-вывода в драйвере, включая более безопасное завершение запросов, упорядоченные барьеры сброса данных томов и более строгую проверку VERIFY/TRIM.</li>
<li>Исправлена очистка XSTATE для PBKDF и добавлены метаданные раскрутки стека Win64 для AES-кода на ассемблере.</li>
<li>Ускорено монтирование при выборе автодетекции KDF.</li>
<li>В диалоге теста производительности теперь можно выбирать алгоритмы KDF для проверки.</li>
<li>Теперь длительные операции монтирования можно отменять из диалога ожидания и с помощью нового параметра командной строки <code>/cancelmount</code>, включая сканирование автомонтирования.</li>
<li>Добавлена поддержка новых EFI-загрузчиков, подписанных Microsoft UEFI CA 2023, при сохранении поддержки Microsoft UEFI CA 2011.</li>
<li>Улучшены восстановление и обновление шифрования системы EFI, включая завершение зависшего расшифрования, восстановление после OOBE, проверку восстановления загрузчика и более понятные сообщения об отсутствии загрузчика.</li>
<li>Исправлена обработка перезаписи EFI <code>DcsProp</code>.</li>
<li>Исправлена фантомная буква диска после размонтирования из командной строки (GH #337, GH #1426).</li>
<li>Исправлено состояние гонки при монтировании избранного тома.</li>
<li>Теперь PIM проверяется при изменении только KDF.</li>
<li>Исправлены проверка диска для форматирования через COM с повышенными правами и нормализация пути устройства (GH #1670).</li>
<li>Исправлено форматирование ReFS при создании тома.</li>
<li>Исправлены создание Переносного диска из MSI с WHQL-подписанными драйверами, сборка MSI для ARM64, обновление папки меню «Пуск» и обнаружение более новых MSI-инструментов SDK.</li>
<li>Добавлен параметр командной строки <code>/protectScreen</code> для отключения защиты экрана в портативном режиме (см. документацию).</li>
<li>Добавлен дополнительный аргумент для параметра <code>/protectMemory</code>, позволяющий отключать защиту памяти в портативном режиме (см. документацию).</li>
<li>Добавлена настройка и параметр командной строки <code>/enableIME</code>, позволяющие включать редактор методов ввода (IME) на защищённом рабочем столе.</li>
<li>В настройках VeraCrypt теперь используется вкладочный интерфейс, чтобы уменьшить перегруженность и размер диалога.</li>
<li>Предоставлен SDK VeraCrypt на C/C++ для создания томов (<a href="https://github.com/veracrypt/VeraCrypt-SDK" target="_blank">https://github.com/veracrypt/VeraCrypt-SDK</a>).</li>
<li>LZMA SDK обновлён до версии 26.01.</li>
</ul>
</li>
<li><strong>Linux:</strong>
<ul>
<li>Для Ubuntu 25.04 теперь требуется пакет <code>libwxgtk3.2-1t64</code>.</li>
<li>Файл AppImage теперь можно запускать, если его имя начинается с «veracrypt» (регистр букв не имеет значения).</li>
<li>Исправлена начальная ширина столбцов в главном интерфейсе.</li>
</ul>
<ul>
<li>Для Ubuntu 25.04 теперь требуется пакет libwxgtk3.2-1t64.</li>
<li>Добавлена поддержка сборки с FUSE3.</li>
<li>Добавлен выбор встроенного в ядро драйвера NTFS для монтирования NTFS, включая <code>--filesystem=kernel-ntfs</code> и <code>-m kernelntfs</code>.
<ul>
<li><code>--filesystem=ntfs3</code> теперь фиксирует использование ядрового драйвера ntfs3 и обходит помощники монтирования, такие как <code>mount.ntfs3</code>.</li>
</ul>
</li>
<li>Исправлены переносимость AppImage и загрузка языка; теперь AppImage включает соответствующую библиотеку FUSE, а имя файла AppImage может начинаться с «veracrypt» в любом регистре.</li>
<li>Подавлен лишний диалог «уже запущено»; блокировка экземпляра GUI хранится в путях XDG.</li>
<li>Добавлена аварийная очистка для зависших размонтирований.</li>
<li>Распараллелена автодетекция KDF заголовка.</li>
<li><code>nokernelcrypto</code> теперь учитывается при внешнем форматировании.</li>
<li>В WSL смонтированные тома открываются через Проводник Windows.</li>
<li>Добавлена поддержка воспроизводимых сборок Linux, включая обработку SOURCE_DATE_EPOCH, пакеты DEB/RPM и сборку пакетов Arch.</li>
<li>Добавлены скрипты сборки пакета OpenWrt и тестирования в QEMU.</li>
<li>Исправлены совместимость с CMake 4, сборки CentOS 6 GCC 4.4 и проблемы сборки, связанные с wxWidgets.</li>
</ul>
</li>
<li><strong>Linux и macOS:</strong>
<ul>
<li>Исправлена начальная ширина столбцов в главном интерфейсе.</li>
<li>Включено быстрое форматирование для обычных файловых контейнеров. Размер контейнера задаётся с помощью <code>ftruncate()</code>, поэтому файловая система хоста может оставлять области незаписанными или разреженными до записи данных в них.</li>
<li>Исправлена оценка размера скрытого тома для внешних томов exFAT.</li>
<li>Исправлена обработка ограничения размера FAT для скрытых томов.</li>
<li>Исправлено ошибочное ограничение 2 ТиБ для скрытых файловых контейнеров в мастере GUI.</li>
<li>Отображаются этапы завершения создания тома.</li>
<li>Сбор энтропии мыши в мастере создания томов теперь выполняется также из вложенных элементов управления.</li>
<li>Исправлены оставшиеся флаги компоновщиков wxWidgets.</li>
</ul>
</li>
<li><strong>macOS:</strong>
<ul>
<li>Исправлена начальная ширина столбцов в главном интерфейсе.</li>
</ul>
<ul>
<li>Для вспомогательных монтирований FUSE-T используется SMB-бэкенд; улучшены обработка SMB-метаданных FUSE-T и стабильность монтирования.</li>
<li>Добавлено восстановление точек монтирования смонтированных томов.</li>
<li>Добавлена проверка целевых устройств в мастере форматирования и заблокированы обходы через псевдонимы целого диска с разделами.</li>
<li>Форматтер APFS запускается с повышенными правами при необходимости, а псевдонимы устройств для форматтера APFS подготавливаются заранее.</li>
<li>При форматировании томов принудительно создаётся новая разметка exFAT.</li>
<li>Исправлено <code>Command-A</code> в полях пароля.</li>
<li>Выполняется компоновка с wxWidgets 3.2.10, разрешено переопределять целевую версию развёртывания.</li>
</ul>
</li>
<li><strong>BSD:</strong>
<ul>
<li>FreeBSD: статические сборки wxWidgets компонуются с iconv.</li>
<li>OpenBSD: исправлены определение размера томов на основе устройств, учёт пользователя doas для владения точками монтирования и доступа FUSE, а также сборка CLI и обработка завершения PCSC.</li>
</ul>
</li>
</ul>
Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.9 KiB

File diff suppressed because it is too large Load Diff
+2 -6
View File
@@ -27,7 +27,7 @@
<div class="wikidoc">
<h1>向VeraCrypt捐赠</h1>
<p>您可以通过PayPal、银行转账和加密货币(<a href="#Bitcoin">比特币</a><a href="#Ethereum">以太坊</a>)进行捐赠,以支持VeraCrypt的开发。也可以使用Liberapay进行捐赠。</p>
<p>您可以通过PayPal、加密货币(<a href="#Bitcoin">比特币</a><a href="#Ethereum">以太坊</a>和Liberapay进行捐赠,以支持VeraCrypt的开发。</p>
<hr>
<h3><img src="paypal_30x30.png" style="vertical-align: middle; margin-right: 5px">PayPal</h3>
@@ -113,10 +113,6 @@
</form>
<hr>
<h3><a href="Donation_Bank.html"><img src="bank_30x30.png" style="margin-right: 5px"></a>银行转账</h3>
<p>您可以使用<a href="Donation_Bank.html">此处提供的AM Crypto银行信息</a>通过银行转账进行捐赠。
<hr>
<h3>捐赠平台:</h3>
<ul>
@@ -157,4 +153,4 @@
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
</div><div class="ClearBoth"></div></body></html>
</div><div class="ClearBoth"></div></body></html>
-116
View File
@@ -1,116 +0,0 @@
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>VeraCrypt - 为偏执者提供强大安全保障的免费开源磁盘加密工具</title>
<meta name="description" content="VeraCrypt是一款适用于Windows、Mac OS X和Linux的免费开源磁盘加密软件。若攻击者强迫您透露密码,VeraCrypt可提供似是而非的否认。与文件加密不同,VeraCrypt进行的数据加密是实时(即时)、自动、透明的,占用内存极少,且不涉及临时未加密文件。"/>
<meta name="keywords" content="加密, 安全"/>
<link href="styles.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div>
<a href="Documentation.html"><img src="VeraCrypt128x128.png" alt="VeraCrypt"/></a>
</div>
<div id="menu">
<ul>
<li><a href="Home.html">主页</a></li>
<li><a href="Code.html">源代码</a></li>
<li><a href="Downloads.html">下载</a></li>
<li><a href="Documentation.html">文档</a></li>
<li><a class="active" href="Donation.html">捐赠</a></li>
<li><a href="https://sourceforge.net/p/veracrypt/discussion/" target="_blank">论坛</a></li>
</ul>
</div>
<div class="wikidoc">
<h1>通过银行转账向VeraCrypt捐赠</h1>
<p>您可以通过向以下AM Crypto银行账户之一进行银行转账来支持VeraCrypt的开发,具体取决于所使用的货币。<br>
支持的货币有 <a href="#Euro">欧元<img src="flag-eu-small.png" style="vertical-align: top; margin-left: 5px"></a><a href="#USD">美元<img src="flag-us-small.png" style="vertical-align: top; margin-left: 5px"></a><a href="#GBP">英镑<img src="flag-gb-small.png" style="vertical-align: top; margin-left: 5px"></a><a href="#AUD">澳元<img src="flag-au-small.png" style="vertical-align: top; margin-left: 5px"></a><a href="#NZD">新西兰元<img src="flag-nz-small.png" style="vertical-align: top; margin-left: 5px"></a><br>
如果您需要捐赠的正式发票,请 <a href="Contact.html" target="_blank.html">联系我们</a></p>
<hr>
<h3 id="Euro"><img src="flag-eu.png" style="vertical-align: middle; margin-right: 5px">欧元SEPA银行信息</h3>
<p>接受的付款方式仅为欧元的SEPA银行转账或SWIFT转账。</p>
账户持有人:AM Crypto<br>
国际银行账户号码(IBAN):BE54 9053 4814 2097<br>
银行代码(SWIFT / BIC):TRWIBEB1XXX<br>
地址:Wise, Rue du Trône 100, 3rd floor, Brussels, 1050, Belgium<br>
参考信息:Open Source Donation<br>
<hr>
<h3 id="USD"><img src="flag-us.png" style="vertical-align: middle; margin-right: 5px">美元银行信息</h3>
<p>在美国境内,接受的付款方式为ACH转账和电汇。</p>
账户持有人:AM Crypto<br>
账户号码:215667625228<br>
ACH和电汇路由号码:101019628<br>
账户类型:支票账户<br>
地址:Wise US Inc, 30 W. 26TH Street, Sixth Floor, New York, NY, 10010, United States<br>
参考信息:Open Source Donation<br>
<p>在美国境外,接受的付款方式为SWIFT转账。</p>
账户持有人:AM Crypto<br>
账户号码:215667625228<br>
路由号码:101019628<br>
银行代码(SWIFT/BIC):TRWIUS35XXX<br>
地址:Wise US Inc, 30 W. 26TH Street, Sixth Floor, New York, NY, 10010, United States<br>
参考信息:Open Source Donation<br>
<hr>
<h3 id="GBP"><img src="flag-gb.png" style="vertical-align: middle; margin-right: 5px">英镑银行信息</h3>
<p>接受的付款方式仅为英国境内的快速支付(FPS)、BACS和CHAPS转账。</p>
账户持有人:AM Crypto<br>
账户号码:11930731<br>
英国银行排序代码:23-08-01<br>
国际银行账户号码(仅用于接收来自英国的英镑):GB35 TRWI 2308 0111 9307 31<br>
地址:Wise Payments Limited, 1st Floor, Worship Square, 65 Clifton Street, London, EC2A 4JE, United Kingdom<br>
参考信息:Open Source Donation<br>
<hr>
<h3 id="AUD"><img src="flag-au.png" style="vertical-align: middle; margin-right: 5px">澳元银行信息</h3>
<p>此账户仅接受本地澳元银行转账。</p>
账户持有人:AM Crypto<br>
账户号码:230232302<br>
澳大利亚银行清算代码(BSB):774001<br>
地址:Wise Australia Pty Ltd, Suite 1, Level 11, 66 Goulburn Street, Sydney, NSW, 2000, Australia.<br>
参考信息:Open Source Donation<br>
<hr>
<h3 id="NZD"><img src="flag-nz.png" style="vertical-align: middle; margin-right: 5px">新西兰元银行信息</h3>
<p>此账户仅接受本地新西兰元银行转账。</p>
账户持有人:AM Crypto<br>
账户号码:04-2021-0294035-03<br>
地址:Wise Payments Ltd. - New Zealand Branch, 1st Floor, Worship Square, 65 Clifton Street, London, EC2A 4JE, United Kingdom<br>
参考信息:Open Source Donation<br>
<hr>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
</div><div class="ClearBoth"></div></body></html>
+2 -2
View File
@@ -41,10 +41,10 @@
<h3>版权信息</h3>
<p>本软件整体:<br>
<br>
版权所有 &copy; 2025 AM Crypto。保留所有权利。<br>
版权所有 &copy; 2026 AM Crypto。保留所有权利。<br>
<br>
本软件的部分内容:</p>
<p>版权所有 &copy; 2025 AM Crypt。保留所有权利。<br></p>
<p>版权所有 &copy; 2026 AM Crypt。保留所有权利。<br></p>
<p>版权所有 &copy; 2013 - 2025 IDRIX。保留所有权利。<br>
<br>
版权所有 &copy; 2003 - 2012 TrueCrypt开发者协会。保留所有权利。</p>
+92 -26
View File
@@ -39,39 +39,105 @@
<span style="color:#ff0000;">为避免暴露您的卷是否包含隐藏卷,或者如果您在使用隐藏卷/操作系统时依赖似是而非的否认能力,那么您必须重新创建外部和隐藏卷,包括系统加密和隐藏操作系统,并丢弃VeraCrypt 1.18a版本之前创建的现有卷。</span></li>
</p>
<p><strong style="text-align:left">1.26.27</strong> (2025年9月20日):</p>
<p><strong style="text-align:left">1.26.29</strong> (2026年6月9日):</p>
<ul>
<li><strong>所有操作系统:</strong>
<ul>
<li>更新Logo图标,采用无文字标签的简化版</li>
<li>更新文档</li>
<li>更新翻译</li>
</ul>
<ul>
<li>新增 Argon2id,作为非系统卷的可选内存困难型密钥推导函数(KDF)</li>
<li>用户界面和文档中改用“KDF”术语,替代“PKCS-5 PRF”</li>
<li>更新 Logo 图标,采用不带额外文字标签的简化图标</li>
<li>增强 XML 和 TLV 解析器对格式错误输入的防护。</li>
<li>安全:修复 <a href="https://github.com/veracrypt/VeraCrypt/security/advisories/GHSA-94c6-mgmv-mqc5" target="_blank">GHSA-94c6-mgmv-mqc5</a>:非默认启用的 <code>WOLFCRYPT=1</code> 构建现在使用 wolfCrypt PBKDF2 而非 HKDF,并使用 VeraCrypt 的 PBKDF2 迭代次数。
<ul>
<li>由 https://github.com/vastblast 报告 </li>
</ul>
</li>
<li>修复 CPU 特性检测和加密实现中的边界情况,包括 AVX2/leaf 7 检测、x86 无 SSE2 构建中的 BLAKE2s/Argon2 后备路径、Camellia SSSE3 调度、Twofish x64 多块尾部处理以及 Whirlpool 对齐。</li>
<li>更新文档,包括 Argon2id/KDF 信息,并将 Windows/Unix 命令行用法拆分为独立页面。</li>
<li>更新翻译。</li>
</ul>
</li>
<li><strong>Windows:</strong>
<ul>
<li>修复影响VeraCrypt驱动程序的罕见蓝屏(BSOD)问题。</li>
<li>增强驱动程序崩溃转储过滤功能(GH PR #1590)</li>
<li>优化驱动中的I/O请求处理流程。</li>
<li>新增对Argon2id密码哈希算法的支持。</li>
<li>加快了在选择自动检测伪随机函数(PRF)时的挂载速度。</li>
<li>新增命令行参数 <code>/protectScreen</code>,可在便携模式下禁用屏幕保护功能(详见文档)。</li>
<li>为命令行参数 <code>/protectMemory</code> 新增选项,可在便携模式下禁用内存保护功能(详见文档)。</li>
<li>新增设置项及命令行参数 <code>/enableIME</code>,可在安全桌面下启用输入法(IME)功能。</li>
<li>提供VeraCrypt C/C++ SDK,用于创建加密卷(<a href="https://github.com/veracrypt/VeraCrypt-SDK">https://github.com/veracrypt/VeraCrypt-SDK</a>)。</li>
</ul>
<ul>
<li>修复影响 VeraCrypt 驱动程序的罕见蓝屏(BSOD)问题。</li>
<li>修复全新安装 Windows 11 25H2 后休眠时崩溃的问题</li>
<li>安全:修复 <a href="https://github.com/veracrypt/VeraCrypt/security/advisories/GHSA-jjcr-75w7-58jp" target="_blank">GHSA-jjcr-75w7-58jp</a>:隐藏卷快速格式化不再使用文件容器快速分配方法;该方法曾每隔 128 MiB 写入明文零扇区。此修复保持似是而非的否认性。
<ul>
<li>由 https://github.com/vastblast 报告 </li>
<li>此回归问题引入于 1.26.6</li>
</ul>
</li>
<li>增强 Windows 驱动程序输入验证和崩溃转储过滤处理(GH PR #1590)。</li>
<li>改进驱动程序 I/O 处理,包括更安全的请求完成、有序的卷刷新屏障,以及更完善的 VERIFY/TRIM 验证。</li>
<li>修复 PBKDF 的 XSTATE 清理,并为 AES 汇编代码添加 Win64 栈展开元数据。</li>
<li>加快选择 KDF 自动检测时的挂载速度。</li>
<li>基准测试对话框现在可选择要测试的 KDF 算法。</li>
<li>现在可以在等待对话框中取消耗时较长的挂载操作,也可通过新的 <code>/cancelmount</code> 命令行参数取消,包括自动挂载扫描。</li>
<li>新增对使用 Microsoft UEFI CA 2023 签名的 EFI 引导加载程序的支持,同时保留对 Microsoft UEFI CA 2011 的支持。</li>
<li>改进 EFI 系统加密的修复和升级处理,包括卡住的解密完成流程、Post-OOBE 修复、引导加载程序恢复验证,以及缺少引导加载程序时更清晰的报告。</li>
<li>修复 EFI <code>DcsProp</code> 重写处理。</li>
<li>修复通过命令行卸载后残留驱动器号的问题(GH #337, GH #1426)。</li>
<li>修复收藏卷挂载竞态问题。</li>
<li>仅更改 KDF 时也验证 PIM。</li>
<li>修复提权 COM 中的格式化驱动器验证和设备路径规范化问题(GH #1670)。</li>
<li>修复卷创建期间 ReFS 格式化问题。</li>
<li>修复使用 WHQL 签名驱动程序时的 MSI 移动磁盘创建问题、ARM64 MSI 构建、“开始”菜单文件夹升级以及较新 SDK MSI 工具发现问题。</li>
<li>新增命令行参数 <code>/protectScreen</code>,可在便携模式下禁用屏幕保护功能(详见文档)。</li>
<li>为命令行参数 <code>/protectMemory</code> 新增选项,可在便携模式下禁用内存保护功能(详见文档)。</li>
<li>新增设置项及命令行参数 <code>/enableIME</code>,可在安全桌面下启用输入法(IME)功能。</li>
<li>VeraCrypt 首选项改用选项卡控件,以减少对话框杂乱并缩小尺寸。</li>
<li>提供 VeraCrypt C/C++ SDK,用于创建加密卷(<a href="https://github.com/veracrypt/VeraCrypt-SDK" target="_blank">https://github.com/veracrypt/VeraCrypt-SDK</a>)。</li>
<li>将 LZMA SDK 更新至 26.01 版本。</li>
</ul>
</li>
<li><strong>Linux:</strong>
<ul>
<li>更新对Ubuntu 25.04的依赖,需安装 <code>libwxgtk3.2-1t64</code> 软件包。</li>
<li>允许以任意大小写“veracrypt”开头的AppImage文件运行</li>
<li>修复主界面列宽初始显示不正确的问题。</li>
</ul>
<ul>
<li>更新对 Ubuntu 25.04 的依赖,需安装 libwxgtk3.2-1t64 软件包。</li>
<li>新增基于 FUSE3 构建的支持</li>
<li>新增用于 NTFS 挂载的内核 NTFS 驱动选择,包括 <code>--filesystem=kernel-ntfs</code><code>-m kernelntfs</code>
<ul>
<li><code>--filesystem=ntfs3</code> 现在固定使用内核 ntfs3 驱动,并绕过 <code>mount.ntfs3</code> 等挂载辅助程序。</li>
</ul>
</li>
<li>修复 AppImage 便携性和语言加载问题,捆绑匹配的 FUSE 库,并允许 AppImage 文件名以任意大小写的“veracrypt”开头。</li>
<li>抑制多余的“已在运行”对话框,并将 GUI 实例锁存储在 XDG 路径下。</li>
<li>新增对残留卸载状态的应急清理。</li>
<li>并行化卷头 KDF 自动检测。</li>
<li>外部格式化时遵循 <code>nokernelcrypto</code></li>
<li>在 WSL 上使用 Windows 资源管理器打开已挂载卷。</li>
<li>新增可复现 Linux 构建支持,包括 SOURCE_DATE_EPOCH 处理、DEB/RPM 软件包以及 Arch 软件包构建。</li>
<li>新增 OpenWrt 软件包构建和 QEMU 测试脚本。</li>
<li>修复 CMake 4 兼容性、CentOS 6 GCC 4.4 构建,以及与 wxWidgets 相关的构建问题。</li>
</ul>
</li>
<li><strong>Linux 和 macOS:</strong>
<ul>
<li>修复主界面列宽初始显示不正确的问题。</li>
<li>为普通文件容器启用快速格式化。容器通过 <code>ftruncate()</code> 设置大小,因此宿主文件系统可能会在写入数据之前保持部分区域未写入或稀疏。</li>
<li>修复 exFAT 外层卷的隐藏卷大小估算问题。</li>
<li>修复隐藏卷 FAT 大小限制处理。</li>
<li>修复 GUI 向导中隐藏文件容器错误的 2 TiB 限制。</li>
<li>显示卷创建的收尾阶段。</li>
<li>卷创建向导现在也会从嵌套控件收集鼠标熵。</li>
<li>修复剩余的 wxWidgets sizer 标志问题。</li>
</ul>
</li>
<li><strong>macOS:</strong>
<ul>
<li>修复主界面列宽初始显示不正确的问题</li>
</ul>
<ul>
<li>FUSE-T 辅助挂载改用 SMB 后端,并改进 FUSE-T SMB 元数据处理和挂载稳定性</li>
<li>恢复已挂载卷的挂载点。</li>
<li>验证格式化向导中的设备目标,并阻止通过带分区的整盘别名进行绕过。</li>
<li>需要时以提升权限运行 APFS 格式化工具,并预先准备 APFS 格式化工具的设备别名。</li>
<li>格式化卷时强制使用全新的 exFAT 布局。</li>
<li>修复密码字段中的 <code>Command-A</code></li>
<li>链接 wxWidgets 3.2.10,并允许覆盖部署目标。</li>
</ul>
</li>
<li><strong>BSD:</strong>
<ul>
<li>FreeBSD:静态 wxWidgets 构建链接 iconv。</li>
<li>OpenBSD:修复设备托管卷大小计算,按 doas 用户设置挂载所有权和 FUSE 访问权限,并修复 CLI 构建和 PCSC 退出处理。</li>
</ul>
</li>
</ul>
@@ -1257,4 +1323,4 @@
<li>修复创建隐藏操作系统时的问题。 </li><li>小改进和漏洞修复。 </li></ul>
</li></ul>
</div>
</div><div class="ClearBoth"></div></body></html>
</div><div class="ClearBoth"></div></body></html>
Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.9 KiB

Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
+1 -1
View File
@@ -4,7 +4,7 @@
by the TrueCrypt License 3.0.
Modifications and additions to the original source code (contained in this file)
and all other portions of this file are Copyright (c) 2013-2025 AM Crypto
and all other portions of this file are Copyright (c) 2013-2026 AM Crypto
and are governed by the Apache License 2.0 the full text of which is
contained in the file License.txt included in VeraCrypt binary and source
code distribution packages.
+1 -1
View File
@@ -4,7 +4,7 @@
by the TrueCrypt License 3.0.
Modifications and additions to the original source code (contained in this file)
and all other portions of this file are Copyright (c) 2013-2025 AM Crypto
and all other portions of this file are Copyright (c) 2013-2026 AM Crypto
and are governed by the Apache License 2.0 the full text of which is
contained in the file License.txt included in VeraCrypt binary and source
code distribution packages.
+1 -1
View File
@@ -4,7 +4,7 @@
by the TrueCrypt License 3.0.
Modifications and additions to the original source code (contained in this file)
and all other portions of this file are Copyright (c) 2013-2025 AM Crypto
and all other portions of this file are Copyright (c) 2013-2026 AM Crypto
and are governed by the Apache License 2.0 the full text of which is
contained in the file License.txt included in VeraCrypt binary and source
code distribution packages.
+1 -1
View File
@@ -4,7 +4,7 @@
by the TrueCrypt License 3.0.
Modifications and additions to the original source code (contained in this file)
and all other portions of this file are Copyright (c) 2013-2025 AM Crypto
and all other portions of this file are Copyright (c) 2013-2026 AM Crypto
and are governed by the Apache License 2.0 the full text of which is
contained in the file License.txt included in VeraCrypt binary and source
code distribution packages.

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